/*@import url('https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400;500;600;700;800;900&display=swap');*/
/*@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@400;500;600;700;800&display=swap');*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
/*@font-face {*/
/*font-family: Lato;*/
/*src: local('Lato Regular'),*/
/*local('Lato-Regular'), */
/*url('/latoregular.woff2') format('woff2'),*/
/*url('/latoregular.woff') format('woff'),*/
/*url('/latoregular.ttf') format('truetype');*/
/*font-weight: 400;*/
/*font-style: normal;*/
/*}*/

@font-face {
    font-family: Lato;
    src: url('/latoregular.woff2') format('woff2'),
    url('/latoregular.woff') format('woff'),
    url('/latoregular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: Lato;
    src: local('Lato Medium'),
    local('Lato-Medium'),
    url('/latomedium.woff2')  format('woff2'),
    url('/latomedium.woff')  format('woff'),
    url('/latomedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: Lato;
    src: local('Lato Bold'),
    local('Lato-Bold'),
    url('/latobold.woff2') format('woff2'),
    url('/latobold.woff') format('woff'),
    url('/latobold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto Slab';
    src: local('Roboto Slab'),
    local('Roboto-Slab'),
    url('/RobotoSlab-Regular.woff2') format('woff2'),
    url('/RobotoSlab-Regular.woff') format('woff'),
    url('/RobotoSlab-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto Slab';
    src: local('Roboto Slab'),
    local('Roboto-Slab'),
    url('/RobotoSlab-Medium.woff2') format('woff2'),
    url('/RobotoSlab-Medium.woff') format('woff'),
    url('/RobotoSlab-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto Slab';
    src: local('Roboto Slab'),
    local('Roboto-Slab'),
    url('/RobotoSlab-SemiBold.woff2') format('woff2'),
    url('/RobotoSlab-SemiBold.woff') format('woff'),
    url('/RobotoSlab-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Roboto Slab';
    src: local('Roboto Slab'),
    local('Roboto-Slab'),
    url('/RobotoSlab-Bold.woff2') format('woff2'),
    url('/RobotoSlab-Bold.woff') format('woff'),
    url('/RobotoSlab-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
*, body {
    outline: none!important;
    font-family: Lato, sans-serif;
}
body,html {
    overflow-x: hidden;
}
body.fx, html.fx {
    overflow: hidden;
}
a,button {
    text-decoration: none!important;
}
h1 {
    font:400 30px/1.5em Roboto Slab, serif;
    margin-bottom: 15px;
}
.header {
    padding: 18px 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.header.fix {
    position: absolute;
    z-index: 10;
    width: 100%;
    top:0;
}
.header.fix.sticky {
    position: fixed;
    -webkit-box-shadow: 5px 6px 20px rgba(72, 61, 54, 0.1);
    box-shadow: 5px 6px 20px rgba(72, 61, 54, 0.1);
    background: #fff;
    left: 0;
    top: 0;
    right: 0;
}
.header.fix > .wrap {
    max-width: 1240px;
    width: 95%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header .menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.header .menu ul li:not(:last-child) {
    margin-right: 40px;
}
.header .menu a {
    font-family: Lato,sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    position: relative;
    display: block;
    padding-bottom: 4px;
}
.header .menu a:after {
    content:"";
    bottom:0;
    display: block;
    left: 0;
    width: 0;
    height: 1px;
    background: #A2887A;
    transition:all .3s ease;
}
.header._white .menu a:after {
    background: #fff;
}
.header .menu a:hover:after {
    width: 100%;
}
.header._white .menu a, .header._white button {
    color:#fff;
}

.header.sticky .menu a, .header.sticky button {
    color:#A2887A;
}
.header.sticky .menu a:after {
    background: #A2887A;
}
.header._white {
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.header .butts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header .butts .btn {
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 20px;
    font-weight: 500;
}

.header .butts #cart .btn {
    position: relative;
    margin-right: 0;
}
.header.sticky .butts .btn {
    background: #F8F6F5;
}
.header_helper+.header .butts .btn {
    background: #F8F6F5;
    color:#a2887a;
}
.header .butts #cart .btn .cart-total2 {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 8px;
    width: 12px;
    height: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    background: #48B0B8;
    border: 2px solid #f8f6f5;
}
.header._white .butts #cart .btn .cart-total2 {
    color:#a4a4ab;
    background-color: #fff;
    border-color: #a4a4ab;
}
.header #wishlist-total {
    position: relative;
}
.header #wishlist-total .tot {
    position: absolute;
    right: 10px;
    top: 10px;
    font-size: 8px;
    width: 12px;
    height: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 50%;
    color: #fff;
    background: #48B0B8;
    border: 2px solid #f8f6f5;
}

.header._white #wishlist-total .tot {
    color:#a4a4ab;
    background-color: #fff;
    border-color: #a4a4ab;
}
.header .butts .search_container {
    position: relative;
}
.header .butts #search {
    position: absolute;
    right: 0;
    top: calc(100% + 13px);
    background: #FFFFFF;
    -webkit-box-shadow: 5px 6px 20px rgba(72, 61, 54, 0.1);
    box-shadow: 5px 6px 20px rgba(72, 61, 54, 0.1);
    padding: 16px 23px;
    display: none;
}
#search .live-search {
    margin-top: 15px;
}
#search .live-search ul li {
    margin: 0 23px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(162, 136, 122, 0.1);
}
#search .live-search ul li:nth-child(even) {
    background: transparent;
}
#search .live-search ul li .product-image {
    margin-right: 15px;
}
.header .butts #search .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.header .butts #search.active {
    display: block;
}
.header #search input {
    border:1.2px solid #A2887A;
    border-right: 0;
    color:#A2887A;
    padding: 10px 15px;
    min-width: 400px;
}
.header #search input::-webkit-input-placeholder {
    color:#A2887A;
    font-size: 16px;
}
.header #search input::-moz-placeholder {
    color:#A2887A;
    font-size: 16px;
}
.header #search input:-ms-input-placeholder {
    color:#A2887A;
    font-size: 16px;
}
.header #search input::-ms-input-placeholder {
    color:#A2887A;
    font-size: 16px;
}
.header #search input::placeholder {
    color:#A2887A;
    font-size: 16px;
}

.header #search button {
    border:1.2px solid #A2887A;
    border-left: 0;
    padding: 10px 15px;
    background: transparent;
    color:#A2887A;
}
.referrals_content .button {
    border:1.2px solid #A2887A;
    padding: 10px 15px;
    background: transparent;
    color:#A2887A;
    display: inline-block;
    margin-bottom: 30px;
}
#search .live-search ul li a {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}
#search .live-search ul li .product-name {
    font:500 14px Lato, sans-serif!important;
    color:#A2887A;
    -webkit-box-flex:1;
    -ms-flex:1;
    flex:1;
}
#search .live-search ul li .price {
    font:400 14px Lato, sans-serif!important;
    color:#464646;
}
#search .live-search .result-text {
    display: none;
}
#search .live-search ul li .product-price {
    margin-top: 0;
}
#form-language .dropdown-menu {
    min-width: auto;
    padding: 0 3px;
}
#form-language .dropdown-menu button {
    margin: 0;
}
#cart {
    position: relative;
}
.ctbg {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 2147483649;
}
.ctbg.active {
    opacity: 1;
    visibility: visible;
}
.wsbg {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.3);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 2147483649;
}
.wsbg.active {
    opacity: 1;
    visibility: visible;
}
#cart .toggle_cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    z-index: 2147483650;
    right: -70px;
    top: 0;
    height: 100%;
    min-width: 600px;
    background: #fff;
    padding: 50px 32px 40px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
}
#cart .toggle_cont.active {
    right: 0;
    visibility: visible;
    opacity: 1;
}
#cart .title {
    color:#464646;
    font:500 30px Roboto Slab, serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    line-height: 1;
    margin-bottom: 40px;
}
#cart .close {
    opacity: 1;
    margin-top: 3px;
}

.wsh_cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    z-index: 2147483650;
    right: -70px;
    top: 0;
    height: 100%;
    min-width: 600px;
    background: #fff;
    padding: 50px 32px 40px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
}
.wsh_cont.active {
    right: 0;
    visibility: visible;
    opacity: 1;
}
.wsh_cont .title {
    color:#464646;
    font:500 30px Roboto Slab, serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    line-height: 1;
    margin-bottom: 40px;
}
.wsh_cont .close {
    opacity: 1;
    margin-top: 3px;
}
.wsh_cont .list {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    overflow: auto;
}
.wsh_cont .list .product-layout {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.wsh_cont .list .product-layout:not(:last-child) {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.wsh_cont .list .product-layout .product-thumb {
    margin-right: 12px;
}
.wsh_cont .list .product-layout .caption {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex:1;
    -ms-flex:1;
    flex:1;
}
.wsh_cont .list .product-layout .caption .double {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.wsh_cont .list .product-layout .caption .double .btn {
    background: transparent;
}
.wsh_cont .list .product-layout .caption .double .price {
    margin-right: 20px;
}
.wsh_cont .list .product-layout .caption .name {
    -webkit-box-flex:1;
    -ms-flex:1;
    flex:1;
    padding-right: 45px;
}
#cart td {
    border-top: 0;
    padding: 15px 0;
    vertical-align: middle;
}
#cart td.name {
    padding: 15px 12px;
}
#cart tr {
    padding: 15px 0;
}
#cart tbody tr:not(:last-child) td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#cart .remove {
    background: transparent;
    border:0;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none !important;
}
#cart .prods {
    -webkit-box-flex:1;
    -ms-flex:1;
    flex:1;
    overflow: auto;
}
#cart .list-total {
    color:#464646;
    font:400 14px Lato, sans-serif;
    padding: 0 50px;
}
#cart .plus-minus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#cart .plus-minus > span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
#cart .plus-minus button {
    background: transparent;
    border:0;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#cart .plus-minus input {
    width: 40px;
    text-align: center;
    color:#464646;
    font:400 14px Lato, sans-serif;
    border:0;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
#cart td.name {
    max-width: 185px;
    padding-right: 38px;
}

#cart .double {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 15px 0 32px;
}
#cart .double .tree {
    width: 35%;
}
#cart .double .tree .content {
    border:1px solid #A2887A;
    padding: 16px 16px 0;
    margin-bottom: 10px;
}
#cart .double .tree .content p {
    color:#A2887A;
    font:400 12px/1.5em Lato, sans-serif;
    margin-bottom: 5px;
    text-align: center;
}
#cart .double .tree .content p span {
    font-weight: bold;
}
#cart .double .tree .content img {
    display: block;
    margin: 0 auto;
}
#cart .double .tree .more {
    display: block;
    color:#A2887A;
    text-align: center;
    padding: 7.5px 15px;
    border:1px solid #A2887A;
    font:500 14px/1em Roboto Slab, serif;
}
#cart .double .totals {
    /*width: calc(65% - 15px);*/
    width: 100%;
    background: #F8F6F5;
    padding: 16px 24px;
}
#cart .double .totals table {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 16px;
}
#cart .double .totals tr {
    border:0;
}
#cart .double .totals tr:not(:last-child) td {
    font:400 14px/1.5em Lato, sans-serif;
    border:0;
}
#cart .double .totals tr td {
    font:bold 14px/1.5em Lato, sans-serif;
    color:#464646;
    border:0;
}
#cart .double .totals p {
    text-align: center;
    color:#464646;
    font:400 12px / 1.5em Lato, sans-serif;
}
#cart .butts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
#cart .butts a {
    width: calc(50% - 8px);
    padding: 18px;
    font:500 18px / 1 Roboto Slab, serif;
    border:2px solid #A2887A;
    text-align: center;
}
#cart .butts a.cl {
    color: #A2887A;
}
#cart .butts a.checkout {
    background: #A2887A;
    color:#fff;
}
.hero {
    position: relative;
    width: 100vw;
    left: 50%;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
}
.hero .wrap {
    position: absolute;
    bottom: 40px;
    max-width: 1240px;
    width: 95%;
    left: 50%;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
    padding: 23px 0 23px 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.hero img {
    max-width: 100%;
    position: relative;
    height: 100vh;
    width: 100vw;
}
.hero:before {
    content:"";
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    right: 0;
    height: 190px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.29) 0%, rgba(0, 0, 0, 0) 100%);
}
.hero .wrap:before {
    content:"";
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(13px);
    backdrop-filter: blur(13px);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.hero .wrap .name-capital {
    font: 500 50px 'Roboto Slab', serif;
    color:#fff;
    line-height: 1;
    max-width: 290px;
}
.hero .wrap ul {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
    list-style-type: none;
    padding-left: 50px;
    padding-right: 50px;
}
.hero .wrap ul li {
    padding-left: 25px;
    position: relative;
    color:#fff;
    font: 500 20px/30px Lato, sans-serif;
}
.hero .wrap ul li a {
    font: 500 20px/30px Lato, sans-serif;
    color:#fff;
}
.hero .wrap ul li a:first-letter {
    text-transform: uppercase;
}
.hero .wrap ul li:before {
    content:"";
    position: absolute;
    left: 0;
    top:.3em;
    width: 12px;
    height: 22px;
    background: url('../icons/list.svg') 50% / contain no-repeat;
}
.hero .wrap > a {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #A2887A;
    font: 500 24px/1.4em Roboto slab, serif;
    padding: 25px 50px;
    background: url(../icons/texture_large.svg) 50% / cover no-repeat,#fff;
    text-align: center;
    max-width: 100%;
    width:360px;
    right: calc(50% - 110px);
}
.hero .wrap > a:before {
    content:"";
    position: absolute;
    z-index: -1;
    background: #A2887A;
    left: -10px;
    bottom: -10px;
    width: 100%;
    height: 100%;
}
.mobile_bar,.sand_menu {
    display: none;
}
.container {
    max-width: 1270px;
    width: 95%;
}
.featured_cats_column {
    background: url(../icons/texture_large.svg) 50% / cover no-repeat,#F8F8F8;
    padding: 100px 0;
}
.featured_cats_column .row-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.featured_cats_column .row-inner > div:nth-of-type(1) {
    width: 25%;
}
.featured_cats_column .row-inner > div:nth-of-type(2) {
    width: 75%;
    right: -125px;
}
.featured_cats_column h2 {
    color:#464646;
    font:500 50px/1.2em Roboto Slab, serif;
    margin: 30px 0 25px;
}
.featured_cats_row .box-content p {
    color:#464646;
    font:500 16px/1.6em Lato, sans-serif;
    margin-bottom: 40px;
}
.featured_cats_row a.more {
    color:#fff;
    background: #A2887A;
    padding: 14px 40px 16px;
    font:500 20px/1 Roboto Slab, serif;
    white-space: nowrap;
    border:1px solid #A2887A;
    transition:all .3s ease;
}
.featured_cats_row a.more:hover {
    color:#A2887A;
    background: #fff;
    transition:all .3s ease;
}
.info_content a.more, .blog_article_page a.more {
    margin: 15px 0;
    color:#fff;
    display: inline-block;
    background: #A2887A;
    padding: 14px 40px 16px;
    font:500 20px/1 Roboto Slab, serif;
    white-space: nowrap;
    border:1px solid #A2887A;
    transition:all .3s ease;
}
.info_content a.more:hover, .blog_article_page a.more:hover {
    color:#A2887A;
    background: #fff;
    transition:all .3s ease;
}
.cat_wall .item h5 {
    margin: 16px 0 6px;
    font:500 24px/1.5em Lato, sans-serif;
    color:#464646;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.cat_wall .item h5 .c {
    margin-right: 20px;
}
.cat_wall .item p {
    color:#A2A2A2;
    font:400 18px/1.5em Lato, sans-serif;
}
.cat_wall .owl-nav {
    margin-top: 40px!important;
    position: relative;
    left: -125px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.cat_wall .owl-nav button {
    background: #A2887A!important;
    width: 50px;
    height: 50px;
    opacity: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.cat_wall .owl-nav button:hover {
    opacity: 0.5;
}

.featured_block {
    background: url(../icons/texture_large.svg) 50% / cover no-repeat,#F8F8F8;
    padding: 70px 0 110px;
    position: relative;
    width: 100vw;
    left: 50%;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
}
.featured_block .wrap {
    max-width: 1270px;
    width: 90%;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}
.featured_block .wrap h2 {
    font:500 40px/1.2 Roboto Slab,serif;
    max-width: 40%;
}
.featured_block .wrap .descr {
    margin: 16px 0 40px;
    font:500 16px/1.6 Lato, sans-serif;
}
.featured_block .wrap .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 80px;
}
.featured_block .wrap .items a:not(:last-child) {
    padding-right: 30px;
    margin-right: 30px;
}
.featured_block .wrap .items a:nth-of-type(1) {
    -webkit-transform: rotate(-4deg) translate(20px, 40px);
    transform: rotate(-4deg) translate(20px, 40px);
}
.featured_block .wrap .items a:last-child {
    -webkit-transform: rotate(4deg) translate(-20px, 40px);
    transform: rotate(4deg) translate(-20px, 40px);
}
.featured_block .wrap .more {
    padding: 14px 32px 16px;
    border: 2px solid #A2887A;
    font: 500 18px/1 Roboto Slab, serif;
    color: #A2887A;
}
.rd-parallax {
    position: relative;
    /*width: 100vw;*/
    /*left: 50%;*/
    /*-webkit-transform: translate(-50%,0);*/
    /*transform: translate(-50%,0);*/
    margin-bottom: 200px;
}
.rd-parallax .rd-parallax-inner {
    padding-top: 220px;
    position: relative;
}
.rd-parallax [data-type="media"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
}
.rd-parallax .lay {
    position: absolute;
    left: calc((1240px - 100vw) / 2);
    top: 0;
    width: 100vw;
    height: 100%;
    z-index: -1;
}
.rd-parallax [data-type="html"] .parallax-text {
    padding: 32px 60px;
    background: #fff;
    max-width: 610px;
    text-align: center;
    margin: 120px auto 0;
}
.rd-parallax [data-type="html"] .parallax-text h2 {
    font:500 40px Roboto Slab, serif;
}
.rd-parallax [data-type="html"] .parallax-text p {
    font:400 16px Lato, sans-serif;
    color: #464646;
    margin: 16px auto 50px;
    max-width: 80%;
}
.rd-parallax [data-type="html"] .parallax-text a {
    padding: 14px 40px 16px;
    background: #A2887A;
    font: 500 20px/1 Roboto Slab, serif;
    color: #ffffff;
}
.faq_container {
    position: relative;
    width: 100vw;
    left: 50%;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.faq_container .bg {
    width: 	41%;
    background: url(../icons/flow.jpg) 50% 0 / cover no-repeat;
}
.faq_container .faq-area {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 70px 60px 40px;
    padding-right: calc((100vw - 1270px) / 2);
    background: #F8F8F8;
}
.faq_container .faq-area h2 {
    color: #464646;
    font:500 30px Roboto Slab, serif;
    margin-bottom: 25px;
}
.faq_container .faq-area .panel-faq {
    margin-bottom: 16px;
    border: 0;
    padding: 16px 24px;
    border-radius: 0;
}
.faq_container .faq-area .panel-title a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    text-decoration: none;
    color: #464646;
    font:500 16px Roboto Slab, serif;
    max-width: calc(100% - 20px);
    transition:all .3s ease;
}
.faq_container .faq-area .panel-title a:hover {
    color:#48B0B8;
}
.faq_container .faq-area .panel-title a span {
    max-width: calc(100% - 20px);
}
.faq_container .faq-area .panel-title a svg {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all .3s linear;
    transition: all .3s linear;
}
.faq_container .faq-area .panel-title a.collapsed svg {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}
.faq_container .faq-area .panel-body {
    font: 400 14px/1.4 Lato, sans-serif;
    color: #464646;
}
#tm-newsletter {
    display: block;
    position: relative;
    width: 100vw;
    margin-top: 90px;
    left: 50%;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
    margin-bottom: -2px;
}
#tm-newsletter:after {
    content:"";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: #7A675D;
    z-index: -1;
}
#tm-newsletter #tm-newsletter-form {
    max-width: 1240px;
    padding: 50px;
    width: 90%;
    margin: 0 auto;
    background: url(../icons/texture_large.svg) 50% / cover no-repeat,#F8F8F8;
}
#tm-newsletter #tm-newsletter-form .box-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}
#tm-newsletter #tm-newsletter-form .box-content .newsletter-description {
    text-align: center;
    font:500 26px/1.4em Roboto slab, serif;
    color:#464646;
    max-width: 80%;
}
#tm-newsletter #tm-newsletter-form .tm-login-form {
    margin: 40px 0 50px;
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
#tm-newsletter #tm-newsletter-form .tm-login-form input {
    padding: 13px 20px;
    color:#464646cc;
    font:600 22px/1.4em Lato, sans-serif;
    height: auto;
    border: 0;
    background: transparent;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 1.6px solid #A2887A;
    width: auto;
}
#tm-newsletter #tm-newsletter-form .tm-login-form input::-webkit-input-placeholder {
    color:#464646cc;
    font:600 22px/1.4em Lato, sans-serif;
}
#tm-newsletter #tm-newsletter-form .tm-login-form input::-moz-placeholder {
    color:#464646cc;
    font:600 22px/1.4em Lato, sans-serif;
}
#tm-newsletter #tm-newsletter-form .tm-login-form input:-ms-input-placeholder {
    color:#464646cc;
    font:600 22px/1.4em Lato, sans-serif;
}
#tm-newsletter #tm-newsletter-form .tm-login-form input::-ms-input-placeholder {
    color:#464646cc;
    font:600 22px/1.4em Lato, sans-serif;
}
#tm-newsletter #tm-newsletter-form .tm-login-form input::placeholder {
    color:#464646cc;
    font:600 22px/1.4em Lato, sans-serif;
}
#tm-newsletter #tm-newsletter-form .btn-primary {
    color:#fff;
    background: #a2887a;
    padding: 17px 67px;
    font:500 20px/1.3em Roboto Slab, serif;
    border:0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
