/*Styles*/
@import url("css2-2");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-overflow-scrolling: touch;
}

html {
  --white--bg: #ffffff;
  --text-color: #4b4b4b;
  --hover-bg: #f7f7f7;
  --body-bg: #eaeef5;
  --dark--bg: #1b1b1b;
  --dark--color: #1b1b1b;
  --header-lite--color: #e5dfd9;
  --white-color: #ffffff;
  --bg-danger: rgba(250, 36, 36, 1);
  --border-color: #cacaca;
  --bg-primary: #ff5aa6;
  --color-success: #00b646;
  --trans: all ease 0.4s;
  --font: "Nunito Sans", Sans-serif;
  font-size: 1rem;
}
html body.dark--mode {
  --white--bg: #212121;
  --text-color: hsla(0, 0%, 100%, 0.815);
  --hover-bg: hsla(0, 0%, 0%, 0.473);
  --body-bg: #0f0f0f;
  --dark--bg: #e2e2e2;
  --dark--color: #e7e7e7;
  --header-lite--color: hsl(0, 0%, 3%);
  --white-color: #141414;
  --border-color: #353535;
}

body {
  background: var(--body-bg);
  font-family: var(--font);
  color: var(--text-color);
  transition: all ease 0.3s;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
}

.btn {
  position: relative;
  border: none;
  outline: none;
  font-size: 1em;
  padding: 0.7em 4em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
  background: transparent;
  transition: var(--trans);
}

.btn-pill {
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
}

.btn-outlite {
  color: var(--border-color);
  border: 2px solid var(--border-color);
}
.btn-outlite:hover {
  color: var(--dark--color);
  border-color: var(--dark--color);
}

.btn-primary {
  background: var(--bg-primary);
  color: var(--white-color);
}

.btn-block {
  width: 100%;
}

.btn-default {
  background: var(--header-lite--color);
}

/*header styles*/
.header_grow {
  position: relative;
  width: 100%;
  z-index: 99;
}

.header-top {
  position: relative;
  width: 100%;
  z-index: 5;
}

.container {
  position: relative;
  width: 80rem !important;
  max-width: 97% !important;
  margin: 0 auto;
}

.flex-space--between {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.py-1 {
  padding: 0.5rem 0;
}

.top-header--nav {
  position: relative;
  display: flex;
  align-items: center;
  width: 30%;
  justify-content: flex-end;
}

.header_extr {
  position: relative;
  width: 30%;
}

.header--brand {
  display: block;
  position: relative;
  text-align: center;
}
.header--brand img {
  height: 35px;
}
@media only screen and (min-width: 747px) {
  .header--brand img {
    height: 50px;
  }
}

.header-nav--item {
  position: relative;
  display: flex;
  align-items: center;
}
.header-nav--item:last-child {
  border-left: 1px solid var(--border-color);
  padding-left: 1rem;
}
@media only screen and (min-width: 747px) {
  .header-nav--item {
    margin-right: 1rem;
  }
  .header-nav--item:last-child {
    margin-right: 0;
  }
}

.header--btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--trans);
  border-radius: 4px;
}
.header--btn i {
  font-size: 1rem;
}
.header--btn span {
  margin-left: 0.5rem;
}
.header--btn:hover {
  background: var(--hover-bg);
}

.btn-mood {
  border-right: 1px solid var(--border-color);
  color: var(--text-color);
  border-radius: 0;
}
.btn-mood:hover {
  background-repeat: 4px;
}

.nav__header {
  position: relative;
  width: 100%;
  background: #230323;
  z-index: 4;
}
@media only screen and (max-width: 747px) {
  .nav__header {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 400;
    background: var(--white--bg);
    overflow: auto;
  }
}

.nav-header-wrap {
  width: 100%;
  display: flex;
  position: relative;
}
@media only screen and (max-width: 747px) {
  .nav-header-wrap {
    flex-direction: column;
  }
}

.isHidden {
  display: none;
}

@media only screen and (max-width: 747px) {
  .sm-header--nav {
    pointer-events: none;
    overflow: hidden;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    transition-delay: 0.1s;
    visibility: hidden;
  }

  .sx-visible--flex {
    display: flex !important;
  }

  .--categHd {
    position: sticky;
    top: 0;
    z-index: 2;
    background: var(--white-color);
    color: var(--dark--color);
    font-size: 1.2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
  .--categHd::before {
    position: absolute;
    width: 100%;
    content: "";
    height: 5px;
    background: var(--border-color);
    left: 0;
    bottom: 0;
    opacity: 0.4;
  }
  .--categHd button {
    border: none;
    outline: none;
    background: none;
    font-size: 1.4rem;
    color: var(--dark--color);
  }

  .sm-header--nav.show {
    pointer-events: all;
    overflow: auto;
    transform: scaleX(1);
    visibility: visible;
  }
}
.nav-list {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 747px) {
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 3rem;
  }
}

.nav-item {
  margin-right: 1rem;
  white-space: none;
}
.nav-item:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 747px) {
  .nav-item {
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    position: relative;
  }
}
@media only screen and (min-width: 747px) {
  .nav-item:hover .nav-link {
    color: var(--white-color);
  }
}

.nav-link {
  position: relative;
  font-size: 0.7rem;
  color: var(--dark--color);
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.9rem 0.5rem;
  display: block;
}
.nav-link .badge {
  margin-left: 0.3rem;
}
@media only screen and (min-width: 747px) {
  .nav-link {
    color: var(--header-lite--color);
  }
}

@media only screen and (max-width: 747px) {
  .next--child .nav-link::before, .next--child .nav-link::after {
    position: absolute;
    content: "";
    right: 1rem;
    top: 50%;
    background: var(--dark--bg);
    height: 15px;
    width: 1px;
    transform: translateY(-50%);
  }
  .next--child .nav-link::after {
    transform: translateY(-50%) rotate(90deg);
  }
}

.attached {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 90%;
  white-space: nowrap;
  opacity: 0.9;
  text-transform: capitalize;
}

.badge {
  position: relative;
  display: inline;
  font-size: 85%;
  padding: 0.2rem;
  border-radius: 2px;
}

.badge-pill {
  line-height: 1;
  border-radius: 30px;
  padding: 0.2rem 0.5rem;
  font-size: 90%;
  margin-left: 0;
}

.badeg-hot {
  background: var(--bg-danger);
  color: white;
}

.badeg-bag {
  background: var(--bg-primary);
  color: var(--white-color);
}

.dropdown-index {
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  pointer-events: none;
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-delay: 0.2s;
  height: 0;
}
@media only screen and (max-width: 747px) {
  .dropdown-index {
    position: relative;
    top: unset;
    left: unset;
    transition-delay: 0s;
    transform-origin: bottom;
  }
}

.content-inner {
  background-color: rgba(255, 255, 255, 0.98);
  width: 100%;
  margin-top: -2px;
  border-radius: 0 0 16px 16px;
}
@media only screen and (max-width: 747px) {
  .content-inner {
    background: none !important;
  }
}

.dropdown-index.active {
  pointer-events: all;
  height: auto;
  min-height: 240px;
  transform: scaleY(1);
}

.dropdown-index.active__current {
  pointer-events: all;
  height: auto;
  min-height: 240px;
  transform: scaleY(1);
}

.next--child:hover > .dropdown-index {
  pointer-events: all;
  height: auto;
  min-height: 240px;
  transform: scaleY(1);
}

@media only screen and (min-width: 747px) {
  .next--child:hover > .nav-link .current-caret {
    opacity: 1;
  }
}

@media only screen and (max-width: 747px) {
  .next--child:hover > .nav-link::before {
    display: none;
  }
}

