html {
  height: 100%;
}
body {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-x: hidden;
}
@media screen and (max-width: 900px) {
  body {
    margin-top: 60px;
  }
}
.wrapper {
  position: relative;
  scroll-behavior: smooth;
  flex: 1 0 auto;
}
.wrap {
  margin-bottom: 40px;
}
@media screen and (max-width: 900px) {
  .wrap {
    margin-bottom: 20px;
  }
}
.badge-product {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 50;
}
.badge {
  text-transform: uppercase;
  font-size: var(--font-small);
  color: var(--bg-discount-color);
  background: var(--bg-discount);
  display: inline-block;
  padding: 3px 10px 2px;
  border-radius: var(--border-radius);
  font-weight: var(--font-weight-bold);
}
.badge-price {
  background: #FFDD00;
  color: var(--black);
  margin-right: 5px;
}
.hint {
  color: var(--color-grey);
}
.bolder {
  font-weight: var(--font-weight-bold);
}
.black {
  color: var(--font-color);
}
.tags {
  margin: 20px 0 0;
}
.tags a {
  font-size: var(--font-small);
  color: var(--color-darkGrey);
  background: var(--color-lightGrey);
  padding: 3px 15px;
  border-radius: 30px;
  margin-right: 10px;
  display: inline-block;
}
.tags a:active {
  transform: scale(0.98);
}
.instock {
  color: var(--color-success);
}
.outstock {
  color: var(--color-error);
}
.show-minicart {
  visibility: visible !important;
  opacity: 1 !important;
  transform: translateY(2px) !important;
  transition: all 0.2s ease;
}
.icon16.color {
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  width: 12px;
  height: 12px;
  background-image: none;
  display: inline-block;
  margin-right: 5px;
}
.hide {
  display: none !important;
}
.icon-next {
  fill: var(--color-link);
  width: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 3px;
}
@media screen and (max-width: 900px) {
  h1 {
    font-size: var(--font-header) !important;
    line-height: calc(var(--font-header) + 6px);
    margin-top: 0;
  }
}
.header-container {
  display: flex;
  margin-bottom: 20px;
}
.header-container__name {
  flex: 1;
}
.header-container__name h1,
.header-container__name h2 {
  margin-bottom: 0;
}
@media screen and (max-width: 900px) {
  .header-container__name h1 {
    font-size: var(--font-header) !important;
    line-height: calc(var(--font-header) + 6px);
    margin-top: 0;
  }
}
.header-container__func {
  width: 200px;
}
.header-container__func svg {
  stroke: var(--color-link);
  stroke-width: 1;
  width: 15px;
  margin-right: 10px;
}
.loading_ajax {
  width: 25px;
  height: 25px;
  background-image: url("img/loader/tail-spin.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  display: block;
  right: 105px;
  top: 10px;
}
@media screen and (max-width: 900px) {
  .loading_ajax {
    right: 30px;
  }
}
.m-margintop {
  margin-top: 40px;
}
@media screen and (max-width: 900px) {
  .m-margintop {
    margin-top: 0;
  }
}
#cursor {
  --size: 20px;
  position: fixed;
  top: 0;
  left: 0;
  height: var(--size);
  width: var(--size);
  background-color: #000;
  border-radius: 50%;
  transform: translate3d(calc(100vw * var(--cursor-x) - var(--size) / 2), calc(100vh * var(--cursor-y) - var(--size) / 2), 0);
  pointer-events: none;
}
.top-header {
  width: 100%;
  font-size: var(--font-seminormal);
  padding: 5px 0;
}
.top-header .big a:not(.button) {
  padding: 10px 0;
}
.top-header .button {
  padding-left: 25px;
  padding-right: 25px;
  font-weight: var(--font-weight-normal);
  white-space: nowrap;
}
.top-header .outline {
  font-size: var(--font-seminormal);
}
.top-header__container {
  display: flex;
  max-width: var(--grid-maxWidth);
  margin: 0 auto;
  width: 96%;
  padding: 0 calc(var(--grid-gutter) / 2);
}
@media screen and (max-width: 900px) {
  .top-header__container {
    width: 100%;
  }
}
.top-header__leftside {
  flex: 1;
}
.top-header__rightside {
  width: 420px;
  text-align: right;
}
.top-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.top-header ul li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
}
.top-header ul li:last-child {
  margin-right: 0;
}
.top-header ul .tree {
  margin-right: 30px;
}
.top-header ul .tree:after {
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 6px;
  right: -15px;
  content: "\f078";
  font-size: 8px;
  opacity: 0.8;
  font-weight: 600;
}
.top-header ul .tree:hover:after {
  content: "\f077";
}
.top-header ul ul {
  visibility: hidden;
  transition: all 0.3s ease;
  left: -15px;
  top: 30px;
  background: #ffffff;
  position: absolute;
  z-index: 100;
  padding: 5px 15px;
  opacity: 0;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transform: translateY(20px);
  width: 280px;
}
.top-header ul ul li {
  z-index: 20;
  position: relative;
}
.top-header ul ul li a {
  display: block;
  padding: 10px;
}
.top-header ul ul .tree:hover:after {
  content: "\f054";
}
.top-header ul ul .tree:after {
  top: 16px;
  right: 30px;
  content: "\f054";
}
.top-header ul ul ul {
  position: absolute;
  left: 93%;
  top: -5px;
}
.top-header ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  height: auto;
  transform: translateY(0px);
}
.top-header ul.big ul li {
  width: 280px;
}
.top-header ul.small ul li {
  width: 100px;
}
.top-header__user {
  color: var(--color-link);
  margin-right: 5px;
}
.top-header__auth {
  width: 200px;
  margin-left: 25px;
}
.top-header__contact {
  width: 220px;
  text-align: left;
}
@media screen and (max-width: 900px) {
  .top-header {
    display: none;
  }
}
.top-header.black {
  background: var(--color-darkGrey);
  color: var(--color-white);
}
.top-header.black .outline {
  border: 1px solid var(--color-grey);
}
.top-header.black .contact-block__phone i,
.top-header.black .top-header__user {
  color: var(--color-grey) !important;
}
.top-header.black a {
  color: var(--color-lightGrey);
}
.top-header.black ul .tree:after {
  color: var(--color-lightGrey);
}
.top-header.black ul ul {
  background: #ffffff;
}
.top-header.black ul ul li a {
  color: var(--color-darkGrey);
}
.top-header.black ul ul .tree:after {
  color: var(--color-darkGrey);
}
.top-header.black ul .contact-popup {
  color: var(--color-darkGrey);
}
.top-header.white {
  background: var(--color-white);
  color: var(--color-darkGrey);
}
.top-header.white .outline {
  border: 1px solid var(--form-border);
}
.top-header.white a {
  color: var(--color-darkGrey);
}
.top-header.white ul .tree:after {
  color: var(--color-darkGrey);
}
.top-header.white ul ul {
  background: #ffffff;
}
.top-header.white ul ul li a {
  color: var(--color-darkGrey);
}
.top-header.white ul ul .tree:after {
  color: var(--color-darkGrey);
}
.top-header.gray {
  background: var(--bg-secondary-color);
  color: var(--color-darkGrey);
}
.top-header.gray .outline {
  border: 1px solid var(--form-border);
}
.top-header.gray a {
  color: var(--color-darkGrey);
}
.top-header.gray ul .tree:after {
  color: var(--color-darkGrey);
}
.top-header.gray ul ul {
  background: #ffffff;
}
.top-header.gray ul ul li a {
  color: var(--color-darkGrey);
}
.top-header.gray ul ul .tree:after {
  color: var(--color-darkGrey);
}
@media screen and (max-width: 900px) {
  .center-header {
    display: none;
  }
}
body:not(.sticky) .headerbg__white {
  background: var(--color-white);
  color: var(--color-darkGrey);
}
body:not(.sticky) .headerbg__gray {
  background: var(--bg-secondary-color);
  color: var(--color-darkGrey);
}
body:not(.sticky) .headerbg__gray .header {
  margin: 0 !important;
  padding: 20px 0;
}
body:not(.sticky) .headerbg__gray .navigation {
  padding-bottom: 20px;
}
body:not(.sticky) .headerbg__black {
  background: var(--color-darkGrey);
  color: var(--color-white);
}
body:not(.sticky) .headerbg__black .contact-block__tree a {
  color: var(--color-white);
}
body:not(.sticky) .headerbg__black .navigation__inversion .navigation__inner {
  background: transparent;
}
body:not(.sticky) .headerbg__black .navigation__gray .navigation__inner {
  background: transparent;
}
body:not(.sticky) .headerbg__black .navigation__white .navigation__inner {
  background: transparent;
  border: 1px solid var(--color-grey);
}
body:not(.sticky) .headerbg__black .navigation__blocs .navigation__inner {
  background: transparent;
}
body:not(.sticky) .headerbg__black .header__icons__item {
  background: transparent;
}
body:not(.sticky) .headerbg__black .header__icons__text {
  color: var(--color-lightGrey);
}
body:not(.sticky) .headerbg__black .header__icons__item-count {
  border: 2px solid var(--color-darkGrey);
}
body:not(.sticky) .headerbg__black .contact-block__callback a {
  color: var(--color-lightGrey);
}
body:not(.sticky) .headerbg__black .navigation__inversion .navigation__menu-h a,
body:not(.sticky) .headerbg__black .navigation__white .navigation__menu-h a {
  color: var(--color-white);
}
body:not(.sticky) .headerbg__black .navigation__gray .navigation__menu-h a {
  color: var(--color-white);
  border-right: 0;
}
body:not(.sticky) .headerbg__black .header {
  margin: 0 !important;
  padding: 20px 0;
}
body:not(.sticky) .headerbg__black .header__icons__item {
  border: 0;
}
body:not(.sticky) .headerbg__black .header__icons__item:hover {
  border: 0;
}
body:not(.sticky) .headerbg__black .popup-cart-title {
  color: var(--color-darkGrey);
}
body:not(.sticky) .headerbg__black .navigation {
  padding-bottom: 20px;
}
body:not(.sticky) .headerbg__black .navigation__inner {
  border: 0;
}
.header {
  display: flex;
  margin: 20px 0;
}
.header__leftside {
  margin-right: 25px;
  width: 225px;
  display: flex;
  flex-direction: column;
}
.header__leftside .header__logo-text {
  max-width: unset !important;
}
.header__rightside {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.header__top {
  display: flex;
}
.header__bottom {
  display: flex;
}
.header__logo {
  line-height: 0;
  height: 100%;
  display: flex;
  font-size: 30px;
  color: var(--color-primary);
}
.header__logo-text {
  font-size: var(--font-small);
  line-height: calc(var(--font-small) + 2px);
  text-align: center;
  color: var(--color-grey);
  margin-top: 5px;
  max-width: 200px;
}
.header__catalog-button button {
  width: 100%;
  font-size: var(--font-middle);
  font-weight: var(--font-weight-bold);
  background: var(--bg-catalog);
  height: var(--catalog-height);
  text-align: left;
  padding-left: 60px;
  min-width: 180px;
  box-shadow: var(--box-shadow-item);
}
.header__catalog-button button .icon-catalog {
  position: absolute;
  left: 15px;
  top: 13px;
  fill: #fff;
  width: 28px;
}
.header__catalog-button button .icon-close-tin {
  position: absolute;
  left: 20px;
  top: 12px;
  stroke: #fff;
  stroke-width: 2;
  width: 18px;
  display: none;
}
.header__catalog-button.active .icon-catalog {
  display: none;
}
.header__catalog-button.active .icon-close-tin {
  display: block;
}
.header__contact {
  align-items: center;
}
.header__catalog {
  width: 180px;
}
.header__catalog-hide {
  display: none;
}
.header__search {
  flex: 1;
  position: relative;
  height: var(--catalog-height);
  font-size: var(--font-normal);
  min-width: 50px;
}
.header__search-icon .loading_ajax {
  right: 60px !important;
}
.header__search .icon-search-leftside {
  position: absolute;
  width: 25px;
  left: 20px;
  top: 15px;
  fill: var(--color-grey);
}
.header__search form {
  height: var(--catalog-height);
}
.header__search input {
  height: 100%;
  padding-left: 50px !important;
  font-size: var(--font-middle);
}
.header__search input.header__search__padding-less {
  padding-left: 15px !important;
}
.header__search button {
  position: absolute;
  right: -2px;
  top: 0;
  height: 100%;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  font-size: var(--font-middle);
  background: var(--color-primary);
  padding-left: 20px;
  padding-right: 20px;
  min-width: 50px;
}
.header__search .search-popup {
  position: relative;
  z-index: 50;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
}
.header__search .search-popup.search-popup-show {
  transition: all 0.2s ease;
  transform: translateY(1px);
  opacity: 1;
  visibility: visible;
}
.header__search-type1 .icon-search-rightside {
  position: absolute;
  width: 25px;
  left: 16px;
  top: 14px;
  fill: var(--color-white);
}
.header__search-type2 .icon-search-leftside {
  display: none;
}
.header__search-type2 .icon-search-rightside {
  position: absolute;
  width: 25px;
  right: 0;
  top: 14px;
  fill: var(--color-grey);
}
.header__search-type2 button {
  background: var(--color-white);
  border-bottom: 1px solid var(--form-border);
  border-radius: 0 !important;
  color: var(--color-grey);
}
.header__search-type2 button.btn-text {
  background: var(--color-white);
  padding-right: 0 !important;
}
.header__search-type2 input {
  border: 0 !important;
  border-bottom: 1px solid var(--form-border) !important;
  border-radius: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.header__search-type3 .icon-search-leftside {
  display: none;
}
.header__search-type3 .icon-search-rightside {
  position: absolute;
  width: 25px;
  right: 6px;
  top: 14px;
  fill: var(--color-primary);
}
.header__search-type3 button {
  background: var(--color-white);
  border: 1px solid var(--form-border);
  color: var(--color-primary);
}
.header__search-type3 button.btn-text {
  background: var(--color-white);
}
.header__search-type3 input {
  padding-left: 15px !important;
  padding-right: 0 !important;
}
.header__search-type4 .icon-search-leftside {
  display: none;
}
.header__search-type4 .icon-search-rightside {
  position: absolute;
  width: 25px;
  right: 6px;
  top: 14px;
  fill: var(--color-primary);
}
.header__search-type4 button {
  background: var(--bg-secondary-color);
  border: 0;
  color: var(--color-grey);
}
.header__search-type4 button.btn-text {
  background: var(--bg-secondary-color);
}
.header__search-type4 input {
  background: var(--bg-secondary-color);
  padding-left: 15px !important;
  padding-right: 0 !important;
  border: 0 !important;
}
.header__search-type5 .icon-search-leftside {
  display: none;
}
.header__search-type5 .icon-search-rightside {
  position: absolute;
  width: 25px;
  right: 8px;
  top: 14px;
  fill: var(--color-white);
}
.header__search-type5 button {
  background: var(--color-primary) !important;
  border: 0;
  color: var(--color-white);
}
.header__search-type5 input {
  background: var(--bg-secondary-color);
  padding-left: 15px !important;
  padding-right: 0 !important;
  border: 0 !important;
}
.header__search__popup {
  background: var(--bg-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  z-index: 150;
  border: 1px solid var(--form-border);
  text-align: left;
  line-height: 20px;
  transition: all 0.2s ease;
}
.header__search__popup-scroll {
  max-height: 300px;
  overflow-y: auto;
}
.header__search__popup-title {
  font-size: var(--font-bigger);
  font-weight: var(--font-weight-bold);
  padding: 20px;
}
.header__search__popup-title-count {
  background: var(--color-lightGrey);
  color: var(--color-grey);
  font-size: var(--font-small);
  display: inline-block;
  vertical-align: middle;
  padding: 0 10px;
  border-radius: var(--border-radius);
  margin-left: 10px;
}
.header__search__popup-checkout {
  padding: 20px;
  border-top: 1px solid var(--form-border);
  display: flex;
}
.header__search__popup-checkout-btn {
  flex: 1;
}
.header__search__popup-checkout-total {
  flex: 1;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-bigger);
}
.header__search__popup-inner {
  background: var(--bg-color);
  padding: 0 10px 10px 10px;
  border-radius: var(--border-radius);
  display: flex;
}
.header__search__popup-inner a {
  color: var(--color-darkGrey);
  position: static !important;
}
.header__search__popup-name {
  margin-bottom: 5px;
  width: 100%;
}
.header__search__popup-sku {
  color: var(--color-grey);
}
.header__search__popup-price {
  font-size: var(--font-bigger);
  color: var(--color-link);
  font-weight: var(--font-weight-bold);
  display: block;
  width: 100%;
}
.header__search__popup-price s {
  font-weight: var(--font-weight-normal);
  color: var(--color-grey);
  font-size: var(--font-normal);
  display: inline-block;
}
.header__search__popup-text {
  flex: 1;
  padding-right: 20px;
}
.header__search__popup-img {
  width: 65px;
  max-height: 50px;
  margin-right: 10px;
  text-align: center;
}
.header__search__popup-img img {
  max-height: 50px;
  max-width: 50px;
}
.header__search__popup-button .remove-icon {
  height: 25px;
  width: 25px;
  padding: 0;
  background: var(--bg-color);
  border: 1px solid var(--color-link);
  color: var(--color-link);
  position: relative;
  min-height: unset;
}
.header__search__popup-button .remove-icon span {
  position: absolute;
  top: 2px;
  left: 8px;
  font-weight: var(--font-weight-normal);
}
.header__search__popup-button .remove-icon:hover {
  background: var(--color-link);
  color: var(--bg-color);
}
.header__icons {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}
.header__icons__text {
  position: relative;
  bottom: -16px;
}
.header__icons__link {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.header__icons__item {
  border: 1px solid var(--form-border);
  border-radius: var(--border-radius);
  height: var(--catalog-height);
  width: var(--catalog-height);
  text-align: center;
  position: relative;
  margin-left: 25px;
  background: var(--color-white);
  box-shadow: var(--box-shadow-item);
}
.header__icons__item:hover {
  border: 1px solid var(--color-grey);
  transition: 0.3s;
}
.header__icons__item svg {
  fill: transparent;
  stroke-width: 2;
  width: 25px;
  stroke-miterlimit: 10;
}
.header__icons__item .icon-user {
  stroke: var(--color-grey);
}
.header__icons__item .icon-search2 {
  stroke: var(--color-grey);
}
.header__icons__item .icon-cart {
  stroke: var(--color-primary);
}
.header__icons__item .icon-compare {
  stroke: var(--color-third);
}
.header__icons__item .icon-favorite {
  stroke: var(--color-second);
}
.header__icons__item-text {
  border: 0;
  margin-left: 35px;
  font-size: var(--font-small);
  color: var(--color-darkGrey);
}
.header__icons__item-text:hover {
  border: 0;
}
.header__icons__item-text svg {
  position: absolute;
  top: 0;
}
.header__icons__item-count {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  color: var(--color-white);
  background: var(--color-second);
  border-radius: 50%;
  font-size: 10px;
  line-height: 20px;
  font-weight: var(--font-weight-bold);
  border: 2px solid var(--bg-color);
}
.header__cart {
  position: relative;
}
.header__popup-cart {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: -1px;
  top: 40px;
  background: var(--bg-color);
  width: 400px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  z-index: 150;
  border: 1px solid var(--form-border);
  text-align: left;
  line-height: 20px;
  transition: all 0.2s ease;
  transform: translateY(20px);
}
.header__popup-cart-loading {
  color: var(--color-grey);
  padding: 20px;
}
.header__popup-cart .popup-cart-scroll {
  max-height: 300px;
  overflow-y: auto;
}
.header__popup-cart .popup-cart-title {
  font-size: var(--font-bigger);
  font-weight: var(--font-weight-bold);
  padding: 20px;
}
.header__popup-cart .popup-cart-title-count {
  background: var(--color-lightGrey);
  color: var(--color-grey);
  font-size: var(--font-small);
  display: inline-block;
  vertical-align: middle;
  padding: 0 10px;
  border-radius: var(--border-radius);
  margin-left: 10px;
}
.header__popup-cart .popup-cart-checkout {
  padding: 20px;
  border-top: 1px solid var(--form-border);
  display: flex;
}
.header__popup-cart .popup-cart-checkout-btn {
  flex: 1;
}
.header__popup-cart .popup-cart-checkout-total {
  flex: 1;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-bigger);
}
.header__popup-cart .popup-cart-inner {
  background: var(--bg-color);
  padding: 0 10px 10px 10px;
  border-radius: var(--border-radius);
  display: flex;
}
.header__popup-cart .popup-cart-inner a {
  color: var(--color-darkGrey);
  position: static !important;
}
.header__popup-cart .popup-cart-name {
  margin-bottom: 5px;
  width: 100%;
}
.header__popup-cart .popup-cart-sku {
  color: var(--color-grey);
}
.header__popup-cart .popup-cart-change {
  display: none;
}
.header__popup-cart .popup-cart-price {
  font-size: var(--font-bigger);
  color: var(--color-link);
  font-weight: var(--font-weight-bold);
  display: block;
  width: 100%;
}
.header__popup-cart .popup-cart-price .qty {
  background: var(--color-lightGrey);
  color: var(--color-grey);
  font-size: var(--font-small);
  display: inline-block;
  vertical-align: middle;
  padding: 0 10px;
  border-radius: var(--border-radius);
  margin-left: 10px;
}
.header__popup-cart .popup-cart-text {
  flex: 1;
  padding-right: 20px;
}
.header__popup-cart .popup-cart-img {
  width: 65px;
  max-height: 50px;
  margin-right: 10px;
  text-align: center;
}
.header__popup-cart .popup-cart-img img {
  max-height: 50px;
  max-width: 50px;
}
.header__popup-cart .popup-cart-button .remove-icon {
  height: 25px;
  width: 25px;
  padding: 0;
  background: var(--bg-color);
  border: 1px solid var(--color-link);
  color: var(--color-link);
  position: relative;
  min-height: unset;
}
.header__popup-cart .popup-cart-button .remove-icon span {
  position: absolute;
  top: 2px;
  left: 8px;
  font-weight: var(--font-weight-normal);
}
.header__popup-cart .popup-cart-button .remove-icon:hover {
  background: var(--color-link);
  color: var(--bg-color);
}
.contact-block {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.contact-block__tree a {
  color: var(--font-color);
  font-size: var(--font-bigger);
}
.contact-block__tree:hover .contact-block__popup {
  opacity: 1;
  visibility: visible;
  height: auto;
  transform: translateY(0px);
}
.contact-block__tree:hover .contact-block__phone-arrow:before {
  content: "\f077";
}
.contact-block__callback {
  text-align: center;
}
.contact-block__callback a {
  color: var(--color-grey);
  font-size: var(--font-small);
  text-decoration: underline;
}
.contact-block__popup {
  visibility: hidden;
  transition: all 0.3s ease;
  left: -50px;
  top: 30px;
  background: #ffffff;
  color: var(--font-color);
  position: absolute;
  z-index: 100;
  padding: 5px 15px;
  opacity: 0;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transform: translateY(20px);
  width: 250px;
}
.contact-block__header {
  border-bottom: 1px solid var(--form-border);
  padding: 10px;
  font-weight: var(--font-weight-bold);
}
.contact-block__header a {
  color: var(--color-link) !important;
  font-size: var(--font-normal);
}
.contact-block__header span {
  display: block;
  font-weight: var(--font-weight-normal);
}
.contact-block__icons {
  padding-top: 15px;
  text-align: center;
}
.contact-block__icons svg {
  margin: 0 5px;
}
.contact-block__phone {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-middle);
}
.contact-block__phone-arrow {
  font-size: 10px !important;
  color: var(--color-grey) !important;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px !important;
  margin-bottom: 3px;
}
.contact-block__phone i {
  color: var(--color-link);
  margin-right: 5px;
  font-size: var(--font-normal);
}
body.sticky-mobile {
  overflow: hidden;
  -webkit-overflow-scrolling: touch !important;
  position: fixed;
}
body.sticky .main-menu,
body.sticky .main-menu__overlay {
  position: fixed;
}
body.sticky .header__icons__search,
body.sticky .contact-block,
body.sticky .header__logo-text {
  display: none;
}
body.sticky .main-menu.active {
  top: 64px !important;
}
body.sticky .main-menu.mm-header-2.active {
  margin-top: 0 !important;
}
body.sticky .header__type21 {
  margin-right: 20px;
}
body.sticky .header-sticky {
  position: fixed;
  z-index: 1000;
  background: #fff;
  top: 0;
  width: 100%;
  max-width: 100%;
  box-shadow: var(--box-shadow);
}
body.sticky .header-sticky .header__catalog-hide,
body.sticky .header-sticky .header__catalog {
  display: block;
}
body.sticky .header-sticky .header {
  padding: 10px;
  max-width: var(--grid-maxWidth);
  margin: 0 auto;
  width: 96%;
}
@media screen and (max-width: 900px) {
  body.sticky .header-sticky .header {
    width: 100%;
  }
}
body.sticky .header-sticky .header__top,
body.sticky .header-sticky .header__leftside {
  display: none;
}
body.sticky-always .main-menu,
body.sticky-always .main-menu__overlay {
  position: fixed;
}
body.sticky-always .main-menu.active {
  top: 65px !important;
}
body.sticky-always .header-sticky {
  position: fixed;
  z-index: 1000;
  background: #fff;
  top: 0;
  width: 100%;
  max-width: 100%;
  box-shadow: var(--box-shadow);
}
body.sticky-always .header-sticky .header {
  padding: 0;
  margin: 0 auto;
}
body.sticky-always .header-sticky .header__top,
body.sticky-always .header-sticky .header__leftside {
  display: none;
}
.center-header .search-popup {
  position: relative;
  z-index: 50;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
}
.center-header .search-popup.search-popup-show {
  transition: all 0.2s ease;
  transform: translateY(1px);
  opacity: 1;
  visibility: visible;
}
.center-header__popup {
  background: var(--bg-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  z-index: 150;
  border: 1px solid var(--form-border);
  text-align: left;
  line-height: 20px;
  transition: all 0.2s ease;
}
.center-header__popup-scroll {
  max-height: 300px;
  overflow-y: auto;
}
.center-header__popup-title {
  font-size: var(--font-bigger);
  font-weight: var(--font-weight-bold);
  padding: 20px;
}
.center-header__popup-title-count {
  background: var(--color-lightGrey);
  color: var(--color-grey);
  font-size: var(--font-small);
  display: inline-block;
  vertical-align: middle;
  padding: 0 10px;
  border-radius: var(--border-radius);
  margin-left: 10px;
}
.center-header__popup-checkout {
  padding: 20px;
  border-top: 1px solid var(--form-border);
  display: flex;
}
.center-header__popup-checkout-btn {
  flex: 1;
}
.center-header__popup-checkout-total {
  flex: 1;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-bigger);
}
.center-header__popup-inner {
  background: var(--bg-color);
  padding: 0 10px 10px 10px;
  border-radius: var(--border-radius);
  display: flex;
}
.center-header__popup-inner a {
  color: var(--color-darkGrey);
  position: static !important;
}
.center-header__popup-name {
  margin-bottom: 5px;
  width: 100%;
}
.center-header__popup-sku {
  color: var(--color-grey);
}
.center-header__popup-price {
  font-size: var(--font-bigger);
  color: var(--color-link);
  font-weight: var(--font-weight-bold);
  display: block;
  width: 100%;
}
.center-header__popup-price s {
  font-weight: var(--font-weight-normal);
  color: var(--color-grey);
  font-size: var(--font-normal);
  display: inline-block;
}
.center-header__popup-text {
  flex: 1;
  padding-right: 20px;
}
.center-header__popup-img {
  width: 65px;
  max-height: 50px;
  margin-right: 10px;
  text-align: center;
}
.center-header__popup-img img {
  max-height: 50px;
  max-width: 50px;
}
.center-header__popup-button .remove-icon {
  height: 25px;
  width: 25px;
  padding: 0;
  background: var(--bg-color);
  border: 1px solid var(--color-link);
  color: var(--color-link);
  position: relative;
  min-height: unset;
}
.center-header__popup-button .remove-icon span {
  position: absolute;
  top: 2px;
  left: 8px;
  font-weight: var(--font-weight-normal);
}
.center-header__popup-button .remove-icon:hover {
  background: var(--color-link);
  color: var(--bg-color);
}
.header__type21,
.header__type22,
.header__type23,
.header__type24 {
  display: none;
}
.icon-whatsapp {
  width: 26px;
  height: 26px;
}
.icon-viber {
  width: 26px;
  height: 26px;
}
.icon-telegram {
  width: 26px;
  height: 26px;
}
.navigation {
  display: flex;
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .navigation {
    display: none;
  }
}
.navigation__catalog {
  width: 180px;
  min-width: 180px;
  position: relative;
  background: var(--color-second) !important;
  margin-right: 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-item);
}
.navigation__catalog a {
  font-size: var(--font-middle);
  font-weight: var(--font-weight-bold);
  line-height: calc(var(--font-middle) + 4px);
  color: var(--color-white);
  width: 100%;
  height: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 0 10px;
}
.navigation__catalog a:hover {
  color: var(--color-white);
}
.navigation__catalog .icon-catalog {
  position: absolute;
  left: 22px;
  top: calc(50% - 8px);
  fill: #fff;
  width: 28px;
}
.navigation__catalog .icon-close-tin {
  position: absolute;
  left: 24px;
  top: 19px;
  stroke: #fff;
  stroke-width: 2;
  width: 17px;
  display: none;
}
.navigation__catalog.active .icon-catalog {
  display: none;
}
.navigation__catalog.active .icon-close-tin {
  display: block;
}
.navigation__leftside {
  flex: 1;
}
.navigation__rightside {
  width: 182px;
  margin-left: 25px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .navigation__rightside {
    display: none;
  }
}
.navigation__inner {
  background: var(--color-primary);
  height: calc(var(--catalog-height) + 10px);
  border-radius: var(--border-radius);
}
.navigation__menu-h {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  height: 100%;
}
.navigation__menu-h a {
  color: var(--color-white);
  font-size: var(--font-normal);
  font-weight: var(--font-weight-bold);
  line-height: calc(var(--font-middle) + 4px);
  width: 100%;
  height: 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
  padding: 0 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  transition: opacity 0.2s ease;
}
.navigation__menu-h a:hover {
  opacity: 0.8;
}
.navigation__menu-h li {
  flex-grow: 1;
  position: relative;
}
.navigation__menu-h li:last-child a {
  border-right: 0;
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}
.navigation__menu-h ul {
  visibility: hidden;
  transition: all 0.3s ease;
  left: 0;
  background: #ffffff;
  position: absolute;
  z-index: 100;
  padding: 5px 15px;
  opacity: 0;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transform: translateY(20px);
  width: 280px;
  list-style: none;
}
.navigation__menu-h ul li {
  z-index: 20;
  position: relative;
}
.navigation__menu-h ul li a {
  display: block;
  padding: 7px 10px !important;
  background: transparent !important;
  box-shadow: unset !important;
  text-align: left;
  font-weight: var(--font-weight-normal);
  color: var(--color-darkGrey) !important;
}
.navigation__menu-h ul li a:hover {
  color: var(--color-link) !important;
}
.navigation__menu-h ul .tree:after {
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 6px;
  right: -15px;
  content: "\f078";
  font-size: 8px;
  opacity: 0.8;
  font-weight: 600;
}
.navigation__menu-h ul .tree:after {
  top: 10px;
  right: 5px;
  content: "\f054";
}
.navigation__menu-h ul ul {
  position: absolute;
  left: 100%;
  top: -5px;
}
.navigation__menu-h li:hover > ul {
  opacity: 1;
  visibility: visible;
  height: auto;
  transform: translateY(0px);
}
.navigation__inversion .navigation__inner {
  background: var(--color-white);
  border-top: 1px solid var(--form-border);
  border-bottom: 1px solid var(--form-border);
  border-radius: 0;
}
.navigation__inversion .navigation__menu-h a {
  color: var(--font-color);
}
.navigation__inversion .navigation__menu-h a:hover {
  color: var(--color-link);
}
.navigation__gray .navigation__inner {
  background: var(--bg-secondary-color);
  border-top: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
}
.navigation__gray .navigation__menu-h a {
  color: var(--font-color);
}
.navigation__gray .navigation__menu-h a:hover {
  color: var(--color-link);
}
.navigation__white .navigation__inner {
  background: var(--color-white);
  border-top: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
}
.navigation__white .navigation__menu-h a {
  color: var(--font-color);
}
.navigation__white .navigation__menu-h a:hover {
  color: var(--color-link);
}
.navigation__blocs .navigation__inner {
  background: var(--color-white);
  border-top: 1px solid var(--color-white);
  border-bottom: 1px solid var(--color-white);
  height: 100%;
}
.navigation__blocs .navigation__menu-h li {
  margin-right: 15px;
}
.navigation__blocs .navigation__menu-h li:last-child {
  margin-right: 0;
}
.navigation__blocs .navigation__menu-h li li:last-child {
  margin-right: 15px !important;
}
.navigation__blocs .navigation__promo {
  height: 100%;
}
.navigation__blocs .navigation__menu-h a {
  color: var(--font-color);
  background: var(--bg-secondary-color);
  border-radius: var(--border-radius);
  box-shadow: 0 1px 3px #cbcbcb;
  height: 100%;
  padding: 10px 15px;
}
.navigation__blocs .navigation__menu-h a:hover {
  color: var(--color-link);
}
.navigation__promo {
  background: var(--bg-discount);
  height: calc(var(--catalog-height) + 10px);
  border-radius: var(--border-radius);
  font-size: var(--font-middle);
  font-weight: var(--font-weight-bold);
  color: var(--bg-discount-color);
  position: relative;
  z-index: 1;
  box-shadow: var(--box-shadow-item);
}
.navigation__promo:active {
  transform: scale(0.98);
}
.navigation__promo a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.navigation__promo svg {
  width: 22px;
  display: inline-block;
  vertical-align: middle;
  fill: var(--bg-discount-color);
  margin-right: 5px;
}
.main-menu__overlay.active {
  opacity: 1;
  visibility: visible;
}
.main-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.main-menu.mm-header-2.active {
  margin-top: 70px;
}
.main-menu {
  position: absolute;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition-property: opacity;
  transition-duration: 0.25s;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
@media screen and (max-width: 900px) {
  .main-menu {
    display: none;
  }
}
.main-menu .item-tohide {
  display: none !important;
}
.main-menu__withicon {
  padding-left: 80px;
  position: relative;
}
.main-menu__icons {
  position: absolute;
  left: 0;
  top: 2px;
  width: 65px;
  height: 65px;
  border: 1px solid var(--form-border);
  border-radius: var(--border-radius);
  padding: 5px;
}
.main-menu__icons img {
  max-height: 50px;
}
.main-menu__icons a {
  font-size: 8px;
  color: var(--color-lightGrey);
  text-align: center;
}
@media screen and (max-width: 900px) {
  .main-menu__icons {
    display: none;
  }
}
.main-menu .mobile-open {
  display: none;
  position: absolute;
  right: 8px;
  top: 8px;
  color: var(--color-grey);
  background: var(--bg-secondary-color);
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: var(--border-radius);
  z-index: 10;
  cursor: pointer;
}
.main-menu__show-all {
  color: var(--color-link) !important;
}
.main-menu__show-all svg {
  width: 20px;
  display: inline-block;
  vertical-align: middle;
  fill: var(--color-link);
}
.main-menu a {
  color: var(--font-color);
}
.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-menu ul li {
  margin: 5px 0;
}
.main-menu ul li a {
  display: block;
}
.main-menu ul li a:hover {
  background: #fff;
  color: var(--color-primary);
}
.main-menu__overlay {
  background-color: rgba(26, 49, 77, 0.5);
  transition-property: opacity;
  transition-duration: 0.25s;
  position: absolute;
  cursor: pointer;
  z-index: 99;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 100%;
  opacity: 0;
  visibility: hidden;
}
.main-menu__inner {
  display: flex;
  max-width: var(--grid-maxWidth);
  margin: 0 auto;
  width: 96%;
  padding: 0 calc(var(--grid-gutter) / 2);
  border-radius: var(--border-radius);
}
.main-menu__leftside {
  padding: 30px 0;
  width: 300px;
  background: var(--bg-secondary-color);
  font-size: var(--font-middle);
  text-align: left;
  border-top-left-radius: var(--border-radius);
}
.main-menu__leftside ul {
  background: var(--bg-secondary-color);
}
.main-menu__leftside a {
  padding: 5px 55px 5px 55px;
  font-weight: var(--font-weight-bold);
}
.main-menu__leftside li.tree {
  position: relative;
}
.main-menu__leftside li.tree:after {
  position: absolute;
  right: 25px;
  top: 8px;
  color: #babac1;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: var(--font-small);
}
.main-menu__leftside li {
  border-right: 3px solid transparent;
}
.main-menu__leftside li.selected {
  border-right: 3px solid var(--color-primary);
}
.main-menu__leftside li.selected:after {
  color: var(--color-primary);
}
.main-menu__leftside li.selected a {
  background: #fff;
  color: var(--color-primary);
}
.main-menu__rightside {
  padding: 35px 0 0 25px;
  flex: 1;
  background: #fff;
}
.main-menu__rightside a:hover {
  color: var(--color-primary);
}
.main-menu__box-inner {
  padding-bottom: 50px;
}
.main-menu__box.active {
  display: block;
}
.main-menu__item {
  width: 100%;
  position: relative;
  margin-bottom: 8px;
  display: none;
  font-weight: var(--font-weight-bold);
}
.main-menu__item .main-menu__item {
  display: inline-block;
  width: 30%;
  vertical-align: top;
  margin-bottom: 40px;
  margin-right: 20px;
  font-weight: var(--font-weight-normal);
  min-height: 60px;
}
@media screen and (max-width: 900px) {
  .main-menu__item .main-menu__item {
    min-height: unset;
  }
}
.main-menu__item .main-menu__item .main-menu__item {
  display: block;
  width: 100%;
  margin-bottom: 2px;
  min-height: unset;
}
.main-menu__item .main-menu__item .main-menu__item li {
  font-weight: var(--font-weight-normal);
}
.main-menu__item.active {
  display: block !important;
}
.main-menu__item.selected {
  display: inline-block;
}
.main-menu .icon-close {
  position: absolute;
  right: 0;
  top: 9px;
  stroke: var(--color-grey);
  stroke-width: 1;
  width: 27px;
  cursor: pointer;
}
.main-menu .icon-close:hover {
  stroke: var(--color-grey);
  transform: rotate(90deg);
  transition-duration: 0.3s;
}
.main-menu a.depth0_header {
  font-size: var(--font-bigger);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-top: 3px;
  display: block;
  border-bottom: 1px solid var(--form-border);
  padding-bottom: 15px;
  margin-bottom: 18px;
}
.main-menu a.depth1_header {
  font-size: var(--font-middle);
  font-weight: var(--font-weight-bold);
  margin-bottom: 10px;
  margin-top: 0;
  display: block;
}
.main-menu__pages {
  display: none;
}
.main-menu__pages a {
  display: block;
}
ul.sorting {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  margin-right: 20px;
  box-shadow: var(--box-shadow-form);
  border-radius: var(--border-radius);
}
ul.sorting:last-child {
  margin-right: 0;
}
@media screen and (max-width: 900px) {
  ul.sorting {
    flex: 1;
    display: flex;
    margin-right: 10px;
  }
}
ul.sorting li {
  display: inline-block;
  margin-right: 15px;
  position: relative;
}
ul.sorting li:last-child {
  margin-right: 0;
}
ul.sorting li.selected a {
  color: var(--color-primary);
  font-weight: var(--font-weight-bold);
}
ul.sorting .tree {
  margin-right: 30px;
  border: 1px solid var(--form-border);
  padding: 5px 40px 5px 20px;
  border-radius: var(--border-radius);
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  background: var(--color-white);
}
@media screen and (max-width: 900px) {
  ul.sorting .tree {
    width: 100%;
  }
}
ul.sorting .tree:after {
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: calc(50% - 10px);
  right: 15px;
  content: "\f078";
  font-size: 12px;
  opacity: 0.8;
  font-weight: 600;
}
ul.sorting .tree:hover {
  border-color: var(--color-grey);
}
ul.sorting .tree:hover:after {
  content: "\f077";
  color: var(--color-primary);
  top: calc(50% - 9px);
}
ul.sorting ul {
  visibility: hidden;
  transition: all 0.3s ease;
  left: -1px;
  top: 34px;
  background: #ffffff;
  position: absolute;
  z-index: 60;
  padding: 0 15px;
  opacity: 0;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--form-border);
  transform: translateY(20px);
}
ul.sorting ul li {
  z-index: 20;
  position: relative;
  width: 200px;
  font-weight: var(--font-weight-semibold);
}
ul.sorting ul li a {
  display: inline-block;
  padding: 5px;
  color: var(--font-color);
}
ul.sorting ul i {
  font-size: 12px;
  opacity: 0.8;
  margin-left: 3px;
}
ul.sorting li:hover ul {
  opacity: 1;
  visibility: visible;
  height: auto;
  transform: translateY(0);
}
ul.sorting .sorting__arrow {
  display: inline-block;
  color: var(--color-primary);
}
ul.sorting .sorting__selected {
  font-weight: var(--font-weight-bold);
}
ul.sorting .sorting__selected a {
  color: var(--color-primary);
}
/** Static **/
.menu-t.static {
  position: relative;
  display: block;
  margin: 0 0 20px 0;
  padding: 0;
  border: 1px solid var(--form-border);
  border-radius: var(--border-radius);
  list-style: none;
  background: #ffffff;
  box-shadow: var(--box-shadow-item);
  /** Big menu **/
  /** Tree **/
}
.menu-t.static li {
  z-index: 10;
  margin: 0;
  border-right: 0;
  border-bottom: 1px solid var(--form-border);
  position: relative;
  transition: all 0.2s ease-in-out 0s;
  width: 100%;
}
.menu-t.static li a {
  text-transform: none;
  display: block;
  padding: 10px 35px 10px 15px;
  margin: 0;
  font-size: var(--font-normal);
  color: var(--font-color);
  line-height: 22px;
  text-decoration: none;
}
.menu-t.static li a:hover {
  color: var(--color-link);
}
.menu-t.static li:hover {
  background: var(--bg-secondary-color);
}
.menu-t.static li:first-child {
  border-top: 0;
}
.menu-t.static li:first-child:hover {
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}
.menu-t.static li:last-child {
  border-bottom: 0;
}
.menu-t.static li:last-child:hover {
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}
.menu-t.static li.header {
  padding: 10px 15px;
  font-weight: 700;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
  position: relative;
  z-index: 10;
  cursor: default;
  font-size: 17px;
}
.menu-t.static li.header:hover {
  background: var(--color-white);
}
.menu-t.static li.selected a {
  color: var(--color-link);
  font-weight: var(--font-weight-bold);
}
.menu-t.static ul {
  top: -1px;
  visibility: hidden;
  opacity: 0;
  box-shadow: none;
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  position: absolute;
  background: #ffffff;
  margin: 0 0 0 -10px;
  padding: 0;
  border: 1px solid var(--form-border);
  left: 130%;
}
.menu-t.static ul li {
  width: 260px;
  display: block;
}
.menu-t.static ul:after {
  border: none;
  border-width: 0;
}
.menu-t.static .tree > a {
  position: relative;
}
.menu-t.static .tree > a:after {
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  right: 15px;
  content: "\f054";
  font-size: 8px;
  color: var(--color-grey);
  font-weight: 600;
}
.menu-t.static li:hover > ul {
  visibility: visible;
  height: auto;
  opacity: 1;
  transition: all 0.3s ease;
  left: 100%;
}
.hamburger {
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
  padding: 0 !important;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: var(--color-primary);
}
.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -8px;
}
.hamburger-inner::after {
  bottom: -10px;
}
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -16px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active {
  top: 10px !important;
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.mobile-header {
  width: 100%;
  height: 50px;
  margin: 0;
  padding: 0;
  font-size: 17px;
  list-style: none;
  border: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 4px 22px 1px rgba(93, 93, 93, 0.2);
  background: var(--color-white);
  display: none;
}
@media screen and (max-width: 900px) {
  .mobile-header {
    display: flex;
  }
}
.mobile-header__logo {
  font-weight: var(--font-weight-bold);
  width: 100%;
  max-width: 100%;
  text-transform: uppercase;
  font-size: var(--font-bigger);
  margin-left: 60px;
  border-left: 1px solid var(--form-border);
  padding-left: 20px;
  position: relative;
  margin-right: 120px;
}
.mobile-header__logo img {
  max-height: 35px;
}
.mobile-header__logo a {
  width: 100%;
  height: 100%;
  z-index: 10;
  position: absolute;
}
.mobile-header__menu {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 50px;
  cursor: pointer;
}
.mobile-header__menu button {
  position: absolute;
  left: 15px;
  top: 9px;
}
.mobile-header__contacts {
  position: absolute;
  right: 63px;
  top: 5px;
}
.mobile-header__contacts-popup {
  width: 100%;
  height: auto;
  padding: 20px 20px 5px 20px;
  background: var(--color-white);
  position: absolute;
  left: 0;
  right: 0;
  top: -100%;
  z-index: 999;
  box-shadow: 0 4px 22px 1px rgba(93, 93, 93, 0.2);
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.1s;
}
.mobile-header__contacts-popup.open {
  top: 50px;
  opacity: 1;
  visibility: visible;
}
.mobile-header__contacts-time {
  color: var(--color-grey);
}
.mobile-header__contacts-phone a {
  color: var(--font-color);
  font-weight: var(--font-weight-bold);
  display: inline-block;
  margin: 0 10px;
  font-size: var(--font-header);
}
.mobile-header__contacts-block {
  padding: 2px 10px;
}
.mobile-header__contacts-icons {
  margin-top: 5px;
  padding-top: 15px;
  border-top: 1px solid var(--form-border);
}
.mobile-header__contacts-icons a {
  padding-top: 10px;
  margin: 0 10px;
}
.mobile-header__contacts svg {
  width: 40px !important;
}
.mobile-header__cart {
  position: absolute;
  right: 10px;
  top: 1px;
}
.mobile-header__icons {
  justify-content: space-around;
  display: flex;
  border-bottom: 0;
}
.mobile-header__icons__link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.mobile-header__icons__item {
  border-radius: var(--border-radius);
  height: var(--catalog-height);
  width: var(--catalog-height);
  text-align: center;
  position: relative;
  cursor: pointer;
}
.mobile-header__icons__item svg {
  fill: transparent;
  stroke-width: 2;
  width: 30px;
  stroke-miterlimit: 10;
}
.mobile-header__icons__item .icon-phone {
  fill: var(--color-primary);
  stroke: transparent;
}
.mobile-header__icons__item .icon-cart {
  stroke: var(--color-primary);
}
.mobile-header__icons__item-count {
  position: absolute;
  top: 9px;
  right: -8px;
  width: 24px;
  height: 24px;
  color: var(--color-white);
  background: var(--color-second);
  border-radius: 50%;
  font-size: 10px;
  line-height: 20px;
  font-weight: var(--font-weight-bold);
  border: 2px solid var(--bg-color);
}
.mobile-navigation {
  position: fixed;
  z-index: 1001;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: var(--color-white);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
}
.mobile-navigation.open {
  opacity: 1;
  visibility: visible;
  left: 0;
  transition: all 0.1s ease-in-out 0s;
}
.mobile-navigation__title {
  font-size: var(--font-header);
  margin: 0 20px;
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
}
.mobile-navigation__close {
  z-index: 10001;
  position: absolute;
  background: #ffffff;
  top: 15px;
  right: 20px;
  width: 27px;
  height: 27px;
  cursor: pointer;
}
.mobile-navigation__close svg {
  stroke: var(--color-grey);
}
.mobile-navigation__close svg:hover {
  stroke: var(--color-grey);
  transform: rotate(90deg);
  transition-duration: 0.3s;
}
.mobile-navigation__search {
  margin: 10px 20px;
  position: relative;
  height: var(--catalog-height);
  font-size: var(--font-normal);
}
.mobile-navigation__search .header__search__popup {
  position: relative;
  z-index: 100;
}
.mobile-navigation__search .icon-search {
  position: absolute;
  width: 25px;
  left: 20px;
  top: 15px;
  fill: var(--color-grey);
}
.mobile-navigation__search form {
  height: var(--catalog-height);
}
.mobile-navigation__search input {
  height: 100%;
  padding-left: 50px !important;
  font-size: var(--font-middle);
}
.mobile-navigation__search button {
  position: absolute;
  right: -2px;
  top: 0;
  height: 100%;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  font-size: var(--font-middle);
  background: var(--color-link);
}
.mobile-navigation__main {
  background: var(--bg-secondary-color);
  height: 100%;
  width: 100%;
  padding: 10px 20px 20px 20px;
}
.mobile-navigation__menu {
  border-radius: var(--border-radius);
  overflow-y: scroll;
  overflow-x: hidden;
  height: calc(100% - 151px);
}
.mobile-navigation__menu .main-menu__depth0.last {
  border-bottom-right-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
  border-bottom: 0;
}
.mobile-navigation__menu .main-menu__pages .selected {
  border-top-right-radius: var(--border-radius);
  border-top-left-radius: var(--border-radius);
}
.mobile-navigation__menu .main-menu__pages-title {
  padding: 10px 15px 10px 0;
  font-size: var(--font-bigger);
  color: var(--color-primary);
  background: var(--bg-secondary-color);
  font-weight: var(--font-weight-bold);
}
.mobile-navigation__menu a {
  color: var(--font-color);
  padding: 10px 55px 10px 15px;
  display: block;
}
.mobile-navigation__menu .mobile-open {
  display: block;
  position: absolute;
  right: 15px;
  top: 8px;
  color: var(--color-primary);
  background: var(--bg-secondary-color);
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: var(--border-radius);
  z-index: 10;
  cursor: pointer;
}
.mobile-navigation__menu .main-menu__item {
  width: 100%;
  border-bottom: 1px solid var(--form-border);
  display: block;
  font-size: var(--font-middle);
  margin-bottom: 0;
  background: var(--color-white);
}
.mobile-navigation__menu .main-menu__item:last-child {
  border-bottom: 0;
}
.mobile-navigation__menu .main-menu__item .main-menu__item {
  display: none;
  font-size: var(--font-normal);
  padding-left: 20px;
}
.mobile-navigation__menu .main-menu__pages {
  display: block;
}
.mobile-navigation__menu .icon-close {
  display: none !important;
}
.mobile-navigation__footer {
  position: absolute;
  height: 65px;
  bottom: 0;
  left: 0;
  background: #fff;
  padding: 10px;
  width: 100%;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.4);
}
.mobile-navigation__icons {
  justify-content: space-around;
  display: flex;
}
.mobile-navigation__icons__link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.mobile-navigation__icons__item {
  border: 1px solid var(--form-border);
  border-radius: var(--border-radius);
  height: var(--catalog-height);
  width: var(--catalog-height);
  text-align: center;
  position: relative;
  background: var(--color-white);
}
.mobile-navigation__icons__item:hover {
  border: 1px solid var(--color-grey);
  transition: 0.3s;
}
.mobile-navigation__icons__item svg {
  fill: transparent;
  stroke-width: 2;
  width: 25px;
  stroke-miterlimit: 10;
}
.mobile-navigation__icons__item .icon-user {
  stroke: var(--color-grey);
  width: 30px;
}
.mobile-navigation__icons__item .icon-cart {
  stroke: var(--color-primary);
}
.mobile-navigation__icons__item .icon-compare {
  stroke: var(--color-third);
}
.mobile-navigation__icons__item .icon-favorite {
  stroke: var(--color-second);
}
.mobile-navigation__icons__item-count {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 24px;
  height: 24px;
  color: var(--color-white);
  background: var(--color-second);
  border-radius: 50%;
  font-size: 10px;
  line-height: 20px;
  font-weight: var(--font-weight-bold);
  border: 2px solid var(--bg-color);
}
.breadcrumbs {
  font-size: var(--font-small);
  color: var(--color-grey);
  margin: 10px 0 5px;
}
@media screen and (max-width: 900px) {
  .breadcrumbs {
    margin: 0;
  }
}
.breadcrumbs ul {
  background: transparent;
  position: relative;
  margin: 0;
  list-style: none;
  padding: 3px 0 15px 0;
}
.breadcrumbs ul li {
  display: inline-block;
  position: relative;
}
.breadcrumbs ul li a {
  color: var(--color-grey);
}
.breadcrumbs ul li a:hover {
  color: var(--color-link);
}
.breadcrumbs ul li + li:before {
  content: "—";
  padding: 0 10px 0 8px;
  color: var(--color-grey);
  font-size: 10px;
}
.breadcrumbs ul li:hover ul {
  display: block;
  -webkit-animation: fadeIn 0.5s;
  animation: fadeIn 0.5s;
}
.product-home-slider {
  background-color: var(--bg-secondary-color);
  background-size: cover;
  border-radius: var(--border-radius);
  height: 350px;
}
@media screen and (max-width: 900px) {
  .product-home-slider {
    height: auto;
  }
}
.product-home-slider__inner {
  display: flex !important;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .product-home-slider__inner {
    display: block !important;
  }
}
.product-home-slider__img {
  flex: 1;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .product-home-slider__img {
    margin-top: 20px;
  }
}
.product-home-slider__img img {
  max-height: 300px;
}
@media screen and (max-width: 900px) {
  .product-home-slider__img img {
    max-height: 200px;
  }
}
.product-home-slider__text {
  flex: 1;
  height: 100%;
  padding: 20px 40px;
}
@media screen and (max-width: 900px) {
  .product-home-slider__text-description {
    display: none;
  }
}
.product-home-slider__text-header {
  font-size: var(--font-header);
  font-weight: var(--font-weight-bold);
}
.product-home-slider__text-price {
  font-size: var(--font-header);
  color: var(--color-link);
  font-weight: var(--font-weight-bold);
  margin-top: 5px;
}
.product-home-slider__text-button {
  margin-top: 10px;
}
.product-home-slider .slick-track,
.product-home-slider .slick-list {
  height: 100%;
}
.product-home-slider .slick-dots {
  bottom: 10px;
}
.image-slider {
  background-color: var(--bg-secondary-color);
  width: 100%;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
}
@media screen and (max-width: 900px) {
  .image-slider {
    min-height: unset;
    margin-bottom: 0;
  }
}
.image-slider .slick-slide {
  margin-right: 0;
}
.image-slider .slick-slide img {
  border-radius: var(--border-radius);
  width: 100%;
}
.image-slider .slick-dots {
  margin-left: -8px;
  bottom: 15px;
}
.image-slider__inner {
  position: relative;
}
.image-slider__link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.promo-banner {
  width: 100%;
  margin-top: 40px;
  border-radius: var(--border-radius);
  min-height: 150px;
}
@media screen and (max-width: 900px) {
  .promo-banner {
    margin: 30px 0;
    min-height: unset;
  }
}
.promo-banner img {
  border-radius: var(--border-radius);
}
.s-promo {
  margin: 20px 0;
}
@media screen and (max-width: 900px) {
  .s-promo [class*="col-"],
  .s-promo [class^='col-'] {
    flex: 0 1 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .s-promo .col-4 {
    margin-bottom: 10px;
  }
}
.s-promo a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.s-promo__inner {
  border: 1px solid var(--form-border);
  background: #fff;
  border-radius: var(--border-radius);
  padding: 15px 15px;
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  line-height: var(--font-header);
  box-shadow: var(--box-shadow-item);
}
@media screen and (max-width: 900px) {
  .s-promo__inner {
    padding: 15px;
    line-height: var(--font-middle);
  }
}
.s-promo__inner:after {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: -120px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--bg-secondary-color);
  transition: all 0.2s ease;
  opacity: 1;
  transform: translateX(-100%);
}
.s-promo__inner:hover {
  transition: color 0.2s ease-in, border 0.2s ease-in, background-color 0.2s ease-in;
}
.s-promo__inner:hover:after {
  opacity: 1;
  transform: translateY(-50%);
}
.s-promo__icon {
  width: 80px;
  padding-left: 15px;
}
@media screen and (max-width: 900px) {
  .s-promo__icon {
    width: 80px;
  }
}
.s-promo__text {
  width: 75%;
  flex: 1;
}
.s-promo__text span {
  display: block;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-middle);
}
.s-promo__text p {
  margin-bottom: 0;
  color: var(--color-grey);
}
.s-promo .icon {
  color: var(--color-primary);
  font-size: 36px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 900px) {
  .s-promo .icon {
    font-size: 36px;
  }
}
.home-product-s .slick-track,
.home-product-s .slick-slide {
  height: 100%;
}
.home-product-s .slick-slide {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 900px) {
  .c-popular {
    width: 100%;
  }
}
.c-popular .col-6 {
  margin-bottom: 10px;
  position: relative;
  background: var(--color-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--form-border);
  box-shadow: var(--box-shadow-item);
  transition: all 0.4s;
}
.c-popular .col-6:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.c-popular__link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}
.c-popular__inner {
  max-width: var(--grid-maxWidth);
  margin: 0 auto;
  width: 96%;
  padding: 0 calc(var(--grid-gutter) / 2);
}
@media screen and (max-width: 900px) {
  .c-popular__inner {
    padding: 1px;
  }
}
.c-popular__item {
  padding: 5px;
  display: flex;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .c-popular__item {
    display: block;
    text-align: center;
  }
}
.c-popular__item-img {
  padding: 0 10px;
  min-width: 100px;
  max-width: 100px;
  height: 90px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 900px) {
  .c-popular__item-img {
    min-width: 100%;
    max-width: 100%;
  }
}
.c-popular__item-img a {
  position: relative;
  background: var(--color-white);
  z-index: 10;
}
.c-popular__item-img:after {
  background-image: url('img/loader/loader.gif');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
.c-popular__item-img img {
  max-width: 100%;
  max-height: 80px;
  margin: 0 auto;
  background: var(--color-white);
  position: relative;
  z-index: 10;
}
.c-popular__item-description {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 18px;
}
.c-popular__item-description p {
  margin: 0;
  color: #acacac;
}
.c-popular._ext .c-popular__item {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.c-popular._ext .c-popular__item .c-popular__item-img {
  padding: 0 10px;
  min-width: 150px;
  max-width: 150px;
  height: 150px;
  text-align: center;
  margin: 0 auto;
}
.c-popular._ext .c-popular__item .c-popular__item-img img {
  max-width: 100%;
  max-height: 130px;
}
.marketing__pulse:after {
  width: 100%;
  height: 26px;
  content: " ";
  display: block;
  cursor: pointer;
  box-shadow: 0 0 0 var(--color-second);
  animation-duration: 1s;
  animation-name: pulse;
  animation-iteration-count: infinite;
  position: absolute;
  border-radius: var(--border-radius);
  top: 0;
  left: 0;
}
.marketing__countdown {
  position: absolute;
  bottom: 15px;
  left: 10px;
  background: var(--color-error);
  color: var(--color-white);
  padding: 1px 6px;
  border-radius: var(--border-radius);
  z-index: 10;
}
.marketing__countdown i {
  margin-right: 5px;
}
.marketing__one {
  margin-bottom: 30px !important;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.marketing__one:hover .marketing__img {
  position: relative;
}
.marketing__one:hover .marketing__img .marketing__img-bg {
  transform: scale3d(1.05, 1.05, 1);
}
.marketing__one:hover .marketing__img img {
  transform: translateY(-4px);
}
.marketing__date {
  font-size: var(--font-small);
  color: var(--color-grey);
}
.marketing__link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.marketing__img {
  min-height: 220px;
  width: 100%;
  overflow: hidden;
  transition: all 0.3s linear;
  border-radius: var(--border-radius);
  position: relative;
}
.marketing__img img {
  border-radius: var(--border-radius);
  max-width: 100%;
  width: 100%;
  transition: all 0.4s;
}
.marketing__img-bg {
  background-size: cover;
  background-position: center center;
  transition: all 0.4s;
  width: 100%;
  height: 220px;
}
.marketing__title {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-bigger);
  margin-bottom: 10px;
}
.marketing__inner {
  padding: 20px 0 0;
  position: relative;
  transition: all 0.4s;
}
.marketing__comment {
  margin-top: 10px;
  font-size: var(--font-small);
  color: var(--color-grey);
}
.h-news__one {
  margin-bottom: 30px !important;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.h-news__one:hover .h-news__img {
  position: relative;
}
.h-news__one:hover .h-news__img div {
  transform: scale3d(1.05, 1.05, 1);
}
.h-news__date {
  font-size: var(--font-small);
  color: var(--color-grey);
  margin-top: 20px;
}
.h-news__link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.h-news__img {
  min-height: 220px;
  width: 100%;
  overflow: hidden;
  transition: all 0.3s linear;
  border-radius: var(--border-radius);
}
.h-news__img img {
  border-radius: var(--border-radius);
}
.h-news__img div {
  background-size: cover;
  background-position: center center;
  transition: all 0.4s;
  width: 100%;
  height: 220px;
}
.h-news__title {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-bigger);
  margin-bottom: 10px;
}
.h-news__inner {
  padding: 20px 0 0;
  position: relative;
  transition: all 0.4s;
}
.h-news__comment {
  margin-top: 10px;
  font-size: var(--font-small);
  color: var(--color-grey);
}
@media screen and (max-width: 900px) {
  .h-news-line .col-12 {
    margin: 0 calc(var(--grid-gutter-mobile) / 2) calc(var(--grid-gutter-mobile) / 2);
    flex: 0 0 calc((100% / (12 / 12)) - var(--grid-gutter-mobile));
    max-width: calc((100% / (12 / 12)) - var(--grid-gutter-mobile));
  }
}
.h-news-line__one {
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  display: flex;
  box-shadow: var(--box-shadow-item);
  border-radius: var(--border-radius);
}
@media screen and (max-width: 900px) {
  .h-news-line__one {
    margin-bottom: 20px !important;
  }
}
.h-news-line__one:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.h-news-line__one:hover .h-news-line__inner {
  border-color: transparent;
}
.h-news-line__one:hover .h-news-line__img {
  position: relative;
}
.h-news-line__one:hover .h-news-line__img div {
  transform: scale3d(1.05, 1.05, 1);
}
.h-news-line__date {
  font-size: var(--font-small);
  color: var(--color-grey);
}
.h-news-line__link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
@media screen and (max-width: 900px) {
  .h-news-line__link {
    z-index: 10;
  }
}
.h-news-line__img {
  min-height: 220px;
  width: 100%;
  overflow: hidden;
  transition: all 0.3s linear;
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
  flex: 1;
}
.h-news-line__img img {
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
}
.h-news-line__img div {
  background-size: cover;
  background-position: center center;
  transition: all 0.4s;
  width: 100%;
  height: 100%;
}
.h-news-line__title {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-bigger);
  line-height: calc(var(--font-bigger) + 6px);
  margin-bottom: 10px;
}
.h-news-line__inner {
  flex: 1;
  padding: 20px;
  position: relative;
  transition: all 0.4s;
  border: 1px solid var(--form-border);
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}
.h-news-line__comment {
  margin-top: 10px;
  font-size: var(--font-small);
  color: var(--color-grey);
}
@media screen and (max-width: 900px) {
  .brands {
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 900px) {
  .brands .slick-dots {
    bottom: -25px;
  }
}
.brands .slick-list {
  padding-bottom: 0 !important;
  width: 100%;
}
.brands .brand-slide {
  text-align: center;
  width: 100%;
  border: 1px solid var(--form-border);
  border-radius: var(--border-radius);
  padding: 10px 0;
  color: var(--color-grey);
  background: var(--color-white);
  box-shadow: var(--box-shadow-item);
}
.brands .brand-slide img {
  margin: 0 auto;
}
.p-gray .p-thumbs-inner {
  padding: 0;
  border: 0;
}
.p-gray .p-thumbs-img {
  border-left: 1px solid var(--form-border);
  border-top: 1px solid var(--form-border);
  border-right: 1px solid var(--form-border);
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}
.p-gray .p-thumbs-text {
  padding: 10px 10px 0 10px;
  background: var(--bg-secondary-color);
}
.p-gray .p-thumbs-price {
  padding: 0 10px 10px 10px;
  background: var(--bg-secondary-color);
}
.p-gray .p-thumbs-button {
  margin: 0;
  padding: 10px;
  background: var(--bg-secondary-color);
  border-bottom-left-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  border-top: 0;
}
.p-gray .p-thumbs-button-qty input[type="text"] {
  background: var(--color-white);
}
.p-gray .badge-product {
  left: 10px;
  top: 10px;
}
.p-thumbs-small {
  line-height: 20px;
}
.p-thumbs-small-inner {
  background: var(--bg-color);
  padding: 10px;
  border-radius: var(--border-radius);
  display: flex !important;
  height: 100%;
  transition: all 0.4s;
}
.p-thumbs-small-inner:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.p-thumbs-small-name {
  margin-bottom: 5px;
  width: 100%;
  min-height: 60px;
}
.p-thumbs-small-name a {
  color: var(--color-darkGrey);
}
.p-thumbs-small-price {
  font-size: var(--font-bigger);
  color: var(--color-link);
  font-weight: var(--font-weight-bold);
  display: block;
  width: 100%;
  height: 40px;
}
.p-thumbs-small-price s {
  font-weight: var(--font-weight-normal);
  color: var(--color-grey);
  font-size: var(--font-normal);
  display: block;
}
.p-thumbs-small-text {
  flex: 1;
}
.p-thumbs-small-img {
  max-width: 100px;
  width: 100px;
  margin-right: 10px;
  text-align: center;
}
.p-thumbs-small-img img {
  max-height: 100px;
  margin: 0 auto;
}
.p-thumbs-small-block {
  display: flex;
  justify-content: space-between;
}
.p-thumbs-small .single-cart-icon {
  padding: 5px 13px 3px 10px;
  width: 55px;
  height: 43px;
}
.p-thumbs-small .single-cart-icon svg {
  width: 30px;
  stroke: #fff;
  fill: transparent;
  stroke-width: 2px;
}
.p-thumbs-medium {
  line-height: 20px;
}
.p-thumbs-medium-inner {
  background: var(--bg-color);
  padding: 10px;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s;
  box-shadow: var(--box-shadow-item);
}
.p-thumbs-medium-inner:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.p-thumbs-medium-name {
  margin-bottom: 5px;
  width: 100%;
}
.p-thumbs-medium-name a {
  color: var(--color-darkGrey);
}
.p-thumbs-medium-price {
  font-size: var(--font-bigger);
  color: var(--color-link);
  font-weight: var(--font-weight-bold);
  display: block;
  width: 100%;
}
.p-thumbs-medium-price s {
  font-weight: var(--font-weight-normal);
  color: var(--color-grey);
  font-size: var(--font-normal);
  display: block;
}
.p-thumbs-medium-text {
  flex: 1;
  width: 100%;
}
.p-thumbs-medium-img {
  max-height: 150px;
  margin-bottom: 10px;
  height: 150px;
  line-height: 150px;
  text-align: center;
}
.p-thumbs-medium-img img {
  display: inline-block;
  vertical-align: middle;
  max-height: 100%;
}
.p-thumbs-medium-block {
  display: flex;
  justify-content: space-between;
}
.p-thumbs-medium .single-cart-icon {
  padding: 5px 13px 3px 10px;
}
.p-thumbs-medium .single-cart-icon svg {
  width: 30px;
  stroke: #fff;
  fill: transparent;
  stroke-width: 2px;
}
.p-thumbs {
  line-height: 20px;
}
.p-thumbs .instock {
  color: var(--color-success);
}
@media screen and (max-width: 900px) {
  .p-thumbs .instock {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-success);
  }
}
.p-thumbs .outofstock {
  color: var(--color-error);
}
@media screen and (max-width: 900px) {
  .p-thumbs .outofstock {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-error);
  }
}
.p-thumbs .cards-5 {
  margin-bottom: 20px;
}
@media screen and (max-width: 900px) {
  .p-thumbs .cards-5 {
    margin-bottom: 10px;
  }
}
.p-thumbs .cards-4 {
  margin-bottom: 20px;
}
.p-thumbs .cards-flex-height {
  display: flex;
  height: 100%;
}
.p-thumbs__preview {
  position: absolute;
  left: calc(50% - 25px);
  top: calc(50% - 25px);
  z-index: 99;
  will-change: transform;
  cursor: pointer;
  font-size: 20px;
  color: var(--color-white);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-out;
  transform: scale(0.5);
}
@media screen and (max-width: 900px) {
  .p-thumbs__preview {
    display: none !important;
  }
}
.p-thumbs__preview-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary);
  overflow: hidden;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}
