.leaflet-control-attribution {
  display: none;
}
.leaflet-bar {
  border-radius: 0px !important;
  border: none !important;
}
.leaflet-bar a {
  color: #666 !important;
}
.leaflet-bar a {
  border-bottom: none !important;
  margin-bottom: 4px;
}
.leaflet-container {
  background: #f5f5f5 !important;
}
.dropstart-toggle::before {
  content: "\e92f";
}
.dropstart-toggle::after,
.dropstart-toggle::after {
  border: 0;
  float: left;
  font-family: Feather;
  margin-left: 0.255em;
}
.paypal-button_div {
  background: #ffc439 !important;
}
.paypal-button_div:hover {
  background: #f2ba36 !important;
}
@media only screen and (min-width: 75px) {
  .paypal-button_div {
    height: 25px;
    min-height: 25px;
    max-height: 30px;
  }
}
@media only screen and (min-width: 190px) {
  .paypal-button_div {
    height: 35px;
    min-height: 25px;
    max-height: 55px;
  }
}
@media only screen and (min-width: 240px) {
  .paypal-button_div {
    height: 35px;
    min-height: 35px;
    max-height: 55px;
  }
}
@media only screen and (min-width: 375px) {
  .paypal-button_div {
    height: 45px;
    min-height: 30px;
    max-height: 55px;
  }
}
@media only screen and (min-width: 992px) {
  .paypal-button_div {
    height: 55px;
    min-height: 40px;
    max-height: 55px;
  }
}
.dropzone {
  min-height: auto !important;
  padding: 1.5rem 1.75rem !important;
  text-align: center !important;
  cursor: pointer !important;
  border: 1px dashed var(--bs-primary) !important;
  background-color: var(--bs-primary-light) !important;
  border-radius: 0 !important;
  margin: 1em 0 !important;
}
.inbox-link.uploading {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#007bff),
    to(#f5f5f5)
  );
  background: -o-linear-gradient(
    left,
    #007bff var(--upload-progress),
    #f5f5f5 var(--upload-progress)
  );
  background: linear-gradient(
    to right,
    #007bff var(--upload-progress),
    #f5f5f5 var(--upload-progress)
  );
  background-size: 200% 100%;
  background-position: 0 0;
  -webkit-animation: progressAnimation 1s forwards;
  animation: progressAnimation 1s forwards;
}
.inbox-link {
  --upload-progress: 0%;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#d6d6d6),
    color-stop(0, transparent)
  );
  background: -o-linear-gradient(
    left,
    #d6d6d6 var(--upload-progress),
    transparent 0
  );
  background: linear-gradient(
    90deg,
    #d6d6d6 var(--upload-progress),
    transparent 0
  );
  -webkit-transition: background 0.5s ease;
  -o-transition: background 0.5s ease;
  transition: background 0.5s ease;
}
.inbox-link.uploading {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(#d6d6d6),
    color-stop(0, transparent)
  );
  background: -o-linear-gradient(
    left,
    #d6d6d6 var(--upload-progress),
    transparent 0
  );
  background: linear-gradient(
    90deg,
    #d6d6d6 var(--upload-progress),
    transparent 0
  );
}
.inbox-link.upload-complete {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(100%, #d6d6d6),
    color-stop(0, transparent)
  );
  background: -o-linear-gradient(left, #d6d6d6 100%, transparent 0);
  background: linear-gradient(90deg, #d6d6d6 100%, transparent 0);
}
@-webkit-keyframes progressAnimation {
  from {
    background-position: -100% 0;
  }
  to {
    background-position: 100% 0;
  }
}
@keyframes progressAnimation {
  from {
    background-position: -100% 0;
  }
  to {
    background-position: 100% 0;
  }
}
#compose_editor {
  min-height: 100px; /* Exemple de hauteur */
}
#messages-container img {
  max-width: 100%;
  height: auto;
  display: block;
}
.toast p {
  margin: 0 !important;
}
.editable-input {
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  background: transparent;
  outline: none;
}
#pause_message_btn.blink {
  animation: blink 0.5s infinite alternate;
}
@keyframes blink {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.5;
  }
}
.transparent-button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  color: inherit;
}