.header-nav--subsections {
  position: relative;
  width: 100%;
  display: flex;
  padding-top: 0.5rem;
  padding-bottom: 1rem;
}
@media only screen and (min-width: 747px) {
  .header-nav--subsections {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.header-nav--list {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 747px) {
  .header-nav--list {
    flex-direction: row;
    justify-content: space-between;
    flex: 1;
  }
}

.header-nav--list---items {
  position: relative;
  width: 200px;
  max-width: 100%;
  flex-direction: column;
  display: flex;
}

.group-category--items {
  position: relative;
  width: 45%;
  padding-left: 2rem;
}
@media only screen and (max-width: 747px) {
  .group-category--items {
    display: none;
  }
}

.category-items--list {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(auto-fill, minmax(126px, 1fr));
  position: relative;
  width: 100%;
}

.category-items {
  position: relative;
  width: 100%;
}

.ct--itm--link {
  display: block;
  position: relative;
}

.pro-lite--card {
  position: relative;
  width: 100%;
  background: var(--white--bg);
  border-radius: 19px;
  overflow: hidden;
  padding: 0.4rem;
}
.pro-lite--card img {
  width: 100%;
  height: 126px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow: 0px 15px 36px rgba(119, 119, 119, 0.06);
}

.ng-price--sm {
  font-size: 0.8rem;
  font-weight: bold;
  color: var(--dark--color);
}
@media only screen and (min-width: 747px) {
  .ng-price--sm {
    font-size: 0.9rem;
  }
}

.ng-name--sm {
  position: relative;
  font-size: 0.754rem;
  font-weight: normal;
  width: 23ch;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media only screen and (min-width: 747px) {
  .ng-name--sm {
    font-size: 0.8rem;
  }
}

.pro-card--footer {
  position: relative;
  display: block;
  padding: 0.5rem;
  padding-top: 0.8rem;
  z-index: 3;
}

.ng-tag--sm {
  font-size: 0.7rem;
  color: var(--text-color);
  opacity: 0.6;
  font-weight: bold;
}

.hader-nav--list---headeing {
  position: relative;
  margin-bottom: 1rem;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--dark--color);
}

.header-nav-subLinks {
  margin-bottom: 0.7rem;
  font-size: 0.8rem;
}
.header-nav-subLinks:hover {
  color: var(--dark--color);
}

.current-caret {
  position: absolute;
  bottom: -20px;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  color: #230323;
  font-size: 1.6rem;
  opacity: 0;
  pointer-events: none;
  transition: var(--trans);
  pointer-events: none;
}

.header-lift {
  z-index: 10;
}

.search--module {
  position: fixed;
  top: 0;
  z-index: 9999;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  background: transparent;
  display: none;
}
.search--module::before {
  position: absolute;
  height: 70px;
  left: 0px;
  right: 53px;
  content: "";
  display: block;
  background: none;
}
.search--module::after {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  content: "";
  display: block;
  background: rgba(22, 22, 22, 0.9);
}
@media only screen and (min-width: 747px) {
  .search--module {
    top: 70px;
  }
}

.closeSearch.xLKS {
  display: none;
  right: 2rem;
  top: 1.5rem;
}

.explore_ .search--module {
  top: 0;
}
.explore_ .Search__Modal {
  top: 70px;
}
.explore_ .closeSearch.xLKS {
  display: block;
}

.Search__Modal {
  position: relative;
  min-height: 26.5625rem;
  width: 46.5rem;
  left: auto;
  right: 0px;
  top: 0;
  background-color: var(--white--bg);
  outline: none;
  z-index: 22;
  border-radius: 8px;
  transition: var(--trans);
  animation-duration: 0.2s;
  animation-name: appear;
  animation-delay: 0.1s;
  animation-fill-mode: both;
  transition: all 0.1s linear;
  overflow: auto;
}
@media only screen and (min-width: 747px) {
  .Search__Modal {
    max-height: 80vh;
  }
}
@media only screen and (max-width: 747px) {
  .Search__Modal {
    width: 100%;
    height: 100%;
    border-radius: 0;
    top: 70px;
    position: absolute;
  }
}

.cart__modal {
  position: absolute;
  width: 26.5rem;
  height: 100%;
  right: 40px;
  top: 0;
  outline: none;
  z-index: 223;
}
@media only screen and (max-width: 747px) {
  .cart__modal {
    bottom: 0;
    top: unset;
    left: 0;
    height: 100%;
    right: unset;
    width: 100%;
  }
}

.cart__modal_inner {
  position: relative;
  min-height: 26.5625rem;
  width: 100%;
  background-color: var(--body-bg);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-delay: 0.2s;
  border-radius: 16px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}
@media only screen and (max-width: 747px) {
  .cart__modal_inner {
    position: absolute;
    height: 100%;
    transform-origin: bottom;
    border-radius: 0;
  }
}

.s-c {
  display: none;
  font-size: 1.5rem;
  line-height: 1;
}

.search-is---active {
  background-color: #1b1b1b;
}
.search-is---active .search--module {
  display: block;
}
@media only screen and (min-width: 747px) {
  .search-is---active .search--module {
    display: grid;
    place-content: center;
  }
}
.search-is---active .s-c {
  display: block;
}
.search-is---active .s-o {
  display: none;
}
.search-is---active .header--btn {
  color: var(--white--bg);
  opacity: 0;
}
.search-is---active .header--btn:hover {
  background: var(--dark--bg);
}
.search-is---active .header--brand {
  opacity: 0;
}
.search-is---active .header-lift:hover .header--brand, .search-is---active .header-lift:hover .header--btn {
  opacity: 1;
}
.search-is---active .btn-outlite:hover {
  border-color: var(--white--bg);
  color: var(--white-color);
}
.search-is---active .item-cart, .search-is---active .item-account {
  pointer-events: none;
}

.cart__module {
  pointer-events: none;
  height: 0;
  position: fixed;
  top: 70px;
  width: 100%;
  z-index: 40;
  left: 0;
  background: transparent;
}
@media only screen and (max-width: 747px) {
  .cart__module {
    top: unset;
    bottom: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100% !important;
  }
}

.cart-is---active, .cart-is---active__ {
  background-color: #1b1b1b;
}
.cart-is---active .cart__module, .cart-is---active__ .cart__module {
  pointer-events: all;
  height: 100%;
}
.cart-is---active .cart__module::before, .cart-is---active__ .cart__module::before {
  position: absolute;
  top: -70px;
  height: 70px;
  left: 0px;
  right: 53px;
  content: "";
  display: block;
  background: none;
}
.cart-is---active .cart__module::after, .cart-is---active__ .cart__module::after {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  content: "";
  display: block;
  background: rgba(22, 22, 22, 0.9);
}
.cart-is---active .cart__modal_inner, .cart-is---active__ .cart__modal_inner {
  transform: scaleY(1);
}
.cart-is---active .header--brand, .cart-is---active__ .header--brand {
  opacity: 0;
}
.cart-is---active .header-nav--item, .cart-is---active .header_extr, .cart-is---active__ .header-nav--item, .cart-is---active__ .header_extr {
  opacity: 0;
}
.cart-is---active .header--btn, .cart-is---active__ .header--btn {
  color: var(--white--bg);
}
.cart-is---active .header--btn:hover, .cart-is---active__ .header--btn:hover {
  background: var(--dark--bg);
}
.cart-is---active .item-cart, .cart-is---active__ .item-cart {
  opacity: 1;
}
.cart-is---active .item-cart .header--btn, .cart-is---active__ .item-cart .header--btn {
  color: var(--white--bg);
  opacity: 1;
}
.cart-is---active .item-cart .header--btn:hover, .cart-is---active__ .item-cart .header--btn:hover {
  background: var(--dark--bg);
}
.cart-is---active .header-lift:hover .header--brand, .cart-is---active__ .header-lift:hover .header--brand {
  opacity: 1;
}
.cart-is---active .header-lift:hover .header-nav--item, .cart-is---active .header-lift:hover .header_extr, .cart-is---active__ .header-lift:hover .header-nav--item, .cart-is---active__ .header-lift:hover .header_extr {
  opacity: 1;
}

.make--serach {
  position: relative;
  width: 100%;
  padding: 1rem;
}
@media only screen and (min-width: 747px) {
  .make--serach {
    padding: 2rem;
  }
}

.search__group {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--dark--bg);
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}
.search__group i {
  font-size: 0.9rem;
  font-weight: bolder;
  color: var(--dark--color);
}

.c-search {
  flex: 1;
  font-size: 1.1rem;
  margin-left: 1rem;
  outline: none;
  border: none;
  line-height: 1;
  color: var(--dark--color);
  font-family: inherit;
  font-weight: 300;
  background: transparent;
}

.search__results {
  position: relative;
  width: 100%;
  padding-top: 1rem;
}

.search_prePopulate {
  position: relative;
  width: 100%;
}
.search_prePopulate h4 {
  position: relative;
  margin-bottom: 1rem;
  color: var(--dark--color);
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: bold;
}
.search_prePopulate ul {
  position: relative;
}
.search_prePopulate ul li {
  position: relative;
  display: block;
  margin-bottom: 0.7rem;
}
.search_prePopulate ul li a {
  display: inline-flex;
  align-items: center;
}
.search_prePopulate ul li a i {
  margin-right: 0.5rem;
  font-size: 0.7rem;
}
@media only screen and (min-width: 747px) {
  .search_prePopulate ul {
    width: 50%;
  }
}

.cart--header {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  align-items: center;
}
.cart--header h4 {
  font-weight: 300;
  font-size: 1.2rem;
}
.cart--header button {
  border: none;
  background: transparent;
  outline: none;
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  color: var(--text-color);
}
@media only screen and (min-width: 747px) {
  .cart--header {
    padding: 0.5rem 2rem;
  }
}

.cart-footer {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding: 1rem;
}
.cart-footer .btn {
  margin-top: 0.7rem;
  font-weight: normal;
  text-transform: uppercase;
  font-size: 0.9rem;
}
@media only screen and (min-width: 747px) {
  .cart-footer {
    padding: 1rem 2rem;
  }
}

.cart-caret {
  position: absolute;
  top: -19px;
  left: 65%;
  color: var(--body-bg);
  transform: translateX(610%);
}
.cart-caret i {
  font-size: 1.8rem;
}
@media only screen and (min-width: 747px) {
  .cart-caret {
    left: 50%;
    transform: translateX(-50%);
  }
}

.cart--boody {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: auto;
}
.cart--boody::-webkit-scrollbar-thumb {
  background: #c6c6c6;
  border-radius: 4px;
}
.cart--boody::-webkit-scrollbar {
  width: 0.4rem;
}
@media only screen and (min-width: 747px) {
  .cart--boody {
    max-height: 450px;
  }
}

.subTotals {
  position: sticky;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  bottom: 0;
  z-index: 2;
  background: var(--body-bg);
}
.subTotals h3 {
  text-transform: capitalize;
  font-style: italic;
  color: #808080;
  font-size: 0.9rem;
  font-weight: normal;
  font-family: serif;
}
.subTotals h2 {
  font-weight: 300;
  font-size: 1.2rem;
  font-family: var(--font);
}
.subTotals h2 span {
  font-size: 80%;
  margin-right: 0.4rem;
}

.cartlist {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.cart--item {
  position: relative;
  width: 96%;
  padding: 1rem;
  transition: var(--trans);
  cursor: pointer;
  background: var(--white--bg);
  margin: 0 auto;
  margin-bottom: 0.5rem;
  border-radius: 16px;
}
.cart--item:last-child {
  border-bottom: none;
}
.cart--item:hover {
  background: #f9f9f9;
}
@media only screen and (min-width: 747px) {
  .cart--item {
    padding: 1rem 2rem;
  }
}

.cart-card {
  position: relative;
  display: flex;
}

.cart-first--box {
  position: relative;
  width: 80px;
  height: 85px;
  overflow: hidden;
  border-radius: 8px;
  display: flex;
}
.cart-first--box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-first--box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background: var(--dark--bg);
  opacity: 0.03;
  border-radius: 8px;
}

.cart--box {
  position: relative;
  flex: 1;
  padding-left: 1rem;
}

.cart--title {
  position: relative;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.cart-smTxt {
  position: relative;
  font-size: 0.8rem;
  line-height: 1;
  display: flex;
  margin-bottom: 0.4rem;
  font-weight: 400;
  color: #999;
}
.cart-smTxt b {
  margin-right: 0.3rem;
  font-weight: 300;
}

.cart-box--foot {
  position: relative;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
}
.cart-box--foot .q-tile {
  width: unset;
}

input.q-val {
  width: 27px;
  padding: 0;
  text-align: center;
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
}

.q-tile {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.q-tile .crt-btn {
  border: 1px solid #e2e2e2;
  border-radius: 40px;
  width: 41px;
  height: 41px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #efefef;
}
@media only screen and (min-width: 747px) {
  .q-tile .crt-btn {
    width: 35px;
    height: 35px;
  }
}

.crt-btn {
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background: transparent;
  padding: 0.2rem 0.3rem;
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  outline: none;
  background: var(--white-color);
  transition: var(--trans);
}
.crt-btn:hover {
  background: var(--header-lite--color);
}

.btn-trash {
  color: var(--border-color);
}
.btn-trash:hover {
  background: var(--white--bg);
  color: var(--text-color);
}

.cartlist {
  position: relative;
  width: 100%;
}

.q-sum {
  font-size: 0.8rem;
  font-style: italic;
}

.alert {
  position: relative;
  display: inline-block;
  font-size: 0.8rem;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
}

.run_small {
  width: 100%;
  list-style: none;
}

.run_small span {
  margin-left: 0;
}

.alert-info {
  background: var(--header-lite--color);
}

.cart-alert {
  position: relative;
  display: flex;
  width: 100%;
  border-bottom: 2px solid;
  padding: 0.5rem 2rem;
  align-items: center;
}
.cart-alert i {
  font-size: 1.3rem;
  margin-right: 1rem;
}

.alert-success {
  color: var(--color-success);
  background: #f2fbf5;
}

.banner--section {
  width: 900px;
  position: relative;
  border-radius: 19px;
  overflow: hidden;
  border: 5px solid var(--white-color);
  background: var(--white-color);
  box-shadow: 0px 2px 6px #e0e5ec;
}

.main-slide {
  width: 100%;
}

.banner--list {
  width: 100%;
}

.slide-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}

.banner {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 16px;
}
@media only screen and (min-width: 747px) {
  .banner {
    height: 450px;
  }
}

.banner--top {
  width: 80rem;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
}

.ad-center {
  width: 350px;
  margin-left: 3rem;
}

.ad--group {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

img {
  display: block;
}

.ad--item {
  width: 100%;
  margin-bottom: 1rem;
}
.ad--item:last-child {
  margin-bottom: 0;
}
.ad--item::before {
  position: absolute;
  content: "";
  width: 600px;
  height: 100%;
  top: 0;
  right: 0;
  background: inherit;
  z-index: 0;
}
.ad--item a {
  display: block;
}
.ad--item img {
  position: relative;
  width: 100%;
  box-shadow: 0px 3px 6px rgba(2, 5, 7, 0.23);
  border-radius: 8px;
}

.section {
  position: relative;
  width: 100%;
  margin-bottom: 1.5rem;
  z-index: 2;
}
@media only screen and (min-width: 747px) {
  .section {
    margin: 2rem 0;
  }
}

.zz20 {
  z-index: 20;
}

.zz5 {
  z-index: 5;
}

.section-card {
  position: relative;
  width: 100%;
}
.section-card .category-items--list {
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  grid-gap: 6px;
}
.section-card .pro-lite--card img {
  height: 175px;
}
.section-card .sct-hheader {
  padding: 0;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 747px) {
  .section-card .sct-hheader h3 {
    margin-top: 1rem;
  }
}
@media only screen and (min-width: 747px) {
  .section-card .category-items--list {
    grid-template-columns: repeat(auto-fill, minmax(171px, 1fr));
    grid-gap: 15px;
  }
  .section-card .sct-hheader {
    margin-bottom: 1rem;
  }
}

.section-categories {
  position: relative;
  width: 100%;
}
.section-categories .category-items--list {
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  grid-gap: 6px;
}
.section-categories .pro-lite--card img {
  height: 171px;
}
.section-categories .sct-hheader {
  padding: 0;
  margin-bottom: 1rem;
}
@media only screen and (min-width: 747px) {
  .section-categories .category-items--list {
    grid-template-columns: repeat(auto-fill, minmax(171px, 1fr));
    grid-gap: 15px;
  }
}

.section-card--glass {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.section-card--glass .sct-hheader {
  padding: 1rem;
}

@media only screen and (min-width: 747px) {
  .mt-2 {
    margin-top: 3rem;
  }
}
.sct-hheader {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1rem 0;
  color: var(--dark--color);
}
.sct-hheader i {
  margin-right: 1rem;
}
.sct-hheader h3 {
  font-size: 1.3rem;
  font-weight: bold;
}
@media only screen and (max-width: 747px) {
  .sct-hheader {
    width: 60%;
    margin-left: 7px;
  }
}

.boxed-category--list {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 747px) {
  .boxed-category--list {
    padding: 1rem 0;
  }
}

.boxed-category--item {
  margin-right: 1.5rem;
  width: 120px;
}

.boxed-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--white--bg);
  padding: 1rem;
  border-radius: 14px;
}
.boxed-card p {
  font-size: 0.7rem;
  font-weight: 400;
  margin-top: 0.4rem;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 10ch;
}

.boxed-image {
  position: relative;
  width: 90px;
  height: 90px;
  border-radius: 50px;
  overflow: hidden;
}
.boxed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card--img {
  position: relative;
}
.product-card--img img {
  transition: all ease-in-out 0.4s;
}
.product-card--img img:last-child {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0;
}

.ct--itm--link:hover .product-card--img img:last-child {
  opacity: 1;
}

.section-white {
  background: var(--white--bg);
  padding: 3rem 0;
  padding-top: 1rem;
  margin: 0;
}

.brand-items--list {
  position: relative;
}

.ad-items--list {
  position: relative;
  width: 100%;
}

.pageAd {
  position: relative;
}
.pageAd .ad-items--list {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
@media only screen and (min-width: 747px) {
  .pageAd .ad-items--list {
    grid-gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(450px, 1fr));
  }
}

.ads-items {
  position: relative;
  overflow: hidden;
  padding: 0.4rem;
  border-radius: 12px;
  background: var(--white--bg);
}
.ads-items a {
  display: block;
  position: relative;
}
.ads-items a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: #a27b89;
  opacity: 0.1;
  border-radius: 12px;
  transition: var(--trans);
}
.ads-items a span {
  position: absolute;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: var(--bg-primary);
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  background: var(--white--bg);
  border-radius: 40px;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}
.ads-items a:hover::after {
  opacity: 0.5;
}
.ads-items a:hover img {
  transform: scale(1.2);
}
.ads-items a:hover span {
  opacity: 1;
}

.brand-items, .shopLook {
  position: relative;
  background: #f8f8f8;
  border-radius: 8px;
}

.brand-items {
  padding-bottom: 1rem;
}

.shopLook {
  border-radius: 16px;
  cursor: pointer;
  width: 270px;
}
@media only screen and (min-width: 747px) {
  .shopLook {
    width: 350px;
  }
}

.brand-gr-head {
  position: relative;
  width: 100%;
  display: flex;
  margin-bottom: 0.5rem;
  padding: 0.7rem;
}
.brand-gr-head h4 {
  font-weight: 900;
  color: var(--dark--color);
  font-size: 0.9rem;
}

._28mbW, ._27mbW {
  position: absolute;
  top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  padding: 0 14px;
  font-size: 10px;
  line-height: 16px;
  font-weight: 700;
  color: #c7864d;
  background-color: #f4e2cf;
  right: -20px;
}
._28mbW::before, ._27mbW::before {
  content: "";
  width: 10px;
  height: 20px;
  background: url(../../img/ban-left.png) no-repeat;
  position: absolute;
  left: -10px;
  background-size: cover;
}

._27mbW {
  color: var(--white--bg);
  background-color: #c7864d;
}

.brand-product-list {
  display: flex;
  position: relative;
  width: 95%;
  padding: 0.7rem;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white--bg);
  margin: 0 auto;
}

