.feather-32 {
  height: 32px !important;
  width: 32px !important;
}

.cursor-pointer {
  cursor: pointer;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.navbar-dark .navbar-nav .nav-link {
  color: white;
}

.main-navbar.navbar-sticky .nav-link {
  color: var(--dark);
}

.main-navbar .nav-link:hover {
  color: white !important;
}

.main-navbar.navbar-sticky .nav-link:hover {
  color: #3a5fe4 !important;
}

.main-navbar.navbar-sticky .nav-item:hover {
  border-bottom: 2px solid #3a5fe4 !important;
  color: white;
}

.navbar-nav > li.nav-item {
  box-sizing: border-box;
  width: auto;
  height: 2rem;
}

.navbar-nav > a.nav-link:hover {
  color: white !important;
}

.navbar-nav > li.nav-item:hover {
  border-bottom: 2px solid white !important;
  color: white;
}

.navbar-nav > li.nav-item.active:hover {
  border-bottom: none !important;
}

.navbar-nav > li.nav-item.active:hover {
  border-bottom: none;
}

.hero-carousel .owl-dots {
  position: absolute;
  margin-top: -160px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-carousel > .owl-dots .owl-dot {
  height: 16px;
  width: 16px;
  background: rgba(58, 95, 228, .6);
  border-radius: 100%;
  margin: 0 1rem 0 1rem;
}

.hero-carousel > .owl-dots .active {
  background: rgba(255, 255, 255, .9) !important;
}

.cart-badge {
  height: 24px;
  width: 24px;
  border-radius: 100%;
  position: absolute;
  margin-top: -10px;
  margin-left: -8px;
  padding-right: 0;
  padding-left: 0;
  padding-top: 7px;
  font-weight: 400;
}

.cart-badge-sm {
  padding-top: 6px;
}

a.text-decoration-none:hover {
  text-decoration: none;
}

.image-product-wrapper {
  width: 100%;
  /*height: 350px;*/
}

.image-product-wrapper .image-product {
  object-fit: cover;
  height: 100%;
  width: inherit;
  border-radius: inherit;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
}

.section-offset-action {
  margin-top: -23rem;
}

@keyframes spinner {
  0% {
    transform: translate3d(-50%, -50%, 0) rotate(0deg);
  }
  100% {
    transform: translate3d(-50%, -50%, 0) rotate(360deg);
  }
}

.spin::before {
  animation: 1.5s linear infinite spinner;
  animation-play-state: inherit;
  border: solid 5px #cfd0d1;
  border-bottom-color: #1c87c9;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 10%;
  left: 10%;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}

.spin.spin-sm::before {
  height: 20px;
  width: 20px;
}

#content-data * {
  max-width: 100%;
}

/* Safari */

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 768px) {
  .section-offset-action {
    margin-top: -15rem;
  }
}

@media only screen and (max-width: 575px) {
  .hero-carousel > .owl-dots .owl-dot {
    height: 12px;
    width: 12px;
    margin: 0 .5rem 0 .5rem;
  }
}

