.my-text {
  display: inline-block;
  animation: slide-left 10s ease forwards;
  overflow: hidden;
  line-height: 1;
}

.half-circle {
  height: 160px;
  overflow: hidden;
}
.half-circle .img-container {
  position: relative;
}
.half-circle .img-container:hover:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}
.half-circle img {
  border-radius: 50%;
  position: relative;
}

.categories-slider .slick-arrow {
  display: none !important;
}
.categories-slider .slick-prev {
  left: -10px;
  height: 50px;
  width: 30px;
  z-index: 3;
}
.categories-slider .slick-prev:before {
  font-size: 50px;
}
.categories-slider .slick-next {
  right: -10px;
  height: 50px;
  width: 30px;
  z-index: 3;
}
.categories-slider .slick-next:before {
  font-size: 50px;
}

.brand-slider .slick-prev {
  left: -10px;
}
.brand-slider .slick-next {
  right: -10px;
}

.categories-slider:hover .slick-arrow {
  display: inline-block !important;
}

.brand-slider .slick-track {
  display: flex;
  align-items: center;
}
.brand-slider .slick-track img {
  height: 130px;
  -o-object-fit: contain;
     object-fit: contain;
}

@keyframes slide-left {
  /* use % to specify the animation at different stages (in this case, 0% and 100%) */
  0% {
    transform: translateX(100vw);
  }
  100% {
    /* adjust the value to control how much the text moves */
    transform: translateX(0);
  }
}
@media (max-width: 1024px) {
  .half-circle {
    height: 90px;
  }
}
.nav-tabs .nav-link.active {
  background-color: #0DB14B;
  color: #fff !important;
}

.selected-card {
  border: 3px solid #0DB14B !important;
  border-radius: 0.5rem;
}

.guest .selectable-card {
  transition: border 0.3s ease;
  cursor: pointer;
  background-color: #FFF;
}

.logged-in .selectable-card {
  transition: border 0.3s ease;
  cursor: pointer;
  background-color: #FFF;
  height: 580px !important;
}

.btn-select-product.selected-btn {
  border-radius: 8px;
  background-color: #0DB14B;
  color: #fff !important;
  font-size: 18px;
}

.prd-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4em;
  max-height: 2.8em;
}

.overview {
  font-family: "GT Walsheim Pro", sans-serif;
}

.overview-title {
  margin-top: 30px;
  color: #002f5f;
  font-weight: 800;
  font-size: 48px;
}

.overview-desc {
  margin-top: 20px;
  font-size: 20px;
}

@media (max-width: 576px) {
  #productTabs .nav-item {
    padding: 0.25rem 0.5rem !important;
  }
  #productTabs {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  #productTabs .nav-link {
    font-size: 0.75rem;
    white-space: nowrap;
  }
  .overview-title {
    font-size: 24px;
  }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 2.5s ease, transform 2.5s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.small-currency {
  font-size: 16px;
}

.prd-bv {
  margin-left: 15px;
}

.we-currency {
  font-size: 10px;
  margin-right: 2px;
  vertical-align: top;
  margin-bottom: -2px;
}

.category-divider {
  font-size: 1.2rem;
  letter-spacing: 1px;
}/*# sourceMappingURL=dashboard.css.map */