::-webkit-scrollbar {
  width: 6px;
  height: 2px;
}
::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #d3d0ca;
  border-radius: 20px;
}
:focus-visible {
  outline: 0;
}
.search ul::-webkit-scrollbar {
  width: 0;
}
.sc-megamenu-list::-webkit-scrollbar,
.sc-megamenu-list ul::-webkit-scrollbar {
  width: 8px;
}
.breadcrumb::-webkit-scrollbar {
  height: 2px;
}
.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: #222;
  background-color: #fff;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 0.8vw;
  line-height: 1vw;
  overflow-x: hidden;
}

.wrapper {
  width: 100vw;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.container {
  padding-left: 1.04166vw !important;
  padding-right: 1.04166vw !important;
  width: 100% !important;
}

@media (max-width: 1023.98px) {
  body {
    font-size: 1.5vw;
    line-height: 1.7vw;
  }

  .container {
    padding-left: 2vw !important;
    padding-right: 2vw !important;
  }
}

@media (max-width: 767.98px) {
  body {
    font-size: 3.6vw;
    line-height: 5.1vw;
  }

  .container {
    padding-left: 2.564vw !important;
    padding-right: 2.564vw !important;
  }
}

.container-fluid {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #242424;
  font-weight: inherit;
  font-size: inherit;
}
/* default font size */
.fa {
  font-size: 14px;
}
/* Override the bootstrap defaults */
h1 {
  font-size: 48px;
}
h2 {
  font-size: 27px;
}
h3 {
  font-size: 21px;
}
h4 {
  font-size: 18px;
}
h5 {
  font-size: 12px;
}
h6 {
  font-size: 10.2px;
}
@media (max-width: 991.98px) {
  h1 {
    font-size: 32px;
  }
}
img {
  height: auto;
  max-width: 100%;
  display: block;
  border: none;
}
/*
ul,
table,
fieldset,
hr {
  margin: 0;
}
*/
hr {
  border-color: #f2f2f2;
}
ul,
ol,
address {
  margin-bottom: 0;
}
#content ul,
#content ol {
  margin-block-start: 1em;
  margin-block-end: 1em;
  padding-inline-start: 40px;
}
#content ul li:not(:last-child),
#content ol li:not(:last-child) {
  margin-bottom: 10px;
}
/*
ul li {
  list-style: none;
}
ul {
  padding-left: 0;
}
*/
.navbar-nav>li>.dropdown-menu li a.btn {
  margin-top: 50px;
  background-color: #222;
  font-family: var(--main-font);
  font-size: .83vw;
  font-weight: 800;
  text-transform: uppercase;
  line-height: .9375vw;
  letter-spacing: -.02em;
  fill: #fff;
  color: #fff;
  border-style: solid;
  border-width: 1px;
  border-color: #222;
  border-radius: 0px 0px 0px 0px;
  padding: .625vw 2.5vw;
}
.navbar-nav>li>.dropdown-menu li a.btn:hover {
  background-color: #fff;
  border-color: #222;
  color: #222;
  text-decoration: none;
}
.navbar {
  border: 0;
}
.navbar-menu-top {
  margin-bottom: 0;
  /* width: 50%; */
  height: 100%;
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar-menu-top hr {
  display: none;
}
.nav.navbar-nav {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav.navbar-nav > li {
  height: 100%;
  display: flex;
  align-items: center;
}
.nav.navbar-nav > li:not(:last-child) {
  margin-right: 2.2vw;
}
.mobile .nav.navbar-nav {
  display: block;
}
.dropdown-menu {
  display: block !important;
}
.navbar-nav > li {
  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 {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100vw;
  min-height: 230px;
  padding: 25px 30px;
  background: #fff;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
  z-index: 1111;
}
.navbar-nav>li>.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
}
.navbar-nav>li>.dropdown-menu li {
  padding-top: 3px;
  padding-bottom: 3px;
}
.navbar-nav>li>.dropdown-menu li a {
  color: rgba(0, 0, 0, .8);
  font-size: .833vw;
  font-weight: 600;
  line-height: .93755vw;
  letter-spacing: -.01em;
}
.navbar-nav>li>.dropdown-menu li a:hover {
  color: #000;
  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: #333;
}
.navbar-nav>li .dropdown-inner {
  display: flex;
  justify-content: center;
}
@media (max-width: 767.98px) {
  .navbar-nav>li>.dropdown-menu {
    /* display: block; */
    position: relative;
    top: 0;
    width: 100%;
    padding: 0 12px;
    border-radius: 0;
    box-shadow: none;
  }
}
button {
  background-color: transparent;
  user-select: none;
  cursor: pointer;
}
a {
  color: #1e1e1e;
  -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: #000;
  text-decoration: none;
  text-underline-position: under;
}
a:link {
  text-underline-position: under;
}
a:focus {
  color: inherit;
  outline: none;
  outline-offset: 0;
}
#content p a,
#content p a:hover,
#content p a:link,
#content p a:visited,
#content ul a,
#content ul a:hover,
#content ul a:link,
#content ul a:visited,
#content ol a,
#content ol a:hover,
#content ol a:link,
#content ol a:visited {
  text-decoration: underline;
}
.urn {
  display: none;
}
.in__wishlist .badgewishlist {
  display: none;
}
.in__wishlist .urn {
  display: block;
}
.phone {
  white-space: nowrap;
}
.phone-number {
  white-space: nowrap;
}

.hidden {
  display: none;
}

.text-center {
  text-align: center;
}
.swiper-wrapper {
  transition-timing-function: linear !important;
}
.center {
  margin-left: auto;
  margin-right: auto;
}


small {
  font-size: 70%;
}

.form-control:focus {
  border-color: rgba(0,0,0,0.15);
  outline: 0;
  box-shadow: none;
}

label {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
textarea {
  resize: vertical;
}
input,
button {
  border: none;
}
.tab-content > .active,
.vertical-tab-container .active {
  animation: fadeIn 0.7s;
}

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

  100% {
    opacity: 1;
  }
}

/* Search = START */
.header__search .dropdown-menu {
  position: fixed;
  top: 68px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: none;
  min-width: 840px;
  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: 42dvh;
}

.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;
}
.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;
}
.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;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
}
.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 self:not(.disabled, .inline, .more) {
  border-bottom: 1px solid #f1f1f1;
}

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

.header__search .dropdown-menu li.inline .search-suggestion {
  text-align: center;
}

.header__search .dropdown-menu li.disabled .title {
  width: fit-content;
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
}
.search {
  color: #000;
  font-family: var(--main-font);
  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(--main-font);
}

.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;
}

.header__search .dropdown-menu li:not(.disabled, .inline, .more) {
  border-bottom: 1px solid #f1f1f1;
}