.p-thumbs-inner {
  background: var(--bg-color);
  padding: 10px;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  border: 1px solid var(--form-border);
  transition: box-shadow 0.3s, border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: all 0.4s;
  box-shadow: var(--box-shadow-item);
}
.p-thumbs-inner:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.p-thumbs-inner:hover .p-thumbs__dots {
  opacity: 1;
  visibility: visible;
  transition: all 0.6s ease;
}
.p-thumbs-inner:hover .p-thumbs__preview {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.p-thumbs__dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  height: 6px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.6s ease;
  z-index: 10;
}
.p-thumbs__dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-lightGrey);
  display: inline-block;
  margin: 2px 2px;
  border: 1px solid transparent;
}
.p-thumbs__dots span.active {
  background: var(--color-link);
}
.p-thumbs__features {
  display: flex;
  flex-direction: column;
  margin: 5px 0 10px;
}
.p-thumbs__features-inner {
  display: flex;
  margin-bottom: 5px;
}
.p-thumbs__features-name {
  color: var(--color-grey);
  margin-right: 5px;
}
.p-thumbs__features .icon16.color {
  width: 13px;
  height: 13px;
  margin-left: 5px;
}
.p-thumbs-oneclick {
  text-align: center;
  border-top: 1px solid var(--form-border);
  margin-top: 10px;
  padding-top: 10px;
}
.p-thumbs-oneclick input,
.p-thumbs-oneclick button {
  width: 100% !important;
}
.p-thumbs .quickstore button,
.p-thumbs .quickstore input {
  background: transparent !important;
  border: 1px solid var(--color-link) !important;
  border-radius: var(--border-radius);
  color: var(--color-link) !important;
}
.p-thumbs .quickstore button:hover,
.p-thumbs .quickstore input:hover {
  background: var(--color-link) !important;
  color: var(--color-white) !important;
}
.p-thumbs-rating {
  font-size: 0;
}
.p-thumbs-rating svg {
  width: 16px;
  display: inline-block;
}
.p-thumbs-name {
  margin-bottom: 5px;
  width: 100%;
  height: 60px;
  overflow: hidden;
  font-weight: var(--font-weight-bold);
}
.p-thumbs-name a {
  color: var(--font-color);
}
.p-thumbs-summary {
  color: var(--color-grey);
}
.p-thumbs-status {
  display: flex;
  justify-content: space-between;
  font-weight: var(--font-weight-normal);
  font-size: var(--font-small);
  margin-bottom: 5px;
}
.p-thumbs-price {
  font-size: var(--font-header);
  color: var(--color-link);
  font-weight: var(--font-weight-bold);
  text-align: left;
  margin-top: 5px;
}
@media screen and (max-width: 900px) {
  .p-thumbs-price {
    font-size: var(--font-middle);
  }
}
.p-thumbs-price s {
  font-weight: var(--font-weight-normal);
  color: var(--color-grey);
  font-size: var(--font-normal);
  margin-left: 10px;
}
.p-thumbs-text {
  flex: 1;
  width: 100%;
}
.p-thumbs-img {
  width: 100%;
  max-height: 250px;
  min-height: 250px;
  text-align: center;
  position: relative;
}
.p-thumbs-img a {
  position: relative;
  background: var(--color-white);
  z-index: 10;
}
.p-thumbs-img:after {
  background-image: url('img/loader/loader.gif');
  background-repeat: no-repeat;
  background-position: 50% 50%;
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
.p-thumbs-img img {
  max-height: 240px;
}
.p-thumbs-block {
  display: flex;
  justify-content: space-between;
}
.p-thumbs-icons {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  height: 45px;
}
.p-thumbs-icons-items {
  display: flex;
  position: relative;
  height: 30px;
}
.p-thumbs-icons-items span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}
.p-thumbs-icons-items svg {
  fill: transparent;
  width: 25px;
  stroke-width: 2px;
  margin-left: 10px;
}
.p-thumbs-icons-items .icon-favorite,
.p-thumbs-icons-items .icon-compare {
  stroke: var(--color-grey);
}
.p-thumbs-icons-items:hover svg {
  transform: scale(0.9);
  transition: all 0.3s ease;
}
.p-thumbs-icons-items.active .icon-favorite {
  stroke: var(--color-second) !important;
}
.p-thumbs-icons-items.active .icon-compare {
  stroke: var(--color-third) !important;
}
.p-thumbs-button {
  border-top: 1px solid var(--form-border);
  margin: 15px 0 0;
  padding: 10px 0 0;
  display: flex;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .p-thumbs-button .is-bottom {
    height: 56px;
  }
}
.p-thumbs-button-qty {
  width: 40px;
  margin-right: 5px;
}
@media screen and (max-width: 900px) {
  .p-thumbs-button-qty {
    display: none;
  }
}
.p-thumbs-button-qty input[type="text"] {
  background: var(--color-lightGrey);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-bigger);
  border: 0 !important;
  height: 45px;
  text-align: center;
}
.p-thumbs-button-btn button {
  font-weight: var(--font-weight-bold);
  height: 45px;
  min-width: 90px;
  padding-left: 0;
  padding-right: 0;
}
.p-list {
  line-height: 20px;
}
.p-list .instock {
  color: var(--color-success);
}
.p-list .outofstock {
  color: var(--color-error);
}
.p-list .cards-1 {
  margin: 0;
  flex: 0 0 100%;
  max-width: 100%;
}
.p-list .col-12 {
  margin-bottom: 20px;
}
.p-list__features {
  display: flex;
  flex-direction: column;
  margin: 20px 0;
}
.p-list__features-inner {
  display: flex;
  margin-bottom: 5px;
}
.p-list__features-name {
  color: var(--color-grey);
  margin-right: 5px;
}
.p-list__features .icon16.color {
  width: 13px;
  height: 13px;
  margin-left: 5px;
}
.p-list-inner {
  background: var(--bg-color);
  padding: 20px;
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: row;
  height: 100%;
  width: 100%;
  border: 1px solid var(--form-border);
  transition: box-shadow 0.3s, border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: all 0.4s;
}
.p-list-inner:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.p-list__leftside {
  width: 220px;
}
.p-list__rightside {
  width: 250px;
  flex-direction: column;
  align-items: start;
}
.p-list__rightside-top {
  display: flex;
}
.p-list__rightside-separator {
  margin: 0 10px;
  color: var(--color-grey);
}
.p-list__center {
  flex: 1;
  margin: 0 20px;
}
.p-list-rating {
  font-size: 0;
}
.p-list-rating svg {
  width: 16px;
  display: inline-block;
}
.p-list-name {
  margin-bottom: 5px;
  width: 100%;
}
.p-list-name a {
  color: var(--color-darkGrey);
}
.p-list-name-sku {
  color: var(--color-grey);
}
.p-list-status {
  display: flex;
  flex-direction: column;
  font-size: var(--font-small);
}
.p-list-price {
  font-size: var(--font-header);
  color: var(--color-link);
  font-weight: var(--font-weight-bold);
  text-align: left;
}
.p-list-price s {
  font-weight: var(--font-weight-normal);
  color: var(--color-grey);
  font-size: var(--font-normal);
  margin-left: 10px;
}
.p-list-text {
  flex: 1;
  width: 100%;
  flex-direction: column;
}
.p-list-img {
  max-height: 200px;
  text-align: center;
  position: relative;
}
.p-list-img img {
  max-height: 190px;
  max-width: 220px;
}
.p-list-block {
  display: flex;
  justify-content: space-between;
}
.p-list-icons {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  height: 40px;
}
.p-list-icons-items {
  display: flex;
  position: relative;
}
.p-list-icons-items span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  cursor: pointer;
}
.p-list-icons-items a {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 100%;
  z-index: 10;
}
.p-list-icons-items svg {
  fill: transparent;
  width: 25px;
  stroke-width: 2px;
  margin-left: 10px;
}
@media screen and (max-width: 900px) {
  .p-list-icons-items svg {
    margin-left: 5px;
    height: 25px;
  }
}
.p-list-icons-items .icon-favorite,
.p-list-icons-items .icon-compare {
  stroke: var(--color-grey);
}
.p-list-icons-items:hover svg {
  transform: scale(0.9);
  transition: all 0.3s ease;
}
.p-list-icons-items.active .icon-favorite {
  stroke: var(--color-second) !important;
}
.p-list-icons-items.active .icon-compare {
  stroke: var(--color-third) !important;
}
.p-list-button {
  margin: 15px 0 0;
  padding: 10px 0 0;
  display: flex;
  flex-direction: row;
  width: 220px;
}
.p-list-button-qty {
  width: 40px;
  margin-right: 5px;
}
.p-list-button-qty input[type="text"] {
  background: var(--color-lightGrey);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-bigger);
  border: 0 !important;
  height: 45px;
  text-align: center;
}
.p-list-button-btn {
  flex: 1;
}
.p-list-button-btn button {
  font-weight: var(--font-weight-bold);
  height: 45px;
  min-width: 90px;
  padding-left: 0;
  padding-right: 0;
}
.p-list .quickstore {
  width: 100%;
}
.p-list .quickstore button,
.p-list .quickstore input {
  background: transparent !important;
  border: 1px solid var(--color-link) !important;
  color: var(--color-link) !important;
}
.p-list .quickstore button:hover,
.p-list .quickstore input:hover {
  background: var(--color-link) !important;
  color: var(--color-white) !important;
}
.c-pagination {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
}
.c-pagination .prev .fa {
  margin-left: -3px;
}
.c-pagination .next .fa {
  margin-left: 3px;
}
.c-pagination li {
  display: inline-block;
  margin-right: 5px;
}
.c-pagination .selected a {
  background: var(--bg-secondary-color);
  border-radius: var(--border-radius);
  color: var(--color-link);
}
.c-pagination a {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  font-size: 18px;
  background: #ffffff;
  text-align: center;
  color: var(--font-color);
}
.c-pagination a:hover {
  color: var(--color-link);
}
.p-mobile-scroll {
  flex-flow: unset !important;
  flex-wrap: nowrap !important;
  overflow-x: scroll;
  overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
  scrollbar-width: none;
}
.p-mobile-scroll .col-6,
.p-mobile-scroll .col-12,
.p-mobile-scroll .p-thumbs-mini {
  scroll-snap-align: start;
  width: 300px;
  min-width: 210px;
}
.p-mobile-scroll .p-thumbs-mini {
  max-width: 300px !important;
}
.p-thumbs-small.p-mobile-scroll {
  display: flex;
}
.p-mobile-scroll .p-thumbs-mini {
  flex: 0 0 calc((100% / (12 / 12)) - var(--grid-gutter-mobile));
  max-width: calc((100% / (12 / 12)) - var(--grid-gutter-mobile));
  margin-right: 10px;
}
.ajax-category-count {
  display: none;
}
.showtype {
  background: var(--bg-secondary-color);
  border-radius: var(--border-radius);
  padding: 3px 5px 3px 2px;
  font-size: var(--font-middle);
  margin-bottom: 20px;
  position: relative;
  height: 44px;
  width: 88px;
  box-shadow: var(--box-shadow-item);
}
.showtype span {
  margin: 0;
  display: inline-block;
  padding: 6px 0;
  width: 40px;
  cursor: pointer;
  color: #babac0;
  vertical-align: middle;
  text-align: center;
  padding-left: 5px;
}
.showtype i {
  margin-top: 5px;
  text-align: center;
}
.showtype span.active {
  color: var(--color-button);
  position: relative;
  z-index: 10;
}
.switcher {
  position: absolute;
  top: 3px;
  width: 45px;
  height: 38px;
  background-color: var(--color-primary);
  border-radius: var(--border-radius);
  box-shadow: 0 0.1rem 2rem rgba(4, 6, 28, 0.1);
  transition: transform 0.2s linear;
  z-index: 0;
}
.switcher__thumbs {
  transform: translateX(0.2rem);
}
.switcher__list {
  transform: translateX(4.2rem);
}
.product-list__loading {
  position: relative;
}
@media screen and (max-width: 900px) {
  .product-list__loading {
    top: 0;
  }
}
.product-list__loading:before {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  top: 0;
  left: 0;
  position: absolute;
  content: " ";
  z-index: 100;
}
@media screen and (max-width: 900px) {
  .product-list__loading:before {
    position: fixed;
    content: " ";
    z-index: 100001;
  }
}
.product-list__loading-icon {
  position: fixed;
  right: 0;
  width: 70px;
  height: 70px;
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  z-index: 100;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .product-list__loading-icon {
    left: calc(50% - 40px);
    z-index: 100002;
  }
}
.product-list__loading-icon img {
  width: 70px;
  height: 70px;
}
.subcategory-text {
  margin: 0 0 40px;
}
.subcategory-text__count {
  color: var(--color-grey);
  font-size: var(--font-small);
  display: inline-block;
  vertical-align: middle;
  padding: 0 8px;
  border-radius: var(--border-radius);
  margin-left: 5px;
}
.subcategory-text a {
  text-decoration: none;
  margin: 5px 10px 5px 0;
  display: inline-block;
  padding: 2px 5px 2px 10px;
  font-weight: var(--font-weight-semibold);
  border-radius: var(--border-radius);
  background: var(--bg-secondary-color);
  transition: all 0.4s;
  color: var(--font-color);
  box-shadow: var(--box-shadow-item);
}
.subcategory-text a:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-color: transparent;
  transform: translateY(-4px);
}
.subcategory-images {
  margin-bottom: 20px;
}
.subcategory-images .col-6 {
  margin-bottom: 10px;
  position: relative;
  background: var(--color-white);
  border-radius: var(--border-radius);
  border: 1px solid var(--form-border);
  transition: all 0.4s;
  box-shadow: var(--box-shadow-item);
}
.subcategory-images .col-6:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.subcategory-images__link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .subcategory-images__link {
    z-index: 10;
  }
}
.subcategory-images__item {
  padding: 5px;
  display: flex;
  height: 100%;
}
@media screen and (max-width: 900px) {
  .subcategory-images__item {
    display: block;
    text-align: center;
  }
}
.subcategory-images__item-img {
  padding: 0 10px;
  min-width: 100px;
  max-width: 100px;
  height: 90px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .subcategory-images__item-img {
    min-width: 100%;
    max-width: 100%;
  }
}
.subcategory-images__item-img img {
  max-width: 100%;
  max-height: 80px;
  margin: 0 auto;
}
.subcategory-images__item-description {
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 18px;
}
.subcategory-images__item-description p {
  margin: 0;
  color: var(--color-grey);
}
.title-container {
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 900px) {
  .title-container {
    flex-direction: column;
    margin-bottom: var(--grid-gutter);
  }
}
.title-container .edit {
  font-size: var(--font-middle);
  margin-left: 10px;
}
.title-container__name {
  margin-right: 20px;
}
@media screen and (max-width: 900px) {
  .title-container__name {
    margin-right: 10px;
    margin-bottom: 0;
    margin-top: 0;
    font-size: var(--font-header) !important;
    line-height: calc(var(--font-header) + 6px);
  }
}
.title-container__count {
  font-size: var(--font-bigger);
  font-weight: var(--font-weight-bold);
  color: var(--color-grey);
  opacity: 0.5;
}
.category {
  display: flex;
}
@media screen and (max-width: 900px) {
  .category {
    display: block;
  }
}
.category__topbar {
  display: flex;
}
@media screen and (max-width: 900px) {
  .category__topbar {
    margin-bottom: 20px;
  }
}
.category__topbar__leftside {
  flex: 1;
}
@media screen and (max-width: 900px) {
  .category__topbar__leftside {
    display: flex;
  }
}
.category__topbar__rightside {
  width: 200px;
}
@media screen and (max-width: 900px) {
  .category__topbar__rightside {
    display: none;
  }
}
.category__leftside {
  min-width: 245px;
  width: 280px;
  margin-right: 30px;
}
@media screen and (max-width: 900px) {
  .category__leftside {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 900px) {
  .category__leftside .filter {
    display: none;
  }
}
.category__rightside {
  flex: 1;
  min-height: 300px;
}
.category .pricehint {
  display: flex;
  font-size: var(--font-small);
  color: var(--color-grey);
}
.category .pricehint__leftside {
  width: 50%;
}
.category .pricehint__rightside {
  width: 50%;
  text-align: right;
}
.filters__name {
  background: var(--bg-secondary-color);
  padding: 20px 20px 0 20px;
  font-size: var(--font-bigger);
  font-weight: var(--font-weight-bold);
  color: var(--color-grey);
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}
.filter {
  margin-bottom: 20px;
  padding: 0;
}
.filter .close-block {
  z-index: 10001;
  position: absolute;
  top: 35px;
  right: 25px;
  width: 27px;
  height: 27px;
  cursor: pointer;
  display: none;
}
.filter .close-block svg {
  stroke: var(--color-grey);
}
.filter .close-block svg:hover {
  stroke: var(--color-grey);
  transform: rotate(90deg);
  transition-duration: 0.3s;
}
.filter .header {
  padding: 13px 15px;
  font-weight: var(--font-weight-bold);
  position: relative;
  cursor: pointer;
}
.filter .header .icon-filter {
  width: 18px;
  height: 18px;
  stroke-width: 1px;
  position: absolute;
  right: 15px;
  top: 18px;
}
.filter .header-button .icon-filter {
  width: 18px;
  height: 18px;
  stroke-width: 1px;
  position: absolute;
  right: 15px;
  top: 18px;
}
.filter .icon-close-filter {
  display: none;
}
.filter .filtergroup {
  background: var(--bg-secondary-color);
  border: 1px solid var(--bg-secondary-color);
  border-radius: var(--border-radius);
  padding: 10px 15px;
  margin-bottom: 10px;
}
.filter .filtergroup:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.filter .filtergroup:hover .icon {
  color: var(--color-primary) !important;
}
.filter .filtergroup .panel-body {
  font-weight: var(--font-weight-bold);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  padding-left: 30px;
  cursor: pointer;
  position: relative;
  font-size: var(--font-middle);
}
.filter .filtergroup .panel-body .icon {
  position: absolute;
  left: -6px;
  width: 20px;
  color: var(--color-grey);
  top: 6px;
  text-align: right;
  font-size: var(--font-small);
}
.filter .filtergroup .slideblock,
.filter .filtergroup .group-filter,
.filter .filtergroup .filtergroup {
  display: none !important;
}
.filter .filtergroup .slider .min,
.filter .filtergroup .slider .max {
  width: 40% !important;
  margin-bottom: 0;
}
.filter .filtergroup .slider input[type="text"] {
  text-align: center;
  font-weight: var(--font-weight-semibold);
}
.filter .filtergroup label {
  display: block;
  width: 100%;
}
.filter .filtergroup.open .panel-body {
  margin-bottom: 10px;
  color: var(--color-primary);
}
.filter .filtergroup.open .slideblock,
.filter .filtergroup.open .group-filter,
.filter .filtergroup.open .filtergroup {
  display: block !important;
}
.filter .filtergroup.open .fa-angle-down::before {
  content: "\f106";
}
.filter .checkboxfilter {
  padding: 1px 0;
  line-height: 18px;
}
.filter .checkboxfilter .color {
  margin: 2px 5px 0 0 !important;
}
.filter .fsubmit {
  text-align: center;
  padding: 10px 0;
}
.filter .fsubmit .clear-filter {
  border: 1px solid var(--form-border);
  background: #fff;
}
.filter .icon-close-filter {
  width: 27px;
  height: 27px;
  fill: #fff;
  stroke-width: 1px;
  stroke: #fff;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 15px;
}
.filter .radio,
.filter .checkbox {
  margin: 2px 0;
  position: relative;
  padding: 0;
}
.filter .unit {
  margin-left: 5px;
}
.filter .diaposon {
  margin: 10px 0;
}
.filter input[type="text"] {
  display: inline !important;
}
.filter.open {
  opacity: 1;
  visibility: visible;
  left: 0;
  transition: all 0.4s ease-in-out 0s;
}
@media screen and (max-width: 900px) {
  .filter.open {
    position: fixed;
    top: 0;
    z-index: 10002;
    width: 100%;
    height: 100vh;
    overflow-x: scroll;
    background: var(--color-white);
    padding: 10px 10px 100px 10px;
    display: block !important;
  }
}
.filter.open .close-block {
  display: block;
}
.ui-slider {
  position: relative;
  height: 2px;
  background: #cccccc;
  margin: 25px 5px 30px 5px;
}
.ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 24px;
  cursor: pointer;
  outline: 0;
  margin-left: -5px;
  display: block;
  height: 22px;
  top: -8px;
}
.ui-slider .ui-slider-handle:after {
  content: ' ';
  width: 18px;
  height: 18px;
  border: 4px solid var(--color-primary);
  background: var(--bg-secondary-color);
  position: absolute;
  left: -5px;
  border-radius: 50%;
  z-index: 4;
}
.ui-slider .ui-slider-handle:hover {
  opacity: 1 !important;
}
.ui-slider .ui-slider-handle:hover:after {
  border: 4px solid var(--color-second);
  box-shadow: 0 19px 27px 0 rgba(126, 125, 118, 0.1);
}
.ui-slider .ui-slider-handle:focus {
  outline: 0;
}
.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  display: block;
  overflow: hidden;
  top: 0;
  height: 100%;
  background: var(--color-primary);
}
.ui-slider .ui-slider-range-min {
  left: 0;
}
.ui-slider .ui-slider-range-max {
  right: 0;
}
.mobile-filter {
  background: #fff;
  border-radius: var(--border-radius);
  position: relative;
  margin: 0 0 10px;
}
.mobile-filter svg {
  width: 20px;
  height: 12px;
  fill: #000;
  vertical-align: middle;
  margin-right: 5px;
}
.mobile-filter .col {
  text-align: center;
  text-decoration: none;
  font-weight: var(--font-weight-semibold);
  padding: 5px;
  margin: 0 !important;
  position: relative;
}
.mobile-filter .col a {
  text-decoration: none;
  display: block;
  width: 100%;
  height: 100%;
}
.mobile-filter .col:last-child {
  border-right: 0;
}
.mobile-filter__count {
  display: inline-block;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
  margin-left: 5px;
}
.m-filter-select {
  border: 0;
  font-weight: var(--font-weight-semibold);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0 20px;
  width: 100%;
  text-align: center;
  text-align-last: center;
  margin: 0 auto;
  display: block;
}
.m-filter-select option {
  text-align: center;
  text-align-last: center;
}
.features {
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--color-grey);
}
.features span {
  color: var(--font-color);
}
.features li {
  margin-bottom: 5px;
}
.features .header {
  font-size: var(--font-bigger);
  color: var(--color-darkGrey);
  font-weight: var(--font-weight-bold);
  margin-top: 0;
  margin-bottom: 10px;
}
.product .video-container {
  width: 100%;
}
.product .fa-youtube {
  color: #e30613;
  margin-right: 5px;
}
.product iframe {
  max-width: 100%;
}
.product__skuname {
  margin-right: 10px;
}
.product__inner {
  display: flex;
}
@media screen and (max-width: 900px) {
  .product__inner {
    display: block;
  }
}
.product__leftside {
  flex: 1;
  margin-right: 25px;
}
@media screen and (max-width: 900px) {
  .product__leftside {
    flex: unset;
    margin-right: 0;
  }
}
.product__leftside .edit {
  font-size: var(--font-middle);
  margin-left: 10px;
}
.product__leftside-inner {
  display: flex;
  margin-top: 20px;
  position: sticky;
  top: 90px;
}
@media screen and (max-width: 900px) {
  .product__leftside-inner {
    display: block;
    margin: 5px 0;
  }
}
.product__leftside-photos {
  flex: 1;
  max-width: 470px;
  margin-right: 30px;
}
@media screen and (max-width: 900px) {
  .product__leftside-photos {
    margin-bottom: 0 !important;
    margin-right: 0;
  }
}
.product .js-product-image-slider {
  visibility: hidden;
}
.product__main-photo {
  position: relative;
  margin-bottom: 20px;
  height: 450px;
}
.product__main-photo #product-gallery,
.product__main-photo .slick-slider,
.product__main-photo .slick-list,
.product__main-photo .slick-track,
.product__main-photo .slick-slide,
.product__main-photo .js-zoom-image {
  height: 100%;
}
.product__main-photo .slick-track {
  display: flex;
  height: 100%;
}
.product__main-photo .slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .product__main-photo {
    margin-bottom: 5px;
  }
}
.product__main-photo img {
  max-width: 90%;
  max-height: 440px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .product__main-photo img {
    max-width: 100%;
    line-height: 440px;
  }
}
.product__main-photo a {
  text-align: center;
}
@media screen and (max-width: 900px) {
  .product__main-photo .slick-dots {
    bottom: -10px;
  }
}
.product__photo-thumbs {
  margin: 10px auto;
  text-align: center;
  max-width: 400px;
  max-height: 70px;
}
@media screen and (max-width: 900px) {
  .product__photo-thumbs {
    margin: -20px auto 0;
    display: none;
  }
}
.product__photo-thumbs .image {
  display: inline-block;
  vertical-align: top;
  width: 70px;
  height: 70px;
  background: var(--color-white);
  border: 1px solid var(--color-lightGrey);
  border-radius: var(--border-radius);
  margin-right: 5px;
  text-align: center;
}
.product__photo-thumbs .image:hover {
  border: 1px solid var(--color-link);
}
@media screen and (max-width: 900px) {
  .product__photo-thumbs .slick-dots {
    margin-left: 0;
    bottom: -24px;
  }
}
.product__photo-thumbs .arrow-slider-circle.right {
  right: -20px !important;
}
@media screen and (max-width: 900px) {
  .product__photo-thumbs .arrow-slider-circle.right {
    display: none !important;
  }
}
.product__photo-thumbs .arrow-slider-circle.left {
  left: -20px !important;
}
@media screen and (max-width: 900px) {
  .product__photo-thumbs .arrow-slider-circle.left {
    display: none !important;
  }
}
.product__photo-thumbs div.active {
  border: 1px solid var(--color-link);
}
.product__photo-thumbs img {
  max-width: 60px;
  max-height: 60px;
  border-radius: var(--border-radius);
}
.product__photo-thumbs a {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product__leftside-summary {
  flex: 1;
  margin-right: 35px;
  margin-top: 25px;
}
.product__leftside-summary li:nth-child(n+6) {
  display: none;
}
@media screen and (max-width: 900px) {
  .product__leftside-summary {
    width: 100%;
  }
}
.product__leftside-summary-p {
  margin-bottom: 25px;
}
.product__share-social {
  margin: 20px 0;
}
.product__rightside-inner {
  border: 1px solid var(--form-border);
  border-radius: var(--border-radius);
  background: var(--color-white);
  box-shadow: var(--box-shadow-item);
}
.product__rightside {
  width: 450px;
  min-width: 450px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 900px) {
  .product__rightside {
    width: 100%;
    min-width: unset;
  }
}
.product__rightside-top {
  display: flex;
}
.product__rightside-bottom {
  padding: 20px;
}
@media screen and (max-width: 900px) {
  .product__rightside-bottom {
    padding: 15px 10px 0;
  }
}
.product__icons {
  display: flex;
}
.product__prevnext {
  flex: 1;
  border-bottom: 1px solid var(--form-border);
  display: flex;
}
.product__prevnext svg {
  width: 30px;
  fill: var(--color-lightGrey);
}
.product__prevnext svg.active {
  fill: var(--color-primary);
}
.product__prevnext-prev {
  border-right: 1px solid var(--form-border);
  width: 50px;
  height: 49px;
  position: relative;
}
.product__prevnext-prev:active {
  transform: scale(0.98);
}
.product__prevnext-prev .disabled {
  transform: scale(1) !important;
  cursor: not-allowed;
}
.product__prevnext-prev a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.product__prevnext-next {
  border-right: 1px solid var(--form-border);
  width: 50px;
  height: 49px;
  position: relative;
}
.product__prevnext-next:active {
  transform: scale(0.98);
}
.product__prevnext-next a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.product__icon-compare.active .icon-favorite,
.product__icon-favorite.active .icon-favorite {
  stroke: var(--color-second) !important;
}
.product__icon-compare.active .icon-compare,
.product__icon-favorite.active .icon-compare {
  stroke: var(--color-third) !important;
}
.product__icon-print,
.product__icon-compare,
.product__icon-favorite {
  width: 50px;
  height: 50px;
  border-left: 1px solid var(--form-border);
  border-bottom: 1px solid var(--form-border);
  position: relative;
}
.product__icon-print:active,
.product__icon-compare:active,
.product__icon-favorite:active {
  transform: scale(0.98);
}
.product__icon-print span,
.product__icon-compare span,
.product__icon-favorite span {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  cursor: pointer;
}
.product__icon-print svg,
.product__icon-compare svg,
.product__icon-favorite svg {
  fill: transparent;
  stroke-width: 2;
  width: 25px;
  stroke-miterlimit: 10;
}
.product__icon-print .icon-print,
.product__icon-compare .icon-print,
.product__icon-favorite .icon-print {
  stroke: var(--color-primary);
}
.product__icon-print .icon-favorite,
.product__icon-compare .icon-favorite,
.product__icon-favorite .icon-favorite,
.product__icon-print .icon-compare,
.product__icon-compare .icon-compare,
.product__icon-favorite .icon-compare {
  stroke: var(--color-grey);
}
.product__rating {
  display: inline-block;
  vertical-align: middle;
  margin-top: 10px;
}
@media screen and (max-width: 900px) {
  .product__rating {
    margin-top: 0;
  }
}
.product__rating a {
  color: var(--color-grey);
  margin-left: 10px;
}
.product__rating-count {
  background: var(--color-lightGrey);
  color: var(--color-grey);
  font-size: var(--font-small);
  display: inline-block;
  vertical-align: middle;
  padding: 0 10px;
  border-radius: var(--border-radius);
  margin-left: 10px;
}
.product__articul {
  margin-top: 10px;
}
.product__articul span {
  font-weight: var(--font-weight-bold);
}
.product__status {
  color: #058427;
  line-height: calc(var(--font-normal) + 4px);
}
.product__status .stock-high {
  color: #058427;
}
.product__status .stock-none {
  color: #E64646;
}
.product__status .stock-critical {
  color: #058427;
}
.product__status .stock-low {
  color: #F09C48;
}
.product__status i {
  margin-right: 5px;
}
.product__price {
  font-size: 34px;
  font-weight: var(--font-weight-bold);
}
.product__price-null {
  font-size: 20px;
}
.product__price s {
  font-weight: var(--font-weight-normal);
  font-size: 24px;
  margin-left: 10px;
  color: var(--color-grey);
}
.product__button {
  display: flex;
  justify-content: space-between;
  height: calc(var(--catalog-height) + 35px);
  border-top: 1px solid var(--form-border);
  margin: 0 -20px;
  padding: 25px 20px 0 20px;
}
@media screen and (max-width: 900px) {
  .product__button {
    margin: 0 -10px;
    padding: 10px;
  }
}
.product__button-qty {
  margin-right: 10px;
}
@media screen and (max-width: 900px) {
  .product__button-qty {
    width: 100px;
  }
}
.product__button-qty input[type="text"] {
  background: var(--color-lightGrey);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-bigger) !important;
  border: 0 !important;
  height: 100%;
  text-align: center;
  width: 55px;
  max-width: 55px;
  min-width: 55px;
}
@media screen and (max-width: 900px) {
  .product__button-qty input[type="text"] {
    height: 53px;
  }
}
.product__button svg {
  fill: transparent;
  stroke-width: 2;
  width: 25px;
  stroke-miterlimit: 10;
}
.product__button .icon-cart {
  stroke: var(--color-white);
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 3px;
}
.product__button-buy {
  width: 100%;
}
.product__button-buy button {
  width: 100%;
  font-size: var(--font-bigger);
  height: 100%;
  font-weight: var(--font-weight-bold);
  position: relative;
  padding-left: 0;
  padding-right: 0;
  padding-top: 12px;
  color: var(--color-white);
  background: var(--color-primary);
}
@media screen and (max-width: 900px) {
  .product__button-buy button {
    height: 53px;
  }
}
.product .quickstore button,
.product .quickstore input {
  background: transparent !important;
  border: 1px solid var(--color-link) !important;
  color: var(--color-link) !important;
  line-height: 18px;
}
.product .quickstore button:hover,
.product .quickstore input:hover {
  background: var(--color-link) !important;
  color: var(--color-white) !important;
}
.product__button-oneclick {
  width: 100%;
  margin-left: 10px;
  height: 53px;
}
.product__button-oneclick button,
.product__button-oneclick input {
  width: 100% !important;
  height: 100% !important;
  font-size: var(--font-bigger) !important;
  font-weight: var(--font-weight-bold) !important;
  padding: 5px !important;
  font-family: unset !important;
  border-radius: var(--border-radius);
  line-height: 18px;
}
.product__delivery {
  margin-top: 25px;
  background: var(--bg-secondary-color);
  padding: 25px;
  border-radius: var(--border-radius);
}
@media screen and (max-width: 900px) {
  .product__delivery {
    margin-top: var(--grid-gutter);
  }
}
.product__delivery-inner {
  display: flex;
  margin-bottom: 10px;
}
.product__delivery-icon {
  width: 50px;
  font-size: 25px;
  color: var(--color-primary);
}
.product__delivery-text {
  flex: 1;
  font-size: var(--font-middle);
}
.product__delivery-text .hint {
  font-size: var(--font-normal);
}
.product__delivery a {
  display: inline-block;
  vertical-align: middle;
  font-size: var(--font-normal);
}
.product__delivery a:active {
  transform: scale(0.98);
}
.product__tab {
  display: none;
}
.product__tab.active {
  display: flex;
  flex-direction: column;
}
.product__tabs-text {
  flex: 1;
}
@media screen and (max-width: 900px) {
  .product__tabs-text {
    display: block !important;
  }
}
.product__tabs-text iframe {
  max-width: 100%;
}
.product__tabs-text-leftside {
  flex: 1;
}
@media screen and (max-width: 900px) {
  .product__tabs-text-leftside {
    display: block;
    width: 100%;
  }
}
.product__tabs-text-rightside {
  width: 370px;
  margin-left: 50px;
}
@media screen and (max-width: 900px) {
  .product__tabs-text-rightside {
    width: 100%;
    margin-left: 0;
  }
}
.product__tabs-features {
  width: 370px;
  margin-left: 50px;
}
.product__info {
  border: 1px solid var(--form-border);
  background: var(--color-white);
  border-radius: var(--border-radius);
  margin-top: 60px;
  min-height: 200px;
}
@media screen and (max-width: 900px) {
  .product__info {
    margin-top: var(--grid-gutter);
  }
}
.product__info .is-features {
  display: flex;
}
.product__info-tabs {
  margin: 0;
  padding: 0;
  list-style: none;
  border-bottom: 1px solid var(--form-border);
}
@media screen and (max-width: 900px) {
  .product__info-tabs {
    white-space: nowrap;
    display: inline-block;
    overflow-x: scroll;
    overflow-y: hidden;
    border: 0;
    width: 100%;
    border-bottom: 1px solid var(--form-border);
  }
}
.product__info-tabs li {
  display: inline-block;
  border-right: 1px solid var(--form-border);
  position: relative;
}
@media screen and (max-width: 900px) {
  .product__info-tabs li:last-child {
    border-right: 0;
  }
}
@media screen and (max-width: 900px) {
  .product__info-tabs li:after {
    background: transparent !important;
  }
}
.product__info-tabs li a {
  font-size: var(--font-bigger);
  color: var(--font-color);
  font-weight: var(--font-weight-bold);
  padding: 10px 30px;
  display: block;
}
.product__info-tabs li a:active {
  transform: scale(0.98);
}
.product__info-tabs li.selected a {
  color: var(--color-link);
}
.product__info-tabs li.selected:after {
  position: absolute;
  bottom: -5px;
  z-index: 10;
  content: " ";
  height: 10px;
  background: var(--bg-color);
  width: 100%;
}
.product__info-count {
  background: var(--color-lightGrey);
  color: var(--color-grey);
  font-size: var(--font-small);
  display: inline-block;
  vertical-align: middle;
  padding: 0 10px;
  border-radius: var(--border-radius);
  margin-left: 10px;
}
.product__info .tags {
  padding-top: 20px;
}
.product__content-tabs {
  padding: 40px 30px;
}
@media screen and (max-width: 900px) {
  .product__content-tabs {
    padding: 20px 10px;
  }
}
.product .goto-cart {
  margin-top: 20px;
}
@media screen and (max-width: 900px) {
  .product .goto-cart {
    margin-bottom: 15px;
  }
}
.product__tabs-features.product__tab {
  margin-left: 0;
  width: 100%;
}
.product__tabs-features.product__tab .product__tabs-features {
  margin-left: 0;
}
.product__tabs-features.product__tab .product__tabs-features.active {
  width: 100%;
}
.product__related {
  margin-top: 35px;
  padding: 30px 0 40px;
  background: var(--bg-secondary-color);
  max-height: 300px;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  .product__related {
    padding: 20px 0 35px;
  }
}
.product__related-header {
  font-size: var(--font-header);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: 25px;
}
@media screen and (max-width: 900px) {
  .product__related-header {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 900px) {
  .product__related .slick-dots {
    margin-left: 0;
    bottom: -25px;
  }
}
@media screen and (max-width: 900px) {
  .product__related .arrow-slider-circle {
    display: none !important;
  }
}
.product__seen {
  margin-top: 60px;
  padding: 30px 0 40px;
  background: var(--bg-secondary-color);
}
@media screen and (max-width: 900px) {
  .product__seen {
    display: none;
  }
}
.product__seen-header {
  font-size: var(--font-header);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  margin-bottom: 25px;
}
.product__seen .col-header {
  background: var(--bg-color);
  padding: 25px 25px 0 25px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-item);
}
@media screen and (max-width: 900px) {
  .product__seen .col-header {
    margin-bottom: 20px;
  }
}
.product__seen .col-header a {
  font-size: var(--font-normal);
  font-weight: var(--font-weight-normal);
  margin-top: 10px;
  display: block;
}
.product__crosselling {
  margin-top: 35px;
  background: var(--bg-color);
}
@media screen and (max-width: 900px) {
  .product__crosselling {
    margin-top: calc(var(--grid-gutter) * 2);
  }
}
.product__crosselling-header {
  font-size: var(--font-header);
  line-height: calc(var(--font-header) + 6px);
  font-weight: var(--font-weight-bold);
  margin-bottom: 25px;
}
.product ul.skus {
  list-style: none;
  padding-left: 0;
}
.product ul.skus span.price {
  font-weight: var(--font-weight-bold);
  margin-right: 10px;
}
.product ul.skus li .price s {
  color: var(--color-grey);
  margin-left: 8px;
  font-weight: var(--font-weight-normal);
}
.product .options {
  line-height: 2em;
  margin-bottom: 20px;
}
.product .options .name {
  font-weight: var(--font-weight-bold);
  line-height: 20px;
  margin-bottom: 5px;
}
.product .options .name .sku-selectable {
  font-weight: var(--font-weight-semibold);
}
.product .options label.name {
  display: block;
  margin-bottom: 5px;
  margin-top: 10px;
}
.product .options .inline-select {
  margin-bottom: 15px;
}
.product .options .inline-select a {
  border-radius: var(--border-radius);
  margin: 0 5px 5px 0;
  display: inline-block;
  text-decoration: none;
  position: relative;
  min-width: 55px;
  text-align: center;
  color: #454545;
  background: var(--bg-secondary-color);
  padding: 0 var(--grid-gutter);
}
.product .options .color-fix a {
  border: 1px solid transparent !important;
}
.product .options .inline-select a .color_name {
  display: none;
  position: absolute;
  bottom: -25px;
  left: 50%;
  font-size: 10px;
  color: rgba(0, 0, 0, 0.8);
  margin-left: -40px;
  width: 80px;
  font-weight: var(--font-weight-semibold);
}
.product .options .inline-select a .color_checkmark {
  display: none;
  position: absolute;
  top: 8px;
  left: 20px;
}
.product .options .inline-no-color a.selected {
  background: var(--color-second);
  color: #fff;
}
.product .options .inline-select a.selected .color_checkmark {
  display: block;
}
.product__inner .service__inner {
  margin-bottom: 10px;
}
.info-line.active {
  transform: translateY(0);
}
@media screen and (max-width: 900px) {
  .info-line.active {
    display: none !important;
  }
}
.info-line {
  width: 100%;
  height: 85px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  position: fixed;
  bottom: 0;
  left: 0;
  background: #fff;
  -webkit-box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 -2px 8px 0 rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 50;
}
@media screen and (max-width: 900px) {
  .info-line {
    display: none !important;
  }
}
.info-line__inner {
  display: flex;
  max-width: var(--grid-maxWidth);
  margin: 0 auto;
  width: 96%;
  padding: 0 calc(var(--grid-gutter) / 2);
  height: 100%;
}
.info-line__img {
  width: 90px;
}
.info-line__img a {
  display: flex;
}
.info-line__img img {
  max-height: 70px;
  max-width: 70px;
}
.info-line__txt {
  flex: 1;
  margin-left: 10px;
}
.info-line__button {
  width: 200px;
}
.info-line__button .button {
  margin-left: 20px;
}
.info-line__icons {
  display: flex;
}
.info-line__icons div {
  margin: 0 10px;
}
.info-line__icons span {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.info-line__icons svg {
  fill: transparent;
  stroke-width: 2;
  width: 25px;
  stroke-miterlimit: 10;
}
.info-line__icons .icon-favorite,
.info-line__icons .icon-compare {
  stroke: var(--color-grey);
}
.info-line__icon.active .icon-compare {
  stroke: var(--color-third);
}
.info-line__icon.active .icon-favorite {
  stroke: var(--color-second);
}
.info-line__price {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-bigger);
  color: var(--color-link);
}
.info-line__price s {
  font-size: var(--font-normal);
  font-weight: var(--font-weight-normal);
  color: var(--color-grey);
  margin-left: 5px;
}
.info-line .ontop {
  padding-left: 15px;
  padding-right: 15px;
  color: var(--color-grey);
}
/** Loadnig **/
.loading-cart-icon {
  color: transparent !important;
  position: relative;
}
.loading-cart-icon svg {
  display: none !important;
}
.loading-cart-icon:hover {
  color: transparent !important;
}
.loading-cart-icon:after {
  left: 0;
  right: 0;
  background-image: url(img/loader/loading_three_dots.svg) !important;
  background-size: 36px;
  background-repeat: no-repeat;
  color: #ffffff;
  position: absolute;
  content: " " !important;
  width: 36px;
  height: 36px;
  margin: 0 auto;
  transform: translateY(-50%);
  top: 50%;
  background-position: 50% 50%;
}
.uiCursor {
  overflow: hidden;
  position: relative;
  cursor: none;
}
.cursorWrap {
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  z-index: 99;
  will-change: transform;
  cursor: none;
  font-size: 20px;
  color: var(--color-white);
}
.cursorWrap._show {
  display: block;
}
.cursorWrap .cursorCircle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-top: -50%;
  margin-left: -50%;
  border-radius: 50%;
  background: var(--color-primary);
  overflow: hidden;
}
.review {
  display: flex;
  margin: 20px 0;
  padding: 0;
}
@media screen and (max-width: 900px) {
  .review {
    display: block;
  }
}
.review__new {
  background: #ffffcc;
}
.review__leftside {
  width: 150px;
  text-align: center;
  margin-right: 20px;
}
@media screen and (max-width: 900px) {
  .review__leftside {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .review__leftside-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
.review__rightside {
  flex: 1;
}
.review__header {
  font-size: var(--font-bigger);
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
  line-height: 24px;
  padding-right: 90px;
}
@media screen and (max-width: 900px) {
  .review__avatar {
    margin-right: 10px;
  }
}
.review__avatar img {
  border-radius: 50%;
  display: inline;
  margin: 2px;
}
.review__description {
  margin: 0 0 10px 0;
}
.review__date {
  font-size: var(--font-small);
  margin-bottom: 5px;
  color: var(--color-grey);
}
.review__title {
  font-weight: var(--font-weight-bold);
}
.review__staff {
  padding: 1px 4px;
  background: var(--color-success);
  color: var(--color-white);
  border-radius: var(--border-radius);
  white-space: nowrap;
  font-size: var(--font-small);
  margin-left: 10px;
  display: inline-block;
}
@media screen and (max-width: 900px) {
  .review__staff {
    height: 22px;
  }
}
.review__reply {
  background: var(--color-white) !important;
}
.review__textarea {
  height: 100px;
  min-height: 100px;
  margin-top: 0;
}
.review__top-inner {
  display: flex;
}
.review__top-text {
  flex: 1;
}
.review__top-rating {
  width: 200px;
  align-items: start;
}
@media screen and (max-width: 900px) {
  .review__top-rating {
    width: 110px;
    align-items: start;
    position: absolute;
    right: 22px;
  }
}
.review__top-rating-inner {
  background: var(--bg-secondary-color);
  padding: 5px 10px;
  border-radius: var(--border-radius);
}
.review__bigrating {
  width: 35px !important;
  height: 35px !important;
  background-repeat: no-repeat !important;
}
.review__bigrating-text {
  color: var(--color-grey);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-header);
  padding: 0 5px;
  border-radius: var(--border-radius);
  margin-left: 5px;
}
.product__info .reviews__top {
  margin: 0 -30px;
  padding: 0 30px 30px 30px;
}
@media screen and (max-width: 900px) {
  .product__info .reviews__top {
    margin: 0 -10px;
    padding: 0 10px 20px 10px;
  }
}
.reviews__top {
  border-bottom: 1px solid var(--form-border);
  padding-bottom: 20px;
}
.reviews .reviews-branch li {
  border-bottom: 1px solid var(--form-border);
  margin: 0 -30px;
  padding: 0 30px;
}
.reviews .reviews-branch li:last-child {
  border-bottom: 0 !important;
}
.reviews ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.reviews ul li .review-form {
  padding: 10px 0 0;
}
.reviews ul li ul {
  padding-left: 150px;
}
.reviews ul li ul .review {
  flex-direction: column;
  background: var(--bg-secondary-color);
  padding: 20px;
  border-radius: var(--border-radius);
}
.reviews ul li ul .review .review__avatar {
  display: none;
}
.reviews ul li ul .review .review__leftside {
  text-align: left;
  width: 100%;
}
.reviews ul li ul .review .review__leftside-inner {
  display: flex;
}
.reviews ul li ul li {
  border-bottom: 0 !important;
}
.reviews ul .in-reply-to {
  position: relative;
}
.reviews ul.menu-h.auth-type {
  padding: 0 0 40px;
  margin-left: -5px;
}
.reviews ul.menu-h.auth-type li {
  padding-right: 10px;
}
.reviews ul.menu-h.auth-type li a {
  padding: 5px 6px;
}
.reviews ul.menu-h.auth-type li a img {
  top: 0;
}
.review-form h4 {
  margin: 0 0 20px;
  font-weight: normal;
}
.review-form-fields,
.comment-form-fields {
  border-radius: var(--border-radius);
  background: var(--bg-secondary-color);
  padding: 30px;
}
@media screen and (max-width: 900px) {
  .review-form-fields {
    padding: 10px;
  }
}
.review-form-fields p {
  margin: 0 0 10px;
}
.review-form-fields .review-field {
  min-height: 30px;
}
.review-form-fields .review-field:after {
  content: ' ';
  display: block;
  clear: both;
}
.review-form-fields p.review-field a {
  display: inline;
  padding: 0;
  text-decoration: none;
}
.review-form-fields p.review-field a.rate-clear {
  margin-top: 7px;
}
.review-form-fields p.review-field #review-rate i {
  margin-top: 10px;
}
.review-form-fields label {
  width: 160px;
  display: block;
  float: left;
  margin: 0 10px 0 0;
  color: #373a3c;
}
.review-form .review-submit {
  padding: 0 0 20px 180px;
}
@media screen and (max-width: 900px) {
  .review-form .review-submit {
    padding-left: 0 !important;
  }
}
.review-form .review-submit .cancel {
  margin-left: 10px;
}
.review-form .review-submit .cancel:hover,
.review-form .review-submit .cancel:focus {
  text-decoration: none;
}
.review-form .userpic {
  width: 20px;
  height: 20px;
  margin-right: 5px;
  border-radius: 50%;
}
.review-form ul.menu-h.auth-type li a img {
  float: left;
  margin-right: 3px;
  position: relative;
  top: 2px;
}
.review-form ul.menu-h.auth-type {
  padding-bottom: 20px;
}
.review-form label {
  float: left;
  width: 155px;
  font-weight: 700;
  padding-top: 0.52em;
  padding-bottom: 10px;
  line-height: 14px;
  margin-top: 5px;
  text-align: right;
  margin-right: 23px;
}
.reviews span.rate {
  line-height: 1.3em;
  display: block;
  margin: 0.5em 0;
}
.reviews span.rate a {
  text-decoration: none !important;
}
.review-submit .wa-captcha .errormsg {
  float: none;
  margin-left: 0;
}
#product-review-form input[type="text"],
#product-review-form input[type="email"],
#product-review-form input[type="password"],
#product-review-form textarea {
  margin-bottom: 0;
}
ul#user-auth-provider {
  padding-left: 0 !important;
}
.review-form-fields label.service-agreement-wrapper {
  float: none !important;
  width: auto;
  margin-bottom: 20px;
}
/** Add image **/
.s-review-images-section {
  padding: 15px 20px;
  background: var(--color-white);
  border-radius: var(--border-radius);
  border: 1px dotted var(--color-darkGrey);
}
.s-review-images-section.is-highlighted {
  background: #fafadf;
}
.s-review-images-section .s-image-form-section {
  position: relative;
}
.s-review-images-section .s-image-form-section .s-description .s-icon {
  position: relative;
  display: inline-block;
  vertical-align: -3px;
  width: 22px;
  height: 19px;
  margin-right: 10px;
}
.s-review-images-section .s-image-form-section .s-description .s-icon svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.s-review-images-section .s-image-form-section .s-file-field {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  cursor: pointer;
  text-indent: -100%;
  font-size: 0;
}
.s-review-images-section .s-attached-files-section:not(:empty) {
  margin: -20px 0 0;
}
.s-review-images-section .s-attached-files-section .s-file-wrapper {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 40px 40px 0 0;
}
.s-review-images-section .s-attached-files-section .s-file-wrapper .s-image-wrapper {
  width: 200px;
  height: 200px;
  border: solid 1px rgba(0, 0, 0, 0.1);
  background: #f7f7f7 50% no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  background-size: contain;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.s-review-images-section .s-attached-files-section .s-file-wrapper .s-description-wrapper {
  margin-top: 10px;
  line-height: 1.15384615em;
  min-height: 55px;
}
.s-review-images-section .s-attached-files-section .s-file-wrapper .s-description-wrapper.is-extended .s-visible {
  display: none;
}
.s-review-images-section .s-attached-files-section .s-file-wrapper .s-description-wrapper:not(.is-extended) .s-hidden {
  display: none;
}
.s-review-images-section .s-attached-files-section .s-file-wrapper .s-description-wrapper .s-visible {
  padding: 5px;
  text-align: center;
}
.s-review-images-section .s-attached-files-section .s-file-wrapper .s-description-wrapper .s-textarea {
  display: block;
  border: solid 1px rgba(0, 0, 0, 0.1);
  padding: 4px 6px;
  line-height: 15px;
  width: 100%;
  height: 55px;
  resize: none;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  min-width: auto;
  min-height: auto;
}
.s-review-images-section .s-attached-files-section .s-file-wrapper .s-actions {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(50%, -10px);
  -moz-transform: translate(50%, -10px);
  -o-transform: translate(50%, -10px);
  -ms-transform: translate(50%, -10px);
  transform: translate(50%, -10px);
}
.s-review-images-section .s-attached-files-section .s-file-wrapper .s-actions .s-action {
  position: relative;
  width: 20px;
  height: 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 50%;
  border: solid 1px rgba(0, 0, 0, 0.33);
  background: #fff;
  cursor: pointer;
}
.s-review-images-section .s-attached-files-section .s-file-wrapper .s-actions .s-action:not(:first-child) {
  margin-top: 10px;
}
.s-review-images-section .s-attached-files-section .s-file-wrapper .s-actions .s-action .s-icon {
  position: absolute;
  display: inline-block;
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.s-review-images-section .s-attached-files-section .s-file-wrapper .s-actions .s-action .s-icon svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.s-review-images-section .s-errors-section:not(:empty) {
  margin: 20px 0 0;
}
.s-review-images-section .s-errors-section .s-error {
  line-height: 1.16666667em;
  color: #f00;
}
.s-review-images-section .s-errors-section .s-error:not(:first-child) {
  margin-top: 5px;
}
.s-review-images-section,
.s-review-notice-section {
  vertical-align: top;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.s-images-list .s-image {
  border: 1px solid #e1e1e1;
  margin-right: 20px;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
}
@media (max-width: 760px) {
  .s-review-images-section,
  .s-review-notice-section {
    width: 100%;
  }
}
input.wa-error {
  border: 1px solid #f3c0c0 !important;
}
.wa-auth-adapters ul {
  padding: 0;
  margin: 0;
  min-height: 16px;
}
.wa-auth-adapters ul li {
  list-style: none;
  display: inline-block;
}
.wa-auth-adapters ul li a,
.wa-auth-adapters ul li span {
  display: block;
  padding: 0 5px;
}
.wa-auth-adapters ul li a img,
.wa-auth-adapters ul li span img {
  position: relative;
  margin-right: 5px;
  top: -1px;
}
.wa-auth-adapters p {
  color: #6e6e6e;
  font-size: 0.9em;
  margin-bottom: 0;
  margin-top: 10px;
}
.wa-auth-adapters.wa-connect {
  margin-top: 20px;
}
.wa-form {
  margin: 10px 0;
}
@media screen and (max-width: 900px) {
  .wa-form {
    display: block;
  }
}
.wa-form .wa-uncaught-errors .wa-error-msg {
  margin-left: 180px;
}
@media screen and (max-width: 900px) {
  .wa-form .wa-uncaught-errors .wa-error-msg {
    margin-left: 0 !important;
  }
}
.wa-form .wa-buttons-wrapper,
.wa-form .wa-signup-url,
.wa-form .wa-forgotpassword-form-actions {
  margin-left: 180px;
}
@media screen and (max-width: 900px) {
  .wa-form .wa-buttons-wrapper,
  .wa-form .wa-signup-url,
  .wa-form .wa-forgotpassword-form-actions {
    margin-left: 0 !important;
  }
}
.wa-form .wa-field-remember-me {
  padding-left: 180px !important;
}
@media screen and (max-width: 900px) {
  .wa-form .wa-field-remember-me {
    padding-left: 0 !important;
  }
}
.wa-form .wa-signup-url {
  margin-top: 20px;
}
.wa-form .wa-forgotpassword-button,
.wa-form .wa-login-url {
  margin-top: 10px;
}
.wa-form .wa-field-birthday select {
  width: auto !important;
}
.wa-form .wa-field {
  margin: 0 0 10px;
  width: 100%;
  display: flex;
}
@media screen and (max-width: 900px) {
  .wa-form .wa-field {
    display: block;
    margin-bottom: 10px;
  }
}
.wa-form .wa-field .wa-name {
  width: 180px;
  font-weight: var(--font-weight-bold);
  display: flex;
  margin-top: 8px;
}
@media screen and (max-width: 900px) {
  .wa-form .wa-field .wa-name {
    float: none;
    width: 100%;
    margin-left: 0;
    display: block;
    padding-bottom: 0;
  }
}
.wa-form .wa-field .wa-value {
  flex: 1;
  position: relative;
}
@media screen and (max-width: 900px) {
  .wa-form .wa-field .wa-value {
    float: none;
    width: 100%;
    margin-left: 0;
    display: block;
  }
}
.wa-form .wa-field .wa-value .profile-review {
  display: flex;
  align-items: center;
}
.wa-form .wa-field .wa-value .profile-review a {
  margin-left: 10px;
}
.wa-form .wa-captcha p a {
  display: block;
}
.wa-form .wa-captcha-input {
  width: 100px !important;
}
/** Icon 32 **/
.icon32 {
  width: 14px;
  height: 13px;
  display: inline-block;
  background-repeat: no-repeat;
}
.icon32.star,
.icon32.star-hover {
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0i0KHQu9C+0LlfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA1NzYgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1NzYgNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDojRkZCQzAwO30NCjwvc3R5bGU+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMjU5LjMsMTcuOEwxOTQsMTUwLjJMNDcuOSwxNzEuNWMtMjYuMiwzLjgtMzYuNywzNi4xLTE3LjcsNTQuNmwxMDUuNywxMDNsLTI1LDE0NS41DQoJYy00LjUsMjYuMywyMy4yLDQ2LDQ2LjQsMzMuN0wyODgsNDM5LjZsMTMwLjcsNjguN2MyMy4yLDEyLjIsNTAuOS03LjQsNDYuNC0zMy43bC0yNS0xNDUuNWwxMDUuNy0xMDNjMTktMTguNSw4LjUtNTAuOC0xNy43LTU0LjYNCglMMzgyLDE1MC4yTDMxNi43LDE3LjhDMzA1LTUuOCwyNzEuMS02LjEsMjU5LjMsMTcuOEwyNTkuMywxNy44eiIvPg0KPC9zdmc+DQo=");
}
.icon32.star-half {
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0i0KHQu9C+0LlfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA1MzYgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1MzYgNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDojRkZCQzAwO30NCjwvc3R5bGU+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNNTA4LjUsMTcxLjVsLTE0Ni40LTIxLjNMMjk2LjgsMTcuOEMyOTAuOSw2LDI3OS40LDAsMjY4LDBjLTExLjQsMC0yMi44LDUuOS0yOC43LDE3LjhsLTY1LjQsMTMyLjRMMjcuNSwxNzEuNQ0KCWMtMjYuMywzLjgtMzYuOCwzNi4xLTE3LjcsNTQuNmwxMDUuOSwxMDNMOTAuNSw0NzQuNWMtMy42LDIwLjgsMTMsMzcuNSwzMS42LDM3LjVjNC45LDAsMTAtMS4yLDE0LjktMy44TDI2OCw0MzkuNmwxMzAuOSw2OC43DQoJYzQuOSwyLjUsOS45LDMuNywxNC44LDMuN2MxOC42LDAsMzUuMi0xNi42LDMxLjctMzcuNGwtMjUtMTQ1LjVsMTA1LjktMTAzQzU0NS4zLDIwNy42LDUzNC44LDE3NS4zLDUwOC41LDE3MS41TDUwOC41LDE3MS41eg0KCSBNMzg2LjgsMjk0LjdsLTE4LjEsMTcuNmw0LjMsMjQuOWwxOS41LDExMy40bC0xMDIuMS01My42TDI2OCwzODUuM2wwLTMxNy4ybDUxLDEwMy4zbDExLjIsMjIuNmwyNSwzLjZsMTE0LjIsMTYuNkwzODYuOCwyOTQuN3oiLz4NCjwvc3ZnPg0K");
}
.icon32.star-empty {
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAyMi4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0i0KHQu9C+0LlfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA1NzYgNTEyIiBzdHlsZT0iZW5hYmxlLWJhY2tncm91bmQ6bmV3IDAgMCA1NzYgNTEyOyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+DQo8c3R5bGUgdHlwZT0idGV4dC9jc3MiPg0KCS5zdDB7ZmlsbDojQzlDOUM5O30NCjwvc3R5bGU+DQo8cGF0aCBjbGFzcz0ic3QwIiBkPSJNMjU5LjMsMTcuOEwxOTQsMTUwLjJMNDcuOSwxNzEuNWMtMjYuMiwzLjgtMzYuNywzNi4xLTE3LjcsNTQuNmwxMDUuNywxMDNsLTI1LDE0NS41DQoJYy00LjUsMjYuMywyMy4yLDQ2LDQ2LjQsMzMuN0wyODgsNDM5LjZsMTMwLjcsNjguN2MyMy4yLDEyLjIsNTAuOS03LjQsNDYuNC0zMy43bC0yNS0xNDUuNWwxMDUuNy0xMDNjMTktMTguNSw4LjUtNTAuOC0xNy43LTU0LjYNCglMMzgyLDE1MC4yTDMxNi43LDE3LjhDMzA1LTUuOCwyNzEuMS02LjEsMjU5LjMsMTcuOEwyNTkuMywxNy44eiIvPg0KPC9zdmc+DQo=");
}
.wa-form .wa-field.wa-separator {
  height: 10px;
}
.wa-form .wa-field .wa-value input.wa-error {
  border: 1px solid red;
}
.wa-form .wa-field .wa-value .wa-error-msg {
  color: red;
  font-style: normal;
  width: auto;
  padding: 1px 0;
  display: table;
  margin: 5px 0;
}
.wa-error-msg {
  color: red;
  font-style: normal;
}
#wa-my-info-read-wrapper .wa-field img,
#wa-my-info-edit-wrapper .wa-field.wa-field-photo img {
  border-radius: 50%;
}
#wa-my-info-edit-wrapper .wa-field.wa-field-photo {
  display: inline-block;
  vertical-align: middle;
}
#wa-my-info-edit-wrapper .wa-field.wa-field-photo img {
  vertical-align: middle;
}
#wa-my-info-edit-wrapper .wa-field.wa-field-photo span {
  margin-left: 15px;
  vertical-align: middle;
}
#wa-my-info-edit-wrapper .wa-field.wa-field-photo p {
  margin-top: 20px;
}
.wa-form .wa-field .wa-value input[type="text"],
.wa-form .wa-field .wa-value input[type="email"],
.wa-form .wa-field .wa-value input[type="password"],
.wa-form .wa-field .wa-value select {
  width: 100%;
  max-width: 300px;
  margin: 0;
  position: relative;
}
.wa-form .wa-field .wa-value .show-password {
  top: 0;
  margin-left: -25px;
  margin-right: 20px;
  position: relative;
  z-index: 10;
  cursor: pointer;
  color: #888888;
}
@media screen and (max-width: 900px) {
  .wa-form .wa-field .wa-value .show-password {
    top: 12px;
    right: -10px;
    position: absolute;
    z-index: 10;
    cursor: pointer;
    color: #888888;
  }
}
.wa-form .wa-field .wa-value textarea {
  min-width: 300px;
  height: 70px;
}
@media screen and (max-width: 900px) {
  .wa-form .wa-field .wa-value textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
  }
}
.wa-form .wa-field .wa-value input.wa-captcha-input {
  width: 100px;
  min-width: 0;
}
.wa-form .wa-field .wa-value .wa-captcha p {
  margin-bottom: 5px;
}
.wa-form .wa-field .wa-value label {
  display: block;
}
.wa-form .wa-field .wa-value .wa-captcha img {
  margin-left: 0;
}
.wa-form .wa-field .wa-value .errormsg {
  margin-left: 0;
}
.wa-form .wa-field .wa-value.wa-submit {
  margin-top: 10px;
}
.wa-form .wa-field .wa-value p label {
  display: block;
  margin: 0;
}
.wa-form .wa-field .wa-value p {
  line-height: 1.6em;
  margin-bottom: 0;
  position: relative;
}
.wa-form .wa-field .wa-value p span {
  color: #777777;
  display: block;
}
.wa-form .wa-field .wa-value p i.icon16 {
  float: left;
  left: -20px;
  margin-top: 2px;
  position: absolute;
}
.wa-form .wa-field .wa-value p input {
  display: block;
  margin-bottom: 2px;
}
.wa-form .wa-field .wa-value p input[type="radio"],
.wa-form .wa-field .wa-value p input[type="checkbox"] {
  display: inline;
}
.wa-form .wa-field .wa-value p .field.wa-required span:after {
  content: " *";
  color: #ffaaaa;
}
.wa-form .wa-field.wa-required .wa-name:after {
  content: " *";
  color: #ffaaaa;
}
.wa-signup-form .wa-form .wa-field.wa-field-email {
  margin-top: 20px;
}
.wa-signup-form .wa-form .wa-field.wa-field-email .wa-value input {
  min-width: 300px;
}
.wa-signup-form .wa-form .wa-field.wa-field-password .wa-value input,
.wa-signup-form .wa-form .wa-field.wa-field-password_confirm .wa-value input {
  min-width: 200px;
  width: 200px;
}
.wa-signup-form-wrapper .wa-adapters-section {
  margin: 0 0 20px;
}
.wa-signup-form-wrapper .wa-adapters-section .wa-section-header {
  margin: 0 0 10px;
  font-size: 14px;
  color: #888;
}
.wa-signup-form-wrapper .wa-adapters-section .wa-section-divider {
  margin: 2.14285714em 0 0;
  color: #bbb;
  overflow: hidden;
}
.wa-signup-form-wrapper .wa-adapters-section .wa-section-divider .wa-text {
  position: relative;
}
.wa-signup-form-wrapper .wa-adapters-section .wa-section-divider .wa-text:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-left: 10px;
  width: 230px;
  height: 1px;
  background: #efefef;
}
.wa-signup-form-wrapper .wa-adapters-section .wa-adapters-list,
.user-auth-provider {
  margin: 0;
  padding: 0;
}
.wa-signup-form-wrapper .wa-adapters-section .wa-adapters-list li,
.user-auth-provider li {
  display: inline-block;
  vertical-align: top;
  width: 2.14285714em;
  margin: 0 1.07142857em 0 0;
  padding: 0;
  list-style: none;
}
.wa-signup-form-wrapper .wa-adapters-section .wa-adapters-list li:last-child {
  margin-right: 0;
}
.wa-signup-form-wrapper .wa-adapters-section .wa-adapters-list li a {
  display: inline-block;
  vertical-align: top;
}
.wa-signup-form-wrapper .wa-adapters-section .wa-adapters-list li img {
  width: 100%;
  vertical-align: top;
}
.wa-captcha {
  padding: 7px 0 10px;
}
.wa-captcha strong {
  font-size: 1.2em;
}
.wa-captcha p img {
  float: left !important;
  margin-right: 5px;
  margin-top: 0;
}
.wa-captcha .wa-captcha-refresh {
  text-decoration: underline;
  color: #767676;
}
.wa-captcha .wa-captcha-input {
  display: inline !important;
  margin-bottom: 5px;
  width: 100px;
}
.wa-captcha .errormsg {
  display: block;
}
input.error,
textarea.error {
  border: 1px solid red !important;
}
.errormsg {
  color: red;
  font-style: normal;
  width: auto;
  padding: 1px 0;
  display: table;
  margin: 5px 0;
  margin-left: 170px;
}
.wa-login-form-wrapper input[type="text"],
.wa-login-form-wrapper input[type="email"],
.wa-login-form-wrapper input[type="password"] {
  padding: 8px !important;
  background: #ffffff !important;
  border: 1px solid #bababa !important;
  border-radius: var(--border-radius) !important;
}
input[type="text"],
input[type="email"],
input[type="password"],
select,
textarea {
  padding: 8px;
}
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  -webkit-appearance: none;
}
@media screen and (max-width: 900px) {
  input[type="text"],
  input[type="email"],
  input[type="password"],
  textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
  }
}
.wa-auth-adapters:before {
  content: " ";
  clear: both;
  display: block;
}
.wa-adapters-section {
  margin: 0 0 20px;
}
.wa-adapters-section .wa-section-header {
  margin: 0 0 10px;
  font-size: 14px;
  color: #888;
}
.wa-adapters-section .wa-section-divider {
  margin: 2.14285714em 0 0;
  line-height: 1.16666667em;
  color: #bbb;
  overflow: hidden;
}
.wa-adapters-section .wa-section-divider .wa-text {
  position: relative;
}
.wa-adapters-section .wa-section-divider .wa-text:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-left: 10px;
  width: 230px;
  height: 1px;
  background: #efefef;
}
.wa-adapters-section .wa-adapters-list {
  margin: 0;
  padding: 0;
}
.wa-adapters-section .wa-adapters-list li {
  display: inline-block;
  vertical-align: top;
  width: 2.14285714em;
  margin: 0 1.07142857em 0 0;
  padding: 0;
  list-style: none;
}
.wa-adapters-section .wa-adapters-list li:last-child {
  margin-right: 0;
}
.wa-adapters-section .wa-adapters-list li a {
  display: inline-block;
  vertical-align: top;
}
.wa-adapters-section .wa-adapters-list li img {
  width: 100%;
  vertical-align: top;
}
.wa-field-wrapper .wa-select {
  height: unset !important;
}
.account {
  display: flex;
  /** Order My **/
}
@media screen and (max-width: 900px) {
  .account {
    display: block;
  }
}
.account__leftside {
  min-width: 245px;
  width: 280px;
  margin-right: 30px;
}
@media screen and (max-width: 900px) {
  .account__leftside {
    min-width: 100%;
    width: 100%;
    margin-right: 0;
  }
}
.account__rightside {
  flex: 1;
}
.account__ext-bg {
  background: var(--bg-secondary-color);
  margin-top: 20px;
  padding: 20px;
  border-radius: var(--border-radius);
}
.account__info {
  border: 1px solid var(--form-border);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  min-height: 200px;
  transition: box-shadow 0.3s, border-color 0.3s, -webkit-box-shadow 0.3s;
  transition: all 0.4s;
  background: var(--color-white);
  box-shadow: var(--box-shadow-item);
}
.account__info-time {
  font-size: var(--font-small);
  color: var(--color-grey);
  font-weight: var(--font-weight-normal);
  margin-left: 10px;
}
.account__info-inner {
  padding: var(--grid-gutter);
}
@media screen and (max-width: 900px) {
  .account__info-inner {
    padding: 0 10px 30px 10px;
  }
}
.account__info-inner b {
  color: var(--color-grey);
}
.account__info .is-features {
  display: flex;
}
.account__info-tabs {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  background: var(--bg-secondary-color);
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}
.account__info-tabs-number {
  flex: 1;
  padding: var(--grid-gutter);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-bigger);
  color: var(--color-primary);
}
@media screen and (max-width: 900px) {
  .account__info-tabs-number {
    padding: 20px 10px;
  }
}
.account__info-tabs-date {
  font-size: var(--font-small);
  color: var(--color-grey);
  font-weight: var(--font-weight-normal);
  margin-left: 10px;
}
.account__info-tabs-status {
  padding-right: var(--grid-gutter);
}
@media screen and (max-width: 900px) {
  .account__info-tabs-status {
    padding: 20px 10px;
  }
}
.account__info-tabs-status span {
  background: var(--color-white);
  font-size: var(--font-small);
  display: inline-block;
  vertical-align: middle;
  padding: 0 10px;
  border-radius: var(--border-radius);
  margin-left: 10px;
  font-style: normal !important;
}
.account__alert {
  color: var(--color-success);
  font-size: var(--font-bigger);
  font-weight: var(--font-weight-bold);
}
.account__profile {
  padding: 20px;
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  background: var(--bg-secondary-color);
  display: table;
  width: 100%;
}
.account__profile__photos {
  display: table-cell;
  width: 25%;
  vertical-align: top;
}
.account__profile__photos img {
  border-radius: 50%;
  display: inline;
  margin: 2px;
}
.account__profile__card {
  display: table-cell;
  width: 70%;
  vertical-align: middle;
}
.account__profile__card p {
  margin-bottom: 0;
}
.account__profile__card__name {
  font-weight: var(--font-weight-semibold);
}
.account__check-pin input {
  display: inline-block !important;
  vertical-align: middle;
}
.account .wa-auth-adapters {
  margin-top: 20px;
}
.account #wa-my-info-cancel {
  margin-left: 20px;
}
.account .is-vert-align {
  vertical-align: middle !important;
  padding-left: 0 !important;
}
#wa-my-info-edit-wrapper select,
#wa-my-info-edit-wrapper input[name='profile[birthday][year]'] {
  display: inline-block;
  margin-right: 10px;
}
#wa-my-info-edit-wrapper input[name='profile[birthday][year]'] {
  width: 100px !important;
}
.order-list a {
  text-decoration: none;
}
.order-list th {
  background: var(--bg-secondary-color);
  padding: 20px 15px;
}
.order-list td {
  vertical-align: top;
  border: 1px solid var(--form-border);
  background: #fff;
}
.order-list__id a {
  display: inline-block;
  padding: 10px 15px;
}
.order-list__state {
  padding: 20px 15px;
}
.orders-card img {
  max-height: 75px;
  margin: 5px 0;
}
@media screen and (max-width: 900px) {
  .orders-card .th-header-row {
    display: none;
  }
}
.orders-card a {
  font-size: 15px;
  line-height: 20px;
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  color: var(--font-color);
}
@media screen and (max-width: 900px) {
  .orders-card .is-center {
    justify-content: start;
  }
}
.orders-card__final {
  flex-direction: column;
  align-items: end;
  display: flex;
  margin: var(--grid-gutter);
}
.orders-card__final p {
  padding: 0;
  margin-bottom: 0;
}
.orders-card .show-detail {
  color: var(--color-link);
}
@media screen and (max-width: 900px) {
  .orders-card .show-detail {
    display: block;
    margin-top: 10px;
    margin-left: 0;
  }
}
.orders-card .th-header {
  background: var(--bg-secondary-color);
  text-align: center;
  padding: 10px;
  font-weight: var(--font-weight-bold);
  overflow: hidden;
  border-radius: var(--border-radius);
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-bottom: 10px;
}
@media screen and (max-width: 900px) {
  .orders-card .th-header-row {
    display: none;
  }
}
.orders-card .is-right {
  -webkit-box-align: start;
  align-items: start;
  margin-top: 10px;
}
.orders-card .row-line {
  border-bottom: 1px solid var(--form-border);
  padding: 10px 0;
}
.orders-card .row-line:last-child {
  border-bottom: 0;
}
.orders-card__items {
  display: none;
  margin-top: 10px;
}
.orders-card__price {
  font-size: var(--font-bigger);
  font-weight: var(--font-weight-bold);
  color: var(--color-link);
}
@media screen and (max-width: 900px) {
  .orders-card__price {
    justify-content: start !important;
  }
}
.orders-card__total {
  font-size: var(--font-bigger);
  font-weight: var(--font-weight-bold);
  margin-top: 10px;
}
@media screen and (max-width: 900px) {
  .orders-card__qty {
    justify-content: end !important;
  }
}
.orders-card__info {
  padding: 5px 20px;
}
.orders-card__button {
  padding: 20px 0 0;
}
.orders-card__button a {
  font-weight: var(--font-weight-normal);
  margin-left: 20px;
}
.orders-card__button i {
  margin-left: 10px;
}
.orders-card__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.orders-card .is-center-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.orders-card .is-center-name a {
  color: var(--font-color);
}
.orders-card .header {
  margin: 0 0 10px;
  position: relative;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-bigger);
  padding: 15px 20px;
  background: var(--bg-secondary-color);
  border-radius: var(--border-radius);
}
.orders-card .header .time {
  font-size: 14px;
  color: var(--color-grey);
  font-weight: var(--font-weight-normal);
  margin-left: 10px;
}
.orders-card .header .time i {
  margin-right: 3px;
}
.orders-card__order-status {
  vertical-align: middle;
  display: inline-block;
  font-size: 14px;
  position: absolute;
  right: 15px;
  top: 25px;
}
.orders-card__order-status span {
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 3px;
  margin-bottom: 2px;
}
.orders-card__order-status i {
  margin-left: 15px;
  margin-right: 5px;
}
.orders-card__items.show {
  display: block;
}
.shop-pages {
  display: flex;
}
@media screen and (max-width: 900px) {
  .shop-pages {
    display: block;
  }
}
.shop-pages__leftside {
  min-width: 245px;
  width: 280px;
  margin-right: 30px;
}
@media screen and (max-width: 900px) {
  .shop-pages__leftside {
    width: 100%;
    margin-right: 0;
  }
}
.shop-pages__rightside {
  flex: 1;
}
.order-page {
  margin-top: 25px;
  padding-bottom: 80px;
}
@media screen and (max-width: 900px) {
  .order-page .header-container__name h2 {
    margin-top: 0 !important;
  }
}
.order-page__bg {
  background: var(--bg-secondary-color);
  padding-top: 30px;
}
@media screen and (max-width: 900px) {
  .order-page__bg {
    background: transparent;
  }
}
.order-page__bg .container {
  max-width: 800px;
  margin: 0 auto;
}
.order-page__bg-empty {
  background: #fff;
  text-align: center;
  margin-top: 100px;
}
@media screen and (max-width: 900px) {
  .order-page {
    flex-direction: column;
  }
}
.order-page__leftside {
  flex: 1;
  margin-right: 25px;
  background: var(--bg-color);
  border-radius: var(--border-radius);
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .order-page__leftside {
    margin-right: 0;
    order: 1;
  }
}
.order-page__rightside {
  width: 550px;
}
@media screen and (max-width: 900px) {
  .order-page__rightside {
    width: 100%;
    order: 0;
  }
}
.order-page__inner {
  border: 1px solid var(--form-border);
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 20px;
  background: var(--color-white);
  box-shadow: var(--box-shadow-item);
}
@media screen and (max-width: 900px) {
  .order-page__inner {
    margin-bottom: 20px;
  }
}
.wa-order-form-wrapper .wa-step-section {
  margin-top: 0 !important;
  margin-bottom: 20px !important;
  background: var(--color-white);
}
.wa-field-wrapper .wa-label {
  font-size: unset !important;
  color: var(--font-color) !important;
  font-weight: var(--font-weight-bold);
}
.wa-order-form-wrapper .wa-step-section {
  border: 1px solid var(--form-border);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow-item);
}
.wa-order-form-wrapper .wa-step-section:first-child {
  padding-top: 0 !important;
}
.wa-order-form-wrapper .wa-step-section .wa-section-body {
  padding: 20px;
}
.wa-order-form-wrapper .wa-step-section .wa-section-header {
  background: var(--bg-secondary-color);
  padding: 15px 20px;
}
.wa-order-form-wrapper .wa-step-section > .wa-section-header {
  margin-bottom: 0 !important;
  border-top-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}