#tm-newsletter #tm-newsletter-form .newsletter-error {
    margin-top: 7px;
    color:red;
    position: absolute;
    bottom: -20px;
    width: 100%;
    text-align: center;
}
.command {
    padding: 70px 0 60px;
}
.command h2 {
    text-align: center;
    color:#464646;
    font:500 30px Roboto Slab, serif;
}
.command .descr {
    text-align: center;
    color:#464646;
    font:400 16px/1.4 Lato, sans-serif;
    margin: 16px auto 32px;
    max-width: 70%;
}
.command .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.command .items .item:not(:last-child) {
    margin-right: 24px;
}
.command .items .item {
    padding: 0 32px 40px;
    position: relative;
}
.command .items .item:before {
    content:"";
    position: absolute;
    display: block;
    left: 0;
    bottom: 0;
    right: 0;
    height: calc(100% - 50px);
    background: #F8F8F8;
    z-index: -1;
}
.command .items .item img {
    border-radius: 50%;
    max-width: 80%;
    margin: 0 auto;
}
.command .items .item .title {
    margin: 24px 0 32px;
    color:#464646;
    font:500 24px/1.1 Roboto Slab, serif;
}
.command .items .item .contact {
    border:2px solid #A2887A;
    color:#A2887A;
    padding: 16px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    font:500 18px/1 Roboto Slab, serif;
    transition:all .3s ease;
}
.command .items .item .contact:hover {
    background: #A2887A;
    color: #fff;
}
.command .cpbg {
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.3);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 2147483649;
    cursor: pointer;
}
.command .cpbg.active {
    opacity: 1;
    visibility: visible;
}
.command .contact_popup {
    position: fixed;
    background: #fff;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 2147483650;
    padding: 35px 38px 40px;
    border-radius: 12px;
    max-width: 760px;
    width:90%;
}
.command .contact_popup.active {
    opacity: 1;
    visibility: visible;
}
.command .contact_popup .wrap {
    position: relative;
}
.command .contact_popup .wrap .close {
    position: absolute;
    right: 0;
    top: 0;
}
.command .contact_popup .wrap h4 {
    color: #464646;
    font:500 24px Roboto Slab, serif;
    margin-bottom: 35px;
    text-align: center;
}
.command .contact_popup .wrap .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.command .contact_popup .wrap .links a {
    border:2px solid #A2887A;
    padding: 18px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 12px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    max-width: 350px;
    width: 100%;
    text-decoration: none;
}
.command .contact_popup .wrap .links a:hover {
    background: #A2887A;
    color:#fff;
}
.command .contact_popup .wrap .links a svg {
    margin-right: 10px;
    color:#A2887A;
    font:500 18px Roboto Slab, serif;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.command .contact_popup .wrap .links a path {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.command .contact_popup .wrap .links a:hover path:not(.drk) {
    fill: #fff
}
.command .contact_popup .wrap .links a:hover path.drk {
    fill: #A2887A
}
.html-module.expert_contacts {
    display: none;
}
.max-cont {
    overflow: hidden;
    max-height: 8em;
    position: relative;
}
.max-cont:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(30%, #fff), to(#fff3));
    background: linear-gradient(to top, #fff 30%, #fff3);
    height: 30%;
}
.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 25px 0 20px;
}
.breadcrumb>li+li {
    margin-left: 10px;
}
.breadcrumb>li a {
    color:#464646;
    font:400 14px/17px Lato, sans-serif;
}
.breadcrumb>li span {
    color:#A2A2A2!important;
    font:400 14px/17px Lato, sans-serif;
}
.breadcrumb>li+li:before {
    border: solid #464646;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(
            -45deg
    );
    -webkit-transform: rotate(
            -45deg
    );
    content: "";
    margin-right: 12px;
    position: relative;
    top:-1;
}
.categories_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.categories_list a {
    padding: 10px 25px;
    border-radius: 4px;
    background: #F8F8F8;
    color:#464646;
    font:400 16px/1.5 Lato, sans-serif;
    margin-bottom: 12px;
    transition:all .3s ease;
}




/*.categories_list a.category_id_83,*/
/*.categories_list a.category_id_84 {*/
/*	background: #facf9d;*/
/*}*/
/*.categories_list a.category_id_83:hover,*/
/*.categories_list a.category_id_84:hover {*/
/*	background: #ffba6a;*/
/*}*/




.categories_list a.category_id_9,
.categories_list a.category_id_24,
.categories_list a.category_id_84 {
    background: #facf9d;
}
.categories_list a.category_id_9:hover,
.categories_list a.category_id_24:hover,
.categories_list a.category_id_84:hover {
    background: #ffba6a;
}



.categories_list a:hover {
    background: #F2F0F0;
}
.categories_list a.active,
.categories_list a.active.category_id_83,
.categories_list a.active.category_id_84 {
    color:#fff;
    background: #A2887A;
}
.categories_list a:not(:last-child) {
    margin-right: 16px;
}
.product-block .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.product-block .items .product-layout {
    margin-right: 24px;
    margin-bottom: 24px;
    width: calc(100% / 4 - 18px);
    border:0.6px solid rgba(0, 0, 0, 0.06);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /*overflow: hidden;*/
}
.product-block .items .product-layout:nth-of-type(4n) {
    margin-right: 0;
}
.product-block .items .product-layout .product-thumb {
    width: 100%;
    max-height: 292px;
    position: relative;
}
.product-block .items .product-layout .product-thumb .lazy-loaded {
    padding-bottom: 0 !important;
}
.product-block .items .product-layout .product-thumb .labels {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 12px;
    left: -12px;
    align-items: flex-start;
    display: none;
}
.row-shipping_field24 {
}
.row-shipping_field24 .radio {
    margin-top: 0;
    margin-bottom: 10px;
}
.simplecheckout-block-content .required label {
    position: relative;
}
.simplecheckout-block-content .required label:after {
    content:"*";
    color: red
}
.ocfilter-option label {
    text-transform: lowercase;
}
#option-10003.ocfilter-option label,#option-10008.ocfilter-option label {
    text-transform: none;
}
.product-block .items .product-layout .product-thumb .labels .label_item {
    color:#fff;
    font-size: 14px;
    background: #a2887a;
    padding: 5px 15px;
    line-height: 1;
    margin-bottom: 5px;
    letter-spacing: 1px;
    font-weight: 100;
}
.product-block .items .product-layout .product-thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.product-block .items .product-layout .caption {
    padding: 16px 25px 20px;
    -webkit-box-flex:1;
    -ms-flex:1;
    flex:1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #f8f8f8;
    z-index: 5;
}
.product-block .items .product-layout .caption .name {
    -webkit-box-flex:1;
    -ms-flex:1;
    flex:1;
}
.product-block .items .product-layout .caption .name a {
    font: 500 16px/1.5 Lato, sans-serif;
    color:#464646;
}
.product-block .items .product-layout .caption .double {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.product-block .items .product-layout .caption .double .price {
    color:#464646;
    font: 600 22px/1.5 Lato, sans-serif;
    white-space: nowrap;
}
.product-block .items .product-layout .caption .double .butts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.product-block .items .product-layout .caption .double .butts button {
    background: transparent;
    border:0;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.product-block .items .product-layout .caption .double .butts button.product_cart:before{
    content: url("/image/cart.svg");
    position: relative;
    width: 24px;
    height: 23px;
}
.product-block .items .product-layout .caption .double .butts button.product_cart:hover{
    transition: 300ms All;
}
.product-block .items .product-layout .caption .double .butts button:hover.product_cart:before{
    content: url("/image/cart_white.svg");
    position: relative;
    width: 24px;
    height: 23px;
}
.product-block .items .product-layout .caption .double .butts button.product_cart:hover{
    background: #A2887A;
    color:#fff;
}
.product-block .items .product-layout .caption .double .butts button.inactive {
    opacity: 0.3;
}
.product-block .items .product-layout .caption .double .butts button .inner {
    opacity: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.product-block .items .product-layout .caption .double .butts button.added .inner {
    opacity: 1;
}
.product-block .items .product-layout .caption .double .butts button .outer {

}
.description-category h1 {
    text-align: center;
    font:500 24px Roboto Slab, serif;
    margin-top: 15px;
}
.sp h1,.checkout-simplecheckout h1 {
    font:500 24px Roboto Slab, serif;
    margin-bottom: 15px;
}
.search_in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}
.search_in input[name="search"] {
    border:0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 1px solid #464646;
    height: auto;
    margin-right: 20px;
    width: auto;
    border-radius: 0;
}
.search_in input#button-search {
    background: #A2887A;
    color: #fff;
    text-align: center;
    padding: 7px 60px;
    border: 0;
    border-radius: 0;
}
.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.pagination li:not(:first-child) {
    margin-left: 8px;
}
.pagination li a {
    border:0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color:#464646;
    font:400 18px Lato, sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 40px;
    border-radius: 0;
    height: 40px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.pagination li.active span {
    border:0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color:#fff;
    border-radius: 0;
    background: #A2887A;
    font:500 18px Lato, sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: 40px;
    height: 40px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.pagination li.active a:hover {
    background: #f8f6f5;
}
.product-gallery .bx-wrapper{
    position: relative;
}
.product-gallery .bx-wrapper .bx-viewport{
    z-index: 1;
}
.product-gallery .bx-controls {
    display: none;
}
.product-gallery .has_image_control .bx-controls  {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.product-gallery .bx-controls .bx-prev,
.product-gallery .bx-controls .bx-next {
    position: absolute;
    width: 30px;
    height: 40px;
    left: 40px;
    font-size: 28px;
    transform: rotate(90deg);
    background-color: rgba(40, 50, 60, 0.6) !important;
    color: #ffffff !important;
    z-index: 2;
}
.product-gallery .bx-controls .bx-prev{
    top: -4px;
}
.product-gallery .bx-controls .bx-next{
    bottom: -4px;
}
.product-gallery .bx-controls .bx-prev:hover,
.product-gallery .bx-controls .bx-next:hover {
    background-color: #A2887A !important;
    color: #ffffff !important;
}
.product-gallery .bx-controls .bx-prev .fa-angle-left{
    margin: 6px;
    margin-left: 10px;
}
.product-gallery .bx-controls .bx-next .fa-angle-right{
    margin: 6px;
    margin-left: 10px;
}
@media screen and (max-width: 1024px) {
    .product-gallery .bx-controls .bx-prev,
    .product-gallery .bx-controls .bx-next {
        transform: rotate(0deg);
        top:30px;
    }
    .product-gallery .bx-controls .bx-prev{
        left: 0px;
    }
    .product-gallery .bx-controls .bx-next{
        right:0px;
        left:inherit
    }
}
@media screen and (max-width: 480px) {
    .product-gallery .bx-controls .bx-prev,
    .product-gallery .bx-controls .bx-next{
        width: 20px;
        height: 30px;
        top:6px;
        font-size: 20px;
    }
    .product-gallery .bx-controls .bx-prev{
        left: -20px;
    }
    .product-gallery .bx-controls .bx-prev .fa-angle-left {
        margin: 5px;
        margin-left: 6px;
    }
    .product-gallery .bx-controls .bx-next{
        right:-20px;
        left:inherit
    }
    .product-gallery .bx-controls .bx-next .fa-angle-right {
        margin: 5px;
        margin-left: 8px;
    }
}
.product-gallery-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 15px;
}
.product-gallery-block .product_page-left {
    width: 40%;
}
.product-gallery-block .product_page-left .product-gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}
.product-gallery-block .product_page-left .product-gallery .image-thumb {
    margin-right: 13px;
}
.product-gallery-block .product_page-left .product-gallery .image-thumb #productGallery{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
/*.product-gallery-block .product_page-left .product-gallery .image-thumb .bx-viewport {*/
/*	overflow-y: auto !important;*/
/*}*/
.bx-wrapper .bx-viewport::-webkit-scrollbar-track {    background: rgba(242, 242, 242, 1);}
.bx-wrapper .bx-viewport::-webkit-scrollbar {   width: 5px;}
.bx-wrapper .bx-viewport::-webkit-scrollbar-thumb {    background: rgba(204,204,205,1);
    border-style: none;
    border-radius: 0px;}
.bx-wrapper .bx-viewport .productGallery li{
    margin-right:10px;
}
.product-gallery-block .product_page-left .product-gallery .m_img img {
    width: 100%;
    height: auto;
}
.product-gallery-block .product_page-right {
    width: calc(60%  - 30px);
}
.min_check_lay {
    background: #F8F6F5;
    border: 1px solid #A2887A;
    border-radius: 4px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 12px 16px;
    margin-bottom: 20px;
}
.min_check_lay .wrap {
    color:#A2887A;
    font:500 16px/1.5 Lato, sans-serif;
}
.product_page-right h1 {
    color:#464646;
    font:400 30px/1 Roboto Slab, serif;
    margin-bottom: 15px;
}
.product-rating-status {
    margin-bottom: 25px;
}
.product-rating-status .material-icons-star:before,
.product-rating-status .material-icons-star_half:before,
.info_order_pan .material-icons-star:before {
    color:rgba(144, 154, 170, 0.3);
}
.product-rating-status .material-icons-star.star:before,
.product-rating-status .material-icons-star_half.star:before,
.info_order_pan .material-icons-star.star:before {
    color:#FFBF46;
}
.product-rating-status .fa-stack,
.info_order_pan .fa-stack {
    width: 1em;
}
.product-rating-status .review-link,
.info_order_pan .review-link {
    margin-left: 12px;
}
.product-rating-status .review-link a,
.info_order_pan .review-link a {
    font:500 14px/1.5 Lato, sans-serif;
    color:#48B0B8!important;
}
.info_order_pan .review-link a{
    text-decoration: underline !important;
}
.info_order_pan .review-link a:hover{
    text-decoration: none !important;
}
.product_page-right .double {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.product_page-right .double .st {
    border-radius: 4px;
    padding: 8px 15px;
    color:#48B0B8;
    font:700 14px/1.3 Lato, sans-serif;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.product_page-right .double .st i {
    margin-right: 7px;
    width: 15px;
    height: 15px;
    background: #48B0B8;
    color:#fff;
    border-radius: 50%;
    text-align: center;
    font-size: 9px;
    line-height: 15px;
}
.mtn {
    font-size: 12px;
    text-align: center;
    max-width: 90%;
    margin: 15px auto 0;
    color: #fff;
    opacity: 0.6;
}
.product_page-right .double .stock {
    background: rgba(72, 176, 184, 0.12);
}
.product_page-right .double .out-stock {
    background: #F8F6F5;
    /*color:#ff999a;*/
    /*background: #ab0000;*/
    color: #A2A2A2;
}
.product_page-right .double .out-stock svg {
    margin-right: 7px;
}
.product_page-right .double .st.out-stock i {
    background: #A2887A;
}
.product_page-right .double .reward {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border:1px solid #A2887A;
    border-radius: 4px;
}
.product_page-right .double .reward .info {
    padding: 8px 10px;
    color:#A2887A;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font:600 14px/1 Lato,sans-serif;
}
.product_page-right .double .reward .info svg {
    margin-right: 6px;
}
.product_page-right .double .reward .more {
    background: #A2887A;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 17px;
    padding-left: 17px;
    font:600 14px/1 Lato,sans-serif;
}
.product_page-right .sku {
    margin: 25px 0 17px;
    color:#464646;
    font:bold 18px/1.5 Lato, sans-serif;
}
.product_page-right .sku b {
    color:#A2887A;
    margin-left: 4px;
}
#tab-description {
    padding: 10px 0;
    line-height: 1.3em;
}
#tab-description p, #tab-description div {
    color:#464646;
    font:400 14px/1.6 Lato, sans-serif;
    margin-bottom: 15px;
}
#tab-description br {
    content:" ";
    display: block;
    margin-bottom: 10px;
}
.rtbg {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2147483649;
    background: #0009;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
}
.rtbg.active {
    opacity: 1;
    visibility: visible;
}
.product-reviews-tab {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    background: #fff;
    border-radius: 12px;
    padding: 35px 32px;
    max-width: 780px;
    width: 95%;
    z-index: 2147483650;
}
.cerbg {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2147483649;
    background: #0009;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
}
.cerbg.active {
    opacity: 1;
    visibility: visible;
}
.tab-certificate {
    display: none;
    position: fixed;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 15px 15px;
    max-width: 780px;
    width: 95%;
    height: auto;
    max-height: 95%;
    z-index: 2147483650;
    text-align: center;
    overflow: auto;
}
.tab-certificate img.img-certificate {;
    width: 100%;
}
.tab-certificate.ative {
    display: block;
}
.in_product_butts {
    padding: 0 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 10px;
}
.in_product_butts .price-new {
    color:#464646;
    font:600 34px/1 Lato, sans-serif;
}
.in_product_butts .price-old {
    font:600 24px/1 Lato, sans-serif;
    margin-left: 10px;
    text-decoration: line-through;
    color: #979797;
}
.price.price-product .price-old{
    font:600 20px/1 Lato, sans-serif;
    margin-left: 10px;
    text-decoration: line-through;
    color: #979797;
}
.in_product_butts .butts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.in_product_butts .butts button {
    padding: 16px 38px;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    font:16px/1 Lato, sans-serif;
    border:0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #A2887A;
}
.in_product_butts .butts button svg {
    margin-right: 12px;
}
.in_product_butts .butts button .inner {
    display: none;
}
.in_product_butts .butts button.added .inner {
    display: block;
}
.in_product_butts .butts button.added .sta,.in_product_butts .butts button .added {
    display: none;
}
.in_product_butts .butts button .sta,.in_product_butts .butts button.added .added {
    display: block;
}
.in_product_butts .butts button#button-cart {
    color:#fff;
    background: #A2887A;
    border-radius: 4px;
    font:600 18px/1 Lato, sans-serif;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.in_product_butts .butts button#button-cart.added {
    color:#A2887A;
    background: transparent;
    border:2px solid #A2887A;
}
.in_prod_reviews {
    margin: 30px 0;
    padding: 0 15px;
}
.related-block {
    padding: 0 15px;
}
.in_prod_reviews > .double {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.in_prod_reviews .content {
    margin-top: 25px;
}
.in_prod_reviews .content .review-item {
    background: #f8f8f8;
    padding: 32px 40px;
}
.in_prod_reviews .content .review-item p {
    font:400 16px / 1.5em Lato, sans-serif;
    color:#464646;
    margin-bottom: 16px;
}
.in_prod_reviews .content .review-item .double {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border:1px solid #A2887A;
}
.in_prod_reviews .content .review-item .double img {
    width: 90px;
    height: 90px;
}
.in_prod_reviews .content .review-item .double .cont {
    padding: 12px 12px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex:1;
    -ms-flex:1;
    flex:1;
}
.in_prod_reviews .content .review-item .double .doub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-flex:1;
    -ms-flex:1;
    flex:1;
}
.in_prod_reviews .content .review-item .double .price {
    color:#464646;
    font:600 14px/1.5em Lato, sans-serif;
}
.in_prod_reviews .content .review-item .review-author {
    color:#464646;
    font:bold 20px/1em Lato, sans-serif;
    margin-top: 30px;
}
.in_prod_reviews .content .review-item .date {
    font-size: 14px;
    opacity: 0.5;
    margin-top: 5px;
}

.in_prod_reviews .double h2 {
    font:500 30px Roboto Slab, serif;
    color:#464646;
}
.in_prod_reviews .double .review_leave {
    color:#A2887A;
    font:bold 18px Lato, sans-serif;
    padding: 12px 30px;
    border:1px solid #A2887A;
    border-radius: 3px;
}
.related-block h2 {
    color:#464646;
    font:500 26px Roboto Slab, serif;
    margin-bottom: 32px;
}
.blog_page h1 {
    font:400 30px/1.5 Roboto Slab, sans-serif;
    margin-bottom: 20px;
}
.blog_page .blog_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.blog_page .blog_list .blog_article {
    width: calc(100% / 2 - 20px);
    margin-right: 40px;
    margin-bottom: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.newsblog-article .blog_list .blog_article {
    width: calc(100% / 3 - 20px);
    margin-right: 30px;
    margin-bottom: 32px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.blog_page .blog_list .blog_article:nth-of-type(2n) {
    margin-right: 0;
}
.newsblog-article .blog_list .blog_article:nth-of-type(2n) {
    margin-right: 30px;
}
.newsblog-article .blog_list .blog_article:nth-of-type(3n) {
    margin-right: 0;
}
.blog_page .blog_list .blog_article .caption {
    -webkit-box-flex:1;
    -ms-flex:1;
    flex:1;
    padding: 24px 32px;
    background: #F8F8F8;
}
.blog_page .blog_list .blog_article img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}
.blog_page .blog_list .blog_article .caption .cat {
    font:500 18px/1.5 Lato, sans-serif;
    color:#A2887A;
    margin-bottom: 2px;
}
.blog_page .blog_list .blog_article .caption .title {
    font:500 28px/1.3 Roboto Slab,serif;
    color:#464646;
    margin-bottom: 12px;
}
.blog_page .blog_list .blog_article .caption .descr {
    font:400 16px/1.5 Lato, sans-serif;
    color:#464646;
}
.blog_article_page .article-info {
    max-width: 800px;
    margin: 25px auto 60px;
}
.article-info h1 {
    font:500 40px/1.4 Roboto Slab, serif;
    color:#464646;
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
}
.article-info .article-sub-title {
    font:400 16px/1.4 Roboto Slab, serif;
    color:#464646;
    text-align: center;
    margin: 16px 0 25px;
}
.article-info .article-sub-title span {
    margin: 0 2px 0 5px;
}
.article-info .article-description, .article-info .article-description div, .article-info .article-description p, .article-info .article-description li {
    color:#000000;
    font:400 16px/1.4 Lato, sans-serif;
    margin-bottom: 1em;
}
.article-info .article-description h2 {
    font-size: 20px;
    color:#000000;
    margin-bottom: 10px;
    font-weight: bold;
}
.article-info .article-description h3 {
    font-size: 18px;
    color:#000000;
    margin-bottom: 10px;
    font-weight: 500;
}
.article-info .article-description br {
    content:" ";
    display: block;
    margin-bottom: 1em;
}
.article-info .article-description img {
    margin: 10px 0 25px;
}
.article-info .article-description ul {
    list-style-type: disc;
    padding-left: 25px;
}
.article-info .article-description ol {
    list-style-type: auto;
    padding-left: 25px;
}
.article-info .article-description b, .article-info .article-description strong {
    font-weight: bold;
}
.article-info .article-description em, .article-info .article-description i {
    font-style: italic;
}
.land_hero {
    position: relative;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.land_hero .bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
.land_hero .bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.land_hero .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.land_hero .container .wrap {
    position: relative;
    max-width: 45%;
    padding: 70px 60px 70px 50px
}
.land_hero .container .wrap:before {
    content:"";
    position: absolute;
    right: 0;
    top:0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);

    -webkit-backdrop-filter: blur(px);
    backdrop-filter: blur(px);
    width: 50vw;
    z-index: -1;
}
.land_hero .container .wrap:after {
    content:"";
    position: absolute;
    right: 0;
    top:0;
    bottom: 0;
    background: url(../icons/texture_large.svg) 50% / cover no-repeat;
    width: 50vw;
    z-index: -1;
}
.land_hero .container .wrap .big-toptext1 h1 {
    color:#fff;
    font:bold 42px/1em Lato, sans-serif;
    margin-bottom: 20px;
}
.land_hero .container .wrap .big-toptext3 p {
    color:#fff;
    font:400 16px/1.6em Lato, sans-serif;
}
.land_hero .container .mouse {
    width: 32px;
    height: 50px;
    border:1px solid #fff;
    border-radius: 32px;
    display: block;
    position: relative;
    margin-top: 40px;
}
.land_hero .container .mouse:before {
    position: absolute;
    display: block;
    width: 3px;
    height: 9px;
    border-radius: 3px;
    content:"";
    left: 50%;
    top:10px;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    background: #fff;
    -webkit-animation: 1.3s scroll infinite;
    animation: 1.3s scroll infinite;
}
.land_hero .container .mouse svg {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
    -webkit-animation: 1.3s scroll infinite;
    animation: 1.3s scroll infinite;
}
@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(-50%, 10px);
        transform: translate(-50%, 10px);
        opacity: 0;
    }
}
@keyframes scroll {
    0% {
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(-50%, 10px);
        transform: translate(-50%, 10px);
        opacity: 0;
    }
}
.fish_box.lands {
    background: #f8f8f8;
}
.fish_box.lands .container {
    position: relative;
}
.fish_box.lands .container > .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.fish_box.lands .container:nth-of-type(even) > .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.fish_box.lands .container:nth-of-type(1):before, .fish_box.lands .container:last-child:before {
    content:"";
    position: absolute;
    display: block;
    height: 100%;
    left: 50%;
    z-index: 0;
    width: 100vw;
    -webkit-transform: translate(-50%,0);
    transform: translate(-50%,0);
    background: #7A675D;
}
.fish_box.lands .container:nth-of-type(1) {
    margin-bottom: 150px;
}
.fish_box.lands .container:nth-of-type(odd) .img {
    position: relative;
    left: -120px;
    top: 70px;
}
.fish_box.lands .container:not(:nth-of-type(1)) .img {
    max-width: 570px;
}
.fish_box.lands .container:not(:nth-of-type(1)) .img img {
    width: 100%;
}
.fish_box.lands .container:not(:nth-of-type(1)) .content {
    max-width: 43.3%;
}
.fish_box.lands .container .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
}
.fish_box.lands .container:nth-of-type(1) .content:before, .fish_box.lands .container:last-child .content:before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 70px;
    width: 50vw;
    height: 100%;
    background: url(../icons/logo_bg.svg) -100% 50% / contain no-repeat;
    opacity: 1;
    z-index: 0;
}
.bgfon-text {
    position: relative;
}
.fish_box.lands .container:last-child .content:before {
    background: url(../icons/logo_bg.svg) -30% 50% / contain no-repeat;
}
.fish_box.lands .container:last-child .content .fish-smtext, .fish_box.lands .container:last-child .content .fish-smtext p {
    color:#fff;
    font: 500 24px/1.4em Lato, sans-serif;
}
.fish_box.lands .container:nth-of-type(1) .content .bigtitle, .fish_box.lands .container:last-child .content .bigtitle {
    position: relative;
    color: #fff;
    font: 700 32px/1.3em Lato, sans-serif;
    margin-bottom: 25px;
}
.fish_box.lands .container .content .bigtitle {
    color: #464646;
    font: 600 24px/1.5em Lato, sans-serif;
    margin-bottom: 40px;
}
.fish_box.lands .container:nth-of-type(1) .content .bigtitle:before {
    content:"";
    background: url(../icons/logo_mob_white.svg) 50% / contain no-repeat;
    width: 100px;
    height: 70px;
    margin-bottom: 	35px;
    display: block;
}
.fish_box.lands .container:nth-of-type(1) .content .fish-smtext,.fish_box.lands .container:nth-of-type(1) .content .fish-smtext p {
    color: #fff;
    font: 400 24px/1.5em Lato, sans-serif;
}
.fish_box.lands .container .content .fish-smtext,.fish_box.lands .container .content .fish-smtext p {
    color: #464646;
    font: 400 20px/1.5em Lato, sans-serif;
}
.colorcustom.bigblock {
    position: relative;
    min-height: 750px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.colorcustom.bigblock .bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.colorcustom.bigblock .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.colorcustom.bigblock .bg img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.colorcustom.bigblock .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
}
.colorcustom.bigblock .row .middletext, .colorcustom.bigblock .row .middletext p {
    color: #ffffff;
    font: 300 24px/1.5em Lato, sans-serif;
}
.colorcustom.bigblock .row .middletext .btn {
    background: #a58c7e;
    color: #fff;
    margin: 10px 0
}
.colorcustom.bigblock .row .middletext:before {
    content:"";
    background: url(../icons/logo_mob_white.svg) 50% / contain no-repeat;
    width: 100px;
    height: 70px;
    margin: 0 auto 40px;
    display: block;
}
.colorcustom.bigblock .row .middletext {
    margin-bottom: 30px;
}
.colorcustom.bigblock .row .bottom-text, .colorcustom.bigblock .row .bottom-text p {
    color:#ffffff;
    font:700 32px/1.5em Lato, sans-serif;
}
.colorcustom.bigblock .row .bottom-text {
    margin-bottom: 80px;
}
.colorcustom.bigblock .row .to_cat {
    padding: 17px 38px;
    background: #A2887A;
    color:#fff;
    font:500 20px/1.3em Roboto Slab, serif;
    border:1px solid #A2887A;
    transition:all .3s ease;
}
.colorcustom.bigblock .row .to_cat:hover {
    background: transparent;
    color:#fff;
    transition:all .3s ease;
}
.bigblock.coloradv {
    padding: 80px 0;
    background: url(../icons/texture_large.svg) 50% / cover no-repeat,#F8F8F8;
}
.bigblock.coloradv .bigtitle {
    color:#464646;
    font:500 32px/1.5em Roboto Slab, serif;
    margin-bottom: 40px;
    text-align: center;
}
.bigblock.coloradv .fish_zxc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.bigblock.coloradv .fish_zxc .item:not(:last-child) {
    margin-right: 130px;
}
.bigblock.coloradv .fish_zxc .item .b {
    color:#A2887A;
    font:bold 30px / 1 Roboto Slab, serif;
    letter-spacing: 0.02em;
    margin-bottom: 10px;
}
.bigblock.coloradv .fish_zxc .item .sm {
    color:#A2A2A2;
    font:400 16px / 1.5em Lato, sans-serif;
}
.land_hero.forrest .container .wrap {
    width: 100%;
    max-width: 100%;
    padding: 0;
}
.land_hero.forrest .container .wrap:before {
    display: none;
}
.land_hero.forrest .container .wrap .big-toptext1 h1 {
    font:500 100px/1.6em Roboto Slab, serif;
    text-align: center;
}
.land_hero.forrest .container .wrap .big-toptext3 {
    font:500 24px Lato, sans-serif;
    text-align: center;
    color:#fff;
}
.colorcustom.bigblock.forrest {
    min-height: auto;
}
.colorcustom.bigblock.forrest .container {
    margin-top: -50px;
    background: url(../icons/texture_large.svg) 50% / cover no-repeat,#F8F8F8;
    padding: 50px 60px 10px;
}
.colorcustom.bigblock.forrest .row .middletext:before {
    display: none;
}
.colorcustom.bigblock.forrest .row .bottom-text {
    text-align: left;
    color:#464646;
    font:500 32px Roboto Slab, serif;
    margin-bottom: 20px;
    -ms-flex-item-align: start;
    align-self: flex-start;
}
.colorcustom.bigblock.forrest .row .middletext, .colorcustom.bigblock.forrest .row .middletext div {
    margin-bottom: 0;
    font:500 18px/1.6em Lato, sans-serif;
    color:#464646;
    -ms-flex-item-align: start;
    align-self: flex-start;
    text-align: left;
}
.colorcustom.bigblock.forrest .row .middletext div {
    margin-bottom: 7px;
}
.colorcustom.bigblock.forrest .row .middletext b {
    font-weight: bold;
}
.colorcustom.bigblock.forrest .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding-left: 15px;
    padding-right: 15px;
}
.colorcustom.bigblock.forrest .row .img {
    margin-right: -140px;
    bottom: -10px;
    position: relative;
    z-index: 1;
}
.fish_box.forrest {
    background: transparent;
    margin-top: 80px;
    margin-bottom: 50px;
}
#menu3.forrest {
    padding: 110px 0 100px;
}
.fish_box.forrest h2 {
    color: #464646;
    font:500 32px/1.4em Roboto Slab, serif;
    text-align: center;
    max-width: 95%;
    margin: 0 auto 40px;
    counter-reset: heading;
}
.fish_box.forrest .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.fish_box.forrest .container:nth-of-type(even) .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}
.fish_box.forrest .container .row > div {
    width: 50%;
}
.fish_box.forrest .container .row > div img {
    max-width: 100%;
    width: 100%;
    height: 100%;
}
.fish_box.forrest .container .row .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

}
.fish_box.forrest .container .row .content .bgfon-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 30px 30px 30px 90px;
}
.fish_box.forrest .container:nth-of-type(even) .row .content .bgfon-text {
    padding-left: 70px;
}
.fish_box.forrest .container .bigtitle {
    color:#464646;
    font:500 24px/1.6em Lato, sans-serif;
    margin-bottom: 15px;
    position: relative;
}
.fish_box.forrest .container .bigtitle:before {
    counter-increment: heading;
    content: counter(heading) ".";
    color:#A2887A;
    font:700 26px/1.6em Lato, sans-serif;
    position: absolute;
    right:calc(100% + 8px);
}
.fish_box.forrest .container .fish-smtext, .fish_box.forrest .container .fish-smtext p {
    color:#464646;
    font:400 18px/1.6em Lato, sans-serif;
}
.bigblock.forrest {
    /*padding: 100px 0 110px;*/
    position: relative;
    /*margin-top: 50px;*/
}
.bigblock.forrest .bg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.bigblock.forrest .bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.bigblock.forrest .items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
}
.bigblock.forrest .items .item {
    width: calc(100% / 3 - 16px);
    padding: 45px 40px;
    position: relative;
}
.bigblock.forrest .items .item:before {
    content:"";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    z-index: -1;
}
.bigblock.forrest .items .item:after {
    content:"";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: url(../icons/texture_large.svg) 50% / cover no-repeat;
    z-index: -1;
}
.bigblock.forrest .zxc-img, .bigblock.forrest .zxc-img img {
    max-height: 60px;
    height: 60px;
}
.bigblock.forrest .zxc-text {
    margin-top: 20px;
    color:#fff;
    font:400 20px/1.6em Lato, sans-serif;
}
.bigblock.forrest .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.bigblock.forrest .more {
    padding: 22px 32px;
    color:#fff;
    font:500 20px/1.3em Roboto Slab, serif;
    position: relative;
    margin-top: 60px;
}
.bigblock.forrest .more:before {
    content:"";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(32px);
    backdrop-filter: blur(32px);
    -webkit-filter: blur(32px);
    filter: blur(32px);
    left: 0;
    top: 0;
    z-index: -1;
}
.contacts_page {
    position: relative;
    min-height: 650px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.sbOptions {
    margin-top: 10px;
}
.sbOptions li {
    padding: 5px 0;
}
.sbOptions li:not(:last-child) {
    border-bottom: 1px solid #ccc;
}
.contacts_page .top {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.contacts_page .top .map {
    width: 100%;
    height: 100%;
}
.contacts_page .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.contacts_page .container form {
    background: #fff;
    padding: 50px 50px 80px;
    z-index: 1;
    margin-bottom: -37px;
    min-width: 520px;
}
.contacts_page .container form h1 {
    color:#464646;
    font:500 30px/1.2em Roboto Slab, serif;
    margin-bottom: 32px;
}
.contacts_page .container form .form-group {
    margin-bottom: 40px;
}
.contacts_page .container form .form-group input {
    padding: 12px 0;
    border:0;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none!important;
    border-bottom: 1px solid #A2887A;
}
.contacts_page .container form .form-group textarea {
    padding: 12px 0;
    border:0;
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: none!important;
    border-bottom: 1px solid #A2887A;
    width: 100%;
}
.contacts_page .container form .buttons input {
    display: block;
    width: 100%;
    background: #a2887a;
    color:#fff;
    font:500 18px Roboto Slab, serif;
    padding: 16px 30px;
    border:0;
    border-radius: 0;
}
.simplecheckout-cart td, .simplecheckout-cart tr, .simplecheckout-cart,.simplecheckout-cart-total {
    border: 0 !important;
}
.simplecheckout-cart td.image a {
    display: block;
}
.simplecheckout-cart .btn-primary:after {
    display: none;
}
.simplecheckout-cart th {
    background-color: transparent !important;
    color: #ffffff !important;
}
.simplecheckout-button-block {
    margin-top: 15px;
}
.simplecheckout-button-block .button {
    max-width: 345px;
}
.simplecheckout-button-block a {
    color:#fff!important;
}
#simplecheckout_button_confirm{
    color: #000;
    font-weight: bold;
    font-size: 18px;
}

.simple-content {
    margin: 0;
}
.simplecheckout-cart tr:nth-of-type(2n) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1)!important;
}
.simplecheckout-cart td {
    vertical-align: middle;
}
.simplecheckout-cart td.quantity .input-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.simplecheckout-cart td.quantity .input-group span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.simplecheckout-cart td.quantity .input-group span button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-shadow: none;
    box-shadow: none;
    border:0;
    background: transparent;
}
.simplecheckout-cart-total-remove {
    display: none;
}
.simplecheckout-cart .price_quant{
    display: flex;
    flex-direction: column;
}
.simplecheckout-cart .price_quant .product_discount{
    color: #464646;
    font: 400 14px Lato, sans-serif;
    margin-bottom: 5px;
}
.simplecheckout-cart td.quantity input {
    width: 40px;
    text-align: center;
    color: #464646;
    font: 400 14px Lato, sans-serif;
    border: 0;
    background: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}
.simplecheckout-cart td.quantity .ttl {
    color:#464646;
    font:400 12px / 1.3em Lato, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 13px 0 20px;
}
.simplecheckout-cart td.name a {
    color:#A2887A;
    font:500 12px/1.5em Lato, sans-serif;
}
.simplecheckout-cart td.name {
    vertical-align: bottom;
}
#simplecheckout_cart .ref_cont {
    margin: 24px 0;
    position: relative;
    display: flex;
    align-items: center;
}
.row-customer_field25 {
    display: none !important;
}
#simplecheckout_cart .ref_cont .ref_helper {
    position: absolute;
    bottom: calc(100% + 7px);
    width: 100%;
    right:-70px;
    padding: 10px 12px;
    background: #F8F6F5;
    border-radius: 6px;
    color:#464646;
    font:400 14px /1.3em Lato, sans-serif;
    opacity: 0;
    visibility: hidden;
    transform: translate(-30px,30px);
    transition: all .3s ease;
}
#simplecheckout_cart .ref_cont .ref_helper.active {
    opacity: 1;
    visibility: visible;
    transform: translate(0,0);
}
#simplecheckout_cart .ref_cont .ref_helper a {
    color:#48B0B8;
    font-weight: 600;
}
#simplecheckout_cart .ref_cont #ref_check,
#customer_register,
#customer_field28_0 {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
#simplecheckout_cart .ref_cont #ref_check+label,
.row-customer_register .checkbox label,
.row-customer_field28 .checkbox label {
    position: relative;
    color:#464646;
    font:400 14px / 1.5em Lato, sans-serif;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.row-customer_field28 .checkbox label {
    padding-left: 25px;
    color: #464646;
    font: 400 16px Lato, sans-serif;
}
#simplecheckout_cart .ref_cont #ref_check+label span {
    margin: 0 4px;
}
/*#simplecheckout_cart .ref_cont #ref_check+label::before,*/
/*.row-customer_register .checkbox label::before,*/
/*.row-customer_field28 .checkbox label::before {*/
/*	content: '';*/
/*	display: inline-block;*/
/*	width: 18px;*/
/*	height: 18px;*/
/*	flex-shrink: 0;*/
/*	flex-grow: 0;*/
/*	border: 1px solid rgba(0, 0, 0, 0.2);*/
/*	border-radius: 0.25em;*/
/*	margin-right: 0.5em;*/
/*	background-repeat: no-repeat;*/
/*	background-position: 50%;*/
/*	background-size: 80%;*/
/*}*/
.simplecheckout-block .radio{
    max-width: calc(100% / 12 * 8);
    margin: 0;
    padding: 16px 18px;
    border: 1px solid #A2887A;
    border-radius: 12px;
    margin-bottom: 20px;
}
#simplecheckout_shipping .checkout-heading.panel-heading {
    margin-bottom: 32px;
}
.simplecheckout-block .radio > label {
    position: relative;
    color: #464646;
    padding-left: 0;
    font: 400 18px Lato, sans-serif;
}
.simplecheckout-block .radio > label::before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    flex-grow: 0;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    margin-right: 0.5em;
    transform: translate(0px, 2px);
    background-repeat: no-repeat;
    background-position: 50%;
}
.simplecheckout-block .radio > label.checked::after {
    content: "";
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    flex-grow: 0;
    border-radius: 50%;
    transform: translate(0px, 2px);
    position: absolute;
    background: #a2887a;
    left: 4px;
    top: 4px;
}
#simplecheckout_shipping .simplecheckout-block-content {
    padding: 0;
    margin-bottom: 15px;
}