.brand-item {
  position: relative;
  width: 100px;
  margin-left: -20px;
  transition: var(--trans);
}
.brand-item:first-child {
  margin-left: 0;
}
.brand-item a {
  display: block;
}

.brand-item--img {
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--white--bg);
  background: var(--white--bg);
  box-shadow: -10px 2px 22px -2px rgba(96, 96, 117, 0.14);
}
.brand-item--img img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lite-btm {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.3rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(50px);
  width: 100%;
  border-radius: 0 0 8px 8px;
}
.lite-btm .ng-price--sm {
  font-size: 0.7rem;
}

.swiper-button-next, .swiper-button-prev {
  width: 30px;
  height: 30px;
  background: var(--header-lite--color);
  color: var(--dark--color);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  border-radius: 20px;
  outline: none;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  pointer-events: all;
}

.ads-img {
  position: relative;
  width: 100%;
  border-radius: 12px;
  transition: all 0.2s ease-out;
}

.footer {
  position: relative;
  width: 100%;
  background: #e3e3e3;
  padding: 2rem 0;
  z-index: 2;
}

.boxed-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-nav--group {
  position: relative;
  margin: 1rem;
}
.footer-nav--group a {
  font-size: 0.7rem;
  font-weight: 600;
}
.footer-nav--group a:hover {
  text-decoration: underline;
  color: var(--dark--color);
}
.footer-nav--group a i {
  font-size: 1rem;
}

.newsetter {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}
.newsetter h4 {
  margin-bottom: 0.5rem;
  font-weight: normal;
  font-size: 0.9rem;
  line-height: 1;
}
.newsetter p {
  font-size: 0.8rem;
  font-weight: normal;
  text-align: center;
}

.newsLetter-form-group {
  position: relative;
  margin-top: 0.7rem;
  display: flex;
  align-items: center;
  width: 300px;
  max-width: 100%;
  background: var(--white--bg);
  border-radius: 3px;
  overflow: hidden;
}
@media only screen and (min-width: 747px) {
  .newsLetter-form-group {
    width: 400px;
  }
}

.nsBtn {
  position: relative;
  height: 38px;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  transition: var(--trans);
  color: var(--text-color);
}
.nsBtn i {
  font-size: 0.7rem;
  margin-left: 0.3rem;
}
.nsBtn:hover {
  background: var(--hover-bg);
}

.newsInput {
  position: relative;
  flex: 1;
  height: 38px;
  border: none;
  outline: none;
  background: transparent;
  padding: 0 1rem;
  font-family: inherit;
  font-size: 0.8rem;
}

.payments {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0.5rem 0;
}
.payments img {
  height: 40px;
}

.footer-foot {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 1rem 0;
  justify-content: center;
}
.footer-foot p {
  font-size: 0.8rem;
  font-weight: normal;
}
.footer-foot p a {
  font-weight: bold;
  color: var(--dark--color);
}
@media only screen and (min-width: 747px) {
  .footer-foot p:last-child {
    margin-left: 1rem;
  }
}

.breadcrumb {
  position: sticky;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  top: 0;
  z-index: 34;
  transition: var(--trans);
}
@media only screen and (max-width: 747px) {
  .breadcrumb {
    display: none;
  }
}

.list-breadcrumb {
  position: relative;
  display: flex;
  align-items: center;
}
.list-breadcrumb li {
  font-size: 0.8rem;
  font-weight: normal;
  margin-right: 1rem;
  border-right: 1px solid var(--border-color);
  padding-right: 1rem;
}
.list-breadcrumb li:last-child {
  border-right: none;
  text-transform: capitalize;
}
.list-breadcrumb li:first-child {
  text-transform: uppercase;
}

.breadcrumb-split {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
}
.breadcrumb-split a {
  color: #999;
  transition: var(--trans);
}
.breadcrumb-split a:hover {
  color: #1b1b1b;
}

.share--curent {
  font-size: 0.8rem;
}
.share--curent i {
  margin-left: 1rem;
  font-size: 1rem;
}
@media only screen and (max-width: 747px) {
  .share--curent span {
    display: none;
  }
}
@media only screen and (max-width: 747px) {
  .share--curent {
    position: absolute;
    top: 0.5rem;
    right: 0.8rem;
    z-index: 10;
    width: 30px;
    height: 30px;
    border-radius: 40px;
    outline: none;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--border-color);
  }
  .share--curent i {
    margin-left: 0;
    opacity: 0.8;
  }
}

.product-wrap {
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 747px) {
  .product-wrap {
    margin-top: 0.3rem;
  }
}
.product-wrap .container {
  max-width: 97% !important;
}

.product-shared {
  position: relative;
  width: 100%;
  display: flex;
  min-height: 300px;
}
@media only screen and (max-width: 747px) {
  .product-shared {
    flex-wrap: wrap;
  }
}

.pro--item--left {
  position: relative;
  flex: 1;
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white--bg);
  box-shadow: 0px 2px 2px 0 rgba(8, 8, 8, 0.14);
  padding: 1rem;
}
@media only screen and (max-width: 747px) {
  .pro--item--left {
    flex-wrap: wrap;
  }
}

.pro--item--center {
  position: relative;
  flex: 1 auto;
}

.pro--item--right {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: 1rem;
}
@media only screen and (min-width: 747px) {
  .pro--item--right {
    margin-left: 2rem;
    margin-top: 0;
    width: 350px;
  }
}
@media only screen and (max-width: 747px) {
  .pro--item--right {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .pro--item--right .extr-item {
    width: 49%;
    flex-direction: column;
    margin-bottom: 0.5rem;
    box-shadow: 0px 2px 2px 0 rgba(114, 113, 113, 0.14);
  }
  .pro--item--right .extr-item:last-child {
    width: 100%;
  }
}

.pro-images {
  position: relative;
  width: 400px;
  max-width: 100%;
}

.pro--item--details {
  position: relative;
  flex: 1;
  margin-top: 2rem;
}
@media only screen and (min-width: 747px) {
  .pro--item--details {
    margin-left: 2rem;
    margin-top: 0;
  }
}

.product-slide, .proImage--list {
  width: 100%;
  position: relative;
}

.itemImage {
  width: 100%;
  z-index: 3;
  border-radius: 8px;
}
.itemImage img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}
@media only screen and (min-width: 747px) {
  .itemImage {
    height: 400px;
  }
}
@media only screen and (max-width: 747px) {
  .itemImage {
    background: transparent !important;
  }
  .itemImage div {
    display: none !important;
  }
}

.item--name {
  position: relative;
  font-size: 1.1rem;
  font-weight: bold;
  color: var(--dark--color);
}
@media only screen and (min-width: 747px) {
  .item--name {
    font-weight: 300;
  }
}

.rated {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #FFC107;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.6rem;
}
.rated li {
  margin-right: 0.3rem;
}

.st-brand {
  position: relative;
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: #808080;
}
.st-brand span {
  color: var(--dark--color);
}

.pricing {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 0.6rem;
  justify-content: space-between;
}

.sellingAt {
  position: relative;
  margin-right: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark--color);
  vertical-align: middle;
}

.mainPrc {
  position: relative;
  font-weight: normal;
  color: #999;
  font-size: 0.9rem;
  text-decoration: line-through;
  vertical-align: middle;
}

.variant-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
@media only screen and (max-width: 747px) {
  .variant-group {
    justify-content: space-between;
  }
}

.var-set {
  position: relative;
}
@media only screen and (min-width: 747px) {
  .var-set {
    margin-right: 1rem;
  }
}
@media only screen and (max-width: 747px) {
  .var-set {
    width: 48%;
  }
}

.select-btn {
  position: relative;
  padding: 0.65rem 1rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--white--bg);
  border-radius: 9px;
  border: 1px solid var(--border-color);
  font-size: 0.8rem;
  outline: none;
  transition: var(--trans);
  text-transform: uppercase;
}
@media only screen and (min-width: 747px) {
  .select-btn {
    width: 150px;
    padding: 0.5rem 1rem;
  }
}
.select-btn:hover {
  color: #999;
  background: var(--hover-bg);
}
.select-btn:focus {
  background: var(--white--bg);
}
.select-btn i {
  pointer-events: none;
}
.select-btn .bi-chevron-up {
  display: none;
}

.selection {
  position: absolute;
  width: 100%;
  background: var(--white--bg);
  top: 50px;
  left: 0;
  z-index: 2;
  box-shadow: #313131 1px 1px 20px -8px;
  border-radius: 2px;
  max-height: 200px;
  overflow: auto;
  transform: scaleY(0);
  pointer-events: none;
  transform-origin: top;
  transition: transform 0.1s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-delay: 0.1s;
  height: 0;
}
.selection li {
  position: relative;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: var(--dark--color);
  font-weight: 500;
  cursor: pointer;
  transition: var(--trans);
}
.selection li:hover {
  background: var(--header-lite--color);
}

.is-dropped .selection {
  transform: scaleY(1);
  pointer-events: all;
  height: auto;
}
.is-dropped .select-btn .bi-chevron-up {
  display: block;
}
.is-dropped .select-btn .bi-chevron-down {
  display: none;
}

.sm-select-label {
  position: relative;
  font-size: 0.7rem;
  font-weight: normal;
  text-transform: uppercase;
  color: #999;
  margin-top: 0.5em;
}

.link-label {
  position: relative;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: underline;
  margin-top: 0.4rem;
  cursor: pointer;
  transition: var(--trans);
}
.link-label:hover {
  color: #999;
}

.small-img {
  width: 350px;
  height: 50px;
  margin-top: 10px;
  position: relative;
  max-width: 100%;
}
@media only screen and (min-width: 747px) {
  .small-img {
    left: 25px;
    height: 70px;
  }
}

.small-img .icon-left, .small-img .icon-right {
  width: 12px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.small-img .icon-left {
  transform: rotate(180deg);
}

.small-img .icon-right {
  right: 0;
}

.small-img .icon-left:hover, .small-img .icon-right:hover {
  opacity: 0.5;
}

.small-container {
  width: 310px;
  max-width: 100%;
  height: 70px;
  overflow: hidden;
  position: absolute;
  left: 24px;
  right: 0;
  margin: 0 auto;
}
@media only screen and (min-width: 747px) {
  .small-container {
    left: 0;
  }
}

.small-container div {
  width: 800%;
  position: relative;
}

.small-container .show-small-img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  cursor: pointer;
  float: left;
  object-fit: cover;
  border-radius: 8px;
}
@media only screen and (min-width: 747px) {
  .small-container .show-small-img {
    width: 70px;
    height: 70px;
  }
}

.small-container .show-small-img:last-of-type {
  margin-right: 0;
}

.sll-ico {
  border: none;
  background: transparent;
  font-size: 1.1rem;
  outline: none;
  color: var(--dark--color);
}

.qu {
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}
.qu p {
  margin-left: 2rem;
  font-style: normal;
  font-weight: bold;
}
.qu p span {
  font-style: normal;
  margin-right: 1rem;
  font-weight: normal;
  color: #999;
}

.sum-q {
  position: relative;
  flex: 1 1 auto;
  text-align: center;
  pointer-events: none;
}

.btn-group {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
}
.btn-group .btn {
  width: 48%;
  font-size: 0.9em;
  padding: 0.7em 2em;
  border-radius: 9px;
}
.btn-group .btn:last-child {
  margin-right: 0;
}
@media only screen and (min-width: 747px) {
  .btn-group .btn {
    font-size: 1em;
  }
}

.more-details {
  position: relative;
  margin-top: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}
