:root {
  --layout-max: 1920px; /* ширина макету */

  --container-pad: 15px; /* padding контейнера (desktop) */
  --container-pad-mobile: 10px;

  --gutter-1600: 50px; /* відступ від краю екрану ДО КОНТЕНТУ при 1600 */
  --gutter-1920: 160px; /* відступ від краю екрану ДО КОНТЕНТУ при 1920 */

  --bp-md: 992px;
  --bp-lg: 1200px;
  --bp-1600: 1600px;

  --header-main-height: 80px; /* висота основного хедера */
  --header-box-height: 0px; /* висота верхнього банеру у хедері */
  --header-total-height: calc(var(--header-main-height) + var(--header-box-height));
}

/* HEADER NAV STYLE = START */


.navbar {
  overflow-y: auto;
  height: 100%;
}

.navbar .nav_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 30px 0;
  margin-bottom: 25px;
}

.navbar .nav_head .nav_title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: #a51511;
}

.navbar .nav_head .language {
  display: none;
}

.mobile .navbar .nav_head .language {
  display: block;
}

.navbar .nav_footer {
  padding: 40px 15px 0px;
  margin: 0 15px;
  border-top: 1px solid #ededed;
}

.mobile .navbar .nav_footer .list-unstyled {
  margin-bottom: 40px;
}

.navbar .nav_footer .list-unstyled li:not(:last-child) {
  margin-bottom: 25px;
}

.navbar .nav_footer .list-unstyled li a {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: #a51511;
}

.navbar .nav_footer .phone_wrapp {
  display: none;
}

.mobile .navbar .nav_footer .phone_wrapp {
  display: block;
}

.navbar .nav_footer .phone_wrapp .header_open {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: #6b6b6b;
  margin-bottom: 10px;
}

.navbar .nav_footer .phone_wrapp .header_phone a {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  color: #000;
}

/* HEADER NAV STYLE = END */

/* ANIMATE LINK BTN = START */

a {
  transition: 0.2s;
}

header .header_wrap .header_right .btn_call,
.btn_link,
.link_btn {
  transition: 0.2s;
  cursor: pointer;
}

header .header_wrap .header_right .btn_call:hover,
.btn_link:hover,
.link_btn:hover {
  background-color: #640f0c !important;
  color: #fff !important;
}

/* ANIMATE LINK BTN = END */

.container {
  --padding: var(--container-pad);

  margin-left: auto;
  margin-right: auto;
  padding-left: var(--padding);
  padding-right: var(--padding);
  width: 100%;
  box-sizing: border-box;
}

.mobile .container {
  --padding: var(--container-pad-mobile);
}

/* bootstrap-like (970 контент + 30 padding) */
@media (min-width: 0px) {
  .container {
    --padding: var(--container-pad-mobile);
  }
}

@media (min-width: 745px) {
  .container {
    max-width: 1000px;
    --padding: var(--container-pad);
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 1000px;
  }
}

@media (min-width: 1200px) {
  .container {
    /* “додаткове поле” (зовнішній відступ до бордера контейнера) */
    --outer-1600: calc(var(--gutter-1600) - var(--padding)); /* 50-15 = 35 */
    --outer-1920: calc(var(--gutter-1920) - var(--padding)); /* 160-15 = 145 */

    /* максимальна ширина контейнера (по бордеру) під макет 1920 */
    --container-max: calc(var(--layout-max) - (2 * var(--outer-1920))); /* 1920 - 290 = 1630 */

    /* 1200..1600: outer 0 -> outer-1600 */
    --outer: clamp(0px, calc(8.75vw - 105px), var(--outer-1600));

    max-width: min(var(--container-max), calc(100% - (2 * var(--outer))));
  }
}

/* 1600..1920: outer outer-1600 -> outer-1920 */
@media (min-width: 1600px) {
  .container {
    --outer: clamp(var(--outer-1600), calc(34.375vw - 515px), var(--outer-1920));
  }
}

/* Header Style = START */
header {
  position: fixed;
  top: 15px;
  left: 0;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 100;
  transition: box-shadow 0.3s ease;
  animation: slide-down 0.5s;
}

header .header_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 6px;
  border-radius: 40px;
  position: relative;
}

header.fixed .header_wrap {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.mobile header .header_wrap {
  padding: 4px 16px 4px 4px;
}

.active .mobile header .header_wrap { 
  box-shadow: none;
}


header .header_wrap .logo_wrapp {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile header .header_wrap .logo_wrapp {
  gap: 10px;
}

header .header_wrap .logo_wrapp .catalog #show_categories_btn {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 24px;
  background: #a51511;
  border-radius: 32px;
  height: 64px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  color: #fff;
  text-transform: uppercase;
  transition: 0.2s;
}

header .header_wrap .logo_wrapp .catalog #show_categories_btn:hover {
  background: #640f0c;
}

.mobile header .header_wrap .logo_wrapp .catalog #show_categories_btn {
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0;
}

header .header_wrap .header_right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.search {
  position: relative;
}

#search .input-main-search {
  position: relative;
  width: 20vw;
  display: flex;
  align-items: center;
  border: 1px solid #eee2e2;
  border-radius: 10px;
  height: 52px;
  background: #f6f6f6;
  padding: 0 25px;
  font-family: var(--font-family);
}

.mobile #search {
  width: 100%;
  align-items: center;
  height: 100%;
}


#search .input-search {
  display: block;
  margin-right: 10px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

header .header_wrap .header_right .btn_call {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  border-radius: 10px;
  height: 52px;
  background: #a51511;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

.mobile header .header_wrap .header_right .btn_call {
  background-color: transparent;
  padding: 0;
  height: auto;
}

header .header_wrap .header_right .header_open {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: #6b6b6b;
  margin-bottom: 5px;
}

header .header_wrap .header_right .header_phone a {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  color: #000;
  transition: 0.2s;
}

header .header_wrap .header_right .header_phone a:hover {
  color: #a51511;
}

header .header_wrap .header_right  .language {
  margin-left: 25px;
  margin-right: 30px;
}

#form-language .btn-language,
#form-currency .btn-currency {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 12px;
  line-height: 150%;
  text-transform: uppercase;
  color: #000;
  user-select: none;
}

#form-language .btn-language img,
#form-currency .btn-currency img {
  margin-right: 8px;
  width: 20px;
  flex-shrink: 0;
}


.mobile #search .input-search {
  display: none;
}

div#search button {
  background: none;
  border: none;
}

.btn-currency-group,
.btn-language-group {
  position: relative;
}
.btn-currency-menu,
.btn-language-menu {
  position: absolute;
  overflow: hidden;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  background-color: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
}

.main-menu-content,
.account-menu,
.container-cart {
  position: absolute;
  padding: 20px 30px 10px;
  overflow: hidden;
  top: 70px;
  right: 0;
  z-index: 9;
  min-width: 220px;
  /*
    margin-top: 10px;
    border-radius: 5px;
    */
  background: #fff;
  border-radius: 5px;
  box-shadow:
    0px 3px 7px 0px rgba(0, 0, 0, 0.1),
    0px 13px 13px 0px rgba(0, 0, 0, 0.09),
    0px 29px 17px 0px rgba(0, 0, 0, 0.05),
    0px 51px 20px 0px rgba(0, 0, 0, 0.01),
    0px 80px 22px 0px rgba(0, 0, 0, 0);
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  cursor: auto;
}

.mobile .main-menu-content,
.mobile .account-menu,
.mobile .container-cart {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100vw;
  height: auto;
  max-height: min(calc(100dvh - 60px), 90dvh);
  overflow-y: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  -webkit-overflow-scrolling: touch;
}

.mobile .container-cart ul {
  height: 100%;
}

.main-menu-content {
  left: 80%;
  padding: 0px 30px;
}

.btn-currency-menu {
  margin-top: 2px;
}
.callback {
  display: flex;
  align-items: center;
}

.btn-currency-menu li:not(:first-child) .currency-select,
.btn-language-menu li:not(:first-child) .language-select {
  margin-top: 5px;
}
.currency-select,
.language-select {
  min-width: 90px;
  font-size: 14px;
  line-height: normal;
  color: #000;
  padding: 4px 30px;
  border-radius: 20px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.currency-select:hover,
.language-select:hover {
  color: #a51511;
}

.btn-currency-menu li {
  list-style: none;
}
.btn-currency-menu.in,
.btn-language-menu.in {
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
  padding: 12px 0 12px;
}
.main-menu-content.in {
  height: auto;
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
  padding: 20px 30px;
}
.account-menu.in {
  height: auto;
  visibility: visible;
  opacity: 1;
  transition: 1s;
  /* padding: 20px 30px; */
}
.container-cart.in {
  /* height: auto; */
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
  padding: 10px 0 25px;
}
#form-language {
  margin: 0;
}
#cart-total,
.whishlist-total {
  background: #1e1e1e;
  width: 13px;
  height: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8px;
  right: -7px;
  border-radius: 100%;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 9px;
  line-height: 140%;
  text-align: center;
  color: #fefefe;
  padding-top: 1px;
}

.mobile #cart-total,
.mobile .whishlist-total {
  padding-left: 0;
}

#wishlist-total .whishlist-total {
  display: none !important;
}

#wishlist-total.not__empty .whishlist-total {
  display: flex !important;
}

button.btn-cart {
  background: no-repeat;
  border: none;
}
.account li {
  padding-top: 3px;
  padding-bottom: 3px;
  list-style-type: none;
}

.main-menu,
.wishlist a,
.mini-cart,
#cart a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-menu {
  flex-direction: row;
}
.main-menu .head-ico,
.callback.head-ico svg {
  margin-right: 9px;
  flex-shrink: 0;
}
.callback button {
  padding: 0;
  color: #fff;
  background-color: transparent;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  display: flex;
  align-items: center;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.callback button:hover {
  color: #f57c27;
}
.header-socials {
  display: grid;
  grid-template-columns: repeat(3, minmax(30px, max-content));
  gap: 11px;
  align-items: center;
  list-style: none;
}
.header-item {
  border-radius: 50%;
  overflow: hidden;
}
.header-item img {
  max-width: 30px;
}
.account-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--font-family);
}

header .account-wrap .account {
  display: flex;
  align-items: center;
  gap: 5px;
}

.account-wrap .mini-cart {
  margin-right: 0;
}

.main-menu,
.account {
  cursor: pointer;
}
button#show_categories_btn {
  background-color: #fff;
}
.head-title {
  color: #fff;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: normal;
  user-select: none;
}

.product__item span.price-old {
  margin-bottom: 8px;
  color: #824a0e;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  text-decoration: line-through;
  white-space: nowrap;
}
span.price-new {
  color: #3a3227;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
}

.btn-none {
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}

.header-box {
  position: relative;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  /* background-color: {{ header_marquee_background_color }}; */
  background-color: #1e1e1e;
  overflow: hidden;
}

.header-box a {
  height: 100%;
  display: block;
}

.header-box-info-link {
  display: inline-block;
  height: 100%;
}

.header-box-info-text {
  display: inline-block;
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 12px;
  line-height: normal;
  text-transform: uppercase;
  white-space: nowrap;
}

#logo {
  margin: 0;
}
#logo h1 {
  margin: 0;
  font-size: 28px;
}
#logo h1 a {
  color: #000;
}
.mobile #logo {
  max-width: 108px;
}

.box-info {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  overflow: hidden;
}
.title-info {
  color: #fff;
  font-size: 16px;
  font-style: normal;
  line-height: 16px;
}
.price-info {
  background: #fff;
  width: 105px;
  height: 124px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
span.text_ot,
span.symbol {
  color: #000;
  font-size: 10px;
  font-style: normal;
  line-height: 15px;
}
span.prices {
  color: #000;
  font-size: 14px;
  font-style: normal;
  line-height: 16px;
  margin-left: 5px;
  margin-right: 3px;
}

.navbar {
  border: 0;
  margin: 0;
}
.navbar-menu-top {
  margin-bottom: 0;
  /* width: 50%; */
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar-menu-top hr {
  display: none;
}
.nav.navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mobile .nav.navbar-nav {
  display: block;
}
.navbar-nav > li {
  position: relative;
  float: none;
}
.navbar-nav > li a:hover {
  text-decoration: underline;
}
.navbar-nav > li a.noLink {
  cursor: pointer;
}
.navbar-nav > li a.noLink:hover {
  text-decoration: none;
}
.navbar-nav > li > .dropdown-menu {
  display: none;
  position: absolute;
  width: 220px;
  top: 40px;
  right: 0;
  padding: 20px 30px;
  background-color: #fff;
  border: 0;
  border-radius: 10px;
  box-shadow:
    0 9px 19px 0 rgba(0, 0, 0, 0.1),
    0 35px 35px 0 rgba(0, 0, 0, 0.09),
    0 78px 47px 0 rgba(0, 0, 0, 0.05),
    0 138px 55px 0 rgba(0, 0, 0, 0.01),
    0 216px 61px 0 rgba(0, 0, 0, 0);
  z-index: 1111;
}
.navbar-nav > li > .dropdown-menu li {
  padding-top: 3px;
  padding-bottom: 3px;
  list-style: none;
}
.navbar-nav > li > .dropdown-menu li a {
  color: #1e1e1e;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
}
.navbar-nav > li > .dropdown-menu li a:hover {
  color: #4d4d4d;
  text-decoration: none;
}
.mobile .navbar-nav > li > .dropdown-menu li {
  padding-top: 10px;
  padding-bottom: 10px;
}
.mobile .navbar-nav > li > .dropdown-menu li a {
  text-transform: uppercase;
}
.mobile .navbar-nav > li > .dropdown-menu li:hover a {
  color: #78c619;
}

.mobile .container-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 5px;
}

.mobile .container-header .menu_wrapp {
  display: flex;
  align-items: center;
  gap: 16px;
}

#mobile-search {
  display: none;
}