/* .transparent-button:hover {
  opacity: 0.7;
}*/

.list-view td {
  text-align: start;
  vertical-align: middle; /* Centre verticalement */
  height: 50px; /* Ajuste la hauteur pour voir l'effet */
  padding: 0;
  margin: 0;
  white-space: nowrap; /* Empêche le texte de passer à la ligne */
  overflow: hidden;
  text-overflow: ellipsis; /* Ajoute "..." si le texte dépasse */
}
.list-view tr td:first-child {
  width: 35px; /* Ajuste la largeur selon ton besoin */
  min-width: 35px; /* Pour éviter le rétrécissement */
  max-width: 35px; /* Pour fixer la largeur */
}
.list-view p {
  margin: 0;
  padding: 0;
}

#bp_container > .bp-x svg {
  display: none;
}
#bp_container > .bp-x:focus,
#bp_container > .bp-x:hover {
  background-color: rgba(255, 255, 255, 0) !important;
}

.avatar_table {
  display: flex;
  align-items: center; /* Aligne les avatars verticalement */
}

.avatar_table .avatar {
  position: relative;
}

/* Décalage des avatars sauf le premier */
.avatar_table .avatar:not(:first-child) {
  margin-left: -1rem;
}

.progress-table {
  min-width: 75px;
}

.avatar-offline:before,
.avatar-online:before {
  z-index: 300;
}
.avatar-offline:after,
.avatar-online:after {
  z-index: 200;
}