/*.row-customer_register .checkbox label::before,*/
/*.row-customer_field28 .checkbox label::before {*/
/*	position: absolute;*/
/*	left: -2px;*/
/*	top: 2px;*/
/*}*/
/*.row-customer_register > div + label::before {*/
/*	position: absolute;*/
/*	left: -12px;*/
/*	top:8px;*/
/*}*/
/*#simplecheckout_cart .ref_cont #ref_check:checked+label::before,*/
/*.row-customer_register .checkbox label.checked::before,*/
/*.row-customer_field28 .checkbox label.checked::before {*/
/*	border-color: #A2887A;*/
/*	background-color: #A2887A;*/
/*	background-image: url("../icons/check.svg");*/
/*}*/
.basket__row .links-text::before {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 20px;
    height: 20px;
    border: 1px solid #a2887a;
    border-radius: 2px;
}
.basket__row #customer_register:checked + .links-text::before,
.basket__row #customer_field28_0:checked + .links-text::before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border: 3px solid;
    height: 10px;
    border-color: #a2887a;
    border-top-style: none;
    border-right-style: none;
}


body:not(.account-simpleregister):not(.checkout-simplecheckout) .bootstrap-datetimepicker-widget table,
body:not(.account-simpleregister):not(.checkout-simplecheckout) .bootstrap-datetimepicker-widget td.day {
    color:#fff !important;
}
.account-simpleregister .bootstrap-datetimepicker-widget td.day.active,
.checkout-simplecheckout .bootstrap-datetimepicker-widget td.day.active{
    color: #fff;
}


.bootstrap-datetimepicker-widget td {
    font-size: 12px;
}





#simplecheckout_cart .ref_cont i {
    margin-left: 6px;
    cursor: pointer;
}
input[type="radio"] {
    display: none;
}

input[type="radio"] + label {
    position: relative;
    padding-left: 30px;
    line-height: 24px;
}
input[type="radio"] + label:before, input[type="radio"] + label:after {
    content: '';
    position: absolute;
    border-radius: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
input[type="radio"] + label:before {
    top: 5px;
    left: 0;
    width: 14px;
    height: 14px;
    border: none;
    background: #d4d6d8;
}
input[type="radio"] + label:after {
    top: 7px;
    left: 2px;
    width: 10px;
    height: 10px;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease;
}

input[type="radio"]:checked + label:after {
    background: #998675;
}
input {
    outline: none!important;
    -webkit-box-shadow: none!important;
    box-shadow: none!important;
}
input.form-control,.select2-container--default span.select2-selection--single {
    border-radius: 0;
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-bottom: 1px solid #A2887A;
}
.dropdown-menu>li>a {
    color:#fff;
    text-align: center;
}
.checkout-heading-button a {
    color:#fff;
}
.radio-inline {
    margin-right: 5px;
}
.seo_html {
    margin-bottom: 30px;
    z-index: 5;
}
.seo_html p, .seo_html span, .seo_html div {
    font:400 16px/1.5em Lato, sans-serif;
}
.seo_html strong {
    font-weight: bold;
}
.seo_html h2 {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
    margin-top: 20px;
}
.seo_html h3 {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 20px;
}
.seo_html h4 {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 20px;
}
.seo_html i {
    font-style: italic;
}
.seo_html p {
    text-indent: 2em;
    margin-bottom: 10px;
}
.seo_html ul {
    margin: 10px 0;
}
.seo_html li {
    padding-left: 4em;
    font:400 16px/1.7em Lato, sans-serif;
    position: relative;
}
.seo_html li:before {
    content:"";
    position: absolute;
    left: 2em;
    top: .5em;
    width: 7px;
    height: 7px;
    background: #7A675D;
}
.btn.btn-primary {
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    font:600 16px Lato, sans-serif;
    padding: 13px 40px;
    background: #7A675D;
    color:#fff;
    border:0;
}
.btn.btn-primary:active, .btn.btn-primary:hover, .btn.btn-primary:focus {
    background: #7A675D;
    color:#fff !important;
}
.total_wishlist {
    margin: 27px 0 30px;
}
.total_wishlist .totals {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.total_wishlist .totals .text {
    font:400 18px Lato, sans-serif;
    color:#464646;
}
.total_wishlist .totals .amount {
    font:600 24px Lato, sans-serif;
    margin-left: 5px;
    color:#464646;
}
.total_wishlist .totals .buy_all {
    font: 600 16px Lato, sans-serif;
    padding: 13px 40px;
    background: #7A675D;
    color: #fff;
    margin-left: 24px;
}
#content .buttons {
    margin-bottom: 30px;
    padding: 0;
}
.modal-dialog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 728px;
    margin: 0 auto;
}
.modal-dialog .modal-content {
    -webkit-box-shadow: 0px 8px 10px rgba(57, 72, 86, 0.06), 0px 1px 14px rgba(57, 72, 86, 0.12);
    box-shadow: 0px 8px 10px rgba(57, 72, 86, 0.06), 0px 1px 14px rgba(57, 72, 86, 0.12);
    border-radius: 12px;
    width: 100%;
}
.modal-dialog .modal-title.main-heading {
    font: 500 24px / 1.1em Roboto Slab, serif;
    margin-bottom: 10px;
    text-align: center;
}
.modal-dialog .modal-header {
    border-bottom: 0;
    padding-top: 35px;
}
.modal-dialog .modal-body {
    padding: 15px 40px 35px;
}
.modal-dialog .doub {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.modal-dialog .doub input {
    margin: 0;
    margin-right: 9px;
}
.modal-dialog .doub label {
    color:#464646;
    font:400 14px Lato, sans-serif;
}
.modal-dialog .forgot {
    color:#2D9CDB;
    font:400 14px Lato, sans-serif;
}
.modal-dialog .reg {
    color:#2D9CDB;
    font:500 16px Lato, sans-serif;
    text-align: center;
    display: block;
    margin: 0;
}
.modal-dialog .control-label {
    color:#A2887A;
    font: 500 12px Lato, sans-serif;
    margin-bottom: 10px;
}
.modal-dialog input {
    background: transparent;
}
.modal-dialog .btn.btn-primary {
    width: 100%;
}
.modal-dialog .log_pan {
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.modal-dialog .modal-title {
    color:#464646;
    font:600 16px Lato, sans-serif;
    margin-bottom: 20px;
}
.links_soc {
    display: flex;
    flex-direction: column;
}

.links_soc .content.simplereg_socnetauth2_icons_content {
    display: none!important;
}

.links_soc a {
    margin-bottom: 16px;
    background: #F8F6F5;
    padding: 10px 20px;
    color:#365F93;
    font:500 16px Lato,sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}
.links_soc a.goo {
    color:#EB5D46;
}
.simplecheckout-block-content h4 {
    margin-bottom: 15px;
}
.links_soc a svg {
    margin-right: 12px;
}
.review-form-title {
    color:#464646;
    font:500 24px Roboto Slab, serif;
    text-align: center;
    margin-bottom: 32px;
}
.star-rating__input{
    display:none;
}
.star-rating__ico{
    cursor:pointer;
}
.star-rating__ico:before, .star-rating__ico:after {
    display: none!important;
}
.star-rating__ico path {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    fill: #ffffff;
}
.star-rating__ico:hover path,.star-rating__ico:hover~.star-rating__ico path,.star-rating__input:checked~.star-rating__ico path{
    fill: #FFBF46;
}
#form-review .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
#reviews_form .stars {
    background: #7A675D;
    border-radius: 20px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
}
#reviews_form_title{
    color: #7A675D;
    font: 500 24px Lato, sans-serif;
}
#reviews_form .stars > .control-label {
    color: #f7f7f7;
    font: 400 18px Lato, sans-serif;
    margin: 20px 0 25px;
}
#reviews_form .stars .helper {
    color: #fff;
    font: 600 18px Lato, sans-serif;
    margin: 12px;
    opacity: 0;
}
.rewie_small_text {
    color: #7A675D;
    font: 500 15px Lato, sans-serif;
    line-height: 20px;
}
.in_prod_reviews .alert{
    margin-top: 25px;
}
#reviews_form .control-label {
    color:#A2887A;
    font:600 16px Lato, sans-serif;
    margin-bottom: 6px;
}
#reviews_form .soc_link {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}
#reviews_form .soc_link .modal-title{
    text-align: center;
    margin-bottom: 10px;
    color: #7A675D;
    font: 500 24px Lato, sans-serif;
}
#reviews_form input[type="text"] {
    padding-left: 0;
    padding-bottom: 10px;
    color:#7a675d;
    font-size: 16px;
    margin-bottom: 18px;
    font-style: italic;
}
#reviews_form  input[type="text"]#input-name{
    border: none;
}
#reviews_form textarea {
    display: block;
    border:0;
    color: #7a675d;
    font-style: italic;
    border-bottom: 1px solid #A2887A;
    padding-left: 0;
    width: 100%;
    margin: 10px 0 30px;
}
#reviews_form .buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
#reviews_form .buttons button {
    width:100%;
    font-size: 18px;
    border-radius: 15px;
}
#reviews_form .buttons button.cancel {
    border: 1px solid #A2887A;
    color:#A2887A;
    background: transparent;
}
.simple_check_cont .simple-content {
    margin: 0 0 40px;
}
.simple_check_cont .simpleregister-block-content {
    padding: 0;
}
.simple_check_cont .simpleregister-block-content fieldset {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.simple_check_cont .simpleregister-block-content fieldset .form-group {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
}
.simple_check_cont .simpleregister-block-content fieldset .form-group.required label:after {
    content:"*";
    color:red;
}
.simple_check_cont .simpleregister-block-content fieldset .form-group label {
    padding: 0;
    text-align: left;
    margin-bottom: 8px;
    color:#A2887A;
    font: 500 12px Lato, sans-serif;
    width: 100%;
}
.simple_check_cont .simpleregister-block-content fieldset .form-group > div {
    padding: 0;
    width: 100%;
}
.simple_check_cont .simpleregister-block-content fieldset .form-group > div input {
    padding-left: 0;
    font:400 14px Lato, sans-serif;
}
.simple_check_cont .simpleregister-block-content fieldset .form-group > div input::-webkit-input-placeholder {
    color:#A2A2A2;
}
.simple_check_cont .simpleregister-block-content fieldset .form-group > div input::-moz-placeholder {
    color:#A2A2A2;
}
.simple_check_cont .simpleregister-block-content fieldset .form-group > div input:-ms-input-placeholder {
    color:#A2A2A2;
}
.simple_check_cont .simpleregister-block-content fieldset .form-group > div input::-ms-input-placeholder {
    color:#A2A2A2;
}
.simple_check_cont .simpleregister-block-content fieldset .form-group > div input::placeholder {
    color:#A2A2A2;
}
.simple_check_cont .simpleregister-block-content fieldset .row-register_firstname, .simple_check_cont .simpleregister-block-content fieldset .row-register_lastname {
    width: calc(50% - 8px);
}
.simple_check_cont .simpleregister-block-content fieldset .row-register_newsletter {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.simple_check_cont .simpleregister-block-content fieldset .row-register_newsletter label {
    -webkit-box-flex:1;
    -ms-flex:1;
    flex:1;
    margin: 0;
}
.simple_check_cont .simpleregister-block-content fieldset .row-register_newsletter > div {
    width: auto;
}
.simple_check_cont .simpleregister-block-content fieldset .row-register_newsletter > div > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.simple_check_cont .simpleregister-block-content fieldset .row-register_newsletter > div > div .checkbox:nth-of-type(2), .simple_check_cont .simpleregister-block-content fieldset .row-register_newsletter > div > div .checkbox label {
    display: none!important;
}
.simple_check_cont .simpleregister-block-content fieldset .row-register_newsletter > div > div .checkbox input {
    margin: 0;
    position: relative;
    margin-right: 12px;
}
.simple_check_cont h1 {
    color:#464646;
    text-align: center;
    font:500 24px / 1em Roboto Slab, serif;
    margin-bottom: 32px;
}
.simple_register_content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.simple_register_content > * {
    width: 50%;
}
.simple_register_content form {
    padding-right: 25px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}
.simple_register_content .altern {
    padding-left: 25px;
}
.simpleregister-button-block.buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 0!important;
}
.simple-content .button, #simplecheckout_login .button {
    display: block;
    font:500 16px Roboto Slab, sans-serif;
    background: #a2887a;
}
.simple-content .button:hover, #simplecheckout_login .button:hover {
    color:#fff!important;
}
#simplecheckout_login .button {
    display: block;
    font:500 16px Roboto Slab, sans-serif;
    background: #a2887a;
}
.simpleregister-button-block.buttons .quick_signup {
    display: block;
    text-align: center;
    margin-top: 25px;
    color:#2D9CDB;
    font: 500 16px/1em Lato, sans-serif;
}
#quick-login .loginaccount{
    color: #fff;
    background: #A2887A;
    padding: 14px 40px 16px;
    font: 500 20px/1 Roboto Slab, serif;
    white-space: nowrap;
    border: 1px solid #A2887A;
    margin-bottom: 7px;
    margin-top: 10px;
}
.simple_register_content .altern .title {
    margin-bottom: 20px;
    color: #464646;
    font: 600 16px Lato, sans-serif;
}
.box.bestsellers .box-heading h4 {
    color:#464646;
    font:500 26px Roboto Slab, sans-serif;
    margin-bottom: 24px;
    text-align: center;
}
.box.bestsellers {
    margin-left: -15px;
    margin-right: -15px;
}
.well p {
    margin-bottom: 15px;
    line-height: 1.3;
}
.well p br {
    content:"";
    display: block;
    margin-bottom: 10px;
}
.info_content p, .info_content div {
    margin-bottom: 10px;
    font:400 14px / 1.3em Lato, sans-serif;
}
.info_content img {
    max-width: 100%;
    max-height: calc(100vh - 100px);
    width: auto!important;
    object-fit: contain;
}
.info_content strong {
    font-weight: bold;
}
.info_content h2, .info_content h3 {
    margin-bottom: 10px;
    margin-top: 20px;
    font-weight: bold;
}
.info_content em {
    font-style: italic;
}
.info_content u {
    text-decoration: underline;
}
.info_content ol {
    margin: 7px 0;
    counter-reset: ol;
    font-size: 14px;
}
.info_content ol li {
    position: relative;
    line-height: 1.5;
}
.info_content ol li:before {
    counter-increment: ol;
    content:"0"counter(ol);
    margin-right: 10px;
    color:#a2887a;
}
.info_content ul {
    margin: 7px 0;
    font-size: 14px;
    list-style-type: disc;
    padding-left: 20px;
}
.info_content ul li {
    position: relative;
    line-height: 1.5;
}
.info_content ul li:before {
    color:#a2887a;
}
.info_content blockquote {
    margin: 7px 0;
    padding: 20px 45px;
    background: #a2887a;
    font-style: italic;
    line-height: 1.5em;
    color: #fff;
    position: relative;
}
.info_content blockquote:before {
    content: "";
    position: absolute;
    left: 10px;
    display: block;
    bottom: 50%;
    width: 2px;
    height: calc(100% - 17px);
    background: #fff;
    -webkit-transform: translate(0,50%);
    transform: translate(0,50%);
}
.info_content blockquote p {
    font-style: italic;
    margin: 0;
    line-height: 1.5em;
}
.info_content table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    width: auto !important;
}
.info_content table tbody tr:nth-of-type(odd) {
    background: #a2887a30;
}
.info_content table tbody tr:nth-of-type(1) {
    background: #a2887a;
    color: #fff;
}

.info_content table tbody tr:nth-of-type(1) td:after {
    background: #fff;
}
.info_content table td {
    padding: 3px 12px;
    font: 400 14px Lato, sans-serif;
    text-align: center;
    position: relative;
}
.info_content table td:not(:last-child):after {
    content:"";
    position: absolute;
    display: block;
    height: 50%;
    width: 1px;
    background: #a2887a;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
}
.info_content a {
    font-weight: bold;
}
.info_content {
    padding-bottom: 30px;
}
body, h1, h2, h3, h4, h5, h6 {
    font-family: Lato, sans-serif;
}
.error_page h1, .success_page h1 {
    text-align: center;
}
.success_page {
    text-align: center;
}
.error_page p, .success_page p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.3;
}
.success_page ul {
    text-align: center;
    font-weight: bold;
    line-height: 1.5;
}
.success_page ul li {
    line-height: 1.5;
    font-size: 20px;
}
.success_page .fail_image {
    display: none;
}
.success_page.fail .fail_image {
    display: block;
    margin: 0 auto;
}
.success_page.fail .succ_img {
    display: none;
}
.error_page .buttons,.success_page .buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 15px;
}
.error_page h2 {
    font-size: 20px;
    margin-bottom: 10px;
}
.success_page .succ_img {
    margin: 0 auto;
    display: block;
}