.search-suggestion .center {
  margin-left: unset;
  margin-right: unset;
  flex-grow: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dropdown-menu li.disabled .search-suggestion .title {
  font-weight: 700;
  font-size: 16px;
}

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

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

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

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

.close-mobile-search {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  padding: 10px;
}

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

@media (max-width: 1023.98px) {
  .header__search .dropdown-menu {
    top: 140px;
    margin: 0;
    padding: 10px;
    min-width: auto;
    width: calc(100% - 20px);
    height: 42dvh;
    border: 0;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
  }

  .header__search .dropdown-menu li {
    padding-left: 19px;
    padding-right: 19px;
  }
}

@media (max-width: 1023.98px) {
  .close-mobile-search.active {
    display: block;
  }
}

@media (max-width: 649.98px) {
  .header__search .dropdown-menu {
    flex-direction: column;
  }
  ul.dropdown-menu .box_search {
    width: 100%;
  }
}
/* Search = END */

.flex,
.d-flex {
  display: flex !important;
}
.flex-column {
  flex-direction: column !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.product-thumb .image img {
  width: 100%;
}
legend {
  font-size: 18px;
  padding: 7px 0px;
}
label {
  font-size: 12px;
  font-weight: normal;
}
.red {
  color: #ed1c24;
}
.input-group input,
.input-group select,
.input-group .dropdown-menu,
.input-group .popover {
  font-size: 12px;
}
.input-group .input-group-addon {
  font-size: 12px;
  height: 30px;
}
/* Fix some bootstrap issues */
span.hidden-xs,
span.hidden-sm,
span.hidden-md,
span.hidden-lg {
  display: inline;
}

div.required .control-label::after {
  content: ' *';
  color: #f00;
  font-weight: bold;
}
/* 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;
}
/* top */
#top {
  background-color: #eeeeee;
  border-bottom: 1px solid #e2e2e2;
  padding: 4px 0px 3px 0;
  margin: 0 0 20px 0;
  min-height: 40px;
}
#top .container {
  padding: 0 20px;
}
#top #form-currency .currency-select,
#top #form-language .language-select {
  text-align: left;
}
#top #form-currency .currency-select:hover,
#top #form-language .language-select:hover {
  text-shadow: none;
  color: #ffffff;
  background-color: #229ac8;
  background-image: linear-gradient(to bottom, #23a1d1, #1f90bb);
  background-repeat: repeat-x;
}
#top .btn-link,
#top-links li,
#top-links a {
  color: #888;
  text-shadow: 0 1px 0 #fff;
  text-decoration: none;
}
#top .btn-link:hover,
#top-links a:hover {
  color: #444;
}
#top-links .dropdown-menu a {
  text-shadow: none;
}
#top-links .dropdown-menu a:hover {
  color: #fff;
}
#top .btn-link strong {
  font-size: 14px;
  line-height: 14px;
}
#top-links {
  padding-top: 6px;
}
#top-links a + a {
  margin-left: 15px;
}
/* tabs */
.nav-tabs {
  border-bottom: 1px solid #cfcfcf;
  margin-bottom: 15px;
}
.nav-tabs > li {
  float: left;
  margin-bottom: -1px;
}
.nav > li > a {
  position: relative;
  padding: 10px 12px;
  border-bottom: 1px solid transparent;
  color: #1e1e1e;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav > li > a svg {
  margin-left: 4px;
  width: 7px;
  flex-shrink: 0;
  color: rgba(82, 82, 82, .45);
}
li.active a {
  border-bottom: 1px solid #bcbcbc;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
}
.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}
/* logo */
#logo {
  margin: 0;
}
#logo h1 {
  margin: 0;
  font-size: 28px;
}
#logo h1 a {
  color: #000;
}
@media (max-width: 1023.98px) {
  #logo {
    margin-left: 20px;
    margin-right: 20px;
    max-width: 125px;
  }
}
#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;
}
#cart {
  cursor: pointer;
}
.widget_shopping_cart_content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  height: 100%;
  position: absolute;
  inset: 0;
  padding-top: 60px;
  max-height: 100%;
  overscroll-behavior: none;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
/*
.shopping-cart-widget-footer {
  margin-top: auto;
  flex: 0 0 auto;
  padding-bottom: 15px;
}
*/
.title-mini-cart-wrap {
  position: relative;
  padding: 20px 15px;
  display: flex;
  flex: 0 0 auto;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .105);
  z-index: 1;
}
.title-mini-cart {
  flex: 1 1 auto;
  color: #242424;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 130%;
  line-height: 1.4;
}
.list-product-cart {
  overflow: auto;
}
.container-cart ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.cart-totals {
  padding-inline: 15px;
  padding-block: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 130%;
  border-top: 1px solid rgba(0, 0, 0, .105);
}
.item-product-cart,
.information-product-cart,
.top-product-cart,
.bottom-product-cart {
  display: block;
}
.image-product-cart {
  margin-right: 15px;
  flex-shrink: 0;
}
.image-product-cart img {
  width: 130px;
}
.information-product-cart {
  position: relative;
  padding-right: 20px;
  width: 100%;
  height: 100%;
  flex-direction: column;
}
.top-product-cart {
  margin-bottom: 11px;
  justify-content: space-between;
  align-items: center;
}
.delete-product {
  position: absolute;
  top: 1px;
  right: 0;
  z-index: 2;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  color: #333;
  text-align: center;
  font-size: 0;
  line-height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  overflow: hidden;
  transition: all .3s ease;
}
.delete-product:hover {
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
}
.delete-product .btn {
  padding: 0;
}
.bottom-product-cart {
  justify-content: space-between;
  align-items: center;
}
.quantity-product {
  margin-bottom: 8px;
}
.qty-spinedit {
  position: relative;
  display: inline-flex;
  margin-bottom: 8px;
  transition: opacity .6s ease;
  z-index: 1;
}
.qty-spinedit button {
  padding: 0 5px;
  width: 25px;
  height: 32px;
  color: black;
  fill: black;
  background-color: transparent;
  outline: none;
  border: 1px solid black !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.qty-spinedit button:hover {
  color: white;
  background-color: rgb(34,34,34);
}
.qty-spinedit button svg {
  width: auto;
}
.qty-spinedit button:hover svg {
  fill: white;
}
.name-product a {
  margin-bottom: 8px;
  display: block;
  color: rgb(51 51 51 / 65%);
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  /* word-wrap: break-word; */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.item-totals.total {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.name-total {
  color: #242424;
}
.value-total {
  flex-grow: 1;
  text-align: right;
  color: #222;
  font-weight: 600;
}
.name-product-options {
  margin-bottom: 6px;
}
.name-product-option {
  display: flex;
  align-items: center;
}
.name-product-option-name,
.name-product-option-value {
  color: #767676;
  font-family: var(--main-font);
  font-size: 12px;
  line-height: 1;
}
.name-product-option-name {
  color: #333;
  font-weight: 600;
}
.name-product-option-value {
  margin-left: 5px;
}
.quantity-number {
  color: #bbb;
}
.total-product {
  color: rgb(34,34,34);
  font-family: var(--main-font);
  font-weight: 600;
  font-size: 90%;
  line-height: normal;
  white-space: nowrap;
}
.group-cart-button {
  display: flex;
  flex-direction: column;
  padding-inline: 15px;
}
/* Ховаємо стрілки у Chrome, Safari, Edge */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Ховаємо стрілки у Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/* Базові стилі */
.quantity-product .quantity {
  width: 30px;
  height: 32px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  background: transparent;
  font-family: var(--main-font);
  font-weight: 400;
  text-align: center;
  color: #8b8b8b;
  font-size: 14px;
  line-height: 1;
  border-radius: 0;           /* на всяк випадок для всіх */
  -webkit-appearance: none;   /* прибрати системне оформлення */
  appearance: none;
}

/* Тільки iOS Safari */
@supports (-webkit-touch-callout: none) and (not (translate: none)) {
  .quantity-product .quantity {
    border-radius: 0 !important;
    -webkit-appearance: none;
    appearance: none;
  }

  /* Прибрати спінери в iOS/WebKit */
  input[type="number"]::-webkit-outer-spin-button,
  input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
}

/* (опціонально) Прибрати спінери у Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

a.btn-cart, a.btn-checkout {
  padding: 5px 20px;
  color: #fff;
  background: rgb(34, 34, 34);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: .83vw;
  line-height: 1vw;
  height: 3.1vw;
  border: solid #000 .052vw;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
a.btn-cart:hover,
a.btn-checkout:hover {
  color: #000;
  background: #fff;
}
a.btn-cart {
  margin-bottom: 10px;
}
a.btn-checkout {

}
button.btn-exit {
  height: 25px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: #333;
  background: transparent;
  border: 0;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}
button.btn-exit svg {
  flex-shrink: 0;
  margin-right: 5px;
}
.item-product-cart {
  display: flex;
  padding: 15px;
  transition: background-color .3s ease;
}
.item-product-cart:hover {
  background-color: #f1f1f1;
}

@media (max-width: 1023.98px) {
  a.btn-cart, a.btn-checkout {
    font-size: 1.8vw;
    line-height: 2.3vw;
    height: 5.86vw !important;
    border: solid #000 .052vw;
  }

  .widget_shopping_cart_content {
    height: calc(100dvh - 60px);
  }
}

@media (max-width: 767.98px) {
  a.btn-cart, a.btn-checkout {
    font-size: 4.1vw;
    line-height: 4.6vw;
    height: 12.8vw !important;
    border: solid #000 .052vw;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 100;
  animation: slide-down 0.5s;
}
header.fixed {
  /*
  -moz-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  */
  /* border-bottom: 1px solid #ebebeb; */
  animation: slide-down 1s;
}

.header_phone {
    display: flex;
    align-items: center;
}

.header_phone li {
    flex-shrink: 0;
    margin-right: 10px;
}

.header_phone li a {
    color: black;
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
/* menu */
#menu .nav > li > a {
  padding: 10px 0;
  background-color: transparent;
  color: #333;
  font-weight: 800;
  font-size: .73vw;
  line-height: .8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  letter-spacing: -.01em;
  white-space: nowrap;
}
#menu .nav > li:hover > a {
  /* color: #333; */
  text-decoration: none;
  background-color: transparent;
}
/*
#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: #333;
  font-weight: 700;
}
*/
/* content */
/*
#content {
  min-height: 600px;
}
*/
/* alert */
.alert {
  padding: 8px 14px 8px 14px;
}
.alert.alert-danger {
  margin-top: 15px;
  color: #222b45;
  font-family: var(--main-font);
  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;
}
/* buttons */
.buttons {
  margin: 1em 0;
}
.btn {
  padding: 15px 34px;
  color: #1e1e1e;
  font-family: var(--main-font);
  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;
}
.btn:hover {
  color: #fff;
  background-color: #1e1e1e;
  border-color: #1e1e1e;
}
.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
  outline: 0;
  outline-offset: 0;
}
.btn:active {
  box-shadow: none;
}
.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(--main-font);
  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;
}
.button-group-buy button svg {
  margin-right: 6px;
}
.btn-none {
  border: none !important;
  background: none !important;
}
.section-wishlist .hover,
.section-wishlist:hover .normal,
.section-wishlist.add-wishlist .normal {
  display: none;
}
.section-wishlist:hover .hover,
.section-wishlist .normal,
.section-wishlist.add-wishlist .hover {
  display: block;
}
/* product */
.product-item {
  position: relative;
}
.item-product-image img {
  margin: 0 auto;
}
.section-wishlist {
  position: absolute;
  right: 6px;
  top: 6px;
}
.section-wishlist button,
.section-wishlist > div {
  border-radius: 14px;
  border: 1px solid #e6e6e6;
  background: #e6e6e6;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#product .wish_list_group .product__wishlist svg path{
    transition: 0.2s;
    fill: transparent;
}
#product .wish_list_group .product__wishlist.active svg path{
    fill: #000;
}
.item-product-information h4 a {
  color: #000;
  font-size: 14px;
  font-style: normal;
  line-height: 20px;
}
.item-product-information .price {
  color: #1a151b;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
}
.stickers_image {
  display: flex;
  flex-wrap: wrap;
  margin-top: 8px;
  padding: 0px;
}
.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;
}
.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 */
/* list group */
.list-group a {
  border: 1px solid #dddddd;
  color: #888888;
  padding: 8px 12px;
}
.list-group a.active,
.list-group a.active:hover,
.list-group a:hover {
  color: #444444;
  background: #eeeeee;
  border: 1px solid #dddddd;
  text-shadow: 0 1px 0 #fff;
}
/* carousel */
.carousel-caption {
  color: #ffffff;
  text-shadow: 0 1px 0 #000000;
}
.carousel-control .icon-prev:before {
  content: '\f053';
  font-family: FontAwesome;
}
.carousel-control .icon-next:before {
  content: '\f054';
  font-family: FontAwesome;
}
/* product list */
.product-thumb {
  border: 1px solid #ddd;
  margin-bottom: 20px;
  overflow: auto;
}
.product-thumb .image {
  text-align: center;
}
.product-thumb .image a {
  display: block;
}
.product-thumb .image a:hover {
  opacity: 0.8;
}
.product-thumb .image img {
  margin-left: auto;
  margin-right: auto;
}
.product-grid .product-thumb .image {
  float: none;
}
@media (min-width: 768px) {
  .product-list .product-thumb .image {
    float: left;
    padding: 0 15px;
  }
}
.product-thumb h4 {
  font-weight: bold;
}
.product-thumb .caption {
  padding: 0 20px;
  min-height: 180px;
}

