#toast-container {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
}
#toast-container.toast-top-right {
  top: 12px;
  right: 12px;
}
#toast-container * {
  box-sizing: border-box;
}
#toast-container .toast {
  display: block;
  position: relative;
  pointer-events: auto;
  overflow: hidden;
  width: 300px;
  margin: 0 0 6px;
  padding: 15px 40px 15px 50px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--white);
  cursor: pointer;
}
@media (max-width: 240px) {
  #toast-container .toast {
    width: 11em;
    padding: 8px 40px 8px 50px;
  }
}
@media (min-width: 241px) and (max-width: 480px) {
  #toast-container .toast {
    width: 18em;
    padding: 8px 40px 8px 50px;
  }
}
@media (min-width: 481px) and (max-width: 768px) {
  #toast-container .toast {
    width: 25em;
  }
}
#toast-container .toast-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  font-size: 20px;
}
#toast-container .toast-title {
  font-weight: 700;
}
#toast-container .toast-message {
  word-wrap: break-word;
}
#toast-container .toast-close-button {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 20px;
  height: 20px;
  padding: 0;
  font-size: 18px;
  line-height: 18px;
  color: var(--white);
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  opacity: 0.7;
  cursor: pointer;
}
#toast-container .toast-close-button:hover, #toast-container .toast-close-button:focus {
  opacity: 1;
}
#toast-container .toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: var(--black-alpha-40, rgba(0, 0, 0, 0.4));
}

/*# sourceMappingURL=/assets/toastr_shim-fc5f7a39.css.map */
