#toast-container > div {
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  max-width: none;
  border-radius: 0.286rem;
}
.toast {
  background-color: #fff;
  color: #6e6b7b !important;
  z-index: 99;
}

.toast .toast-close-button {
  color: #000;
  font-size: 1.75rem;
  font-weight: 400;
  top: 0;
  right: 0;
  text-shadow: none;
}
.toast .toast-close-button:focus {
  outline: none;
}
.toast .toast-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.75;
}
.toast .toast-progress {
  opacity: 1;
}
.toast:before {
  content: "";
  height: 24px;
  width: 24px;
  border-radius: 50%;
  color: #fff;
  position: absolute;
  left: 1.25rem;
  background-size: 1rem;
  background-repeat: no-repeat;
  background-position: center;
}

.toast-success .toast-title {
  color: var(--next-prev-arrow-color);
}
.toast-success .toast-progress {
  background-color: var(--next-prev-arrow-color);
}
.toast-success:before {
  background-color: var(--next-prev-arrow-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

.toast-error .toast-title {
  color: var(--bs-danger);
}
.toast-error .toast-progress {
  background-color: var(--bs-danger);
}
.toast-error:before {
  background-color: var(--bs-danger);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='feather feather-check'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
}

@media (max-width: 480px) and (min-width: 241px) {
  #toast-container > .toast:after {
    top: 0.95rem;
  }
  #toast-container > .toast .toast-close-button {
    top: 0;
    right: -1px;
  }
  #toast-container > div {
    width: 20rem;
  }

  .toast-top-left {
    left: 1rem;
  }

  #toast-container.toast-top-center, #toast-container.toast-bottom-center {
    right: 1rem;
  }
  #toast-container.toast-top-center > div, #toast-container.toast-bottom-center > div {
    width: 20rem !important;
  }

  .toast-top-full-width,
.toast-bottom-full-width {
    right: 0;
    left: 0;
    width: 93%;
  }
  .toast-top-full-width > div,
.toast-bottom-full-width > div {
    width: 100%;
  }

  .toast-bottom-left {
    left: 1rem;
    bottom: 0.75rem;
  }

  .toast-bottom-right {
    right: 2.25rem;
    bottom: 0.75rem;
  }

  .toast-bottom-center,
.toast-bottom-full-width {
    bottom: 0.75rem;
  }

  [data-textdirection=rtl] #toast-container > div {
    padding-right: 8px;
  }
}

@media (max-width: 575.98px) {
  [data-textdirection=rtl] .toast .toast-close-button {
    top: 0.55rem !important;
    right: 0.5rem !important;
  }
}
[data-textdirection=rtl] .toast-top-left {
  left: 1rem;
  right: auto;
}
[data-textdirection=rtl] .toast-top-right {
  right: 3rem;
  left: auto;
}
[data-textdirection=rtl] .toast-bottom-left {
  left: 1em;
  right: auto;
}
[data-textdirection=rtl] .toast-bottom-right {
  right: 3rem;
  left: auto;
}
[data-textdirection=rtl] .toast-top-full-width#toast-container > div,
[data-textdirection=rtl] .toast-bottom-full-width#toast-container > div {
  left: 0;
  right: 0;
}