.product-thumb .caption > h4 + p {
  height: 70px;
  overflow: hidden;
}

.product-list .product-thumb .caption {
  margin-left: 230px;
}
@media (max-width: 1023.98px) {
  .product-grid .product-thumb .caption {
    min-height: 210px;
    padding: 0 10px;
  }
}
@media (max-width: 767.98px) {
  .product-list .product-thumb .caption {
    min-height: 0;
    margin-left: 0;
    padding: 0 10px;
  }
  .product-grid .product-thumb .caption {
    min-height: 0;
  }
}
.product-thumb .rating {
  padding-bottom: 10px;
}
.rating .fa-stack {
  font-size: 8px;
}
.rating .fa-star-o {
  color: #999;
  font-size: 15px;
}
.rating .fa-star {
  color: #fc0;
  font-size: 15px;
}
.rating .fa-star + .fa-star-o {
  color: #e69500;
}
h2.price {
  margin: 0;
  white-space: nowrap;
}
.product-thumb .price {
  color: #444;
  white-space: nowrap;
}
.product-thumb .price-new {
  font-weight: 600;
  white-space: nowrap;
}
.product-thumb .price-old {
  color: #999;
  text-decoration: line-through;
  margin-left: 10px;
  white-space: nowrap;
}
.product-thumb .price-tax {
  color: #999;
  font-size: 12px;
  display: block;
  white-space: nowrap;
}
.product-thumb .button-group {
  border-top: 1px solid #ddd;
  background-color: #eee;
  overflow: auto;
}
.product-list .product-thumb .button-group {
  border-left: 1px solid #ddd;
}
@media (max-width: 767.98px) {
  .product-list .product-thumb .button-group {
    border-left: none;
  }
}
.product-thumb .button-group button {
  width: 60%;
  border: none;
  display: inline-block;
  float: left;
  background-color: #eee;
  color: #888;
  line-height: 38px;
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
}
.product-thumb .button-group button + button {
  width: 20%;
  border-left: 1px solid #ddd;
}
.product-thumb .button-group button:hover {
  color: #444;
  background-color: #ddd;
  text-decoration: none;
  cursor: pointer;
}
@media (max-width: 1023.98px) {
  .product-thumb .button-group button,
  .product-thumb .button-group button + button {
    width: 33.33%;
  }
}
@media (max-width: 767.98px) {
  .product-thumb .button-group button,
  .product-thumb .button-group button + button {
    width: 33.33%;
  }
}
.thumbnails {
  overflow: auto;
  clear: both;
  list-style: none;
  padding: 0;
  margin: 0;
}
.thumbnails > li {
  margin-left: 20px;
}
.thumbnails {
  margin-left: -20px;
}
.thumbnails > img {
  width: 100%;
}
.image-additional a {
  margin-bottom: 20px;
  padding: 5px;
  display: block;
  border: 1px solid #ddd;
}
.image-additional {
  max-width: 78px;
}
.thumbnails .image-additional {
  float: left;
  margin-left: 20px;
}
h3.title-section {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  margin-bottom: 49px;
}
@media (min-width: 1200px) {
  #content .col-lg-2:nth-child(6n + 1),
  #content .col-lg-3:nth-child(4n + 1),
  #content .col-lg-4:nth-child(3n + 1),
  #content .col-lg-6:nth-child(2n + 1) {
    clear: left;
  }
}
@media (min-width: 992px) and (max-width: 1023px) {
  #content .col-md-2:nth-child(6n + 1),
  #content .col-md-3:nth-child(4n + 1),
  #content .col-md-4:nth-child(3n + 1),
  #content .col-md-6:nth-child(2n + 1) {
    clear: left;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #content .col-sm-2:nth-child(6n + 1),
  #content .col-sm-3:nth-child(4n + 1),
  #content .col-sm-4:nth-child(3n + 1),
  #content .col-sm-6:nth-child(2n + 1) {
    clear: left;
  }
}

