button.drop-down {
  position: relative;
}
button.drop-down .drop-option {
  position: absolute;
  right: 0px;
  top: 100%;
  z-index: 20;
  margin-top: 0.5rem;
  border-radius: 0.375rem;
  background-color: #fff;
  box-shadow: 0 0 rgba(0, 0, 0, 0), 0 0 rgba(0, 0, 0, 0), 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  max-height: 220px;
  overflow-y: auto;
  display: none;
}
button.drop-down .drop-option::-webkit-scrollbar {
  width: 8px;
}
button.drop-down .drop-option ::-webkit-scrollbar-track {
  background: #dfdfdf;
  border-radius: 6px;
}
button.drop-down .drop-option ::-webkit-scrollbar-thumb {
  background: #b80009;
  border-radius: 10px;
  border: 2px solid #dfdfdf;
}
button.drop-down .drop-option ::-webkit-scrollbar-thumb:hover {
  background: #b80009;
}
button.drop-down:focus .drop-option {
  display: block;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
.cursor-allowed {
  cursor: not-allowed !important;
}
.loading-spinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: hsla(0, 0%, 100%, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.spinner-box {
  width: 1.5em;
  height: 1.5em;
  margin-left: 1rem;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiperButtonPrev.disabled,
.swiperButtonNext.disabled {
  color: hsla(0, 0%, 100%, 0.6588235294) !important;
  cursor: not-allowed !important;
}
.swiper-slide-blank {
  background: none !important;
}