@media (max-width: 1200px) {
  header .account-wrap .account {
    display: none;
  }

  header .dd {
    display: none;
  }

  .sc-megamenu .menu-header {
    display: block;
    margin-bottom: 20px;
    padding-top: 35px;
  }

  .sc-megamenu .menu-header .menu-logo {
    max-width: 144px;
  }

  .sidebar-header-bottom {
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    flex: 0 0 auto;
    padding-inline: 30px;
    padding-top: clamp(24px, 3dvh, 150px);
  }

  .sc-megamenu-list-item > .sc-megamenu-child.active {
    left: 0;
    z-index: 4;
  }

  .menu-header .nav_wrapp .account {
    width: 50%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f6f6f6;
  }

  .menu-header .nav_wrapp .social_wrapp {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }

  .menu-title-mobile {
    display: flex;
    position: fixed;
    top: 0;
  }

  .sc-megamenu > nav.navbar > ul.categories_lvl1 {
    min-height: 0;
    overflow: auto;
  }

  .sc-megamenu {
    position: fixed;
    top: 0;
    padding: 0;
    height: 100%;
    border: none;
  }

  .sc-megamenu > nav {
    margin-bottom: 0;
    min-height: 0;
    height: auto;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    border-radius: 0;
    overflow: hidden;
  }

  .sc-megamenu-list {
    height: 100%;
    width: 100vw;
    margin: 0 !important;
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 70px;
  }

  .sc-megamenu-list-item .menu-row {
    padding: 0 30px;
  }


  .sc-megamenu-list-item:not(:last-child) {
    margin-bottom: 25px;
  }

  .sc-megamenu-child {
    overflow-y: auto;
    height: 100vh !important;
    padding-bottom: 20px;
    width: 100%;
  }

  .main-title-category {
    display: block;
  }
}

@media (max-width: 840px) {
  div#logo {
    max-width: 144px;
  }

  #mobile-search {
    display: block;
    margin-right: 15px;
  }

  .close-mobile-search {
    display: block !important;
    height: 24px;
    margin-left: 25px;
  }

  .content-header {
    justify-content: start;
    padding: 0px 10px;
  }

  .head-3 {
    margin-left: auto;
    margin-right: 15px;
  }

  .head-3 .search {
    margin-right: 0;
  }

  .head-3 .account-wrap {
    gap: 15px;
  }


  header .catalog .btn_name {
    display: none;
  }

  #show_categories_btn .burger {
    margin-right: 0;
    margin-bottom: 11px;
    width: 20px;
    height: 16px;
  }

  #search {
    width: 100%;
    align-items: center;
    height: 100%;
  }

  #search .input-search {
    display: none;
  }

  .input-main-search {
    width: 100%;
    height: 50px;
    padding-left: 10px;
    font-size: 16px;
    background: #f5f5f5;
  }

  .input-main-search::placeholder {
    font-size: 16px;
  }

  .main-menu-content,
  .account-menu,
  .container-cart {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100vw;
    height: auto;
    max-height: min(calc(100dvh - 60px), 90dvh);
    overflow-y: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    -webkit-overflow-scrolling: touch;
  }

  .container-cart ul {
    height: 100%;
  }

  .nav.navbar-nav {
    display: block;
  }

  .navbar-nav > li > .dropdown-menu li {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .navbar-nav > li > .dropdown-menu li a {
    text-transform: uppercase;
  }
  .navbar-nav > li > .dropdown-menu li:hover a {
    color: #78c619;
  }

  .container-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 5px;
  }

  .container-header .menu_wrapp {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .header__search #search {
    width: 100%;
    visibility: hidden;
    opacity: 0;
  }

  #search .input-main-search {
    width: calc(100%);
  }

  .header__search.in #search {
    animation: slide-down 0.5s;
    visibility: visible;
    opacity: 1;
    padding: 0 10px;
  }

  .header__search .dropdown-menu {
    transform: translateX(0);
  }

  .header__search .dropdown-menu li.more a {
    margin-top: 9px;
    margin-bottom: 17px;
  }

  .header__search .dropdown-menu {
    position: fixed;
    overflow-y: auto;
    top: 120px !important;
    left: 0 !important;
    margin: 0;
    padding: 0 10px 10px;
    min-width: auto;
    width: calc(100%);
    height: calc(100vh - 120px);
    padding-bottom: 40vh;
    /* height: calc(100% - 70px); */
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: 0;
    box-shadow: 0;
    touch-action: pan-y;
    inset: 0;
    z-index: 9999;
    -webkit-overflow-scrolling: touch;
  }

  .close-mobile-search.active {
    display: block;
  }

  .header__search .dropdown-menu {
    flex-direction: column;
  }
}

.mobile #mobile-search {
  margin-right: 0;
}
/* Head Style = END */


/* Global styles = START */
.product__item--stickers {
  position: absolute;
  top: 10px;
  left: 15px;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

.product__item--stickers .sticker {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 10px;
  line-height: 120%;
  text-transform: uppercase;
  border-radius: 50%;
  overflow: hidden;
}

.sticker.sticker_top {
  color: #fff;
  background-color: #1e1e1e;
}

.sticker.sticker_new {
  color: #fff;
  background-color: #1e1e1e;
}

.sticker.sticker_sale {
  color: #fff;
  background-color: #ff3030;
}

.dd {
  position: relative;
  display: inline-flex;
}

/* Кнопка (під 24x24) */
.dd__toggle {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

/* Три крапки */
.dd__dots {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    0 -7px 0 currentColor,
    0 7px 0 currentColor;
}

/* Меню */
.dd__menu {
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  box-shadow: 0 1px 30px rgba(0, 0, 0, 0.02);
  padding: 8px;
  z-index: 9999;

  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: 0.18s ease;
}

.dd.is-open .dd__menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dd__item {
  display: flex;
  width: 100%;
  padding: 10px 12px;
  border-radius: 0px;
  color: inherit;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #3a3227;
}

.dd__item:hover {
  background: rgba(0, 0, 0, 0.05);
}

.dd__sep {
  height: 1px;
  margin: 6px 0;
  background: rgba(0, 0, 0, 0.08);
}

/* A11y helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* content */
#content {
  min-height: 600px;
}
/* alert */
.alert {
  padding: 8px 14px 8px 14px;
  font-family: var(--font-family);
}
.alert.alert-danger {
  margin-top: 15px;
  color: #222b45;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  border-radius: 0;
  border-color: #f57c27;
  background-color: #fffaf6;
  display: flex;
  align-items: center;
}
.alert.alert-danger b {
  font-weight: 700 !important;
}
.alert.alert-danger svg {
  margin-left: 24px;
  margin-right: 22px;
  flex-shrink: 0;
}
.wrapper {
  padding-top: 91px;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.common-home .wrapper {
  padding-top: 0;
}
/*
body.has-fixed-header .wrapper {
  padding-top: var(--header-total-height);
}
*/
body.has-header-box {
  --header-box-height: 40px;
}

@media (max-width: 840px) {
  :root {
    --header-main-height: 70px;
  }
}

::-webkit-scrollbar {
  width: 6px;
  height: 2px;
}
::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #d3d0ca;
  border-radius: 20px;
}
:focus {
  outline: none;
  outline-offset: 0;
}
:focus-visible {
  outline: 0;
}
.search ul::-webkit-scrollbar {
  width: 0;
}
.sc-megamenu-list::-webkit-scrollbar,
.sc-megamenu-list ul::-webkit-scrollbar {
  width: 8px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  right: -10px;
}

* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}

*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100vw;
  height: 100%;
}
body {
  width: 100%;
  color: #000;
  background-color: #fff;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  overflow-x: hidden;
}

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

img {
  height: auto;
  max-width: 100%;
  display: block;
  border: none;
}

ul,
table,
fieldset,
hr {
  margin: 0;
  padding: 0;
}

.table {
  width: 100%;
  max-width: 100%;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}

body[class*='information-information'] {
  background-color: #fff;
}
/*
#content ul li:not(:last-child),
#content ol li:not(:last-child) {
  margin-bottom: 10px;
}

#content .btn,
#content ul.dropdown-address li a {
  text-decoration: none;
}

#content ul li {
  list-style-type: none;
}
*/
button {
  background-color: transparent;
  user-select: none;
  cursor: pointer;
}
a {
  color: #1e1e1e;
  background-color: unset;
  -webkit-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
a:hover,
a:link,
a:visited {
  text-decoration: none;
}
a:hover {
  color: #4d4d4d;
  text-decoration: none;
  text-underline-position: under;
}
a:link {
  text-underline-position: under;
}
a:focus {
  /* color: inherit; */
  outline: none;
  outline-offset: 0;
}
.btn_continue {
  color: #fff !important;
}

.phone {
  white-space: nowrap;
}
.phone-number {
  white-space: nowrap;
}

.form-control:focus {
  border-color: #000;
  outline: 0;
  box-shadow: none;
}

label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
textarea {
  resize: vertical;
}

input,
button {
  border: none;
}

/* Gradent to all drop down menus */
.btn-language-menu ul a.activeLanguage,
.btn-currency-menu ul button.activeCurrency {
  pointer-events: none;
}
.btn-language-menu ul a.activeLanguage span,
.btn-currency-menu ul button.activeCurrency {
  color: #ccc;
}

.tab-content > .active,
.vertical-tab-container .active {
  animation: fadeIn 0.7s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
/* Global styles = END */

/* Bootstrap styles = START */
[hidden] .hidden {
  display: none;
}

.hidden {
  display: none;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none;
  }
}

@media (min-width: 1200px) {
  .hidden-lg {
    display: none;
  }
}

button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

pre,
blockquote {
  border: 1px solid #999;
  page-break-inside: avoid;
}

.img-fluid,
.img-responsive,
.thumbnail > img,
.thumbnail a > img,
.carousel-inner > .item > img,
.carousel-inner > .item > a > img {
  display: block;
  max-width: 100%;
  height: auto;
}

hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #eee;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

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

.text-justify {
  text-align: justify;
}

.text-nowrap {
  white-space: nowrap;
}

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

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

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

.text-muted {
  color: #777;
}

.text-primary {
  color: #337ab7;
}

.text-success {
  color: #3c763d;
}

.text-info {
  color: #31708f;
}

.text-warning {
  color: #8a6d3b;
}

.text-danger {
  color: #a94442;
}

.bg-primary {
  color: #fff;
  background-color: #337ab7;
}

.bg-success {
  background-color: #dff0d8;
}

.bg-info {
  background-color: #d9edf7;
}

.bg-warning {
  background-color: #fcf8e3;
}

.bg-danger {
  background-color: #f2dede;
}

.container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}

.col-xs-12 {
  width: 100%;
}

.col-xs-11 {
  width: 91.66666667%;
}

.col-xs-10 {
  width: 83.33333333%;
}

.col-xs-9 {
  width: 75%;
}

.col-xs-8 {
  width: 66.66666667%;
}

.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}

.col-xs-5 {
  width: 41.66666667%;
}

.col-xs-4 {
  width: 33.33333333%;
}

.col-xs-3 {
  width: 25%;
}

.col-xs-2 {
  width: 16.66666667%;
}

.col-xs-1 {
  width: 8.33333333%;
}

@media (min-width: 768px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }

  .col-sm-12 {
    width: 100%;
  }

  .col-sm-11 {
    width: 91.66666667%;
  }

  .col-sm-10 {
    width: 83.33333333%;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-8 {
    width: 66.66666667%;
  }

  .col-sm-7 {
    width: 58.33333333%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-5 {
    width: 41.66666667%;
  }

  .col-sm-4 {
    width: 33.33333333%;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-2 {
    width: 16.66666667%;
  }

  .col-sm-1 {
    width: 8.33333333%;
  }
}

@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }

  .col-md-12 {
    width: 100%;
  }

  .col-md-11 {
    width: 91.66666667%;
  }

  .col-md-10 {
    width: 83.33333333%;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-8 {
    width: 66.66666667%;
  }

  .col-md-7 {
    width: 58.33333333%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-5 {
    width: 41.66666667%;
  }

  .col-md-4 {
    width: 33.33333333%;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-2 {
    width: 16.66666667%;
  }

  .col-md-1 {
    width: 8.33333333%;
  }
}

@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }

  .col-lg-12 {
    width: 100%;
  }

  .col-lg-11 {
    width: 91.66666667%;
  }

  .col-lg-10 {
    width: 83.33333333%;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-8 {
    width: 66.66666667%;
  }

  .col-lg-7 {
    width: 58.33333333%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-5 {
    width: 41.66666667%;
  }

  .col-lg-4 {
    width: 33.33333333%;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-2 {
    width: 16.66666667%;
  }

  .col-lg-1 {
    width: 8.33333333%;
  }
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition:
    border-color ease-in-out 0.15s,
    -webkit-box-shadow ease-in-out 0.15s;
  -o-transition:
    border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
  transition:
    border-color ease-in-out 0.15s,
    box-shadow ease-in-out 0.15s;
}

.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.075),
    0 0 8px rgba(102, 175, 233, 0.6);
}

.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #999;
}

.form-control::-webkit-input-placeholder {
  color: #999;
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #eee;
  opacity: 1;
}

.form-control[disabled],
fieldset[disabled] .form-control {
  cursor: not-allowed;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 15px;
}

.radio,
.checkbox {
  position: relative;
  display: block;
  margin-top: 10px;
  margin-bottom: 10px;
}

.radio label,
.checkbox label {
  min-height: 20px;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}

.radio input[type='radio'],
.radio-inline input[type='radio'],
.checkbox input[type='checkbox'],
.checkbox-inline input[type='checkbox'] {
  position: absolute;
  margin-top: 4px \9;
  margin-left: -20px;
}

.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}

