.polite {
  position: absolute;
  top: 60px;
  right: 0;
  z-index: 9999;
}

.polite-container {
  position: absolute;
  right: 0;
  z-index: 999;
  padding: 5px 20px;
  max-height: calc(100dvh - 84px);
  overflow: auto;
}

.toast {
  min-width: 320px;
  background: #fff;
  padding: 5px 0 0;
  overflow: hidden;
  box-shadow: 0 1px 8px rgb(27 46 75 / 40%) !important;
  transform: translateX(calc(100% + 30px));
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
  opacity: 1 !important;
  z-index: 9;
}

.toast-header {
  background-color: rgba(255, 255, 255, 0.85);
}

.toast.active {
  transform: translateX(0%);
}

.toast:not(.show) {
  display: block;
}

.toast .toast-content {
  display: flex;
  align-items: center;
}

.toast-content .check {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  min-width: 35px;
  background-color: #4070f4;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
}

.toast-content .message {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}

.toast .close {
  cursor: pointer;
  opacity: 0.7;
}

.toast .close:hover {
  opacity: 1;
}

.toast .progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
}

.toast .progress:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: #4070f4;
}

.progress.active:before {
  animation: progress 5s linear forwards;
}

@keyframes progress {
  100% {
    right: 100%;
  }
}

.toast.active ~ button {
  pointer-events: none;
}

#carouselButtons {
  position: relative;
  background-color: #eff1f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: solid 1px rgba(72, 94, 144, 0.16);
  border-right: solid 1px rgba(72, 94, 144, 0.16);
  border-bottom: solid 1px rgba(72, 94, 144, 0.16);
  border-top: solid 0;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
  padding: 0 15px;
}

#homeCarousel.slide {
  height: unset !important;
}