.more-details p {
  font-size: 0.8rem;
}
.more-details .st-brand {
  font-weight: bold;
}

.stJAH {
  position: relative;
  font-weight: 300;
  color: var(--dark--color);
  font-size: 1.1rem;
}

.detls {
  position: relative;
  margin-top: 0.5rem;
  font-size: 0.8rem;
}
.detls ul {
  list-style-type: disc;
  margin-bottom: 0.5rem;
  padding-left: 15px;
}
.detls ol {
  list-style-type: decimal;
}
.detls * {
  color: var(--text-color) !important;
}

.extr-item {
  position: relative;
  width: 100%;
  display: flex;
  padding: 1rem;
  margin-bottom: 1rem;
  background: var(--white--bg);
  border-radius: 8px;
  box-shadow: 0px 2px 2px 0 rgba(31, 31, 31, 0.14);
}
.extr-item i {
  font-size: 1.7rem;
  color: #999;
}

.pre-ico {
  position: relative;
  margin-right: 1.5rem;
}
@media only screen and (max-width: 747px) {
  .pre-ico {
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
}

.bi-content {
  position: relative;
}
.bi-content h4 {
  font-size: 1rem;
}
.bi-content p {
  font-size: 0.8rem;
}
.bi-content h5 {
  color: #999;
  font-size: 0.8rem;
  font-weight: normal;
}

.feedback-div {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
@media only screen and (max-width: 747px) {
  .feedback-div {
    justify-content: center;
  }
}

.fb-set {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-right: 2rem;
  align-items: center;
}
.fb-set:last-child {
  margin-right: 0;
}

.fb-counter {
  position: relative;
  text-align: center;
  font-size: 0.8rem;
  margin-top: 0.4rem;
  font-weight: bold;
}

.fb-btn {
  position: relative;
  border: 1px solid var(--border-color);
  font-size: 1rem;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  border-radius: 40px;
  line-height: 1;
  background: transparent;
  cursor: pointer;
}
.fb-btn:hover, .fb-btn:focus {
  background: var(--hover-bg);
  color: var(--dark--color);
}
.fb-btn i {
  color: #8BC34A;
}
@media only screen and (min-width: 747px) {
  .fb-btn {
    width: 40px;
    height: 40px;
    border: none;
    font-size: 1.3rem;
  }
}

.unlike i {
  color: var(--bg-primary);
}

@keyframes bounce {
  10%, 20%, 30%, 40%, 50% {
    transform: translateY(0);
  }
  15% {
    transform: translateY(-18px);
  }
  25% {
    transform: translateY(-10px);
  }
  35% {
    transform: translateY(-5px);
  }
  45% {
    transform: translateY(-2px);
  }
}
.bounce {
  transform: translatey(0);
  animation: bounce 4s infinite;
}

.pre-view-items {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.items-ts, .items-next {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  border-radius: 8px;
  overflow: hidden;
  transition: var(--trans);
}
.items-ts i, .items-next i {
  font-size: 1rem;
  position: absolute;
}
.items-ts:hover::after, .items-next:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background: var(--dark--bg);
  opacity: 0.03;
  border-radius: 8px;
}

.items-ts .ns-item {
  padding: 1rem 1.4rem;
}
.items-ts i {
  left: 0;
}

.ns-item {
  position: relative;
  flex: 1;
}

.items-next .ns-item {
  padding: 1rem 1.4rem;
}
.items-next i {
  right: 0;
}

.items-tx {
  flex: 1 auto;
  text-align: center;
  flex-direction: column;
  display: flex;
  color: #999;
  transition: var(--trans);
}
.items-tx i {
  font-size: 0.9rem;
}
.items-tx span {
  font-size: 0.8rem;
}
.items-tx:hover {
  color: var(--dark--color);
}

.ns-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ns-item img {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  margin-bottom: 0.4rem;
  object-fit: contain;
}
.ns-item p {
  font-size: 0.8rem;
}

.nxty {
  width: 100%;
}
.nxty h4 {
  text-align: center;
  margin-bottom: 2rem;
}

@-moz-keyframes quick_cart_pay_show {
  0% {
    -webkit-transform: rotate(70deg);
    -ms-transform: rotate(70deg);
    transform: rotate(70deg);
    right: -100px;
  }
  50% {
    -webkit-transform: rotate(-20deg);
    -ms-transform: rotate(-20deg);
    transform: rotate(-20deg);
    right: 20px;
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    right: 0;
  }
}
@-webkit-keyframes quick_cart_pay_show {
  0% {
    -webkit-transform: rotate(70deg);
    transform: rotate(70deg);
    right: -100px;
  }
  50% {
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
    right: 20px;
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    right: 0;
  }
}
@keyframes quick_cart_pay_show {
  0% {
    -webkit-transform: rotate(70deg);
    transform: rotate(70deg);
    right: -100px;
  }
  50% {
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg);
    right: 20px;
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    right: 0;
  }
}
@-webkit-keyframes quick_cart_pay_hide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
  }
}
@keyframes quick_cart_pay_hide {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(200px);
    transform: translateX(200px);
  }
}
@keyframes fadeDown {
  0% {
    -webkit-transform: rotate(0deg) translateY(0px);
    transform: rotate(0deg) translateY(0px);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(5deg) translateY(5px);
    transform: rotate(5deg) translateY(5px);
    opacity: 0;
  }
}
@-webkit-keyframes fadeDown {
  0% {
    -webkit-transform: rotate(0deg) translateY(0px);
    transform: rotate(0deg) translateY(0px);
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(5deg) translateY(5px);
    transform: rotate(5deg) translateY(5px);
    opacity: 0;
  }
}
@keyframes fadeUp {
  0% {
    -webkit-transform: rotate(5deg) translateY(5px);
    transform: rotate(5deg) translateY(5px);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0deg) translateY(0px);
    transform: rotate(0deg) translateY(0px);
    opacity: 1;
  }
}
@-webkit-keyframes fadeUp {
  0% {
    -webkit-transform: rotate(5deg) translateY(5px);
    transform: rotate(5deg) translateY(5px);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0deg) translateY(0px);
    transform: rotate(0deg) translateY(0px);
    opacity: 1;
  }
}
.fadeDown {
  opacity: 0;
  position: relative;
  -webkit-animation: fadeDown 400ms ease-in-out;
  animation: fadeDown 400ms ease-in-out;
}

.fadeUp {
  opacity: 1 !important;
  position: relative;
  -webkit-animation: fadeUp 400ms ease-in-out;
  animation: fadeUp 400ms ease-in-out;
}

.animateOut {
  position: absolute !important;
  top: 0;
  left: 0;
  -webkit-animation: quick_cart_pay_hide 200ms ease-in forwards;
  animation: quick_cart_pay_hide 200ms ease-in forwards;
}

.quick-cart-product .hide {
  opacity: 0;
}

#quick-cart {
  bottom: 20px;
  padding-bottom: 60px;
  position: fixed;
  right: 10px;
  top: auto !important;
  z-index: 1000;
}

#quick-cart-pay {
  font-size: 100%;
  line-height: 123.07692%;
  font-family: "robotobold", sans-serif;
  border-radius: 50%;
  -webkit-transform: rotate(70deg);
  -ms-transform: rotate(70deg);
  transform: rotate(70deg);
  border: 2px solid #f44336;
  bottom: 0;
  cursor: pointer;
  display: block;
  position: absolute;
  text-decoration: none;
  right: -100px;
}

#quick-cart-pay > span {
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  background-color: #e91e63 !important;
  border: 2px solid #fff;
  color: #fff;
  display: block;
  height: 56px;
  padding-top: 15px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 56px;
}

#quick-cart-pay.open {
  -webkit-animation: quick_cart_pay_show 1s ease-in-out forwards;
  animation: quick_cart_pay_show 1s ease-in-out forwards;
}

#quick-cart-pay.cart-ico strong {
  display: none;
}

#quick-cart-pay.cart-ico > span {
  background: #086fcf url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjE5cHgiIGhlaWdodD0iMThweCIgdmlld0JveD0iMCAwIDE5IDE4IiB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHhtbG5zOnNrZXRjaD0iaHR0cDovL3d3dy5ib2hlbWlhbmNvZGluZy5jb20vc2tldGNoL25zIj4KICAgIDxnIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPgogICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKC02ODYuMDAwMDAwLCAtNDUwLjAwMDAwMCkiIGZpbGw9IiNGRkZGRkYiPgogICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2NjAuMDAwMDAwLCAxNjUuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLjAwMDAwMCwgMjY5LjAwMDAwMCkiPgogICAgICAgICAgICAgICAgICAgIDxnIHRyYW5zZm9ybT0idHJhbnNsYXRlKDI2LjAwMDAwMCwgMTYuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICAgICAgICAgIDxwYXRoIGQ9Ik0xNi43NjU0Nzg0LDQuMjc1IEwxNS44NzU4NzQ5LDguNTkzMzYwNzEgTDQuNjk5ODQwNTksOS43MjQwOTgyMSBMMy40NzM5MDMwNCw0LjI3NSBMMTYuNzY1NDc4NCw0LjI3NSBaIE0xNi44MDQ1NDYzLDkuNzI4MDY3ODYgTDE4LjY3MzcyNTEsMy4wNTM1NzE0MyBMMy4xOTkxNTIwNywzLjA1MzU3MTQzIEwyLjUxMjI3NDYzLDAgTDMuMjYzMDc1NzJlLTA1LDAgTDMuMjYzMDc1NzJlLTA1LDEuMjIxNDI4NTcgTDEuNDUzMDgwMjUsMS4yMjE0Mjg1NyBMNC4wNjM1NDA4MywxMi44MjUgTDE2Ljk2ODAyNjQsMTIuODI1IEwxNi45NjgwMjY0LDExLjYwMzU3MTQgTDUuMTIyNzM1MjEsMTEuNjAzNTcxNCBMNC45NzAwMjMyNiwxMC45MjUzNzMyIEwxNi44MDQ1NDYzLDkuNzI4MDY3ODYgWiI+PC9wYXRoPgogICAgICAgICAgICAgICAgICAgICAgICA8cGF0aCBkPSJNNy44MzEzODE3MywxNS4yNjc4NTcxIEM3LjgzMTM4MTczLDE2LjI3OTgxMDcgNi45NTQ5MTk1OSwxNy4xIDUuODczNTM2MywxNy4xIEM0Ljc5MjE1MzAxLDE3LjEgMy45MTU2OTA4NywxNi4yNzk4MTA3IDMuOTE1NjkwODcsMTUuMjY3ODU3MSBDMy45MTU2OTA4NywxNC4yNTU5MDM2IDQuNzkyMTUzMDEsMTMuNDM1NzE0MyA1Ljg3MzUzNjMsMTMuNDM1NzE0MyBDNi45NTQ5MTk1OSwxMy40MzU3MTQzIDcuODMxMzgxNzMsMTQuMjU1OTAzNiA3LjgzMTM4MTczLDE1LjI2Nzg1NzEiPjwvcGF0aD4KICAgICAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTE1LjY2Mjc2MzUsMTUuMjY3ODU3MSBDMTUuNjYyNzYzNSwxNi4yNzk4MTA3IDE0Ljc4NjMwMTMsMTcuMSAxMy43MDQ5MTgsMTcuMSBDMTIuNjIzNTM0NywxNy4xIDExLjc0NzA3MjYsMTYuMjc5ODEwNyAxMS43NDcwNzI2LDE1LjI2Nzg1NzEgQzExLjc0NzA3MjYsMTQuMjU1OTAzNiAxMi42MjM1MzQ3LDEzLjQzNTcxNDMgMTMuNzA0OTE4LDEzLjQzNTcxNDMgQzE0Ljc4NjMwMTMsMTMuNDM1NzE0MyAxNS42NjI3NjM1LDE0LjI1NTkwMzYgMTUuNjYyNzYzNSwxNS4yNjc4NTcxIj48L3BhdGg+CiAgICAgICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICAgICAgPC9nPgogICAgICAgICAgICA8L2c+CiAgICAgICAgPC9nPgogICAgPC9nPgo8L3N2Zz4=") no-repeat center 9px;
}

#quick-cart-pay:hover {
  border-color: #303030;
}

#quick-cart-pay:hover > span {
  background-color: #303030;
}

#quick-cart-pay #quick-cart-price {
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  font-family: "robotobold", sans-serif;
  border-radius: 11px;
  background-color: #16161a;
  bottom: -4px;
  display: block;
  height: 21px;
  left: 50%;
  padding: 2px 8px 0;
  position: absolute;
}

#quick-cart-pay #quick-cart-pay-total-count {
  display: none;
}

.quick-cart-product {
  margin-bottom: 6px;
}

.quick-cart-product > div,
#quick-cart-pay {
  box-shadow: rgba(0, 0, 0, 0.23) 0 6px 13px 0;
}

.quick-cart-animated-product > div {
  box-shadow: transparent 0 6px 13px 0;
}

.quick-cart-product {
  position: relative;
}

.quick-cart-product > div {
  transition: all 1s ease-in-out 0s;
  overflow: hidden;
  position: relative;
}