.wa-order-form-wrapper .wa-step-details-section .wa-details-description {
  margin-bottom: 20px;
  font-size: var(--font-bigger) !important;
}
.wa-order-form-wrapper .wa-step-section > .wa-section-header > .wa-header {
  position: relative;
  padding-left: 40px;
}
.wa-order-form-wrapper .wa-step-section > .wa-section-header > .wa-header,
.wa-order-form-wrapper .wa-step-auth-section > .wa-section-header .wa-contact-name {
  font-weight: var(--font-weight-bold) !important;
  font-size: var(--font-bigger) !important;
  color: var(--font-color) !important;
}
.wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-button {
  margin-top: 10px;
}
.wa-order-form-wrapper .wa-step-confirm-section .wa-section-body .wa-actions-section .wa-button {
  text-shadow: unset;
}
.wa-order-cart-wrapper .wa-products .wa-product .wa-product-body > .wa-column-quantity {
  width: 80px !important;
  text-align: center !important;
}
@media screen and (max-width: 900px) {
  .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body > .wa-column-quantity {
    width: 120px !important;
  }
}
.wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-details .wa-actions {
  display: block !important;
  margin-top: 7px;
  margin-left: -5px;
}
.wa-icon.size-11 {
  width: 23px !important;
  height: 21px !important;
}
.wa-order-form-wrapper .wa-step-confirm-section.is-single {
  border-top: 1px solid var(--form-border) !important;
}
.wa-order-cart-wrapper .wa-products .wa-product .wa-actions .wa-action {
  font-size: var(--font-normal) !important;
}
.wa-tooltip:not(.custom)::after,
.wa-error-text {
  font-size: var(--font-normal) !important;
}
.wa-error-text {
  color: var(--color-error) !important;
}
.wa-order-form-wrapper {
  font-size: var(--font-normal) !important;
}
.wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-details .wa-name {
  font-size: var(--font-normal) !important;
  color: var(--font-color) !important;
}
.wa-order-cart-wrapper .wa-products .wa-product .wa-product-body > .wa-column-image {
  width: 70px !important;
}
.wa-quantity-box .wa-input {
  text-align: center !important;
  background: var(--color-lightGrey) !important;
  font-weight: var(--font-weight-bold) !important;
  font-size: var(--font-bigger) !important;
  border: 0 !important;
  height: 53px !important;
}
.wa-quantity-box .wa-button {
  display: none !important;
}
.wa-order-cart-wrapper .wa-products .wa-product .wa-price-section .wa-price-total,
.wa-order-cart-wrapper .wa-cart-details .wa-price-section .wa-price-total {
  font-size: var(--font-header) !important;
  color: var(--color-link) !important;
  font-weight: var(--font-weight-bold) !important;
}
.wa-order-cart-wrapper .wa-cart-details .wa-price-section .wa-price-total {
  margin-top: 0 !important;
}
.wa-order-form-wrapper .wa-step-confirm-section .wa-section-body .wa-total-section .wa-item.wa-item-total .wa-value .wa-price {
  font-size: var(--font-header) !important;
  color: var(--color-link) !important;
  font-weight: var(--font-weight-bold) !important;
}
.wa-order-form-wrapper .wa-step-details-section .wa-details-rates-section {
  margin-top: 0 !important;
}
.wa-step-auth-section .wa-header::after {
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Stroke-Gap-Icons';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\e69c";
  color: var(--color-primary);
  font-size: var(--font-bigger);
}
.wa-step-region-section .wa-header::after {
  position: absolute;
  left: 0;
  top: 2px;
  font-family: 'Stroke-Gap-Icons';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\e667";
  color: var(--color-primary);
  font-size: var(--font-bigger);
}
.wa-step-payment-section .wa-header::after {
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Stroke-Gap-Icons';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\e653";
  color: var(--color-primary);
  font-size: var(--font-bigger);
}
.wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-input,
.wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-button {
  height: 40px !important;
}
.wa-dropdown > .wa-dropdown-toggle {
  line-height: unset !important;
  border-radius: var(--border-radius);
  padding: 5px 10px !important;
  font-size: var(--font-normal) !important;
}
.wa-order-form-wrapper .wa-step-details-section .wa-details-description {
  font-size: var(--font-normal) !important;
  color: var(--font-color) !important;
}
.wa-order-form-wrapper .wa-step-shipping-section .wa-delivery-types-section .wa-types-list .wa-type-wrapper .wa-name,
.wa-payment-name {
  font-weight: var(--font-weight-bold);
}
.wa-order-form-wrapper .wa-step-payment-section .wa-methods-list a,
.wa-order-form-wrapper .wa-step-shipping-section .wa-delivery-types-section .wa-types-list .wa-type-wrapper .wa-name a {
  color: var(--font-color) !important;
  font-size: var(--font-bigger) !important;
}
.wa-header {
  font-size: var(--font-middle) !important;
  font-weight: var(--font-weight-bold);
}
.wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-button,
.wa-order-cart-wrapper .wa-cart-details .wa-affiliate-section .wa-button {
  background: #e9e9e9;
  border: 1px solid #e9e9e9;
  color: #1c1c1c;
  font-family: Roboto, Arial, serif;
}
.wa-order-cart-wrapper .wa-cart-details .wa-affiliate-section .wa-button {
  width: 290px !important;
  height: 43px !important;
  font-size: 14px !important;
}
.wa-order-form-wrapper .wa-step-payment-section .wa-methods-list .wa-method-wrapper .wa-method > * {
  vertical-align: middle !important;
}
.wa-order-form-wrapper .wa-step-payment-section .wa-methods-list.wide .wa-method-wrapper {
  padding-left: 60px !important;
}
.wa-order-form-wrapper .wa-step-shipping-section .wa-delivery-types-section .wa-types-list .wa-type-wrapper.is-active,
.wa-order-form-wrapper .wa-step-payment-section .wa-methods-list.wide .wa-method-wrapper.is-active {
  box-shadow: none !important;
  background: #ffffff !important;
  border: 3px solid var(--color-primary) !important;
}
.wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-button {
  height: 43px;
}
.wa-type-wrapper {
  position: relative;
}
.wa-type-wrapper.is-active::after,
.wa-method-wrapper.is-active::before {
  position: absolute;
  top: calc(60% - 18px);
  left: 20px;
  right: unset;
  content: " ";
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='350' height='350' xmlns='http://www.w3.org/2000/svg'%3E%3C!-- Created with SVG Editor - http://github.com/mzalive/SVG Editor/ --%3E%3Cg%3E%3Ctitle%3Ebackground%3C/title%3E%3Crect fill='%23fff' id='canvas_background' height='352' width='352' y='-1' x='-1'/%3E%3C/g%3E%3Cg%3E%3Ctitle%3ELayer 1%3C/title%3E%3Cellipse ry='174' rx='174' id='svg_1' cy='174.749992' cx='174.749999' stroke-opacity='null' stroke-width='1.5' stroke='%232fb457 ' fill='%232fb457 '/%3E%3Cellipse ry='59.995623' rx='59.995623' id='svg_4' cy='174.749992' cx='174.749988' fill-opacity='null' stroke-opacity='null' stroke-width='1.5' stroke='%232fb457 ' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
}
.wa-type-wrapper::after,
.wa-method-wrapper::before {
  position: absolute;
  top: calc(60% - 18px);
  left: 25px;
  right: unset;
  content: " ";
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg width='595.021' height='595.021' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-width='0' stroke='%23dedede ' fill='%23dedede' d='m507.529,87.493c-27.264,-27.264 -59.022,-48.672 -94.396,-63.635c-36.644,-15.5 -75.545,-23.358 -115.622,-23.358c-40.078,0 -78.979,7.858 -115.624,23.358c-35.373,14.961 -67.132,36.371 -94.395,63.635c-27.264,27.263 -48.673,59.022 -63.635,94.395c-15.499,36.644 -23.357,75.546 -23.357,115.623c0,40.077 7.858,78.979 23.358,115.623c14.961,35.373 36.371,67.132 63.635,94.396c27.263,27.263 59.022,48.672 94.395,63.634c36.645,15.5 75.546,23.358 115.624,23.358c40.077,0 78.979,-7.858 115.623,-23.358c35.373,-14.961 67.133,-36.371 94.396,-63.634c27.263,-27.264 48.673,-59.022 63.634,-94.396c15.499,-36.645 23.358,-75.546 23.358,-115.623c0,-40.077 -7.858,-78.979 -23.358,-115.624c-14.963,-35.372 -36.373,-67.131 -63.636,-94.394zm-210.018,464.189c-140.375,0 -254.171,-113.797 -254.171,-254.171c0,-140.375 113.796,-254.171 254.171,-254.171c140.374,0 254.171,113.796 254.171,254.171c0,140.374 -113.797,254.171 -254.171,254.171z'/%3E%3Cpath stroke-width='0' stroke='%23dedede ' fill='%23dedede' d='m297.511,595.021c-40.146,0 -79.112,-7.872 -115.818,-23.397c-35.433,-14.988 -67.245,-36.434 -94.553,-63.741c-27.31,-27.31 -48.755,-59.122 -63.742,-94.555c-15.526,-36.705 -23.398,-75.672 -23.398,-115.817c0,-40.145 7.872,-79.112 23.397,-115.818c14.987,-35.432 36.433,-67.245 63.742,-94.553c27.308,-27.309 59.12,-48.755 94.553,-63.742c36.707,-15.526 75.674,-23.398 115.819,-23.398c40.146,0 79.112,7.872 115.817,23.397c35.435,14.988 67.247,36.434 94.555,63.742c27.31,27.31 48.755,59.123 63.741,94.553c15.525,36.706 23.397,75.673 23.397,115.818c0,40.144 -7.872,79.11 -23.397,115.817c-14.985,35.432 -36.432,67.244 -63.741,94.555c-27.31,27.31 -59.122,48.755 -94.555,63.741c-36.705,15.526 -75.672,23.398 -115.817,23.398zm0,-594.021c-40.011,0 -78.846,7.845 -115.429,23.318c-35.314,14.937 -67.02,36.311 -94.236,63.528c-27.218,27.217 -48.591,58.923 -63.528,94.236c-15.473,36.583 -23.318,75.418 -23.318,115.429s7.845,78.847 23.318,115.429c14.936,35.312 36.31,67.019 63.528,94.236c27.217,27.216 58.922,48.59 94.236,63.526c36.582,15.474 75.417,23.319 115.429,23.319c40.011,0 78.847,-7.846 115.429,-23.319c35.312,-14.936 67.019,-36.309 94.236,-63.526c27.219,-27.22 48.592,-58.925 63.526,-94.236c15.474,-36.584 23.319,-75.42 23.319,-115.429c0,-40.011 -7.846,-78.847 -23.319,-115.429c-14.935,-35.312 -36.309,-67.017 -63.526,-94.236c-27.217,-27.216 -58.922,-48.59 -94.236,-63.528c-36.583,-15.473 -75.419,-23.318 -115.429,-23.318zm0,551.182c-68.025,0 -131.979,-26.49 -180.08,-74.592c-48.101,-48.101 -74.591,-112.055 -74.591,-180.079c0,-68.025 26.49,-131.979 74.591,-180.08s112.055,-74.591 180.08,-74.591c68.024,0 131.979,26.49 180.079,74.591c48.102,48.101 74.592,112.055 74.592,180.08c0,68.024 -26.49,131.979 -74.592,180.079c-48.101,48.101 -112.055,74.592 -180.079,74.592zm0,-508.342c-67.758,0 -131.46,26.386 -179.373,74.298s-74.298,111.615 -74.298,179.373s26.386,131.46 74.298,179.372c47.913,47.912 111.615,74.299 179.373,74.299s131.46,-26.387 179.372,-74.299s74.299,-111.614 74.299,-179.372s-26.387,-131.46 -74.299,-179.373c-47.912,-47.912 -111.614,-74.298 -179.372,-74.298z'/%3E%3C/svg%3E");
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
}
.cart {
  display: flex;
}
@media screen and (max-width: 900px) {
  .cart {
    display: block;
  }
}
.cart__leftside {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cart__leftside .p-list {
  padding-top: 0;
}
@media screen and (max-width: 900px) {
  .cart__leftside .p-list-inner {
    display: block;
    text-align: center;
  }
}
.cart__leftside .p-list__leftside {
  width: 150px;
}
@media screen and (max-width: 900px) {
  .cart__leftside .p-list__leftside {
    width: 100%;
  }
}
.cart__leftside .p-list-img {
  max-height: 120px;
}
.cart__leftside .p-list-img img {
  max-height: 120px;
  max-width: 120px;
}
.cart__leftside .p-list__rightside {
  width: 250px;
}
@media screen and (max-width: 900px) {
  .cart__leftside .p-list__rightside {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .cart__leftside .p-list__rightside-top {
    display: flex;
    flex-direction: column;
  }
}
.cart__leftside .p-list-price-cart s {
  display: block;
}
.cart__leftside .p-list-price {
  display: flex;
  flex: 1;
}
.cart__leftside .p-list-button-qty {
  width: 70px;
}
.cart__leftside .p-list-button {
  width: auto;
}
@media screen and (max-width: 900px) {
  .cart__leftside .p-list-button {
    display: none;
  }
}
.cart__rightside {
  width: 400px;
  display: flex;
  flex-direction: column;
  margin-left: 30px;
}
@media screen and (max-width: 900px) {
  .cart__rightside {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-left: 0;
  }
}
.cart__rightside-inner {
  background: var(--bg-secondary-color);
  border-radius: var(--border-radius);
  padding: 20px;
}
.cart__rightside-inner .button {
  width: 100%;
  font-size: var(--font-bigger);
  padding: 15px;
}
.cart__rightside-inner .checkout-block-inner {
  display: flex;
  margin-bottom: 10px;
  font-size: var(--font-middle);
}
.cart__rightside-inner .checkout-block__leftside {
  flex: 1;
}
.cart__rightside-inner .checkout-block__rightside {
  flex: 1;
}
.cart__rightside-inner .checkout-block .price {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-bigger);
}
.cart__rightside-inner .checkout-block .button {
  font-size: var(--font-bigger);
  margin-top: 10px;
  margin-bottom: 5px;
  width: 100%;
  padding: 15px;
}
.cart__rightside .checkout-btn {
  margin-bottom: 10px;
}
.cart__rightside .storequickorder-button {
  background: transparent !important;
  border: 1px solid var(--color-link) !important;
  color: var(--color-link) !important;
  width: 100%;
  font-size: var(--font-bigger);
  padding: 15px;
}
.cart__rightside .storequickorder-button:hover {
  background: var(--color-link) !important;
  color: var(--color-white) !important;
}
.cart__qty {
  display: inline-block;
  border: 1px solid #e6e6e6;
  background: #fff;
  border-radius: var(--border-radius);
  width: 80px;
}
.cart__qty__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: stretch;
  align-content: stretch;
  height: 36px;
  border-radius: var(--border-radius);
}
.cart__btn {
  text-align: right;
  flex-basis: 100%;
  margin: 0 10px;
}
.cart__btn .button {
  width: 100%;
  height: 100%;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 20px;
}
.cart__btn .button svg {
  stroke: #fff;
  height: 16px;
  stroke-width: 3;
  margin-right: 5px;
}
.cart__qty-value {
  height: 100%;
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-left: 1px solid #e6e6e6 !important;
  border-right: 1px solid #e6e6e6 !important;
  width: 40px;
  text-align: center;
  padding: 0 !important;
}
.cart__qty-dec {
  background: #fff;
  height: 100%;
  width: 20px !important;
  padding: 0;
  border-radius: 0;
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
}
.cart__qty-dec:hover {
  color: #fff;
}
.cart__qty-inc {
  background: #fff;
  width: 20px !important;
  padding: 0;
  border-radius: 0;
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
}
.cart__qty-inc:hover {
  color: #fff;
}
form {
  width: 100%;
}
.articul {
  margin: 10px 0;
  font-size: 12px;
}
.p-list {
  margin-top: 0;
  padding: 20px 10px 10px 10px;
  border-bottom: 1px solid #eaeaea;
}
.p-list:last-child {
  border-bottom: 0;
}
.p-list .zoom-image img {
  max-height: 100px;
  max-width: 80%;
}
.p-list .extra {
  display: inline;
  font-size: 14px;
  text-decoration: none;
}
.p-list .extra:hover,
.p-list .extra:focus {
  text-decoration: none;
  opacity: 0.8;
}
.p-list .price {
  margin-top: 10px;
}
.p-list .services {
  margin: 10px 0;
}
.affiliate-block {
  margin-bottom: 10px;
  background: var(--bg-secondary-color);
  padding: 20px;
  margin-top: 10px;
  position: relative;
  border-radius: 4px;
}
.affiliate-block .icon-info {
  font-size: 50px;
  position: absolute;
  top: 25px;
  left: 25px;
  color: var(--color-link);
}
.affiliate-text {
  padding-left: 80px;
}
.affiliate-text .btn-accept {
  margin-bottom: 10px;
}
.affiliate-text strong,
.affiliate-text .affiliate-discount-available {
  font-weight: 700;
}
.row-some-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.col-some-height {
  display: flex;
  flex-direction: column;
}
.checkout-sticky {
  position: -webkit-sticky;
  position: sticky;
  box-sizing: border-box;
  z-index: 1;
  top: 15px;
}
.delete-item {
  color: #707070;
  cursor: pointer;
  margin-top: 20px;
  text-decoration: underline;
  text-align: right;
}
@media screen and (max-width: 900px) {
  .delete-item {
    justify-content: center !important;
  }
}
.delete-item .icon-close {
  background-image: url("img/close.svg");
  width: 12px;
  height: 12px;
  background-size: 12px;
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 2px;
}
.cupon {
  margin-bottom: 20px;
}
.cupon__area {
  height: 100%;
}
.cupon__input {
  flex: 1;
  position: relative;
}
.cupon__input .button {
  width: 100%;
  border: 1px solid var(--form-border);
  background: #fff;
}
.cupon__input__delete {
  background-image: url("img/close.svg");
  width: 16px;
  height: 16px;
  background-size: 16px;
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  position: absolute;
  right: 16px;
  top: 17px;
  z-index: 10;
  cursor: pointer;
}
.cupon__btn {
  width: 150px;
  margin-left: 10px;
}
.cupon__btn .button {
  background: var(--color-white);
}
.cupon .wa-error-msg {
  color: var(--color-error);
  margin-bottom: 20px;
  font-size: var(--font-middle);
}
.cupon__inner {
  margin-bottom: 10px;
  font-size: 14px;
  position: relative;
  display: flex;
}
.cupon-text {
  margin-bottom: 10px;
}
.related-cart {
  margin-top: 30px;
}
.cart-product-one .cart-name {
  overflow-y: hidden;
  font-size: 14px;
  line-height: 16px;
  word-wrap: break-word;
  font-weight: 500;
}
.cart-product-one .cart-name a {
  text-decoration: none;
}
.cart-product-one .price {
  font-size: 20px;
  line-height: 18px;
  font-weight: 700;
  height: 20px;
}
.checkout {
  display: flex;
}
@media screen and (max-width: 900px) {
  .checkout {
    display: block;
  }
}
.checkout__leftside {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.checkout__steps {
  display: flex;
  width: 100%;
  margin: 20px 0 40px;
  position: relative;
}
.checkout__steps-item {
  flex: 1;
  text-align: center;
}
.checkout__steps-dots {
  width: 24px;
  height: 24px;
  background: var(--color-lightGrey);
  border-radius: 50%;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.checkout__steps-upcoming .checkout__steps-dots {
  background: var(--color-lightGrey);
}
.checkout__steps-name {
  font-size: var(--font-small);
  color: var(--color-grey);
  margin-top: 10px;
}
.checkout__steps:after {
  height: 3px;
  background: var(--color-lightGrey);
  position: absolute;
  z-index: 5;
  left: 0;
  top: 11px;
  width: 100%;
  content: " ";
}
.checkout__steps .active .checkout__steps-dots {
  position: relative;
  background: var(--color-link);
}
.checkout__steps .active .checkout__steps-dots:after {
  width: 16px;
  height: 16px;
  background: var(--color-link);
  border-radius: 50%;
  text-align: center;
  position: absolute;
  z-index: 5;
  left: 4px;
  top: 4px;
  content: " ";
}
.checkout__steps .active .checkout__steps-name {
  color: var(--color-link);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-normal);
}
.checkout__steps .is-done {
  cursor: pointer;
  position: relative;
}
.checkout__steps .is-done:after {
  height: 3px;
  background: var(--color-link);
  position: absolute;
  z-index: 6;
  left: 0;
  top: 11px;
  width: 100%;
  content: " ";
}
.checkout__steps .is-done .checkout__steps-dots {
  position: relative;
  background: var(--color-link);
}
.checkout__steps .is-done .checkout__steps-dots:after {
  position: absolute;
  top: 4px;
  right: 7px;
  content: "\f00c";
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
  color: var(--color-white);
}
.checkout__rightside {
  width: 450px;
  display: flex;
  flex-direction: column;
  margin-left: 25px;
}
@media screen and (max-width: 900px) {
  .checkout__rightside {
    width: 100%;
    display: block;
    margin-left: 0;
  }
}
.checkout__rightside .header__popup-cart .popup-cart-inner {
  padding-left: 0;
}
.checkout__rightside .popup-cart-scroll {
  max-height: unset;
}
.checkout__rightside .popup-cart-change {
  display: block !important;
}
.checkout__rightside hr {
  margin: 15px -20px;
}
.checkout__rightside .header__popup-cart {
  opacity: 1;
  position: static;
  z-index: unset;
  visibility: visible;
  box-shadow: none;
  border: 1px solid var(--form-border);
  border-radius: var(--border-radius);
  padding: 20px;
  width: 100%;
}
.checkout__rightside .header__popup-cart .popup-cart-inner {
  background: transparent;
  margin-bottom: 10px;
}
.checkout__rightside .popup-cart-title {
  display: none;
}
.checkout__rightside .popup-cart-checkout {
  display: none;
}
.checkout__rightside .popup-cart-button {
  display: none;
}
.checkout .auth,
.checkout .wa-signup-form {
  padding: 20px;
  background: var(--bg-secondary-color);
  border-radius: var(--border-radius);
  margin-bottom: 30px;
}
.checkout .inline {
  padding-left: 0;
}
.checkout .inline li {
  display: inline-block;
  margin-right: 30px;
}
.checkout .inline #login-form {
  margin-top: 20px;
}
.checkout .btn-big {
  width: 100%;
  font-size: var(--font-bigger);
  padding: 15px;
}
.checkout hr {
  margin: 30px 0;
}
.checkout h2 {
  font-weight: normal;
  background: #ffffff;
  margin: 0;
  position: relative;
}
.checkout h2 a {
  text-decoration: none;
  font-size: 18px;
  padding: 17px 17px 17px 55px;
  display: block;
  border-bottom: 1px solid #fff;
}
.checkout .checkout-step {
  background: #fff;
}
.checkout .checkout-step:last-child h2 a {
  border-bottom: 0;
}
.checkout .step-confirmation h2 {
  position: relative;
  font-size: 18px;
}
.checkout .step-confirmation h2:after {
  position: absolute;
  left: 25px;
  top: 22px;
  font-family: 'Stroke-Gap-Icons';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  content: "\e6b5";
}
.checkout .step-confirmation .btn {
  display: inline-block;
  width: 100%;
}
.checkout blockquote {
  font-size: 14px;
  border-left: 0;
  padding: 0;
  margin: 0 0 0 20px;
}
@media screen and (max-width: 900px) {
  .checkout blockquote {
    margin: 0;
  }
}
.checkout blockquote img {
  margin-right: 20px;
  float: left;
  border-radius: 50%;
}
.checkout blockquote p {
  margin-bottom: 5px;
  margin-left: 70px;
}
.checkout .checkout-content {
  margin-bottom: 50px;
}
.checkout .loading {
  vertical-align: middle;
  display: inline-block;
}
.checkout__finish {
  font-size: var(--font-bigger);
  color: var(--color-link);
  font-weight: var(--font-weight-bold);
  margin-top: 30px;
}
.checkout__confrimation {
  display: flex;
}
@media screen and (max-width: 900px) {
  .checkout__confrimation {
    display: block;
  }
}
.checkout__confrimation-block {
  flex: 1;
  border-radius: var(--border-radius);
  padding: 20px;
  background: var(--bg-secondary-color);
}
.checkout__confrimation-block .plugin-payment {
  color: var(--color-error);
}
@media screen and (max-width: 900px) {
  .checkout__confrimation-block {
    margin-bottom: 20px;
  }
}
.checkout__confrimation-block-price {
  font-size: var(--font-bigger);
  color: var(--color-link);
  font-weight: var(--font-weight-bold);
  display: block;
  width: 100%;
}
.checkout__confrimation-block:nth-child(2) {
  margin: 0 20px;
}
@media screen and (max-width: 900px) {
  .checkout__confrimation-block:nth-child(2) {
    margin: 0 0 20px 0;
  }
}
.checkout__confrimation-block .icon {
  font-size: 50px;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.checkout-options {
  margin: 0;
  padding: 0;
}
.checkout-options li {
  display: flex;
  margin-bottom: 20px;
  background: var(--bg-secondary-color);
  padding: 20px;
  border-radius: var(--border-radius);
  border: 1px solid var(--bg-secondary-color);
}
@media screen and (max-width: 900px) {
  .checkout-options li {
    display: block;
  }
}
.checkout-options li div.h3 {
  flex: 1;
  margin-right: 100px;
}
@media screen and (max-width: 900px) {
  .checkout-options li div.h3 {
    margin-right: 20px;
  }
}
.checkout-options li div.h3 label span {
  font-size: var(--font-bigger);
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 900px) {
  .checkout-options li div.h3 label span {
    width: 100%;
  }
}
.checkout-options li div.h3 label img {
  margin-right: 10px;
}
@media screen and (max-width: 900px) {
  .checkout-options li div.h3 label img {
    display: none;
  }
}
.checkout-options li div.h3 p {
  font-weight: var(--font-weight-normal);
  font-size: var(--font-normal);
  line-height: calc(var(--font-normal) + 6px);
  color: var(--color-grey);
  margin-left: 30px;
  margin-top: 10px;
}
.checkout-options li .rate {
  width: 200px;
}
@media screen and (max-width: 900px) {
  .checkout-options li .rate {
    width: 100%;
    padding-left: 30px;
  }
}
.checkout-options li .rate .price {
  font-size: var(--font-bigger);
  font-weight: var(--font-weight-bold);
  color: var(--color-link);
}
.checkout-options li .rate .hint {
  font-weight: var(--font-weight-normal);
  font-size: var(--font-small);
  line-height: calc(var(--font-small) + 6px);
  color: var(--color-grey);
  margin-top: 10px;
}
.checkout-result.error {
  color: var(--color-error);
}
/** Compare */
#compare-table .rating-big a {
  color: var(--color-grey);
  font-size: 12px;
  display: inline-block;
  text-decoration: none;
  vertical-align: middle;
}
#compare-table td,
#compare-table th {
  padding: 10px;
  border-right: 1px solid var(--form-border);
}
#compare-table td:last-child,
#compare-table th:last-child {
  border-right: 0;
}
#compare-table .name {
  padding: 5px 0;
  line-height: 20px;
  height: 80px;
}
#compare-table .name a {
  font-size: 14px;
  line-height: 16px;
  word-wrap: break-word;
  font-weight: 500;
  color: var(--font-color);
  text-decoration: none;
}
#compare-table td.feature {
  font-size: 14px;
}
#compare-table td svg {
  stroke: var(--color-link);
  stroke-width: 1;
  width: 15px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
}
#compare-table p {
  color: var(--font-color);
  line-height: 16px;
}
#compare-table h5 {
  margin: 0;
}
#compare-table .image {
  height: 200px;
  width: 200px;
  position: relative;
  margin-bottom: 10px;
  text-align: center;
}
#compare-table .image img {
  max-height: 180px;
}
#compare-table .image .badge {
  position: absolute;
  z-index: 10;
}
#compare-table .white-td td {
  border-top: 0;
  padding-bottom: 20px;
}
#compare-table td {
  vertical-align: top;
}
#compare-table td .price {
  font-size: var(--font-header);
  color: var(--color-link);
  font-weight: var(--font-weight-bold);
  text-align: left;
}
#compare-table td .price s {
  font-weight: var(--font-weight-normal);
  color: var(--color-grey);
  font-size: var(--font-normal);
  display: block;
}
#compare-table h5 {
  font-weight: 700;
  margin-top: 10px;
}
.compare-scroll {
  width: 100%;
  overflow-x: scroll;
  overflow-y: hidden;
}
ul.compare-diff-all {
  list-style: none;
  padding: 0;
  margin: 0 0 0 -7px;
  width: 170px;
  font-weight: var(--font-weight-normal);
}
ul.compare-diff-all li {
  display: block;
  margin-bottom: 10px;
}
ul.compare-diff-all li a {
  padding: 5px 10px;
  color: var(--font-color);
  text-decoration: none;
  font-size: 14px;
}
ul.compare-diff-all li.selected a {
  background: var(--color-primary);
  border-radius: var(--border-radius);
  text-decoration: none;
  color: #ffffff;
}
ul.compare-diff-all li.selected a b {
  border: none;
}
.dialog {
  display: none;
}
.dialog .icon-close {
  background-image: url("img/close.svg");
  width: 20px;
  height: 20px;
  background-size: 20px;
  background-repeat: no-repeat;
  position: absolute;
  right: 22px;
  top: 10px;
}
.dialog .product__main-photo {
  position: relative;
  margin-bottom: 20px;
  max-height: 350px;
  height: 350px;
}
.dialog .product__main-photo img {
  max-height: 320px;
}
.dialog .product__leftside-inner {
  position: static;
  top: 0;
}
.dialog .product__rating {
  margin-top: 5px;
}
.dialog .product__leftside-photos {
  margin-right: 0;
  text-align: center;
}
.dialog h1 {
  padding-right: 50px;
}
.dialog .loading {
  position: fixed;
  left: 50%;
  top: 30%;
  transform: translate(-50%, 0);
  width: 70px;
  height: 70px;
  z-index: 20020;
  background-image: url(img/loader/tail-spin.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 70px;
}
.dialog-background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.38);
  z-index: 20010;
}
.dialog-window .close-block {
  z-index: 10001;
  position: absolute;
  background: #ffffff;
  top: 20px;
  right: 20px;
  width: 27px;
  height: 27px;
  cursor: pointer;
}
.dialog-window .close-block svg {
  stroke: var(--color-grey);
}
.dialog-window .close-block svg:hover {
  stroke: var(--color-grey);
  transform: rotate(90deg);
  transition-duration: 0.3s;
}
.dialog-window .alert {
  margin-top: 30px;
}
.dialog-window .dialog-cart {
  position: fixed;
  top: 10%;
  max-height: 90%;
  overflow-y: auto;
  overflow-x: hidden;
  left: 0;
  right: 0;
  opacity: 1;
  z-index: 20030;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  text-align: left;
  width: 900px;
  display: block;
  background: #ffffff;
  padding: 20px;
  border-radius: var(--border-radius);
}
@media screen and (max-width: 900px) {
  .dialog-window .dialog-cart {
    width: 100%;
    top: 0;
    -webkit-overflow-scrolling: touch;
    padding: 10px;
  }
}
@media screen and (max-width: 900px) {
  .dialog-window .dialog-cart .col-lg-6.col-md-6.col-xs-12 {
    display: block;
    width: 100%;
  }
}
.subscribe {
  background: var(--color-primary);
  color: var(--color-white);
}
.subscribe__inner {
  padding: 60px 0;
  display: flex;
}
@media screen and (max-width: 900px) {
  .subscribe__inner {
    display: block;
    padding: 10px 0;
  }
}
.subscribe__leftside {
  width: 300px;
  display: flex;
}
@media screen and (max-width: 900px) {
  .subscribe__leftside {
    width: 100%;
  }
}
.subscribe__rightside {
  flex: 1;
  margin-left: 30px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .subscribe__rightside {
    margin: 0 20px;
  }
}
.subscribe__icon {
  width: 100px;
  font-size: 40px;
  margin-right: 30px;
}
.subscribe__icon svg {
  width: 80px;
  fill: var(--color-white);
}
.subscribe__rules {
  font-size: var(--font-small);
  opacity: 0.7;
}
@media screen and (max-width: 900px) {
  .subscribe__rules {
    margin-top: 10px;
  }
}
.subscribe__rules a {
  color: var(--white);
  text-decoration: underline;
}
.subscribe__text {
  flex: 1;
  font-size: var(--font-bigger);
  font-weight: var(--font-weight-bold);
  line-height: calc(var(--font-bigger) + 6px);
}
@media screen and (max-width: 900px) {
  .subscribe__text {
    flex: 1;
    font-size: var(--font-normal);
    line-height: calc(var(--font-normal) + 6px);
  }
}
.subscribe__form {
  display: flex;
}
.subscribe__input {
  flex: 1;
}
.subscribe__submit {
  width: 200px;
  margin-left: 20px;
}
@media screen and (max-width: 900px) {
  .subscribe__submit {
    margin-left: 10px;
    width: 150px;
  }
}
.footer {
  min-height: 200px;
  margin-top: 30px;
  padding: 30px 0 30px;
  background: var(--color-footer);
  color: var(--color-footer-text);
  font-size: var(--font-small);
  flex: 0 0 auto;
}
@media screen and (max-width: 900px) {
  .footer {
    padding: 10px 0 10px;
    background: var(--bg-secondary-color);
  }
  .footer a:not(.menu-h-footer a):not(.footer__social a) {
    color: var(--color-link);
  }
}
.footer__address {
  margin-top: 30px;
}
.footer__cols {
  display: flex;
}
@media screen and (max-width: 900px) {
  .footer__cols {
    display: block;
  }
}
.footer__cols-address {
  flex: 1;
  padding-right: 80px;
}
@media screen and (max-width: 900px) {
  .footer__cols-address {
    display: none;
  }
}
.footer__cols-menu {
  width: 45%;
  display: flex;
}
@media screen and (max-width: 900px) {
  .footer__cols-menu {
    width: 100%;
  }
}
.footer__cols-social {
  width: 25%;
}
@media screen and (max-width: 900px) {
  .footer__cols-social {
    width: 100%;
  }
}
.footer__cols-menucol {
  flex: 1;
}
.footer-phone {
  font-size: var(--font-bigger);
}
.footer select {
  background: #fff no-repeat 100%;
  background-size: 1ex;
  background-origin: unset;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='40' fill='%23555'><polygon points='0,0 60,0 30,40'/></svg>");
  width: auto;
  padding-right: 40px;
  background-position: 120% 60% !important;
}
.footer__logo {
  font-size: 30px;
  font-weight: var(--font-weight-bold);
  color: var(--font-color);
  text-transform: uppercase;
}
@media screen and (max-width: 900px) {
  .footer__logo {
    text-align: center;
  }
}
.footer__logo img {
  max-width: 200px;
}
.footer__subtext {
  margin-top: 10px;
  color: var(--color-grey);
}
@media screen and (max-width: 900px) {
  .footer__subtext {
    text-align: center;
  }
}
.footer__header {
  cursor: pointer;
  font-size: var(--font-bigger);
  font-weight: var(--font-weight-bold);
  margin-bottom: 20px;
  margin-top: 10px;
}
@media screen and (max-width: 900px) {
  .footer__header {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
  }
  .footer__header:after {
    font-family: "Font Awesome 5 Free";
    position: absolute;
    top: 6px;
    right: -20px;
    content: "\f078";
    font-size: 12px;
    opacity: 0.8;
    font-weight: 600;
    color: var(--color-grey);
  }
}
@media screen and (max-width: 900px) {
  .footer__header-social {
    display: none;
  }
}
.footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer ul li {
  margin-bottom: 5px;
}
.footer a {
  color: var(--color-link);
  text-decoration: none;
}
.footer a:hover {
  color: var(--color-link);
}
.footer .menu-h-footer a {
  color: var(--color-footer-text);
}
@media screen and (max-width: 900px) {
  .footer .menu-h-footer {
    display: none;
    margin-top: 10px;
  }
}
.footer .menu-h-footer.open {
  display: block;
}
.footer hr {
  margin: 40px 0 0;
  background-color: #dddddd;
}
@media screen and (max-width: 900px) {
  .footer hr {
    margin: 10px 0;
  }
}
.footer__social {
  font-size: 20px;
  margin: 15px 0;
}
.footer__social a {
  margin-right: 20px;
  color: var(--color-grey);
}
.footer .copyright {
  display: flex;
  margin-top: 20px;
}
@media screen and (max-width: 900px) {
  .footer .copyright {
    margin-top: 0;
  }
}
.footer .copyright__text {
  width: 400px;
}
.footer .hint {
  margin-top: 30px;
}
@media screen and (max-width: 900px) {
  .footer .hint {
    margin-top: 10px;
  }
}
.subscribe {
  background: var(--color-primary);
}
.sidebar-menu {
  margin: 0 0 20px;
  list-style: none;
  line-height: 19px;
  border: 1px solid var(--form-border);
  border-radius: var(--border-radius);
}
.sidebar-menu__inner {
  padding: 15px;
}
.sidebar-menu a {
  color: var(--font-color);
}
.sidebar-menu__header {
  padding: 13px 15px;
  font-size: var(--font-bigger);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary);
  border-bottom: 1px solid var(--form-border);
}
.sidebar-menu svg {
  fill: var(--font-color);
  width: 28px;
  height: 28px;
  position: absolute;
  right: 15px;
  top: 12px;
  display: none;
}
.sidebar-menu__brands {
  margin: 10px 0;
}
.sidebar-menu__brands-inner a {
  margin-bottom: 10px;
  display: inline-block;
}
.sidebar-menu__news {
  margin-bottom: 20px;
}
.sidebar-menu__news__title {
  font-weight: var(--font-weight-bold);
}
.sidebar-menu__news:last-child {
  margin-bottom: 0;
}
.sidebar-menu__news__date {
  font-size: 12px;
  color: var(--color-grey);
}
.sidebar-menu__link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.sidebar-menu__item {
  height: 100%;
  padding: 0;
  margin-bottom: 10px;
}
.sidebar-menu__name {
  font-weight: 500;
}
.sidebar-menu__name a {
  text-decoration: none;
}
.sidebar-menu__price {
  font-weight: 500;
  font-size: 16px;
  margin-right: 5px;
  white-space: nowrap;
  display: block;
}
.sidebar-menu__price__label {
  font-size: 10px;
  background: #FFDD00;
  padding: 1px 7px 1px 3px;
  position: relative;
  margin-left: 10px;
  bottom: 3px;
  border-top-right-radius: var(--border-radius);
  border-bottom-right-radius: var(--border-radius);
  background: linear-gradient(to bottom, #FFDD00 100%, #e6c700 0%);
}
.sidebar-menu__price__label:before {
  content: "";
  float: left;
  position: absolute;
  top: 0;
  left: -6px;
  width: 0;
  height: 0;
  border-color: transparent #FFDD00 transparent transparent;
  border-style: solid;
  border-width: 7px 6px 8px 0;
}
.sidebar-menu s {
  font-size: 14px;
  color: var(--color-grey);
  margin-right: 5px;
  font-weight: 300;
}
.sidebar-menu__item-img {
  background: #fff;
  padding: 0 10px;
  min-width: 75px;
  max-width: 75px;
  height: 80px;
  text-align: center;
}
.sidebar-menu__item-img img {
  max-width: 100%;
  max-height: 80px;
  margin: 0 auto;
}
.sidebar-menu__item-description {
  background: #fff;
  padding: 0;
  line-height: 18px;
  width: 100%;
}
.sidebar-menu__item-description p {
  margin: 0;
  color: var(--form-border);
}
.sidebar-menu__rating-name {
  font-weight: 500;
}
.sidebar-menu__rating-date {
  font-size: 12px;
  color: var(--color-grey);
}
.sidebar-menu__rating-url {
  margin-bottom: 5px;
}
.sidebar-menu__arrow {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 20;
}
.sidebar-menu .slide-nav {
  display: inline-block;
  padding: 10px 10px;
  font-size: 12px;
  line-height: 1;
  background-color: transparent;
  border: 1px solid var(--form-border);
  margin-left: 20px;
  vertical-align: middle;
  white-space: nowrap;
}
.sidebar-menu .slide-prev {
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
}
.sidebar-menu .slide-next {
  margin-left: -1px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}
.sidebar-menu .review-avatar img {
  border-radius: 50%;
  max-height: 40px;
  min-height: 40px;
  min-width: 40px;
  padding: 2px;
  width: auto !important;
}
.sidebar-menu .tags {
  font-size: var(--font-small);
  color: var(--color-darkGrey);
  background: var(--color-lightGrey);
  padding: 3px 15px;
  border-radius: 30px;
  display: inline-block;
  margin: 5px 0 5px 5px;
}
.sidebar-menu__item.slick-slide {
  margin-bottom: 0;
}
.custom-checkbox,
.custom-radio {
  cursor: pointer;
}
.custom-checkbox > input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-checkbox > span {
  display: inline-flex;
  align-items: center;
  user-select: none;
  transition: all 250ms cubic-bezier(0.4, 0, 0.23, 1);
}
.custom-checkbox > span::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 0.25em;
  margin-right: 15px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
.custom-checkbox > input:not(:disabled):not(:checked) + span:hover::before {
  border-color: #b3d7ff;
}
.custom-checkbox > input:not(:disabled):active + span::before {
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}
.custom-checkbox > input:focus + span::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-checkbox > input:focus:not(:checked) + span::before {
  border-color: #80bdff;
}
.custom-checkbox > input:checked + span::before {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
  animation: shrink-bounce 200ms cubic-bezier(0.4, 0, 0.23, 1);
}
.custom-checkbox > input:disabled + span::before {
  background-color: #e9ecef;
}
.custom-radio > input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-radio > span {
  display: inline-flex;
  align-items: center;
  user-select: none;
}
.custom-radio > span::before {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  flex-grow: 0;
  border: 1px solid #adb5bd;
  border-radius: 50%;
  margin-right: 15px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
}
.custom-radio > input:not(:disabled):not(:checked) + span:hover::before {
  border-color: #b3d7ff;
}
.custom-radio > input:not(:disabled):active + span::before {
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}
.custom-radio > input:focus + span::before {
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.custom-radio > input:focus:not(:checked) + span::before {
  border-color: #80bdff;
}
.custom-radio > input:checked + span::before {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
  animation: shrink-bounce 200ms cubic-bezier(0.4, 0, 0.23, 1);
}
.custom-radio > input:disabled + span::before {
  background-color: #e9ecef;
}
@keyframes shrink-bounce {
  0% {
    transform: scale(1);
  }
  33% {
    transform: scale(0.85);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes checkbox-check {
  0% {
    width: 0;
    height: 0;
    border-color: #fff;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.2em;
    height: 0;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.2em;
    height: 0.5em;
    border-color: #fff;
    transform: translate3d(0, -0.5em, 0) rotate(45deg);
  }
}
.pulse:after {
  content: " ";
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 var(--color-second);
  animation: pulse 1s 1;
  position: absolute;
  top: 0;
  left: 0;
}
.pulse:hover {
  animation: none;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 var(--color-second);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 var(--color-second);
    box-shadow: 0 0 0 0 var(--color-second);
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}
#alttext-container {
  display: none;
}
img.lazy {
  /* optional way, set loading as background */
  /*  background-image: url('img/loader/loader.gif');
  background-repeat: no-repeat;
  background-position: 50% 50%;*/
}
.jq-toast-single {
  padding-right: 40px;
  border-radius: var(--border-radius);
}
.jq-toast-single .button {
  background: var(--color-second);
  color: var(--color-white);
}
.jq-toast-wrap.top-right {
  top: 20px;
  right: 20px;
}
.jq-toast-heading {
  margin-bottom: 10px;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-middle);
}
.jq-toast-single {
  background: var(--color-white);
  border: 1px solid var(--form-border);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  line-height: 20px;
}
.close-jq-toast-single {
  position: absolute;
  top: 3px;
  right: 7px;
  font-size: 18px;
  cursor: pointer;
  color: var(--color-grey);
}
.jq-toast-single {
  font-size: var(--font-normal);
  color: var(--font-color);
}
.close-jq-toast-single {
  z-index: 10001;
  position: absolute;
  background: #ffffff;
  top: 15px;
  right: 10px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.close-jq-toast-single svg {
  stroke: var(--color-grey);
}
.close-jq-toast-single svg:hover {
  stroke: var(--color-grey);
  transform: rotate(90deg);
  transition-duration: 0.3s;
}
.slick-dotted.slick-slider {
  margin-bottom: 0;
}
.slick-dots {
  margin-left: -8px;
  bottom: -32px;
}
@media screen and (max-width: 900px) {
  .slick-dots {
    margin-left: 0;
    bottom: -6px;
  }
}
.slick-track {
  margin-right: unset;
  margin-left: unset;
}
.product__photo-thumbs .slick-track {
  margin: 0 auto;
}
.slick-slide {
  margin-right: 8px;
}
.slick-slide .cards-5 {
  margin-bottom: 0 !important;
}
@media screen and (max-width: 900px) {
  .slick-slide {
    margin-right: 10px;
  }
}
.slick-slider:hover .arrow-slider-circle.left {
  left: -15px;
  opacity: 1;
  transition: all 0.4s;
}
@media screen and (max-width: 900px) {
  .slick-slider:hover .arrow-slider-circle.left {
    left: 15px;
  }
}
.slick-slider:hover .arrow-slider-circle.right {
  right: 0;
  opacity: 1;
  transition: all 0.4s;
}
@media screen and (max-width: 900px) {
  .slick-slider:hover .arrow-slider-circle.right {
    right: 15px;
  }
}
.slick-slider:hover .arrow-slider-circle.slick-disabled {
  opacity: 0.2 !important;
  cursor: not-allowed;
}
.slick-dots li button::before {
  font-size: 38px;
}
.slick-dots li.slick-active button::before {
  color: var(--color-link);
}
.slick-dots li {
  margin: 0;
}
.arrow-slider-circle.left {
  left: 40px;
}
.arrow-slider-circle.right {
  right: 40px;
}
.arrow-slider-circle {
  background: var(--color-white);
  width: 46px;
  height: 46px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.21);
  border-radius: 50%;
  line-height: 46px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 5;
  opacity: 0;
  font-size: 18px;
  transition: 0.25s linear;
  text-align: center;
}
.arrow-slider-circle:hover {
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.4);
}
.fancybox-thumbs-active {
  opacity: 0.5;
}
.fancybox-thumbs > ul > li > img {
  max-height: 75px;
  max-width: 75px;
}
/** Tooltips **/
[aria-label][role~="tooltip"] {
  position: relative;
}
[aria-label][role~="tooltip"]::before,
[aria-label][role~="tooltip"]::after {
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
  opacity: 0;
  pointer-events: none;
  transition: all var(--microtip-transition-duration, 0.18s) var(--microtip-transition-easing, ease-in-out) var(--microtip-transition-delay, 0s);
  position: absolute;
  box-sizing: border-box;
  z-index: 10;
  transform-origin: top;
}
[aria-label][role~="tooltip"]::before {
  background-size: 100% auto !important;
  content: "";
}
@media screen and (max-width: 900px) {
  [aria-label][role~="tooltip"]::before {
    display: none !important;
  }
}
[aria-label][role~="tooltip"]::after {
  background: rgba(17, 17, 17, 0.9);
  border-radius: 4px;
  color: #fff;
  content: attr(aria-label);
  font-size: var(--microtip-font-size, 13px);
  font-weight: var(--microtip-font-weight, normal);
  text-transform: var(--microtip-text-transform, none);
  padding: 0.5em 1em;
  white-space: nowrap;
  box-sizing: content-box;
}
@media screen and (max-width: 900px) {
  [aria-label][role~="tooltip"]::after {
    display: none !important;
  }
}
[aria-label][role~="tooltip"]:hover::before,
[aria-label][role~="tooltip"]:hover::after,
[aria-label][role~="tooltip"]:focus::before,
[aria-label][role~="tooltip"]:focus::after {
  opacity: 1;
  pointer-events: auto;
}
[role~="tooltip"][data-microtip-position|="top"]::before {
  background: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%280%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E) no-repeat;
  height: 6px;
  width: 18px;
  margin-bottom: 5px;
}
[role~="tooltip"][data-microtip-position|="top"]::after {
  margin-bottom: 11px;
}
[role~="tooltip"][data-microtip-position|="top"]::before {
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}
[role~="tooltip"][data-microtip-position|="top"]:hover::before {
  transform: translate3d(-50%, -5px, 0);
}
[role~="tooltip"][data-microtip-position|="top"]::after {
  transform: translate3d(-50%, 0, 0);
  bottom: 100%;
  left: 50%;
}
[role~="tooltip"][data-microtip-position="top"]:hover::after {
  transform: translate3d(-50%, -5px, 0);
}
[role~="tooltip"][data-microtip-position="top-left"]::after {
  transform: translate3d(calc(-100% + 16px), 0, 0);
  bottom: 100%;
}
[role~="tooltip"][data-microtip-position="top-left"]:hover::after {
  transform: translate3d(calc(-100% + 16px), -5px, 0);
}
[role~="tooltip"][data-microtip-position="top-right"]::after {
  transform: translate3d(calc(0% + -16px), 0, 0);
  bottom: 100%;
}
[role~="tooltip"][data-microtip-position="top-right"]:hover::after {
  transform: translate3d(calc(0% + -16px), -5px, 0);
}
[role~="tooltip"][data-microtip-position|="bottom"]::before {
  background: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2236px%22%20height%3D%2212px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28180%2018%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E) no-repeat;
  height: 6px;
  width: 18px;
  margin-top: 5px;
  margin-bottom: 0;
}
[role~="tooltip"][data-microtip-position|="bottom"]::after {
  margin-top: 11px;
}
[role~="tooltip"][data-microtip-position|="bottom"]::before {
  transform: translate3d(-50%, -10px, 0);
  bottom: auto;
  left: 50%;
  top: 100%;
}
[role~="tooltip"][data-microtip-position|="bottom"]:hover::before {
  transform: translate3d(-50%, 0, 0);
}
[role~="tooltip"][data-microtip-position|="bottom"]::after {
  transform: translate3d(-50%, -10px, 0);
  top: 100%;
  left: 50%;
}
[role~="tooltip"][data-microtip-position="bottom"]:hover::after {
  transform: translate3d(-50%, 0, 0);
}
[role~="tooltip"][data-microtip-position="bottom-left"]::after {
  transform: translate3d(calc(-100% + 16px), -10px, 0);
  top: 100%;
}
[role~="tooltip"][data-microtip-position="bottom-left"]:hover::after {
  transform: translate3d(calc(-100% + 16px), 0, 0);
}
[role~="tooltip"][data-microtip-position="bottom-right"]::after {
  transform: translate3d(calc(0% + -16px), -10px, 0);
  top: 100%;
}
[role~="tooltip"][data-microtip-position="bottom-right"]:hover::after {
  transform: translate3d(calc(0% + -16px), 0, 0);
}
[role~="tooltip"][data-microtip-position="left"]::before,
[role~="tooltip"][data-microtip-position="left"]::after {
  bottom: auto;
  left: auto;
  right: 100%;
  top: 50%;
  transform: translate3d(10px, -50%, 0);
}
[role~="tooltip"][data-microtip-position="left"]::before {
  background: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%28-90%2018%2018%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E) no-repeat;
  height: 18px;
  width: 6px;
  margin-right: 5px;
  margin-bottom: 0;
}
[role~="tooltip"][data-microtip-position="left"]::after {
  margin-right: 11px;
}
[role~="tooltip"][data-microtip-position="left"]:hover::before,
[role~="tooltip"][data-microtip-position="left"]:hover::after {
  transform: translate3d(0, -50%, 0);
}
[role~="tooltip"][data-microtip-position="right"]::before,
[role~="tooltip"][data-microtip-position="right"]::after {
  bottom: auto;
  left: 100%;
  top: 50%;
  transform: translate3d(-10px, -50%, 0);
}
[role~="tooltip"][data-microtip-position="right"]::before {
  background: url(data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2212px%22%20height%3D%2236px%22%3E%3Cpath%20fill%3D%22rgba%2817,%2017,%2017,%200.9%29%22%20transform%3D%22rotate%2890%206%206%29%22%20d%3D%22M2.658,0.000%20C-13.615,0.000%2050.938,0.000%2034.662,0.000%20C28.662,0.000%2023.035,12.002%2018.660,12.002%20C14.285,12.002%208.594,0.000%202.658,0.000%20Z%22/%3E%3C/svg%3E) no-repeat;
  height: 18px;
  width: 6px;
  margin-bottom: 0;
  margin-left: 5px;
}
[role~="tooltip"][data-microtip-position="right"]::after {
  margin-left: 11px;
}
[role~="tooltip"][data-microtip-position="right"]:hover::before,
[role~="tooltip"][data-microtip-position="right"]:hover::after {
  transform: translate3d(0, -50%, 0);
}
[role~="tooltip"][data-microtip-size="small"]::after {
  white-space: initial;
  width: 80px;
}
[role~="tooltip"][data-microtip-size="medium"]::after {
  white-space: initial;
  width: 150px;
}
[role~="tooltip"][data-microtip-size="large"]::after {
  white-space: initial;
  width: 260px;
}
/** Cookie **/
.cc_banner-wrapper {
  z-index: 9001;
  position: relative;
}
.cc_container .cc_btn {
  cursor: pointer;
  text-align: center;
  font-size: var(--font-normal);
  transition: font-size 200ms;
  line-height: 1em;
}
.cc_container .cc_message {
  font-size: var(--font-normal);
  transition: font-size 200ms;
  margin: 0;
  padding: 0;
  padding-bottom: 20px;
  line-height: 1.5em;
}
.cc_container .cc_logo:hover,
.cc_container .cc_logo:active {
  opacity: 1;
}
@media screen and (min-width: 500px) {
  .cc_container .cc_btn {
    font-size: 0.8em;
  }
  .cc_container .cc_message {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .cc_container .cc_btn {
    font-size: 1em;
  }
  .cc_container .cc_message {
    font-size: var(--font-normal);
    line-height: 1em;
    padding-bottom: 20px;
  }
}
@media screen and (min-width: 992px) {
  .cc_container .cc_message {
    font-size: 1em;
  }
}
@media print {
  .cc_banner-wrapper,
  .cc_container {
    display: none;
  }
}
.cc_container {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  padding: 10px 15px 30px;
}
.cc_container .cc_btn {
  padding: 8px 16px;
  background-color: #f1d600;
  position: absolute;
  bottom: 10px;
  left: 15px;
  right: 15px;
  text-align: center;
}
@media screen and (min-width: 500px) {
  .cc_container {
    left: initial;
    right: 20px;
    bottom: 20px;
    width: 300px;
    padding-bottom: 77px;
  }
  .cc_container .cc_btn {
    right: 15px;
    bottom: 15px;
  }
  .cc_container .cc_logo {
    display: block;
    position: absolute;
    bottom: 8px;
    left: calc(50% - 50px);
  }
  .cc_container .cc_message {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .cc_container {
    padding-bottom: 60px;
  }
  .cc_container .cc_message {
    font-size: var(--font-normal);
  }
}
.cc_container {
  background: #222;
  color: #fff;
  font-size: var(--font-normal);
  box-sizing: border-box;
}
.cc_container ::-moz-selection {
  background: #ff5e99;
  color: #fff;
  text-shadow: none;
}
.cc_container .cc_btn,
.cc_container .cc_btn:visited {
  color: #000;
  background-color: #f1d600;
  transition: background 200ms ease-in-out, color 200ms ease-in-out, box-shadow 200ms ease-in-out;
  -webkit-transition: background 200ms ease-in-out, color 200ms ease-in-out, box-shadow 200ms ease-in-out;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}
.cc_container .cc_btn:hover,
.cc_container .cc_btn:active {
  background-color: #fff;
  color: #000;
}
.cc_container a,
.cc_container a:visited {
  text-decoration: none;
  color: #31a8f0;
  transition: 200ms color;
}
.cc_container a:hover,
.cc_container a:active {
  color: #b2f7ff;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.cc_container {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-duration: 0.8s;
  -moz-animation-duration: 0.8s;
  -o-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
.blogpost__date {
  font-size: var(--font-small);
  color: var(--color-grey);
}
.highlight {
  background: yellow;
}
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: bold;
}
.timeline ul {
  font-weight: normal;
  color: var(--color-grey);
  font-size: 11px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.search-blog {
  margin-bottom: 20px;
  display: flex;
}
.search-blog__input {
  flex: 1;
}
.search-blog__button {
  width: 100px;
  margin-left: 5px;
}
.search-blog__button .button {
  height: 36px;
}
.comments ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.comment-form-fields .wa-auth-adapters {
  padding: 0;
}
.comment-form-fields .wa-auth-adapters ul {
  margin: 0;
}
.timeline ul a {
  color: var(--color-grey);
}
.blog-sidebar .subcategory {
  margin: 0;
}
.blog-sidebar .subcategory li ul {
  display: block;
}
.blog-sidebar input[type="text"] {
  margin-bottom: 0;
  height: 38px;
  width: 100%;
  border: 0;
}
.blog-sidebar .h3 {
  color: var(--color-grey);
  padding: 50px 0 10px;
}
.post {
  margin-bottom: 20px;
}
.post .h3 {
  padding: 10px 0 0 0;
}
.post img {
  max-width: 100%;
  height: auto !important;
}
.post iframe {
  max-width: 100%;
}
.post .text {
  margin-top: 5px;
  margin-right: 10px;
}
.post textarea {
  width: 100%;
  min-height: 300px;
  margin-top: 10px;
  height: 250px;
}
.post.search-match {
  margin-top: 20px;
}
.post.search-match h3 {
  font-size: 1.5em;
  margin-bottom: 5px;
}
.post.search-match p {
  margin-top: 5px;
}
.credentials {
  overflow: hidden;
  font-weight: 300;
  font-size: 14px;
}
.credentials a,
.credentials span {
  display: inline-block;
  vertical-align: middle;
  padding-left: 0;
}
.credentials .userpic {
  min-width: 20px;
  display: block;
  float: left;
  margin-right: 2px;
  border-radius: 50%;
}
.credentials .username {
  margin: 0;
}
.credentials .date,
.credentials .icon16 {
  margin: 0 3px;
  font-size: 0.9em;
  color: var(--color-grey);
}
.credentials img.userpic {
  width: 20px;
}
.post .credentials {
  margin-bottom: 20px;
}
.pageless-wrapper {
  font-style: italic;
}
html.realtime-preview,
html.realtime-preview body {
  background: var(--color-white);
}
html.realtime-preview .globalheader,
html.realtime-preview .globalfooter {
  display: none;
}
html.realtime-preview .content {
  margin-right: 0;
}
html.realtime-preview .page {
  top: 0;
  margin: 10px 0;
}
@media screen and (min-width: 840px) and (max-width: 1300px) {
  .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body > .wa-column-quantity {
    width: 150px !important;
    text-align: center;
  }
}
@media screen and (max-width: 1200px) {
  .product__leftside-inner {
    display: block;
  }
  .product__leftside-summary {
    width: 100%;
  }
  .product__leftside-photos {
    margin-bottom: 30px;
  }
  .header__logo-text,
  .navigation__rightside {
    display: none;
  }
}
/** MD */
@media screen and (max-width: 900px) {
  .h1.header {
    font-size: var(--font-header) !important;
    line-height: calc(var(--font-header) + 6px);
  }
  /** Product */
  .col,
  [class*=" col-"],
  [class^="col-"] {
    margin: 0 calc(var(--grid-gutter-mobile) / 2) calc(var(--grid-gutter-mobile) / 2);
    margin-bottom: 0;
  }
  .row {
    margin-left: calc(var(--grid-gutter-mobile) / -2);
    margin-right: calc(var(--grid-gutter-mobile) / -2);
  }
  .col-6 {
    flex: 0 0 calc((100% / (12 / 6)) - var(--grid-gutter-mobile));
    max-width: calc((100% / (12 / 6)) - var(--grid-gutter-mobile));
  }
  .shop-pages__leftside .menu-t.static {
    border: 0;
  }
  .shop-pages__leftside .menu-t.static li {
    width: auto;
    border: 0;
    display: inline-block;
  }
  .shop-pages__leftside .menu-t.static li:hover {
    background: transparent;
  }
  .shop-pages__leftside .menu-t.static li a {
    text-decoration: none;
    margin: 5px 10px 5px 0;
    display: inline-block;
    padding: 2px 5px 2px 10px;
    font-weight: var(--font-weight-semibold);
    border-radius: var(--border-radius);
    background: var(--bg-secondary-color);
    transition: all 0.4s;
    color: var(--font-color);
  }
  .shop-pages__leftside .menu-t.static li a:hover {
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    border-color: transparent;
    transform: translateY(-4px);
  }
}
