#toast-container {
  min-height: 0;
  position: fixed;
  right: 20px;
  top: 20px;
  width: 400px;
  z-index: 9999;
}
#toast-container .expiry-toast {
  background: #d6d8d9;
  border-radius: 3px;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.1);
  color: rgba(0, 0, 0, 0.6);
  cursor: default;
  margin-bottom: 20px;
  opacity: 0;
  position: relative;
  top: 20px;
  right: 20px;
  padding: 20px;
  transform: translateY(15%);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  width: 100%;
  will-change: opacity, transform;
  z-index: 9999;
}
#toast-container .expiry-toast.show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
#toast-container .expiry-toast.hide {
  height: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 30px;
  transition: all 0.5s ease-in-out;
}
#toast-container .expiry-toast .close {
  cursor: pointer;
  font-size: 24px;
  height: 16px;
  margin-top: -10px;
  position: absolute;
  right: 14px;
  top: 50%;
  width: 16px;
}

.expiry-modal {
  min-height: 0;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: auto;
}
.expiry-modal .d-block {
  display: block;
}
.expiry-modal.show .expiry-modal-content {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.expiry-modal.hide {
  height: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 30px;
  transition: all 0.5s ease-in-out;
}
.expiry-modal .expiry-modal-content {
  border: 1px solid gray;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: white;
  border-radius: 3px;
  color: black;
  margin: 15% auto;
  padding: 20px;
  width: 60%;
  max-width: 750px;
  min-height: 30%;
  opacity: 0;
  transform: translateY(15%);
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  will-change: opacity, transform;
  z-index: 9999;
}
.expiry-modal .expiry-modal-content .close {
  cursor: pointer;
  font-size: 40px;
  height: 40px;
  margin-top: -10px;
  position: absolute;
  right: 10px;
  top: 20px;
  width: 40px;
}

/*# sourceMappingURL=toast.css.map */