/* account */
.account_person {
    background: #F8F8F8;
    border-radius: 12px;
    padding: 16px 24px;
    margin-bottom: 10px;
}
.account_person .name {
    color: #A2887A;
    font: bold 18px/22px Lato, sans-serif;
    margin-bottom: 4px;
}
.account_person .mail {
    color: #A2A2A2;
    font: 400 14px/17px Lato, sans-serif;
}
.account_menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.account_menu a {
    padding: 15px 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #464646;
    font:400 14px / 24px Lato, sans-serif;
    position: relative;
}
.account_menu a.active {
    background: #F8F6F5;
    border-radius: 12px
}
.account_menu a.active:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    /*background: #A2887A;*/
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    border-right: 4px solid #A2887A;
}
.account_menu a svg {
    margin-right: 15px;
}
.account_page .double {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 12px;
}
.account_page .double .title {
    font:500 22px/1em Roboto Slab, serif;
}
.account_page .double .edit {
    color: #48B0B8;
    font:400 16px Lato, sans-serif;
}
.account_page .info {
    border: 1px solid rgba(162, 136, 122, 0.1);
    border-radius: 12px;
    padding: 24px 24px 0;
    margin-bottom: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.account_page .info .block {
    width: calc(100% / 3);
    margin-bottom: 24px;
}
.account_page .info .block .label {
    color: #A2887A;
    font-size: 12px;
    padding: 0;
}
.account_page .info .block .name {
    color:#464646;
    margin-top: 8px;
}
.orders_page h1 {
    font:500 22px/1em Roboto Slab, serif;
}
.orders_list .order_item {
    margin-bottom: 16px;
    border:1px solid rgba(162, 136, 122, 0.1);
    border-radius: 12px;
    padding: 4px 0;
}
.orders_list .order_item .status {
    color: #212121;
    font:400 14px/1em Lato, sans-serif;
    border-radius: 20px;
    background: #ffc10514;
    width: auto;
    padding: 6px 10px 6px 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.orders_list .order_item .status.icon2 {
    background: rgba(57, 69, 86, 0.05);
}
.orders_list .order_item .status .icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 6px;
}
.orders_list .order_item .status.icon1 .icon {
    background: #FFC107;
}
.orders_list .order_item .status.icon2 .icon {
    background: #848C96;
}
.orders_list .order_item .status.icon3 .icon {
    background: #848C96;
}
.orders_list .order_item .status.icon3 {
    background: #009e4514;
}
.orders_list .order_item .sum {
    color:#A2A2A2;
    font: 400 14px / 1.5em Lato, sans-serif;
}
.orders_list .order_item .sum span {
    color:#464646;
}
.orders_list .order_item .num {
    color:#A2A2A2;
    font:400 14px/1.5em Lato,sans-serif;
}
.orders_list .order_item .more {
    color:#2B90CE;
    font:400 14px/1.5em Lato,sans-serif;
}
.orders_list .order_item .average {
    width: 100%;
    border-spacing: 0px 16px;
    border-collapse: separate;
}
.orders_list .order_item tr td:nth-of-type(1) {
    width: 38%;
}
.orders_list .order_item tr td {
    vertical-align: middle;
}
.orders_list .order_item .st_cont {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.orders_list .order_item .double {
    position: relative;
    padding: 0 24px;
}
.orders_list .order_item .more_icon {
    position: absolute;
    right: 24px;
    top: 50%;
    -webkit-transform: translate(0,-50%);
    transform: translate(0,-50%);
}
.orders_list .order_item .more_icon svg {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.orders_list .order_item.active .more_icon svg {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.info_order_pan {
    padding: 16px 24px 24px;
    border-top: 1px solid rgba(162, 136, 122, 0.1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.info_order_pan .inf {
    width: 38%;
}
.info_order_pan .inf h3 {
    color:#A2A2A2;
    font:400 14px/1em Lato, sans-serif;
    margin-bottom: 16px;
}
.info_order_pan .inf .cont {
    color:#464646;
    font:400 14px/1.5em Lato, sans-serif;
}
.info_order_pan .det {
    -webkit-box-flex:1;
    -ms-flex:1;
    flex:1;
}
.info_order_pan .det table {
    width: 100%;
    display: block;
    overflow-y: hidden;
    overflow-x: auto;
}
.info_order_pan .det table .tot, .info_order_pan .det table .quan {
    width: 9%;
    vertical-align: top;
}
.info_order_pan .det table .tot span, .info_order_pan .det table .quan span {
    display: none;
}
.info_order_pan .det table td.name_img {
    width: 82%;
}
.info_order_pan .det table td.name_img .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.info_order_pan .det table td.name_img .name {
    color:#A2887A;
    font:400 14px/1.5em Roboto, sans-serif;
}
.info_order_pan .det table td.name_img img {
    margin-right: 16px;
}
.info_order_pan .det table td.quan {
    color:#464646;
    font:400 14px Lato, sans-serif;
    text-align: center;
}
.info_order_pan .det table td.tot {
    text-align: right;
}
.info_order_pan .det table thead td {
    font:400 14px/1em Lato,sans-serif;
    color:#A2A2A2;
    padding-bottom: 24px;
}

.info_order_pan .det table tbody tr:not(:nth-of-type(1)) td {
    padding-top: 16px;
}
.info_order_pan .det table tbody tr td {
    padding-bottom: 16px;
}
.info_order_pan .det table tbody tr {
    border-bottom: 1px solid rgba(162, 136, 122, 0.1);
}
.info_order_pan .det table tfoot td {
    padding-top: 16px;
}
.info_order_pan .det table tfoot td.title {
    color:#A2A2A2;
    font:400 14px/1.5em Lato, sans-serif;
}
.info_order_pan .det table tfoot td.val {
    color:#464646;
    font:400 14px/1.5em Lato, sans-serif;
}
.info_order_pan .det table tfoot tr:last-child td {
    font:600 16px/1.5em Lato, sans-serif;
    padding-top: 20px;
}
.in_prod_reviews .content .wr {
    display: flex;
}
.in_prod_reviews .content .wr .im {
    min-width: 320px;
}
.in_prod_reviews .content .wr .im img {
    height: 100%;
    object-fit: cover;
}
.main_reviews.in_prod_reviews {
    margin-right: -150px;
    padding: 0;
    margin-bottom: 80px;
    margin-top: 80px;
}
.main_reviews.in_prod_reviews .double {
    justify-content: center;
}
.main_reviews .owl-nav {
    margin-top: 40px!important;
    position: relative;
    left: -125px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.main_reviews .owl-nav button {
    background: #A2887A!important;
    width: 50px;
    height: 50px;
    opacity: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.main_reviews .owl-nav button:hover {
    opacity: 0.6;
}
.insta_block {
    position: relative;
    padding: 40px 0;
    margin-bottom: 80px;
}
.insta_block .lay {
    content:"";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%,0);
    height: 100%;
    width: calc(100% - 170px);
    background: url(../icons/texture_large.svg) 50% / cover no-repeat,#F8F8F8;
    z-index: -1;
}
.insta_block h2 {
    font:500 30px Roboto Slab, serif;
    margin-bottom: 40px;
    text-align: center;
}
.insta_block .title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 34px;
    margin-bottom: 40px;
}
.insta_block .title span {
    font:600 22px Lato, sans-serif;
    text-decoration: underline;
    line-height: 1.2;
    margin-left: 12px;
}
.insta_block .butts {
    display: flex;
    justify-content: center;
}
#form-language .dropdown-menu {
    padding: 0;
    background: #f8f6f5;
}
._white #form-language .dropdown-menu {
    background: #ab9488;
}
.insta_block .btn {
    font:500 18px/1.3em Roboto Slab, serif;
    padding: 16px 32px;
    color:#A2887A;
    border:2px solid #A2887A;
}
.col_filter aside {
    padding-left: 0;
}
.col_filter aside .noUi-connect {
    background: #a2887a;
}
.col_filter aside .noUi-value-large {
    margin-top: 10px;
}
#tab-specification td {
    font-size: 14px;
    padding: 4px 8px;
}
#tab-specification tr td:nth-of-type(2):first-letter {
    text-transform: uppercase;
}
#tab-specification tr:nth-of-type(1) td {
    border-top: 0;
}
#tab-specification td b {
    font-weight: bold;
}
/* footer */
.footer {
    background: #7A675D;
    padding: 50px 0 60px;
}
.footer .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 1240px;
    width: 90%;
    margin: 0 auto;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.footer .wrap .col:not(:last-child) {
    margin-right: 30px;
}
.footer .wrap .col:nth-of-type(1) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.footer .wrap .col:nth-of-type(3) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.footer .wrap .col:nth-of-type(3) nav {
    -webkit-box-flex:1;
    -ms-flex:1;
    flex:1;
}
.footer .wrap .copy {
    color:#F8F8F8;
    font:500 14px/1.4em Lato, sans-serif;
}
.footer h3 {
    color:#fff;
    opacity: 0.5;
    font:500 18px/1.4em Lato, sans-serif;
    margin-bottom: 20px;
}
.footer nav li:not(:last-child) {
    margin-bottom: 12px;
}
.footer nav li a {
    color:#F8F8F8;
    font: 400 16px/1.4em Lato, sans-serif;
    transition:all .3s ease;
}
.footer nav li a:hover {
    color:#48B0B8;
}
.footer .f_conts li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 16px;
    color:#F8F8F8;
    font: 400 16px/1.4em Lato, sans-serif;
}
.footer .f_conts li a {
    color:#F8F8F8;
    font: 400 16px/1.4em Lato, sans-serif;
}
.footer .f_conts li svg {
    margin-right: 13px;
}
.footer .socials {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 20px;
}
.footer .socials li:not(:last-child) {
    margin-right: 25px;
}
.footer .socials a {
    display: block;
    width: 21px;
    height: 21px;
    color:#fff;
    font-size: 21px;
    text-align: center;
}
.footer .socials a.insta {
    /*background: url(../icons/insta.svg) 50% / contain no-repeat;*/
}
.smbg {
    position: fixed;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    opacity: 0;
    visibility: hidden;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.smbg.active {
    opacity: 1;
    visibility: visible;
}
.box-cart .name a {
    color:#A2887A!important;
}
.simplecheckout-cart td.name .product-warning {
    color:red;
}
.product_page-right .double .price-section {
    display: none;
}
.fish_box.lands .container .content .fish-smtext a {
    transition: all .3s ease;
}
.fish_box.lands .container .content .fish-smtext a:hover {
    color: #A2887A;
    opacity: .5;
}
/* partner */
.dropdown-menu>li>a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.dropdown-menu>li>a span {
    color:#A2887A;
    font:bold 8px Lato, sans-serif;
    background: #fff;
    padding: 2px 4px;
    border-radius: 20px;
    margin-left: 4px;
    display: inline-block;
}
.referrals_content {
    padding-left: 22px;
}
.referrals_content h1 {
    font:500 22px Roboto slab, serif;
    color:#464646;
    margin-bottom: 32px;
}
.referrals_content .steps {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}
.referrals_content .steps:before {
    content:"";
    position: absolute;
    left: 50%;
    top: 25px;
    width: calc(100% - calc(100% / 3));
    transform: translate(-50%,0);
    opacity: 0.6;
    height: 1px;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' stroke='%23A2887AFF' stroke-width='3' stroke-dasharray='7' stroke-dashoffset='0' stroke-linecap='butt'/%3e%3c/svg%3e");
    z-index: -1;
}
.referrals_content .steps .item {
    width: calc(100% / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.referrals_content .steps .item .num {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color:#A2887A;
    font:600 26px Lato, sans-serif;
    background: #f8f6f5;
    border-radius: 50%;
    margin-bottom: 15px;
}
.referrals_content .steps .item .text {
    color: #464646;
    font:400 14px/20px Lato, sans-serif;
    padding: 0 10px;
    text-align: center;
}
.referrals_content .steps .item .text b {
    font-weight: bold;
}
.referrals_content .ref_double {
    display: flex;
    padding: 24px 32px;
    background: url(../icons/texture_large.svg) 50% / cover no-repeat,#F8F8F8;
    justify-content: space-between;
    border-radius: 12px;
}
.referrals_content .ref_double > div {
    width:calc(100% / 2 - 10px);
    background: #fff;
    padding: 20px 24px;
    border-radius: 12px;
}
.referrals_content .ref_double .sharer h2 {
    color:#464646;
    font:500 16px Lato, sans-serif;
    margin-bottom: 10px;
}
.referrals_content .ref_double .sharer .ref_link {
    display: flex;
    width: 100%;
    justify-content: space-between;
    border-radius: 12px;
    border:1px solid #A2887A;
    padding: 11px 14px;
    position: relative;
    margin-bottom: 20px;
}
.referrals_content .ref_double .sharer .ref_link input {
    box-shadow: none;
    border:0;
    background: transparent;
    flex:1;
    color:#A2887A;
    font:500 12px Lato,sans-serif;
}
.referrals_content .ref_double .sharer .ref_link button {
    box-shadow: none;
    border:0;
    background: transparent;
    padding: 0;
}
.referrals_content .ref_double .sharer .ref_link .helper {
    position: absolute;
    bottom: 5px;
    left:50%;
    transform: translate(-50%,0);
    background: #A2887A;
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}
.referrals_content .ref_double .sharer .ref_link .helper.shown {
    opacity: 1;
    visibility: visible;
}
.referrals_content .ref_double .sharer h3 {
    font:400 12px /1.2em Lato, sans-serif;
    margin-bottom: 10px;
}
.referrals_content .ref_double .sharer .medias {
    display: flex;
    flex-wrap: wrap;
}
.referrals_content .ref_double .sharer .medias a {
    width: 40px;
    height: 40px;
    background: #F8F6F5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    margin-bottom: 10px;
}
.referrals_content .ref_double .sharer .medias .fa {
    color:#395085;
}
.referrals_content .ref_double .balance h2 {
    color:#464646;
    font:400 14px Lato, sans-serif;
    margin-bottom: 12px;
}
.referrals_content .ref_double .balance .num {
    color:#A2887A;
    font:700 50px / 1em Lato, sans-serif;
    margin-bottom: 15px;
}
.referrals_content .ref_double .balance p {
    color:#464646;
    font:500 12px / 1.4em Lato, sans-serif;
}
.referrals_content .ref_double .balance p a {
    color:#48B0B8;
    font-weight: 500;
}
.referrals_content .reffs {
    margin-top: 32px;
}
.referrals_content .reffs h2 {
    color:#464646;
    font:500 18px Roboto slab, serif;
    margin-bottom: 16px;
}
.referrals_content .reffs h2 span {
    font:400 16px Roboto slab, serif;
}
.referrals_content .reffs .table-responsive {
    border:0;
}
.referrals_content .reffs .table {
    border: 1px solid rgba(162, 136, 122, 0.1);
    border-radius: 12px;
    position: relative;
    padding: 24px;
    border-radius: 12px;
}

.referrals_content .reffs .tr {
    display: flex;
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(162, 136, 122, 0.1);
}
.referrals_content .reffs .thead .tr:nth-of-type(1) {
    padding-top: 0;
}
.referrals_content .reffs .tbody .tr:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.referrals_content .reffs .tr span{
    width: calc(100% / 5);
    text-align: center;
}
.referrals_content .reffs .tr span:nth-of-type(1){
    text-align: left;
}
.referrals_content .reffs .tr span:last-child{
    text-align: right;
}
.referrals_content .reffs .thead span{
    color:#A2A2A2;
    font:400 14px Lato, sans-serif;
}
.referrals_content .reffs .tbody span{
    color:#212121;
    font:400 14px /1.5em Lato, sans-serif;
}
#column-left + div {
    border-left:1px solid rgba(162, 136, 122, 0.1);
    padding-left: 22px;
}
#simplecheckout_form_0 {
    display: flex;
    justify-content: space-between;
}
#simplecheckout_form_0 > .simplecheckout {
    width: calc(100% - 424px);
}
#simplecheckout_form_0 > .right {
    width: 400px;
    display: flex;
}
#simplecheckout_form_0 > .right > .simplecheckout-block {
    width: 100%;
    margin-bottom: 0;
    border: 1px solid rgba(162, 136, 122, 0.2);
    border-radius: 12px;
    padding: 24px;
}
.simplecheckout-steps-wrapper {
    width: 100%;
    margin-bottom: 24px;
    border: 1px solid rgba(162, 136, 122, 0.2);
    border-radius: 12px;
    padding: 24px;
}
.simplecheckout-steps-wrapper div.simplecheckout-button-block.buttons {
    margin-bottom: 0!important;
    display: flex;
}
.simple-content .checkout-heading {
    background: transparent;
    font-size: 18px;
    font-weight: 500;
    text-transform: uppercase;
    /*margin: 0 0 25px;*/
}
.simplecheckout-block-content .form-horizontal .form-group {
    position: relative;
}
#simplecheckout_payment .radio label span {
    color: #A2A2A2;
    margin-top: 8px;
    padding-left: 30px;
    display: block;
    font-size: 16px;
}
#simplecheckout_button_prev {
    background: transparent;
    color:#a2887a!important;
    border:1px solid #a2887a;
}
.simplecheckout-block-content .form-horizontal .form-group > label {
    position: absolute;
    opacity: 1;
    visibility: visible;
    z-index: 2;
    transition: all .3s ease;
    left: 0;
    text-align: left;
    color:#A2887A;
    font:400 14px Lato, sans-serif;
}
.simplecheckout-block-content .form-horizontal .form-group > label.incative {
    opacity: 0;
    visibility: hidden;
}
.simplecheckout-block-content .form-horizontal .form-group > label[for="customer_field23"] {
    display: none!important;
}
.simplecheckout-block-content .form-horizontal .form-group > label[for="customer_register"] {
    position: relative;
    left: 25px;
    color:#464646;
    font: 400 16px Lato, sans-serif;
}
.simplecheckout-block-content .form-horizontal .form-group > label[for="customer_field28"] {
    display: none!important;
}
.simplecheckout-block-content .row-customer_field28 .checkbox label input {
    position: relative;
    margin-right: 14px;
}
.simplecheckout-block-content select {
    color: #A2887A;
    padding-left: 0;
    border: 0;
    border-bottom: 1px solid #A2887A;
    border-radius: 0;
    box-shadow: none;
}
.simplecheckout-block-content select:focus {
    outline: none!important;
    border: 0;
    border-bottom: 1px solid #A2887A;
    box-shadow: none!important;
}
.input-group.date button {
    border:0;
    /*border-bottom: 1px solid #A2887A;*/
    /*border-top: 1px solid transparent;*/
    /*border-radius: 0;*/
}
.partner_helper {
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #A2887A;
    margin-top: 20px;
}
.partner_helper h3 {
    font:500 18px Roboto slab, serif;
    margin-bottom: 15px;
}
.partner_helper input {
    border: 0;
    box-shadow: none;
    padding: 5px 15px;
    border-bottom: 1px solid #A2887A;
    margin-bottom: 10px;
}
.partner_helper input.approve {
    padding: 10px 35px;
    background: #A2887A;
    color:#fff;
    border:0;
}
@media screen and (max-width: 1366px) {
    .hero .wrap .name-capital {
        font-size: 36px;
        max-width: 200px;
    }
    .hero .wrap ul li {
        font: 500 18px/26px Lato, sans-serif;
    }
    .hero .wrap > a {
        font: 500 22px/1.4em Roboto slab, serif;
        padding: 15px 40px;
        max-width: 220px;
    }
    body.product-* .container {
        padding-left: 0;
        padding-right: 0;
    }
    #cart td {
        padding: 5px 0;
    }
    #cart .double {
        margin: 15px 0;
    }
    #cart .toggle_cont {
        padding: 20px;
    }
    #cart .butts a {
        padding: 10px 18px;
    }
}
@media screen and (max-width: 1024px) {
    .simplecheckout-block-content .form-horizontal .form-group > .col-sm-8 {
        width: 100%;
    }
    .hero .wrap {
        position: relative;
        bottom: 0;
        margin: -100px auto 30px;
        left: auto;
        -webkit-transform: translate(0,0);
        transform: translate(0,0);
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 20px 40px 20px 40px;
        width: 90%;
    }
    .hero .wrap .name-capital {
        width: 100%;
        max-width: 100%;
        margin-bottom: 15px;
        text-align: center;
    }
    .hero .wrap ul {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 15px;
    }
    .hero .wrap > a {
        margin-bottom: -30px;
        right: auto;
        max-width: 100%;
    }
    .header .menu {
        display: none;
    }
    .featured_cats_column .row-inner > div:nth-of-type(1) {
        margin-left: -50px;
    }
    .featured_block .wrap .items {
        max-width: 100%;
    }
    .featured_block .wrap .items img {
        max-width: 100%;
        height: auto;
        -o-object-fit: contain;
        object-fit: contain;
    }
    .featured_block .wrap h2 {
        max-width: 100%;
    }
    .container {
        padding-left: 0;
        padding-right: 0;
    }
    .categories_list a {
        padding: 5px 20px;
    }
    .categories_list a:not(:last-child) {
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .product-block .items .product-layout {
        margin-right: 12px;
        margin-bottom: 12px;
        width: calc(100% / 4 - 9px);
    }
    .product-block .items .product-layout .caption {
        padding: 10px 15px 7px;
    }
    .product-block .items .product-layout .caption .double {
        margin-top: 10px;
    }
    .product-gallery-block .product_page-left .product-gallery {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .product-gallery-block .product_page-left .product-gallery .image-thumb #productGallery {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .product-gallery-block .product_page-left .product-gallery .image-thumb {
        margin-right: 0;
        margin-top: 8px;
    }
    .min_check_lay {
        padding: 5px 15px;
        margin-bottom: 15px;
    }
    .in_product_butts .butts button {
        padding: 10px 25px;
    }
    .price-section {
        white-space: nowrap;
    }
    .fish_box.lands .container:nth-of-type(odd) .img {
        max-width: 50%;
        left:-50px;
    }
    .fish_box.lands .container .img img {
        max-width: 100%;
    }
    .fish_box.lands .container .content {
        max-width: 45%;
    }
    .fish_box.lands .container:not(:nth-of-type(1)) .img {
        max-width: 50%;
    }
    .fish_box.lands .container:nth-of-type(1) .content .bigtitle, .fish_box.lands .container:last-child .content .bigtitle {
        font-size: 26px;
    }
    .fish_box.lands .container:nth-of-type(1) .content .fish-smtext, .fish_box.lands .container:nth-of-type(1) .content .fish-smtext p {
        font-size: 20px;
    }

    .colorcustom.bigblock .row .bottom-text, .colorcustom.bigblock .row .bottom-text p {
        font-size: 26px;
    }
    .colorcustom.bigblock .row .bottom-text {
        margin-bottom: 30px;
    }
    .colorcustom.bigblock .row {
        padding-bottom: 30px;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .land_hero .container .wrap {
        max-width: 55%;
    }
    .land_hero .container {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding-bottom: 15px;
    }
    .land_hero.forrest .container {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-bottom: 0;
    }
    .fish_box.lands .container {
        margin-bottom: 20px;
    }
    .land_hero.forrest .container .wrap .big-toptext1 h1 {
        font: 500 70px/1.3em Roboto Slab, serif;
    }
    #cart .title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    #cart td .image img {
        width: 50px;
    }
    #cart .list-total {
        padding: 0 10px;
    }
    #cart .butts a {
        padding: 6px 18px;
        border-width: 1px;
        font-size: 16px;
    }
    #cart .double .tree .content img {
        max-width: 70px;
    }
    #cart .close {
        width: 13px;
    }
    .box-cart .name a {
        font-size: 14px;
    }
}
@media screen and (max-width: 768px) {
    #simplecheckout_form_0 {
        flex-direction: column;
    }
    #simplecheckout_form_0 > .right,#simplecheckout_form_0 > .simplecheckout {
        width: 100%;
    }
    .referrals_content .steps {
        flex-direction: column;
    }
    .referrals_content .steps .item {
        flex-direction: row;
        width: 100%;
        margin-bottom: 15px;
    }
    .referrals_content .steps .item .text {
        width: calc(100% - 50px);
    }
    .referrals_content .steps:before {
        left: 25px;
        top: 50%;
        width: 1px;
        height: calc(100% - calc(100% / 3));
        transform: translate(0,-50%);
    }
    .referrals_content .ref_double {
        flex-direction: column-reverse;
    }
    .referrals_content .ref_double > div {
        width: 100%;
    }
    .referrals_content .ref_double .balance {
        margin-bottom: 15px;
    }
    #column-left {
        width: 100%;
    }
    #column-left + div {
        width: 100%;
    }
    .account_menu {
        flex-direction: row;
        overflow: auto;
    }
    .footer .wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .footer .wrap .col {
        margin-bottom: 30px;
    }
    .footer .wrap .col:nth-of-type(1) {
        -webkit-box-ordinal-group:5;
        -ms-flex-order:4;
        order:4;
        margin-right: 0;
        width: 100%;
    }
    .footer .wrap .col:nth-of-type(4) {
        width: 100%;
    }
    .footer .wrap .col:nth-of-type(2),.footer .wrap .col:nth-of-type(3) {
        width: calc(50% - 30px);
    }
    .featured_cats_column .row-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .featured_cats_column .row-inner > div:nth-of-type(1) {
        margin-left: 0;
        width: 100%;
        margin-bottom: 30px;
    }
    .featured_cats_column {
        padding: 15px 0;
    }
    .featured_cats_column h2,.featured_block .wrap h2 {
        font-size: 36px;
    }
    .featured_cats_column .row-inner > div:nth-of-type(2) {
        right: auto;
        width: 100%;
    }
    .featured_block {
        padding: 40px 0 50px
    }
    .rd-parallax [data-type="html"] .parallax-text {
        padding: 22px 30px;
    }
    .rd-parallax [data-type="html"] .parallax-text h2 {
        font-size: 36px;
    }
    .rd-parallax {
        margin-bottom: 70px;
    }
    #tm-newsletter #tm-newsletter-form .box-content .newsletter-description {
        max-width: 100%;
        font-size: 20px;
    }
    .categories_list {
        display: block;
        white-space: nowrap;
        overflow: auto;
        padding: 15px 0;
        margin-bottom: 10px;
    }
    .product-block .items .product-layout {
        width: calc(100% / 3 - 9px);
    }
    .product-block .items .product-layout:nth-of-type(4n) {
        margin-right: 12px;
    }
    .product-block .items .product-layout:nth-of-type(3n) {
        margin-right: 0;
    }
    .product-gallery-block .product_page-right {
        width: calc(60% - 15px);
    }
    .product_page-right h1 {
        font-size: 24px;
    }
    .product-rating-status {
        margin-bottom: 5px;
    }
    .product_page-right .double {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .product_page-right .double .stock {
        margin-bottom: 10px;
    }
    .product_page-right .double .st {
        padding: 6px 14px;
        margin-bottom: 10px;

    }
    .in_product_butts {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .in_product_butts .butts {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 10px;
    }
    .price-section {
        text-align: center;
    }
    .related-block {
        max-width: 95%;
        margin: 0 auto;
    }
    .blog_page .blog_list .blog_article {
        width: calc(100% / 2 - 10px);
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .blog_page .blog_list .blog_article .caption {
        padding: 14px 20px;
    }
    .blog_page .blog_list .blog_article .caption .cat {
        font: 500 16px/1 Lato, sans-serif;
    }
    .blog_page .blog_list .blog_article .caption .title {
        font: 500 24px/1.3 Roboto Slab,serif;
    }
    .blog_page .blog_list .blog_article .caption .descr {
        font: 400 14px/1.3 Lato, sans-serif;
    }
    .blog_article_page .related-block {
        max-width: 100%;
    }
    .newsblog-article .blog_list .blog_article:nth-of-type(2n) {
        margin-right: 10px;
    }
    .land_hero .container .wrap {
        max-width: 75%;
        margin: 0 auto;
        padding: 50px 40px 50px 50px;
    }
    .land_hero .container .mouse {
        opacity: 0;
    }
    .land_hero .container .wrap:before {
        width: 100%;
    }
    .colorcustom.bigblock.forrest .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding-bottom: 0;
    }
    .colorcustom.bigblock.forrest .row .img {
        margin-right: 0;
        bottom: -10px;
    }
    .colorcustom.bigblock.forrest .row .bottom-text {
        text-align: center;
    }
    .fish_box.forrest .container .row .content .bgfon-text {
        padding: 10px 20px 10px 50px;
    }
    .fish_box.forrest .container:nth-of-type(even) .row .content .bgfon-text {
        padding-left: 50px;
    }
    .fish_box.forrest .container .bigtitle {
        line-height: 1.1;
        font-size: 20px;
    }
    .fish_box.forrest .container .bigtitle:before {
        font-size: inherit;
        line-height: 1.1;
    }
    .fish_box.forrest .container .fish-smtext {
        font-size: 16px;
    }
    .bigblock.forrest .items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-width: 95vw;
    }
    .bigblock.forrest .items .item {
        width: 100%;
        margin-bottom: 30px;
    }
    .contacts_page {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .contacts_page .top {
        position: relative;
        height: 50vh;
    }
    .contacts_page .container form {
        min-width: auto;
        width: 100%;
        margin-top: -37px;
    }
    .wsh_cont .list .product-layout .caption {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .wsh_cont .list .product-layout .caption .name, .wsh_cont .list .product-layout .caption .double {
        width: 100%;
    }
    .wsh_cont .list .product-layout .caption .double .price {
        -webkit-box-flex:1;
        -ms-flex:1;
        flex:1;
    }
    .wsh_cont .list .product-layout img {
        width: 60px;
        height: 60px;
    }
    .wsh_cont .list .product-layout .caption .double .btn {
        width: 45px;
        height: 45px;
    }
    .wsh_cont {
        min-width: auto;
    }
    #cart .toggle_cont {
        min-width: auto;
    }
    .simple_check_cont .simpleregister-block-content fieldset .row-register_firstname, .simple_check_cont .simpleregister-block-content fieldset .row-register_lastname {
        width: 100%;
    }
    .box.bestsellers {
        max-width: 95%;
        padding-left: 15px;
        width: 100%;
        margin: 0 auto;
        padding-right: 15px;
    }

    .box.bestsellers {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    .box.bestsellers #mfilter-content-container {
        padding-left: 0;
        padding-right: 0;
    }

    .blog_article_page .article-info {
        padding-left: 15px;
        padding-right: 15px;
    }
    #simplecheckout_comment textarea {
        border-left: 0;
        border-right: 0;
    }
    #cart .prods tr {
        display: -ms-grid;
        display: grid;
        grid: "d f f f "
		"d a a a"
    ;
    }
    #cart .prods tr td:nth-child(1) {
        grid-area: d;
    }
    #cart .prods tr td:nth-child(2) {
        grid-area: f;
    }
    #cart .prods tr td {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border: 0!important;
    }
    #cart td .image img {
        width: auto;
    }
    #cart td.name {
        max-width: 100%;
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important;
    }
    #cart tr {
        padding: 5px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .acc_cont {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .acc_cont > div, .acc_cont > #column-left {
        width: 100%;
    }
    .acc_cont .account_menu {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        overflow: auto;
        white-space: nowrap;
        margin-bottom: 24px;
    }
    .acc_cont .account_menu::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
    }
    .account_menu a.active {
        background: transparent;
    }
    .account_menu a.active:before {
        border:0;
        bottom: 0;
        left: 0;
        top: auto;
        right: 0;
        height: 2px;
        background: #A2887A;
    }
    .account_menu a {
        padding: 6px 12px;
        white-space: nowrap;
    }
    .account_person {
        display: inline-block;
    }
    .account_menu a svg {
        margin-right: 8px;
    }
    .account_page .info .block {
        width: calc(100% / 2);
    }
    .main_reviews.in_prod_reviews {
        margin-right: 0;
    }
}
@media screen and (max-width: 480px) {
    .simplecheckout-block .radio {
        width: 100%;
        max-width: 100%;
    }
    #simplecheckout_cart .ref_cont {
        flex-wrap: wrap;
    }
    #simplecheckout_cart .ref_cont i {
        margin-top: 10px;
    }
    #simplecheckout_cart .ref_cont .ref_helper {
        right: 0;
    }
    #simplecheckout_cart .ref_cont #ref_check+label, .row-customer_register > div + label, .row-customer_field28 .checkbox label {
        flex-wrap: wrap;
    }
    .simplecheckout-cart td.image {
        display: inline-block;
    }
    .referrals_content h1 {
        margin: 10px 0 20px;
    }
    .referrals_content .ref_double {
        padding: 15px;
    }
    .referrals_content .ref_double .balance .num {
        font-size: 36px;
    }
    .referrals_content .reffs .table {
        padding: 10px;
    }
    #form-language .dropdown-menu {
        display: block !important;
    }
    .referrals_content .reffs .table {
        width: 100%;
        overflow: auto;
    }
    .referrals_content .reffs .tr {
        width: 250vw;
        padding-right: 15px;
    }
    .referrals_content .reffs .tr span {
        display: block;
        width: 50vw;
    }
    .account_page .info .block {
        width: 100%;
    }
    .account_page .double .title {
        font-size: 18px;
    }
    .account_page .double .edit{
        font-size: 12px;
    }
    .account_person {
        display: block;
    }
    .simplecheckout-cart td {
        padding: 5px;
    }

    #simplecheckout_cart input.form-control {
        min-width: 30px;
        width: auto;
        padding-left: 8px;
        padding-right: 8px;
    }
    #simplecheckout_cart h4 {
        font-weight: 600;
        font-size: 14px;
    }
    .simple-content div.checkout-heading {
        /*padding: 5px 10px;*/
        /*font: 100 14px Lato, sans-serif;*/
    }
    .simplecheckout label, .simpleregister label {
        font-size: 14px;
    }
    .sbHolder {
        margin-top: 7px;
    }

    .hero .wrap ul {
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
        -ms-flex-item-align: start;
        align-self: flex-start;
        margin-bottom: 20px;
    }
    .hero img {
        max-width: none;
        height: calc(100vh);
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        top: 0px;
        position: relative;
        margin-bottom: 0;
    }
    .hero .wrap .name-capital {
        font-size: 24px;
        max-width: 80%;
        font-weight: 400;
    }
    .hero .wrap ul li {
        font-size: 14px;
        line-height: 21px;
    }
    .hero .wrap ul li:before {
        top: 0;
    }
    .hero .wrap {
        margin-top: 0;
        bottom: 35px;
        left: 50%;
        -webkit-transform: translate(-50%,0);
        transform: translate(-50%,0);
        position: absolute;
        padding: 15px 15px 35px;
        margin-bottom: 0;
    }
    .hero .wrap:before {
        background: rgba(0, 0, 0, 0.3);

        -webkit-backdrop-filter: blur(22px);
        backdrop-filter: blur(22px);
    }
    .hero .wrap > a {
        margin-bottom: -48px;
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        font-size: 18px;
        padding: 10px;
    }
    .hero .wrap > a:before {
        display: none;
    }
    .header > .wrap > .logo, .header > .wrap > .butts {
        display: none;
    }
    .mobile_bar {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        width: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .mobile_bar .sand.btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        padding: 11px;
        position: relative;
    }
    .mobile_bar .btn {
        position: relative;
        width: 40px;
        height: 40px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        background: transparent;
    }
    .mobile_bar .btn:before {
        content: "";
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        -webkit-transition:all .3s ease;
        transition:all .3s ease;
        background: rgba(255, 255, 255, 0.1);
        -webkit-backdrop-filter: blur(6px);
        backdrop-filter: blur(6px);
    }
    .mobile_bar .sand.active:before {
        background: #F8F6F5;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
        -webkit-filter: none;
        filter: none;
    }
    .mobile_bar .sand.active {
        z-index: 12;
    }
    .header .mobile_bar .sand .main {
        position: relative;
        width: 100%;
        height: 3px;
        display: block;
        background: #fff;
        border-radius: 3px;
        -webkit-transition:all .3s ease;
        transition:all .3s ease;
    }
    .mobile_bar .sand .main:before {
        content:"";
        right: 0;
        position: absolute;
        width: calc(100% - 6px);
        top:-12px;
        height: 3px;
        display: block;
        background: #fff;
        border-radius: 3px;
        -webkit-transition:all .3s ease;
        transition:all .3s ease;
    }
    .mobile_bar .sand .main:after {
        content:"";
        right: 0;
        position: absolute;
        width: calc(100% - 3px);
        top:-6px;
        height: 3px;
        display: block;
        background: #fff;
        border-radius: 3px;
        -webkit-transition:all .3s ease;
        transition:all .3s ease;
    }
    .mobile_bar .sand.active .main,.mobile_bar .sand.active .main:after,.mobile_bar .sand.active .main:before,.header:not(._white) .mobile_bar .sand .main,.header:not(._white) .mobile_bar .sand .main:before,.header:not(._white) .mobile_bar .sand .main:after {
        background: #A2887A;
    }
    .mobile_bar .sand.active .main {
        width: calc(100% - 4px);
    }
    .mobile_bar .sand.active .main:before {
        width: 100%;
    }
    .mobile_bar .sand.active .main:after {
        width: calc(100% - 4px);
    }
    .mobile_bar .sand .rect {
        position: absolute;
        left: 0;
        border-radius: 3px;
        top: 15px;
        width: 11px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        height: 3px;
        background: #A2887A;
        opacity: 0;
        -webkit-transition:all .3s ease;
        transition:all .3s ease;
    }
    .mobile_bar .sand.active .rect {
        left: 6px;
        opacity: 1;
    }
    .mobile_bar .sand .rect:after {
        content: "";
        position: absolute;
        right: -4px;
        border-radius: 3px;
        top: 5px;
        width: 9px;
        -webkit-transform: rotate(
                80deg
        );
        transform: rotate(
                80deg
        );
        height: 3px;
        background: #A2887A;
    }

    .sand_menu {
        position: fixed;
        right: -100px;
        display: block;
        opacity: 0;
        visibility: hidden;
        top: 0;
        bottom: 0;
        background: #fff;
        padding: 22px 16px 16px;
        -webkit-transition:all .3s ease;
        transition:all .3s ease;
        z-index: 11;
    }

    .sand_menu.active {
        right: 0;
        opacity: 1;
        visibility: visible;
    }
    .sand_menu > .wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        max-height: 100%;
        height: 100%;
        overflow: auto;
    }
    .sand_menu .wrap > img {
        margin-bottom: 20px;
        max-width: 50px;
    }
    .sand_menu #search, .sand_menu #search .wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .sand_menu #search {
        position: relative;
    }
    .sand_menu #search .live-search {
        margin: 0;
        top: 100%;
    }
    .sand_menu #search input {
        font-size: 16px;
        color:#A2887A;
    }
    .sand_menu .search_m {
        margin-bottom: 24px;
    }
    .sand_menu .cats_toggle {
        color:#464646;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        font:700 16px/1.5em Lato, sans-serif;
        text-decoration: none!important;
    }
    .sand_menu .cats_toggle svg {
        margin-left: 10px;
    }
    .sand_menu .cats_toggle.active svg {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    .sand_menu .cats-sand-menu {
        padding: 15px 0 15px 5px;
        display: none;
    }
    .sand_menu .cats-sand-menu.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .sand_menu .cats-sand-menu li {
        padding-left: 22px;
        position: relative;
        margin-bottom: 15px;
    }
    .sand_menu .cats-sand-menu li:last-child {
        margin-bottom: 0;
    }
    .sand_menu .cats-sand-menu li:before {
        content:"";
        position: absolute;
        left: 0;
        width: 12px;
        height: 22px;
        background: url('../icons/list_gold.svg') 50% / contain no-repeat;
    }
    .sand_menu .cats-sand-menu li a {
        color:#464646;
        font:400 14px/1.5em LAto, sans-serif ;
    }
    .sand_menu .links a {
        color:#464646;
        font:700 16px/1.5em Lato, sans-serif;
    }
    .sand_menu .links li {
        margin-top: 18px;
    }
    .sand_menu .langs {
        margin-top: 32px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .sand_menu .langs img {
        margin-right: 5px;
        height: 100%;
    }
    .sand_menu .langs .btn-group > .btn {
        color:#464646;
        padding: 5px 7px;
        font:500 16px/1.5em Lato, sans-serif;
    }
    .sand_menu .langs #form-language .btn-group > .btn.dropdown-toggle {
        color:#ffffff;
        background: #ab9488;
    }

    .sand_menu .langs #form-language .btn-group  .dropdown-menu {
        background: #ffffff;
        color: #464646;
    }
    .sand_menu .langs #form-language .btn-group  .dropdown-menu {

    }
    .sand_menu .langs .btn-group > .dropdown-menu{
        -webkit-box-shadow: none;
        box-shadow: none;
        background: transparent;
        min-width: 0;
        margin: 0;
        padding: 0;
        position: relative;
        display: block;
        border:0;
    }
    .sand_menu .langs .btn-group > .dropdown-menu .btn {
        color:#A2A2A2;
        padding: 5px 7px;
        font:500 16px/1.5em Lato, sans-serif;
    }
    .header.fix.sticky .mobile_bar .sand .main,.header.fix.sticky .mobile_bar .sand .main:after,.header.fix.sticky .mobile_bar .sand .main:before,.header.fix.sticky .mobile_bar .sand .rect {
        background: #A2A2A2;
    }
    #tm-newsletter #tm-newsletter-form .box-content .newsletter-description {
        max-width: 100%;
        font-size: 16px;
    }
    #tm-newsletter #tm-newsletter-form {
        padding: 24px 16px;
    }
    #tm-newsletter #tm-newsletter-form .tm-login-form input {
        font-size: 18px;
    }
    #tm-newsletter #tm-newsletter-form .btn-primary {
        font-size: 16px;
        line-height: 1;
    }
    .footer nav li a {
        font-size: 14px;
        font-weight: 400;
        word-break: break-word;
    }
    .footer .wrap .col:nth-of-type(2), .footer .wrap .col:nth-of-type(3) {
        width: calc(50% - 15px);
    }
    .footer .wrap .col:nth-of-type(3){
        margin-right: 0;
    }
    .footer .f_conts li svg {
        width: 16px;
        margin-top: 3px;
    }
    .footer .f_conts li {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
    .footer .f_conts li:last-child {
        line-height: 1;
    }
    .cat_wall .owl-nav {
        left: 0;
        margin-top: 10px !important;
    }
    .featured_cats_column h2, .featured_block .wrap h2,.command h2 {
        font-size: 24px;
        text-align: left;
        max-width: 370px;
        -ms-flex-item-align: start;
        align-self: flex-start;
    }
    .featured_block .wrap .descr,.command .descr {
        text-align: left;
        font-size: 14px;
        max-width: 370px;
        -ms-flex-item-align: start;
        align-self: flex-start;
        margin-left: 0;
    }
    .featured_block .wrap .items {
        display: block;
        margin-bottom: 10px;
    }
    .featured_block .wrap .owl-nav {
        margin-top: 10px!important;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
    .featured_block .wrap .owl-nav button {
        background: #A2887A!important;
        width: 50px;
        height: 50px;
        margin-left: 10px;
        opacity: 1;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }
    .featured_block .wrap .more {
        width: 100%;
    }
    .faq_container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        padding: 40px 0 0;
        background: #F8F8F8;
    }
    .faq_container .faq-area {
        padding: 0;
        max-width: 90%;
        margin: 0 auto;
    }
    .faq_container .bg {
        width: 100%;
        height: 70vh;
    }
    .command .items {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .command .items .item:not(:last-child) {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .header._white {
        border-bottom: 0;
    }
    .product-block .items .product-layout {
        width: calc(100% / 2 - 9px);
    }
    .product-block .items .product-layout:nth-of-type(3n) {
        margin-right: 12px;
    }
    .product-block .items .product-layout:nth-of-type(2n) {
        margin-right: 0;
    }
    .product-gallery-block {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .product-gallery-block .product_page-left {
        width: 100%;
    }
    .product-gallery-block .product_page-left .product-gallery .image-thumb {
        margin-top: 5px;
        margin-bottom: 30px;
    }
    .product-gallery-block .product_page-left .product-gallery .image-thumb #productGallery li {
        height: 40px;
    }
    .product-gallery-block .product_page-left .product-gallery .image-thumb #productGallery li img {
        width: 100%;
        height: 100%;
    }
    .product-gallery-block .product_page-right {
        width: 100%;
    }
    .product-gallery-block .product_page-right .general_info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .min_check_lay {
        -webkit-box-ordinal-group:1;
        -ms-flex-order:0;
        order:0;
    }
    .product-rating-status {
        -webkit-box-ordinal-group:2;
        -ms-flex-order:1;
        order:1;
    }
    .product_page-right h1 {
        -webkit-box-ordinal-group:3;
        -ms-flex-order:2;
        order:2;
    }
    .product_page-right .double {
        -webkit-box-ordinal-group:4;
        -ms-flex-order:3;
        order:3;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .product_page-right .double .price-section {
        width: 50%;
        text-align: left;
        font:600 24px Lato, sans-serif;
        color: #464646;
        display: block;
    }
    .product_page-right .double .price-section span {
        color: #464646;

    }
    .product_page-right .double .price-section span.price-old {
        font:600 20px/1 Lato, sans-serif;
        margin-left: 10px;
        text-decoration: line-through;
        color: #979797;

    }
    .product_page-right .double .price-section {
        width: 50%;
    }
    .inprod_to_action {
        -webkit-box-ordinal-group:5;
        -ms-flex-order:4;
        order:4;
    }
    .product_page-right .sku {
        -webkit-box-ordinal-group:6;
        -ms-flex-order:5;
        order:5;
    }
    .product_page-right .product_tabs {
        -webkit-box-ordinal-group:7;
        -ms-flex-order:6;
        order:6;
    }
    .product-rating-status .rating {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
    .product_page-right h1 {
        font-size: 18px;
    }
    .product_page-right .double .stock {
        padding: 8px 14px;
        margin-bottom: 10px;
    }
    .product_page-right .double .reward {
        width: 100%;
    }
    .product_page-right .double .reward .info {
        -webkit-box-flex:1;
        -ms-flex:1;
        flex:1;
    }
    .in_product_butts .price-section {
        display: none;
    }
    .blog_page .blog_list .blog_article {
        width: 100%;
        margin-right: 0;
    }
    .land_hero .container .wrap .big-toptext1 h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .land_hero .container .wrap {
        max-width: 100%;
        padding: 24px 16px 24px 16px;
    }
    .fish_box.lands .container .row {
        padding: 0 15px;
    }
    .fish_box.lands .container:nth-of-type(1) .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .fish_box.lands .container .content {
        max-width: 100%;
    }
    .fish_box.lands .container .content .bgfon-text {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }
    .fish_box.lands .container:nth-of-type(1) .content .bigtitle:before {
        margin: 40px auto 30px;
    }
    .fish_box.lands .container:nth-of-type(1) .content .bigtitle, .fish_box.lands .container:last-child .content .bigtitle {
        font-size: 24px;
    }
    .fish_box.lands .container:nth-of-type(1) .content .fish-smtext, .fish_box.lands .container:nth-of-type(1) .content .fish-smtext p {
        font-size: 16px;
    }
    .fish_box.lands .container:nth-of-type(odd) .img {
        left:0;
        max-width: 100%;
        width: 100%;
        top:40px;
    }
    .fish_box.lands .container:nth-of-type(even) > .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .fish_box.lands .container:not(:nth-of-type(1)) .content {
        max-width: 100%;
    }
    .fish_box.lands .container:not(:nth-of-type(1)) .img {
        max-width: 100%;
        margin-top: 30px;
    }
    .fish_box.lands .container .content .bigtitle {
        font-weight: 600;
        font-size: 16px;
    }
    .fish_box.lands .container .content .bigtitle {
        font-weight: 600;
        font-size: 16px;
    }
    .fish_box.lands .container .content .fish-smtext, .fish_box.lands .container .content .fish-smtext p {
        font-size: 16px;
    }
    .fish_box.lands .container:nth-of-type(1) {
        margin-bottom: 100px;
    }
    .fish_box.lands .container .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .fish_box.lands .container:not(:nth-of-type(1)) .img {
        top:0;
        z-index: 1;
    }
    .fish_box.lands .container:last-child:before {
        top:-50px;
        bottom:-50px;
        height: calc(100% + 100px);
    }
    .colorcustom.bigblock .row {
        padding: 0 2.5%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .colorcustom.bigblock {
        min-height: 620px;
    }
    .bigblock.coloradv {
        padding: 30px 0;
    }
    .bigblock.coloradv .bigtitle {
        font-size: 24px;
    }
    .bigblock.coloradv .fish_zxc {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }
    .bigblock.coloradv .fish_zxc .item:not(:last-child) {
        margin-right: 0;
        margin-bottom: 35px;
    }
    .bigblock.coloradv .fish_zxc .item .b {
        margin-bottom: 5px;
    }
    .fish_box.lands .container:last-child:before {
        bottom: 0px;
        height: calc(100% + 70px);
    }
    .colorcustom.bigblock .row .middletext {
        max-width: 95%;
    }
    .land_hero.forrest .container .wrap .big-toptext1 h1 {
        font: 500 40px/1em Roboto Slab, serif;
    }
    .land_hero.forrest .container .wrap .big-toptext3 {
        font-size: 15px;
    }
    .colorcustom.bigblock.forrest .container {
        padding: 20px 15px;
    }
    .fish_box.forrest {
        margin-top: 40px;
    }
    .fish_box.forrest h2 {
        font: 500 24px/1.2em Roboto Slab, serif;
        margin-bottom: 20px;
    }
    .fish_box.forrest .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        max-width: 95vw;
        margin: 0 auto;
    }
    .fish_box.forrest .container:nth-of-type(even) .row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .fish_box.forrest .container .row > div {
        width: 100%;
    }
    .fish_box.forrest .container .row .content .bgfon-text,.fish_box.forrest .container:nth-of-type(even) .row .content .bgfon-text {
        padding-top: 25px;
        padding-left: 25px;
    }
    #menu3.forrest {
        padding: 40px 0;
    }
    .bigblock.forrest .items .item {
        padding: 32px 25px;
    }
    .bigblock.forrest .zxc-text {
        font-size: 14px;
    }
    .bigblock.forrest .more {
        padding: 12px 15px;
        font-size: 14px;
        margin-top: 40px;
        max-width: 95vw;
        width: 100%;
        text-align: center;
    }
    .contacts_page .container form {
        padding: 25px 20px 30px;
    }
    .contacts_page .container form h1 {
        font-size: 24px;
        text-align: center;
    }
    .total_wishlist .totals {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .total_wishlist {
        margin-bottom: 0;
    }
    .total_wishlist .totals .text {
        font-size: 14px;
    }
    .total_wishlist .totals .amount {
        font-size: 18px;
        margin-bottom: 15px;
        margin-top: 7px;
    }
    .total_wishlist .totals .buy_all {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    .simple_register_content {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
    .simple_register_content .altern {
        padding-left: 0;
        padding-bottom: 20px;
        width: 100%;
    }
    .simple_register_content form {
        width: 100%;
        padding-right: 0;
        padding-top: 20px;
        border-right:0;
        border-top: 1px solid;
    }
    .sand_menu {
        max-width: 100%;
    }
    .header #search input {
        min-width: auto;
    }
    .in_prod_reviews > .double {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .in_prod_reviews .double .review_leave {
        text-align: center;
        margin-top: 20px;
    }
    #form-review .close {
        margin-top: 8px;
    }
    .review-form-title {
        margin-bottom: 18px;
    }
    .product-reviews-tab {
        padding: 22px 16px;
    }
    #reviews_form_title{

    }
    #reviews_form .stars > .control-label {
        text-align: center;
        margin-bottom: 18px;
    }
    #reviews_form .star-rating__ico svg {
        width: 24px;
        height: 24px;
    }
    #reviews_form .star-rating__ico:last-child {
        padding-left: 0;
    }
    #reviews_form input[type="text"] {
        margin-bottom: 5px;
    }
    #reviews_form .buttons {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        width: 100%;
    }
    #reviews_form .buttons button {
        width: 100%;
    }
    #reviews_form .buttons button.cancel {
        margin-top: 10px;
        border-radius: 0;
    }
    .product-reviews-tab {
        max-height: 95vh;
        overflow: auto;
    }
    .related-block .product-block .items .product-layout:nth-of-type(3n), .bestsellers .product-block .items .product-layout:nth-of-type(3n) {
        margin-right: 0;
    }
    #cart .double {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        margin-bottom: 0;
    }
    #cart .double .tree,#cart .double .totals {
        width: 100%;
    }
    #cart .butts a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    #cart .double .tree .content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    #cart .double .tree .content p {
        max-width: 50%;
    }
    #cart .double .tree .content img {
        max-width: 48%;
    }
    #cart .butts {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    #cart .butts a {
        width: 100%;
        margin-top: 5px;
    }
    .orders_list .order_item .average tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .orders_list .order_item .average tr td {
        margin-bottom: 10px;
    }
    .orders_list .order_item tr td:nth-of-type(1) {
        width: 100%;
    }
    .info_order_pan {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .info_order_pan .det {
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid rgba(162, 136, 122, 0.1);
    }
    .info_order_pan .det table thead td:not(:nth-of-type(1)) {
        display: none;
    }
    .info_order_pan .det table tbody tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .info_order_pan .det table td.tot, .info_order_pan .det table td.quan {
        width: 50%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: left;
    }
    .info_order_pan .det table .tot span, .info_order_pan .det table .quan span {
        display: block;
        color: #A2A2A2;
        font:400 12px Lato, sans-serif;
        margin-bottom: 7px;
    }

    .info_order_pan .det table tfoot tr {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .info_order_pan .det table tfoot tr td {
        width: 50% !important;
    }
    .info_order_pan .det table tfoot tr td:nth-of-type(3) {
        display: none;
    }
    .info_order_pan .det table {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .acc_cont .product-block {
        margin: 0;
    }
    .total_wishlist .totals .buy_all {
        margin-bottom: 12px;
    }
    .in_prod_reviews .content .wr {
        flex-direction: column;
    }
    .in_prod_reviews .content .wr .im {
        height: 40vh;
        object-fit: cover;
        object-position: 0% 0%;
    }
    .in_prod_reviews .content .wr .im img {
        height: 100%;
        min-width: 100%;
        width: 100%;
        object-fit: cover;
        object-position: 0% 50%;
    }
    .insta_block .lay {
        width: 100%;
    }
    .footer .socials {
        margin-top: 25px;
    }
    .ocf-offcanvas .ocfilter-mobile-handle .btn {
        padding: 5px 8px;
    }
    .ocf-offcanvas .ocfilter-mobile-handle {
        top:31%;
    }
    .colorcustom.bigblock.forrest .row .img {
        max-width: 100%;
    }
    .colorcustom.bigblock.forrest .row .img img {
        max-width: 300px;
    }
}

@media screen and (max-width: 380px) {
    .header #search input {
        -webkit-box-flex:1;
        -ms-flex:1;
        flex:1;
    }
    .sand_menu #search, .sand_menu #search .wrap {
        width: 100%;
    }
    .sand_menu {
        width: 100%;
    }
    .product-block .items .product-layout {
        width: 100%;
    }
    .product-block .items .product-layout:nth-of-type(2n) {
        margin-right: 0;
    }
    .product-block .items .product-layout {
        margin-right: 0;
    }
    .in_product_butts .butts button {
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

}
@media screen and (max-width: 760px) {
    #modal-register_notification{
        padding: 17px;

    }
    .modal-dialog {
        min-width: auto;
        margin: 0 10px;
    }
}