/* fixed colum left + content + right*/
@media (min-width: 768px) {
  #column-left .product-layout .col-md-3 {
    width: 100%;
  }

  #column-left + #content .product-layout .col-md-3 {
    width: 50%;
  }

  #column-left + #content + #column-right .product-layout .col-md-3 {
    width: 100%;
  }

  #content + #column-right .product-layout .col-md-3 {
    width: 100%;
  }
}

/* fixed product layouts used in left and right columns */
#column-left .product-layout,
#column-right .product-layout {
  width: 100%;
}

/* fixed mobile cart quantity input */
.input-group .form-control[name^='quantity'] {
  min-width: 50px;
}

/* Missing focus and border color to overwrite bootstrap */
.btn-info:hover,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
  background-image: none;
  background-color: #df5c39;
}

/* Modal = START*/
.modal {
  display: none;
  opacity: 0;
  transform: translateY(-100px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.modal-open .modal.in {
  opacity: 1;
  transform: translateY(0);
}

.modal_login {
  text-decoration: none !important;
  cursor: pointer;
}

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

.modal-body {
  padding: 0;
}

.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: 282px;
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) !important;
}

.modal-content {
  border-radius: 0;
  box-shadow: none;
  border: 0;
}

.register__log {
  text-decoration: underline !important;
  font-size: 14px;
}

.register__wrapper {
  width: 100%;
  padding: 20px 15px 20px 15px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.07);
}

.register__clouse-svg {
  fill: #000;
  height: 20px;
  width: 20px;
}

.simpleregister-have-account {
  margin: 0 !important;
}

.register .simpleregister-have-account {
  margin-top: 14px;
}

.form-horizontal .form-group {
  margin-top: 0px;
  padding: 0;
}
.register .form-horizontal .form-group {
  margin-bottom: 0 !important;
}

.login .form-horizontal .form-group {
  margin-bottom: 0 !important;
}

.forgotten-link {
  display: block;
  text-align: right;
}

.view_pass {
  position: absolute;
  background: transparent;
  z-index: 10;
  right: 14px;
  top: 12px;
}

.register .form-group {
  margin-top: 14px;
}

.simpleregister-button {
  margin-top: 24px;
}

.form-horizontal .form-group {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  width: 100%;
}

.login .title-page {
  padding-top: 24px;
}

.form-control {
  border-color: #e6e6e6;
}

.register .modal-dialog {
  width: 320px;
}

#simpleregister .form-group > div {
  width: 100%;
}

#simpleregister fieldset {
  padding: 0;
}
/* Modal = END*/

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

#overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, .7);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  transition: opacity .5s cubic-bezier(.19, 1, .22, 1),
              z-index 0s cubic-bezier(.19, 1, .22, 1) .5s;
}

#overlay.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 49;
  transition-delay: 0s;
}

.sc-megamenu > nav {
  margin-bottom: 0;
  /* height: calc(100% - 56px); */
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.sc-megamenu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sc-megamenu-list-item svg {
  padding: 5px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.sc-megamenu-list-item.active > a {
  color: #000;
  border-bottom: 0;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
  text-decoration: underline;
}
.sc-megamenu-list-item > svg path {
  flex-shrink: 0;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}
.sc-megamenu-list-item.active > svg path,
.sc-megamenu-list-item:hover > svg path {
  stroke: #000;
}

.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;
}

.sc-megamenu-child-narrow {
  right: auto;
  bottom: 0;
}
.sc-megamenu-child-narrow ul {
  padding-bottom: 90px;
  /* max-height: calc(100% - 56px); */
  overflow-y: auto;
}
.sc-megamenu-child-narrow li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sc-megamenu-child-narrow li a {
  flex-grow: 1;
}

.menu-title-mobile {
  margin: 98px 45px 27px 84px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.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(--main-font);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.5;
  text-transform: uppercase;
}

.sc-megamenu-list-item > a img {
  border-radius: 5px;
}

@media (min-width: 768px) {
  .sc-megamenu-container {
    /* width: 750px; */
    width: 100%;
  }
}
@media (min-width: 992px) {
  .sc-megamenu-container {
    width: 970px;
  }
}
@media (min-width: 1024px) {
  #close-mobile-menu,
  .menu-title-mobile,
  .sc-megamenu hr {
    display: none;
  }
  .categories_lvl1 {
    max-width: 417px;
    width: 100%;
  }
  .categories_lvl2 {
    left: 100%;
    margin-top: -1px;
    margin-left: -1px;
    padding-top: 25px;
    padding-bottom: 41px;
    max-width: 430px;
    width: 100%;
    height: fit-content;
  }
  .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: 1px solid #ebebeb;
  }
  .sc-megamenu-child-narrow li:not(.sc-menu-list-landings) .sc-megamenu-child {
    top: 0;
  }
  .sc-megamenu-child-narrow
    li:not(.sc-menu-list-landings):hover
    > .sc-megamenu-child {
    opacity: 1;
    visibility: visible;
  }

  .sc-megamenu-list-item > .sc-megamenu-child .sc-megamenu-list-item {
    min-height: 35px;
    border-bottom: 0;
  }

  .sc-megamenu-list-item > .sc-megamenu-child .sc-megamenu-list-item > a {
    min-height: 35px;
    color: #1e1e1e;
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    text-transform: none;
    border-bottom: 0;
  }

  .sc-megamenu-container {
    position: relative;
    /* width: 1170px; */
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    z-index: 50;

  }
  .sc-megamenu {
    position: fixed;
    top: 70px;
    left: 0;
    transform: translateY(10px);
    width: 100vw;
    min-height: 230px;
    /* border-top: 1px solid #ebebeb; */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
  }

  .sc-megamenu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
  }

  .sc-megamenu > nav {
    /* width: 417px; */
    width: 100%;
  }
  .sc-megamenu-list {
    background: #fff;
  }

  .sc-megamenu.active .sc-megamenu-list {
    max-height: 640px;
    overflow: auto;
  }

  .sc-megamenu-list-item {
    padding: 10px 46px 10px 11px;
    min-height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f2f2f2;
  }
  .sc-megamenu-list-item:hover > a {
    text-decoration: underline;
  }
  .sc-megamenu-list-item > a {
    min-height: 50px;
    display: flex;
    flex-grow: 1;
    align-items: center;
    color: #000;
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 12px;
    line-height: 1.5;
    text-transform: uppercase;
    cursor: pointer;
    /* pointer-events: none; */
  }

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

  .sc-megamenu-child {
    min-height: 430px;
    height: 640px;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    pointer-events: none;
    -webkit-box-shadow: 0px 70px 20px 0px rgba(145, 145, 145, 0),
      0px 45px 18px 0px rgba(145, 145, 145, 0.01),
      0px 25px 15px 0px rgba(145, 145, 145, 0.05),
      0px 11px 11px 0px rgba(145, 145, 145, 0.09),
      0px 3px 6px 0px rgba(145, 145, 145, 0.1);
    box-shadow: 0px 70px 20px 0px rgba(145, 145, 145, 0),
      0px 45px 18px 0px rgba(145, 145, 145, 0.01),
      0px 25px 15px 0px rgba(145, 145, 145, 0.05),
      0px 11px 11px 0px rgba(145, 145, 145, 0.09),
      0px 3px 6px 0px rgba(145, 145, 145, 0.1);
    -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%);
  }

  .sc-megamenu-child-narrow ul {
    max-height: 100%;
  }

  .sc-megamenu-child-narrow li:not(.sc-menu-list-landings) {
    padding: 0 34px 0 29px;
  }

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

