body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  max-width: 100vw;
}

#apnaModal {
  opacity: 0;
  visibility: hidden;
  transition: .3s all;
}

#apnaModal.open {
  opacity: 1;
  visibility: visible;
}

#apnaModal .apnaModelBox {
  transform: scale(0.5);
  transition: .3s all;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  -webkit-transition: .3s all;
  -moz-transition: .3s all;
  -ms-transition: .3s all;
  -o-transition: .3s all;
}

#apnaModal.open .apnaModelBox {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.select2-container .select2-selection--single {
  height: 2rem;
  font-size: 0.75rem;
  border: 1px solid #403e3e;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 30px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 32px;
}

.select2-container .select2-selection--single span {
  line-height: 1.85rem;
}

.select2-container {
  width: 100% !important;
}

@keyframes marquee-l {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee-l {
  animation: marquee-l 30s linear infinite;
}

@keyframes marquee-r {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.animate-marquee-r {
  animation: marquee-r 30s linear infinite;
}

/* Marquee CSS for Explore More */
.marquee-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 20px;
}

.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 48px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #fff 50%, transparent 100%);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #fff 50%, transparent 100%);
}

.marquee-track {
  display: flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  flex: 0 0 auto;
  width: 180px;
  margin-right: 16px;
  padding: 8px;
}

.marquee-item .font-semibold {
  font-size: 13px;
  margin-bottom: 4px;
}

.marquee-item img {
  height: 120px;
  width: 120px;
}

.marquee-item div {
  font-size: 11px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.marquee-track-rtl {
  animation: scroll-right 30s linear infinite;
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0%);
  }
}

@media (width >=375px) and (width < 768px) {
  .apnaHeaderLogo {
    max-width: 216px;
  }
}