input[type="number"] {
  -webkit-appearance: textfield;
  appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
input::-webkit-inner-spin-button,
input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
.number-caddie,
.number-input {
  border: 1px solid;
  display: flex;
}
.number-caddie,
.number-caddie *,
.number-input,
.number-input * {
  box-sizing: border-box;
}
.number-input button {
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0;
  outline: none;
  position: relative;
  width: 5rem;
}
.number-input button:after,
.number-input button:before {
  background-color: #1f1f1f;
  content: "";
  display: inline-block;
  height: 2px;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 0.75rem;
}
.number-caddie button.plus:after,
.number-input button.plus:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.number-caddie input[type="number"],
.number-input input[type="number"] {
  border: solid;
  border-width: 0 1px;
  text-align: center;
}
.number-caddie button {
  -webkit-appearance: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  margin: 0;
  outline: none;
  position: relative;
  width: 2rem;
}
.number-caddie button:after,
.number-caddie button:before {
  background-color: #1f1f1f;
  content: "";
  display: inline-block;
  height: 1px;
  position: absolute;
  transform: translate(-50%, -50%);
  width: 0.5rem;
}
.number-caddie input[type="number"] {
  width: 3rem;
}
:focus {
  outline: none;
}
input:-webkit-autofill,
input:-webkit-autofill:active,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover {
  -webkit-box-shadow: inset 0 0 0 30px transparent !important;
}
.form-check-input {
  border: none;
  cursor: pointer;
}
.form-check-input:focus {
  border: none;
}
.form-control.is-invalid,
.was-validated .form-control:invalid {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3E%3Ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3E%3C/svg%3E");
  background-position: right calc(0.375em + 0.1875rem) center;
  background-repeat: no-repeat;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
}
.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
  border-color: #dc3545;
}
.form-control.is-valid,
.was-validated .form-control:valid {
  background-image: none;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-repeat: no-repeat;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  border-color: #e5e5e5;
  padding-right: calc(1.5em + 0.75rem);
}
.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
  border-color: #333;
}
.form-select {
  background-position: right calc(0.375em + 0.1875rem) center;
}
.form-select.is-valid,
.was-validated .form-select:valid {
  border-color: #333;
}
.form-select.is-valid:focus,
.was-validated .form-select:valid:focus {
  border-color: #333;
}
.not_needed {
  border: none !important;
  color: #767676 !important;
  text-decoration: none !important;
}
.not_needed:checked {
  background-color: #1f1f1f !important;
}
img,
svg {
  vertical-align: middle !important;
}
.progress-danger {
  background-color: #dc3545 !important;
}
.progress-success {
  background-color: #198754 !important;
}
.progress-warning {
  background-color: #ff9736 !important;
}
.toggle_mdp {
  background-color: #fff;
  height: 2.25rem;
  left: -1.1rem;
  padding: 0.2rem;
  text-align: center;
  top: 0.55rem;
  width: 2.25rem;
  z-index: 100;
}
.bg-warning_alert-success {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: bg_fade_in-success;
  animation-name: bg_fade_in-success;
  -webkit-animation-play-state: running;
  animation-play-state: running;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@keyframes bg_fade_in-success {
  0% {
    background-color: #198754;
  }
  50.0% {
    background-color: #1f1f1f;
  }
  100.0% {
    background-color: #198754;
  }
}
.auto_fill,
.effect-placeholder,
.input-effect {
  background: transparent;
  position: relative;
}
.effect-placeholder + label {
  color: #767676;
  font-size: 0.9375rem;
  left: 20px;
  letter-spacing: 0.5px;
  position: absolute;
  top: 13px;
  transition: 0.3s;
  width: 100%;
}
.effect-placeholder:focus + label,
.has-content.effect-placeholder + label {
  color: #767676;
  font-size: 0.75rem;
  left: 0;
  margin: 0 !important;
  top: -18px;
  transition: 0.3s;
}
.label_min {
  color: #767676;
  font-size: 0.75rem;
  margin: 0 !important;
}
.svg-inline--fa {
  vertical-align: -0.125em !important;
}
.dropdown-toggle {
  white-space: normal !important;
}
.item-pays:hover {
  background-color: #f5f5f5 !important;
  cursor: pointer;
}
.search_pays {
  border: none !important;
  padding-bottom: 5px;
  padding-top: 5px;
}
.item-pays {
  padding-left: 1.5rem !important;
}
.select-pays:hover {
  cursor: pointer;
}
.list-pays {
  border-color: #e5e5e5 !important;
}
.iti__country.iti__highlight {
  background-color: #f5f5f5 !important;
}
[data-cart-items]:before {
  content: attr(data-cart-items);
}
[data-cart-items]:before,
[data-infonotification]:before {
  align-items: center;
  background-color: #303030;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  display: flex;
  font-size: 11px;
  font-weight: 500;
  height: 25px;
  justify-content: center;
  position: absolute;
  right: -1rem;
  top: -1.75rem;
  width: 25px;
}
[data-infonotification]:before {
  content: attr(data-infonotification);
}
[data-infonotification] {
  display: inline-block;
  position: relative;
}
.EUR:after {
  content: "€";
}
.USD:before {
  content: "$";
}
.GBP:before {
  content: "£";
}
.productname:before {
  content: attr(data-productname);
}
#product_price:before {
  content: attr(data-priceunit);
}
.btn:hover > .fe {
  transform: translateX(0.25rem);
}
.btn > .fe {
  transition: all 0.2s ease-in-out;
  transition-property: all;
  transition-property: transform;
}
.card-circle-top-end {
  background-color: #000;
  border: 3px solid #fff;
  right: -0.5rem;
  top: -0.5rem;
}
.form-size > .form-check-input:disabled + .form-check-label {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' preserveAspectRatio='none' viewBox='0 0 100 100'><path d='M100 0 L0 100 ' stroke='black' stroke-width='1'/><path d='M0 0 L100 100 ' stroke='black' stroke-width='1'/></svg>");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100% 100%, auto;
  text-decoration: none;
}
.badge {
  vertical-align: text-top;
}
.bp-controls button,
.bp-controls button:hover {
  background: transparent !important;
}
.flickity-button:focus {
  box-shadow: none !important;
  outline: 0;
}
.filter-btn {
  height: calc(2rem + 2px);
}

#slider-picture {
  position: relative;
  overflow: hidden;
  min-width: 538px;
  min-height: 538px;
}

.spinner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