.quick-cart-product > div .s1,
.quick-cart-product > div .s2 {
  font-family: "robotobold", sans-serif;
  font-size: 100%;
  line-height: 107.69231%;
  background-color: rgba(22, 22, 26, 0.5);
  bottom: 0;
  color: #fff;
  cursor: default;
  display: none;
  height: 100%;
  left: 0;
  padding-top: 23px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}

.quick-cart-product > div del {
  display: none;
}

#quick-cart .quick-cart-product > div,
.quick-cart-product.run > div {
  border-radius: 50%;
  height: 60px !important;
  width: 60px !important;
}

#quick-cart .quick-cart-product > div .s1,
.quick-cart-product.run > div .s1 {
  display: block;
}

#quick-cart .quick-cart-product > div img,
.quick-cart-product.run > div img {
  width: 100%;
}

#quick-cart .quick-cart-product > div:hover span.s1,
.quick-cart-product.run > div:hover span.s1 {
  display: none;
}

#quick-cart .quick-cart-product > div:hover span.s2,
.quick-cart-product.run > div:hover span.s2 {
  display: block;
}

.quick-cart-product.run > div {
  border-radius: 50%;
  height: 58px !important;
  width: 58px !important;
}

#quick-cart .quick-cart-product > div .s1,
#quick-cart .quick-cart-product > div .s2 {
  border-radius: 50%;
}

.quick-cart-product.animated {
  left: 0;
  position: absolute;
  top: 0;
  z-index: 2000;
}

.quick-cart-product.animated img {
  border-radius: 1px;
  display: block;
  position: relative;
}

.quick-cart-product .remove,
.quick-cart-product .removeall:before,
.quick-cart-product .count {
  border-radius: 10px;
  font-family: "robotobold", sans-serif;
  font-size: 76.92308%;
  line-height: 110%;
  background-color: #16161a;
  color: #fff;
  display: block;
  height: 20px;
  overflow: hidden;
  padding-top: 4px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
  width: 20px;
  z-index: 10;
}

.quick-cart-product .removeall {
  width: 20px;
  height: 20px;
  content: "Delete all";
}

.quick-cart-product .removeall:before {
  content: "Delete all";
}

.quick-cart-product .removeall:before {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  display: none;
  left: -62px;
  padding: 4px 7px 0;
  right: auto;
  width: auto;
  height: 16px;
}

.quick-cart-product .removeall:hover {
  background-color: #086fcf;
}

.quick-cart-product.show-remove-all:hover .removeall:before {
  display: block;
}

.quick-cart-product .remove {
  background: #16161a url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+Cjxzdmcgd2lkdGg9IjhweCIgaGVpZ2h0PSI4cHgiIHZpZXdCb3g9IjAgMCA4IDgiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeG1sbnM6c2tldGNoPSJodHRwOi8vd3d3LmJvaGVtaWFuY29kaW5nLmNvbS9za2V0Y2gvbnMiPgogICAgPGcgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+CiAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEyMTYuMDAwMDAwLCAtMTg5MS4wMDAwMDApIiBmaWxsPSIjRkZGRkZGIj4KICAgICAgICAgICAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTE0OC4wMDAwMDAsIDE4ODUuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSg2Mi4wMDAwMDAsIDAuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICAgICAgPHBhdGggZD0iTTcuMTQyNjgzOTcsNiBMNiw3LjE0MjY4Mzk3IEw4Ljg1NzExNCw5Ljk5OTc5Nzk3IEw2LDEyLjg1NzMxNiBMNy4xNDI2ODM5NywxNCBMOS45OTk3OTc5NywxMS4xNDI4ODYgTDEyLjg1NzMxNiwxNCBMMTQsMTIuODU3MzE2IEwxMS4xNDI0ODE5LDkuOTk5Nzk3OTcgTDE0LDcuMTQyNjgzOTcgTDEyLjg1NzMxNiw2IEw5Ljk5OTc5Nzk3LDguODU3MTE0IEw3LjE0MjY4Mzk3LDYgTDcuMTQyNjgzOTcsNiBaIj48L3BhdGg+CiAgICAgICAgICAgICAgICA8L2c+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==") no-repeat center center;
  cursor: pointer;
  display: none;
  left: 0;
  right: auto;
}

.quick-cart-product .remove:hover {
  background-color: #086fcf;
}

.quick-cart-product:hover .remove {
  display: block;
}

.quick-cart-product.remove-product {
  -webkit-animation: quick_cart_pay_hide 200ms ease-in-out forwards;
  animation: quick_cart_pay_hide 200ms ease-in-out forwards;
}

.cubic-btn {
  width: 10px;
  height: 10px;
  position: absolute;
}

.quick-cart-product-wrap {
  position: relative;
}

.img.animate {
  transition: all 0ms ease-out 0s;
  -webkit-transform: translateY(-30px);
  -ms-transform: translateY(-30px);
  transform: translateY(-30px);
  opacity: 0;
}

.img {
  transition: all 600ms ease-out 0s;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  border-radius: 1px;
  background: transparent no-repeat center center;
  background-size: cover;
  border: 1px solid #e2e2e3;
  display: block;
  height: 0;
  opacity: 1;
}

.bannerTop {
  position: relative;
  width: 100%;
  margin: 0.5rem 0;
}
@media only screen and (min-width: 747px) {
  .bannerTop {
    margin: 2rem 0;
  }
}

.nv-split {
  position: relative;
  display: flex;
  width: 100%;
}
@media only screen and (max-width: 747px) {
  .nv-split {
    flex-wrap: wrap;
  }
}

.ds-ads {
  position: relative;
  flex: 1;
  margin-top: 0.5rem;
}
@media only screen and (min-width: 747px) {
  .ds-ads {
    margin-left: 2rem;
    margin-top: 0;
  }
}

.ad-box {
  position: relative;
  width: 100%;
  height: 100%;
}
.ad-box .ad-items--list {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.ad-box .ad-items--list .ads-items {
  position: relative;
  width: 100%;
  background: var(--white--bg);
  padding: 0.5rem;
  border-radius: 8px;
  margin-bottom: 0.6rem;
}
.ad-box .ad-items--list .ads-items:last-child {
  margin-bottom: 0;
}
.ad-box .ad-items--list .ads-items a {
  position: relative;
  border-radius: 16px;
}
.ad-box .ad-items--list .ads-items a img {
  box-shadow: 0px 15px 36px rgba(119, 119, 119, 0.06);
}
.ad-box .ad-items--list .ads-items a::after {
  background: transparent;
}
.ad-box .ad-items--list .ads-items a:hover img {
  transform: scale(1);
}
@media only screen and (min-width: 747px) {
  .ad-box .ads-items {
    margin-bottom: 0;
  }
  .ad-box .ads-items {
    padding: 0.7rem;
    border-radius: 16px;
  }
}

.ads-info {
  position: relative;
  display: flex;
  padding: 1rem;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0;
}
.ads-info h4 {
  font-size: 0.8rem;
  font-weight: bold;
  text-transform: capitalize;
}
.ads-info strong {
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  color: var(--white-color);
  background: var(--dark--bg);
  border-radius: 16px;
  padding: 0.2rem 0.5rem;
}
.ads-info strong i {
  margin-left: 0.3rem;
}

.ads-items:hover .ads-info strong {
  animation: bounce 4s infinite;
}

.category-page--header {
  position: relative;
  padding: 1.5rem 0;
}
.category-page--header h1 {
  font-size: clamp(1rem, 2rem, 5vw);
  text-transform: capitalize;
}
@media only screen and (min-width: 747px) {
  .category-page--header {
    padding-top: 3rem;
    padding-bottom: 0;
  }
  .category-page--header h1 {
    letter-spacing: 1;
  }
}

.viewType-btnGroup {
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.viewBtn {
  position: relative;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
  border-radius: 40px;
  border: none;
  background: var(--white--bg);
  color: var(--dark--color);
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: bold;
  padding: 0.7rem 1rem;
  transition: var(--trans);
  display: flex;
  align-items: center;
}
.viewBtn i {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}
.viewBtn:first-child {
  margin-right: 0.5rem;
}
.viewBtn:hover {
  background: var(--hover-bg);
}

.viewBtn.current {
  background: var(--bg-primary);
  color: white;
  box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.089);
}

.item-in--cart {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  padding: 0.2rem 0.4rem;
  margin: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  font-size: 0.7rem;
  font-weight: normal;
  white-space: nowrap;
  justify-content: center;
}
.item-in--cart span {
  margin-left: 0.5rem;
  color: #999;
}
.item-in--cart i {
  font-size: 1rem;
}

.out-of-stock {
  position: absolute;
  z-index: 1;
  bottom: 70px;
  right: 0;
  display: flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  margin: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  border: 1px solid var(--border-color);
  font-size: 0.6rem;
  font-weight: normal;
  white-space: nowrap;
  justify-content: center;
}
.out-of-stock span {
  margin-left: 0.4rem;
  font-weight: bold;
}
.out-of-stock i {
  font-size: 0.8rem;
  color: #ff9a00;
}

.category-items--list.focused {
  max-width: 100%;
  grid-gap: 25px;
  grid-template-columns: repeat(auto-fill, minmax(271px, 1fr));
}
.category-items--list.focused .ng-name--sm {
  width: unset;
}
.category-items--list.focused .pro-lite--card img {
  height: 270px;
  object-fit: contain;
  box-shadow: none;
}
.category-items--list.focused .ng-tag--sm {
  display: flex;
  justify-content: space-between;
}
.category-items--list.focused .sizes_h {
  display: inline-block;
}
@media only screen and (min-width: 747px) {
  .category-items--list.focused {
    grid-template-columns: repeat(auto-fill, minmax(331px, 1fr));
  }
  .category-items--list.focused .pro-lite--card img {
    height: 500px;
  }
}
.category-items--list.focused .pro-card--footer {
  padding: 1rem;
  padding-top: 1.8rem;
  text-align: left;
}
.category-items--list.focused .ng-price--sm {
  font-size: 1.1rem;
  margin: 0.4rem 0;
}
.category-items--list.focused .out-of-stock {
  bottom: 80px;
  right: 0;
}
.category-items--list.focused .out-of-stock span {
  font-size: 0.7rem;
}

.views-tab {
  position: sticky;
  top: -65px;
  z-index: 5;
}

.latest-viewed-module {
  position: relative;
  width: 100%;
  padding: 2rem 0;
  z-index: 1;
  z-index: 9;
}

.lastViewd-preList {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transform: translateX(-50%);
  left: 50%;
}
.lastViewd-preList li:nth-child(2) {
  margin-right: 2rem;
  font-size: 0.8rem;
}
.lastViewd-preList li:last-child {
  margin-left: 1rem;
  font-size: 0.8rem;
}
@media only screen and (max-width: 747px) {
  .lastViewd-preList {
    flex-wrap: wrap;
  }
  .lastViewd-preList li:nth-child(2) {
    margin-right: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 0.6rem;
  }
  .lastViewd-preList li:last-child {
    margin-left: 0;
    width: 100%;
    text-align: center;
    margin-top: 0.6rem;
  }
}

.lastviewedThumb {
  position: relative;
  margin-left: -10px;
  transition: all ease-out 0.2s;
}

.lastViewd-preList:hover .lastviewedThumb {
  margin-left: 5px;
}
.lastViewd-preList:hover .exp-arro {
  top: -10px;
}
.lastViewd-preList:hover li:nth-child(2) {
  margin-right: 1rem;
}

.lsVthmb-img {
  width: 60px;
  height: 60px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 40px;
  overflow: hidden;
  border: 2px solid var(--white-color);
}

.lastviewedCounter {
  width: 50px;
  height: 50px;
  background: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--bg-primary);
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 40px;
}

.exp-arro {
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateY(-50%);
  transition: all ease-out 0.2s;
}
@media only screen and (max-width: 747px) {
  .exp-arro {
    display: none;
  }
}

.viewed-iframmer {
  position: fixed;
  width: 100%;
  bottom: 0;
  background: rgba(22, 22, 22, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-delay: 0.2s;
  height: 0;
  z-index: 999;
}
.viewed-iframmer iframe {
  width: 100%;
  position: absolute;
  height: 90vh;
  bottom: 0;
}

.is-viewable {
  pointer-events: all;
  transform: scaleY(1);
  height: 0;
  height: 100vh;
  max-height: 100%;
}

.close-framer {
  position: absolute;
  top: 0;
  right: 1rem;
  font-size: 2rem;
  background: transparent;
  cursor: pointer;
  outline: none;
  color: var(--text-color);
  border: none;
  height: 35px;
  width: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 747px) {
  .close-framer {
    top: 2rem;
    right: 2rem;
    color: white;
  }
}
@media only screen and (max-width: 747px) {
  .close-framer {
    position: fixed;
    z-index: 20;
    background: var(--white--bg);
  }
}

.classic-view {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 0.4rem;
  padding-bottom: 0;
}

.main-calssic-view {
  position: relative;
  width: 100%;
  height: 250px;
  border-radius: 16px;
  background-color: var(--header-lite--color);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  transition: all 0.35s;
  -webkit-transition: all 0.35s;
  overflow: hidden;
  transition: all 0.35s;
  transform: translate3d(0, 0, 0) scale(1);
  -webkit-transition: all 0.35s;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
}
@media only screen and (min-width: 747px) {
  .main-calssic-view {
    height: 350px;
  }
}
.main-calssic-view::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.4);
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -101%, 0);
  transition: all 0.4s;
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, -101%, 0);
  -webkit-transition: all 0.4s;
}