.radio-inline,
.checkbox-inline {
  position: relative;
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  vertical-align: middle;
  cursor: pointer;
}

.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}

input[type='radio'][disabled],
input[type='checkbox'][disabled],
input[type='radio'].disabled,
input[type='checkbox'].disabled,
fieldset[disabled] input[type='radio'],
fieldset[disabled] input[type='checkbox'] {
  cursor: not-allowed;
}

.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}

.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}

.buttons {
  margin: 1em 0 !important;
}

#content .buttons a {
  text-decoration: none;
}

.btn {
  padding: 10px 20px;
}

.btn,
.btn-primary {
  color: #1e1e1e;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  border: 1px solid #000;
  border-radius: 0;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  border-radius: 5px;
}

.btn:hover {
  color: #fff;
  background-color: #3a3227;
  border-color: #3a3227;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: 0;
  outline-offset: 0;
}

.btn:active,
.btn-primary:active {
  box-shadow: none;
}

.btn-primary {
  color: #fff;
  background-color: #0f0f0f;
  border-color: #0f0f0f;
}

.btn-primary:hover {
  /* color: #0f0f0f; */
  background-color: #fff;
  border-color: #0f0f0f;
}

.btn-primary:focus {
  outline: 0;
  outline-offset: 0;
}

.btn-xs {
  font-size: 9px;
}

.btn-sm {
  font-size: 10.2px;
}

.btn-lg {
  padding: 10px 16px;
  font-size: 15px;
}

.btn-group > .btn,
.btn-group > .dropdown-menu,
.btn-group > .popover {
  font-size: 12px;
}

.btn-group > .btn-xs {
  font-size: 9px;
}

.btn-group > .btn-sm {
  font-size: 10.2px;
}

.btn-group > .btn-lg {
  font-size: 15px;
}

.btn-default {
  color: #777;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #e7e7e7;
  background-image: linear-gradient(to bottom, #eeeeee, #dddddd);
  background-repeat: repeat-x;
  border-color: #dddddd #dddddd #b3b3b3 #b7b7b7;
}

.btn-primary {
  color: #1e1e1e;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  text-shadow: none;
  background-color: transparent;
  background-image: none;
  background-repeat: no-repeat;
  border-color: unset;
}

.btn-primary.focus,
.btn-primary:focus {
  color: #fff;
  background-color: #1e1e1e;
  border-color: #1e1e1e;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
  background-color: #1e1e1e;
  /* background-position: 0 -15px; */
}

.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open > .dropdown-toggle.btn-primary.focus,
.open > .dropdown-toggle.btn-primary:focus,
.open > .dropdown-toggle.btn-primary:hover {
  color: #fff;
  background-color: #1e1e1e;
  border-color: #1e1e1e;
}

.btn-warning {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #faa732;
  background-image: linear-gradient(to bottom, #fbb450, #f89406);
  background-repeat: repeat-x;
  border-color: #f89406 #f89406 #ad6704;
}

.btn-warning:hover,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] {
  box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}

.btn-danger {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #da4f49;
  background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
  background-repeat: repeat-x;
  border-color: #bd362f #bd362f #802420;
}

.btn-danger:hover,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] {
  box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}

.btn-success {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #5bb75b;
  background-image: linear-gradient(to bottom, #62c462, #51a351);
  background-repeat: repeat-x;
  border-color: #51a351 #51a351 #387038;
}

.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
  box-shadow: inset 0 1000px 0 rgba(0, 0, 0, 0.1);
}

.btn-info {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #df5c39;
  background-image: linear-gradient(to bottom, #e06342, #dc512c);
  background-repeat: repeat-x;
  border-color: #dc512c #dc512c #a2371a;
}

.btn-info:hover,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
  background-image: none;
  background-color: #df5c39;
}

.btn-link {
  border-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  color: #23a1d1;
  border-radius: 0;
}

.btn-link,
.btn-link:active,
.btn-link[disabled] {
  background-color: rgba(0, 0, 0, 0);
  background-image: none;
  box-shadow: none;
}

.btn-inverse {
  color: #ffffff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  background-color: #363636;
  background-image: linear-gradient(to bottom, #444444, #222222);
  background-repeat: repeat-x;
  border-color: #222222 #222222 #000000;
}

.btn-inverse:hover,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
  background-color: #222222;
  background-image: linear-gradient(to bottom, #333333, #111111);
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: none;
  outline-offset: 0;
}

.button-group-buy button {
  color: #222b45;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  display: flex;
  align-items: center;
  padding: 0;
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

.dropdown {
  position: relative;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}

.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}

.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}

.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-color: #337ab7;
  outline: 0;
}

.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #777;
}

.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}

.open > .dropdown-menu {
  display: block;
}

.open > a {
  outline: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777;
  white-space: nowrap;
}

.dropdown-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 990;
}

.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}

.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  content: '';
  border-top: 0;
  border-bottom: 4px dashed;
  border-bottom: 4px solid \9;
}

.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }

  .navbar-right .dropdown-menu-left {
    right: auto;
    left: 0;
  }
}

.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}

.input-group[class*='col-'] {
  float: none;
  padding-right: 0;
  padding-left: 0;
}

.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}

.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}

.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555;
  text-align: center;
  background-color: #eee;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.nav {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav > li {
  position: relative;
  display: block;
}

.nav > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
}

.nav > li > a:hover,
.nav > li > a:focus {
  text-decoration: none;
  background-color: #eee;
}

.nav > li.disabled > a {
  color: #777;
}

.nav > li.disabled > a:hover,
.nav > li.disabled > a:focus {
  color: #777;
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
}

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
  background-color: #eee;
  border-color: #337ab7;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

@media (min-width: 768px) {
  .navbar {
    border-radius: 4px;
  }
}

@media (min-width: 768px) {
  .navbar-header {
    float: left;
  }
}

.navbar-collapse {
  padding-right: 15px;
  padding-left: 15px;
  overflow-x: visible;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid transparent;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.navbar-collapse.in {
  overflow-y: auto;
}

.navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px;
  margin-top: 8px;
  margin-right: 15px;
  margin-bottom: 8px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
}

.navbar-toggle:focus {
  outline: 0;
}

.navbar-toggle .icon-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 1px;
}

.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px;
}

@media (min-width: 768px) {
  .navbar-toggle {
    display: none;
  }
}

.navbar-nav {
  margin: 7.5px -15px;
}

.navbar-nav > li > a {
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 20px;
}

@media (max-width: 767px) {
  .navbar-nav .open .dropdown-menu {
    position: static;
    float: none;
    width: auto;
    margin-top: 0;
    background-color: transparent;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .navbar-nav .open .dropdown-menu > li > a,
  .navbar-nav .open .dropdown-menu .dropdown-header {
    padding: 5px 15px 5px 25px;
  }

  .navbar-nav .open .dropdown-menu > li > a {
    line-height: 20px;
  }

  .navbar-nav .open .dropdown-menu > li > a:hover,
  .navbar-nav .open .dropdown-menu > li > a:focus {
    background-image: none;
  }
}

@media (min-width: 768px) {
  .navbar-nav {
    float: left;
    margin: 0;
  }

  .navbar-nav > li {
    float: left;
  }

  .navbar-nav > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.navbar-form {
  padding: 10px 15px;
  margin-top: 8px;
  margin-right: -15px;
  margin-bottom: 8px;
  margin-left: -15px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  -webkit-box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.1);
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert h4 {
  margin-top: 0;
  color: inherit;
}

.alert .alert-link {
  font-weight: bold;
}

.alert > p,
.alert > ul {
  margin-bottom: 0;
}

.alert > p + p {
  margin-top: 5px;
}

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.alert-success hr {
  border-top-color: #c9e2b3;
}

.alert-success .alert-link {
  color: #2b542c;
}

.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}

.alert-info hr {
  border-top-color: #a6e1ec;
}

.alert-info .alert-link {
  color: #245269;
}

.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.alert-warning hr {
  border-top-color: #f7e1b5;
}

.alert-warning .alert-link {
  color: #66512c;
}

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.alert-danger hr {
  border-top-color: #e4b9c0;
}

.alert-danger .alert-link {
  color: #843534;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-group {
  padding-left: 0;
  margin-bottom: 20px;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}

.list-group-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}

.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
  padding: 15px;
}

.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}

.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}

.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: inherit;
}

.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}

.panel > .table-responsive {
  margin-bottom: 0;
  border: 0;
}

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: 0.2;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: 0.5;
}

button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.alert.alert-success {
  position: fixed;
  z-index: 9;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 350px;
  top: 40%;
  transform: translateY(-50%);
  padding: 20px;
  padding-top: 30px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.alert.alert-success svg {
  width: 100%;
  margin-bottom: 10px;
}

.alert_buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
}

.alert_buttons button {
  color: #344054;
  width: 100%;
  max-width: 170px;
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  border: 1px solid #d0d5dd;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  background-color: transparent;
  border-radius: 8px;
}

.alert_buttons a {
  color: #fff !important;
  margin-left: 10px;
  width: 100%;
  max-width: 170px;
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  border: 1px solid #ed1c24;
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  background-color: #ed1c24;
  border-radius: 8px;
  user-select: none;
}

.alert-success {
  padding: 24px;
  border-radius: 0;
  color: #101828;
  background-color: #fff;
  border-color: transparent;
  text-align: left;
  line-height: 2;
  box-shadow:
    0px 8px 8px -4px rgba(16, 24, 40, 0.03),
    0px 20px 24px -4px rgba(16, 24, 40, 0.08);
}

.alert.alert-success a {
  color: #ed1c24;
}

.alert.alert-success.alert__product__added {
  z-index: 1090;
}

.alert.alert-success.alert__product__added > svg {
  width: auto;
  margin-bottom: 20px;
}
.alert__heading {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 5px;
}

.alert.alert-success.alert__product__added .alert__product > a {
  color: #667085;
  line-height: 20px;
}

.alert__buttons > a {
  font-size: 14px;
  line-height: 1;
  background-color: #1e1e1e !important;
  border: 1px solid #1e1e1e;
  height: 44px;
  color: #fff !important;
  display: flex;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  width: calc(50% - 5px);
}

.alert__buttons > button {
  position: unset !important;
  opacity: 1 !important;
  font-size: 14px;
  position: unset;
  line-height: 1;
  background-color: #fff !important;
  border: 1px solid #d0d5dd;
  height: 44px;
  color: #000 !important;
  display: flex;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  width: calc(50% - 5px);
}

.alert__buttons * {
  float: none;
}

.alert__buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

/* Product Added Modal = START */
.product-added-overlay {
  position: fixed;
  inset: 0;
  z-index: 1080;
  background-color: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0s linear 0.3s;
}

.product-added-overlay.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.3s ease,
    visibility 0s linear 0s;
}

body.product-added-modal-open {
  overflow: hidden;
}

.alert.alert-success.alert__product__added.product-added-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  z-index: 1090;
  width: calc(100% - 30px);
  max-width: 350px;
  margin: 0;
  padding: 30px 20px 20px;
  color: #101828;
  background-color: #fff;
  border: 0;
  border-radius: 0;
  text-align: left;
  box-shadow:
    0 8px 8px -4px rgba(16, 24, 40, 0.03),
    0 20px 24px -4px rgba(16, 24, 40, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -46%) scale(0.96);
  transition:
    opacity 0.3s ease,
    visibility 0s linear 0.3s,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.alert.alert-success.alert__product__added.product-added-modal.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  transition:
    opacity 0.3s ease,
    visibility 0s linear 0s,
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.alert.alert-success.alert__product__added.product-added-modal.is-closing {
  opacity: 0;
  visibility: visible;
  transform: translate(-50%, -46%) scale(0.96);
}

.alert.alert-success.alert__product__added.product-added-modal > svg {
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
}

.alert__heading {
  margin-bottom: 8px;
  color: #101828;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
}

.alert__product {
  color: #667085;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.45;
}

.alert__product a {
  color: #667085;
}

.alert__buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 30px;
}

.alert__buttons > button,
.alert__buttons > a {
  width: 50%;
  height: 44px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  border-radius: 0;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.alert__buttons > button {
  color: #101828;
  background-color: #fff;
  border: 1px solid #d0d5dd;
}

.alert__buttons > button:hover {
  color: #fff;
  background-color: #1e1e1e;
  border-color: #1e1e1e;
}

.alert__buttons > a {
  color: #fff;
  background-color: #1e1e1e;
  border: 1px solid #1e1e1e;
}

.alert__buttons > a:hover {
  color: #1e1e1e !important;
  background-color: #fff !important;
  border-color: #1e1e1e;
}

@media (max-width: 420px) {
  .alert.alert-success.alert__product__added.product-added-modal {
    max-width: none;
    padding: 28px 20px 20px;
  }

  .alert__buttons {
    margin-top: 24px;
  }
}
/* Product Added Modal = END */

.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  -o-transform: translate(0, -25%);
  transform: translate(0, -25%);
}