.lds-ellipsis {
    margin: 0 auto;
    position: relative;
    width: 80px;
    height: 80px
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #333;
    animation-timing-function: cubic-bezier(0,1,1,0)
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 .6s infinite
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 .6s infinite
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 .6s infinite
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 .6s infinite
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}
a#load_products_more:visited:hover {
    color: white !important;
}
span.img_messenger {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
}




/********************** up ******************/


/* block 1 */
.land-28 .land_hero .container .wrap {
    max-width: 540px;
    padding-left: 0;
}

.land-28 .land_hero .container .wrap:before{
    background: rgba(0, 0, 0, 0.4);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.land-28 .land_hero .container .mouse{
    display: none;
}
.land-28 .land_hero .container .wrap .big-toptext1 h1{
    font-family: Roboto Slab;
    font-size: 42px;
    font-weight: 600;
    line-height: 59px;
    letter-spacing: 0em;
    text-align: left;

}
.land-28 .land_hero .container .wrap .big-toptext3 p{
    font-family: Lato;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0em;
    text-align: left;
}




/* block 2 */
.land-28 .fish_box.lands .container.block_0 {
    margin-bottom: 0;
}
.land-28 .fish_box.lands .container.block_0 .img {
    left: 0;
    margin-right: 70px;
    padding-left: 15px;
    top: 0;
}
.land-28 .fish_box.lands .container.block_0 .img img{
    border-radius: 8px;
    position: relative;
}
.land-28 #menu5.fish_box.lands .container.block_0 .bigtitle{
    font-family: Roboto Slab;
}
.land-28 .fish_box.lands .container:nth-of-type(1) .content .bigtitle:before {
    display: none;
}


.land-28 #menu5 .fish-smtext p {
    font-size: 20px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.land-28 #menu5 .fish-smtext ul {
    font-size: 20px;
}

.land-28 #menu5 .fish-smtext ul li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
    line-height: 1.5;
}
.land-28 .icon-branch {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: url(/image/catalog/landing/mizhnarodna-dostavka/branch.svg) no-repeat;
    background-position: center;
}

.land-28 .fish_box.lands .container > .row {
    padding-top: 100px;
    padding-bottom: 100px;
}



/* block 3 */
.land-28 .fish_box.lands {
    background: url(/catalog/view/theme/theme763/icons/texture_large.svg) 48% / cover no-repeat,#F8F8F8;
}
.land-28 .fish_box.lands .container.block_1 {
    padding-bottom: 0;
}

.land-28 .fish_box.lands .container.block_1 .content {
    max-width: 100%;
    padding-right: 50px
}

.land-28 .fish_box.lands .container.block_1 .content .bigtitle {
    font-family: Lato;
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    text-align: left;
    margin-bottom: 25px;
    max-width: 600px
}

.land-28 .fish_box.lands .container.block_1 .content .middletitle p {
    margin-bottom: 12px
}

.land-28 .fish_box.lands .container.block_1 .content .fish-smtext {
    padding-top: 80px;
    max-width: 600px
}

.land-28 .fish_box.lands .container.block_1 .content .fish-smtext .row-partner {
    display: flex;
    flex-direction: column;
    padding-top: 20px
}

.land-28 .fish_box.lands .container.block_1 .content .fish-smtext .top-partner {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.land-28 .fish_box.lands .container.block_1 .content .fish-smtext .top-partner span, .land-28 .fish_box.lands .container.block_1 .content .fish-smtext .bottom-partner {
    font-family: Lato;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    padding: 16px;
    background: #EEE9E7;
    border-radius: 12px;
    width: 190px;
    height: 60px;
    text-align: center
}

.land-28 .fish_box.lands .container.block_1 .content .fish-smtext .bottom-partner {
    margin-top: 15px;
    width: 100%
}




.land-28 .block_1 .content {
    width: 300px;
    flex: none;
}
.land-28 .block_1 .img {
    width: 100%;
    max-width: 100% !important;
}
.land-28-img-items {
    display: flex;
    margin-left: -12px;
    margin-right: -12px;
}
.land-28-img-item {
    width: calc(100%/3 - 24px);
    margin: 0 12px;
}


.land-28-img-item {
    border-radius: 8px;
    background: #FFF;
    box-shadow: 2px 6px 24px 0px rgba(0, 0, 0, 0.08);
}
.land-28-img-text {
    padding: 16px;
    padding-top: 13px;
    text-align: left;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
}




/* block 4 */
.l-28-table-wrap {
    padding: 100px 0;
    font-family: Montserrat Alternates;
}
.l-28-table-wrap .bigtitle {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 24px;
}
.l-28-table-wrap p {
    font-family: Lato;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 25px;
}
.l-28-table-wrap p:first-of-type {
    font-size: 24px;
}


.l-28-table {
    margin: 40px 0;
}

.l-28-table th,
.l-28-table td {
    padding: 20px 10px !important;
    text-align: center;
    width: calc(100%/6);
    vertical-align: middle !important;
    font-size: 17px;
}

.l-28-table th {
    background: #E3DBD7;
    font-weight: 600 !important;
    font-size: 18px;
}
.l-28-table th:first-of-type,
.l-28-table td:first-of-type {
    background: #A2887A;
    font-size: 19px;
    font-weight: 600;
    line-height: 110%;
    color: #fff;
}

.l-28-table th,
.l-28-table td {
    border: 1px solid #A2A2A2 !important;
}
.l-28-table th:first-of-type {
    border-bottom-color: #fff !important;
}
.l-28-table tbody tr:first-of-type td:first-of-type {
    border-bottom-color: #fff !important;
}

.l-28-order-btn-wrap .l-28-order-item-img {
    text-align: center;
}
.l-28-order-btn {
    text-align: center;
    margin-top: 35px;
}
.l-28-order-btn a {
    padding: 16px 56px 16px 32px;
    background: #fff;
    border-radius: 6px;
    color: #464646;
    text-align: center;
    font-family: Montserrat Alternates;
    font-size: 18px;
    font-weight: 600;
    line-height: 130%;
    display: inline-block;
    position: relative;
}
.l-28-order-btn a:after {
    content: "";
    position: absolute;
    background: url(/image/catalog/landing/mizhnarodna-dostavka/arrow_direction.svg) no-repeat;;
    width: 24px;
    height: 24px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}




/* block 5 */
.l-28-order-wrap {
    background: #7A675D;
    color: #fff;
    padding: 100px 0;
}
.l-28-order-wrap .bigtitle {
    font-family: Montserrat Alternates;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    text-align: center;
    margin-bottom: 35px;
}
.l-28-order-items {
    display: flex;
    margin-left: -8px;
    margin-right: -8px;
    flex-flow: wrap;
}
.l-28-order-items img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}
.l-28-order-item {
    background: rgba(255, 255, 255, 0.06);
    padding: 24px 32px;
    width: calc(100%/2 - 16px);
    margin: 8px;
}

.l-28-order-item-text1 {
    text-transform: uppercase;
    font-family: Montserrat Alternates;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    text-transform: uppercase;
}
.l-28-order-item-text2 {
    font-family: Lato;
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    margin-top: 12px;
}
.l-28-order-item-img {
    margin-top: 24px;
    text-align: center;
}



.l-28-order-btn {
    text-align: center;
    margin-top: 35px;
}
.l-28-order-btn a {
    padding: 16px 56px 16px 32px;
    background: #fff;
    border-radius: 6px;
    color: #464646;
    text-align: center;
    font-family: Montserrat Alternates;
    font-size: 18px;
    font-weight: 600;
    line-height: 130%;
    display: inline-block;
    position: relative;
    transition: .2s;
}
.l-28-order-btn a:after {
    content: "";
    position: absolute;
    background: url(/image/catalog/landing/mizhnarodna-dostavka/arrow_direction.svg) no-repeat;;
    width: 24px;
    height: 24px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.l-28-order-btn a:hover {
    box-shadow: 0 0 10px 1px rgba(0,0,0,.3);
}
.l-28-order-item-text2 span {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}


/***** adaptive *****/
@media (max-width: 1199px) {
    body .land-28 .land_hero .container .wrap .big-toptext1 h1 {
        font-size: 24px;
        line-height: 34px;
    }

    body .land-28 .land_hero .container .wrap {
        margin: auto;
        max-width: 100%;
        padding: 32px 16px 34px;
        width: 100%;
        height: auto;
        min-height: 0;
    }
    body .land-28 .land_hero .container .wrap:before {
        width: 100%;
    }

    body .land-28 .land_hero .big-toptext1 h1 {
        margin: 0 !important;
        font-size: 24px !important;
        font-style: normal;
        font-weight: 600 !important;
        line-height: 140% !important;
    }
    body .land-28 .land_hero .container .wrap:after {
        width: 100%;
    }


}


@media (max-width: 760px) {
    .land-28 #menu5 .block_0 .bgfon-text {
        margin-top: 50px;
        margin-left: 0;
    }
    .land-28 #menu5.fish_box.lands .container.block_0 .content .bigtitle:before {
        margin: 0 10px 25px;
    }
    .land-28 .fish_box.lands .container:nth-of-type(1) .content .bigtitle:before {
        content: "";
        background: url(/catalog/view/theme/theme763/icons/logo_mob_white.svg) 50% / contain no-repeat;
        width: 100px;
        height: 70px;
        margin-bottom: 35px;
        display: block;
    }
    .land-28 #menu5 .block_0 .bgfon-text .bigtitle {
        font-size: 26px;
        text-align: left;
        width: 100%;
        font-weight: 600;
        line-height: 110%;
    }
    .land-28 .fish_box.lands .container.block_0 .content .fish-smtext p{
        font-size: 14px;
        line-height: 21px;
    }
    .land-28 #menu3 .container .row{
        margin-right: 15px;
        margin-left: 15px;
    }
    .land-28 #menu3 .bigtitle{
        font-size: 22px;
        line-height: 29px;
        text-align: left;
        margin-bottom: 26px;
    }
    .land-28 .fish_box.lands .container.block_1 .content .bigtitle{
        font-size: 18px;
        line-height: 25px;
    }
    .land-28 #menu5 .block_0 .bgfon-text .fish-smtext {
        text-align: left;
    }
    .land-28 #menu5  .block_0 .img:before {
        content: none;
    }
    .land-28 .fish_box.lands .container.block_0 {
        padding-bottom: 100px;
    }
    .land-28 .fish_box.lands .container.block_0 .content:before {
        top: 50px;
        width: 100%;
    }
    .land-28 .fish_box.lands .container.block_1 .content{
        padding: 0;
    }
    .land-28 .fish_box.lands .container.block_1 .fish-smtext>p{
        font-size: 18px;
        line-height: 26px;
    }
    .land-28 .fish_box.lands .container.block_1 .content .bigtitle,
    .land-28 .fish_box.lands .container.block_1 .content .middletitle{
        text-align: left;
    }
    .land-28 .fish_box.lands .container.block_1 .content .fish-smtext .top-partner{
        align-items: center;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .land-28 .fish_box.lands .container.block_1 .content .fish-smtext .top-partner span{
        width: 100%;
        /*margin-bottom: 8px;*/
    }
    .land-28 .fish_box.lands .container.block_1 .content .fish-smtext .top-partner span,
    .land-28 .fish_box.lands .container.block_1 .content .fish-smtext .bottom-partner{
        font-size: 14px;
        line-height: 14px;
        height: 45px;
        margin-bottom: 8px;
    }
    .land-28 .fish_box.lands .container.block_1 .content .fish-smtext .bottom-partner {
        margin-top: 0px;
        width: 100%;
    }
    .land-28 .container.block_1 {
        margin-bottom: 0px !important;
    }
    .land-28 .container.block_2 {
        display: none;
    }


    .land-28 #menu3 {
        padding: 50px 0;
    }
    .land-28 #menu3 .fish_zxc {

        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-direction: column;
        flex-wrap: nowrap;
    }
    .land-28 #menu3 .fish_zxc .item {
        width: 90%;
        margin: 0;
        display: flex;
        margin-bottom: 15px;
        height: 47px;
    }
    .land-28 #menu3 .fish_zxc .item:before{
        margin-bottom: 0;
    }
    .land-28 #menu3 .zxc333-text .b{
        margin-left: 15px;
        font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif;
        font-size: 14px;
        font-weight: 400;
        line-height: 21px;
        letter-spacing: 0em;
        text-align: left;

    }
    .land-28 #menu7.colorcustom.bigblock .bg:before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        background: url(/image/catalog/lands/gurt_bacgraund_2_mobile.jpg) 50% 50% / contain no-repeat rgb(0 0 0 / 60%);
        background-size: 251%;
        background-repeat: no-repeat;
        background-position: bottom;
    }
    .land-28 #menu7.colorcustom.bigblock .bg img {
        display: none;
    }
    .land-28 #menu7 .row {
        margin-top: 100px;
        width: 100%;
        height: auto;
    }
    .land-28 #menu7 .row .middletext {
        padding: 0;
    }
    .land-28 #menu7 .row .middletext .text_1 {
        font: 500 18px/26px Lato, sans-serif;
    }
    .land-28 #menu7 .row .middletext .text_2 {
        font-size: 14px;
        line-height: 21px;
        padding: 24px 0;
    }
    .land-28 #menu7 .row .middletext .text_3 a {
        font-size: 16px;
    }
    .land-28 #menu7 .bottom-text .text_1 {
        font-size: 22px;
        font-weight: 600;
    }
    .land-28 #menu7 .bottom-text .text_2 {
        font-size: 14px;
        line-height: 21px;
    }
    .land-28 #menu7 .bottom-text .to_cat {
        font-size: 16px;
        line-height:21px;
        text-align: center;
    }


    .land-28 .fish_box.lands .container .row {
        padding: 0 16px !important;
    }



    .land-28 #menu5 .fish-smtext p,
    .land-28 #menu5 .fish-smtext ul {
        font-size: 16px;
    }
    .land-28 .fish_box.lands .container.block_0 .img {
        padding: 0;
        margin-top: 30px;
        margin-right: 0;
    }
    .land-28 .fish_box.lands .container.block_0 {
        padding-bottom: 50px;
    }






    .land-28 .fish_box.lands .container.block_1 > .row {
        flex-flow: wrap;
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }
    .land-28 .block_1 .img {
        order: 1;
        margin-top: 30px;
    }
    .land-28 .block_1 .content {
        width: 100%;
    }
    .land-28 .fish_box.lands .container.block_1 .content .bigtitle {
        font-size: 26px;
        font-style: normal;
        font-weight: 600;
        line-height: 110%;
        font-family: Montserrat Alternates;
    }
    .land-28 .fish_box.lands .container.block_1 .content .middletitle p {
        font-size: 16px !important;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    .land-28 .fish_box.lands .container.block_1 .content .middletitle p:last-of-type {
        margin-bottom: 0;
    }

    .land-28-img-items {
        margin: 0;
        flex-flow: wrap;
        display: block;
    }
    .land-28-img-item {
        margin: 0 auto 16px;
        width: 100%;
        max-width: 400px;
    }
    .land-28-img-text {
        font-size: 16px;
    }




    .l-28-table-wrap {
        padding: 50px 0;
    }
    .l-28-table-wrap .bigtitle {
        font-size: 26px;
        line-height: 110%;
        margin-bottom: 16px;
    }
    .l-28-table-wrap p {
        font-size: 16px !important;
        margin-bottom: 20px;
    }
    .l-28-table-wrap p:last-of-type {
        margin-bottom: 0;
    }
    .l-28-table {
        margin: 25px 0;
    }

    .l-28-table th:first-of-type, .l-28-table td:first-of-type {
        font-size: 10px;
    }
    .l-28-table th,
    .l-28-table td {
        padding: 10px 4px !important;
        font-size: 10px;
    }






    .l-28-order-wrap {
        padding: 50px 0;
    }
    .l-28-order-wrap .bigtitle {
        font-size: 26px;
        line-height: 110%;
        text-align: left;
        margin-bottom: 25px;
    }
    .l-28-order-items {
        margin: 0;
        display: block
    }
    .l-28-order-item {
        margin: 0 auto 8px;
        width: 100%;
        max-width: 400px;
        padding: 0;
    }
    .l-28-order-item-text1,
    .l-28-order-item-text2 {
        padding: 20px;
    }
    .l-28-order-item-text1 {
        padding-bottom: 0;
        font-size: 18px;
    }
    .l-28-order-item-text2 {
        padding-top: 0;
        font-size: 16px;
    }
    .l-28-order-item-img {
        margin-top: 0;
    }
    .l-28-order-btn-wrap .l-28-order-item-img img {
        width: 100px;
    }
    .l-28-order-btn {
        margin-top: 16px;
    }
    .l-28-order-btn-wrap {
        padding-bottom: 16px;
    }
}



@media (max-width: 760px) and (min-width: 460px) {
    .land-28 .fish_box.lands .container.block_0 .img {
        top: 70px;
        margin-right: 15px;
    }
}






/********** library **********/
.lib-search-wrap {
    background: #7A675D;
    color: #fff;
    padding-bottom: 200px;
}
.lib-search-wrap .breadcrumb a {
    color: #fff;
}
.lib-search-wrap .breadcrumb a:hover {
    text-decoration: underline !important;
}
.lib-search-wrap .breadcrumb span {
    color: #ccc;
}
.lib-search-wrap .breadcrumb>li+li:before {
    border-color: #fff;
}


.lib-main-title {
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    font-family: Montserrat Alternates;
    margin-top: 40px;
}
.lib-main-description {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    line-height: 150%
}
.lib-search {
    text-align: center;
}
.lib-search-phrase-items {
    text-align: center;
}
.lib-search-input {
    background: #fff url(/catalog/view/theme/theme763/icons/library/search.svg) no-repeat;
    background-position: left 16px center;
    height: 56px;
    padding: 16px;
    padding-left: 52px;


    font-size: 18px;
    font-weight: 500;
    line-height: 120%;
    color: #464646;
    width: 560px;
    border-radius: 6px;
    border: none;
    outline: none;
}
.lib-search-input::placeholder {
    color: #A2A2A2;
}

