* {
    box-sizing: border-box;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-kerning: auto;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Arial';
    font-size: 16px;  
    margin: 0;
    min-width: 320px;
}
a {
    display: block;
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}
button:focus, select, input {
    outline: none;
}
input[type="text"] {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 46px;
    display: block;
    margin-bottom: 10px;
    width: 100%;
    font-size: 10px;
    text-transform: uppercase;
    padding-left: 15px;
}
textarea, textarea.co-input-field {
    height: 100px;
    resize: none;
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    outline: none;
    padding: 20px 0 0 15px;
}
input[type="checkbox"], input[type="radio"] {
    display: none;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    padding: 10px 20px 0 10px;
    top: 0;
    z-index: 3;
}
.header__height {
    height: 74px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.main-logo {
  	background-image: url(main-logo.png);
    width: 55px;
    height: 55px;
  background-size: contain;
}
.header__right {
    display: flex;
    align-items: center;
}
.cart {
    background-image: url(cart.png);
    width: 19px;
    height: 24px;
    background-repeat: no-repeat;
    margin-right: 30px;
}
.new-menu {
    background-image: url(menu.png);
    width: 26px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center;
  	cursor: pointer;
}
.home-banner {
    position: relative;
    line-height: 0;
}
.home-banner .swiper-pagination-bullets {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%);
    z-index: 1;
}
.home-banner .swiper-pagination-bullets span {
	width: 16px;
    height: 16px;
    background: #FDF5EF;
    border: none;
}
.home-banner .swiper-pagination-bullets .swiper-pagination-bullet-active {
	border: 4px solid rgba(0, 0, 0, 0.8);
    padding: 8px;
}
.main-home-slider {
    height: 100%;
}
.home-banner img {
    width: 100%;
  height: 100vh;
    object-fit: cover;
}
.home-banner__button {
    position: absolute;
    bottom: 20%;
    text-align: center;
    border: 3px solid #FFFFFF;
    color: #fff;
    font-weight: bold;
    font-size: 21px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 0 50px;
    left: 50%;
    transform: translate(-50%);
    line-height: 39px;
  	z-index: 1;
}
.home-brand-desc {
    padding: 25px 35px 0;
    text-align: center;
    line-height: 1.6;
}
.home-categories {
    text-align: center;
}
.home-categories h2 {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}
.home-categories__image {
    margin: 0 90px 20px;
}
.home-categories__image img {
    width: 100%;
}
.home-filter {
    text-align: center;
    margin: 30px 20px;
    text-transform: uppercase;
    border: 1px solid #000;
    padding: 12px 0;
    font-size: 21px;
}
/*.home-filter span {
    background-image: url(change.png);
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 55px;
}*/
.home-catalog-link {
    text-decoration-line: underline;
    text-transform: uppercase;
    color: #333333;
    font-size: 14px;
    margin-top: 30px;
    text-align: center;
}
.products {
    display: flex;
    flex-wrap: wrap;
    margin: 0 15px;
    justify-content: space-between;
}
.products-item {
    width: calc(50% - 5px);
    text-align: center;
    margin-bottom: 15px;
}
.products-item__image img {
    width: 100%;
  	height: 100%;
}
.products-item__image {
  	position: relative;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.prod-back {
	background-color: #FDF5EF;
    width: 100%;
    height: 75%;
    position: absolute;
    z-index: -1;
}
.products-item h3 span {
    color: #787878;
    font-size: 10px;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
    line-height: normal;
}
.products-item h3 {
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 10px;
  	height: 60px;
    line-height: 0.95;
}
.products-item__prices {
    display: flex;
    justify-content: center;
    align-items: center;
}
.products-item__price-old {
    font-size: 16px;
    text-decoration: line-through;
    color: rgba(0, 0, 0, 0.4);
    margin-left: 12px;
}
.footer {
    margin-top: 45px;
    background-color: #FDF5EF;
    padding: 20px 15px;
    text-align: center;
  position: relative;
}
.footer__menu {
    display: flex;
    justify-content: center;
    margin-bottom: 35px;
}
.footer__menu li {
    text-transform: uppercase;
    font-size: 14px;
    margin-left: 20px;
    text-decoration: underline;
}
.footer__menu li:first-child {
    margin-left: 0;
}
.footer__newsletter form, .cart-promo form {
    margin-bottom: 15px;
    display: flex;
}
.footer__newsletter input[type="text"], .cart-promo input[type="text"] {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top-left-radius: 10px;
    background-color: rgba(0, 0, 0, 0);
    max-width: 279px;
    width: 100%;
    height: 39px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    margin-bottom: 0;
}
.footer__newsletter p {
    font-size: 10px;
    font-style: italic;
    margin-bottom: 30px;
    max-width: 327px;
    line-height: 1.4;
}
.footer__newsletter button, .cart-promo button {
    background-color: rgba(0, 0, 0, 0.1);
    border: none;
    height: 39px;
    width: 59px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background-image: url(newsletter-arrow.png);
    background-repeat: no-repeat;
    background-position: center;
}
.footer__newsletter, .cart-promo {
    max-width: 338px;
    margin: 0 auto;
}
.footer__comment {
    font-weight: bold;
    font-size: 10px;
    text-transform: uppercase;
    border: 1px solid rgba(0, 0, 0, 0.1);
    max-width: 338px;
    margin: 0 auto 25px;
    padding: 12px 0;
    color: #4b4846;
}
.footer__social-icons {
    display: flex;
    justify-content: center;
    margin-bottom: 12px;
}
.footer__social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-right: 20px;
}
.footer__social-icons a:last-child {
    margin-right: 0;
}
.footer__phone {
    margin-bottom: 10px;
}
.copyright {
    margin-bottom: 10px;
}
.footer__policy {
    font-size: 8px;
    text-transform: uppercase;
}
.icon-instagram {
    background-image: url(instagram.png);
    background-repeat: no-repeat;
    background-position: center;
}
.icon-fb {
    background-image: url(fb.png);
    background-repeat: no-repeat;
    background-position: center;
}
.icon-vk {
    background-image: url(vk.png);
    background-repeat: no-repeat;
    background-position: center;
}
.catalog-top-panel h1 {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: normal;
    text-align: center;
    margin: 35px 0 20px;
}
.catalog-button-category {
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
  cursor: pointer;
}
.catalog-category-wrap {
    position: relative;
}
.catalog-settings {
    display: flex;
    justify-content: center;
  	position: relative;
    margin-bottom: 15px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
}
.catalog__filter-params {
    position: absolute;
    width: 100%;
    background-color: #fff;
    top: 100%;
  	padding: 20px 35px;
  display: none;
  z-index: 1;
}
.catalog-button-sort {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    padding: 7px 0;
    width: 50%;
    text-align: center;
  	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.catalog-button-sort span {
    background-image: url(sort.png);
    background-repeat: no-repeat;
    background-position: 0 center;
    padding-left: 30px;
}
.catalog-button-filters {
    padding: 7px 0;
    width: 50%;
    text-align: center;
  	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.catalog-button-filters span {
    background-image: url(filter.png);
    background-repeat: no-repeat;
    background-position: 0 center;
    padding-left: 30px;
}
.catalog-button-category span:after {
  content: "";
    background-image: url(arrow-right.png);
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 20px;
}
.card-image-mobile {
    text-align: center;
    position: relative;
      margin-bottom: 35px;
}
.card-image-mobile .swiper-slide {
    width: 100%;
    padding-bottom: 35px;
}
.card-image-mobile img {
    height: 100%;
    object-fit: contain;
    width: 100%;
    object-position: bottom;
}
.card-image-desktop {
	display: none;
}
.card-image {
    position: relative;
    text-align: center;
}
.card-image__back {
    background-color: #FDF5EF;
    width: 100%;
    height: 65%;
    position: absolute;
    top: 50%;
    z-index: -1;
    transform: translate(0, -50%);
}
.card-info {
    text-align: center;
    margin: 0 20px 0;
}
h1.card-caption, h3.card-caption {
    font-size: 18px;
    margin-bottom: 18px;
  font-weight: normal;
}
h1.card-caption span, h3.card-caption span {
    display: block;
    font-weight: bold;
    font-size: 14px;
    margin: 15px 0;
    color: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
}
h3.card-caption {
    font-size: 13px;
}
.card-price {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
}
.card-bonus {
    margin-top: 15px;
}
.card-bonus__quant span {
    color: red;
}
.card-bonus__text {
    font-size: 12px;
    color: #b2b2b2;
    margin-top: 15px;
  	max-width: 600px;
    line-height: 1.4;
}
.card-desc {
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 20px;
}
.card-size {
    font-size: 12px;
    margin-bottom: 25px;
}
.button-gray {
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
    line-height: 50px;
    text-align: center;
    border: none;
  width: 100%;
  cursor: pointer;
}
.card-buttons {
    display: flex;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    color: rgba(0, 0, 0, 0.8);
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
}
.card-back {
    width: 50%;
    padding: 15px 0;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.card-share {
    width: 50%;
    padding: 15px 0;
}
.card-share span {
    background-image: url(share.png);
    background-repeat: no-repeat;
    padding: 5px;
    padding-left: 30px;
}
.card-back span {
    background-image: url(arrow-left.png);
    background-repeat: no-repeat;
    padding: 5px;
    padding-left: 30px;
}
.card-related {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: 15px;
  margin-top: 30px;
}
.card-related h2 {
    text-align: center;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.8);
    font-size: 12px;
    font-weight: bold;
}
.card-related__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.card-related-item {
    width: calc(50% - 5px);
    text-align: center;
  margin-bottom: 20px;
}
.card-related-item img {
    width: 100%;
      height: 225px;
    object-fit: contain;
}
.card-related-item h3 {
    font-size: 10px;
    margin-bottom: 10px;
  height: 35px;
}
.card-related__list .products-item__price {
    font-size: 14px;
}
.card-related__list .products-item__price-old {
    font-size: 12px;
}
.cart-products-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 20px 15px 20px;
    position: relative;
    display: flex;
    justify-content: space-between;
}
.cart-products-item__remove {
    position: absolute;
    background-image: url(remove.png);
    width: 29px;
    height: 28px;
        top: 20px;
    right: 15px;
    background-color: #fff;
    border: none;
      cursor: pointer;
}
.cart-products-item__image {
    width: 45%;
    background-color: #FDF5EF;
    min-height: 215px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.cart-products-item__image img {
    width: 100%;
}
.cart-products-item__info {
    width: calc(55% - 15px);
}
.cart-products-item__info h1 {
    font-size: 11px;
    font-weight: normal;
}
.cart-products-item__info h1 span {
    display: block;
    font-weight: bold;
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
    margin: 10px 0 15px;
  	max-width: 120px;
}
.cart-products-item__price {
    margin: 15px 0;
    font-weight: bold;
    font-size: 14px;
}
.cart-products-item__param {
    font-size: 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
}
.cart-products-item__total {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    align-items: center;
}
.cart-products-item__quantity input {
    width: 56px;
    height: 34px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0 12px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    padding: 0;
}
.cart-products-item__sum {
    font-weight: bold;
    font-size: 14px;
}
.cart-promo p, .discount-comment, .discounts-notice {
    font-weight: bold;
    font-size: 10px;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.8);
    margin: 15px 0 20px;
}
.discount-comment, .discounts-notice {
    margin: 30px 0;
}
.cart-promo form {
    margin-bottom: 30px;
}
.cart-promo {
    margin-bottom: 30px;
}
.cart-products-item__quantity {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-products-item__quantity .arrow-left {
    width: 8px;
    height: 12px;
    background-image: url(arrow-left-2.png);
}
.cart-products-item__quantity .arrow-right {
    width: 8px;
    height: 12px;
    background-image: url(arrow-right.png);
}
.text-spacing {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.cart-button-checkout {
        margin: 25px auto 15px;
    display: block;
}
.cart-continue {
    border: 1px solid rgba(0, 0, 0, 0.2);
    width: 100%;
    line-height: 48px;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.8);
    font-size: 12px;
    font-weight: bold;
}
.checkout-text-auth {
    font-size: 18px;
    margin: 30px 0 20px;
    text-align: center;
}
.checkout-text-auth span {
    display: block;
    font-weight: bold;
    margin-top: 7px;
}
.checkout-auth-exit {
    text-transform: uppercase;
    color: #A9906C;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}
.text-dashed {
    text-align: center;
}
.text-dashed span {
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    border-bottom: 1px dashed #000;
    padding-bottom: 5px;
}
.checkout-caption {
    margin-top: 25px;
}
.checkout-ask {
    margin: 25px 0;
}
.checkout-form {
    margin: 0 20px;
}
.checkout-form .button-gray {
    margin: 20px 0 0;
}
.text-caption {
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    margin: 20px 0;
}
.checkout-delivery {
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-bottom: 10px;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.3);
}
.checkout-delivery__check {
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}
.checkout-delivery__check span {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    display: block;
}
.checkout-delivery.active {
    background-color: #333333;
    color: #fff;
}
.checkout-delivery.active .checkout-delivery__check {
    border: 2px solid rgb(255, 255, 255);
}
.checkout-delivery.active .checkout-delivery__check span {
    background-color: rgba(255, 255, 255);
}
.checkout-delivery__info {
    margin-left: auto;
}
.checkout-delivery__days {
    text-transform: none;
    font-weight: normal;
    margin-top: 5px;
}
.checkout-delivery__name span {
    display: block;
    font-weight: normal;
    font-size: 14px;
    text-transform: none;
    margin-top: 5px;
}
.checkout-delivery__button-map {
    background-image: url(plus.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 20px;
}
.checkout-delivery__button-map {
    text-decoration: underline;
}
.checkbox span {
    width: 18px;
    height: 18px;
    border: 2px solid rgb(55, 55, 55);
    display: block;
    border-radius: 3px;
    margin: 20px 15px 20px 0;
}
.input-wrap {
    display: flex;
}
.input-wrap input:first-child {
    margin-right: 10px;
}
.checkbox {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    line-height: 1.3;
}
.checkbox-personal {
    font-weight: bold;
    font-size: 10px;
}
.checkbox.active span {
    background-image: url(check.png);
    background-repeat: no-repeat;
    background-position: center;
}
.close-menu {
    background-image: url(close.png);
}
.menu-hover__lang {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #FDF5EF;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.3);
}
.menu-hover__lang-wrap {
    display: flex;
    max-width: 650px;
    margin: 0 auto;
    padding: 12px 20px;
}
.menu-hover__lang-wrap span {
    margin-right: 15px;
}
.menu-hover__lang .active {
    color: #000;
    border-bottom: none;
}
.menu-hover__lang a {
    border-bottom: 2px solid;
    margin-left: 20px;
}
.menu-hover {
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    overflow-y: scroll;
    bottom: 0;
  	transition: left 0.5s;
  	background: #fff;
  	padding-top: 73px;
  	z-index: 2;
}
.menu-hover.active {
	left: 0;
}
.menu-hover-wrap {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100%;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    max-width: 650px;
    margin: 0 auto;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.menu-hover__bottom {
    padding: 30px 0;
}
.menu-hover-wrap li {
    margin-bottom: 25px;
}
.menu-hover__bottom li {
    color: rgba(0, 0, 0, 0.3);
}
.menu-hover__bottom li.active {
    color: #000;
}
li.menu-hover__account {
    margin-bottom: 30px;
    color: #000;
}
li.menu-hover__account a span {
    color: #C20D00;
}
.text-caption.account-back {
    text-align: center;
    background-image: url(arrow-left-3.png);
    background-repeat: no-repeat;
    margin: 0 20px 30px;
}
.account-wrap {
    margin: 20px 0 80px;
}
.account-tabs {
    display: flex;
}
.account-tabs__tab {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 50%;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.3);
}
.account-content {
    margin: 0 20px;
}
.account-tabs__tab.active {
    color: #000;
    border-bottom: 3px solid #A9906C;
}
.account-wrap .msg-info {
    color: #A9906C;
    margin: 0 20px 20px;
    font-style: italic;
    font-size: 14px;
    line-height: 1.5;
}
.account-wrap .button-gray {
    margin-top: 30px;
}
.button-gray.account-button-reg {
    margin: 10px 0 30px;
}
.recovery-pass {
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    margin-top: 30px;
}
.pass-wrap {
    margin: 0 20px;
}
.pass-wrap .text-caption {
    text-align: center;
}
.pass-wrap p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}
.msg-warning {
    color: #C20D00;
    font-style: italic;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 30px;
    margin-top: 40px;
}
.pass-wrap .button-gray {
    margin: 30px 0;
}
.pass-wrap.change-pass {
    margin-top: 70px;
}
.pass-wrap.change-pass form {
    margin-top: 40px;
}
.text-caption.cabinet-orders-history {
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
    margin: 10px 0 0;
}
.text-caption.cabinet-orders-history span {
    background-image: url(list.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 30px;
}
.cabinet-links {
    display: flex;
    flex-wrap: wrap;
}
.cabinet-links {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 25px;
}
.cabinet-links div {
    width: 50%;
    text-align: center;
    padding: 10px 0 10px 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.3);
    font-size: 14px;
    font-weight: bold;
}
.cabinet-links div:nth-child(odd) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.cabinet-links div span {
    background-position: left center;
    background-repeat: no-repeat;
    display: block;
    line-height: 18px;
}
.cabinet-links__data span {
    background-image: url(user.png);
}
.cabinet-links__address span {
    background-image: url(address.png);
    padding-left: 15px;
}
.cabinet-links__bonus span {
    background-image: url(bonus.png);
    padding-left: 20px;
}
.cabinet-links__exit span {
    background-image: url(exit.png);
}
.cabinet-links + .text-caption, .cabinet-address .text-caption, .cabinet-personal .text-caption {
    text-align: center;
    margin-bottom: 30px;
}
.orders, .order-wrap, .cabinet-personal, .cabinet-address, .order-items, .order-bottom, .order__result {
    margin: 0 20px;
}
.orders__item {
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px 10px;
    margin-bottom: 10px;
    font-size: 14px;
    justify-content: space-between;
    color: #B6B6B6;
}
.orders__number {
    color: #000;
}
.order-wrap .text-caption {
    text-align: center;
    margin-bottom: 25px;
}
.order__caption {
    font-size: 14px;
    margin: 0 20px 20px;
}
.order-info {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
}
.order-info__row {
    display: flex;
    margin-bottom: 10px;
    align-items: baseline;
    line-height: 1.5;
}
.order-info__row:last-child {
    margin-bottom: 0;
}
.order-info__col:first-child {
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 120px;
    margin-right: 20px;
}
.order-info__col {
    font-size: 14px;
    color: #000;
    text-transform: none;
}
.order-info__col span {
    display: block;
}
span.order__date {
    display: flex;
}
span.order__time {
    margin-left: 20px;
}
.cabinet-personal .button-gray {
    margin-top: 45px;
}
.cabinet-address .button-gray {
    margin-top: 35px;
}
.order-items-item__name {
    font-size: 14px;
    font-weight: bold;
}
.order-items-item__name span {
    display: block;
    font-weight: normal;
    margin: 5px 0 20px;
}
.order-items-item {
    display: flex;
    justify-content: space-between;
}
.order-items-item__right {
    font-size: 14px;
}
.order-items-item__param {
    font-size: 10px;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.order-bottom {
    margin: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
}
.order-bottom div {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.order-bottom div span {
    display: block;
    font-weight: normal;
}
.order__result {
    font-weight: bold;
    font-size: 18px;
    text-align: right;
}
.articles-list h1 {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    margin: 50px 0;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #333333;
}
.looks-item img {
    width: 100%;
}
.looks-item {
    position: relative;
    line-height: 0;
      max-width: 500px;
    margin: 0 auto;
}
.looks-item h2 {
    position: absolute;
    bottom: 80px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #333333;
    background: rgba(253, 245, 239, 0.5);
    line-height: 45px;
}
.look h1 {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #333333;
    margin: 25px 0 10px;
}
.look img {
    width: 100%;
    margin-bottom: 15px;
}
.look-images {
    margin: 0 20px;
}
.look-related h2 {
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    color: #333333;
}
.look-related-slider__image {
    background-color: #FDF5EF;
    width: 100%;
    height: 65%;
    position: absolute;
    top: 50%;
    z-index: -1;
    transform: translate(0, -50%);
}
.look-related-slider {
    position: relative;
    text-align: center;
}
.look-related .button-gray {
    margin: 0 20px;
}
.look-related-slider img {
    max-width: 500px;
}
.look-related-slider .arrow-left {
    background-image: url(arrow-left.png);
    height: 24px;
    width: 24px;
    position: absolute;
    top: 50%;
    left: 20px;
}
.look-related-slider .arrow-right {
    background-image: url(arrow-right-2.png);
    height: 24px;
    width: 24px;
    position: absolute;
    top: 50%;
    right: 20px;
}
.look-related h3 {
    font-size: 18px;
    text-align: center;
    font-weight: normal;
}
.look-related h3 span {
    font-weight: bold;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.4);
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
}
.look-related__price {
    text-align: center;
    margin: 20px 0 30px;
    font-weight: bold;
    font-size: 18px;
}

.catalog__filter-cat {
    position: absolute;
    top: 37px;
    background-color: #fff;
    width: 100%;
    padding: 35px 0;
    font-weight: normal;
  	display: none;
      z-index: 1;
  text-align: center;
}
.catalog__filter-cat a {
    margin-bottom: 20px;
}
.catalog__filter-cat a:last-child {
    margin-bottom: 0;
}
.catalog__filter-field-caption {
    width: 16px;
    height: 16px;
    display: block;
    border-radius: 50%;
      box-shadow: 0 0 1px 1px #ccc;
}
.catalog__filter-items-list {
    display: flex;
    margin-bottom: 25px;
}
.catalog__filter-item {
    margin-right: 25px;
}
.catalog__filter-item label {
    cursor: pointer;
}
.catalog__filter-item.is-active .catalog__filter-field-caption {
    box-shadow: 0 0 0px 2px #d2d2d2;
    border: 2px solid #fff;
}
.catalog__filter-head {
    font-weight: bold;
    font-size: 10px;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 20px;
}
.catalog__filter-controls {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.is-filter-submit {
    border: none;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 15px;
    font-size: 16px;
    margin-right: 15px;
      cursor: pointer;
  font-weight: bold;
    border-radius: 5px;
}
.is-sfilter-clear {
    font-weight: bold;
    font-size: 10px;
    text-decoration-line: underline;
    text-transform: uppercase;
    color: #6A94FF;
}

.noUi-handle {
    border: 2px solid #A9906C;
    width: 24px;
    height: 24px;
  box-shadow: none;
    -webkit-box-shadow: none;
  -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.noUi-marker {
    display: none;
}
.noUi-value {
    display: none;
}
.noUi-target {
    background-color: #E7E7E7;
    border: none;
    border-radius: 5px;
}
.noUi-connect {
    background: #F3DFD0;
    box-shadow: none;
    -webkit-box-shadow: none;
}
.noUi-tooltip {
    border: none;
    background: none;
    top: 100%;
}
.collection-order-field.sort {
    display: none;
}
.is-page-size .collection-order-label {
    margin-right: 10px;
}
.custom-select__dropdown {
    position: absolute;
    top: 100%;
    background: #fff;
    padding: 20px 35px;
  display: flex;
    flex-direction: column;
    width: 100%;
  z-index: 1;
}
.custom-select__option.custom-select__option--value {
    width: 100%;
    background: none;
    border: none;
  font-weight: bold;
    font: bold 14px Arial;
    text-transform: uppercase;
}
.custom-select__option {
    cursor: pointer;
}
.custom-select__dropdown .custom-select__option {
    background: none;
    border: none;
    margin-bottom: 15px;
    font: bold 14px Arial;
    text-transform: uppercase;
}
.custom-select__dropdown .custom-select__option:last-child {
    margin-bottom: 0;
}
.is-hidden {
    display: none;
}
.is-page-size {
    display: flex;
    align-items: baseline;
}
select.collection-order-field.page-size {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    background-image: url(new_select.png);
    padding-right: 20px;
    background-repeat: no-repeat;
    background-position: center right;
    padding-right: 25px;
}
.is-page-size span {
    font-size: 14px;
    text-transform: uppercase;
    color: #333333;
}
.new-paginate ul.pagination {
    display: flex;
  align-items: baseline;
}
li.pagination-item.is-current {
    text-decoration: none;
  color: #333333;
    font-size: 40px;
}
li.pagination-item:first-child {
	margin-left: 0;
}
li.pagination-item {
  	margin-left: 50px;
    font-weight: bold;
    color: #999999;
    font-size: 24px;
}
li.pagination-item.hidden-md {
    display: none;
}
.wrap-variants {
    margin-bottom: 30px;
}
.wrap-variants select.option-values {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    height: 35px;
    padding: 0 10px 0;
    min-width: 150px;
    cursor: pointer;
}
.wrap-variants select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url(arrow-down-gray.png) !important;
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}
.counter.js-variant-counter {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
  justify-content: center;
}
.cart-products-item__quantity .counter.js-variant-counter {
    margin-bottom: 0;
}
input.counter-input {
    max-width: 55px;
    text-align: center;
    padding: 0;
    font-weight: bold;
    font-size: 14px;
    line-height: 33px;
    margin: 0 10px 0;
}
.counter-button {
	border: none;
    width: 8px;
    height: 12px;
    background-repeat: no-repeat;
    background-color: #fff;
  	padding: 0;
      cursor: pointer;
}
.no-active-count {
    cursor: default;
}
.is-count-up {
    background-image: url(arrow-right.png);
}
.is-count-down {
    background-image: url(arrow-left.png);
}
.hidden {
    display: none;
}
.notice.is-info.text-center.js-cart-empty {
    text-align: center;
    height: 170px;
    padding-top: 45px;
}
.discount-row {
    display: flex;
}
.page-wrap {
    padding: 30px 20px;
}
.page-headding {
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #333333;
    margin-bottom: 45px;
}

.other-country {
    text-transform: uppercase;
    font-size: 10px;
    margin-bottom: 30px;
    border-bottom: 1px dashed;
    display: inline-block;
    cursor: pointer;
  	user-select: none;
}
.other-country:hover {
    color: #616161;
}
.other-country__text {
    font-size: 10px;
    line-height: 20px;
    margin-bottom: 30px;
    border: 1px dashed;
    border-radius: 10px;
    border-color: #ababab;
    padding: 10px 15px;
    background: #FDF5EF;
  	position: relative;
  	user-select: none;
}
.other-country__text span {
    background-image: url(other-country-close.png);
    width: 16px;
    height: 16px;
    display: block;
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
}
.other-country__text a {
    display: inline-block;
    color: #0041E7 !important;
}
.other-country__text a:last-child {
    color: #A9906C !important;
}

.co-title--h2 {
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    margin: 20px 0;
}
input.co-input-field {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    line-height: 46px;
    display: block;
    margin-bottom: 10px;
    width: 100%;
    font-size: 11px;
    text-transform: uppercase;
    padding: 0 0 0 15px;
}
.co-social_login-box {
    justify-content: center;
}
.co-input-description {
    margin: 0;
}
.link.js-modal-toggler {
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    border-bottom: 1px dashed #000;
    padding-bottom: 5px;
    color: #000;
    margin: 15px 0 25px;
}
label.co-input-label {
    font-size: 10px;
    text-transform: uppercase;
    margin-bottom: 10px;
}
form#order_form {
    padding: 20px;
}
.co-input--house {
    margin-right: 10px;
}
.client-wrap.client-auth .co-adress button {
    width: 100%;
      margin: 0 0 65px;
  font-size: 17px;
}
.client-wrap.client-auth .co-input--house {
    margin-right: 0;
}
button#create_order, .js-modal-submit--login, .js-co-login-submit, .client-wrap .co-adress button {
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.8);
    margin: 20px 0 0;
    line-height: 50px;
    text-align: center;
    padding: 0;
  width: 335px;
}
.co-checkout-block {
    margin: 0;
}
.co-input--zip .co-input-description {
    font-size: 11px;
}
label.co-delivery_method {
        border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 15px;
    display: flex;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.3);
    padding: 10px 18px;
}
.co-tabs-content {
    margin: 0;
}
.radio.co-delivery_method-input {
    margin-right: 15px;
  flex: none;
}
.co-toggable_field-information.co-delivery_method-information {
    max-width: 190px;
    padding: 0;
    flex: none;
  	margin: 0;
}
.co-toggable_field-title.co-delivery_method-title {
    margin: 0;
    font-size: 14px;
}
.co-toggable_field-input--radio input+span {
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    box-shadow: none;
      flex: none;
}
.co-toggable_field-price {
    margin-left: auto;
    padding: 0;
    flex: none;
      font-size: 14px;
}
a.co-link {
    font-weight: normal;
    font-size: 14px;
    text-decoration-line: underline;
    color: #3EB8E4;
    text-transform: none;
    margin-top: 7px;
}
.co-toggable_field-description.co-input-description {
    font-weight: normal;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.3);
    text-transform: lowercase;
    margin: 0;
}
#delivery_variants {
    margin-bottom: 25px;
}
a.co-button--password_recover {
    font-weight: bold;
    font-size: 14px;
    color: #000;
    text-align: center;
    margin: 20px 0 0;
}
.co-button--password_recover:after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0rem;
    left: 0;
    right: 0;
    color: inherit;
    border-bottom: none;
}
.mobile .co-modal-title {
    text-align: center;
    padding: 0;
    margin: 30px 0 35px;
}
.co-input--error .co-input-notice {
    display: block;
    font-size: 12px;
    color: red;
      position: relative;
    top: -5px;
    text-align: left;
}
.co-input--error input.co-input-field {
    border-color: red;
}
.co-pick_up-selected_point + a.co-link {
    background-image: url(plus.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 20px;
}
.co-input--checkbox {
    margin: 10px 0;
}
.co-input--checkbox label {
    font-weight: bold;
    text-transform: uppercase;
      flex-wrap: nowrap;
}
.co-input--checkbox .co-input-title {
    font-size: 14px;
}
.co-toggable_field-input--checkbox {
    align-self: center;
}
.co-input--checkbox .co-toggable_field-information {
    padding: 0;
}
.co-input--checkbox .co-toggable_field-description {
    font-size: 12px;
    line-height: 1.1;
}
.co-toggable_field-input input+span {
    border-radius: 3px;
    box-shadow: none;
    border: 2px solid rgb(55, 55, 55);
  width: 18px;
    height: 18px;
}
.co-toggable_field-input input:checked+span {
	box-shadow: none;
}
.co-toggable_field-input--checkbox input:checked+span:after {
    content: " ";
        background-image: url(check.png);
    background-repeat: no-repeat;
    background-position: center;
  width: 14px;
    height: 11px;
}
.co-pick_up-selected_point {
    font-size: 13px;
    text-transform: none;
    margin: 5px 0;
}
.co-payment_method-list .co-toggable_field--bordered, .co-payment_method-list .co-toggable_field-information{
    padding: 0;
  flex-wrap: nowrap;
}
.co-payment_method-title {
    font-size: 14px;
}
.consent_to_personal_data_checkbox .co-input-title {
	font-size: 10px;
    text-transform: none;
}
.consent_to_personal_data_checkbox .co-toggable_field-description {
    font-size: 10px;
    line-height: 1.1;
}
.co-payment_method-list {
    margin: 25px 0;
}
.co-payment_method-title {
    margin: 0;
}
.co-delivery_method .co-toggable_field-input input+span {
	width: 20px;
    height: 20px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}
.co-payment_method .co-toggable_field-input input+span {
    border: 2px solid rgb(55, 55, 55);
    border-radius: 50%;
    width: 20px;
    height: 20px;
}
.co-payment_method .co-toggable_field-input input:checked+span {
    box-shadow: inset 0 0 0 2px #fff;
    background: #373737;
}
button#create_order, .js-co-login-submit {
    width: 100%;
}
.lk-wrap .co-login .co-form-controls {
    margin: 0;
}
.co-input--consent_to_personal_data .co-toggable_field-description a {
	text-decoration: underline;
    display: inline-block;
}
.client-wrap .text-caption {
	text-align: center;
  margin-bottom: 35px;
}
.client-wrap .co-form-controls {
    flex-direction: column;
  margin: 0;
}
.client-wrap .co-form-controls a.co-button--link {
	font-weight: bold;
    font-size: 14px;
  	color: #000;
}
.co-button--password_recover:hover {
	color: #000;
}
.mobile .js-modal-submit--login:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.client-wrap .co-form-controls a.co-button--link:after {
	border: none;
}
.client-wrap .co-form-controls a.co-button--link:last-child {
    text-transform: uppercase;
    border-bottom: 1px dashed;
  width: auto;
}
.client-wrap .co-checkout-block--padded {
 padding: 0;
}
.client-wrap {
    margin: 0 20px;
}
.js-co-login-submit {
    margin-bottom: 20px;
  font-size: 17px;
}
.co-input--phone .co-input-description{
	font-size: 11px;
    margin-bottom: 20px;
    font-style: italic;
}
.client-wrap .co-input--consent_to_personal_data {
	margin: 35px 0 0;
}
.client-wrap .co-input--consent_to_personal_data .co-toggable_field-title {
	font-size: 10px;
}
.client-wrap .co-input--consent_to_personal_data .co-toggable_field-description {
	font-size: 11px;
}
.co-client {
    text-align: center;
    margin: 10px 0 40px;
}
.co-client-logged {
    font-weight: normal;
    font-size: 18px;
    margin-bottom: 15px;
}
.co-client-name {
    display: block;
    margin-top: 7px;
    font-size: 18px;
}
.co-client-info {
    margin-bottom: 15px;
}
.co-client a.co-button {
    background: none;
    color: #A9906C;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: bold;
    padding: 0;
    margin-top: 10px;
}
.co-client .co-client-field {
    font-size: 12px;
    margin-bottom: 5px;
    color: #909090;
}
.co-input--consent_to_personal_data {
    margin-top: 35px;
}
.cart-yes:after {
    content: "";
    width: 11px;
    height: 11px;
    background: red;
    display: block;
    border-radius: 50%;
    position: relative;
    top: 15px;
    left: 12px;
}
label.ship-yes {
    background-color: #333333;
    color: #fff;
}
label.ship-yes .co-toggable_field-input--radio span {
    border-color: #fff;
  box-shadow: inset 0 0 0 3px #333;
    background-color: #fff;
}
label.ship-yes .co-toggable_field-description.co-input-description {
    color: #fff;
}
label.ship-yes a.co-link {
    color: #3EB8E4;
}
.look-item {
    margin: 25px 20px 5px;
}
.look-item img, .page-clients img {
    width: 100%;
    margin-bottom: 15px;
}
.look-item p a, .page-clients p a {
    margin: 0 auto;
    max-width: 600px;
}
.look-item h1 {
	font-weight: bold;
    font-size: 18px;
    margin: 0 0 10px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    text-align: center;
    color: #333333;
}
.article-slider-wrap h2 {
	font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    color: #333333;
    text-align: center;
  margin-bottom: 20px;
}
.co-sidebar--menu .co-menu--personal {
    display: flex;
    text-align: center;
    padding: 0;
    margin-bottom: 25px;
}
.co-menu-item.co-menu-item--personal {
    width: 50%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin: 0;
    padding: 5px 0 10px;
      flex: none;
  display: flex;
    justify-content: center;
    align-items: center;
}
.co-menu-item.co-menu-item--personal:first-child {
    width: 100%;
}
.co-sidebar--menu .co-menu-toggle {
    display: none;
}
.co-menu-item.co-menu-item--personal:nth-child(even) {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.co-sidebar--menu .co-menu-link--personal {
    font-weight: bold;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.3);
}
.co-sidebar--menu .co-menu-link--personal.co-link--active.co-menu-link--active {
    color: #000;
  	opacity: 1;
}
.look__cart-button {
    margin-top: 15px;
}
#article-product .counter.js-variant-counter {
    margin: 20px 0 0;
}
.articles-list {
    margin-bottom: 95px;
}
#article-product img {
    width: 60%;
  position: relative;
}
.article-product-nav {
	width: 13px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
  	position: absolute;
    top: 50%;
      transform: translate(0,-50%);
  cursor: pointer;
}
.article-product-nav.nav-left {
    background-image: url(arrow-left-big.png);
      left: 20px;
}
.article-product-nav.nav-right {
    background-image: url(arrow-right-big.png);
      right: 20px;
}
#article-product .card-image__back {
    z-index: 0;
}
input#shipping_address_full_locality_name {
    background-color: #fff !important;
}
.js-co-login-submit:hover, .co-button:hover, .co-button:focus {
    background-color: #373737;
  box-shadow: none;
}
a.co-button.co-button--link.co-form-button:focus, a.co-button.co-button--link.co-form-button:hover {
    background: none;
}
.is-count-down.no-active-count {
    background-image: url(arrow-left-no-active.png);
}
.article-product-nav.nav-left.no-active-count {
    background-image: url(arrow-left-big-no.png);
}
.article-product-nav.nav-right.no-active-count {
    background-image: url(arrow-right-big-no.png);
}
.editor p {
    margin-bottom: 15px;
}
.editor h2 {
    margin-bottom: 20px;
}
.client-wrap a.co-link {
    color: #1f91ba;
    font-size: 16px;
    text-decoration: none;
    border-bottom: 1px solid;
    display: inline-block;
    margin-top: 0;
}
.catalog__filter-params.active, .catalog__filter-cat.active {
    display: block;
}
#delivery-location-not-valid {
    font-size: 12px;
    text-align: left;
    color: red;
    margin: 0;
    position: relative;
    top: -5px;
}
.alertify-notifier.ajs-bottom.ajs-right {
    right: 0;
    width: 100%;
  bottom: 0;
}
.ajs-message.ajs-success.ajs-visible {
    color: #fff;
    text-align: center;
    width: 100% !important;
    left: 0 !important;
      margin-top: 0;
  line-height: 40px;
      font-size: 18px;
}
.card-button {
    margin: 0 auto;
}
.products:after {
    flex-basis: calc(33% - 25px);
    content: "";
}
.all-wrap {
    min-height: calc(100vh - 263px);
}
.client-wrap .co-login .co-notice--danger.co-notice--flash {
    margin: 0 0 30px;
  font-size: 10px;
    text-transform: uppercase;
    text-align: center;
}
.cart-bottom-wrap {
    margin: 0 20px;
}
.editor a {
    word-break: break-all;
}
.home-tabs__content {
    display: none;
}
.home-tabs__tabs {
    display: flex;
    margin: 25px 15px 15px;
    flex-wrap: wrap;
  	justify-content: center;
}
.home-tabs__tab.active {
    font-weight: bold;
  	color: #000;
}
.home-tabs__tab {
    margin: 0 17px 10px;
    text-transform: uppercase;
    font-size: 18px;
    color: #C7C7C7;
  	cursor: pointer;
}
.home-tabs__content.active {
    display: block;
}
.home-tabs__head {
  	display: block;
    width: 100%;
    text-align: center;
    font-size: 21px;
    text-transform: uppercase;
    border: 1px solid #000000;
    padding: 10px 0;
    margin: 5px 0 30px;
}
.prod-not-avail {
    font-size: 15px;
    letter-spacing: 0;
      background-color: #fff;
    color: rgb(55, 55, 55);
    border: 2px solid rgb(55, 55, 55);
  line-height: 48px;
}
.article-products-mobile .prod-not-avail {
	margin-top: 25px;
    margin-bottom: 60px;
}
.product-none-text {
    margin-bottom: 10px;
    font-size: 14px;
}
a:not([class]):hover {
    color: #000000;
}
.alert-go-to-cart {
  	z-index: 99999999;
	position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(91, 189, 114, 0.95);
    padding: 15px 0 25px;
    color: #fff;
    font-size: 20px;
    text-align: center;
  	opacity: 0;
  	transition: all 300ms cubic-bezier(0.420, 0.000, 0.580, 1.000);
  	transition-timing-function: cubic-bezier(0.420, 0.000, 0.580, 1.000);
}
.alert-go-to-cart.visible {
    opacity: 1;
}
.alert-go-to-cart a {
	margin-top: 10px;
    cursor: pointer;
    font-size: 15px;
    text-transform: lowercase;
  	display: inline-block;
}
.alert-go-to-cart a span {
    border-bottom: 1px dashed;
}
.card-image__controls button {
    padding: 0;
    width: 14px;
    height: 24px;
    margin-top: -37px;
}
.card-image__controls .swiper-button-prev {
    background: url(arrow-left-2.png) no-repeat;
    left: 15px;
}
.card-image__controls .swiper-button-next {
    background: url(arrow-right-2.png) no-repeat;
    right: 15px;
}
.swiper-pagination-bullets {
    display: flex;
    justify-content: center;
    align-items: center;
}
span.swiper-pagination-bullet {
    border: 1px solid #000000;
    background: #fff;
    opacity: 1;
    margin: 0 13px !important;
}
span.swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    background: #000;
}
.card-image-mobile .swiper-pagination-bullets {
    bottom: 0;
}

.desktop-menu, .catalog-left, .catalog-right__sort, .card-info .breadcrumbs, .card-desc-head, .card-price-2, .cart-head, .cart-header, .cart-products-item__price-2, .checkout-wrap .co-sidebar-wrapper, .article-products-desktop, li.footer-menu-li__desktop {
    display: none;
}

.only-mobile {
    display: none;
}

.style-fixed {
	position: fixed;
  z-index: 9999999;
}