.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: 0.5;
}

.modal-header {
  min-height: 16.42857143px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}

.modal-header .close {
  margin-top: -2px;
}

.modal-title {
  margin: 0;
  line-height: 1.42857143;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}

.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}

.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}

.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }

  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  .modal-sm {
    width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}

.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.hide {
  display: none;
}

.show {
  display: block;
}

.invisible {
  visibility: hidden;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.hidden {
  display: none;
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: var(--font-family);
  font-size: 12px;
  font-style: normal;
  font-weight: normal;
  line-height: 1.42857143;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  word-wrap: normal;
  white-space: normal;
  filter: alpha(opacity=0);
  opacity: 0;

  line-break: auto;
}

.tooltip.in {
  filter: alpha(opacity=90);
  opacity: 0.9;
}

.tooltip.top {
  padding: 5px 0;
  margin-top: -3px;
}

.tooltip.right {
  padding: 0 5px;
  margin-left: 3px;
}

.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px;
}

.tooltip.left {
  padding: 0 5px;
  margin-left: -3px;
}

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 4px;
}

.tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}

.tooltip.top .tooltip-arrow {
  bottom: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-left .tooltip-arrow {
  right: 5px;
  bottom: 0;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.top-right .tooltip-arrow {
  bottom: 0;
  left: 5px;
  margin-bottom: -5px;
  border-width: 5px 5px 0;
  border-top-color: #000;
}

.tooltip.right .tooltip-arrow {
  top: 50%;
  left: 0;
  margin-top: -5px;
  border-width: 5px 5px 5px 0;
  border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
  top: 50%;
  right: 0;
  margin-top: -5px;
  border-width: 5px 0 5px 5px;
  border-left-color: #000;
}

.tooltip.bottom .tooltip-arrow {
  top: 0;
  left: 50%;
  margin-left: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-left .tooltip-arrow {
  top: 0;
  right: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}

.tooltip.bottom-right .tooltip-arrow {
  top: 0;
  left: 5px;
  margin-top: -5px;
  border-width: 0 5px 5px;
  border-bottom-color: #000;
}
/* Bootstrap styles = END */

/* Smooth Bootstrap modals */
.modal.fade {
  opacity: 0;
  transition: opacity 0.28s ease;
}

.modal.fade.in {
  opacity: 1;
}

.modal.fade .modal-content {
  opacity: 0;
  /* transform: translateY(18px) scale(0.96); */
  transition:
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.modal.fade.in .modal-content {
  opacity: 1;
  /* transform: translateY(0) scale(1); */
}

.modal.fade.modal-closing .modal-content {
  opacity: 0;
  transform: translateY(12px) scale(0.96);
}

.modal-backdrop.fade {
  opacity: 0;
  transition: opacity 0.28s ease;
}

.modal-backdrop.fade.in {
  opacity: 0.45;
}

/* Modal Base = START */
.modal {
  font-family: var(--font-family);
}

.modal.fade {
  opacity: 0;
  transition: opacity 0.28s ease;
}

.modal.fade.in {
  opacity: 1;
}

.modal-backdrop.fade {
  opacity: 0;
  transition: opacity 0.28s ease;
}

.modal-backdrop.fade.in {
  opacity: 0.45;
}

#modal-login .modal-dialog,
#modal-registration .modal-dialog,
#modal-forgotten .modal-dialog {
  width: calc(100% - 30px);
  max-width: 400px;
  margin: 0 auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#modal-login .modal-content,
#modal-registration .modal-content,
#modal-forgotten .modal-content {
  border: 0;
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  background-color: #fff;
}

#modal-login.fade .modal-content,
#modal-registration.fade .modal-content,
#modal-forgotten.fade .modal-content {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

#modal-login.fade.in .modal-content,
#modal-registration.fade.in .modal-content,
#modal-forgotten.fade.in .modal-content {
  opacity: 1;
  transform: translateY(0);
}

#modal-login.fade.modal-closing .modal-content,
#modal-registration.fade.modal-closing .modal-content,
#modal-forgotten.fade.modal-closing .modal-content {
  opacity: 0;
  transform: translateY(10px);
}

#modal-login .modal-header,
#modal-registration .modal-header,
#modal-forgotten .modal-header {
  position: relative;
  min-height: 0;
  padding: 0;
  border: 0;
}

#modal-login .modal-body,
#modal-registration .modal-body,
#modal-forgotten .modal-body {
  padding: 34px 30px 30px;
  background-color: #fff;
}

#modal-login .modal-header .close,
#modal-registration .modal-header .close,
#modal-forgotten .modal-header .close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  width: 34px;
  height: 34px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  float: none;
  opacity: 1;
  border-radius: 50%;
  background-color: #f6f6f6;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

#modal-login .modal-header .close:hover,
#modal-registration .modal-header .close:hover,
#modal-forgotten .modal-header .close:hover {
  background-color: #ededed;
  transform: rotate(90deg);
}

#modal-login .modal-header .close svg,
#modal-registration .modal-header .close svg,
#modal-forgotten .modal-header .close svg {
  width: 13px;
  height: 13px;
  display: block;
}
/* Modal Base = END */

/* Modal Forms = START */
#modal-login form,
#modal-registration form,
#modal-forgotten form {
  margin-bottom: 0;
}

#modal-login fieldset,
#modal-registration fieldset,
#modal-forgotten fieldset {
  padding: 0;
}

#modal-login legend,
#modal-registration legend,
#modal-forgotten legend {
  margin: 0 0 14px;
  padding: 0;
  border: 0;
}

#modal-login .title-modal,
#modal-registration .title-modal,
#modal-forgotten .forgotten__title {
  margin: 0 0 18px;
  max-width: 320px;
  color: #0d0802;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
}

#modal-login .form-group,
#modal-registration .form-group,
#modal-forgotten .form-group {
  position: relative;
  margin: 0 0 14px;
}

#modal-login .form-group + .form-group,
#modal-registration .form-group + .form-group,
#modal-forgotten .form-group + .form-group {
  margin-top: 0;
}

#modal-login .control-label,
#modal-registration .control-label,
#modal-forgotten label {
  margin: 0 0 7px;
  color: #3a3227;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.3;
}

#modal-login #form-login > .form-group > .control-label,
#modal-registration #simpleregister .simpleregister-block-content label,
#modal-forgotten .forgotten__label.hidden {
  display: none;
}

#modal-login .form-control,
#modal-registration .form-control,
#modal-forgotten .form-control,
#modal-registration .form-horizontal input,
#modal-registration .form-horizontal select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  color: #0d0802;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 44px;
  border: 1px solid #ececec;
  border-radius: 8px;
  background-color: #fafafa;
  box-shadow: none;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

#modal-login .form-control:focus,
#modal-registration .form-control:focus,
#modal-forgotten .form-control:focus,
#modal-registration .form-horizontal input:focus,
#modal-registration .form-horizontal select:focus {
  border-color: #1e1e1e;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(30, 30, 30, 0.06);
}

#modal-login .form-control::placeholder,
#modal-registration .form-control::placeholder,
#modal-forgotten .form-control::placeholder {
  color: #9a9a9a;
}

#modal-login .has-error .form-control,
#modal-registration .has-error .form-control,
#modal-forgotten .has-error .form-control,
#modal-login .error_style,
#modal-registration .error_style,
#modal-forgotten .error_style {
  border-color: #ef4444;
  background-color: #fffafa;
}

#modal-login .text-danger,
#modal-registration .text-danger,
#modal-forgotten .text-danger {
  margin-top: 5px;
  color: #ef4444;
  font-family: var(--font-family);
  font-size: 12px;
  line-height: 1.3;
}

#modal-login .alert.alert-danger,
#modal-registration .alert.alert-danger,
#modal-forgotten .alert.alert-danger {
  margin: 0 0 15px;
  padding: 11px 13px;
  display: block;
  color: #9a3412;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  border: 1px solid #fed7aa;
  border-radius: 8px;
  background-color: #fff7ed;
}
/* Modal Forms = END */

/* Modal Buttons = START */
#modal-login .btn,
#modal-registration .button.btn,
#modal-registration .button_oc.btn,
#modal-forgotten .btn {
  width: 100%;
  height: 44px;
  min-height: 44px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
  background-color: #1e1e1e;
  background-image: none;
  box-shadow: none;
  text-shadow: none;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

#modal-login .btn:hover,
#modal-registration .button.btn:hover,
#modal-registration .button_oc.btn:hover,
#modal-forgotten .btn:hover {
  color: #1e1e1e;
  background-color: #fff;
  border-color: #1e1e1e;
}

#modal-registration .simpleregister-button-block,
#modal-registration .simpleregister-button-block.buttons,
#modal-forgotten .buttons {
  margin: 0;
  padding: 0;
}

#modal-registration .simpleregister-button,
#modal-forgotten .pull-right {
  width: 100%;
  float: none;
}
/* Modal Buttons = END */

/* Modal Login = START */
.login_wrapper {
  padding: 0;
}

.login__wrapper {
  position: relative;
}

.user-session {
  margin: 4px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.user-session .form-group {
  margin: 0 !important;
}

.user-session input[type='checkbox'] {
  display: none;
}

.input-remember {
  position: relative;
  margin: 0;
  padding-left: 25px;
  color: #3a3227;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  cursor: pointer;
}

.input-remember::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background-color: #fff;
  transform: translateY(-50%);
}

.input-remember::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 3px;
  color: #1e1e1e;
  font-size: 12px;
  line-height: 1;
  opacity: 0;
  transform: translateY(-50%);
}

.user-session input[type='checkbox']:checked + .input-remember::after {
  opacity: 1;
}

.forgotten-link {
  color: #1e1e1e;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.25s ease;
}

.forgotten-link:hover {
  color: #52555a;
}
/* Modal Login = END */

/* Modal Registration = START */
#modal-registration .modal-dialog {
  max-width: 420px;
}

.wrapper-box {
  width: 100%;
  display: flex;
  justify-content: center;
}

.register__wrapper,
.form-register {
  width: 100%;
}

#modal-registration .simple-content.flex-container {
  display: flex;
  justify-content: center;
  background-color: #fff;
}

#modal-registration .simpleregister-block-content {
  margin: 0 0 18px;
  padding: 0;
}

#modal-registration .account-simpleregister .simpleregister-block-content {
  margin-bottom: 18px;
  padding: 0;
}

#agreement_checkbox {
  margin: 0 0 14px;
  display: block;
}

#agreement_checkbox .checkbox {
  margin: 0;
  display: flex;
  align-items: flex-start;
}

#agreement_checkbox .checkbox + .checkbox {
  margin-top: 8px;
}

#agreement_checkbox .checkbox input {
  margin-top: 2px;
}

#agreement_checkbox .checkbox label {
  padding-left: 8px;
  color: #0d0802;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 11px;
  line-height: 1.4;
}

#agreement_checkbox .checkbox a {
  color: #1e1e1e;
  text-decoration: underline;
}

.simpleregister-have-account {
  margin: 18px 0 0;
  color: #64748b;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}

.simpleregister-have-account a {
  display: inline-flex;
  justify-content: center;
  color: #1e1e1e;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.25s ease;
}

.simpleregister-have-account a:hover {
  color: #52555a;
}

#modal-registration .img-register {
  display: none;
}
/* Modal Registration = END */

/* Modal Forgotten = START */
#modal-forgotten .modal-dialog {
  max-width: 370px;
}

.forgotten__inner {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.forgotten__wrapper {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}

#send-forgotten {
  margin-top: 4px;
}
/* Modal Forgotten = END */

/* Modal Password Toggle = START */
.login__wrapper {
  position: relative;
}

#modal-login .login__input,
#modal-registration input[type='password'],
#modal-registration input[type='text']#register_password,
#modal-registration input[type='text']#register_confirm_password {
  padding-right: 46px;
}

.view_pass.login__btn.login__eye-btn {
  position: absolute;
  top: 50%;
  right: 10px;
  z-index: 3;
  width: 28px;
  height: 28px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background-color: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.view_pass.login__btn.login__eye-btn svg {
  width: 20px;
  height: 20px;
  display: block;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

.view_pass.login__btn.login__eye-btn .password-eye-icon {
  opacity: 1;
  visibility: visible;
}

.view_pass.login__btn.login__eye-btn .password-eye-line {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.2s ease;
}

.view_pass.login__btn.login__eye-btn.is-visible .password-eye-line {
  opacity: 0;
}
/* Modal Password Toggle = END */

/* Modal Responsive = START */
@media (max-width: 550px) {
  #modal-login .modal-dialog,
  #modal-registration .modal-dialog,
  #modal-forgotten .modal-dialog {
    width: calc(100% - 20px);
    max-width: none;
  }

  #modal-login .modal-body,
  #modal-registration .modal-body,
  #modal-forgotten .modal-body {
    padding: 32px 20px 24px;
  }

  #modal-login .title-modal,
  #modal-registration .title-modal,
  #modal-forgotten .forgotten__title {
    font-size: 20px;
  }

  .user-session {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
/* Modal Responsive = END */

/* Modal Registration = START */
#account-register {
  width: 320px;
  margin: 50px auto 50px;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
}

#account-register h1 {
  text-align: center;
  margin-top: 0;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 22px;
  max-width: 320px;
  color: #0d0802;
  margin-top: 0;
  margin-bottom: 10px;
}