.lib-search {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}
.lib-search-btn {
    padding: 16px 56px 16px 32px;
    border-radius: 6px;
    background: #A2887A;
    margin-left: 16px;
    position: relative;
}
.lib-search-btn:after {
    position: absolute;
    content: "";
    background: url(/catalog/view/theme/theme763/icons/library/arrow_direction_right.svg) no-repeat;
    width: 24px;
    height: 24px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.lib-search-btn:hover,
.lib-search-btn:active {
    background: #AD968A;
}

.lib-search-phrase-items {
    margin-top: 24px;
}
.lib-search-phrase-items ul {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500
}
.lib-search-phrase-items li {
    margin-right: 8px;
}
.lib-search-phrase-items li:first-of-type {
    margin-right: 20px;
}
.lib-search-phrase-items li:last-of-type {
    margin-right: 0;
}
.lib-search-phrase-items .lib-search-phrase-item {
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.10);
    padding: 6px 8px;
    color: #fff;
    display: block;
}
.lib-search-phrase-items .lib-search-phrase-item:hover,
.lib-search-phrase-items .lib-search-phrase-item:active {
    background: rgba(255, 255, 255, 0.30);
}




.lib-cat-items-wrap {
    position: relative;
    padding-bottom: 80px;
    margin-top: -130px;
}
.lib-cat-items {
    display: flex;
    margin-left: -12px;
    margin-right: -12px;
    flex-flow: wrap;
}
.lib-cat-item {
    width: calc(100%/3 - 24px);
    margin-left: 12px;
    margin-right: 12px;
    background: #F8F8F8;
    box-shadow: 2px 6px 51px 0px rgba(0, 0, 0, 0.11);
}
.lib-cat-item:hover,
.lib-cat-item:active {
    background: #E0E0E0;
    box-shadow: 2px 8px 51px 0px rgba(0, 0, 0, 0.19);
}

.lib-cat-item-name-wrap {
    padding: 32px 24px;
}
.lib-cat-item-name {
    color: #464646;
    font-family: Montserrat Alternates;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
}
.lib-cat-item-text {
    color: #858585;
    font-weight: 500;
    line-height: 150%;
    margin-top: 16px;
}

/*.lib-cat-items-wrap:before {*/
/*content: "";*/
/*position: absolute;*/
/*background: #fff;*/
/*left: 0;*/
/*bottom: 0;*/
/*width: 100%;*/
/*height: 100%;*/
/*z-index: -1;*/
/*}*/





.lib-cat-art-popular {
    padding: 80px 0 56px;
    background: #F8F8F8;
}
.lib-cat-art .lib-cat-item {
    margin-bottom: 24px;
    box-shadow: 2px 8px 10px 0px rgba(0, 0, 0, 0.08);
}
.lib-cat-art .lib-cat-item:hover,
.lib-cat-art .lib-cat-item:active {
    margin-bottom: 24px;
    box-shadow: 2px 10px 10px 0px rgba(0, 0, 0, 0.12);
    background: #F1F1F1;
}
.lib-cat-art .lib-cat-item-img {
    position: relative;
}
.lib-cat-art .lib-cat-item-name-wrap {
    padding: 20px 24px;
}
.lib-cat-art .lib-cat-item-name {
    font-size: 20px;
    line-height: 120%;
}
.lib-cat-art .lib-cat-item-text {
    margin-top: 10px;
}
.lib-cat-art .lib-cat-item-time {
    margin-top: 10px;
    color: #A2887A;
    font-weight: 500;
    line-height: 150%;
}

.lib-cat-art-title-wrap {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.lib-cat-art-title-text {
    font-family: Montserrat Alternates;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
}



.lib-cat-art-btn {
    padding: 16px 56px 16px 32px;
    border-radius: 6px;
    background: #A2887A;
    margin-left: 18px;
    position: relative;
    color: #fff;
    font-weight: 600;
    line-height: 130%;
    font-family: Montserrat Alternates;
    color: #fff !important;
    display: block;
}
.lib-cat-art-btn:after {
    position: absolute;
    content: "";
    background: url(/catalog/view/theme/theme763/icons/library/arrow_direction_right.svg) no-repeat;
    width: 24px;
    height: 24px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}
.lib-cat-art-btn:hover,
.lib-cat-art-btn:active {
    background: #7A675D;
}

.lib-cat-item-type {
    position: absolute;
    left: 10px;
    top: 10px;
    border-radius: 12px;
    background: #A2887A;
    padding: 6px 12px;
    color: #fff;
    font-family: Montserrat Alternates;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    text-transform: uppercase;
}




.lib-cat-art-new-slider {
    display: block;
    margin: 0;
}
.lib-cat-art-new-slider .owl-stage-outer {
    position: relative;
}
.lib-cat-art-new-slider .owl-stage-outer:before  {
    background: linear-gradient(270deg, #FFF 10%, rgba(255, 255, 255, 0.00) 100%);
    content: "";
    height: calc(100% - 64px);
    opacity: 1;
    position: absolute;
    right: 0;
    top: 32px;
    transition: all .3s;
    width: 120px;
    z-index: 9999;
}


.lib-cat-art-new-inner {
    display: flex;
    align-items: center;
}
.lib-cat-art-new-inner .lib-cat-art-title-wrap {
    display: block;
    width: 300px;
    flex: none;
    margin-right: 100px;
}
.lib-cat-art-new-inner .lib-cat-art-btn {
    margin-left: 0;
    margin-top: 40px;
}
.lib-cat-art-new-inner .lib-cat-art-title-description {
    margin-top: 24px;
}


.lib-cat-art-new-inner .lib-cat-item {
    display: block;
    width: 100%;
    margin: 0 !important;
}
.lib-cat-items-new-wrap {
    width: calc(100% - 400px);
}
.lib-cat-art-new-inner .owl-carousel {
    background: none;
}
.lib-cat-art-new-inner .owl-stage-outer {
    padding: 32px 0;
    margin-right: -12px;
    background: none;
}
.lib-cat-art-new-inner .owl-nav {
    text-align: right;
}
.lib-cat-art-new-inner .owl-nav .disabled {
    opacity: .5;
    color: #fff !important;
}
.lib-cat-art-new-inner .owl-nav .disabled svg path {
    stroke: #fff;
}
.lib-cat-art-new-inner button:not(.disabled) [class*=-button-next]:hover,
.lib-cat-art-new-inner button:not(.disabled) [class*=-button-prev]:hover {
    background: #fff !important;
    border: 2px solid var(--brown) !important;
}
.lib-cat-art-new-inner .bestseller-button-prev {
    margin-right: 12px;
}

.lib-cat-art-new {
    padding-top: 50px !important;
    padding-bottom: 70px !important;
}






.lib-search-input-wrap.active .lib-search-input {
    border-radius: 6px 6px 0 0;
}
.lib-search-input-wrap {
    position: relative;
    z-index: 1;
}
.lib-search-dropdown {
    position: absolute;
    left: 0;
    top: 56px;
    background: #fff;
    width: 100%;
    border-bottom: 1px solid #DDD;
    border-radius: 0 0 6px 6px;
}
.lib-search-dropdown ul {
    margin: 0;
}
.lib-search-dropdown li {
    border-top: 1px solid #DDD;
}
.lib-search-dropdown li {
    border-top: 1px solid #DDD;
}
.lib-search-dropdown-item {
    display: flex;
    height: 50px;
    color: #464646 !important;
    font-size: 16px;
    line-height: 120%;
    justify-content: center;
    align-items: center;
    padding: 5px 15px;
}
.lib-search-dropdown-item:hover {
    background: #F1F1F1;
}



.lib-search-page .lib-search-wrap {
    padding-bottom: 90px;
}



.lsc-title-wrap {
    background: #F8F8F8;
    padding-top: 60px;
    margin-bottom: -30px;
}
.lsc-title {
    font-family: Montserrat Alternates;
    font-size: 26px;
    font-weight: 600;
    line-height: 110%;
}
.lsc-result {
    margin-top: 20px;
}
.lsc-btn {
    margin-top: 40px;
}
.lsc-btn .lib-cat-art-btn {
    display: inline-block !important;
    margin-left: 0;
}


.lsc-btn-back {
    margin-top: 20px;
}
.lsc-btn-back .lib-cat-art-btn {
    padding-left: 56px;
    padding-right: 32px;
}
.lsc-btn-back .lib-cat-art-btn:after {
    transform: translateY(-50%) scale(-1);
    right: unset;
    left: 20px;
}


.lsc-empty-img {
    margin-top: 40px;
    margin-bottom: 100px;
}
.lsc-empty-img img {
    margin: 0 auto;
}

.lib-wrap > div:last-of-type {
    margin-bottom: -40px;
}




.lib-category-title h1 {
    font-family: Montserrat Alternates;
    font-size: 32px;
    font-weight: 600;
    line-height: 110%;
    margin-top: 32px !important;
}
.lib-categories {
    margin-top: 24px;
}
.lib-categories ul {
    display: flex;
}
.lib-categories ul li {
    margin-right: 8px;
}
.lib-categories ul li:last-of-type {
    margin-right: 0;
}
.lib-categories .lib-category {
    border-radius: 20px;
    border: 1px solid #A2A2A2;
    padding: 10px 16px;
    display: block;

    color: #464646 !important;
    font-family: Montserrat Alternates;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
}
.lib-categories .lib-category:hover,
.lib-categories .lib-category:active {
    background: #EFEFEF;
}
.lib-categories span.lib-category,
.lib-categories .lib-category.active {
    background: #A2887A !important;
    color: #fff !important;
}


.lib-cat-child-page .lib-cat-art-popular {
    background: none;
}

.lib-cat-empty {
    min-height: 500px;
}
.lib-cat-child-page .lib-cat-art-popular {
    padding-top: 50px;
}
.lib-cat-empty-text {
    font-size: 18px;
    margin: 30px 0 30px;
}


.lib-cat-child-page .lib-cat-art-popular {
    padding-bottom: 10px;
}
.lib-search-page .lsc-title-wrap-empty {
    padding: 0 !important;
}




.lib-cat-art-popular .lib-cat-item-name,
.lib-cat-art .lib-cat-item-name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 24px;
    height: calc(24px*2);
}
.lib-cat-art-popular .lib-cat-item-text,
.lib-cat-art .lib-cat-item-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 24px;
    height: calc(24px*3);
}


.lib-cat-art-new .lib-cat-item-name {
    -webkit-line-clamp: 3;
    line-height: 24px;
    height: calc(24px*3);
}
.lib-cat-art-new .lib-cat-item-text {
    -webkit-line-clamp: 5;
    line-height: 24px;
    height: calc(24px*5);
}


@media (max-width: 767px) {
    .lib-wrap .breadcrumb li,
    .lib-cat-child-page .breadcrumb li,
    .lib-article-page .breadcrumb li {
        display: none;
    }
    .lib-wrap .breadcrumb li:nth-last-child(2),
    .lib-cat-child-page .breadcrumb li:nth-last-child(2),
    .lib-article-page .breadcrumb li:nth-last-child(2) {
        display: block;
    }
    .lib-wrap .breadcrumb li:nth-last-child(2):before,
    .lib-cat-child-page .breadcrumb li:nth-last-child(2):before,
    .lib-article-page .breadcrumb li:nth-last-child(2):before {
        border: solid #fff;
        border-width: 0 2px 2px 0;
        display: inline-block;
        padding: 3px;
        transform: rotate( 135deg );
        content: "";
        margin-right: 12px;
        position: relative;
        top: -1px;
    }
    .lib-cat-child-page .breadcrumb,
    .lib-article-page .breadcrumb {
        padding-left: 0;
    }

    .lib-cat-child-page .breadcrumb li a {
        color: #A2887A;
    }
    .lib-cat-child-page .breadcrumb li:nth-last-child(2):before {
        border: solid #464646;
        border-width: 0 2px 2px 0;
    }


    .lib-search {
        position: relative;
        margin-top: 22px;
    }
    .lib-main-title {
        text-align: left;
        font-size: 26px;
        line-height: 110%;
        margin-top: 25px;
        margin-bottom: 12px;
    }
    .lib-main-description {
        text-align: left;
    }
    .lib-search-input {
        max-width: 100%;
        font-size: 14px;
        height: 44px;
        border-radius: 8px;
        background-size: 20px;
        background-position: left 12px center;
        padding-left: 44px;
    }
    .lib-search-input-wrap {
        width: 100%;
    }
    .lib-search-btn {
        position: absolute;
        z-index: 1;
        right: -1px;
        width: 44px;
        height: 44px;
        border-radius: 8px;
        font-size: 0;
        padding: 0;
        display: none;
    }
    .lib-search-btn:after {
        right: unset;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .lib-search-input-wrap.active .lib-search-input {
        border-radius: 8px 8px 0 0;
    }
    .lib-search-dropdown {
        top: 44px;
        border-radius: 0 0 8px 8px;
    }
    .lib-search-dropdown-item {
        height: 34px;
        font-size: 12px;
        justify-content: flex-start;
        padding: 5px 10px;
    }


    .lib-search-phrase-items {
        margin-top: 16px;
        font-size: 14px;
        font-weight: 400;
    }
    .lib-search-phrase-items ul {
        flex-flow: wrap;
        text-align: left;
        justify-content: flex-start;
    }
    .lib-search-phrase-items li {
        margin-bottom: 4px;
        margin-right: 4px;
    }
    .lib-search-phrase-items li:first-of-type {
        width: 100%;
        margin-bottom: 8px;
    }
    .lib-search-wrap {
        padding-bottom: 30px !important;
    }


    .lib-cat-items-wrap {
        position: relative;
        padding-top: 40px;
        padding-bottom: 40px;
        margin-top: 0;
    }
    .lib-cat-items {
        margin: 0;
        display: block;
    }
    .lib-cat-item {
        margin: 0;
        width: 100%;
    }
    .lib-cat-item-img {
        height: 80px;
        overflow: hidden;
    }
    .lib-cat-item-img img {
        margin-left: auto;
        margin-right: auto;
    }

    .lib-cat-item-name-wrap {
        padding: 16px;
    }
    .lib-cat-items-wrap .lib-cat-item-name {
        font-size: 18px;
    }
    .lib-cat-items-wrap .lib-cat-item-text {
        margin-top: 8px;
        font-size: 14px;
    }
    .lib-cat-item {
        margin-bottom: 20px !important;
        display: block;
        box-shadow: 2px 8px 9px 0px rgba(0, 0, 0, 0.10) !important;
        background: #F8F8F8;
    }




    .lib-cat-art-popular {
        padding: 40px 0 40px;
        background: #F8F8F8;
    }




    .lib-cat-art-title-wrap.mob {
        display: block;
        margin-bottom: 24px;
    }
    .lib-cat-art-title-wrap.mob .lib-cat-art-btn {
        display: block;
        background: none;
        color: #464646 !important;
        font-size: 26px;
        font-style: normal;
        font-weight: 600;
        line-height: 110%;
        margin-left: 0;
        padding: 0;
    }
    .lib-cat-art-title-wrap.mob .lib-cat-art-btn:after {
        filter: brightness(0) saturate(100%) invert(22%) sepia(46%) saturate(0%) hue-rotate(239deg) brightness(95%) contrast(84%);
        right: 10px;
    }




    .lib-cat-art-popular .lib-cat-item-img {
        height: auto;
        overflow: visible;
    }
    .lib-cat-art-popular .lib-cat-items .owl-item,
    .lib-a-products .mfilter-content-container .owl-item,
    .lib-a-products-1 .mfilter-content-container .owl-item {
        float: left;
    }
    .lib-cat-art-popular .lib-cat-items .owl-nav.disabled,
    .lib-cat-art-popular .lib-cat-items .owl-dots.disabled {
        display: none !important;
    }


    .lib-cat-art-popular .lib-cat-item-name {
        font-size: 12px;
        font-weight: 600;

        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        line-height: 13px;
        height: calc(13px*3);
    }
    .lib-cat-art-popular .lib-cat-item-text {
        font-size: 10px;
        font-style: normal;
        font-weight: 500;

        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        line-height: 12px;
        height: calc(12px*3);

        margin-top: 4px;
    }
    .lib-cat-art .lib-cat-item-name-wrap {
        padding: 8px;
    }
    .lib-cat-art .lib-cat-item-time {
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
        margin-top: 6px;
    }

    .lib-cat-item-type {
        font-size: 8px;
        font-style: normal;
        font-weight: 600;
        line-height: 110%;
        text-transform: uppercase;
        padding: 4px 8px;
        left: 5px;
        top: 5px;
    }






    .lib-cat-art-popular {
        padding: 16px 0;
    }
    .lib-cat-items-wrap + .lib-cat-art-popular {
        padding-top: 40px;
    }
    .lib-cat-art-popular .owl-item .lib-cat-item {
        margin-bottom: 0 !important;
    }





    /* cat child */
    .lib-category-title h1 {
        font-size: 26px;
        margin-top: 8px !important;
        margin-bottom: 0;
    }
    .lib-categories {
        position: fixed;
        left: 0;
        bottom: 0;
        background: #fff;
        z-index: 999;
        padding: 15px;
        margin: 0;
        width: 100%;
        overflow: auto;
        box-shadow: 0px -10px 20px 0px rgba(0, 0, 0, 0.20);
    }
    .lib-categories ul {
        margin: 0;
    }
    .lib-categories ul li {
        margin-right: 0;
    }
    .lib-categories .lib-category {
        font-size: 10px;
        line-height: 110%;
        padding: 8px;
        border: none;
    }
    .newsblog_custom-category #messengers {
        display: none !important;
    }

    .lib-cat-child-page .lib-cat-art-popular {
        padding-top: 24px;
    }

    .lib-cat-child-page .lib-cat-items,
    .lib-search-page .lib-cat-items {
        display: flex;
        margin-left: -4px !important;
        margin-right: -4px;
        flex-flow: wrap;
    }
    .lib-cat-child-page .lib-cat-item,
    .lib-search-page .lib-cat-item {
        width: calc(100%/2 - 8px) ;
        margin-left: 4px !important;
        margin-right: 4px;
        box-shadow: none ;
        border-radius: 6px;
        overflow: hidden;
    }



    /* search */
    .lib-search-page .lsc-title-wrap {
        padding-top: 40px;
    }
    .lsc-title {
        font-size: 20px;
        font-style: normal;
        font-weight: 600;
        line-height: 110%;
    }
    .lsc-result {
        margin-top: 10px;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 150%;
    }
    .lib-search-page .lib-cat-art-title-text {
        font-size: 26px;
        font-style: normal;
        font-weight: 600;
        line-height: 110%;
        margin-top: 0;
        margin-bottom: 0;
    }
    .lib-search-page .lib-cat-art-title-wrap {
        margin-bottom: 24px;
    }
    .lib-search-page .lib-cat-art-popular {
        padding-bottom: 0;
    }
    .lib-search-page .lsc-title-wrap + .lib-cat-art-popular {
        padding-top: 60px;
    }
    .lib-search-page .lib-cat-art-popular:last-of-type  {
        padding-bottom: 50px;
    }
    .lsc-title-wrap-empty + .lib-cat-art-popular {
        padding-top: 40px !important;
    }





}











/******* article *******/
.lib-a-bg-wrap {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
.lib-a-bg-wrap:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.10) 100%);
}
.lib-a-bg-wrap > * {
    position: relative;
}
.lib-a-bg-wrap .breadcrumb {
    margin-top: 32px;
}
.lib-a-bg-wrap .breadcrumb a {
    color: #fff;
}
.lib-a-bg-wrap .breadcrumb>li+li:before {
    border: solid #fff;
    border-width: 0 2px 2px 0;
}
.lib-a-bg-wrap h1 {
    color: #fff;
    font-family: Montserrat Alternates;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    margin: 35px 0 50px;
}


.lib-article-page .product-block .items .product-layout {
    width: 100%;
}
.lib-article-page .product-block .items .product-layout:hover .caption {
    background: #F1F1F1;
}

.lib-a-products {
    margin: 50px 0 20px;
}





.lib-a-content-sidebar {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
}
.lib-a-sidebar {
    width: 400px;
    flex: none;
}
.lib-a-content {
    width: calc(100% - 400px - 80px);
}

.lib-a-sidebar {
    margin-left: 80px;
}
.lib-a-sidebar-title {
    color: #949494;
    font-family: Montserrat Alternates;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.lib-a-sidebar-items {
    margin-left: -6px;
    margin-right: -6px;
}
.lib-a-sidebar-items a {
    font-family: Montserrat Alternates;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    color: #464646 !important;
    border-radius: 6px;
    padding: 6px;
    display: inline-flex;
    margin-bottom: 10px;
}
.lib-a-sidebar-items a:hover,
.lib-a-sidebar-items a:active {
    background: #EFEFEF;
}
.lib-a-sidebar-items a.active {
    background: #A2887A;
    color: #fff !important;
}
.lib-a-sidebar-inner {
    position: sticky;
    top: 105px;
    padding-left: 20px;
}




.lib-a-share-wrap {
    font-family: Montserrat Alternates;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    color: #fff;
    position: absolute;
    right: 0;
    top: 30px;
}
.lib-a-share {
    cursor: pointer;
}
.lib-a-share:after {
    content: "";
    background: url(/catalog/view/theme/theme763/icons/library/share.svg) no-repeat;
    width: 24px;
    height: 24px;
    position: absolute;
    right: -32px;
    top: 50%;
    transform: translateY(-50%);
}
.lib-a-share:hover span {
    text-decoration: underline;
}


.lib-a-share-done {
    position: absolute;
    font-size: 14px;
    left: 0;
    bottom: -24px;
    color: rgba(255,255,255,.5);
}





.lib-a-description {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
}
.lib-a-description p,
.lib-a-description li,
.lib-a-description p a,
.lib-a-description span {
    line-height: 150%;
}
.lib-a-description p {
    margin-bottom: 20px;
}
.lib-a-description ul {
    list-style-type: disc;
    padding-left: 30px;
    margin: 20px 0 30px;
}
.lib-a-description ul li {
    margin-bottom: 10px;
}
.lib-a-description a {
    color: #48B0B8;
}
.lib-a-description a:hover,
.lib-a-description a:active {
    text-decoration: underline !important;
}

.lib-a-description h2 {
    font-family: Montserrat Alternates;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    margin-bottom: 24px;
    margin-top: 40px;
}
.lib-a-description iframe {
    width: 100%;
    height: 400px;
    margin: 0 0 40px;
}





.lib-a-products.product-block .items {
    grid-template-columns: 1fr 1fr 1fr !important;
}
.lib-a-products .lib-cat-art-title-wrap {
    align-items: center;
}




.lib-a-gift {
    margin: 40px 0;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.lib-a-gift-title {
    font-family: Montserrat Alternates;
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    color: #fff;
}
.lib-a-gift-text {
    color: #fff;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    opacity: .8;
    margin-top: 16px;
}
.lib-a-gift-btn-wrap {
    width: 200px;
    margin-left: 100px;
    flex: none;
}





.lib-a-rating .star-rating__input{
    display: none;
}
.lib-a-rating .star-rating__ico{
    cursor: pointer;
}
.lib-a-rating .star-rating__ico:before,
.lib-a-rating .star-rating__ico:after {
    display: none !important;
}
.lib-a-rating .star-rating__ico span {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    background: #fff;

    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid #A2A2A2;
    display: inline-flex;
    justify-content: center;
    align-items: center;

    font-family: Montserrat Alternates;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
}
.lib-a-rating .star-rating__ico:hover span,
.lib-a-rating .star-rating__ico:hover~.star-rating__ico span,
.lib-a-rating .star-rating__input:checked~.star-rating__ico span {
    background: #A2887A;
    color: #fff;
}
.lib-a-rating .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
.lib-a-rating .stars {
    background: #7A675D;
    border-radius: 20px;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
}



.lib-a-rating-text {
    font-family: Montserrat Alternates;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
}
.lib-a-rating-wrap-1 {
    display: flex;
    align-items: center;
    margin-top: 16px;
    justify-content: space-between;
}
.lib-a-rating-wrap-1 .star-rating__ico {
    padding-left: 5px;
    padding-right: 5px;
}
.lib-a-rating-wrap-1 .star-rating__ico:last-of-type {
    padding-left: 0;
}
.lib-a-rating-result-text {
    color: #A2A2A2;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    margin-top: 8px;
}
.lib-a-rating-result-number {
    color: #464646;
    text-align: right;
    font-family: Montserrat Alternates;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}
.lib-a-rating-result-avg {
    color: #A2887A;
    font-size: 40px;
    font-weight: 500;
    line-height: 100%;
    margin-right: 2px;
}
.lib-a-rating-wrap {
    margin: 50px 0;
}





.lib-a-products-1-wrap {
    background: #F8F8F8;
    margin-bottom: -40px;
}
.lib-a-products-1 {
    margin: 60px 0;
}
.lib-a-products-1.product-block .items {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr !important;
}
.lib-a-products-1 .lib-cat-art-title-wrap {
    align-items: center;
}





@media (max-width: 1199px) {
    .lib-a-content-sidebar {
        flex-flow: wrap;
    }
    .lib-a-sidebar {
        margin-left: 0;
        width: 100%;
    }
    .lib-a-content {
        order: 1;
        width: 100%;
        margin-top: 30px;
    }

    .lib-a-share-wrap {
        right: 30px;
    }
}




@media (max-width: 767px) {
    .lib-a-content-sidebar {
        flex-flow: wrap;
        padding-top: 24px;
    }
    .lib-a-sidebar {
        margin-left: 0;
        width: 100%;
    }
    .lib-a-content {
        order: 1;
        width: 100%;
        margin-top: 24px;
    }



    .lib-a-bg-wrap h1 {
        font-size: 26px;
        font-weight: 600;
        line-height: 110%;
        margin-top: 20px;
        padding: 0 5px;
    }
    .lib-a-share span {
        display: none;
    }
    .lib-a-share-done {
        font-size: 12px;
        left: unset;
        bottom: -20px;
        right: -25px;
    }
    .lib-article-page .lib-a-bg-wrap .breadcrumb {
        margin-top: 25px;
        margin-bottom: 0;
    }
    .lib-a-share:after {
        width: 30px;
        height: 30px;
        background-position: center;
        right: -25px;
        top: -18px;
        transform: none;
    }


    .lib-a-sidebar-inner {
        position: relative;
        top: 0;
        padding-left: 15px;
        border-left: 2px solid #A2887A;
    }
    .lib-a-sidebar-items div:last-of-type a {
        margin-bottom: -10px;
    }
    .lib-a-sidebar-title {
        font-size: 14px;
        line-height: 120%;
        margin-bottom: 15px;
    }
    .lib-a-sidebar-items a {
        font-size: 14px;
        padding: 5px;
        margin-bottom: 6px;
    }


    .lib-a-description {
        font-size: 14px;
    }
    .lib-a-description p {
        margin-bottom: 15px;
    }
    .lib-a-description ul {
        padding-left: 20px;
        margin: 15px 0 25px;
    }
    .lib-a-description ul li {
        margin-bottom: 10px;
    }

    .lib-a-description h2 {
        font-size: 26px;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .lib-a-description iframe {
        width: 100%;
        height: 220px;
        margin: 0 0 25px;
    }



    .lib-cat-art-title-wrap-mob .lib-cat-art-btn {
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
        margin-bottom: 40px;
    }
    .lib-article-page .lib-cat-art-title-wrap {
        display: flex;
        justify-content: space-between;
        margin-bottom: 24px;
    }
    .lib-article-page .lib-cat-art-title-text {
        font-size: 26px;
        line-height: 110%
    }



    .lib-a-gift {
        display: block;
        padding: 25px 15px;
    }
    .lib-a-gift-btn-wrap {
        margin-left: 0;
        width: 100%;
        margin-top: 32px;
    }
    .lib-a-gift-btn {
        margin-left: 0;
        text-align: center;
    }


    .lib-a-rating-wrap {
        margin: 24px 0;
    }
    .lib-a-rating-text {
        font-size: 18px;
        line-height: 110%;
    }
    .lib-a-rating .star-rating__ico span {
        width: 50px;
        height: 50px;
    }
    .lib-a-rating-wrap-1 {
        display: block;
    }
    .lib-a-rating-result-number {
        text-align: center;
        margin-top: 20px;
        display: inline;
    }
    .lib-a-rating-result-text {
        display: inline;
    }
    .lib-a-rating-result {
        text-align: center;
        margin-top: 15px;
    }
    .lib-a-rating .wrap {
        justify-content: center;
        margin-top: 20px;
    }






    .lib-a-products .name a,
    .lib-a-products-1 .name a {
        font-size: 13px !important;
        font-weight: 600;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        line-height: 16px !important;
        height: calc(16px*3) !important;
    }
    .product-block .items .product-layout .caption .double .price,
    .product-block-1 .items .product-layout .caption .double .price {
        font-size: 16px;
        margin-right: 10px;
        margin-top: 5px;
    }
}




.lib-a-gift-btn {
    white-space: nowrap;
}

.lib-a-description .lsc-btn {
    margin: 25px 0;
}




@media (min-width: 768px) {
    .lib-categories ul {
        flex-flow: wrap;
    }
    .lib-categories li {
        white-space: nowrap;
        margin-bottom: 8px;
    }
}
@media (max-width: 767px) {
    .lib-categories li {
        white-space: nowrap;

    }
}




/**** up ****/
.footer-logo path {
    fill: #fff;
}
.footer-copy {
    position: relative;
    top: -7px;
}


.product_videos {
    cursor: pointer;
}
.product_videos img + img {
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%);
}


body[class*="product-product-"] .fancybox-title {
    display: none;
}


.account-wishlist #mfilter-content-container .product-layout,
.account-seen #mfilter-content-container .product-layout,
.product-search #mfilter-content-container .product-layout {
    width: 100%;
}

@media (max-width: 767px) {
    .account-wishlist #mfilter-content-container .product-layout,
    .account-seen #mfilter-content-container .product-layout {
        margin-left: 0;
        margin-right: 0;
    }
    .account-wishlist #mfilter-content-container,
    .account-seen #mfilter-content-container {
        padding-left: 5px;
        padding-right: 5px;
    }

    .account-wishlist .product-block .items,
    .account-seen .product-block .items {
        display: flex;
        flex-flow: wrap;
    }
    .account-wishlist #mfilter-content-container .product-layout,
    .account-seen #mfilter-content-container .product-layout {
        width: 48%;
    }
}


.account-seen .hero__banner-btn {
    border: 1px solid var(--brown);
}




.orders_list .order_item .more_icon {
    cursor: pointer;
    padding: 5px;
}