.classic-footer {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1rem;
}
.classic-footer h4 {
  flex: 1;
  margin-right: 1rem;
  font-size: 0.7rem;
  font-weight: bold;
  width: 10ch;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #000;
  text-transform: uppercase;
}

.new-t-share {
  position: absolute;
  top: 2.5rem;
  z-index: 1;
  transform: rotateZ(90deg);
  display: flex;
  align-items: center;
  padding: 0.5rem;
  border: navajowhite;
  background: transparent;
  line-height: 1;
  opacity: 0;
  outline: none;
  right: -0.7rem;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
}
.new-t-share i {
  margin-right: 0.5rem;
}

.calssicMainThumb {
  position: relative;
  margin-top: -50px;
  width: 65px;
  height: 65px;
  border-radius: 12px;
  background-color: var(--body-bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid var(--white--bg);
}

.shopLook:hover .main-calssic-view {
  transform: translate3d(-20px, 0, 0) scale(0.9);
  -webkit-transform: translate3d(-20px, 0, 0) scale(0.9);
}
.shopLook:hover .main-calssic-view::before {
  transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 101%, 0);
  -webkit-transform: scale3d(1.9, 1.4, 1) rotate3d(0, 0, 1, 45deg) translate3d(0, 101%, 0);
}
.shopLook:hover .new-t-share {
  opacity: 1;
}

.look-mdl {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(95, 95, 95, 0.9);
  display: none;
  z-index: 999;
}
@media only screen and (min-width: 747px) {
  .look-mdl {
    height: 100%;
  }
}

.look-container {
  position: relative;
  width: 800px;
  max-width: 100%;
  display: flex;
  background: var(--body-bg);
  border-radius: 16px;
  box-shadow: 0px 15px 36px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  transition: all ease 0.6s;
  animation: fadeIn 200ms forwards;
}
@media only screen and (max-width: 747px) {
  .look-container {
    height: 100vh;
    overflow: auto;
    border-radius: 0;
  }
}

.look-mdl.is-open {
  display: flex;
}

.mask-wrap {
  position: relative;
  width: 100%;
  flex-direction: column;
  display: flex;
}

.shop-vent {
  position: relative;
  width: 100%;
  display: flex;
  padding-right: 0;
  background: var(--body-bg);
  flex-direction: column;
}
@media only screen and (min-width: 747px) {
  .shop-vent {
    max-height: 530px;
    flex-direction: row;
  }
}

.single-view {
  position: relative;
  padding: 1rem;
  background: var(--white--bg);
  transition: all 0.4s ease;
}

.sl-larg-img {
  position: relative;
  width: 400px;
  height: auto;
  border-radius: 16px;
  background-color: var(--header-lite--color);
  max-width: 100%;
  z-index: 3;
  transition: var(--trans);
}
.sl-larg-img img {
  width: 100%;
  border-radius: 16px;
  transition: var(--trans);
}
@media only screen and (min-width: 747px) {
  .sl-larg-img {
    min-height: 400px;
  }
}

.sl-right {
  position: relative;
  width: 100%;
  padding: 1rem;
}
.sl-right .ng-name--sm {
  width: 18ch;
}
@media only screen and (min-width: 747px) {
  .sl-right {
    max-height: 100%;
    overflow: auto;
    flex: 1;
  }
}

@media only screen and (min-width: 747px) {
  .sl-right::-webkit-scrollbar {
    width: 0.4rem;
  }

  .sl-right::-webkit-scrollbar-thumb {
    background: #c6c6c6;
    border-radius: 4px;
  }
}
@media only screen and (max-width: 747px) {
  .observer {
    position: absolute;
    width: 100%;
    height: 2px;
    top: 120px;
    left: 0;
    z-index: -1;
  }
}
.shop-look-view-foot {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 1rem;
  background: #f0eff2;
  flex-wrap: wrap;
}
.shop-look-view-foot .subTotals, .shop-look-view-foot .cart-footer {
  padding: 0;
  border-top: none;
}
.shop-look-view-foot .cart-footer {
  justify-content: space-between;
}
@media only screen and (min-width: 747px) {
  .shop-look-view-foot {
    justify-content: space-between;
  }
}

.sl-selected {
  position: relative;
  width: 60%;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
}

.sl-sll-list {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 6px;
  overflow: hidden;
  background: var(--white--bg);
  padding: 0.4rem;
}

.sl-sll-img {
  position: relative;
  width: 100%;
  padding: 0.3rem;
  border-radius: 6px;
  background: var(--white--bg);
}
.sl-sll-img img {
  width: 100%;
  height: 90px;
  border-radius: 16px;
  object-fit: cover;
}

.sl-summery {
  position: relative;
  flex: 1;
  padding-left: 1rem;
}
.sl-summery .btn {
  padding: 0.7rem 1rem;
  width: 100%;
}

.sl-rmv-btn {
  position: relative;
  margin-top: 0.3rem;
  border: none;
  background: var(--white--bg);
  border-radius: 4px;
  padding: 0.4rem 0.5rem;
  line-height: 1;
  color: #864949;
  display: flex;
  align-items: center;
  cursor: pointer;
  outline: none;
}
.sl-rmv-btn i {
  font-size: 0.8rem;
  margin-right: 0.3rem;
}

.sl-right .small-container {
  position: relative;
  top: unset;
  left: unset;
  z-index: 1;
  width: 100%;
  height: auto;
}
.sl-right .small-container ul {
  position: relative;
  width: 100%;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  padding-bottom: 2rem;
}
.sl-right .small-container li {
  position: relative;
  width: 100%;
  background: var(--white--bg);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
}
.sl-right .small-container li img {
  width: 100%;
  height: 150px;
  margin-right: 0;
  cursor: pointer;
  object-fit: cover;
  border-radius: 6px;
  border: none !important;
  cursor: zoom-in;
}