#account-register fieldset {
  padding: 0;
}

#account-register .col-sm-2 {
  padding: 0;
}

#account-register .col-sm-10 {
  padding: 0;
  margin-left: 10px;
}

#account-register .form-group.required input {
  border: 1px solid #f8f8f8 !important;
  height: 35px;
  border-radius: 3px;
  box-shadow: none;
  font-family: var(--font-family);
  font-size: 16px;
}

#account-register .pull-right {
  width: 100%;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family);
  margin-bottom: 15px;
  text-align: center;
}

#account-register .pull-right input {
  margin-left: 10px;
}

#account-register .btn_submit {
  width: 100%;
  height: 40px;
  background-color: #ff4900;
  border-radius: 3px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-family);
  padding: 0;
  margin-top: 10px;
  border: 1px solid #0f0f0f;
}

#modal-registration .modal-dialog {
  width: calc(100% - 30px);
  max-width: 400px;
}

#modal-registration .modal-body {
  padding: 52px 30px 30px;
}

#modal-registration .register,
#modal-registration .wrapper-box,
#modal-registration .register__wrapper,
#modal-registration .simple-content,
#modal-registration .form-register,
#modal-registration #simplepage_form,
#modal-registration #simpleregister,
#modal-registration .simpleregister-block-content,
#modal-registration fieldset.form-horizontal {
  width: 100%;
}

#modal-registration fieldset.form-horizontal {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  margin: 0;
}

#modal-registration .form-horizontal .form-group {
  width: 100%;
  margin: 0 0 4px;
  display: block;
}

#modal-registration .form-horizontal .form-group > .col-sm-10 {
  width: 100%;
  float: none;
  padding: 0;
  margin: 0;
  position: relative;
}

#modal-registration .form-horizontal .control-label {
  display: none;
}

#modal-registration .form-control,
#modal-registration .form-horizontal input,
#modal-registration .form-horizontal select {
  width: 100%;
  height: 44px;
  padding: 0 15px;
  color: #1e1e1e;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 44px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background-color: #f9f9f9;
  box-shadow: none;
}

#modal-registration .form-control:focus,
#modal-registration .form-horizontal input:focus,
#modal-registration .form-horizontal select:focus {
  border-color: #1e1e1e;
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(30, 30, 30, 0.06);
}

#modal-registration .form-control::placeholder {
  color: #a0a0a0;
}

#modal-registration .has-error .form-control,
#modal-registration .form-control[data-valid='false'] {
  border-color: #ff4d4f;
  background-color: #fffafa;
}

#modal-registration .simplecheckout-rule-group {
  margin-top: 3px;
}

#modal-registration .simplecheckout-error-text {
  color: #ff3030;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 10px;
  line-height: 1.3;
}

#modal-registration .simplecheckout-tooltip {
  display: none;
}

#modal-registration .row-register_password .form-control,
#modal-registration .row-register_confirm_password .form-control {
  padding-right: 46px;
}

#modal-registration .view_pass.login__btn.login__eye-btn {
  top: 22px;
  right: 10px;
  transform: translateY(-50%);
}

#modal-registration .title-modal {
  margin: 0 0 18px;
  color: #0d0802;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
}

#modal-registration .simpleregister-block-content {
  margin: 0 0 18px;
  padding: 0;
}

#modal-registration .simpleregister-button-block,
#modal-registration .simpleregister-button-block.buttons {
  margin: 0;
  padding: 0;
}

#modal-registration .simpleregister-button {
  width: 100%;
}

#modal-registration #simpleregister_button_confirm {
  width: 100%;
  height: 44px;
  min-height: 44px;
  margin-top: 18px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #1e1e1e;
  border-radius: 8px;
  background-color: #1e1e1e;
  background-image: none;
  box-shadow: none;
  text-shadow: none;
}

#modal-registration #simpleregister_button_confirm:hover {
  color: #1e1e1e;
  background-color: #fff;
}

#modal-registration .simpleregister-have-account {
  margin: 18px 0 0;
  text-align: center;
}

#modal-registration .simpleregister-have-account a {
  color: #1e1e1e;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.4;
  text-decoration: none;
}

#modal-registration .simpleregister-have-account a:hover {
  color: #52555a;
}
/* Modal Registration = END */

/* Modal Registration Checkbox = START */
#modal-registration #agreement_checkbox {
  margin: 18px 0 0;
  display: block;
}

#modal-registration #agreement_checkbox .checkbox {
  margin: 0;
  min-height: 0;
}

#modal-registration #agreement_checkbox .checkbox label {
  position: relative;
  min-height: 16px;
  margin: 0;
  padding: 0 0 0 26px;
  display: block;
  color: #3a3227;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 11px;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

#modal-registration #agreement_checkbox .checkbox input[type='checkbox'] {
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  appearance: none;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background-color: #fff;
  cursor: pointer;
}

#modal-registration #agreement_checkbox .checkbox input[type='checkbox']:checked {
  border-color: #d9d9d9;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='10' viewBox='0 0 12 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 5L4.5 8L10.5 2' stroke='%231E1E1E' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px 9px;
}

#modal-registration #agreement_checkbox .checkbox input[type='checkbox']:focus-visible {
  box-shadow: 0 0 0 3px rgba(30, 30, 30, 0.12);
}

#modal-registration #agreement_checkbox .checkbox a,
#modal-registration #agreement_checkbox .checkbox b {
  display: inline;
  color: #1e1e1e;
  font-family: var(--font-family);
  font-weight: 400;
  line-height: inherit;
}

#modal-registration #agreement_checkbox .checkbox a {
  text-decoration: underline;
  text-underline-position: under;
}

#modal-registration #agreement_checkbox .checkbox a + a::before {
  content: ' ';
}
/* Modal Registration Checkbox = END */

/* Modal Registration Responsive = START */
@media (max-width: 550px) {
  #modal-registration .modal-dialog {
    width: calc(100% - 20px);
    max-width: none;
  }

  #modal-registration .modal-body {
    padding: 50px 30px 28px;
  }

  #modal-registration .title-modal {
    font-size: 22px;
  }
}

@media (max-width: 420px) {
  #modal-registration .modal-body {
    padding-left: 28px;
    padding-right: 28px;
  }
}
/* Modal Registration = END */

/* Search Style = START */
.search .dropdown-menu {
  top: 58px;
  max-width: 100%;
  min-width: 360px;
  max-height: none;
  overflow: auto;
  border-radius: 0;
  box-shadow: none;
  border: none;
  left: 50%;
  transform: translateX(-50%);
  border: 0;
  flex-wrap: wrap;
  box-shadow: 0px 16px 12px 0px rgba(0, 0, 0, 0.03);
}

ul.dropdown-menu .box_search {
  padding: 10px;
  width: 50%;
}

.header__search .box_search li:nth-child(1),
.header__search .box_search li:nth-last-child(1),
.header__search .box_search li:nth-last-child(2) {
  border: none;
}
header .search #search .dropdown-menu {
  border-radius: 5px !important;
  max-height: 60vh;
  width: 390px;
  max-width: none !important;
  border: none;
  right: 0;
  margin-top: 20px;
  transform: translateX(-30px);
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  padding: 9px 25px;
}

.mobile .search #search .dropdown-menu {
  max-height: 40vh;
  overflow: auto;
  z-index: 10;
}

.mobile .search #search .dropdown-menu .box_search {
  width: 100%;
}

#search .dropdown-menu > li > a,
#search .dropdown-menu li.disabled {
  padding: 0 !important;
}

.search #search .dropdown-menu .disabled {
  margin-bottom: 27px;
}

header .search #search .dropdown-menu .disabled:not(:first-child) {
  border-top: 1px solid #f3f3f3;
  padding-top: 10px !important;
  margin-top: 10px;
}

header .search #search .dropdown-menu .title {
  font-family: var(--font-family) !important;
  font-weight: 600 !important;
  font-size: 20px !important;
  color: #000 !important;
  padding: 0 !important;
  border: none !important;
}

header .search #search .dropdown-menu li {
  margin-bottom: 7px;
}

header .search #search .dropdown-menu li.last {
  margin-bottom: 26px;
}

header .search #search .dropdown-menu .category .name {
  margin-bottom: 0;
  padding-bottom: 0;
}

header .search #search .dropdown-menu .name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  color: #3e3e3e;
}

header .search #search .dropdown-menu .product .name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 129%;
  color: #3e3e3e;
  height: 60px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0 !important;
  white-space: wrap;
  width: 100%;
}

header .search #search .dropdown-menu .price-base {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  color: #000;
}

.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
  background-color: #fff !important;
}

.mobile .header__search {
  position: fixed;
  top: 90px;
  left: 0;
  z-index: 999;
  width: 100%;
  visibility: hidden;
  opacity: 0;
}

.mobile .header__search.in {
  animation: slide-down 0.5s;
  visibility: visible;
  opacity: 1;
}

.header__search .dropdown-menu {
  position: absolute;
  z-index: 1000;
  left: unset !important;
  right: 0;
  display: none;
  padding: 25px;
  margin: 2px 0 0;
  font-size: 12px;
  text-align: left;
  list-style: none;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border-top: 1px solid #f2f2f2;
  box-shadow: none;
  border-radius: 15px;
  overflow: hidden auto;
  height: 80vh;
  width: 390px;
}

.mobile .header__search .dropdown-menu {
  transform: translateX(0);
}

.header__search .dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.header__search .dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.header__search .dropdown-menu > li > a {
  display: block;
  padding: 3px 10px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: unset;
  text-decoration: none;
}
.mobile .header__search .dropdown-menu li.more a {
  margin-top: 9px;
  margin-bottom: 17px;
}
.header__search .dropdown-menu li.disabled {
  display: block;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: unset;
  text-decoration: none;
  border-top: 1px solid #f3f3f3;
}
.header__search .dropdown-menu li.inline a {
  border-radius: 5px;
  padding: 5px 5px;
}
.header__search .dropdown-menu li.more a {
  padding: 0;
}
.header__search .dropdown-menu > li > a:hover,
.header__search .dropdown-menu > li > a:focus {
  color: #262626;
  text-decoration: none;
  background-color: #f5f5f5;
  background-image: none;
}
.header__search .dropdown-menu > .active > a {
  color: #fff;
  text-decoration: none;
  background-image: none;
  outline: 0;
}
.header__search .dropdown-menu > .active > a:hover,
.header__search .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  background-image: none;
  outline: 0;
}
.header__search .dropdown-menu > .disabled > a {
  color: #777;
}
.header__search .dropdown-menu > .disabled > a:hover,
.header__search .dropdown-menu > .disabled > a:focus {
  color: #777;
}
.header__search .dropdown-menu > .disabled > a:hover,
.header__search .dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  cursor: not-allowed;
  background-color: transparent;
  background-image: none;
}
.header__search .dropdown-menu .box_search a:hover {
  color: #000;
}
.header__search .dropdown-menu::-webkit-scrollbar-track {
  background-color: transparent;
}
.header__search .dropdown-menu::-webkit-scrollbar {
  width: 4px;
  background-color: white;
}
.header__search .dropdown-menu::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.header__search .dropdown-menu li {
  list-style-image: none !important;
  clear: both;
}

.header__search .dropdown-menu li.inline {
  display: block;
  margin: 0px;
  padding: 0;
  vertical-align: top;
}

.header__search .dropdown-menu li.inline.last {
  margin-bottom: 16px;
}

.header__search .dropdown-menu li.disabled .title {
  width: fit-content;
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
}

.search-suggestion {
  overflow: hidden;
  width: 100%;
  display: flex !important;
  gap: 10px;
  padding-top: 16px;
}

.search-suggestion.product,
.search-suggestion.category {
  padding-top: 0;
}

.search-suggestion.product img {
  width: 100px;
}

.search-suggestion .left,
.search-suggestion .right {
  align-self: center;
  text-align: center;
}

.search-suggestion .left {
  flex-shrink: 0;
}

.search-suggestion .label {
  font-weight: normal;
  color: darkgray;
  padding-left: 0;
  padding-right: 5px;
}
/*
.search-suggestion .more {
  padding: 10px;
  color: #fff;
  background-color: #1e1e1e;
  text-align: center;
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
}
*/
.search-suggestion .more {
  padding: 10px;
  font-family: var(--font-family);
  color: #000;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  text-decoration: underline;
  display: flex;
  align-items: center;
}
.search-suggestion .more svg {
  flex-shrink: 0;
  margin-left: 57px;
}
.search-suggestion .out-stock .value {
  color: #ff2e2e;
  color: white;
  background-color: #ff2e2e;
  width: fit-content;
  padding: 4px 7px;
  border-radius: 3px;
  font-size: 0.8em;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: lowercase;
}

.search-suggestion .in-stock .value {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 10px;
  line-height: 120%;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
  background-color: #70c932;
  width: fit-content;
  padding: 4px 7px;
  border-radius: 3px;
  font-size: 0.8em;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: lowercase;
}

.search-suggestion.category div,
.search-suggestion.manufacturer div {
  overflow: hidden;
  display: flex;
  gap: 15px;
}

.search-suggestion.product .name,
.search-suggestion.category .name,
.search-suggestion.manufacturer .name {
  text-decoration: none;
  width: 100%;
  margin-bottom: 5px;
  color: #1e1e1e;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.search-suggestion.product .name {
  height: max-content;
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Ліміт у 2 рядки */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 36px;
}

.search-suggestion.category {
  align-items: center;
}