@media (max-width: 480px) {
    .simplecheckout-cart tr:nth-of-type(2n + 1) {
        display: flex;
    }
}





@media (max-width: 1366px) and (min-width: 1280px) {
    .header__wrapper.desktop .logo {
        margin-right: 40px;
    }
    .header__wrapper.desktop .nav-list {
        margin-right: 30px;
    }
}



body:not(.common-home) .hero__slider .hero__banner-btn.banner-btn {
    color: #fff !important;
}



.product-preview.product-inactive {
    filter: grayscale(100%);
    opacity: .85;
}
.product-preview.product-inactive .product-cart {
    cursor: default !important;
}





.preview-rating {
    height: 28px;
    margin-bottom: 5px !important;
}
.preview-rating .rating {
    align-items: center;
}



@media (min-width: 1200px) {
    .bestseller__slider .preview-rating {
        height: 0;
        position: absolute;
        bottom: 75px;
        left: 20px;
    }
    .bestseller__slider .product-info {
        position: relative;
    }
}






body .lsc-btn-back-wrap {
    background: #F8F8F8;
    padding-bottom: 80px;
}
body .lib-cat-child-page .lsc-btn-back-wrap {
    background: none;
    padding-top: 20px;
    padding-bottom: 50px;
}

.newsblog_custom-article .lsc-btn-back-wrap {
    background: none;
    padding: 0;
}

@media (max-width: 767px) {
    body .lsc-btn-back-wrap {
        padding-top: 10px;
        padding-bottom: 50px;
    }
    body .lib-cat-child-page .lsc-btn-back-wrap {
        padding-top: 10px;
        padding-bottom: 50px;
    }

    .newsblog_custom-article .lsc-btn-back-wrap {
        background: none;
        padding: 0;
    }
}






@media (max-width: 767px) {
    .home__hero .hero__slider {
        height: auto;
    }
    .home__hero .hero_swiper {
        height: auto;
    }

    .home__hero .hero-slide .hero__banner-btn {
        height: 46px;
        max-width: 240px;
        left: 50% !important;
        transform: translateX(-50%);
        bottom: 20px !important;
        opacity: .9;
        font-size: 17px;
    }

    .home__hero .hero-pagination {
        bottom: 80px !important;
    }

    /*.home:not(.sticky) .header__wrapper.mobile  .header-btn {*/
    /*background: transparent;*/
    /*}*/
    /*.home:not(.sticky) .header__wrapper.mobile .logo {*/
    /*background: transparent;*/
    /*}*/
    .home:not(.sticky) {
        background: rgba(119,94,80,.8);
    }
}





@media (min-width: 1200px) {
    .header_notice {
        height: 50px;
        background-color: rgba(58,58,58,1);
        display: flex;
        justify-content: center;
    }
}








/********* cat_dream_gift **********/
.cdf-title {
    color:  #464646;
    font-family: Montserrat Alternates;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
    margin-top: 30px;
    margin-bottom: 30px;
}
.cdf-banners {
    position: relative;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 50px !important;
}
.cdf-banners img {
    border-radius: 20px;
}
.cdf-banner-text-wrap {
    position: absolute;
    left: 50px;
    top: 50%;
    max-width: 410px;
    transform: translateY(-50%);
}
.cdf-banner-text-1 {
    color: #FFF;
    font-family: Montserrat Alternates;
    font-size: 50px;
    font-style: normal;
    font-weight: 600;
    line-height: 130%;
    text-transform: uppercase;
}
.cdf-banner-text-2 {
    color: #FFF;
    font-family: Lato;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    margin-top: 10px;
    opacity: .8;
}
.cdf-banner-text-wrap .hero__banner-btn {
    margin-top: 25px;
}



.cdf-cat-items {
    margin-top: 25px;
    margin-bottom: 50px;
}
.cdf-product-title {
    margin-bottom: 25px;
}
.cdf-cat-items .lib-cat-item {
    margin-bottom: 24px;
    width: calc(100%/2 - 24px);
}
.cdf-cat-items .lib-cat-item-text {
    max-width: 350px;
}





.cat_dream_gift_child .cdf-banner-text-1 {
    font-size: 26px;
    font-weight: 600;
    line-height: 110%;
    text-transform: none;
}
.cat_dream_gift_child .cdf-banner-text-2 {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    opacity: 1;
}




.cdf-child-wrap {
    display: flex;
    align-items: flex-start;
    margin-top: 32px;
}
.cdf-child-cat {
    width: 290px;
    margin-right: 32px;
    flex: none;
}
.cdf-child-content {
    width: 100%;
}
.cdf-child-cat {
    background: #F8F8F8;
    padding: 24px;
}
.cdf-child-cat-main a {
    color:  #464646;
    font-family: Montserrat Alternates;
    font-size: 20px;
    font-weight: 600;
    line-height: 110%;
}
.cdf-child-cat-main a:hover {
    opacity: .85;
}
.cdf-child-cat-items {
    margin-top: 12px;
}
.cdf-child-cat-items li {
    margin-bottom: 15px;
}
.cdf-child-cat-items li:last-of-type {
    margin-bottom: 0;
}
.cdf-child-cat-items li a {
    color:  #464646;
    font-family: Lato;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    padding: 6px 0;
    display: block;
}
.cdf-child-cat-items li a:hover {
    opacity: .85;
}
.cdf-child-cat-items .active span {
    border-radius: 8px;
    background: #ECE5E2;
    display: block;
    padding: 18px 12px;
    margin-left: -12px;
    margin-right: -12px;

    color:  #A2887A;
    font-family: Lato;
    font-size: 14px;
    font-weight: 700;
    line-height: normal;
}
.cdf-child-wrap .cdf-title {
    margin-top: 0;
}


.cat_dream_gift_page #content {
    margin-bottom: 50px;
}


@media (min-width: 1200px) {
    .cdf-child-content .product-block .items {
        grid-template-columns: 1fr 1fr 1fr;
        padding: 0 15px;
    }
}



@media (max-width: 1199px) {
    .cdf-banner-text-1 {
        font-size: 20px;
    }
    .cdf-banner-text-2 {
        font-size: 14px;
    }
    .cdf-banners img {
        border-radius: 10px;
    }
}


@media (max-width: 767px) {
    .cdf-title,
    .cdf-cat-title {
        font-size: 26px;
        font-weight: 600;
        line-height: 110%;
    }


    body .cdf-banner-text-1 {
        font-size: 20px;
    }
    body .cdf-banner-text-2 {
        font-size: 12px;
        margin-top: 5px;
        opacity: 1;
    }

    .cdf-banner-text-wrap {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        max-width: 100%;
        transform: unset;
        padding: 15px;
    }
    .cdf-banner-text-wrap .hero__banner-btn {
        margin-top: 10px;
        height: 30px;
        width: auto;
        padding-left: 12px;
        padding-right: 5px;
        font-size: 13px;
    }



    .cdf-title {
        margin-top: 25px;
        margin-bottom: 20px;
    }


    .cdf-cat-items .lib-cat-item {
        width: 100%;
    }



    .cdf-banners {
        margin-bottom: 40px !important;
    }



    .lib-cat-item-name {
        font-size: 18px;
        font-weight: 600;
        line-height: 110%;
    }
    .lib-cat-item-text {
        font-size: 14px;
        font-weight: 500;
        line-height: 150%;
        margin-top: 8px;
    }

    .cdf-product-title {
        font-size: 26px;
        font-weight: 600;
        line-height: 110%;
    }


    .cdf-child-cat {
        display: none;
    }


}







#s_cart_gift {
    position: absolute;
    z-index: -1;
    opacity: 0;
}
body #s_cart_gift:checked + .links-text::before {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border: 3px solid;
    height: 10px;
    border-color: #a2887a;
    border-top-style: none;
    border-right-style: none;
}



.row-s_cart_gift {
    display: flex;
}
.row-s_cart_gift .basket__row-label {
    order: 1;
    max-width: 100%;
    width: calc(100% - 20px);
    flex: none;
    cursor: pointer;
    padding-left: 10px;
    font-size: 15px;
}
.row-s_cart_gift .basket__row-input {
    width: 20px;
    flex: auto;
}




.product-preview .price.price-product {
    white-space: nowrap;
}
@media (min-width: 1200px) {
    .product-preview .price-old {
        font-weight: 400 !important;
        font-size: 17px !important;
        position: relative;
        top: 4px;
    }
}
@media (max-width: 1199px) {
    .product-preview .price-old {
        font-weight: 400 !important;
        font-size: 17px !important;
    }
}
@media (max-width: 767px) {
    .product-preview .price-old {
        font-size: 12px !important;
        margin-left: 5px !important;
        position: relative;
        top: 2px;
    }
    .product-preview .price.price-product {
        white-space: nowrap;
    }
}





#mobile-navbar .parent-link.youtube {
    margin-top: 15px;
}
#mobile-navbar .parent-link.youtube a {
    position: relative;
    padding-left: 30px;
    display: block;
    line-height: 1.2;
}
#mobile-navbar .parent-link.youtube a:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: url(/catalog/view/theme/theme763/icons/youtube-icon.png) no-repeat;
    width: 24px;
    height: 24px;
    background-size: contain;
    background-position: center;
}
#mobile-navbar .parent-link.color-brown a  {
    color: #a2887a;
}




.home-special__wrapper h3.title,
.home-bestseller__wrapper h3.title {
    margin-top: 0;
}




@media (max-width: 1279px) {
    body .product-preview .product-info .product-name {
        font-size: 14px;
        line-height: 120%;
        min-height: 68px;
    }
}




@media (min-width: 1280px) {
    .sp-link.gift_link {
        background: #efe9e5;
    }
}









.menu__links-list .category a[href*="aroma-sprei"] {
    /*color: #efe9e5;*/
    color: var(--brown);
}





@media (min-width: 1280px) {
    /*body .reviews_swiper {*/
    /*    display: flex;*/
    /*}*/
    /*.reviews_swiper .swiper-slide {*/
    /*    width: 100% !important;*/
    /*}*/
}



@media (min-width: 1200px) {
    .reviews__container {
        padding-right: 66px;
    }
    .reviews_swiper {
        width: 100%;
    }
}




/*.land_hero .container .wrap .big-toptext1 h1,*/
/*.fish_box.lands .container:nth-of-type(1) .content .bigtitle,*/
/*.fish_box.lands .container:last-child .content .bigtitle,*/
/*#menu7  .row .middletext > p:first-of-type {*/
/*    font: 600 24px / 1.5em Lato, sans-serif;*/
/*}*/
/*.land_hero .container .wrap .big-toptext3 p,*/
/*.fish_box.lands .container:nth-of-type(1) .content .fish-smtext,*/
/*.fish_box.lands .container:nth-of-type(1) .content .fish-smtext p,*/
/*.fish_box.lands .container:last-child .content .fish-smtext,*/
/*.fish_box.lands .container:last-child .content .fish-smtext p,*/
/*.colorcustom.bigblock .row .middletext,*/
/*.colorcustom.bigblock .row .middletext p {*/
/*    font: 400 20px / 1.5em Lato, sans-serif;*/
/*}*/
/*@media (max-width: 480px) {*/
/*    .land_hero .container .wrap .big-toptext1 h1,*/
/*    .fish_box.lands .container:nth-of-type(1) .content .bigtitle,*/
/*    .fish_box.lands .container:last-child .content .bigtitle,*/
/*    #menu7  .row .middletext > p:first-of-type {*/
/*        font-size: 20px;*/
/*    }*/
/*    .land_hero .container .wrap .big-toptext3 p,*/
/*    .fish_box.lands .container:nth-of-type(1) .content .fish-smtext,*/
/*    .fish_box.lands .container:nth-of-type(1) .content .fish-smtext p,*/
/*    .fish_box.lands .container:last-child .content .fish-smtext,*/
/*    .fish_box.lands .container:last-child .content .fish-smtext p,*/
/*    .colorcustom.bigblock .row .middletext,*/
/*    .colorcustom.bigblock .row .middletext p {*/
/*        font-size: 16px;*/
/*    }*/
/*}*/




@media (min-width: 1280px) {
    .home-special.special .home-special-info {
        position: relative;
    }
    .home-special.special .home-special-info:before {
        content: "";
        position: absolute;
        left: -15px;
        top: -15px;
        width: 100%;
        height: calc(100% + 30px);
        background: rgba(255,255,255,.85);
        z-index: -1;
        border-radius: 5px;
    }
}


.home-special-products .xdstickers_wrapper {
    top: 5px;
    left: 15px;
    right: auto;
}



.cat-sort-wrap .sbSelector {
    display: none;
}
.cat-title {
    display: flex;
    align-items: center;
}
.cat-sort-wrap {
    margin-left: auto;
    padding-left: 30px;
    z-index: 99;
}
@media (max-width: 767px) {
    .cat-title {
        display: block;
    }
    .cat-sort-wrap {
        margin-top: 0;
        margin-bottom: 25px;
        padding-left: 0;
    }
}




@media(min-width: 1200px) {
    body .header__wrapper.desktop {
        grid-template-columns: 1fr 1.5fr 1fr;
    }
    .header__wrapper.desktop .logo {
        position: relative;
        top: -6px;
    }
}






#tab-product_articles {
    padding: 25px 0 35px;
}
#tab-product_articles .lib-cat-item {
    width: calc(100% / 2 - 24px);
}
#tab-product_articles .lib-cat-item-img {
    position: relative;
}
#tab-product_articles .lib-cat-item-name {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-height: 24px;
    height: calc(24px* 2);

    font-size: 18px;
}
#tab-product_articles .lib-cat-item-text {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 24px;
    height: calc(24px* 3);
}
#tab-product_articles .lib-cat-item-name-wrap {
    padding: 20px 24px;
}
#tab-product_articles .lib-cat-item-time {
    margin-top: 10px;
    font-size: 14px;
}

@media (max-width: 767px) {
    /*#tab-product_articles .lib-cat-items {*/
    /*    margin-left: -25px;*/
    /*}*/

    #tab-product_articles {
        padding: 25px 0 10px;
    }
    #tab-product_articles .lib-cat-items {
        display: flex;
        margin-left: -4px;
        margin-right: -4px;
    }
    #tab-product_articles .lib-cat-item {
        width: calc(100% / 2 - 8px);
        margin-left: 4px;
        margin-right: 4px;
    }
    #tab-product_articles .lib-cat-item-img {
        height: auto;
    }

    #tab-product_articles .lib-cat-item-name {
        font-size: 12px;
        font-weight: 600;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        line-height: 13px;
        height: calc(13px* 3);
    }
    #tab-product_articles .lib-cat-item-text {
        font-size: 10px;
        font-style: normal;
        font-weight: 500;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
        line-height: 12px;
        height: calc(12px* 3);
        margin-top: 4px;
    }
    #tab-product_articles .lib-cat-item-name-wrap {
        padding: 8px;
    }
    #tab-product_articles .lib-cat-item-time {
        margin-top: 5px;
        font-size: 11px;
    }
}





body header {
    z-index: 100;
}



.home-bestseller-products .product-quantity {
    display: none !important;
}





/************ snow design *************/
.snow-design .header__container {
    position: relative;
}

.snow-design .home__hero .hero__slider .hero-slide .hero__banner-btn {
    background: #fff;
    color: #333;
}
.snow-design .home__hero .hero__slider .hero-slide .hero__banner-btn span svg path {
    stroke: #333;
}

.snow-design .home-bestseller .bestseller__link,
.snow-design .lib-cat-art-btn,
.snow-design #cart .butts a.checkout {
    position: relative;
    z-index: 1;
}
.snow-design .home-bestseller .bestseller__link:before,
.snow-design .lib-cat-art-btn:before,
.snow-design #cart .butts a.checkout:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(/image/catalog/snow-design/btn-snow.png) no-repeat;
    background-size: contain;
}
.snow-design .home-bestseller .bestseller__link:after,
.snow-design .lib-cat-art-btn:after,
.snow-design #cart .butts a.checkout:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(/image/catalog/snow-design/btn-decor.svg) no-repeat;
    background-size: contain;
    transform: translateY(100%);
    background-position: center;
}

.snow-design .home-bestseller .product-preview .product-link:before,
.snow-design .product-block .product-preview .product-link:before {
    content: "";
    position: absolute;
    right: -6px;
    top: 0;
    width: 112px;
    height: 126px;
    background: url(/image/catalog/snow-design/product-decor.svg) no-repeat;
    background-size: contain;
}


.snow-design footer {
    position: relative;
    z-index: 1;
}
.snow-design footer:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(/image/catalog/snow-design/footer-bg.png) no-repeat;
    background-size: cover;
    z-index: -1;
}
.snow-design #cart .toggle_cont {
    padding-bottom: 75px;
}



@media (min-width: 1200px) {
    .snow-design .header__container:before {
        content: "";
        position: absolute;
        left: -10px;
        top: 0;
        background: url(/image/catalog/snow-design/head-decor-1.svg) no-repeat;
        width: 90px;
        height: 168px;
        transform: translateX(-100%);
    }
    .snow-design .header__container:after {
        content: "";
        position: absolute;
        right: -10px;
        top: 0;
        background: url(/image/catalog/snow-design/head-decor-2.svg) no-repeat;
        width: 90px;
        height: 168px;
        transform: translateX(100%);
    }
    .snow-design .header_wrapper-container {
        position: relative
    }
    .snow-design .header_wrapper-container:before {
        position: absolute;
        content: "";
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 100%;
        top: 0;
        background:
                url('/image/catalog/snow-design/head-snow-bg.png') no-repeat center top,
                url('/image/catalog/snow-design/head-snow-bg-left.png') no-repeat left top,
                url('/image/catalog/snow-design/head-snow-bg-right.png') no-repeat right top !important;
        background-size:
                contain,
                contain,
                contain !important;
    }



}


.snow-design .home-about {
    background-image: url(/image/catalog/snow-design/block-bg-2.svg);
    background-position: center;
}
.snow-design .product-info .product-footer .product-btns .product-wishlist:hover .icon svg path {
    fill: #C22C3F;
    stroke: #C22C3F;
}
.snow-design .product-info .product-footer .product-btns .product-cart:hover .icon svg path {
    fill: #C22C3F;
    stroke: #C22C3F;
}

.snow-design .home-certificates,
.snow-design .lib-cat-art-new.home-bestseller {
    background-image: url(/image/catalog/snow-design/block-bg-christmas.jpg);
}




.snow-design .categories_list a.category_id_96 {
    background: #e16267;
    color: #fff;
}
.snow-design .categories_list a.category_id_96:hover,
.snow-design .categories_list a.category_id_96:active {
    background: #c62c3e;
}

.snow-design .sp-link[href*="new-year"] {
    background: #e16267;
    color: #fff;
}
.snow-design .sp-link[href*="new-year"] .title-link {
    color: #fff;
}

.snow-design .sp-link[href*="new-year"]:hover,
.snow-design .sp-link[href*="new-year"]:active {
    background: #c62c3e;
}
.snow-design .sp-link[href*="new-year"] svg path {
    stroke: #fff;
}


.snow-design .lib-search-wrap {
    background: url(/image/catalog/snow-design/library-christmas-bg.jpg) no-repeat;
    background-size: cover;
    background-position: center bottom;
}



.snow-design .lib-article-page .lsc-btn .lib-cat-art-btn:after {
    display: none;
}
.snow-design #cart .toggle_cont:after {
    content: "";
    background: url(/image/catalog/snow-design/cart-decor.svg) no-repeat;
    position: absolute;
    right: 80px;
    top: 0;
    width: 207px;
    height: 149px
}



@media (max-width: 1500px) and (min-width: 1280px) {
    .snow-design .header__container:before {
        left: 77px;
        z-index: -1;
        display: none;
    }
    .snow-design .header__container:after {
        right: 71px;
        z-index: -1;
    }
}

@media (max-width: 1279px) {
    .snow-design footer:before {
        background-size: cover;
    }

    .snow-design .home-about {
        background-size: 80%;
    }
}

@media (max-width: 767px) {
    .snow-design .home:not(.sticky) {
        background: rgba(0, 0, 0, .3);
    }
    .snow-design footer:before {
        background-image: url(/image/catalog/snow-design/footer-bg-mob.png);
    }


    .snow-design .home__hero .hero__slider .hero-slide .hero__banner-btn:after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background: url(/image/catalog/snow-design/btn-decor.svg) no-repeat;
        background-size: contain;
        transform: translateY(100%);
        background-position: center;
    }

    .snow-design .home__hero .hero-pagination {
        bottom: 110px !important;
    }
    .snow-design .home__hero .hero-slide .hero__banner-btn {
        bottom: 48px !important;
    }

    .snow-design .home-bestseller .product-preview .product-link:before,
    .snow-design .product-block .product-preview .product-link:before {
        right: 0;
        top: 0;
        width: 45px;
        height: 51px;
    }

    .snow-design .hamb-btn {
        position: relative;
    }
    .snow-design .hamb-btn:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        background: url(/image/catalog/snow-design/head-decor-2-mob.svg) no-repeat;
        background-size: contain;
        width: 55px;
        height: 66px;
        transform: translateY(100%);
    }



    .snow-design .lib-cat-art-btn:after,
    .snow-design #cart .butts a.checkout:after {
        display: none;
    }


    .snow-design #cart .toggle_cont:after {
        background-image: url(/image/catalog/snow-design/cart-decor-mob.svg);
        right: 50px;
        width: 101px;
        height: 73px;
    }
    .snow-design #cart .toggle_cont {
        padding-bottom: 20px;
    }
}





.sbSelector {
    border: 1px solid #e8e8e8;
    position: relative;
    user-select: none;
    transition: .3s ease;
    padding: 11px 35px 11px 20px;
    border-radius: 5px;
    display: inline-flex;
    font-weight: 500;
    min-width: 200px;
}
.sbSelector:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 5px solid #000;
    border-bottom: none;
    right: 15px;
    top: 50%;
    margin: -2px 0 0;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    transform: none;
}
.sbToggleOpen + .sbSelector:after {
    border-top: 0;
    border-bottom: 5px solid #000;
}
.sbOptions {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 10px 0 rgb(0 1 1 / 24%);
    z-index: 9;
    min-width: 200px;
}
.sbOptions li {
    border-color: #e5e5e5 !important;
    padding: 0;
}
.sbOptions li a {
    display: block;
    padding: 10px;
    font-weight: 400;
}








/************ love design *************/
.valentine-link,
.valentine-link .sp-link {
    background: #e16267 !important;
    color: #fff !important;
}
.valentine-link:hover,
.valentine-link .sp-link:hover {
    background: #c62c3e !important;
    color: #fff !important;
}
.valentine-link .title-link {
    color: #fff !important;
}
.valentine-link svg path {
    stroke: #fff;
}



body.love-design,
.love-design .header_wrapper-container {
    background: #FFF5F6;
}
.love-design .header_wrapper-container {
    border-bottom: 1px solid #fff;
}

.love-design .header-btn {
    background: #F9ECED;
}

.love-design .header__language-switch a,
.love-design .header__language-switch button {
    color: #5E1F25;
}

.love-design .header-btn svg path {
    fill: #5E1F25;
}
.love-design .header-btn .search_btn  svg path {
    stroke: #5E1F25;
}
.love-design .header__language-switch button.language-select {
    background: #F9ECED;
    color: #5E1F25;
}

.love-design .hero__slider .hero__banner-btn {
    background: #fff;
    color: #000
}

.love-design footer {
    background: #5E1F25;

    background-image: url('/image/catalog/love-design/footer-bg.png');
    background-repeat: no-repeat;
    background-position: center;
}
.love-design .KeyCRM-toggleButton {
    background-color: #5E1F25 !important;
}


.love-design .home__hero {
    background-image:
            url('/image/catalog/love-design/home-block-1/33.png'),
            url('/image/catalog/love-design/home-block-1/35.png'),
            url('/image/catalog/love-design/home-block-1/40.png'),
            url('/image/catalog/love-design/home-block-1/22.png'),
            url('/image/catalog/love-design/home-block-1/39.png');
    background-position:
            0% center,
            5% 95%,
            30% 100%,
            100% top,
            95% center;
    background-repeat:
            no-repeat,
            no-repeat,
            no-repeat,
            no-repeat;
}

.love-design .home__hero .hero__slider {
    position: relative;
}
.love-design .home__hero .hero__slider:after {
    content: "";
    position: absolute;
    bottom: -70px;
    right: -65px;
    width: 129px;
    height: 146px;
    background: url(/image/catalog/love-design/home-block-1/32.png) no-repeat;
    z-index: 1;
}

.love-design .home__catalog {
    background-image: url(/image/catalog/love-design/home-block-2/bg.png);
    background-repeat: no-repeat;
    background-size: cover
}
.love-design .home-bestseller {
    background: url(/image/catalog/love-design/home-block-3/bg.png);
    background-repeat: no-repeat;
    background-size: cover
}
.love-design .home-reviews {
    background: #fff url(/image/catalog/love-design/home-block-review/bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}
.love-design .home-certificates {
    background: url(/image/catalog/love-design/home-block-gift/gift.png);
    background-repeat: no-repeat;
    background-position: right top;
}
.love-design .home-about {
    background: #fff;
}
.love-design .home-faq {
    background: #FFF5F6;
}


.love-design .faq-question:hover {
    background: #f9eced;
}
.love-design .faq-question:hover .question {
    color: #5e1f25;
}
.love-design .faq-question:hover svg path {
    stroke: #5e1f25;
}
.love-design .home-inst {
    background-image: url(/image/catalog/love-design/home-block-insta/c4b1e7f4df7182fe7cc8.svg);
}
.love-design .home-seotext {
    background: #fff;
}
.love-design.common-home footer {
    margin-top: 0;
}

.love-design .home-inst .icon svg path {
    fill: #5e1f25;
}
.love-design .inst__link .inst__link-text {
    color: #5e1f25;
}
.love-design .inst__link .inst__link-text:before {
    background: #5e1f25;
}


.love-design .product-info .product-footer .product-btns .product-wishlist:hover .icon svg path,
.love-design .product-info .product-footer .product-btns .product-wishlist:hover .icon svg path+path {
    fill: #5E1F25;
    stroke: #5E1F25;
}
.love-design .product-info .product-footer .product-btns .product-cart:hover .icon svg path,
.love-design .product-info .product-footer .product-btns .product-cart:hover .icon svg path+path {
    fill: #5E1F25;
    stroke: #5E1F25;
}



.love-design .home__catalog-btn a,
.love-design .home__catalog-btn button {
    color: #5E1F25;
    border-color: #5E1F25;
}
.love-design .home__catalog-btn a:hover,
.love-design .home__catalog-btn button:hover {
    background: #5E1F25;
}

.love-design .home__catalog-btn a svg path,
.love-design .home__catalog-btn button svg path {
    stroke: #5E1F25;
}
.love-design .home__catalog-btn a:hover svg path,
.love-design .home__catalog-btn button:hover svg path {
    stroke: #fff;
}



.love-design .home-bestseller-info .bestseller__link,
.love-design .bestseller__link.mobile,
.love-design .home__catalog-btn.mobile a {
    color: #fff;
    background: #5E1F25;
}
.love-design .home-bestseller-info .bestseller__link:hover {
    color: #5E1F25;
    background: #fff;
}
.love-design .home-bestseller-info .bestseller__link svg path,
.love-design .bestseller__link.mobile svg path,
.love-design .home__catalog-btn.mobile a svg path {
    stroke: #fff;
}
.love-design .home-bestseller-info .bestseller__link:hover svg path {
    stroke: #5E1F25;
}
.love-design .home__catalog-btn.mobile a {
    border-color: #5E1F25;
}


.love-design .bestseller-button-next,
.love-design .bestseller-button-next.swiper-button-disabled:hover,
.love-design .bestseller-button-prev,
.love-design .bestseller-button-prev.swiper-button-disabled:hover,
.love-design .inst-button-next,
.love-design .inst-button-next.swiper-button-disabled:hover,
.love-design .inst-button-prev,
.love-design .inst-button-prev.swiper-button-disabled:hover,
.love-design .review-button-next, .love-design .review-button-prev {
    background: #5E1F25;
}
.love-design [class*=-button-next]:hover,
.love-design [class*=-button-prev]:hover,
.love-design .review-button-next:hover, .love-design .review-button-prev:hover {
    border-color: #5E1F25;
}
.love-design [class*=-button-next]:hover svg path,
.love-design [class*=-button-prev]:hover svg path,
.love-design .review-button-next:hover  svg path, .love-design .review-button-prev:hover  svg path {
    stroke: #5E1F25;
}



.love-design[class*="product-category-"] {
    background-image: url(/image/catalog/love-design/catalog/bg1_x2.png);
    background-position: center top 240px;
    background-repeat: no-repeat;
    background-size: cover;
}


@media (min-width: 1200px) {
    .love-design .header__wrapper.desktop .logo {
        top: 0;
    }

    .love-design .nav-list li a:hover,
    .love-design .nav-list li.active a,
    .love-design .nav-list li:hover {
        color: #5E1F25;
        text-shadow: 0 0 .65px #5E1F25, 0 0 .65px #5E1F25;
    }

    .love-design .nav-list li a:after {
        background: #5E1F25;
    }





    .love-design .header__container {
        background-image:
                url('/image/catalog/love-design/37.png'),
                url('/image/catalog/love-design/36.png');
        background-position: 21% bottom, 82% top;
        background-repeat: no-repeat, no-repeat;
        position: relative;
    }
    .love-design .header__container:before {
        position: absolute;
        content: "";
        left: -70px;
        top: 16px;
        width: 40px;
        height: 40px;
        background-image: url('/image/catalog/love-design/34.png');
    }

}



@media (max-width: 1279px) {
    .love-design #search-btn svg {
        display: none;
    }
    .love-design #search-btn {
        background: url(/image/catalog/love-design/mob/search.svg) no-repeat;
        width: 100%;
        height: 100%;
        background-position: center;
    }

    .love-design .logo svg path {
        fill: #5E1F25;
    }

    .love-design  #hamb svg path {
        stroke: #5E1F25;
    }

    .love-design .home__hero {
        background-image: none;
    }
    .love-design .home__hero .hero__slider:after {
        display: none;
    }
}