@media (min-width: 1400px) {
  .sc-megamenu-container {
    /* width: 1396px; */
  }
}
@media (max-width: 1023.98px) {
  .sc-megamenu {
    position: fixed;
    width: 100%;
    top: 90px;
    bottom: 0;
    left: -100%;
    padding-bottom: 90px;
    background-color: #fff;
    transition: 1s;
    overflow: hidden;
    z-index: 50;
  }

  .sc-megamenu.active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    height: calc(100% - 75px);
    overflow: hidden;
  }

  .sc-megamenu.active.lock {
    left: 0;
    z-index: 99;
  }
  .sc-megamenu > nav {
    height: 100%;
  }

  .sc-megamenu-list {
    padding-top: 10px;
    height: 100%;
    overflow: auto;
  }
  .sc-megamenu-list hr {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .sc-megamenu-child hr {
    margin-top: 25px;
  }
  .sc-megamenu-list-item {
    padding: 0 10px;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .sc-megamenu-child .sc-megamenu-list-item {
    padding-left: 84px;
    height: 40px;
  }
  .sc-megamenu-list-item svg {
    margin-right: 40px;
  }
  .sc-megamenu-list-item a {
    margin-right: auto;
    width: 100%;
    display: flex;
    align-items: center;
    color: #000;
    font-family: var(--main-font);
    font-weight: 600;
    font-size: 12px;
    line-height: 1.5;
    text-transform: uppercase;
  }
  .sc-megamenu-child .sc-megamenu-list-item a {
    margin-right: auto;
    display: flex;
    align-items: center;
    color: #1e1e1e;
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 14px;
    line-height: 2.5;
    text-transform: none;
    border-bottom: 0;
  }
  .categories_lvl1 .sc-megamenu-list-item.link-hard:first-child a {
    color: #f1223d;
  }
  .sc-megamenu-child-narrow ul {
    padding-bottom: 75px;
    height: 100%;
  }
  .sc-megamenu-list-item img {
    margin-right: 22px;
    width: 50px;
  }
  .sidebar-header-bottom {
    margin-bottom: 20px;
  }
  .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;
    height: 50px;
    line-height: 1;
    display: flex;
    align-items: center;
    background-color: #fff;
  }
  .sc-megamenu-child .main-title-category {
    margin-top: 97px;
    padding-left: 84px;
    height: 20px;
  }

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

  .categories_listTitle {
    color: #000;
    font-family: var(--main-font);
    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;
  }

  #menu {
    position: fixed;
    top: 90px;
    width: 100%;
    height: calc(100% - 90px);
    background: #fff;
    left: -102%;
    border-radius: 0;
    transition: 1s;
    z-index: 12;
  }
  nav#menu.in {
    left: 0;
    padding-bottom: 90px;
    transition: 1s;
  }

  .navbar-ex1-collapse {
    width: 100%;
    height: 100%;
    overflow: auto;
  }

  /* Mobile panel */
  .mobile__bottom--line {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #1e1e1e;
    box-shadow: 0px -131px 37px 0px rgba(0, 0, 0, 0),
      0px -84px 34px 0px rgba(0, 0, 0, 0.01),
      0px -47px 28px 0px rgba(0, 0, 0, 0.05),
      0px -21px 21px 0px rgba(0, 0, 0, 0.09),
      0px -5px 12px 0px rgba(0, 0, 0, 0.1);
    z-index: 233;
  }
  .navbar-nav {
    margin: 15px 45px 15px 72px;
  }
  .mobile__bottom--left .header__icon {
    margin-right: 0 !important;
  }
  .header__icon {
    width: 56px;
  }
  .header__icon .head-ico {
    position: relative;
  }
  .header__icon button,
  .button__menu {
    padding: 0;
    width: 56px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background-color: transparent;
  }
  .mobile__catalog--button::before,
  .mobile__catalog--button::after {
    position: absolute;
    content: '';
    top: 22px;
    width: 13px;
    height: 13px;
    border-bottom: 4px solid #fff;
    z-index: 2;
  }
  .mobile__catalog--button::after {
    right: -3px;
    border-bottom-left-radius: 100%;
  }
  .mobile__catalog--button::before {
    left: -3px;
    border-bottom-right-radius: 100%;
  }
  .mobile__catalog--button {
    position: absolute;
    bottom: 0;
    left: calc(50% - 50px);
    width: 100px;
    height: 111px;
    padding-bottom: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    border-radius: 50% 50% 0 0;
    background-color: #fff;
  }
  .mobile__bottom--right .header__icon {
    /* margin-right: 30px; */
    margin-left: 0 !important;
  }
  .header__cart,
  .header__icon button {
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    background-color: transparent;
  }
  /*
  .container-cart {
    width: 100%;
    position: fixed !important;
    max-width: calc(100% - 30px) !important;
  }
  .container-cart.in {
    top: 70px !important;
    width: 100%;
    margin: 50px 15px;
  }
  */

  .header__icon span,
  .mobile__catalog--button span {
    margin-top: 7px;
    color: #8b8b8b;
    font-family: var(--main-font);
    font-weight: 400;
    font-size: 10px;
    line-height: normal;
  }
  .header__icon .whishlist-total {
    margin-top: 0;
    color: #1e1e1e;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
  }
  .mobile__catalog--button svg {
    margin-bottom: 15px;
  }
  .btn-close-content,
  .btn-close {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  div#close-mobile-menu,
  div.close-mobile-menu {
    padding: 10px;
  }
  /* Mobile panel */
}

/* Custom styles */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  z-index: 11111;
}

.account__block {
  display: flex;
}

.account__block--elem {
  padding: 0 15px;
  width: calc(100% / 3);
  flex-shrink: 0;
}

.btn-green {
  color: rgb(255, 255, 255);
  background: #40ab35;
  width: 150px;
  height: 35px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
  border-radius: 5px;
}

/* Swiper = START */
.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: auto;
}

.swiper-pagination-bullet {
  background: #fff;
  width: 10px;
  height: 10px;
  border: 1px solid #f7e4d4;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #160f02;
  border-color: #160f02;
}

.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);
}
/* Swiper = END */

/* Module list_product = START */
.product_slide {
  position: relative;
  margin-top: 1.6vw;
  margin-bottom: 0vw;
  margin-left: 0vw;
  margin-right: 0vw;
  padding-top: 0vw;
  padding-bottom: 2.60416vw;
}

.product_slide--body {
  width: 100%;
  overflow: hidden;
}

.products__grid--wrapper {
  display: grid;
}

.product__carousel--pagination {
  margin-top: 0;
  text-align: center;
}

.product__carousel--body {
  padding-bottom: 40px;
}

.product__loadmore--button {
  margin-top: 35px;
  display: flex;
  justify-content: center;
}