.search {
  color: #000;
  font-family: var(--second-family);
  font-weight: 300;
  font-size: 14px;
  line-height: normal;
}

.search a {
  display: block;
  color: #000;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
}

.search a:hover {
  color: #4d4d4d;
}

#search .input-lg {
  height: 40px;
  line-height: 20px;
  padding: 0 10px;
}

#search .btn-lg {
  font-size: 15px;
  line-height: 18px;
  padding: 10px 35px;
  text-shadow: 0 1px 0 #fff;
}

.dropdown-menu li.disabled .search-suggestion .title,
.search-suggestion.product .price {
  font-family: var(--second-family);
}

.dropdown-menu li.disabled .search-suggestion .title {
  border-bottom: 0;
}

.box_search li {
  margin-bottom: 12px;
}

.box_search li:not(.disabled) {
  border-bottom: 1px solid #ededed;
}

.search-suggestion .center {
  margin-left: unset;
  margin-right: unset;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  padding-top: 0;
  padding-bottom: 0;
  height: 100%;
}

.search-suggestion.product .center {
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-menu li.disabled .search-suggestion .title {
  font-weight: 600;
  font-size: 20px;
  font-family: var(--font-family);
}

.search-suggestion.product .name:hover,
.search-suggestion.category .name:hover,
.search-suggestion.manufacturer .name:hover {
  color: #4d4d4d;
}

.search-suggestion.category {
  align-items: center;
  margin-bottom: 5px;
}

.search-suggestion.product .price {
  display: flex;
  /* align-items: end; */
  color: #1e1e1e;
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  letter-spacing: normal;
  white-space: nowrap;
  height: max-content;
}

.search-suggestion.product .price {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  color: #000;
  width: 49%;
  padding-right: 20px;
  float: left;
}

.search-suggestion.product .price span.price-old {
  margin-right: 5px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 167%;
  text-decoration: line-through;
  color: #7a7a7a;
  text-decoration: line-through;
  white-space: nowrap;
}

.search-suggestion.product span.price-new {
  color: #1e1e1e;
  font-weight: 600;
  font-size: 16px;
}

.search-suggestion.product .stock {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  float: left;
  width: 51%;
  height: max-content;
}

.close-mobile-search {
  display: none;
}

.mobile .close-mobile-search {
  display: block;
  height: 24px;
  margin-left: 25px;
  position: absolute;
  right: 24px;
  top: 14px;
  z-index: 11;
}

.search .dropdown-menu {
  top: 58px;
  max-width: 100%;
  min-width: 360px;
  max-height: none;
  overflow: auto;
  border-radius: 0;
  box-shadow: none;
  border: none;
  left: 50%;
  transform: translateX(-50%);
  border: 0;
  flex-wrap: wrap;
  box-shadow: 0px 16px 12px 0px rgba(0, 0, 0, 0.03);
}

ul.dropdown-menu .box_search {
  padding: 10px;
  width: 50%;
}

.header__search .box_search li:nth-child(1),
.header__search .box_search li:nth-last-child(1),
.header__search .box_search li:nth-last-child(2) {
  border: none;
}

.mobile .header__search .dropdown-menu {
  position: fixed;
  overflow-y: auto;
  top: 120px !important;
  left: 0 !important;
  margin: 0;
  padding: 0 10px 10px;
  min-width: auto;
  width: calc(100%);
  height: calc(100vh - 120px);
  padding-bottom: 40vh;
  /* height: calc(100% - 70px); */
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: 0;
  box-shadow: 0;
  touch-action: pan-y;
  inset: 0;
  z-index: 9999;
  -webkit-overflow-scrolling: touch;
}

.mobile .close-mobile-search.active {
  display: block;
}

.mobile .header__search .dropdown-menu {
  flex-direction: column;
}

.mobile ul.dropdown-menu .box_search {
  width: 100%;
}

#search .input-lg {
  height: 40px;
  line-height: 20px;
  padding: 0 10px;
}
#search .btn-lg {
  font-size: 15px;
  line-height: 18px;
  padding: 10px 35px;
  text-shadow: 0 1px 0 #fff;
}
/* Search Style = END */

/* Burger-animation = START */
.svg-icon {
  transition: transform 0.3s ease-in-out;
}

.svg-icon.active {
  transform: rotate(180deg);
}

.svg-icon path {
  transition:
    opacity 0.2s ease-in-out,
    transform 0.3s ease-in-out;
}

.svg-icon path.line {
  opacity: 1;
}

.svg-icon.active path.line {
  opacity: 0;
}

.svg-icon path.cross {
  opacity: 0;
}

.svg-icon.active path.cross {
  opacity: 1;
}
/* Burger-animation = END */

.lock body {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: none;
}

#overlay {
  position: fixed;
  inset: 0;
  z-index: 48;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.3s ease-out,
    visibility 0s linear 0.3s;
}

#overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 0.3s ease-out,
    visibility 0s linear 0s;
}

/* Menu Style = START */
@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes slide-up {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

#menu .nav > li > a {
  padding: 10px 12px;
  color: #1e1e1e;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}
#menu .nav > li:hover > a {
  color: #78c619;
  text-decoration: none;
}
#menu .nav > li > a svg {
  -webkit-transition: transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
}
#menu .nav > li:hover > a svg {
  transform: rotate(-90deg);
}
#menu .nav > li:first-child > a {
  color: #78c619;
  font-weight: 700;
}

@media (min-width: 1400px) {
  .sc-megamenu-container {
    width: 1396px;
  }
}

.sc-megamenu.active {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  overflow: visible;
}

.sc-megamenu .menu-header {
  display: none;
}

.mobile .sc-megamenu .menu-header {
  display: block;
  margin-bottom: 20px;
  padding-top: 35px;
}

.mobile .sc-megamenu .menu-header .menu-logo {
  max-width: 144px;
}

.sc-megamenu.active.lock {
  left: 0;
  z-index: 99;
}

.sc-megamenu-list,
.sc-megamenu-list ul,
.categories_lvl1,
.categories_lvl2,
.categories_lvl3,
.categories_lvl4 {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.sc-megamenu-list li,
.sc-megamenu-list ul li,
.sc-megamenu-list-item {
  list-style: none;
}

.sc-megamenu-list li::marker,
.sc-megamenu-list ul li::marker,
.sc-megamenu-list-item::marker {
  content: '';
}

.sc-megamenu-list {
  padding-top: 10px;
  overflow: auto;
  margin-bottom: 0;
  padding-bottom: 0;
}
.sc-megamenu-list hr {
  margin-top: 10px;
  margin-bottom: 10px;
}
.sc-megamenu-child hr {
  margin-top: 25px;
}

.sidebar-header-bottom {
  display: none;
}

.mobile .sidebar-header-bottom {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  flex: 0 0 auto;
  padding-inline: 30px;
  padding-top: clamp(24px, 3dvh, 150px);
}
.sc-megamenu-child {
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 100%;
  background-color: #fff;
  z-index: 50;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease;
}
.sc-megamenu-child.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.main-title-category {
  padding: 0 10px;
  line-height: 1;
  display: flex;
  align-items: center;
  background-color: #fff;
  margin: 70px 0 30px;
  padding: 0 30px;
}

.prev-catalog {
  width: 100%;
  gap: 10px;
  display: flex;
  justify-content: start;
  align-items: center;
}

.sc-megamenu-child {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  transition: 0.3s ease-in-out;
}

.sc-megamenu-list-item > .sc-megamenu-child.active {
  opacity: 1;
  transition: 0.3s ease-in-out;
  pointer-events: auto;
}

.mobile .sc-megamenu-list-item > .sc-megamenu-child.active {
  left: 0;
  z-index: 4;
}

.sc-megamenu-child-narrow {
  right: auto;
  bottom: 0;
}

.menu-title-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 15px 10px;
  margin-bottom: 30px;
  position: relative;
  z-index: 5;
  background-color: #fff;
  width: 100%;
}

.menu-header .nav_wrapp {
  display: flex;
}

.menu-header .nav_wrapp .account {
  display: none;
}

.mobile .menu-header .nav_wrapp .account {
  width: 50%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6f6f6;
}

.mobile .menu-header .nav_wrapp .social_wrapp {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.menu-title-mobile .language,
.menu-title-mobile .currency {
  margin-left: 20px;
}

.menu-title-mobile .language ul,
.menu-title-mobile .currency ul {
  display: flex;
  align-items: center;
}

.menu-title-mobile .language ul li,
.menu-title-mobile .currency ul li {
  margin-right: 10px;
}

.menu-title-mobile .language-link.activeLanguage,
.menu-title-mobile .currency-select.activeCurrency {
  font-weight: 600;
  pointer-events: none;
}

.menu-title-mobile .currency-select.activeCurrency {
  color: #1e1e1e;
}

.menu-title-mobile .btn-currency {
  display: none;
}

.menu-title-mobile .btn-currency-menu li .currency-select {
  margin-top: 0;
}

.menu-title-mobile .btn-currency-menu {
  position: relative;
  top: 0;
  left: 0;
  transform: translateX(0);
  margin-top: 0;
  padding: 0;
}

.menu-title {
  color: #000;
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
}

#close-mobile-menu,
.menu-title-mobile,
.sc-megamenu hr {
  display: none;
}

.mobile .menu-title-mobile {
  display: flex;
  position: fixed;
  top: 0;
}

.mobile .sc-megamenu > nav.navbar > ul.categories_lvl1 {
  min-height: 0;
}

.categories_lvl1 {
  max-width: 417px;
}
.categories_lvl2 {
  left: 100%;
  margin-left: -1px;
  margin-top: -2px;
  width: 100%;
  height: fit-content;
  width: 400px;
  padding: 30px 0px 20px;
  overflow-y: auto;
}
.categories_lvl3 {
  left: 100%;
  margin-top: -1px;
  margin-left: -1px;
  padding-top: 25px;
  padding-bottom: 41px;
  max-width: 430px;
  width: 100%;
  height: inherit;
}
.categories_lvl4 {
  left: 100%;
  margin-left: -1px;
  padding-top: 25px;
  padding-bottom: 41px;
  max-width: 430px;
  width: 100%;
  height: inherit;
}
.sc-megamenu-list-item.active > .sc-megamenu-child,
.sc-megamenu-list-item:hover > .sc-megamenu-child {
  opacity: 1;
  visibility: visible;
  transform: translateX(0%);
  pointer-events: all;
  border-top: 0;
}

@media (hover: none), (pointer: coarse) {
  .sc-megamenu-list-item:hover > .sc-megamenu-child {
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    pointer-events: none;
  }

  .sc-megamenu-list-item > .sc-megamenu-child.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
  }
}