.small-container .product-details {
  position: relative;
  padding: 0.5rem !important;
  width: 100%;
  padding-bottom: 1rem !important;
}
.small-container .product-details button {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: var(--white--bg);
  border: 5px solid var(--body-bg);
  border-radius: 40px;
  outline: none;
  cursor: pointer;
  transition: var(--trans);
}
.small-container .product-details button::before {
  position: absolute;
  content: "Add Item";
  padding: 0.3rem;
  background: var(--white-color);
  font-size: 0.7rem;
  border-radius: 20px;
  height: 18px;
  width: 80px;
  z-index: 0;
  right: 40px;
  top: 0;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  font-weight: bold;
  font-family: inherit;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
.small-container .product-details button:hover {
  background: var(--hover-bg);
}
.small-container .product-details button:hover::before {
  opacity: 1;
}
.small-container .bi-check2 {
  display: none;
}
.small-container .added button {
  background: var(--bg-primary);
  color: var(--white-color);
}
.small-container .added button::before {
  content: "Remove";
  color: black;
}
.small-container .added button:hover {
  background: var(--text-color);
}
.small-container .added .bi-plus {
  display: none;
}
.small-container .added .bi-check2 {
  display: block;
}

.added .plus {
  display: none !important;
}

.page-checkout--module {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  background: rgba(22, 22, 22, 0.9);
  display: flex;
  justify-content: center;
  padding: 0.4rem;
  pointer-events: none;
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition-delay: 0.2s;
  height: 0;
}
@media only screen and (min-width: 747px) {
  .page-checkout--module {
    padding: 2rem;
  }
}
.page-checkout--module button {
  z-index: 20;
}

.page-checkout--module.__open {
  height: 100%;
  pointer-events: all;
  transform: scaleY(1);
}

.page-checkout--container {
  position: relative;
  width: 1000px;
  max-width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  flex-wrap: wrap;
  border-radius: 16px;
  box-shadow: 0 20px 30px -20px rgba(50, 50, 93, 0.25), 0 30px 60px -30px rgba(0, 0, 0, 0.3);
  background: var(--white--bg);
  overflow: hidden;
}

.item-info {
  flex: 1;
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 1rem;
  background: #f0eff2;
  border-radius: 16px 0 0 16px;
  flex-direction: column;
}
@media only screen and (min-width: 747px) {
  .item-info {
    padding: 2rem;
    padding-left: 3rem;
    overflow: auto;
    max-height: 100%;
  }
}

.pc-dld {
  position: relative;
  display: flex;
  flex-direction: column;
}

.page-chk-frame {
  position: relative;
  width: 100%;
  background: var(--white--bg);
  border-radius: 0 16px 16px 0;
  height: 100%;
}
.page-chk-frame iframe {
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 747px) {
  .page-chk-frame {
    width: 60%;
    padding: 2rem;
  }
}

.page-checkout--module.__open .page-chk-frame {
  animation: fadeInUp 1s;
}
.page-checkout--module.__open .blob {
  opacity: 0;
  animation: dropIn 3s ease-out forwards;
  animation-delay: calc(var(--order) * 200ms);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes dropIn {
  20% {
    opacity: 0;
    transform: translateY(-20%);
  }
  30%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.sbslt-a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}

.pc-header {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.pc-header button {
  position: relative;
  outline: none;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  border: none;
  background-color: transparent;
  font-weight: bold;
  cursor: pointer;
}
.pc-header button i {
  font-size: 1.4rem;
  margin-right: 0.5rem;
}
@media only screen and (min-width: 747px) {
  .pc-header {
    padding-top: 1rem;
    margin-bottom: 2rem;
  }
}

.pc-bod {
  position: relative;
  width: 100%;
}
.pc-bod h4 {
  position: relative;
  font-weight: normal;
  font-size: 0.8rem;
  line-height: 1;
  font-weight: normal;
  margin-bottom: 1rem;
}
.pc-bod h2 {
  font-size: 1.5rem;
  color: black;
  line-height: 1;
  font-weight: normal;
}
.pc-bod .pc-photo {
  position: relative;
  width: 180px;
  margin-top: 2rem;
}
.pc-bod .pc-photo img {
  width: 100%;
  border-radius: 8px;
}
@media only screen and (max-width: 747px) {
  .pc-bod h2 {
    font-size: 1.1rem;
  }
  .pc-bod .pc-photo {
    display: none;
  }
  .pc-bod .pc-photo img {
    width: 100%;
    border-radius: 8px;
  }
}

.pc-foot {
  position: relative;
  width: 100%;
  display: none;
  align-items: center;
}
.pc-foot a {
  font-size: 0.7rem;
  font-weight: 500;
  margin-right: 0.5rem;
}
.pc-foot a:last-child {
  margin-left: 0.5rem;
}
@media only screen and (min-width: 747px) {
  .pc-foot {
    display: flex;
  }
}

.pc-Q {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 15px;
  color: var(--white-color);
  background: var(--dark--bg);
  font-size: 0.7rem;
  right: -5px;
  top: -5px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
@media only screen and (min-width: 747px) {
  .pc-Q {
    width: 25px;
    height: 25px;
    font-size: 0.8rem;
  }
}

.modal-dialoge {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(22, 22, 22, 0.9);
  justify-content: center;
  align-items: center;
  display: none;
  height: 0;
}

.modal-dialoge.open {
  display: flex;
  height: 100%;
}

.share-modal-container {
  position: relative;
  background: var(--white-color);
  border-radius: 8px;
  width: 600px;
  max-width: 96%;
  box-shadow: 0 20px 30px -20px rgba(50, 50, 93, 0.25), 0 30px 60px -30px rgba(0, 0, 0, 0.3);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: all ease-out 100ms;
  animation: fadeIn 200ms forwards;
}

.mdl-header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mdl-header h4 {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-color);
  line-height: 1;
}
.mdl-header .btn {
  padding: 0;
  width: 34px;
  height: 34px;
  justify-content: center;
  margin: 0;
  align-items: center;
  font-size: 2rem;
}

.mdl-body {
  position: relative;
  width: 100%;
  padding-top: 1rem;
}
.mdl-body .blob {
  opacity: 0;
  animation: dropIn 1s ease-out forwards;
  animation-delay: calc(var(--order) * 200ms);
}

.txt-share-hd {
  position: relative;
  text-align: center;
  font-size: 1.4rem;
  font-weight: normal;
  color: var(--dark--color);
  line-height: 1;
  margin-bottom: 1rem;
}

.share-methoth-list {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.share-methoth-item {
  position: relative;
  margin-right: 0.5rem;
}
.share-methoth-item:last-child {
  margin-right: 0;
}
.share-methoth-item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  transition: var(--trans);
  border-radius: 50%;
  color: #808080;
  width: 80px;
  height: 80px;
}
.share-methoth-item a span {
  font-size: 0.7rem;
}
.share-methoth-item a i {
  margin-bottom: 0.4rem;
  font-size: 1.4rem;
}
.share-methoth-item a:hover, .share-methoth-item a:focus {
  color: var(--dark--color);
  background: var(--hover-bg);
}

.share-link-g {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.share-link-g p {
  font-size: 0.8rem;
  font-weight: normal;
  margin-bottom: 1rem;
}

.shareLink {
  position: relative;
  display: flex;
  align-items: center;
  width: 500px;
  max-width: 100%;
  background: var(--hover-bg);
  border-radius: 4px;
  padding: 0.4rem;
}
.shareLink input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
  color: var(--dark--color);
}
.shareLink button {
  margin-left: 1rem;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  cursor: copy;
  background: transparent;
  color: var(--dark--color);
}

.toast {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.toast-success {
  font-size: 1rem;
  font-weight: normal;
  color: #808080;
  animation: fadeIn 0.3s forwards;
  transform: scale(0.9);
  opacity: 0;
}
.toast-success b {
  font-weight: normal;
  margin-left: 0.5rem;
  font-size: 0.8rem;
}

@keyframes fadeIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.__decide {
  display: none !important;
}

.look-mdl.__buy {
  height: 100%;
}
.look-mdl.__buy .look-container {
  width: 1000px;
  max-width: 100%;
  height: 100%;
}
.look-mdl.__buy .mask-wrap {
  display: none;
}
.look-mdl.__buy .blob {
  opacity: 0;
  animation: dropIn 2s ease-out forwards;
  animation-delay: calc(var(--order) * 200ms);
}
@media only screen and (min-width: 747px) {
  .look-mdl.__buy {
    padding: 2rem;
  }
}

.chk-item-list {
  position: relative;
  width: 100%;
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}
.chk-item-list li {
  width: 100%;
}
.chk-item-list .pc-photo {
  width: 100%;
}

@media only screen and (max-width: 747px) {
  .image-observed .single-view {
    top: 0;
    position: sticky;
    background: var(--white--bg);
    z-index: 4;
  }
  .image-observed .sl-larg-img {
    height: 240px;
  }
  .image-observed .sl-larg-img img {
    height: 240px;
    object-fit: contain;
  }
}
.bi-sun-fill {
  display: none;
}

body.dark--mode footer {
  background: #131313;
}
body.dark--mode .breadcrumb {
  background: rgba(31, 30, 30, 0.9);
}
body.dark--mode .crt-btn, body.dark--mode .select-btn {
  color: var(--dark--color);
}
body.dark--mode .selection {
  box-shadow: #000000 1px 1px 20px -8px;
}
body.dark--mode .btn-primary, body.dark--mode .btn {
  color: var(--dark--color);
}
body.dark--mode .btn-primary:hover, body.dark--mode .btn:hover {
  opacity: 0.7;
}
body.dark--mode .nav-link {
  color: var(--dark--color);
}
body.dark--mode .nav-link:hover {
  color: var(--text-color);
}
body.dark--mode .content-inner {
  background-color: rgba(0, 0, 0, 0.98);
}
body.dark--mode .cart--item:hover {
  background: #050505;
}
body.dark--mode .nav__header {
  background: #1c191c;
}
body.dark--mode .current-caret {
  color: #1c191c;
}
body.dark--mode .item-info {
  background: #111111;
}
body.dark--mode .pc-header button {
  color: var(--text-color);
}
body.dark--mode .pc-bod h2 {
  color: var(--text-color);
}
body.dark--mode .nav-item:hover .nav-link {
  color: var(--dark-color);
}
body.dark--mode .new-t-share, body.dark--mode .classic-footer h4, body.dark--mode .badeg-bag {
  color: white;
}
body.dark--mode .brand-items, body.dark--mode .shopLook {
  background: #262525;
}
body.dark--mode .shop-look-view-foot {
  background: #141314;
}
body.dark--mode .breadcrumb-split a:hover {
  color: var(--dark--color);
}
body.dark--mode .banner--section {
  box-shadow: 0px 2px 6px #2d2d2d;
}
body.dark--mode .ads-items a span {
  color: var(--dark--color);
}
body.dark--mode .cartlist::-webkit-scrollbar-thumb {
  background: #3b3b3b;
}
body.dark--mode .bi-sun-fill {
  display: block;
}
body.dark--mode .bi-moon-fill {
  display: none;
}
body.dark--mode .btn-mood {
  color: var(--text-color);
}
body.dark--mode .q-tile .crt-btn {
  border: 1px solid #2e2e2e;
  background: #3a3a3a;
}
@media only screen and (max-width: 747px) {
  body.dark--mode .share--curent {
    background: rgba(0, 0, 0, 0.84);
  }
}
body.dark--mode .btn-default {
  background: #3a3a3a;
}
body.dark--mode .out-of-stock, body.dark--mode .item-in--cart {
  background: rgba(0, 0, 0, 0.9);
}
body.dark--mode .slider::-webkit-slider-thumb {
  background: var(--bg-primary);
}
body.dark--mode .slider::-moz-range-thumb {
  background: var(--bg-primary);
}

.page--transition {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10;
  transform: scaleY(0);
  background: var(--white--bg);
}

.top-category--list {
  position: relative;
  display: flex;
  flex-direction: column;
}
.top-category--list .pro-lite--card {
  display: flex;
  width: 100%;
}
.top-category--list .pro-lite--card img {
  width: 90px;
  height: 90px;
}
.top-category--list .pro-card--footer {
  flex: 1;
}
.top-category--list .pro-card--footer .ng-name--sm {
  overflow: auto;
  white-space: normal;
  width: auto;
}
@media only screen and (min-width: 747px) {
  .top-category--list .category-items:first-child {
    border-bottom: 1px solid var(--border-color);
  }
}

.video-player {
  position: relative;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 747px) {
  .video-player {
    flex-direction: column;
  }
}

.vd-top {
  position: relative;
  width: 120px;
  height: 60px;
  background-color: #d31754;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  display: grid;
  place-content: center;
  font-size: 2rem;
  color: white;
}
.vd-top::before {
  position: absolute;
  content: "";
  background-image: url(../../img/new-laura.jpg);
  background-position: center left;
  background-size: cover;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
  transition: all ease-out 0.5s;
  transform-origin: center;
}
.vd-top:hover::before {
  transform: scale(1.1) rotate(5deg);
}
@media only screen and (min-width: 747px) {
  .vd-top {
    width: 100%;
    height: 140px;
    border-radius: 16px;
  }
}

.vd-bottom {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media only screen and (min-width: 747px) {
  .vd-bottom {
    padding: 1rem 0;
    padding-bottom: 0.5rem;
  }
}

.featured--wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media only screen and (max-width: 747px) {
  .featured--wrap {
    margin-left: 1rem;
  }
}

.feat-tag {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: bold;
  color: #79a6ea;
}
.feat-tag i {
  margin-right: 0.4em;
}

.featured {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}
.featured img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  object-position: top left;
  border-radius: 40px;
  margin-right: 0.5rem;
}
.featured span {
  font-size: 1rem;
  font-weight: bold;
  color: var(--dark--color);
}
@media only screen and (min-width: 747px) {
  .featured {
    font-size: 1rem;
  }
}

.vide0-player {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  place-content: center;
  display: none;
  pointer-events: none;
}
.vide0-player::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}

.player-1 {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 2vw;
  overflow: auto;
}
.player-1 .blob {
  opacity: 0;
  animation: dropIn 3s ease-out forwards;
  animation-delay: calc(var(--order) * 200ms);
}
.player-1 .instagram-emb {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  max-height: 100%;
}
.player-1 .instagram-emb .blockquote {
  width: 100%;
}
.player-1 video {
  width: 100%;
  position: relative;
  height: 500px;
  outline: none;
}
@media only screen and (min-width: 747px) {
  .player-1 {
    width: 1000px;
    max-width: 95%;
  }
}

.vide0-player.open {
  display: grid;
  pointer-events: all;
}

.close-vid {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  border: none;
  outline: none;
  font-size: 1.5rem;
  color: white;
  padding: 0.5rem;
  background: transparent;
  cursor: pointer;
  font-size: 2rem;
}
@media only screen and (max-width: 747px) {
  .close-vid i {
    color: var(--dark--color);
  }
}

.skelleton {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(145px, 1fr));
  grid-gap: 10px;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 747px) {
  .skelleton {
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

.skl--views {
  position: relative;
  width: 100%;
  background: var(--white-color);
  border-radius: 16px;
  padding: 0.4rem;
  padding-bottom: 1rem;
}
.skl--views div {
  width: 100%;
  height: 170px;
  background: var(--hover-bg);
  border-radius: 16px;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}
.skl--views div::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.241);
  transition: all ease-out 1s;
  animation: skel01 2s alternate-reverse infinite;
  opacity: 0;
  border-radius: 100%;
}
.skl--views span {
  height: 8px;
  background: var(--body-bg);
  border-radius: 4px;
  margin-bottom: 0.2rem;
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.skl--views span:last-child {
  width: 60%;
  margin-bottom: 0;
}
.skl--views span:last-child::before {
  animation-delay: calc(1 * 500ms);
}
.skl--views span::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  background: rgba(255, 255, 255, 0.441);
  transition: all ease-out 0.7s;
  animation: skel02 1.3s alternate-reverse infinite;
  opacity: 0;
}

@keyframes skel01 {
  10% {
    height: 10%;
    opacity: 0.6;
    border-radius: 100%;
  }
  100% {
    height: 100%;
    opacity: 1;
    border-radius: 0;
  }
}
@keyframes skel02 {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.auth-option {
  position: absolute;
  top: 2.7rem;
  z-index: 10;
  right: 0;
  background: var(--white--bg);
  border-radius: 8px;
  white-space: nowrap;
  padding: 1rem 0;
  box-shadow: 0px 8px 12px 0 rgba(0, 0, 0, 0.3);
  height: 0;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: var(--trans);
}
.auth-option::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 0.7rem solid transparent;
  border-right: 0.7rem solid transparent;
  border-bottom: 0.9rem solid var(--white--bg);
  position: absolute;
  top: -0.4rem;
  right: 5%;
  transition: transform 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: 0;
  transform: translateY(-20%);
}
@media only screen and (min-width: 747px) {
  .auth-option {
    top: 100%;
    left: 50%;
    right: unset;
    transform: translateX(-50%);
  }
  .auth-option::after {
    right: 50%;
    transform: translateY(-50%);
  }
}
.auth-option button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  width: 100%;
  outline: none;
  background: var(--white--bg);
  border: none;
  transition: var(--trans);
  color: var(--text-color);
  font-size: 1rem;
  padding: 1rem;
  cursor: pointer;
}
.auth-option button:hover, .auth-option button:focus {
  background: var(--hover-bg);
  color: var(--dark--color);
}
.auth-option .child-big {
  font-size: 90%;
  margin-bottom: 0.4rem;
}
.auth-option .child-small {
  font-size: 80%;
  color: #808080;
}

.item-account:hover .auth-option {
  height: auto;
  pointer-events: all;
  opacity: 1;
  visibility: visible;
}

.auth--wrap {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
}
.auth--wrap::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  background: rgba(22, 22, 22, 0.9);
}

.auth-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}
@media only screen and (min-width: 747px) {
  .auth-container {
    display: grid;
    place-content: center;
  }
}

.auth-card {
  position: relative;
  width: 100%;
  background: var(--white--bg);
  border-radius: 16px;
  box-shadow: 0px 0px 12px 0 rgba(0, 0, 0, 0.3);
  padding: 1rem;
  transition: all ease-out 100ms;
  animation: fadeIn 200ms forwards;
}
@media only screen and (min-width: 747px) {
  .auth-card {
    padding: 2rem;
    width: 500px;
  }
}

.aut-header {
  position: relative;
  display: flex;
  margin-bottom: 1rem;
  padding: 1rem;
  padding-top: 0;
}
.aut-header div {
  flex: 1;
}
.aut-header h4 {
  font-weight: bold;
  color: var(--dark--color);
  font-size: 1.5rem;
}
.aut-header p {
  color: var(--text-color);
  opacity: 0.9;
  font-size: 1rem;
}
.aut-header button {
  outline: none;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  color: var(--dark--color);
  padding: 0;
  align-self: flex-start;
  cursor: pointer;
}

.auth--body {
  position: relative;
  padding: 1rem;
}

.form-group {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-bottom: 1rem;
}
.form-group label {
  margin-bottom: 0.3rem;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: inherit;
}
.form-group input {
  position: relative;
  width: 100%;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--dark--color);
  outline: none;
  border-width: 1px;
  border-color: var(--border-color);
  border-style: solid;
  transition: var(--trans);
  background: var(--white--bg);
}
.form-group input:focus {
  border-color: var(--bg-primary);
}

.auth--foter {
  position: relative;
  padding: 1rem;
  border-top: 1px solid var(--border-color);
}