.product__loadmore--button > button {
  width: 370px;
  height: 50px;
  border-radius: 5px;
  border: 1.837px solid #fff;
  background: radial-gradient(
      54.31% 100% at 50% 0%,
      rgba(255, 255, 255, 0.2) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    radial-gradient(100% 100% at 49.94% 0%, #96bdbd 0%, #304a4b 100%);
  color: #fff;
  font-family: 'CraftworkGrotesk';
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
}

section.product__loadmore {
  margin-top: 70px;
}

.block__title-wrap {
  padding-left: 0;
}

h2.block__title,
h2.block__title span {
  color: #222;
  font-size: 1.875vw;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 2.0833vw;
  letter-spacing: -.05em;
}

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(--main-font);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
}

.page-title-link {
  margin-left: auto;
  margin-right: 0;
  padding-left: 1.729vw;
  padding-right: .729vw;
  height: 2.6vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #222;
  font-size: .9375vw;
  font-weight: 800;
  text-transform: none;
  line-height: 1.28125vw;
  letter-spacing: -.02em;
  user-select: none;
  transition: all 0.25s ease 0s;
}

.page-title-link:hover,
.page-title-link:hover span {
  color: rgba(34, 34, 34, .7);
}

.page-title-link:hover {
  border-color: rgba(34, 34, 34, .7);
}
/*
.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: #222;
  font-size: .9375vw;
  font-weight: 800;
  text-transform: none;
  line-height: 1.28125vw;
  letter-spacing: -.02em;
  transition: all 0.25s ease 0s;
}

.page-title-link svg {
  margin-left: 5px;
  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(4, 1fr);
    grid-row-gap: 17px;
    grid-column-gap: 40px;
  }
}
@media (min-width: 1280px) and (max-width: 1479px) {
  .products__grid--wrapper {
    grid-template-columns: repeat(4, 1fr);
    grid-row-gap: 17px;
    grid-column-gap: 40px;
  }
}

@media (min-width: 992px) and (max-width: 1279px) {
  .products__grid--wrapper {
    grid-template-columns: repeat(3, 1fr);
    grid-row-gap: 17px;
    grid-column-gap: 40px;
  }
}

@media (max-width: 1023.98px) {
  .product_slide {
    margin-top: 1.04vw;
    margin-bottom: 1.04vw;
    margin-left: 0vw;
    margin-right: 0vw;
    padding-top: 0vw;
    padding-bottom: 0vw;
    /* padding-left: 2vw;
    padding-right: 1vw; */
  }
}

@media (max-width: 991.98px) {
  .products__grid--wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 15px;
    grid-column-gap: 20px;
  }
}

@media (max-width: 767.98px) {
  .products__grid--wrapper {
    grid-column-gap: 10px;
  }

  .product_slide {
    margin-top: 15.3846vw;
    margin-bottom: 15.3846vw;
    margin-left: 0vw;
    margin-right: 0vw;
    padding-top: 0vw;
    padding-bottom: 0vw;
    /* padding-left: 2.564vw;
    padding-right: 2.564vw; */
  }
}
/* Module list_product = END */

/* Breadcrumb = START */
.breadcrumb {
  margin: 1.3vw 0;
  /* padding: 8px 0; */
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  overflow-x: auto;
  overflow-y: hidden;
}

.breadcrumb i {
  font-size: 15px;
}

.breadcrumb > li {
  margin-right: 12px;
  list-style-type: none;
  position: relative;
  padding-right: 19px;
  white-space: nowrap;
  color: #767676;
}

.breadcrumb > li + li::before {
  content: '';
  padding: 0;
}

.breadcrumb > li::after {
  content: '/';
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  font-size: .94vw;
  line-height: normal;
}

.breadcrumb > li:last-child::after {
  display: none;
}

.breadcrumb > li a,
.breadcrumb > li span {
  color: #767676;
  font-family: var(--main-font);
  font-weight: 600;
  font-size: .94vw;
  line-height: normal;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.breadcrumb > li a svg {
  margin-right: 10px;
}

.breadcrumb > li span {
  color: #333;
}

#product-product .breadcrumb {
  margin: 0;
  flex-wrap: wrap;
  text-align: left;
  overflow-x: hidden;
}

#product-product .breadcrumb > li {
  margin-right: 10px;
}

#product-product .breadcrumb > li:not(:first-child) {
  padding-left: 0;
}

#product-product .breadcrumb > li a,
#product-product .breadcrumb > li span {
  font-weight: 600;
  font-size: 0.73vw;
}

#product-product .breadcrumb > li::after {
  top: 0;
  font-size: 0.73vw;
}

@media (max-width: 1023.98px) {
  .breadcrumb {
    margin: 1.04vw 0;
  }

  .breadcrumb > li::after {
    font-size: 1.8vw;
  }

  .breadcrumb > li a,
  .breadcrumb > li span {
    font-size: 1.8vw;
  }

  #product-product .breadcrumb > li::after,
  #product-product .breadcrumb > li a, #product-product .breadcrumb > li span {
    font-size: 1.8vw;
  }

  #product-product .breadcrumb > li::after {
    top: 0.5vw;
  }
}

@media (max-width: 767.98px) {
  .breadcrumb {
    margin: 6.41vw 0;
  }

  .breadcrumb > li::after {
    font-size: 3.08vw;
  }

  .breadcrumb > li a,
  .breadcrumb > li span {
    font-size: 3.08vw;
  }

  #product-product .breadcrumb {
    margin-top: 2.67vw;
    margin-bottom: 2.67vw;
    padding-top: 1.14583vw;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .breadcrumb > li {
    margin-right: 6px;
    padding-right: 12px;
  }

  #product-product .breadcrumb > li::after,
  #product-product .breadcrumb > li a, #product-product .breadcrumb > li span {
    font-size: 3.08vw;
  }

  #product-product .breadcrumb > li::after {
    top: -0.4vw;
  }
}
/* Breadcrumb = END */

/* Product = START */
.product__item--price-opt {
  display: none;
}

.list-product {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-row-gap: .52vw;
  grid-column-gap: .52vw;
}

.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: 2.083333vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.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 {
  border-radius: 50%;
  overflow: hidden;
}

.product_slide--prev {
  margin-right: 6px;
}

.product__item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.product__item--buttons {
  position: absolute;
  top: 12px;
  right: 20px;
  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 {
  background: no-repeat;
}
.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__item--image img {
  width: 100%;
}
/*
.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(--main-font);
  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-wrap {
  padding: 2.08vw 1.302083vw 1.197916vw;
  /* min-height: 21.04vw; */
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #f6f6f6;
}

.product__item--image {
  margin-bottom: 43px;
}

.product__item--info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product__item--name {
  margin-top: .26vw;
  margin-bottom: .26vw;
  min-height: 3vw;
  display: flex;
  align-items: flex-start;
}

.product__item--name a {
  color: #333;
  font-family: var(--main-font);
  font-size: .937vw;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1vw;
  word-spacing: -.02em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.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(--main-font);
  font-weight: 500;
  font-size: 12px;
  line-height: normal;
}

.product__item--model-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product__item--model {
  margin-right: 15px;
  color: #7E7E7E;
  font-size: .7291vw;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.04vw;
  letter-spacing: -.02em;
}

.product__item--info .price {
  margin-bottom: 0;
  color: #000;
  font-family: var(--main-font);
  font-size: .8333vw;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.03em;
}

.product__item--price {
  display: flex;
  align-items: end;
}

.price-opt-wrap {
  margin-right: 20px;
  font-family: var(--main-font);
  font-weight: 700;
  font-size: .8333vw;
}

.price-opt-text {
  color: #7e7e7e;
}

.price-opt-price {
  color: #ff4e4e;
}

.product__item--buy > button,
.product__item--buy > a,
.product__item--buy > button.btn-cart-item-no-quantity {
  width: 100%;
  background-color: #222222;
  font-family: var(--main-font);
  font-size: 0.83vw;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.9375vw;
  letter-spacing: -0.02em;
  fill: #FFFFFF;
  color: #FFFFFF;
  border-style: solid;
  border-width: 0.05vw 0.05vw 0.05vw 0.05vw;
  border-color: #22222280;
  border-radius: 0px 0px 0px 0px;
  padding: 0.5729vw 0vw 0.5729vw 0vw;
  display: inline-block;
  text-align: center;
  opacity: 0;
  transition: all 0.5s ease;
}

.product__item:hover .product__item--buy > button,
.product__item:hover .product__item--buy > a,
.product__item:hover .product__item--buy > button.btn-cart-item-no-quantity {
  opacity: 1;
}

.product__item--buy > button:hover,
.product__item--buy > a:hover {
  background-color: #FFFFFF;
  color: #222222;
}

.product__item--buy > button.btn-cart-item-no-quantity:hover {
  color: #FFFFFF;
}

.product__item--buy > button.btn-cart-item-no-quantity {
  border-color: transparent;
}

.product__item--buy > button svg {
  margin-left: 20px;
  flex-shrink: 0;
}

.product__item--buy > button.btn-cart-item-no-quantity {
  justify-content: center;
  background-color: #ccc;
}