.sc-megamenu-container {
  position: relative;
  /* width: 1170px; */
  width: auto;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.sc-megamenu {
  height: 570px;
  position: absolute;
  top: calc(100% + 15px);
  border-radius: 30px;
  overflow: hidden !important;
  left: 0px;
  outline-offset: -1px;
  transform: translate3d(-100%, 0, 0);
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
  -webkit-transition:
    opacity 0.3s ease-out,
    transform 0.3s ease-out,
    visibility 0s linear 0.3s;
  -o-transition:
    opacity 0.3s ease-out,
    transform 0.3s ease-out,
    visibility 0s linear 0.3s;
  transition:
    opacity 0.3s ease-out,
    transform 0.3s ease-out,
    visibility 0s linear 0.3s;
  outline-offset: -1px;
  background-color: #ffffff;
  padding: 0 !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.mobile .sc-megamenu {
  position: fixed;
  top: 0;
  padding: 90px 0 50px !important;
  border-radius: 0;
  height: 100%;
  border: none;
    box-shadow: none;
  overflow-y: auto !important;
}

.sc-megamenu.active {
  z-index: 52;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.3s ease-out,
    transform 0.3s ease-out,
    visibility 0s linear 0s;
}
@media (prefers-reduced-motion: reduce) {
  .sc-megamenu {
    transition: none;
  }
}

.sc-megamenu-list {
  background: #fff;
  width: 400px;
  padding: 0;
  margin-top: -1px;
  margin-bottom: 25px;
}

.mobile .sc-megamenu-list {
  height: 100%;
  width: 100vw;
  margin: 0 0 30px !important;
}
/*
.sc-megamenu-list-item {
  margin-bottom: 5px;
}
*/
.sc-megamenu-list-item .menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}

.sc-megamenu-list-item:not(:last-child) {
  margin-bottom: 15px;
}

.sc-megamenu-list-item .menu-row > a {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #0d0e0c;
  width: max-content;
  float: left;
}

.sc-megamenu-list-item .menu-row > a:hover {
  color: #a51511;
}

.sc-megamenu-list-item .menu-row > a picture {
  display: flex;
  flex-shrink: 0;
}

.sc-megamenu-list-item .menu-row > a img {
  width: 50px;
  /* margin-right: 15px; */
}

.sc-megamenu-list-item .menu-row .category_arrow {
  display: flex;
  align-items: center;
  justify-content: end;
  /* width: 50px;
  height: 50px; */
  padding: 15px;
}

.sc-megamenu-list-item > a img {
  margin-right: 22px;
  width: 50px;
}

.sc-megamenu-list-item .menu-row .menu-toggle .plus {
  display: block;
  position: relative;
  height: 16px;
  width: 16px;
}

.sc-megamenu-list-item .menu-row .menu-toggle .plus span {
  position: absolute;
  background-color: #000;
  display: block;
  transition: 0.2s ease-in-out;
}

.sc-megamenu-list-item .menu-row .menu-toggle .plus span.first {
  width: 100%;
  height: 2px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.sc-megamenu-list-item .menu-row .menu-toggle .plus span.second {
  width: 2px;
  height: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.sc-megamenu-list-item .menu-row .menu-toggle.is-open .plus span.second {
  height: 0;
  opacity: 0;
}

.sc-megamenu-list-item .js-collapse {
  padding: 0 105px;
  /* margin-bottom: 40px; */
}

.mobile .sc-megamenu-list-item .js-collapse {
  padding: 0 95px;
}

.sc-megamenu-list-item .js-collapse .link_item a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  color: #727378;
}

.sc-megamenu-child {
  height: calc(75vh + 2px);
  opacity: 0;
  visibility: hidden;
  background: #fff;
  pointer-events: none;
  border: 1px solid #dddddd;
  -webkit-transition:
    opacity 0.3s ease-out 0.05s,
    visibility 0.3s ease-out 0.05s,
    transform 0.2s ease-out 0.05s;
  -o-transition:
    opacity 0.3s ease-out 0.05s,
    visibility 0.3s ease-out 0.05s,
    transform 0.2s ease-out 0.05s;
  transition:
    opacity 0.3s ease-out 0.05s,
    visibility 0.3s ease-out 0.05s,
    transform 0.2s ease-out 0.05s;
  transition:
    opacity 0.3s ease-out 0.05s,
    visibility 0.3s ease-out 0.05s,
    transform 0.2s ease-out 0.05s;
  transform: translateX(100%);
}

.mobile .sc-megamenu-child {
  overflow-y: auto;
  height: 110vh;
  padding-bottom: 20px;
}

.main-title-category {
  display: none;
}

.mobile .main-title-category {
  display: block;
}
/* Menu Style = END */

/* Tabs Style = START */
.product-tabs__nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.product-tabs__tab {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0 0 15px;
  cursor: pointer;
  font: inherit;
  opacity: 0.7;
  position: relative;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 125%;
  color: #000;
  transition: opacity 0.25s ease;
}

.product-tabs__tab.is-active {
  opacity: 1;
  font-weight: 600;
}

.product-tabs__tab.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: currentColor;
}

.product-tabs__panels {
  position: relative;
}

.product-tabs__panel {
  display: none;
}

.product-tabs__panel.is-active {
  display: block;
  animation: fadeInProductTabs 0.35s ease;
}

@keyframes fadeInProductTabs {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Tabs Style = END */

/* Cart Style = START */
#cart {
  cursor: pointer;
}
.title-mini-cart-wrap {
  margin-bottom: 17px;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.title-mini-cart-wrap {
  padding-left: 25px;
  padding-right: 10px;
}

.title-mini-cart {
  color: #0f0f0f;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: normal;
  text-transform: uppercase;
  padding: 0 15px;
}

.mobile .title-mini-cart {
  padding: 0;
}

.list-product-cart {
  overflow: auto;
  max-height: 240px;
}

.mobile .list-product-cart {
  height: calc(100% - 150px);
  max-height: unset;
}

.container-cart ul {
  list-style-type: none;
  padding: 0;
}
.cart-totals {
  padding: 0 30px;
}

.cart-totals {
  padding: 0 25px;
}

.item-product-cart,
.information-product-cart,
.top-product-cart,
.bottom-product-cart {
  display: flex;
}
.image-product-cart {
  margin-right: 28px;
  flex-shrink: 0;
}
.image-product-cart img {
  width: 82px;
}
.information-product-cart {
  width: 100%;
  height: 100%;
  flex-direction: column;
}
.top-product-cart {
  margin-bottom: 11px;
  justify-content: space-between;
  align-items: center;
}
.delete-product {
  padding: 2px 0 2px 10px;
}
.delete-product .btn {
  padding: 0;
}
.bottom-product-cart {
  justify-content: space-between;
  align-items: center;
}
.name-product a {
  color: #1e1e1e;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.29;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.item-totals.total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  margin-top: 15px;
}

.item-totals.total .name-total strong {
  font-family: var(--font-family);
  font: 400;
}

.item-totals.total .value-total {
  font-family: var(--font-family);
}

.name-product-options {
  margin-top: 11px;
  margin-bottom: 11px;
}
.name-product-option {
  display: flex;
  align-items: center;
}
.name-product-option-name,
.name-product-option-value {
  color: #000;
  font-family: var(--font-family);
  font-size: 10px;
  line-height: 1;
}
.name-product-option-value {
  margin-left: 5px;
  font-weight: 700;
}
.total-product {
  min-width: 65px;
  color: #1e1e1e;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  white-space: nowrap;
}
.group-cart-button {
  display: flex;
  flex-direction: column;
  padding: 0 30px;
}

.group-cart-button {
  padding: 0 25px;
}

.qty-spinedit {
  display: flex;
  align-items: center;
}

.quantity-product .quantity {
  width: 35px;
  border: none;
  text-align: center;
  background: #fff;
  font-family: var(--font-family);
  font-weight: 700;
  text-align: center;
  color: #c5cee0;
  font-size: 14px;
  line-height: 1;
}
a.btn-checkout {
  color: #fff;
  background: #3a3227;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin-bottom: 22px; */
  text-align: center;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 5px;
}
button.btn-exit {
  padding: 10px 18px 10px;
  color: #222b45;
  font-size: 16px;
  background: #fff;
  border: 0;
  text-decoration: none;
}
.item-product-cart {
  display: flex;
  padding: 0 30px 9px 30px;
}

.mobile .item-product-cart {
  padding: 0 25px 9px 25px;
}
/* Cart Style = END */

/* Collapse Style = START */
.menu-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.menu-toggle {
  background: transparent;
  border: 0;
  padding: 6px;
  line-height: 0;
  cursor: pointer;
}

.js-collapse {
  overflow: hidden;
  transition: height 0.25s ease;
}
/* Collapse Style = END */

.stickers_image.stickers_image_product {
  height: max-content;
}
.stickers_image li {
  margin-right: 10px;
  display: flex;
  height: max-content;
}
.stickers_image_product.stickers_image img {
  height: 25px;
}
.stickers_image.stickers_image_product {
  height: max-content;
}

.mobile .menu_wrapp .head-ico,
.account-wrap .head-ico {
  position: relative;
}

.modal_login {
  text-decoration: none !important;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.modal_login .head-ico {
  margin-right: 10px;
}

.modal_login span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: #3a3227;
}

.modal-header {
  padding: 0;
  min-height: auto !important;
}

.modal-body {
  background-color: #fff;
}

.modal-header .close {
  position: relative;
  z-index: 99999;
  opacity: 1;
  height: 20px;
  width: 20px;
}

.modal-open .modal {
  padding-right: 0 !important;
}

.modal-dialog {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
}

.modal-content {
  border-radius: 5px;
  box-shadow: none;
  border: 0;
  overflow: hidden;
}

.categories_listTitle {
  color: #000;
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
}

button.btn.btn-buy.no-product {
  margin-right: 0;
  margin-bottom: 9px;
  width: 100%;
  color: #000;
  background-color: #fff;
  pointer-events: none;
  cursor: default;
}

.text-danger {
  font-size: 12px;
  line-height: 1.3;
}

/* Mini-product = START */
.product__item--buy-mob {
  display: none;
}

.products__grid--wrapper {
  align-items: stretch;
}

.product__item {
  position: relative;
  border-radius: 5px;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: visible;
}

/* якщо НЕ has-sizes — можна ховати “все зайве” і нормально обрізати картинку */

.product__item--stickers {
  position: absolute;
  top: 25px;
  left: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
  z-index: 1;
}

.mobile .product__item--stickers {
  top: 10px;
  left: 7px;
}

.product__item--stickers .sticker {
  margin-bottom: 4px;
  padding: 4px 5px 3px;
  color: #fff;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: -0.2px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 3px;
}

.sticker_top {
  background-color: #000;
  text-transform: uppercase;
}

.sticker_sale {
  background-color: #ff3030;
  text-transform: lowercase;
}

.sticker_points {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  height: 20px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 10px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #fff;
  background-color: #3a3227;
  width: max-content;
  border-radius: 3px;
  gap: 3px;
}

.sticker_points svg {
  width: 15px;
  height: 15px;
}

.sticker_new {
  background-color: #000;
  text-transform: uppercase;
}

.product__item--info {
  padding: 0;
  background-color: #fff;
}

.product__item--name {
  margin-top: 20px;
  margin-bottom: 10px;
}

.mobile .product__item--name {
  margin: 10px 0;
}

.product__item--name a {
  width: fit-content;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #6e6e6e;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.bottom_info_wrapp .manufacturer {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  color: #000;
  margin-bottom: 25px;
}

.mobile .bottom_info_wrapp .manufacturer {
  margin-bottom: 10px;
}

.bottom_info_wrapp .link_wrapp {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bottom_info_wrapp .link_wrapp .to_product {
  display: flex;
  align-items: center;
  border-radius: 40px;
  padding: 7px 54px;
  height: 40px;
  padding: 0 32px;
  background: #a51511;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 12px;
  color: #fff;
  transition: 0.2s;
}

.bottom_info_wrapp .link_wrapp .to_product:hover {
  background-color: #640F0C;
}

.mobile .bottom_info_wrapp .link_wrapp .to_product {
  height: 30px;
}

.bottom_info_wrapp .link_wrapp .prom_link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 5px;
  border-radius: 40px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 12px;
  color: #1e1e1e;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}

.product__item:hover .bottom_info_wrapp .link_wrapp .prom_link {
  opacity: 1;
  pointer-events: all;
}

.mobile .bottom_info_wrapp .link_wrapp .prom_link {
  display: none;
}


#content .product__item--name a {
  text-decoration: none;
}

.product__item--rating-wrap {
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.product__item--rating {
  margin-right: 8px;
  display: flex;
  align-items: center;
}

.product__item--rating-value {
  color: #52525b;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: normal;
}

.product__item--buttons {
  position: absolute;
  top: 25px;
  right: 16px;
  z-index: 1;
}

.mobile .product__item--buttons {
  top: 10px;
  right: 15px;
}

.product__item--buttons,
.product__item--buttons button {
  border-radius: 50%;
  overflow: hidden;
}

.product__item--buttons button {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
}

.second__image {
  display: none;
}
.change__image:hover .second__image,
.change__image:focus .second__image,
.change__image:active .second__image {
  display: block;
}
.change__image:hover .first__image,
.change__image:focus .first__image,
.change__image:active .first__image {
  display: none;
}

.product__item--buttons button.in__wishlist {
  background-color: #0f0f0f;
}

.urn {
  display: none;
}

.in__wishlist .badgewishlist {
  display: none;
}

.in__wishlist .urn {
  display: block;
  /* width: 18px;
  height: 18px; */
}


.product__item--row {
  margin-bottom: 11px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: lowercase;
  gap: 15px;
}

/* Stock status = START */
.mobile .product__item--status {
  display: block;
}

.product__item--status.stock__green {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 108%;
  color: #3a3227;
}

.mobile .product__item--status.stock__green {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 10px;
  color: #3a3227;
}

.product__item--status.stock__red {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 108%;
  color: #bdbdbd;
}

.mobile .product__item--status.stock__red {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 10px;
  color: #bdbdbd;
}
/* Stock status = END */

.product__item--code {
  color: #97938c;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 108%;
  letter-spacing: -0.24px;
}

.mobile .product__item--code {
  font-size: 10px;
  letter-spacing: -0.2px;
}

.product__item--price-buy {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.product__item--price .price {
  margin-bottom: 0;
  color: #3a3227;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 20px;
  line-height: 108%;
  letter-spacing: -0.4px;
  display: flex;
  flex-direction: column;
  white-space: nowrap;
}

.mobile .product__item--price .price {
  font-size: 16px;
  letter-spacing: -0.32px;
}


/* Псевдоелемент буде малювати одну тінь на всю “висоту” */
.product__item.has-sizes::after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 5px;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 0.2s ease-in-out,
    bottom 0.2s ease-in-out;
}

/* ВАЖЛИВО: на has-sizes прибираємо box-shadow з самої картки */
.product__item.has-sizes:hover {
  box-shadow: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* На hover псевдоелемент розтягуємо вниз і даємо одну тінь */
.product__item.has-sizes:hover::after {
  opacity: 1;
  bottom: calc(-1 * var(--sizes-shadow-h));
  box-shadow:
    0 318px 89px 0 rgba(0, 0, 0, 0),
    0 204px 81px 0 rgba(0, 0, 0, 0.01),
    0 115px 69px 0 rgba(0, 0, 0, 0.05),
    0 51px 51px 0 rgba(0, 0, 0, 0.09),
    0 13px 28px 0 rgba(0, 0, 0, 0.1);
}

.product__item.has-sizes .product__item--sizes {
  position: absolute;
  left: 0;
  right: 0;
  padding: 30px;
  background-color: #fff;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  z-index: 3;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: 0.2s ease-in-out;
}

.product__item.has-sizes:hover .product__item--sizes {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Якщо показуємо розміри — ховаємо desktop-buy */
.product__item.has-sizes:hover .btn-cart-item,
.product__item.has-sizes:hover .btn-cart-item-no-quantity {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.product__item.has-sizes {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-cart-item-sizes {
  margin-top: 11px;
  padding: 15px;
  width: 100%;
  background-color: #3a3227;
  color: #fff;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: -0.12px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  overflow: hidden;
}

.product__item--options {
  transition: opacity 0.25s ease;
}


.hover-active {
  pointer-events: auto;
}

a.product__item--opt.product-groups-product.is-active {
  background: #3a3227;
  color: #fff;
}

.product__item--buy-desk,
.product__item--buy-mob {
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  overflow: hidden;
  transition: 0.2s ease-in-out;
}

.product__item--buy-desk {
  width: 50px;
  height: 50px;
  display: flex;
  background-color: #3a3227;
  transition: 0.3s;
}
/*
.product__item .btn-cart-item {
  transition: 0.3s;
}
*/
/*.product__item.has_opt:hover .btn-cart-item {
  opacity: 0;
  pointer-events: none;
}*/
/*.product__item.has_opt .btn-cart-item{
  opacity: 0;
  pointer-events: none;
}*/
.product__item--options.active {
  opacity: 1 !important;
  pointer-events: auto !important;
}
.mobile .product__item.has_opt:hover .btn-cart-item {
  opacity: 1;
  pointer-events: all;
}

.btn-cart-item-no-quantity .product__item--buy-desk,
.mobile .btn-cart-item-no-quantity .product__item--buy-desk,
.btn-cart-item-no-quantity .product__item--buy-mob,
.mobile .btn-cart-item-no-quantity .product__item--buy-mob,
.btn-cart-item-sizes-no-quantity {
  background-color: #dfdfdf;
  pointer-events: none;
  cursor: default;
}

.mobile .product__item--buy-desk {
  display: none;
}

.mobile .product__item--buy-mob {
  display: flex;
  width: 30px;
  height: 30px;
  background-color: #0f0f0f;
}

.btn-cart-item {
  border-radius: 50%;
  overflow: hidden;
}

/* Панель розмірів */
.product__item--sizes-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #121212;
}

.product__item--sizes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px 7px;
}

.product__item .product__item--options {
  width: 100%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% - 5px);
  left: 0;
  background-color: #fff;
  border-radius: 0px 0px 5px 5px;
  padding: 10px 30px 30px;
  transition: 0.3s;
  box-shadow:
    0 318px 89px 0 rgba(0, 0, 0, 0),
    0 204px 81px 0 rgba(0, 0, 0, 0.01),
    0 115px 69px 0 rgba(0, 0, 0, 0.05),
    0 51px 51px 0 rgba(0, 0, 0, 0.09),
    0 13px 28px 0 rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.product__item .product__item--options::before {
  position: absolute;
  content: '';
  top: -10px;
  left: 0;
  width: 100%;
  height: 15px;
  background-color: #fff;
}

.mobile .product__item .product__item--options {
  padding: 10px 15px 15px;
}

.product__item .product__item--options .group_name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  color: #141414;
  margin-bottom: 10px;
}

/* .product__item:hover .product__item--options,
.product__item.hover-active .product__item--options {
  opacity: 1;
  pointer-events: all;
}

.product__item:hover .product__item--options,
.has_opt_product__item_change_image.hover-active .product__item--options {
  opacity: 1;
  pointer-events: all;
} */

.product__item .product__item--option-values {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 7px 5px;
}

.mobile .product__item .product__item--option-values {
  gap: 5px;
}

.product__item .product__item--option-values .product__item--opt {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  min-width: 58.5px;
  background: #f4f4f4;
  border-radius: 3px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 10px;
  line-height: 130%;
  color: #141414;
  padding-top: 3px;
  transition: 0.3s;
}

.mobile .product__item .product__item--option-values .product__item--opt {
  min-width: 49px;
}

.product__item .product__item--option-values .product__item--opt:hover {
  background: #3a3227;
  color: #fff;
}

.product__item--options .btn-buy-item {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #3a3227;
  border-radius: 3px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: -0.01em;
  text-align: center;
  color: #fff;
  margin-top: 10px;
}

@media (max-width: 835px) {
  .product__item--stickers {
    top: 10px;
    left: 7px;
  }


  .product__item--buttons {
    top: 10px;
    right: 15px;
  }


  .product__item--status {
    display: block;
  }

  .product__item--status.stock__green {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 10px;
    color: #3a3227;
  }

  .product__item--status.stock__red {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 10px;
    color: #bdbdbd;
  }

  .product__item--code {
    font-size: 10px;
    letter-spacing: -0.2px;
  }

  .product__item--price .price {
    font-size: 16px;
    letter-spacing: -0.32px;
  }

  .product__item.has_opt:hover .btn-cart-item {
    opacity: 1;
    pointer-events: all;
  }

  .product__item--buy-desk {
    display: none;
  }

  .product__item--buy-mob {
    display: flex;
    width: 30px;
    height: 30px;
    background-color: #0f0f0f;
  }

  .product__item .product__item--options {
    padding: 10px 15px 15px;
  }

  .product__item .product__item--option-values {
    gap: 5px;
  }

  .product__item .product__item--option-values .product__item--opt {
    min-width: 49px;
  }
}
/* Mini-product = END */

/* Module list_product = START */
.product_slide {
  position: relative;
  padding-top: 25px;
  padding-bottom: 30px;
}

.product_slide--body {
  padding: 0 10px 50px;
  width: 100%;
  overflow: hidden;
}

.mobile .product_slide--body {
  padding: 0 10px 5px;
}

.products__grid--wrapper {
  display: grid;
}

#content .products__grid--wrapper a {
  text-decoration: none;
}

/*
#content .products__grid--wrapper a:hover {
  text-decoration: underline;
}
*/

.product__carousel--pagination {
  margin-top: 0;
  text-align: center;
}

.product__carousel--body {
  padding-bottom: 0px;
}

.block__title-wrap {
  padding-left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.block__title-wrap  .info_wrap {
  display: flex;
  align-items: center;
} 

.block__title-wrap  .info_wrap .header_wrapp {
  padding-right: 110px;
  margin-right: 35px;
  position: relative;
}

.mobile .block__title-wrap  .info_wrap .header_wrapp {
  padding: 0;
}


.block__title-wrap  .info_wrap .header_wrapp::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: #000;
}

.mobile .block__title-wrap  .info_wrap .header_wrapp::after {
  display: none;
}

.block__title-wrap  .info_wrap .header_wrapp .block__title {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 40px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #0d0e0c;
}

.mobile .block__title-wrap  .info_wrap .header_wrapp .block__title {
  font-size: 28px;
}


.block__title-wrap  .info_wrap .header_wrapp .text_product {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #6b6b6b;
  margin-bottom: 5px;
}

.block__title-wrap  .info_wrap .block__extra {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: #6b6b6b;
  max-width: 240px;
}

.mobile .block__title-wrap  .info_wrap .block__extra {
  display: none;
}

h2.block__title,
h2.block__title span {
  font-size: 24px;
}

h2.block__title {
  margin: 0;
}

h2.block__title span {
  margin-right: auto;
  padding-left: 0;
}

.list-product-special h2.block__title {
  font-weight: 700;
}

.block__extra {
  margin-bottom: 8px;
  color: #000;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
}

.page-title-link {
  margin-left: auto;
  margin-right: 20px;
  padding: 17px 15px;
  min-width: 181px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border: 1px solid #000;
  user-select: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.page-title-link:hover,
.page-title-link:hover span {
  color: #ff92f2;
}

.page-title-link:hover {
  border-color: #ff92f2;
}

.page-title-link svg {
  -webkit-transition: transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
}

.page-title-link:hover svg {
  transform: translate(0) rotate(-135deg);
}

.page-title-link span {
  color: #1e1e1e;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  text-transform: lowercase;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.page-title-link svg {
  margin-left: 26px;
  flex-shrink: 0;
}

.mobile.product_slide {
  margin-top: 19px;
}

.mobile.list-product-latest {
  margin-top: 10px;
  margin-bottom: 12px;
}

@media (min-width: 1480px) {
  .products__grid--wrapper {
    grid-template-columns: repeat(5, 1fr);
    grid-row-gap: 10px;
    grid-column-gap: 10px;
  }
}
@media (min-width: 1280px) and (max-width: 1479px) {
  .products__grid--wrapper {
    grid-template-columns: repeat(4, 1fr);
    grid-row-gap: 10px;
    grid-column-gap: 10px;
  }
}

@media (min-width: 992px) and (max-width: 1279px) {
  .products__grid--wrapper {
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 10px;
    grid-column-gap: 10px;
  }
}

@media (max-width: 1023.98px) {
  .product_slide {
    padding-top: 15px;
    padding-bottom: 20px;
  }
}

@media (max-width: 991.98px) {
  .product__carousel--description {
    display: none;
  }

  .products__grid--wrapper {
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 4px;
    grid-column-gap: 4px;
  }
}

@media (max-width: 599.98px) {
  .products__grid--wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Module list_product = END */

/* Swiper = START */
.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none !important;
  cursor: auto !important;
}

.swiper-pagination-bullet {
  background: #E6E6E6 !important;
  width: 10px !important;
  height: 10px !important;
  border: none;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: #A51511 !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  width: unset;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 3px) !important;
}
/* Swiper = END */


/* Product = START */
.list-product {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-row-gap: 10px;
  grid-column-gap: 10px;
}

.product_slide-heading,
.product_slide--buttons {
  position: relative;
}

.product_slide--buttons-wrap,
.product_slide--buttons {
  display: flex;
  align-items: center;
}

.product_slide-heading {
  margin-bottom: 30px;
}
.list-product-sale {
  position: absolute;
  top: -24px;
  left: 37%;
  width: 100%;
  height: 229px;
  user-select: none;
  pointer-events: none;
}

.product_slide--pagination {
  margin-top: 40px;
  text-align: center;
  flex-shrink: 0;
}
.product_slide--prev,
.product_slide--next {
  overflow: hidden;
  cursor: pointer;
}

.product_slide--prev {
  margin-right: 6px;
}

.product__item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  padding: 16px 17px 13px;
  border: 1px solid transparent;
}

.product__item:hover {
  border-color: #E9E9E9;
}

.mobile .product__item {
  border: 1px solid #E9E9E9;
}

.product__item--buttons,
.product__item--buttons button {
  border-radius: 50%;
  overflow: hidden;
}

.product__item--buttons {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 3;
  -webkit-transition: top 0.2s ease 0s;
  -o-transition: top 0.2s ease 0s;
  transition: top 0.2s ease 0s;
}

.product__item--buttons button {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f0f0f0;
}
.second__image {
  display: none;
}
.change__image:hover .second__image,
.change__image:focus .second__image,
.change__image:active .second__image {
  display: block;
}
.change__image:hover .first__image,
.change__image:focus .first__image,
.change__image:active .first__image {
  display: none;
}
.product__item--image > a img {
  margin-left: auto;
  margin-right: auto;
}
.product_slide--wrapper {
  margin-left: -7px;
  margin-right: -7px;
  display: flex;
}
.product_slide--banner.banner__left {
  position: relative;
  margin-right: 7px;
  max-width: 390px;
  background-color: #fff;
}

.list-option-product ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 11px;
}

.list-option-product ul li {
  padding: 5px;
  color: #1e1e1e;
  background-color: #f7f7f7;
  width: 51px;
  height: 51px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.list-option-product ul li:hover {
  color: #fff;
  background-color: #1e1e1e;
}

.product__item--info .price {
  color: #0f0f0f;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.16px;
  white-space: nowrap;
}

#content .product__item--info .price {
  margin: 0;
}

.product__item--buy > button svg {
  flex-shrink: 0;
}

.product__item--buy > button.btn-cart-item-no-quantity {
  justify-content: center;
  /* background-color: #ccc; */
}

.product__item--buy-mob {
  display: none;
}

.mobile .product_slide--wrapper {
  margin-left: -5px;
  margin-right: -5px;
  flex-direction: column;
}

.mobile .list-product {
  grid-template-columns: repeat(2, 1fr);
  grid-row-gap: 4px;
  grid-column-gap: 5px;
}

.mobile .product_slide--banner.banner__left {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.mobile .product_slide-heading {
  margin-bottom: 10px;
}

.mobile h2.block__title {
  margin-right: 19px;
  padding-right: 0;
  font-weight: 700;
  border-right: 0;
}

.mobile .page-title-link {
  margin-right: auto;
  padding: 0 20px 0 0;
  min-width: auto;
  border: 0;
  text-decoration: underline;
}

.mobile .product_slide--buttons {
  margin-left: auto;
  margin-right: 0;
}

.mobile .product_slide--buttons button {
  width: 31px;
  height: 31px;
}

.mobile .product_slide--buttons button svg {
  width: 31px;
  height: 31px;
}

.mobile .product__item--buttons button svg {
  width: 16px;
}

.mobile.list-product-featured h2.block__title {
  font-weight: 500;
}

.mobile.list-product-featured h2.block__title span {
  font-weight: 700;
}

@media (max-width: 1439.98px) {
  .list-option-product ul li {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }
}

@media (max-width: 1199.98px) {
  .category__subcategories--checkbox {
    margin-bottom: 10px;
  }

  .top-action-category {
    margin-top: 20px;
    margin-bottom: 20px;
    flex-direction: column;
    align-items: baseline;
  }
}

@media (max-width: 991.98px) {
  .list-option-product ul {
    gap: 5px;
  }

  .list-option-product ul li {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .product__item--price-buy {
    grid-template-columns: 1fr auto;
  }
}

@media (max-width: 1550px) {
  .sc-megamenu {
    height: calc(100vh - 148px);
  }
}
/* Product = END */