@media (max-width: 767px) {
    .love-design .home-bestseller {
        background:
                url(/image/catalog/love-design/mob/home-block-bestseller-1.png),
                url(/image/catalog/love-design/mob/home-block-bestseller-2.png);
        background-position: center top, center bottom;
        background-repeat: no-repeat, no-repeat;
        background-size: contain, contain;

        position: relative;
    }

    .love-design .home-bestseller:after {
        content: "";
        height: 200px;
        display: block;
        background: url(/image/catalog/love-design/banner.jpg) no-repeat;
        background-size: cover;
        background-position: left top;
        margin-top: 40px;
    }

    .love-design .home__catalog {
        background-image: none;
        padding-bottom: 40px;
    }

    .love-design .home-reviews {
        background: #fff url(/image/catalog/love-design/mob/home-block-review.png);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: left bottom;
    }

    .love-design .home-certificates {
        background: url(/image/catalog/love-design/mob/gift.png);
        background-repeat: no-repeat;
        background-position: right top;
        padding-top: 80px;
    }

    .love-design footer {
        background: #5E1F25;
        background-image: url(/image/catalog/love-design/mob/footer-bg.png);
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
    }
}









/************ spring design *************/
.spring-design .logo img {
    filter: brightness(0) saturate(100%) invert(59%) sepia(37%) saturate(218%) hue-rotate(337deg) brightness(88%) contrast(85%);
}
.spring-design .nav-list > li a {
    color: #A2887A;
}


.spring-design .home__catalog {
    background: #d7e4ab;
}
.spring-design .home__catalog a {
    border-color: #77931a;
    color: #77931a;
}
.spring-design .home__catalog svg path {
    stroke: #77931a;
    transition: .25s;
}
.spring-design .home__catalog a:hover {
    background: #77931a;
}
.spring-design .home__catalog a:hover svg path {
    stroke: #fff;
}


.spring-design .home-bestseller {
    background: #faf9f7 url(/image/catalog/spring-design/bestseller-flower.svg) no-repeat;
    background-position: left bottom;
}
.spring-design .home-bestseller-info .bestseller__link {
    background-image: url(/image/catalog/spring-design/bestseller-btn.svg);
    background-repeat: no-repeat;
    background-position: right top;
}


.spring-design .home-reviews {
    background: url(/image/catalog/spring-design/review-flower.png) no-repeat;
    background-position: center bottom;
}


.spring-design .home-certificates {
    background: url(/image/catalog/spring-design/floral-background-white-2.jpg);
    background-size: contain;
    background-position: center;
}
.spring-design .home-certificates .product-preview:hover {
    background: #eaf2ce;
}


.spring-design .home-about .about-logo svg path {
    fill: #77931a;
}


.spring-design .home-faq {
    background: #d7e4ab;
}
.spring-design .faq-question {
    transition: .25s;
}
.spring-design .faq-question:hover {
    background: #c6dc7c;
}
.spring-design .faq-question:hover .question {
    color: var(--black);
}


.spring-design .home-inst {
    background: none;
}
.spring-design .inst__title {
    margin-bottom: 30px;
}
.spring-design .inst__container {
    position: relative;
}
.spring-design .inst__container:before {
    content: "";
    position: absolute;
    width: 85%;
    height: 125%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: url(/image/catalog/spring-design/floral-background-green-2.jpg);
    background-size: contain;
    background-position: center;
    z-index: -1;
}


.spring-design footer {
    background-color: #7a675d !important;
    position: relative;
    overflow: hidden;
}
.spring-design .footer__container {
    position: relative;
}
.spring-design footer:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 883px;
    height: 313px;
    background: url(/image/catalog/spring-design/background-footer-1.png) no-repeat;
    background-size: contain;
    opacity: .1
}
.spring-design footer:after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 258px;
    height: 313px;
    background: url(/image/catalog/spring-design/background-footer-2.png) no-repeat;
    background-size: contain;
    opacity: .1
}



@media (min-width: 1200px) {
    .spring-design .header_wrapper-container {
        background-color: #fff !important;
        background:
                url(/image/catalog/spring-design/head-flower-1.svg) no-repeat,
                url(/image/catalog/spring-design/head-flower-2.svg) no-repeat;
        background-position:
                left bottom,
                right bottom;

        height: 95px;
    }
}

.spring-design .home__hero {
    padding-top: 15px;
    padding-bottom: 55px;
    background-color: #faf9f7 !important;
    background:
            url(/image/catalog/spring-design/hero-flower-1.svg) no-repeat,
            url(/image/catalog/spring-design/hero-flower-2.svg) no-repeat;
    background-position:
            left bottom,
            right bottom;

}

.spring-design header .nav-list {
    margin-bottom: 0;
}




.spring-design[class*="product-category-"] main {
    background: #faf9f7;
    padding-top: 20px;
    padding-bottom: 50px;

    background-image:
            url(/image/catalog/spring-design/category/flower-2.svg),
            url(/image/catalog/spring-design/category/flower-3.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: right bottom 40%, right bottom;
}
.spring-design[class*="product-category-"] .categories_list a {
    background: #F2F0F0;
}
.spring-design[class*="product-category-"]  .categories_list a:hover {
    background: #d6d4d4;
}


.spring-design[class*="product-category-"] .categories_list a.category_id_9,
.spring-design[class*="product-category-"] .categories_list a.category_id_85,
.spring-design[class*="product-category-"] .categories_list a.category_id_93 {
    background: #facf9d;
}
.spring-design[class*="product-category-"] .categories_list a.active,
.spring-design[class*="product-category-"] .categories_list a.active.category_id_83,
.spring-design[class*="product-category-"] .categories_list a.active.category_id_84 {
    color: #fff;
    background: #A2887A;
}



.spring-design[class*="product-category-"] .col_filter:after {
    content: "";
    display: table;
    clear: both;
}

.spring-design[class*="product-category-"] #column-left {
    position: relative;
    z-index: 0;
}
.spring-design[class*="product-category-"] #column-left:after {
    content: "";
    position: absolute;
    left: -100px;
    bottom: 120px;
    background: url(/image/catalog/spring-design/category/flower-1.svg) no-repeat;
    background-size: contain;
    background-position: center;
    width: 641px;
    height: 584px;
    z-index: -1;
    transform: translateY(100%);
}
.spring-design[class*="product-category-"] footer {
    margin-top: 0;
}






.spring-design .lib-search-wrap {
    background: #D7E4AB url(/image/catalog/spring-design/library/flower-1.svg);
    background-size: 350px;
    background-position: center top;
}
.spring-design .lib-search-wrap .breadcrumb a {
    color: #464646;
}
.spring-design .lib-search-wrap .breadcrumb>li+li:before {
    border-color: #464646;
}
.spring-design .lib-search-wrap .breadcrumb span {
    color: #A2887A !important;
}
.spring-design .lib-search-wrap .lib-main-title {
    color: #464646;
}
.spring-design .lib-search-wrap .lib-main-description {
    color: #464646;
}
.spring-design .lib-search-wrap .lib-search-phrase-items {
    color: #464646;
}
.spring-design .lib-search-wrap .lib-search-phrase-items .lib-search-phrase-item {
    color: #464646;
    background: rgba(255,255,255,.4)
}
.spring-design .lib-search-wrap .lib-search-phrase-items .lib-search-phrase-item:hover,
.spring-design .lib-search-wrap .lib-search-phrase-items .lib-search-phrase-item:active {
    color: #464646;
    background: #C6DC7C;
}
.spring-design .lib-cat-item:hover,
.spring-design .lib-cat-item:active {
    background: #EAF2CE;
}
.spring-design .logo>a {
    z-index: 1;
}

.spring-design .lib-search-btn,
.spring-design .lib-cat-art-btn {
    background-image: url(/image/catalog/spring-design/bestseller-btn.svg);
    background-repeat: no-repeat;
    background-position: right top;
}

.spring-design .home-bestseller.lib-cat-art-new {
    position: relative;
    background:  #D7E4AB url(/image/catalog/spring-design/library/flower-2.svg);
    background-position: left top;
}
/*.spring-design .home-bestseller.lib-cat-art-new:before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 40px;*/
/*    width: 100%;*/
/*    height: calc(100% - 40px);*/

/*    background:  url(/image/catalog/spring-design/library/flower-2.svg);*/
/*    background-position: left top;*/
/*}*/

.spring-design .lib-cat-art-popular {
    background-image: url(/image/catalog/spring-design/library/flower-bg.svg);
    background-position: left bottom;
    background-repeat: no-repeat;
}

.spring-design .lib-cat-art-popular ~ .lib-cat-art-popular {
    background-image: url(/image/catalog/spring-design/library/flower-3.svg);
    background-position: left bottom;
    background-repeat: no-repeat;
}
.spring-design .lib-cat-art-popular ~ .lib-cat-art-popular + .lib-cat-art-popular {
    background-image: url(/image/catalog/spring-design/library/flower-4.svg);
    background-position: left bottom;
    background-repeat: no-repeat;
}



.spring-design .lib-cat-child-page {
    padding-bottom: 40px;
    background-color: #faf9f7;
    background-image:
            url(/image/catalog/spring-design/library/cat-child-flower-1.svg),
            url(/image/catalog/spring-design/library/cat-child-flower-2.svg);
;
    background-repeat: no-repeat, no-repeat;
    background-position: left top, right bottom;
}
.spring-design .lib-article-page {
    padding-bottom: 40px;
    background-color: #faf9f7;
    background-image: url(/image/catalog/spring-design/library/article-flower-1.svg);
    background-repeat: no-repeat;
    background-position: right bottom;
}

.newsblog_custom-category.spring-design footer,
.newsblog_custom-article.spring-design footer {
    margin-top: 0;
}





.spring-design .pagination li a {
    background: none;
}
.spring-design .pagination li a:hover {
    background: #F8F6F5;
}
.spring-design .pagination li.active span {
    background: #EAF2CE;
    color: #464646;
}


.spring-design .lib-categories span.lib-category,
.spring-design .lib-categories .lib-category.active {
    background: #eaf2ce !important;
    color: #464646 !important;
}

.spring-design .lib-a-rating .star-rating__ico:hover span,
.spring-design .lib-a-rating .star-rating__ico:hover~.star-rating__ico span,
.spring-design .lib-a-rating .star-rating__input:checked~.star-rating__ico span {
    background: #EAF2CE;
    color: #464646;
    border-color: #77931A;
}
.spring-design .lib-a-rating-result-avg {
    color: #77931A;
}
.spring-design .lib-a-description a {
    color: #77931a;
}
.spring-design .lib-a-sidebar-items a.active {
    background: #EAF2CE !important;
    color: #464646 !important;
}

.spring-design #cart-total2 {
    background: #c6dc7c;
}






.information-fishlending.spring-design .fish_box.lands .container:nth-of-type(1):before {
    background: #faf9f7;
}
.information-fishlending.spring-design .fish_box.lands .container:nth-of-type(1) .bigtitle,
.information-fishlending.spring-design .fish_box.lands .container:nth-of-type(1) .fish-smtext,
.information-fishlending.spring-design .fish_box.lands .container:nth-of-type(1) .fish-smtext p {
    color: #464646;
}
.information-fishlending.spring-design .fish_box.lands .container:nth-of-type(1) .content .bigtitle:before {
    filter: brightness(0) saturate(100%) invert(54%) sepia(15%) saturate(1976%) hue-rotate(33deg) brightness(93%) contrast(90%);
}

.information-fishlending.spring-design .fish_box.lands .container:nth-of-type(1) .content {
    position: relative !important;
}
.information-fishlending.spring-design .fish_box.lands .container:nth-of-type(1) .content:after {
    content: "";
    position: absolute;
    background: url(../icons/logo_mob_white.svg) 50% / contain no-repeat;
    width: 318px;
    height: 230px;
    left: 50%;
    bottom: -80px;
    filter: brightness(0) saturate(100%) invert(54%) sepia(15%) saturate(1976%) hue-rotate(33deg) brightness(93%) contrast(90%);
    opacity: .1;
    transform: translateX(-50%);
}




.information-fishlending.spring-design .fish_box.lands .container:nth-of-type(2),
.information-fishlending.spring-design .fish_box.lands .container:nth-of-type(3) {
    z-index: 1;
}
.information-fishlending.spring-design .fish_box.lands .container:nth-of-type(4) > .row {
    position: relative;
}

.information-fishlending.spring-design .fish_box.lands .container:nth-of-type(2):before,
.information-fishlending.spring-design .fish_box.lands .container:nth-of-type(3):before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    left: 50%;
    width: 100vw;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    background: #d7e4ab;
    z-index: -1;
}
.information-fishlending.spring-design .fish_box.lands .container:nth-of-type(4):before {
    content: "";
    position: absolute;
    display: block;
    height: 100%;
    left: 50%;
    width: 100vw;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    background: #faf9f7;
}

.information-fishlending.spring-design .fish_box.lands .container:nth-of-type(2):before {
    background-image: url(/image/catalog/spring-design/about/flower-1.svg);
    background-repeat: no-repeat;
    background-position: left bottom -70px;
}
.information-fishlending.spring-design .fish_box.lands .container:nth-of-type(3):before {
    background-image:
            url(/image/catalog/spring-design/about/flower-2.svg),
            url(/image/catalog/spring-design/about/flower-3.svg)
;
    background-repeat: no-repeat, no-repeat;
    background-position: right top, center bottom;
}
.information-fishlending.spring-design .fish_box.lands .container:nth-of-type(4):before {
    background-image: url(/image/catalog/spring-design/about/flower-4.svg);
    background-repeat: no-repeat;
    background-position: left bottom;
}

.information-fishlending.spring-design footer {
    margin-top: 0;
}
.information-fishlending.spring-design .bigblock.coloradv {
    background: #faf9f7 url(/image/catalog/spring-design/about/flower-5.svg);
    background-position: center top -30px;
}



.spring-design #cart-total2 {
    color: #464646;
}




/**** account ****/
.spring-design .account_menu a svg,
.spring-design .account_menu a img {
    filter: brightness(0) saturate(100%) invert(45%) sepia(90%) saturate(367%) hue-rotate(33deg) brightness(97%) contrast(95%);
}
.spring-design .account_menu a.active:before {
    border-color: #77931A;
}
.spring-design .account_menu a.active {
    background: #EAF2CE;
    border-radius: 0 12px 12px 0;
}

.spring-design[class*="account-"] main {
    background: #faf9f7;
    padding-top: 0;
    padding-bottom: 40px;
}
.spring-design[class*="account-"] footer {
    margin-top: 0;
}
.spring-design[class*="account-"] .breadcrumb {
    margin-bottom: 25px;
}

.spring-design .account_person {
    margin-bottom: 30px;
}

.spring-design .account_person,
.spring-design .account_menu,
.spring-design .account_page .info,
.spring-design[class*="account-"] .block_bonus_faq .faq_answer,
.spring-design[class*="account-"] .block_rewards_table {
    background: #fff;
}

.spring-design[class*="account-"] .block_rewards .nav-tabs li.active a {
    background: #EAF2CE;
    color: #464646;
    border-color:  #77931a;
}
.spring-design[class*="account-"] .title_block a {
    color: #77931a;
}


.spring-design[class*="account-"] .block_bonus_card {
    background: #d7e4ab url(/image/catalog/spring-design/about/flower-5.svg);
    background-position: center top;
}
.spring-design[class*="account-"] .aromo_block_text {
    background: #fff;
    border-color: #77931A;
}
.spring-design[class*="account-"] .account_page .double .edit {
    color: #77931A;
}




/**** checkout ****/
.checkout-simplecheckout.spring-design main {
    background: #faf9f7;
    padding-top: 0;
    padding-bottom: 40px;

    background-image:
            url(/image/catalog/spring-design/cab/1.svg),
            url(/image/catalog/spring-design/cab/2.svg)
;
    background-repeat: no-repeat, no-repeat;
    background-position: left bottom -130px, right bottom;
}
.checkout-simplecheckout.spring-design footer {
    margin-top: 0;
}

.spring-design .basket__top-link {
    color: #77931A;
}
.checkout-simplecheckout.spring-design .simplecheckout-left-column,
.checkout-simplecheckout.spring-design .simplecheckout-right-column {
    background: #fff;
}
.spring-design #simplecheckout_button_confirm {
    background-image: url(/image/catalog/spring-design/bestseller-btn.svg);
    background-repeat: no-repeat;
    background-position: right top;
}

/************ end spring design *************/







/********** opt ***********/
.information-information-30.spring-design main {
    background: #faf9f7;
    padding-top: 20px;
    padding-bottom: 40px;
}
.information-information-30.spring-design footer {
    margin-top: 0;
}
.information-information-30.spring-design .breadcrumb {
    margin-top: 0;
}


/**** section 1 ****/
.opt-section-1 {
    padding-bottom: 60px;
}
.spring-design .opt-section-1 {
    background-image:
            url(/image/catalog/spring-design/opt/flower-1.svg),
            url(/image/catalog/spring-design/opt/flower-2.svg),
            url(/image/catalog/spring-design/opt/flower-3.svg);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: left bottom, right bottom 230px, right bottom;
}
.opt-sec-1 {
    background: url(/image/catalog/spring-design/opt/1_1.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 50px;
    color: #fff;
    position: relative;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
}
.opt-sec-1:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: -1;
}
.opt-sec-1__title {
    max-width: 450px;
    font-family: Montserrat Alternates, sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 24px;
}
.opt-sec-1__text {
    max-width: 720px;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    opacity: .8;
}

.opt-sec-1__btn-wrap {
    margin-top: 30px;
}
.opt-sec-1__btn {
    align-items: center;
    background: #faf9f7;
    border: 2px solid transparent;
    border-radius: 6px;
    color: var(--brown);
    display: flex;
    font-weight: 600;
    gap: 12px;
    height: 56px;
    justify-content: center;
    transition: all .3s;
    padding-left: 25px;
    padding-right: 20px;
    font-family: Montserrat Alternates, sans-serif;
}
.opt-sec-1__btn .arrow {
    margin-left: 5px;
}
.opt-sec-1__btn svg path {
    stroke: var(--brown);
}
.opt-sec-1__btn:hover {
    background: var(--white);
    border: 2px solid var(--brown);
    color: var(--brown);
}

.spring-design .opt-sec-1__btn1 {
    background-image: url(/image/catalog/spring-design/bestseller-btn.svg);
    background-repeat: no-repeat;
    background-position: right top;
}





/**** section 2 ****/
.opt-section-2 {
    padding-top: 60px;
    padding-bottom: 130px;
}
.opt-sec-2 {
    display: flex;
    align-items: center;
}
.opt-sec-2__img {
    flex: none;
    width: 510px;
    margin-right: 150px;
    position: relative;
    z-index: 1;
}
.opt-sec-2__img:before {
    position: absolute;
    content: "";
    border-radius: 20px;
    width: 100%;
    height: calc(100% - 20px);
    background: #c6dc7c;
    left: -30px;
    top: 80px;
    z-index: -1;
}
.opt-sec-2__img img {
    border-radius: 16px;
}

.opt-sec-2__content {
    background: url(/image/catalog/spring-design/opt/illustration_bg-2.svg) no-repeat;
    background-size: contain;
    background-position: center top;
}
.opt-sec-2__icon {
    width: 97px;
    height: 70px;
    background: url(/image/catalog/spring-design/opt/logo-2.svg) no-repeat;
    background-size: contain;
}
.opt-sec-2__title {
    font-family: Montserrat Alternates, sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.1;
    color: #77931a;
    margin-top: 40px;
}
.opt-sec-2__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    margin-top: 24px;
}
.opt-sec-2__text p {
    color: var(--black);
    line-height: 150%;
}





/**** section 3 ****/
/*.opt-section-3 {*/
/*    background: var(--dark-brown);*/
/*    color: var(--white);*/
/*    padding: 40px 0;*/
/*}*/
/*.opt-sec-3 {*/
/*    display: flex;*/
/*    flex-flow: wrap;*/
/*    gap: 30px 30px;*/
/*}*/
/*.opt-sec-3__item {*/
/*    width: calc(100%/4 - 30px*3/4)*/
/*}*/
/*.opt-sec-3__img {*/
/*    width: 36px;*/
/*    height: 36px;*/
/*    background: url(/image/catalog/spring-design/opt/moon.svg) no-repeat;*/
/*    background-size: contain;*/
/*}*/
/*.opt-sec-3__title {*/
/*    margin-top: 16px;*/
/*    font-weight: 800;*/
/*    font-size: 24px;*/
/*    line-height: 150%;*/
/*    color: var(--white);*/
/*}*/
/*.opt-sec-3__text {*/
/*    font-weight: 400;*/
/*    font-size: 18px;*/
/*    line-height: 150%;*/
/*    margin-top: 16px;*/
/*}*/

.opt-section-3 {
    padding: 80px 0;
    background: url(/image/catalog/spring-design/opt/sec-3-bg.svg) no-repeat;;
    background-size: cover;
    background-position: center
}
.opt-sec-3-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    text-align: center;
    color: #77931a;
    font-family: Montserrat Alternates, sans-serif;
}
.opt-sec-3 {
    margin-top: 40px;
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    gap: 30px 100px;
    justify-content: space-around;
}
.opt-sec-3__title {
    font-weight: 700;
    font-size: 30px;
    line-height: 150%;
    letter-spacing: 0.02em;
    color: #77931a;
}
.opt-sec-3__text {
    font-size: 16px;
    line-height: 150%;
    color: var(--gray);
    margin-top: 2px;
}




/**** section 5 ****/
.opt-section-5 {
    height: 580px;
    background: url(/image/catalog/spring-design/opt/bg-55.jpg) no-repeat;
    background-size: cover;
    background-position: center top;
    position: relative
}
.opt-section-5:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    transform: rotate(90deg);
}

.opt-section-5 .opt__container,
.opt-section-5 .opt-sec-inner,
.opt-sec-5 {
    height: 100%;
}
.opt-sec-5 {
    display: flex;
    align-items: flex-end;
    font-weight: 600;
    font-size: 24px;
    color: #faf9f7;
    max-width: 460px;
    padding-bottom: 110px;

}
.opt-sec-5 p {
    line-height: 1.3;
    position: relative;
    margin: 0;
}
.opt-sec-5 p:before {
    content: "";
    position: absolute;
    left: -55px;
    top: -35px;

    width: 46px;
    height: 125px;
    background: url(/image/catalog/spring-design/opt/q.svg) no-repeat;
    background-size: contain;
}



/**** section 6 ****/
.opt-section-6 {
    padding: 80px 0 40px;
}
.opt-sec-6 {
    display: flex;
}
.opt-sec-6__img {
    width: 500px;
    flex: none;
    margin-right: 100px;
}
.opt-sec-6__img img {
    border-radius: 20px;
}

.opt-sec-6__title {
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    font-family: Montserrat Alternates, sans-serif;
}
.opt-sec-6__text {
    margin-top: 45px;
    font-size: 18px;
    line-height: 150%;
}
.opt-sec-6__text .row {
    margin-bottom: 30px;
}
.opt-sec-6__text .row strong {
    font-weight: 800;
    margin-bottom: 18px;
    display: block;
    line-height: 140%;
}
.opt-sec-6__text .row ul {
    list-style-type: disc;
    padding-left: 24px;
}
.opt-sec-6__text .row ul li {
    line-height: 140%;
    margin-bottom: 4px;
}

.opt-sec-6__text {
    position: relative;
}
.opt-sec-6__text .row > div {
    position: relative;
    background: url(/image/catalog/spring-design/opt/moon-3.svg) no-repeat;
    background-position: right top;
}
.opt-sec-6__text .row > .col-sm-12 {
    background-position: left 42% top;
}




/**** section 7 ****/
.opt-page .home__catalog-2 {
    background: none !important;
}
.opt-page .home__catalog-2 .home__catalog-header {
    justify-content: center;
}


@media (min-width: 1280px) {
    .opt-partner-wrap .home-catalog__wrapper {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    }
}

.opt-partner-item-img {
    position: relative;
}
.opt-partner-item-2 img:nth-of-type(2) {
    position: absolute;
    opacity: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 16px 24px;
}


.opt-partner-item-img {
    height: 124px;
    background: #fff;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.opt-partner-item-img img {
    transition: .25s;
}
.opt-partner-item-1 .opt-partner-item-img:hover img,
.opt-partner-item-4 .opt-partner-item-img:hover img,
.opt-partner-item-6 .opt-partner-item-img:hover img {
    opacity: .5;
}
.opt-partner-item-2 .opt-partner-item-img:hover img:nth-of-type(2) {
    opacity: 1;
}
.opt-partner-item-3 .opt-partner-item-img:hover img {
    filter: brightness(0) saturate(100%) invert(18%) sepia(100%) saturate(3358%) hue-rotate(230deg) brightness(72%) contrast(128%);
}
.opt-partner-item-5 .opt-partner-item-img:hover img {
    filter: brightness(0) saturate(100%) invert(30%) sepia(54%) saturate(2767%) hue-rotate(343deg) brightness(92%) contrast(94%);
}





/**** section 8 ****/
@media (min-width: 1280px) {
    .opt-page .faq-img {
        min-height: 0;
        background-size: cover;
        background-position: center;
    }
}
.opt-page .faq-answer {
    width: 100%;
}






/**** section 9 ****/
.opt-section-9 {
    padding-top: 50px;
    padding-bottom: 10px;
}
.opt-sec-9 {
    max-width: 1060px;
    margin: 0 auto;
    background: #d7e4ab url(/image/catalog/spring-design/opt/flower-green.svg);
    padding: 50px 160px 60px;
    text-align: center;
}
.opt-sec-9__title {
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    text-align: center;
    color: var(--black);
    font-family: Montserrat Alternates, sans-serif;
}
.opt-sec-9__text {
    margin-top: 24px;
    font-size: 18px;
    line-height: 140%;
    text-align: center;
    color: var(--black);
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}
.opt-sec-9__btn-wrap {
    margin-top: 30px;
}

.opt-sec-9__btn,
.modal-opt-btn,
.modal-opt-btn-continue {
    align-items: center;
    background: var(--brown);
    border: 2px solid transparent;
    border-radius: 6px;
    color: var(--white);
    display: flex;
    font-weight: 600;
    gap: 12px;
    height: 56px;
    justify-content: center;
    transition: all .3s;
    padding-left: 25px;
    padding-right: 25px;
    margin-left: auto;
    margin-right: auto;
    font-family: Montserrat Alternates, sans-serif;
}
.spring-design .opt-sec-9__btn,
.spring-design .modal-opt-btn,
.spring-design .modal-opt-btn-continue {
    background-image: url(/image/catalog/spring-design/bestseller-btn.svg);
    background-repeat: no-repeat;
    background-position: right top;
}
.opt-sec-9__btn:hover,
.modal-opt-btn:hover,
.modal-opt-btn-continue:hover {
    background: var(--white);
    border: 2px solid var(--brown);
    color: var(--brown);
}
/********* end opt ************/





/**** modal ****/
.custom-close {
    position: relative;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.custom-close::before,
.custom-close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #FAF9F7;
    transform-origin: center;
}
.custom-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.custom-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}


.modal-custom .modal-header {
    position: relative;
}
.modal-custom .custom-close {
    position: absolute;
    right: -30px;
    top: -30px;
}
.modal-custom .modal-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    text-align: center;
    color: var(--black);
    font-family: Montserrat Alternates, sans-serif;
    margin-bottom: 10px;
}
.modal-custom .modal-text {
    margin-top: 0;
    font-size: 16px;
    line-height: 160%;
    text-align: center;
    color: var(--black);
}


.modal-opt-form .form-control {
    padding-left: 0;
}
.modal-opt-form .control-label {
    margin-bottom: 0;
}

.modal-custom .modal-dialog {
    min-width: 660px;
}
.modal-opt-btn,
.modal-opt-btn-continue {
    width: 100%;
}
.modal-opt-btn-wrap {
    margin-top: 24px;
}


.information-information-30 .modal-backdrop.in {
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1;
}
.modal-opt-form .form-group.required .control-label:after {
    content: "*";
    color: red;
}

#modal-opt-result .modal-opt-btn-wrap {
    margin-top: 0;
}
.modal-opt-btn:disabled {
    opacity: .7;
    cursor: not-allowed;
}
/**** end modal ****/




.pr-tree__inner {
    position: relative;
}
.pr-tree__img {
    max-width: 100%;
    height: auto;
    width: 350px;
}
.pr-tree__number {
    position: absolute;
    right: 86%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 32px;
}
@media (max-width: 1199px) {
    .product_page-right .double {
        flex-flow: wrap;
    }
    .pr-tree {
        width: 100%;
        margin-top: 20px;
    }
    .pr-tree__inner {
        display: inline-flex;
    }
    .pr-tree__number {
        right: 85.5%;
    }
}
@media (max-width: 767px) {
    .pr-tree {
        width: 100%;
        margin-top: 10px;
        text-align: center;
    }
    .pr-tree__number {
        right: 86%;
        font-size: 28px;
    }
}

@media (max-width: 600px) and (min-width: 480px) {
    .pr-tree__number {
        font-size: 24px;
    }
}





/**** up related auto ****/
.pr-related-auto {
    margin-top: 30px;
}
.pr-related-auto__items {
    display: flex;
    flex-flow: wrap;
    margin-left: -10px;
    margin-right: -10px;
}
.pr-related-auto__item {
    margin: 10px 10px;
}
.pr-related-auto__item-link {
    padding: 6px 10px;
    border-radius: 4px;
    display: inline-flex;
    border: 2px solid rgba(162, 136, 122, 1);
    background: #f8f8f8;
}
.pr-related-auto__item-link.active {
    background: rgba(162, 136, 122, .8);
    color: #fff;
    border-color: transparent;
}
.pr-related-auto__item-line {
    margin: 0 3px;
}

@media (max-width: 767px) {
    .pr-related-auto {
        margin-top: 10px;
        padding: 0 15px;
    }
    .pr-related-auto__items {
        margin-left: -5px;
        margin-right: -5px;
        justify-content: center;
    }
    .pr-related-auto__item {
        margin: 5px 5px;
    }
    .pr-related-auto__item-link {
        font-size: 13px;
        padding: 5px 8px;
    }
}
/**** end related auto ****/



.product_page-right .double .stock.st {
    display: none !important;
}
@media (max-width: 767px) {
    .product_page-right .double {
        flex-flow: nowrap;
        align-items: center;
    }
    .product_page-right .double .price-section {
        width: auto;
        flex: none;
        margin-right: 20px;
    }


    .pr-tree {
        width: auto;
        margin-top: 0;
    }
    .pr-tree__img {
        max-width: 100%;
        height: auto;
        width: 240px;
    }
    .pr-tree__number {
        right: 85.5%;
        font-size: 22px;
    }
}

@media (max-width: 379px) {
    .pr-tree__img {
        width: 220px;
    }
    .pr-tree__number {
        right: 85.5%;
        font-size: 21px;
    }
}