.product__item--buy-mob {
  display: none;
}

.form-group-sort {
  display: flex;
  align-items: center;
}

.form-group-sort label {
  margin-right: 26px;
  margin-bottom: 0;
  color: #141414;
  font-family: var(--main-font);
  font-weight: 700;
  line-height: 1.3;
}

select#input-sort {
  margin: 0;
  padding: 14px 23px;
  height: auto;
  border: none;
  box-shadow: none;
  user-select: none;
  cursor: pointer;
}

select#input-sort:hover,
select#input-sort:focus {
  margin: 0;
  padding: 14px 23px;
  height: auto;
  border: none;
  box-shadow: none;
}

.product__item--stickers {
  position: absolute;
  top: 12px;
  left: 15px;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}

.product__item--stickers .sticker {
  margin-bottom: 10px;
  width: 50px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 10px;
  line-height: normal;
  text-transform: uppercase;
}

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

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

.sticker.sticker_sale {
  color: #fff;
  background-color: #ff92f2;
}
.mobile .product_slide--wrapper {
  margin-left: -5px;
  margin-right: -5px;
  flex-direction: column;
}

.mobile .list-product {
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 20px;
  grid-column-gap: 10px;
}

.mobile .product_slide--banner.banner__left {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.mobile .product_slide-heading {
  margin-bottom: 10px;
  justify-content: center;
}
.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__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 (min-width: 992px) {
  .product__item--buttons {
    top: -40px;
  }

  .product__item:hover .product__item--buttons {
    top: 12px;
  }
}

@media (max-width: 1439.98px) {
  .list-option-product ul li {
    width: 45px;
    height: 45px;
    font-size: 14px;
  }
}
@media (max-width: 1023.98px) {
  .product__item--model-price .price-opt-wrap {
    display: none;
  }

  .list-product {
    grid-template-columns: repeat(3, 1fr);
  }

  .product_slide-heading {
    margin-bottom: 5.128vw;
  }

  h2.block__title, h2.block__title span {
    font-size: 3.25vw;
    line-height: 5.208vw;
  }

  .page-title-link span {
    font-size: 1.5625vw;
    line-height: 2.135vw;
  }

  .product__item-wrap {
    padding: 2.47vw 4.3vw 1.197916vw;
  }

  .product__item--name a {
    font-size: 1.8vw;
    line-height: 2.083vw;
  }

  .product__item--model {
    font-size: 1.5625vw;
    line-height: 2.6vw;
  }

  .product__item--price {
    flex-direction: column-reverse;
    align-items: baseline;
  }

  .product__item--info .price {
    font-size: 1.5625vw;
    line-height: 2.7vw;
    letter-spacing: -.05em;
  }

  .price-opt-wrap {
    margin-right: 0;
    font-size: 1.2vw;
    line-height: 2.2vw;
  }

  .product__item--buy > a,
  .product__item--buy > button.btn-cart-item-no-quantity {
    font-size: 1.8vw;
    line-height: 2vw;
    padding: 1.5625vw 0;
  }

  .product__item--price-opt {
    display: block;
    margin-top: 6px;
    text-align: end;
  }
}
@media (max-width: 991.98px) {
  .list-product {
    grid-row-gap: 20px;
    grid-column-gap: 10px;
  }

  .list-option-product ul {
    gap: 5px;
  }

  .list-option-product ul li {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }
}
@media (max-width: 767.98px) {
  .list-product {
    grid-template-columns: repeat(2, 1fr);
  }

  .product__item--buy > a,
  .product__item--buy > button.btn-cart-item-no-quantity {
    display: none;
  }

  .product__item--buy > a,
  .product__item--buy > button.btn-cart-item-no-quantity {
    font-size: 3vw;
    line-height: 4.2vw;
    padding: 2.8vw 0;
  }

  h2.block__title, h2.block__title span {
    font-size: 5.128vw;
    line-height: 5.128vw;
  }

  .page-title-link span {
    font-size: 3vw;
    line-height: 4.358vw;
  }

  .product__item-wrap {
    padding: 4.87vw 3.85vw 0;
  }

  .product__item--image {
    margin-bottom: 11px;
  }

  .product__item--info {
    padding-top: 2vw;
    padding-bottom: 2vw;
  }

  .product__item--name {
    min-height: 12vw;
  }

  .product__item--name a {
    font-size: 3.3vw;
    line-height: 4.1vw;
  }

  .product__item--model {
    font-size: 3vw;
  }

  .product__item--info .price {
    font-size: 3vw;
    line-height: 4.2vw;
  }

  .price-opt-wrap {
    font-size: 2.5vw;
    line-height: 3.7vw;
  }
}

@media (max-width: 349.98px) {
  .list-product {
    grid-template-columns: 1fr;
  }
}
/* Product = END */

/* Pagination = START */
#content .pagination {
  margin: 0;
}

#content .pagination__dots {
  pointer-events: none;
}

#content .pagination_wrapper {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
}

#content ul.theme-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 13.33px;
  list-style: none;
  margin-block-start: 0;
  margin-block-end: 0;
  padding-inline-start: 0;
}

#content ul.theme-pagination li {
  margin-left: 5px;
  margin-right: 5px;
  display: flex;
  align-items: center;
}

#content ul.theme-pagination li:last-child {
  margin-bottom: 10px;
}

#content ul.theme-pagination li.disabled {
  opacity: .5;
  pointer-events: none;
  cursor: not-allowed;
}

/*
#content li.next-pag,
#content li.prev-pag {
  display: none;
}
*/
#content li.next-pag {
  margin-left: 110px;
}

#content li.prev-pag {
  margin-right: 110px;
}

#content ul.theme-pagination li a,
#content ul.theme-pagination li span {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #222;
  background-color: transparent;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

#content ul.theme-pagination li:hover a,
#content ul.theme-pagination li:hover span {
  color: #000;
}

#content ul.theme-pagination li.active span {
  color: #767676;
}
/*
@media (max-width: 649.98px) {
  .pagination_wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
  }

  ul.theme-pagination li a,
  ul.theme-pagination li span {
    padding: 5px;
    min-width: 34px;
    height: 34px;
    font-size: 14px;
  }

  li.next-pag {
    margin-left: 66px;
  }

  li.prev-pag {
    margin-right: 66px;
  }

  li.prev-pag svg,
  li.next-pag svg {
    width: 16px;
  }
}
*/
/* Pagination = END */
/* Subcategories = START */
.subcategories__title,
.subcategories__title span {
  font-weight: 600;
  font-size: 24px;
  line-height: 1;
  color: #000;
  margin-bottom: 12px;
}
.subcategories__title {
  margin-right: 30px;
}
.subcategories__list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.subcategories__list.in {
  overflow: visible;
}
.category__subcategories--checkbox {
  margin-bottom: 20px;
  overflow: hidden;
}
.category__subcategories--checkbox .subcategories__title {
  display: inline-block;
  color: #000;
  font-family: var(--main-font);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  cursor: pointer;
}
.category__subcategories--checkbox .subcategories__title svg {
  margin-left: 10px;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.category__subcategories--checkbox .subcategories__title svg {
  -webkit-transition: transform 0.2s ease 0s;
  -o-transition: transform 0.2s ease 0s;
  transition: transform 0.2s ease 0s;
}
.category__subcategories--checkbox.click .subcategories__title svg {
  transform: translate(0) rotate(-180deg);
}
.category__subcategories--checkbox .subcategories__list li a {
  color: #000;
  display: flex;
  align-items: center;
}
.category__subcategories--checkbox .subcategories__list li a:hover {
  text-decoration: underline;
}
.category__subcategories--checkbox .subcategories__list li {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}
.category__subcategories--checkbox .subcategories__list li a img {
  margin-right: 20px;
  width: 30px;
  border-radius: 20px;
  overflow: hidden;
}
/* Subcategories = END */
/* Cookie = START */
#policy-pop-up {
  display: none;
  position:fixed;
  bottom: 0;
  left: 0;
  width: 525px;
  margin: 15px;
  padding: 15px 20px;
  color: #000;
  background: #fff;
  border-radius: 12px;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  z-index: 9999;
}