.fp, .au-fsk {
  position: relative;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.fp span, .au-fsk span {
  font-size: 0.9rem;
  color: var(--text-color);
  opacity: 0.9;
}
.fp button, .au-fsk button {
  padding: 0;
  outline: none;
  border: none;
  background: transparent;
  font-weight: bold;
  text-decoration: underline;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  color: var(--text-color);
}
.fp button i, .au-fsk button i {
  margin-left: 0.3rem;
}
.fp button::before, .au-fsk button::before {
  width: 100%;
  height: 0;
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  background: var(--bg-primary);
  opacity: 0;
  transition: var(--trans);
}
.fp button:hover::before, .au-fsk button:hover::before {
  height: 100%;
  opacity: 0.2;
}
@media only screen and (min-width: 747px) {
  .fp, .au-fsk {
    flex-direction: row;
  }
  .fp button, .au-fsk button {
    margin-left: 1rem;
  }
}

.--is-reg {
  display: none;
}

.--reg .--is-reg {
  display: block;
}
.--reg .--is-login {
  display: none;
}

.auth--wrap.open {
  display: block;
}

.pricing-group {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.ng-slash-price--sm {
  text-decoration: line-through;
  font-size: 70%;
  opacity: 0.8;
}
@media only screen and (min-width: 747px) {
  .ng-slash-price--sm {
    font-size: 80%;
  }
}

.ads-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  display: none;
  pointer-events: none;
  place-content: center;
}
.ads-modal::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}
@media only screen and (max-width: 747px) {
  .ads-modal {
    padding: 1rem;
  }
}

.ads-modal.open {
  display: grid;
  pointer-events: all;
}

@keyframes appear {
  0% {
    transform: scale(1.1);
    opacity: 0;
  }
  50% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.ads-modal--container, .chk-modal--container {
  position: relative;
  width: 100%;
  background: var(--body-bg);
  border-radius: 16px;
  box-shadow: 0px 0px 12px 0 rgba(0, 0, 0, 0.3);
  padding: 1rem;
  animation-duration: 0.2s;
  animation-name: appear;
  animation-delay: 0.3s;
  animation-fill-mode: both;
  transition: all 0.1s linear;
  max-height: 90vh;
  overflow: auto;
}
@media only screen and (min-width: 747px) {
  .ads-modal--container, .chk-modal--container {
    width: 600px;
  }
}

.ads-banner {
  position: relative;
  width: 100%;
}
.ads-banner img {
  width: 100%;
  border-radius: 16px;
}

.ads-content, .search-thumbs-list {
  position: relative;
  width: 100%;
}
.ads-content .boxed-category--list, .search-thumbs-list .boxed-category--list {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  position: relative;
  width: 100%;
}
.ads-content .boxed-category--item, .search-thumbs-list .boxed-category--item {
  margin-right: 0;
  width: unset;
}
.ads-content .boxed-card p, .search-thumbs-list .boxed-card p {
  font-size: 0.6rem;
  color: var(--dark--color);
  font-weight: bold;
}
.ads-content .boxed-image, .search-thumbs-list .boxed-image {
  width: 70px;
  height: 70px;
}
@media only screen and (min-width: 747px) {
  .ads-content .boxed-category--list, .search-thumbs-list .boxed-category--list {
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  }
  .ads-content .boxed-card p, .search-thumbs-list .boxed-card p {
    font-size: 0.9rem;
    font-weight: normal;
    width: 10ch;
  }
}

.ads-close, .closeSearch {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  font-size: 2rem;
  border: none;
  color: white;
  outline: none;
  cursor: pointer;
  background: black;
  border-radius: 40px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
@media only screen and (max-width: 747px) {
  .ads-close, .closeSearch {
    top: 0.5rem;
    right: 0.5rem;
  }
}

@media only screen and (max-width: 747px) {
  .closeSearch {
    z-index: 222;
    display: flex !important;
    right: 1rem !important;
  }
}
.chk-modal--container {
  background: var(--white--bg);
}

.opt-content {
  position: relative;
  padding: 2rem;
}

.opt-header {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.opt-header i {
  margin-right: 1rem;
  color: #624390;
  font-size: 1.6rem;
}
.opt-header h4 {
  flex: 1;
  font-weight: 300;
  color: var(--dark--color);
  font-size: 1.2rem;
}

.opt-wrap {
  position: relative;
}

.opt-group {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.opt-group a {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  color: white;
  background: var(--bg-primary);
  border-radius: 5px;
  transition: var(--trans);
}
.opt-group a i {
  font-size: 1.8rem;
  margin-right: 1rem;
}
.opt-group a:hover {
  opacity: 0.8;
}
@media only screen and (min-width: 747px) {
  .opt-group a {
    width: 45%;
  }
}
.opt-group a.cta_g {
  background: var(--header-lite--color);
  color: var(--bg-primary);
}
@media only screen and (max-width: 747px) {
  .opt-group a {
    margin-bottom: 0.5rem;
  }
}

.get-more-wrapp {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.expand-more-btn {
  position: relative;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(1, 14, 40, 0.2);
  background: var(--white--bg);
  outline: none;
  padding: 0.5rem 1rem;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark--color);
  cursor: pointer;
  transition: var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
}
.expand-more-btn i {
  margin-left: 1rem;
  font-size: 1.3rem;
}
@media only screen and (min-width: 747px) {
  .expand-more-btn {
    padding: 1rem 2rem;
    font-size: 16px;
  }
}
.expand-more-btn:hover {
  color: var(--bg-primary);
  box-shadow: 0 10px 20px rgba(3, 27, 78, 0.1);
  transition: box-shadow 0.25s linear;
}

.ft-headings {
  text-align: center;
  color: var(--dark--color);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 747px) {
  .xs-hidden {
    display: none;
  }
}
.sm-find-tab {
  display: block;
  position: relative;
  width: 100%;
  background: var(--white-color);
  border-bottom: 1px solid #eee;
}
@media only screen and (min-width: 747px) {
  .sm-find-tab {
    display: none;
  }
}

.find-nav--search {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.5rem 0;
}

.nav--menu {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  font-size: 1.5rem;
  color: var(--text-color);
  margin-right: 0.5rem;
  background: transparent;
}

.finder-seracher {
  position: relative;
  flex: 1;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  border-left: 1px solid #eee;
  font-size: 0.8rem;
  opacity: 0.7;
  padding-left: 1rem;
  border-radius: 16px;
  background: var(--body-bg);
}
.finder-seracher i {
  margin-right: 0.5rem;
}

.dark--mode .sm-find-tab {
  border-bottom-color: var(--border-color);
}
.dark--mode .finder-seracher {
  border-left-color: var(--border-color);
}

.new-menu--tabs {
  position: relative;
  width: 100%;
  display: flex;
}
@media only screen and (max-width: 747px) {
  .new-menu--tabs {
    flex-wrap: wrap;
    justify-content: center;
    background: var(--white--bg);
    border-radius: 16px;
    overflow: hidden;
  }
  .new-menu--tabs .tab-card {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.right-tabs {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
}
@media only screen and (min-width: 747px) {
  .right-tabs {
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 747px) {
  .right-tabs {
    width: 100%;
    background: var(--white--bg);
    margin-top: 0.4rem;
    border-top: 1px solid var(--hover-bg);
  }
  .right-tabs::before {
    position: absolute;
    content: "";
    left: 40%;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--hover-bg);
    transform: translateX(-40%);
  }
  .right-tabs .tab-card {
    width: 40%;
  }
}

.tab-card {
  position: relative;
  padding: 0.5rem;
}
@media only screen and (min-width: 747px) {
  .tab-card {
    min-width: 250px;
    background: var(--white-color);
    border-radius: 4px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.08);
  }
}
.tab-card select {
  width: 100%;
  position: relative;
  color: var(--text-color);
  font: inherit;
  font-size: 0.8rem;
  outline: none;
  padding: 0.3rem 0.5rem;
  border: none;
  transition: var(--trans);
  border-radius: 4px;
  background: var(--white--bg);
}
.tab-card select:hover, .tab-card select:focus {
  background: var(--hover-bg);
}

.page-ranger {
  position: relative;
  margin-left: 2rem;
}
@media only screen and (max-width: 747px) {
  .page-ranger {
    margin-left: 1rem;
    flex: 1;
  }
}

.tb-card-group {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tb-card-label {
  position: relative;
  font-size: 0.7rem;
  font-weight: bold;
  color: var(--text-color);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  opacity: 0.8;
  display: none;
}
@media only screen and (min-width: 747px) {
  .tb-card-label {
    display: block;
  }
}

.extra-page {
  position: relative;
  width: 100%;
}

.extra-wrap {
  position: relative;
  width: 952px;
  max-width: 100%;
  margin: 0 auto;
}

.extra-headings {
  position: relative;
  padding: 2rem 0;
  text-align: center;
}
.extra-headings h1 {
  font-size: clamp(1.5rem, 2.5rem, 5vw);
  color: white;
  font-weight: bold;
}

.extra-content {
  position: relative;
  background: var(--white--bg);
  margin-top: -1.5rem;
  padding: 1.5rem;
  border-radius: 8px;
  padding-top: 2rem;
}
.extra-content h2, .extra-content h4, .extra-content p, .extra-content li {
  line-height: 1.5;
  font-weight: normal;
}
.extra-content h2 {
  font-size: clamp(1.2rem, 2rem, 5vw);
  color: var(--dark--color);
  margin-bottom: 1rem;
}
.extra-content h4 {
  font-size: clamp(0.9rem, 1.2rem, 5vw);
  color: #f34e0c;
  margin-bottom: 1rem;
  font-weight: 600;
}
.extra-content p {
  font-size: 0.9rem;
  color: #808080;
  margin-bottom: 0.7rem;
  line-height: 1.5;
}
.extra-content b {
  font-weight: bold;
  color: var(--dark--color);
}
.extra-content ul, .extra-content ol {
  margin-bottom: 1rem;
  line-height: 1.3;
  padding-left: 2rem;
}
.extra-content ul li, .extra-content ol li {
  margin-bottom: 0.5rem;
  padding-inline-start: 1rem;
}
.extra-content ul {
  list-style-type: disc;
}
.extra-content a {
  color: var(--bg-primary);
  text-decoration: underline;
}
.extra-content ::marker {
  color: red;
  font-weight: bold;
  font-size: 0.8rem;
}

.intro-block {
  position: relative;
  background-color: #2f1d2f;
  padding-top: 1em;
  padding-bottom: 2.5rem;
}

.bg-intro {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  left: 0;
  top: 0;
  opacity: 0.15;
}
.bg-intro svg {
  width: 100%;
}

.dark--mode .extra-content a {
  color: white;
}

#toast {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  background: #fff;
  color: #000;
  padding: 8px 16px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  word-spacing: 1px;
  border: 1px dashed #11bd25;
  visibility: hidden;
  opacity: 0;
  z-index: 999999999;
}

#toast.show {
  visibility: visible;
  animation: fadeInOut 5s;
}

#toast_red {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  background: #f5c9c9;
  color: #f00;
  padding: 8px 16px;
  border-radius: 30px;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  word-spacing: 1px;
  border: none;
  visibility: hidden;
  opacity: 0;
  z-index: 999999999;
}

#toast_red.show {
  visibility: visible;
  animation: fadeInOut 5s;
}

@keyframes fadeInOut {
  5%, 95% {
    opacity: 1;
    top: 30px;
  }
  15%, 85% {
    opacity: 1;
    top: 20px;
  }
}
.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after, .swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  display: none;
}

.out {
  display: none !important;
}

.capshow_image {
  height: 100% !important;
}

li .flash {
  display: none !important;
}

li.added .flash {
  display: block !important;
}

.product-details span.sl_out {
  font-size: 12px;
  background: #f00;
  color: #fff;
  padding: 1px 5px;
  border-radius: 5px;
  margin-top: 5px;
  display: inline-block;
}

.changeview {
  justify-content: space-between;
  padding-bottom: 1rem;
  align-items: center;
}

.changeview.center {
  justify-content: center;
  display: flex;
}

/* SLIDER FOR CATEGORY PAGE */
.sort {
  width: 200px;
}

.sort_price {
  display: flex;
  justify-content: space-between;
}

.sort_price span {
  font-size: 12px;
}

.slider {
  -webkit-appearance: none;
  width: 100%;
  height: 7px;
  background: #d3d3d3;
  outline: none;
  opacity: 0.7;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
  border-radius: 10px;
}

.slider:hover {
  opacity: 1;
}

.slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #000;
  cursor: pointer;
  border-radius: 50%;
}

.slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #000;
  cursor: pointer;
  border-radius: 50%;
}

.load_more_holder {
  padding: 2rem;
  text-align: center;
}

.load_more_holder a {
  background: #220423;
  color: #fff;
  padding: 0.7rem 2rem;
  margin-top: 0.8rem;
  display: inline-block;
  border-radius: 30px;
}

.sizes_h {
  display: none;
  font-size: 13px;
  font-weight: 600;
}

.sizes_h b {
  background: #a7a7a7;
  padding: 3px 6px;
  border-radius: 10px;
  color: #fff;
  font-size: 12px;
}

.alert-warning {
  color: #936f1d;
  background-color: #ffeecc;
  border-color: #ffe7b8;
}

.alert-modern {
  display: inline-block;
  padding: 0.375rem 1rem 0.375rem 0.5rem;
  border-radius: 50rem;
}

.badge-warning {
  color: #FFF;
  background-color: #FFAB00;
}

.alert-modern .badge + .alert-content {
  margin-left: 0.5rem;
}

/*# sourceMappingURL=app.css.map */
