.main-header {
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
}
.main-header .nav .nav-link {
  color: #6c757d;
}
.main-header .nav .nav-link:hover {
  color: #343a40;
}
.main-header .horizontal-bar {
  width: 1px;
  height: 2.45rem;
  background: #dcdcdc;
}
.main-header .mobile-nav {
  background-color: #F3B304;
  padding-top: 1rem;
  padding-bottom: 0.1rem;
}

.header-user {
  position: relative;
  overflow: hidden;
}
.header-user::before, .header-user::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: -1;
  background-image: url("/svg/background-user.png");
  background-repeat: no-repeat;
}
.header-user::before {
  left: 0;
}
.header-user::after {
  right: 0;
  background-position: right;
  transform: scaleX(-1) translateX(-45%);
}

.nav.left-menu-user .nav-link {
  color: #6c757d;
  cursor: pointer;
}
.nav.left-menu-user > .nav-link, .nav.left-menu-user > .nav-dropdown > .nav-link {
  font-weight: bold;
}
.nav.left-menu-user > .nav-link:hover, .nav.left-menu-user > .nav-link:active, .nav.left-menu-user > .nav-link.active {
  background-color: #f8f9fa !important;
  color: #6c757d !important;
}
.nav.left-menu-user .nav-dropdown .nav {
  padding-left: 1rem;
  visibility: hidden;
  height: 0;
  transition: all 0.3s ease-in-out;
  overflow-y: hidden;
}
.nav.left-menu-user .nav-dropdown > .nav-link {
  position: relative;
  border-radius: 0.4rem;
}
.nav.left-menu-user .nav-dropdown > .nav-link:hover, .nav.left-menu-user .nav-dropdown > .nav-link:active {
  background-color: #f8f9fa;
}
.nav.left-menu-user .nav-dropdown > .nav-link::after {
  content: "";
  width: 2rem;
  height: 2rem;
  position: absolute;
  right: 0;
  background-image: url("/svg/icon/arrow-up-s-line.svg");
  background-position: center center;
  transform: rotate(180deg);
  transition: all 0.3s ease-in-out;
}
.nav.left-menu-user .nav-dropdown.open .nav {
  visibility: visible;
  height: -moz-fit-content;
  height: fit-content;
}
.nav.left-menu-user .nav-dropdown.open > .nav-link {
  background-color: #f8f9fa;
}
.nav.left-menu-user .nav-dropdown.open > .nav-link::after {
  transform: rotate(0deg);
}

.product {
  border: none;
  border-radius: 10px;
  box-shadow: 0px 15px 15px rgba(55, 92, 129, 0.051);
  position: relative;
}
.product .product__image {
  width: 100%;
  border-radius: 10px;
  background-color: var(--blue-grey-medium);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product .product__image img {
  width: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.product .btn-love {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
  aspect-ratio: 1/1;
  padding-top: 100%;
  padding: 0.2rem 0.5rem;
  border-radius: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.product:hover .btn-love {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 480px) {
  .product .btn-love {
    visibility: visible;
    opacity: 1;
  }
}
.product .product__detail {
  font-size: 15px;
  font-weight: 600;
  color: var(--grey-darker);
}
.product .product__price {
  color: var(--blue-dark);
}
.product .card-body {
  height: 142px;
}
.product a {
  color: unset;
}

.big-love {
  position: fixed;
  color: #F3B304;
  z-index: 999;
  font-size: 24pt;
}

.nav.nav-categories .nav-item .nav-link {
  padding: 0.4rem 0.5rem;
  margin: 0.25rem 0;
  color: unset;
}
.nav.nav-categories .nav-item .nav-link:hover, .nav.nav-categories .nav-item .nav-link.active {
  color: #6c757d !important;
  background-color: rgba(255, 209, 0, 0.2);
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 999;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
}
.mobile-sidebar .nav {
  background: white;
  width: 15rem;
  position: absolute;
  right: 0;
  height: 100%;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  transform: translateX(100%);
}
.mobile-sidebar .nav .nav-item .nav-link {
  color: unset;
  border-bottom: 1px solid #adb5bd;
  border-collapse: collapse;
}
.mobile-sidebar.open {
  visibility: visible;
}
.mobile-sidebar.open .nav {
  opacity: 1;
  transform: none;
}

.member-bpc {
  font-size: 0.8rem;
}

.member-bpc h2 {
  font-size: 1.1rem;
  font-weight: 600;
  font-family: "Asap" sans-serif;
}

.member-bpc a:not(.btn) {
  color: unset;
}

.member-bpc .profile-img {
  width: 48px;
  height: 48px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.4rem;
}

.btn-primary {
  color: #fff;
}
.btn-primary:hover, .btn-primary:active {
  color: #fff;
}

.btn-danger {
  color: #fff;
}
.btn-danger:hover {
  color: #fff;
}