.policy-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.policy-logo {
  margin-right: 10px;
}

.policy-logo img {
  width: 52px;
}

.policy-title {
  margin-right: 10px;
  color: #000;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

#close-popup {
  padding: 10px;
  cursor: pointer;
}

.policy-middle {
  padding: 20px 10px 20px 0;
  color: #1e1e1e;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.3;
}

.group-policy-button {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.policy-bottom {
  padding-right: 10px;
}

button.no_policy,
a.yes_policy {
  padding: 10px;
  width: 150px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.1;
  white-space: nowrap;
  cursor: pointer;
}

button.no_policy {
  color: #000;
  background-color: transparent;
}

a.yes_policy {
  margin-left: 10px;
  color: #fff;
  background-color: #00483a;
  border-radius: 55px;
  overflow: hidden;
}

.policy-page {
  margin-top: 20px;
  text-align: center;
}

a.policy-link {
  color: #00483a;
  text-decoration: underline;
}

@media (max-width: 649.98px) {
  #policy-pop-up {
    width: calc(100% - 30px);
  }

  button.no_policy,
  a.yes_policy {
    width: 100%;
  }

  a.yes_policy {
    margin-left: 0;
  }
}
/* Cookie = END */

/* Brands = START */
.brands {
  margin-bottom: 30px;
}

.brands_info {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.brands__title {
  color: #000;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 40px;
  line-height: normal;
}

.brands .brands__link {
  color: #5d5d5d;
  font-family: var(--main-font);
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  text-decoration: underline;
}

.brands .swiper-pagination-brands {
  position: relative;
  top: 0;
  bottom: 0;
  margin-top: 17px;
  margin-bottom: 18px;
  text-align: center;
}

.brands .swiper-buttons-brands {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.swiper-button-prev-brands, .swiper-button-next-brands {
  border-radius: 50%;
  overflow: hidden;
}

.swiper-button-prev-brands {
  margin-right: 6px;
}

.brands_slider_wrapper {
  position: relative;
  overflow: hidden;
}

.brands_slider_item img {
  margin-left: auto;
  margin-right: auto;
}
/* Brands = END */

.ocf-btn-mobile-static.ocf-mobile {
  display: none;
}

/* Burger-animation = START */
.header__burger {
  display: none;
}

.header__burger .line {
  opacity: 1;
}

.header__burger.active .line {
  opacity: 0;
}

/* Хрестик */
.header__burger .cross {
  opacity: 0;
}

.header__burger.active .cross {
  opacity: 1;
}

.header__burger .svg-icon {
  width: 22px;
  transition: transform 0.3s ease-in-out;
}

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

.svg-icon {
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

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

.svg-icon path {
  transition: opacity 0.25s 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 */
div#information-information ol li {
  margin: 0 0 10px;
}
div#information-information ol {
  margin-left: 30px;
}

/* Checkout */
#simplecheckout_customer fieldset.form-horizontal {
  display: flex;
  flex-wrap: wrap;
}

#simplecheckout_customer fieldset.form-horizontal .col-sm-12 {
  padding-left: 3px;
  padding-right: 3px;
  width: 100%;
}

#simplecheckout_customer .form-group.required.row-customer_firstname,
#simplecheckout_customer .form-group.required.row-customer_lastname {
  width: 50%;
  flex-direction: column;
  align-items: flex-start;
}

#simplecheckout_customer label {
  text-align: left;
}

#simplecheckout_customer .form-group.required.row-customer_telephone,
#simplecheckout_customer .form-group.required.row-customer_email {
  flex-direction: column;
}

.simplecheckout-left-column,
.simplecheckout-right-column {
  flex: 0 0 calc(50% - 15px);
  max-width: calc(50% - 15px);
}

/*
@media only screen and (min-width: 769px) {
  .simplecheckout-left-column {
    flex: 0 0 calc(41.666667% - 15px);
    max-width: calc(41.666667% - 15px);
  }

  .simplecheckout-right-column {
    flex: 0 0 calc(58.333333% - 15px);
    max-width: calc(58.333333% - 15px);
  }
}
*/

#simplecheckout_shipping_address .simplecheckout-block-content .form-horizontal > .form-group {
  padding-left: 3px;
  padding-right: 3px;
}

#simplecheckout_shipping_address .simplecheckout-block-content .form-horizontal > .form-group label {
  display: none;
}

#simplecheckout_shipping_address .simplecheckout-block-content .form-horizontal > .form-group .col-sm-12 {
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}

.checkout-simplecheckout .select2-container--bootstrap.select2-container--focus .select2-selection, .checkout-simplecheckout .select2-container--bootstrap.select2-container--open .select2-selection {
  border-color: #E6E6E6;
  background-color: #efefef !important;
  border-radius: 0;
  box-shadow: none;
  transition: all .3s ease;
}

.checkout-simplecheckout .select2-container--bootstrap .select2-selection--single {
  min-height: 42px;
  height: auto;
  line-height: 1.42857143;
  padding: 9px 28px 9px 12px;
  background-color: transparent;
  border: 1px solid #E6E6E6;
  border-radius: 0;
  color: #767676;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: none;
  transition: all .3s ease;
}

.checkout-simplecheckout .select2-container--bootstrap .select2-selection--single:hover {
  background-color: #fdfdfd;
}

.checkout-simplecheckout .select2-container--bootstrap .select2-dropdown--above {
  -webkit-box-shadow: 0 1px 3px -1px rgba(0, 0, 0, .3);
  box-shadow: 0 1px 3px -1px rgba(0, 0, 0, .3);
}

.checkout-simplecheckout .select2-container--bootstrap .select2-dropdown {
  border-color: #ddd;
  box-shadow: 0 1px 3px -1px rgba(0, 0, 0, .3);
}

.checkout-simplecheckout .select2-dropdown {
  border: 1px solid #ddd;
  border-radius: 0;
}

.checkout-simplecheckout .select2-search--dropdown {
  padding: 8px;
}

.checkout-simplecheckout .select2-container--bootstrap .select2-search--dropdown .select2-search__field {
  padding: 4px 8px;
  min-height: 42px;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  border: 1px solid #ccc;
  color: #767676;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 0;
  transition: all .3s ease;
}

.checkout-simplecheckout .select2-container--bootstrap .select2-results__option {
  padding: 8px 12px;
  color: #767676;
  transition: all .3s ease;
}

.checkout-simplecheckout .select2-container--bootstrap .select2-results__option[aria-selected=true] {
  background-color: #efefef;
  color: #767676;
}

.checkout-simplecheckout .select2-container--bootstrap .select2-results__option--highlighted[aria-selected] {
  background-color: #efefef;
  color: #767676;
}

.checkout-simplecheckout .select2-container--bootstrap .select2-selection--single .select2-selection__arrow {
  width: 10px;
  color: #767676;
  display: flex;
  transition: transform .3s ease, color .3s ease;
}

.checkout-simplecheckout .select2-container--bootstrap .select2-selection--single[aria-expanded="true"] .select2-selection__arrow {
  color: #777;
  transform: translate3d(0, 0, 0) rotate(180deg);
}

@media (max-width: 1023.98px) {
  .simplecheckout-left-column {
    flex: 0 0 calc(41.666667% - 15px);
    max-width: calc(41.666667% - 15px);
  }

  .simplecheckout-right-column {
    flex: 0 0 calc(58.333333% - 15px);
    max-width: calc(58.333333% - 15px);
  }

  #simplecheckout_customer .form-group.required.row-customer_firstname, #simplecheckout_customer .form-group.required.row-customer_lastname {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .checkout-simplecheckout .select2-container--bootstrap .select2-selection--single {
    font-size: 3.6vw;
    line-height: 5.1vw;
  }
}