@font-face {
  font-family: 'Avenir Black';
  src: url(https://nxmcdn.com/fonts/xog/Avenir-Black.otf);
}

@font-face {
  font-family: 'Avenir Book';
  src: url(https://nxmcdn.com/fonts/xog/Avenir-Book.otf);
}

@font-face {
  font-family: 'Avenir Roman';
  src: url(https://nxmcdn.com/fonts/xog/Avenir-Roman.otf);
}

@font-face {
  font-family: "Avenir";
  src: url("https://nxmcdn.com/fonts/xog/Avenir-Book.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Avenir";
  src: url("https://nxmcdn.com/fonts/xog/Avenir-Roman.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Avenir";
  src: url("https://nxmcdn.com/fonts/xog/Avenir-Black.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Avenir LT Std";
  src: url("https://nxmcdn.com/fonts/xog/AvenirBlack.otf") format("opentype");
  font-weight: 750;
  font-style: normal;
}
@font-face {
  font-family: "Avenir LT Std";
  src: url("https://nxmcdn.com/fonts/xog/AvenirMedium.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html,
body {
  font-family: Avenir Roman, sans-serif;
}

body.lock {
  overflow-y: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

p {
  letter-spacing: 0.06em;
}

a {
  color: #000;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.06em;
}

a:hover {
  text-decoration: none;
}

ul:not(.errors-container-ul),
li:not(.errors-container-li) {
  list-style: none;
}

i {
  font-size: 24px;
  line-height: 0;
}

video {
  max-width: 100%;
  height: auto;
}

img {
  max-width: 100%;
  height: auto;
}

.bg-black {
  background: #000;
}

.text-black {
  color: #000;
}

.text-gray {
  color: #f9f6f3;
}

.text-grey {
  color: #B0B1B2;
}

.text-uppercase {
  text-transform: uppercase;
}

.cursor-pointer {
  cursor: pointer;
}

.pr-btn {
  height: 50px;
  width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(249, 246, 243);
  font-size: 12px;
  border-radius: 30px;
  letter-spacing: 0.2em;
}

.pr-btn:hover {
  background: rgb(249, 246, 243);
}

.container {
  max-width: 1200px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
  display: none;
  z-index: 999;
}

.announcement-bar {
  min-height: 40px;
  z-index: 99;
}

header {
  background: transparent;
  min-height: 75px;
  z-index: 9;
}

header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  transform: translateY(-100%);
  transition: transform 0.4s;
  z-index: -1;
}

header:hover::after {
  transform: translateY(0);
  transition: transform 0.4s;
}

header:hover img.logo-white {
  display: none !important;
}

header:hover img.logo-red {
  display: block !important;
}

header:hover .nav-item {
  color: #000 !important;
}

header:hover i {
  color: #000 !important;
}

header.active::after {
  transform: translateY(0);
  transition: transform 0.4s;
}

header.active img.logo-white {
  display: none !important;
}

header.active img.logo-red {
  display: block !important;
}

header.active .nav-item {
  color: #000 !important;
}

header.active i {
  color: #000 !important;
}

header:hover .menu-toggle span {
  background-color: #000;
}

header:hover .menu-toggle span::before {
  background-color: #000;
}

header:hover .menu-toggle span::after {
  background-color: #000;
}

header.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  transform: translateY(0);
  transition: transform 0.4s;
  z-index: -1;
}

header.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  transform: translateY(-100%);
  transition: transform 0.4s;
  z-index: 99999;
}

header.sticky.scroll {
  transform: translateY(0);
  transition: transform 0.4s;
}

header.sticky img.logo-white {
  display: none !important;
}

header.sticky img.logo-red {
  display: block !important;
}

header.sticky .nav-item {
  color: #000 !important;
}

header.sticky i {
  color: #000 !important;
}

header.sticky .menu-toggle span {
  background-color: #000;
}

header.sticky .menu-toggle span::before {
  background-color: #000;
}

header.sticky .menu-toggle span::after {
  background-color: #000;
}

.search-form {
  background: #f2f2f2;
  border-radius: 10px;
}

.search-field {
  height: 100%;
  background: transparent;
  border: 0;
  outline: 0;
}

.mini-cart {
  background: #fff;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 450px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translate(100%);
  transition: transform 0.4s;
}

.mini-cart.show {
  transform: translate(0);
  transition: transform 0.4s;
  z-index: 999999;
}

.mini-cart-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.mini-cart .close-icon {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eeeeee;
  position: absolute;
  top: 15px;
  right: 15px;
}

.mobile-menu {
  background: #fff;
  position: fixed;
  top: 25px;
  left: 0;
  height: 90%;
  width: 450px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translate(-100%);
  transition: transform 0.4s;
  overflow-y: auto;
  z-index: 999999999;
}

.mobile-menu.active {
  transform: translate(0);
  transition: transform 0.4s;
}

.mobile-menu-body {
  flex: 2;
  display: flex;
  flex-direction: column;
}

.mobile-menu-body a {
  font-size: 18px;
}

.mobile-menu-footer {
  flex: 1;
}

.mobile-menu .close-icon {
  height: 34px;
  width: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eeeeee;
  position: absolute;
  top: 15px;
  left: 15px;
}

footer a {
  font-size: 16px;
  font-weight: 400;
}

footer .email-field input {
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 1px solid #fff;
  width: 100%;
  padding: 10px;
  color: #fff;
  font-size: 14px;
  outline: 0;
}

footer .email-field input:hover {
  border: 1px solid #fff;
}

footer .email-field input:focus-visible {
  border: 1px solid #fff;
  outline: 0;
}

footer .email-field button {
  position: absolute;
  top: 50%;
  right: 10px;
  background: none;
  border: 0;
  color: #fff;
  transform: translateY(-50%);
}

footer .email-field button i {
  font-size: 14px;
}

footer form p {
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
}

footer .ig-icon {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.4s;
}

footer .ig-icon i {
  font-size: 14px;
}

footer .ig-icon:hover {
  background: #fff;
  transition: all 0.4s;
}

footer .ig-icon:hover i {
  color: #000 !important;
}

.footer-logo {
  width: 75%;
}

footer .copyright-text {
  font-size: 12px;
  letter-spacing: 0;
}

footer .copyright-text a {
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 600;
}

footer .accordion {
  background: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  border: 0;
  outline: 0;
  text-align: left;
}

footer .active,
footer .accordion:hover {
  background-color: transparent;
}

.menu-toggle {
  display: block;
  margin: 0;
  width: 40px;
  height: 40px;
  z-index: 9999999;
}

.menu-toggle.active {
  border-radius: 50%;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  margin: 0 auto;
  position: relative;
  top: 50%;
  transition-duration: 0s;
  transition-delay: 0.2s;
  transition: background-color 0.3s;
  transform: translateY(-50%);
}

.menu-toggle span:before,
.menu-toggle span:after {
  position: absolute;
  content: "";
}

.menu-toggle span,
.menu-toggle span:before,
.menu-toggle span:after {
  width: 20px;
  height: 2px;
  background-color: #fff;
  display: block;
  opacity: 1;
  margin: auto;
}

.menu-toggle span:before {
  margin-top: -8px;
  transition-property: margin, transform;
  transition-duration: 0.2s;
  transition-delay: 0.2s, 0;
}

.menu-toggle span:after {
  margin-top: 8px;
  transition-property: margin, transform;
  transition-duration: 0.2s;
  transition-delay: 0.2s, 0;
}

.menu-toggle.active span {
  background-color: rgba(0, 0, 0, 0);
  transition: 0.3s background-color;
}

.menu-toggle.active span:before {
  background-color: rgb(0, 0, 0);
  margin-top: 0;
  transform: rotate(45deg);
  transition-delay: 0, 0.2s;
}

.menu-toggle.active span:after {
  background-color: rgb(0, 0, 0);
  margin-top: 0;
  transform: rotate(-45deg);
  transition-delay: 0, 0.2s;
}

header:hover .menu-toggle.active span {
  background-color: rgba(0, 0, 0, 0);
  transition: 0.3s background-color;
}

header:hover .menu-toggle.active span:before {
  margin-top: 0;
  transform: rotate(45deg);
  transition-delay: 0, 0.2s;
}

header:hover .menu-toggle.active span:after {
  margin-top: 0;
  transform: rotate(-45deg);
  transition-delay: 0, 0.2s;
}

.main-content {
  /* margin-top: 115px; */
}

.cart-toggler {
  border: 0;
  background: transparent;
  outline: 0 !important;
}

.price-range-slider {
  width: 100%;
  float: left;
  padding: 0;
}

.price-range-slider .range-value {
  margin: 0;
  color: #000;
  font-family: Avenir Roman;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.price-range-slider .range-value input {
  width: 100%;
  background: none;
  color: #000;
  font-size: 14px;
  font-weight: initial;
  box-shadow: none;
  border: none;
  margin: 20px 0 20px 0;
  font-family: Avenir Roman;
}

.price-range-slider .range-bar {
  border: none;
  background: #000;
  height: 3px;
  width: 75%;
  margin-left: 8px;
}

.price-range-slider .range-bar .ui-slider-range {
  background: #000;
}

.price-range-slider .range-bar .ui-slider-handle {
  border: none;
  border-radius: 25px;
  background: #000;
  border: 2px solid #000;
  height: 17px;
  width: 17px;
  top: -0.52em;
  cursor: pointer;
}

.price-range-slider .range-bar .ui-slider-handle+span {
  background: #000;
}

.filter-section h1 {
  color: #CB2B3A;
  font-family: Avenir Roman;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.filter-section .accordion {
  color: #000;
  font-family: Avenir Roman;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: 0;
  outline: 0;
  background: transparent;
  width: 100%;
  text-align: left;
}

.filter-section .panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.filter-section .accordion i {
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 14px;
  transition: transform 0.4s;
}

.filter-section .accordion.active i {
  transform: translateY(-50%) rotate(180deg);
  transition: transform 0.4s;
}

.details-section .accordion {
  color: #000;
  font-family: Avenir Roman;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border: 0;
  outline: 0;
  background: transparent;
  width: 50%;
  text-align: left;
}

.details-section .panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.details-section .accordion i {
  display: block;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  font-size: 14px;
  transition: transform 0.4s;
}

.details-section .accordion.active i {
  transform: translateY(-50%) rotate(180deg);
  transition: transform 0.4s;
}

.reset-text {
  color: #000;
  font-family: Avenir Roman;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.filter-section .filter-sort-btn {
  height: 40px;
  width: 100%;
  border-radius: 24px;
  background: #000;
  color: #FFF;
  text-align: center;
  font-family: Avenir Roman;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filter-sort-btn.active+.panel {
  max-height: initial !important;
}

.before-after p {
  color: #C00000;
  font-family: Avenir Roman;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
  letter-spacing: 0.72px;
}

.review-details {
  width: 50%;
}

.review-details p {
  color: #000;
  font-family: Avenir Roman;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
}

.home-curr-select {
  position: absolute;
}

.header-right {
  gap: 10px !important;
}

.prod-curr {
  align-self: end !important;
}

header {
  background: #fff;
  z-index: 9999;
}

header span {
  color: #c00000;
  font-family: Avenir;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 3.2px;
}

.mob-prod-curr select,
.mob-prod-curr option,
.prod-curr select,
.prod-curr option {
  background-color: white !important;
  border-radius: 4px;
  border: 1px solid black !important;
  outline: none;
}

@media screen and (max-width: 991px) {
  header span {
    display: none;
  }

  header .logo {
    height: 100px;
    object-fit: contain;
  }
}

header .logo {
  width: 150px;
}

header .img-icon {
  width: 40px;
}

@media screen and (max-width: 767px) {
  header .img-icon {
    width: 25px;
  }

  header .logo {
    height: 70px;
  }
}

@media screen and (max-width: 480px) {
  .prod-curr {
    display: none;
  }
}

header .nav-item {
  color: #000 !important;
}

@media screen and (max-width: 991px) {
  header .search-toggle {
    display: block !important;
  }
}

.new-menu {
  position: relative;
  z-index: 9999;
}

.new-menu .container {
  background: #c00000;
  padding: 20px 40px;
}

@media screen and (max-width: 991px) {
  .new-menu .container {
    padding: 20px 30px;
  }
}

.new-menu a {
  color: #fff;
  font-family: Avenir;
  font-size: 14px;
  font-weight: 800;
  line-height: 28px;
  letter-spacing: 3.2px;
}

@media screen and (max-width: 991px) {
  .new-menu ul {
    display: none !important;
  }
}

.toggle-wrap {
  display: none !important;
}

@media screen and (max-width: 991px) {
  .toggle-wrap {
    display: flex !important;
  }
}

.review-details span {
  color: #3EBCC4;
  font-family: Avenir Roman;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 6px;
}

.review-img {
  width: 60px;
}

.review-img img {
  width: 100%;
  height: auto;
}

.search {
  background: #f2f2f2;
  border-radius: 10px;
}

@media screen and (max-width: 991px) {
  .menu-toggle {
    display: block !important;
  }

  .nav-item {
    display: none !important;
  }

  .search-toggle {
    display: none !important;
  }

  .header-right .search-toggle {
    display: block !important;
  }

  footer .accordion {
    height: 40px;
  }

  .filter-section h1 {
    font-size: 30px;
  }

  .details-section .accordion {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .pr-btn {
    width: 100%;
  }

  .mobile-menu {
    width: calc(100% - 4rem);
  }

  .mini-cart {
    width: calc(100% - 4rem);
  }

  footer .copyright-text {
    text-align: center;
  }

  footer .accordion {
    width: 100%;
    border-bottom: 1px solid #fff;
    text-align: left;
    display: flex;
    align-items: center;
    height: 40px;
  }

  footer .ig-icon {
    margin: auto;
  }

  footer .accordion i {
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 14px;
    transition: transform 0.4s;
  }

  footer .accordion.active i {
    transform: translateY(-50%) rotate(180deg);
    transition: transform 0.4s;
  }

  .details-section .accordion {
    width: 100%;
  }

  .review-details {
    width: 100%;
  }

  .footer {
    flex-direction: column !important;
  }

  .footer .link-policy li::after {
    display: none;
  }

  .footer .copyright-text {
    margin-right: 0 !important;
    margin-bottom: 10px !important;
  }

  .footer .link-policy {
    flex-direction: column !important;
  }

  .footer .link-policy li {
    margin: 5px 0;
  }
}

#product_best_use_direction p {
  margin-bottom: .5px;
}