@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,600,700,700i');

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

* {
    min-height: 0;
    min-width: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #353c6b;
    margin: 0;
    padding: 0;
    background-color: #fff;
    font-weight: 400;
    overflow-x: hidden;
    /*transition: margin-top .3s ease;*/
}

/*body.sticky-header{*/
/*    margin-top: -38px;*/
/*}*/

a,
button.single_add_to_cart_button {
    text-decoration-skip-ink: none;
    outline: none !important;
    text-decoration: none;
    color: #353c6b;
}

button.single_add_to_cart_button {
    text-transform: uppercase;
}

.variations select {
    margin-left: 0 !important;
    margin-bottom: 10px;
}

form.variations_form {
    padding-left: 10px;
}

table.variations {
    margin-top: 10px;
}

.woocommerce-variation-add-to-cart {
    margin-top: 10px;
}

::selection {
    background: #353c6b;
    color: #fff;
}

::-moz-selection {
    background: #353c6b;
    color: #fff;
}

.img-catalog {
    height: 300px;
}

.wrap {
    margin: auto;
    width: 100%;
    height: auto;
}

.wrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.card {
    width: 300px;
    height: 300px;
    position: relative;
    perspective: 1000px;
    margin-right: 20px;
    transition: box-shadow 500ms;
}

.front,
.back {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 1s;
    backface-visibility: hidden;
    border-radius: 0px;

}

.front {
    background: #353c6b;

    background-blend-mode: screen;
    transform: rotateY(0deg);
}

.back {
    background: #8E98A2;
    background-blend-mode: multiply;
    transform: rotateY(-180deg);
}

.card:hover .front {
    transform: rotateY(-180deg);
}

.card:hover .front img {
    transform: rotateY(0deg) !important;
}

.card:hover .back {
    transform: rotateY(0deg);
    box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.5);
}

.front span {
    color: #8E98A2;
    font-size: 26px;
    font-family: 'Open sans';
    font-weight: 600;
    text-align: center;
}

.back span {
    color: #353c6b;
    font-size: 26px;
    font-family: 'Open sans';
    font-weight: 600;
}

.masonry {
    transition: all 0.5s ease-in-out;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    box-sizing: border-box;
}

/* Masonry item */
.masonry .brick {
    /*margin-bottom: 30px;*/
    width: calc(100% / 4);
    outline: 1px solid rgba(0, 0, 0, .1);
    box-sizing: border-box;
}

@media screen and (max-width: 1200px) {
    .masonry .brick {
        width: calc(100% / 3);
    }
}

@media screen and (max-width: 992px) {
    .masonry .brick {
        width: calc(100% / 2);
    }
}

@media screen and (max-width: 768px) {
    .masonry .brick {
        width: 100%;
    }
}


.masonry .brick a {
    display: block;
    box-sizing: border-box;
}

/* Masonry image effects */
.masonry .brick .img-wrap {
    display: flex;
    justify-content: center;
    align-item: center;
    height: 427px;
    /*background: rgba(0,0,0,.01);*/
    box-sizing: border-box;
}

.masonry .brick img {
    transition: all 0.5s ease-in-out;
    backface-visibility: hidden;
    /* Remove Image flickering on hover */
    max-width: 100%;
    vertical-align: middle;
    max-height: 427px;
    display: table;
    margin: auto;
    box-sizing: border-box;
}

.masonry .brick:hover img {
    opacity: 0.75;
}

/* Gutterless masonry */
.masonry.gutterless {
    column-gap: 0;
}

.masonry.gutterless .brick {
    margin-bottom: 0;
}


#retailers__tab5.active {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.retailer_file {
    width: calc(100% / 6);
    height: auto;
    margin-right: 15px;
    /*box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);*/
    transition: box-shadow 500ms;
    padding: 10px;
}

.retailer_file:hover {
    box-shadow: 0 10px 50px 0 rgba(0, 0, 0, 0.5);
}

.file__title {
    margin-bottom: 20px;
    text-align: center;
    font-size: 18px;
    font-family: 'Open sans';
    font-weight: 600;
}

.upper_line {
    width: 100%;
    height: 25px;
    background-color: #B5B8BF;
    display: none;
}

.user_status {
    padding: 20px;
    background-color: #B5B8BF;
    font-size: 20px;
    font-family: 'Open sans';
    font-weight: 600;
    margin-bottom: 20px;
}

.no__list {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.main-wrap,
body.fix,
html.fix {
    /*overflow: hidden;*/
    position: relative;
}

input::-ms-clear {
    display: none;
}

input {
    outline: none;
}

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

.content {
    min-height: 410px;
}

a:hover {
    color: #353c6b;
}

:focus {
    outline: none !important;
}

a:hover,
a:focus {
    color: #414141;
    text-decoration: none;
}

textarea {
    max-width: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type='number'] {
    -moz-appearance: textfield;
}

.rotate360 {
    transition: transform 2s;
    transform: rotateY(360deg);
}

.checkbox {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    margin: 0;
    font-size: 0;
    cursor: pointer;
    border: 3px solid #B5B8BF;
    min-width: 30px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
}

.checkbox span {
    position: absolute;
    top: 0;
    left: 0;
    /*width: 300px;*/
    /*display: block;*/
    background-color: transparent;
    /*color: #000;*/
    /*text-indent: 0;*/
    /*font-size: 14px;*/
    /*transform: translateY(-50%);*/
}

/*#payment > div > div > p > label > span.woocommerce-terms-and-conditions-checkbox-text, #payment > div > div > p > label > span.required{*/
/*    display: none;*/
/*}*/

.checkbox:hover input~span {
    background-color: rgba(255, 255, 255, 0.1);
}

.checkbox input:checked~span {
    background-color: #B5B8BF;
}

.checkbox span:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox input:checked~span:after {
    display: block;
}

.checkbox span:after {
    left: 9px;
    top: 6px;
    width: 5px;
    height: 10px;
    border: solid #1e2346;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#account__login .checkbox span:after {
    border-color: #B4B7BE !important;
}

.container {
    max-width: 1830px;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.preloader {
    position: relative;
}

.preloader::before {
    content: "";
    background-color: #1e2346;
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../img/preloader.svg");
    background-repeat: no-repeat;
    background-position: 50%;
    left: 0;
    top: 0;
    z-index: 10;
    opacity: 0.8;
}

/* HEADER */

.header-sticky-trigger {
    width: 100%;
    height: 0px;
}

.header {
    background: #353C6B;
    position: sticky;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    top: 0px;
    left: 0;
    width: 100%;
    transition: all .4s ease;
    height: 128px;
    z-index: 9999;
}

.header.is_home {
    /*background: transparent;*/
    position: fixed;
    background: rgba(53, 60, 107, 0.71);
}

.header.is_home.sticky-header {
    /*background: #353C6B;*/
    background: rgba(53, 60, 107, 0.71);
}


.header .menu__menu {
    height: 128px;
    transition: all .4s ease;
    flex-direction: row;
}

.header .menu__menu #inner-menu-logo {
    transition: all .4s ease;
}

.header .menu__menu .account_cart {
    position: relative;
}

.header .menu__menu .menu__account {
    opacity: 1;
    max-width: 400px;
    transition: all .4s ease;
}

.header .menu__menu .menu__account * {
    white-space: nowrap;
}

.header .menu__menu .menu__account .total_count {
    position: absolute;
    left: 30px;
    top: 20px;
}

.header .menu__menu .menu__account a {
    white-space: nowrap;
}

.header .menu__menu .search-wrap {
    transition: all .4s ease;
}

.header.sticky-header {
    height: 50px;
}

.header.sticky-header .menu__menu .menu__account {
    /* transform: scale(0);
    opacity: 0;
    max-width: 220px; */
}

/* .header.sticky-header .menu__menu .search-wrap {
    margin: -40px 0 0 auto;
} */

.header.sticky-header .menu__menu {
    height: 50px;
}

@media screen and (min-width: 1221px) {
    .header.sticky-header .menu__menu #inner-menu-logo {
        max-width: 0;
        max-height: 0;
        opacity: 0;
    }
}

.header .container {
    max-width: 1830px;
}

#inner-menu-logo img {
    max-width: 240px;
    max-height: 88.5px !important;
}

@media screen and (max-width: 1220px) {
    #inner-menu-logo img {
        max-width: 145px;
        max-height: 53.47px !important;
    }
}

#inner-menu-logo {
    margin-left: 80px;
    margin-right: 80px;
}

.menu {
    padding: 0 30px;
    /*margin-top: 31px;*/
    /*margin-bottom: 31px;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.menu .menu__menu .right-content {
    padding-bottom: 12px;
}

@media screen and (max-width: 1220px) {
    .menu .menu__menu .right-content {
        padding-bottom: 0;
    }
}

.menu .menu__menu .menu-wrap {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 auto;
    justify-content: space-around;
}

@media screen and (max-width: 1221px) {
    .menu .menu__menu .menu-wrap {
        justify-content: flex-end;
        margin: 0;
        align-items: center;
        width: 100% !important;
    }
}

.menu__menu .menu-wrap>ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    align-items: center;
    /*padding-left: 45px;*/
}

.menu__menu .menu-wrap>ul>li.search-li {
    position: relative;
    min-height: 30px;
}

.menu__menu ul #inner-menu-logo+li {
    margin-left: 40px;
}

.menu__menu li {
    display: inline-block;
    margin-right: 16px;
    position: relative;
}

.menu__menu li a {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 16px;
    position: relative;
    transition: all .5s ease;
    padding: 4px 8px;
    border-radius: 8px;
    white-space: nowrap;
}

.menu__menu li a:hover {
    background: #DADCE3;
    color: #353C6B;
}

/*.menu__menu li:hover a::after {*/
/*    width: 100%;*/
/*}*/

/*.menu__menu li a::after {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    content: '';*/
/*    height: 3px;*/
/*    background: #B5B8BF;*/
/*    transition: width 0.2s linear;*/
/*    width: 0;*/
/*    bottom: -3px;*/
/*}*/

.menu__account {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.menu__menu__mobile {
    display: none;
}

.account__login {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    cursor: pointer;
    position: relative;
    padding: 4px 8px;
    /*margin-left: 30px;*/
    transition: all .5s ease;
    border-radius: 8px;
}

.account__login:hover {
    background: #DADCE3;
    color: #353C6B
}

/* .account__login:after {
    position: absolute;
    left: 0;
    content: '';
    height: 2px;
    background: #B5B8BF;
    transition: width 0.2s linear;
    width: 100%;
    bottom: -2px;
}

.menu__account .account__login:hover {
    color: #fff;
} */

/*.account__login:hover::after {*/
/*    width: 100%;*/
/*}*/

.account__contact a {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    padding: 4px 8px;
    margin-left: 30px;
    cursor: pointer;
    transition: all 0.5s ease;
    display: block;
    border-radius: 8px;
}

.account__contact a:hover {
    background: #DADCE3;
    color: #353C6B;
}

/*.account__contact a:hover {*/
/*    background-color: transparent;*/
/*    color: #fff;*/
/*}*/

.account__sign {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 22px;
    margin-left: 30px;
    cursor: pointer;
    /*padding: 15px 20px;*/
    transition: all 0.5s;
    border-radius: 8px;
}

.account__sign:hover {
    background-color: #DADCE3;
    color: #353C6B;
}

.menu__menu li a,
.account__login,
.account__sign,
.account__contact a {
    font-size: 13px;
}

.menu__menu li a {
    line-height: 24px;
}

.account__sign {
    /*border: 4px solid #B5B8BF;*/
    padding: 4px 12px;
    /* margin-left: 37px; */
}

.account__contact a {
    /*border: 4px solid #B5B8BF;*/
    padding: 4px 12px;
    margin-left: 26px;
}

/* MODAL */
.fancybox-button--close {
    padding: 7px;
    transition: all 1s;
}

.modal_body {
    font-family: 'Open Sans', sans-serif;
}

.fancybox-button--close:hover {
    transform: rotate(180deg);
}

.auth__modal .fancybox-bg,
.auth__modal .fancybox-button,
.auth__modal .fancybox-is-open .fancybox-bg {
    background-color: #1e2346;
    opacity: 1;
}

.animated-modal {
    overflow: hidden;
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
    transition: all .7s;
}

.fancybox-slide--current .animated-modal {
    transform: translateY(0);
    opacity: 1;
}

/* MODAL LOGIN */

#account__login {
    background-color: #1e2346;
}

.modal__login {
    min-width: 430px;
}

.login__tabs {
    color: #5b5f88;
    font-size: 36px;
    font-weight: 700;
    line-height: 30px;
    display: flex;
    margin-bottom: 50px;
}

.login__tabs .login__tab {
    position: relative;
    cursor: pointer;
    transition: color 0.2s linear;
}

.login__tabs .login__tab:after {
    position: absolute;
    left: 0;
    content: '';
    height: 2px;
    background: #B5B8BF;
    transition: width 0.2s linear;
    width: 0;
    bottom: -21px;
}

.login__tabs .login__tab.active,
.login__tabs .login__tab:hover {
    color: #ffffff;
}

.login__tabs .login__tab.active::after,
.login__tabs .login__tab:hover::after {
    width: 100%;
}

.login__description .form_group {
    padding-bottom: 40px;
}

.login__description .label__block {
    color: #ffffff;
    font-size: 18px;
    text-transform: uppercase;
    padding-bottom: 15px;
    display: inline-block;
}

.login__description .input__block input::placeholder {
    color: #5b5f88;
    opacity: 1;
}

.login__description .input__block {
    border-bottom: 2px solid #5b5f88;
    transition: border-color .5s;
}

.login__description .input__block.error,
.login__description .checkbox.error {
    border-color: #cd353a;
}

.login__description .input__block input {
    border: none;
    background-color: transparent;
    padding: 10px 0;
    font-size: 18px;
    color: #fff;
    width: 100%;
}

.login__tab__separator {
    padding: 0 28px;
}

.login__description .checkbox__block {
    display: flex;
    align-items: center;
    color: #5b5f88;
    font-size: 18px;
    justify-content: space-between;
    line-height: 30px;
}

.login__description .checkbox__block .checkbox__left {
    display: flex;
}

.login__description .checkbox__block .checkbox__left label {
    margin-right: 18px;
}

.login__description .checkbox__block .forget__block a {
    color: #ffffff;
}

.login__description .checkbox__block .forget__block {
    position: relative;
}

.login__description .checkbox__block .forget__block:after {
    position: absolute;
    left: 0;
    content: '';
    height: 2px;
    background: #B5B8BF;
    transition: width 0.2s linear;
    width: 100%;
    bottom: -8px;
}

.login__description .btn_block {
    background-color: #B5B8BF;
    display: inline-block;
    padding: 15px 0;
    min-width: 202px;
    text-align: center;
    color: #1e2346;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
}

/* FOOTER */
.footer {
    background-color: #1e2346;
    padding-bottom: 35px;
    padding-top: 45px;
}

.footer__block {
    display: flex;
    justify-content: space-between;
}

.footer .footer__address,
.footer .footer__address a {
    color: #ffffff;
    font-size: 18px;
    line-height: 30px;
}

.footer__social {
    padding-right: 130px;
}

.footer .footer__title {
    color: #ffffff;
    font-size: 18px;
    padding-bottom: 28px;
    line-height: 18px;
    padding-top: 5px;
}

.footer .footer__social li {
    display: inline-block;
    padding-right: 46px;
}

.footer__social ul {
    font-size: 0;
}

.footer .footer__image {
    padding-top: 30px;
}

.footer a:hover {
    color: #B5B8BF;
}

.footer__menu {
    display: flex;
    justify-content: space-between;
    width: 600px;
    margin-right: 95px;
}

.footer__menu a {
    color: #5b5f88;
    font-size: 18px;
    line-height: 30px;
}

.footer__menu .menu__column {
    padding: 0 15px;
}

/* MAIN BANNER */
.main__banner {
    position: relative;
    overflow: hidden;
}

.main__banner:after {
    position: absolute;
    z-index: -2;
    content: "";
    background-image: url("../img/bg_main.svg");
    height: 100%;
    width: 100%;
    left: 0;
    top: 336px;
    background-position: 50% 0;
    background-repeat: no-repeat;
    opacity: 0.4;
}

/*.main__svg {*/
/*    position: absolute;*/
/*    left: -50px;*/
/*    top: 50px;*/
/*    width: 50%;*/
/*    transform: scale(0.95);*/
/*}*/
.main__svg {
    /*position: absolute;*/
    /*left: 50px;*/
    /*top: 50px;*/
    /*width: 40%;*/
    /*width: calc(44% + 4px);*/
    /* transform: scale(0.85); */
}

.banner__top {
    /*padding-top: 80px;*/
    /*width: 607px;*/
    /*margin-right: 235px;*/
}

.banner-wrapper {
    display: flex;
    flex-grow: 1;
}

.banner-wrapper>div {
    flex-basis: 100%;
    padding: 70px 30px 110px 30px;
}

@media screen and (min-width: 1530px) {
    .banner-wrapper>div {
        padding: 90px 40px 110px 40px;
    }
}

@media screen and (max-width: 1340px) {
    .banner-wrapper .banner {
        max-width: 659px;
    }

    .banner-wrapper {
        display: flex;
        justify-content: center;
    }
}

/*.banner {*/
/*    display: flex;*/
/*    justify-content: flex-end;*/
/*    margin-bottom: 150px;*/
/*}*/

.banner__top .top__title {
    color: #353c6b;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner__top .top__btitle {
    color: #353c6b;
    font-size: 40px;
    font-weight: 300;
    font-style: italic;
    line-height: 86px;
    position: relative;
    display: inline-block;
    padding: 0 25px;
    margin-bottom: 20px;
    text-align: left;
    border-radius: 8px;
    overflow: hidden;
}

.banner__top .top__btitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #B5B8BF;
    transition: width 1s;
}

.banner__top .top__btitle span {
    /*white-space: nowrap;*/
    width: 0;
    line-height: normal;
    padding-top: 10px;
    padding-bottom: 15px;
    /*transition: width 1.25s;*/
    /*transition-delay: 0.25s;*/
    overflow: hidden;
    display: block;
    position: relative;
}

.banner__top.animated .top__btitle span {
    width: 100%;
}

.banner__top.animated .top__btitle::before {
    width: 100%;
}

.banner__top .top__desc {
    font-weight: 400;
    line-height: 30px;
    color: #707070;
    font-size: 16px;
}

.banner__top .top__desc p {
    padding-bottom: 15px;
}

.banner__top .top__slogan {
    font-size: 25px;
    font-weight: 700;
    font-style: italic;
    margin-top: 35px;
}

.banner__top .top__slogan span {
    color: #B5B8BF;
}

.banner__top .top__btn {
    color: #353c6b;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    display: inline-block;
    padding: 15px 45px;
    margin-top: 40px;
    position: relative;
}

.banner__top .top__btn::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #B5B8BF;
    transition: width 1s;
    transition-delay: 0.75s;
    border-radius: 8px;
}

.banner__top .top__btn:hover {
    color: #fff;
}

.banner__top .top__btn:hover::before {
    background-color: #353c6b;
}

.banner__top .top__btn span {
    white-space: nowrap;
    width: 0;
    transition: width 1.25s;
    overflow: hidden;
    display: block;
    transition-delay: 1s;
    position: relative;
}

.banner__top.animated .top__btn::before {
    width: 100%;
}

.banner__top.animated .top__btn span {
    width: 100%;
}

.category__full {
    font-size: 0;
    min-height: 449px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*margin-bottom: 59px;*/
    margin: 0 -25px 59px -25px;
}

.category__full>div {
    flex-basis: 50%;
    flex-grow: 1;
    box-sizing: border-box;
    margin: 0 25px;
    min-height: 449px;
    max-height: 449px;
}

.category__full .full__title {
    color: #353c6b;
    font-size: 60px;
    font-weight: 700;
    padding-bottom: 20px;
}

.category__full .full__descr {
    color: #353c6b;
    font-size: 50px;
    font-weight: 300;
    font-style: italic;
}

.category__full .full__left {
    background-color: #B5B8BF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
}

.category__full .full__right {
    align-self: normal;
    /*max-width: 659px;*/
    overflow: hidden;

    position: relative;

}

.category__full .full__right .button-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.category__full .full__right a img {
    width: 100%;
    min-height: 449px;
    object-fit: cover;
}

.category__full .full__right .button-wrap .cols__descr {
    color: #353c6b;
    font-size: 21px;
    font-weight: 300;
    font-style: italic;
    /*line-height: 50px;*/
    background-color: #B5B8BF;
    padding: 4px 26px;
    line-height: normal;
}

.category__full .full__right .button-wrap .cols__btn {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background-size: 10px;
    background-color: #353c6b;
    background-image: url("../img/icon_right.svg");
    background-repeat: no-repeat;
    background-position: calc(50% + 2px) 50%;
    border-radius: 100%;
    display: block;
    transition: box-shadow 0.5s;
    margin-top: 30px;
}

.category__full .full__right .button-wrap .cols__btn:hover {
    box-shadow: 0 0 5px #353c6b;
}

.category__full .full__btn {
    display: inline-block;
    color: #B5B8BF;
    font-size: 20px;
    font-weight: 700;
    border: 5px solid #353c6b;
    background-color: #353c6b;
    padding: 13.5px 40px;
    margin-top: 40px;
    transition: color .5s, background-color .5s;
}

.category__full .full__btn:hover {
    color: #353c6b;
    background-color: transparent;
}

.category__cols {
    display: flex;
    justify-content: space-between;
}

.category__cols>div {
    margin-bottom: 50px;
    width: 50%;
    min-height: 449px;
    position: relative;
    font-size: 0;
}

.category__cols .cols__img {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.category__cols .cols__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category__cols .cols__left {
    margin-right: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column wrap;
    position: relative;
    border-radius: 8px;
    overflow-y: hidden;
}

.category__cols .cols__left .cols__title {
    color: #353c6b;
    font-size: 36px;
    font-weight: 700;
    line-height: 77px;
    margin-bottom: 7px;
}

.category__cols .cols__left .cols__descr {
    color: #353c6b;
    font-size: 30px;
    font-weight: 300;
    font-style: italic;
    line-height: 50px;
    background-color: #B5B8BF;
    padding: 0.5px 26px;
}

/* .category__cols .cols__left .cols__btn {
    transform: translateY(60px);
} */

.category__cols .cols__left .banner-btn {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category__cols .cols__btn {
    width: 38px;
    height: 38px;
    background-color: #353c6b;
    background-image: url("../img/icon_right.svg");
    background-repeat: no-repeat;
    background-position: calc(50% + 2px) 50%;
    border-radius: 100%;
    display: block;
    min-width: 38px;
    transition: box-shadow 0.5s;
}

.category__cols .cols__btn:hover {
    box-shadow: 0 0 5px #353c6b;
}


.category__cols .cols__right {
    margin-left: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.category__cols .cols__right a {
    /*display: flex;*/
    /* align-items: flex-end; */
    /* position: absolute; */
    /* justify-content: space-between; */
    /*align-items: flex-end;*/
    height: 100%;
    width: 100%;
    /*min-height: 340px;*/
}

.category__cols .cols__right a img {
    width: 100%;
}

.category__cols .cols__right a .banner-btn .cols__btn {
    margin-right: 50px;
    margin-bottom: 36px;
}

.category__cols .cols__right a .cols__title {
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    color: #353c6b;
    padding-right: 15px;
}

.category__cols .cols__right a .cols__bottom {
    background-color: #B5B8BF;
    width: 100%;
    padding: 32px 40px;
    display: flex;
    padding-right: 50px;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
}

.category__cols .cols__right a .cols__title span {
    font-weight: 300;
}

/* MAIN GET STARTED */
.started {
    height: 449px;
    width: 100%;
    background: #B5B8BF;
    background-repeat: no-repeat;
    /* margin-bottom: 55px; */
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    background-size: 100%;
}

.started-bg {
    background: #B5B8BF url("../img/bg_started.png");
    background-size: cover !important;
}

.started .started__title {
    color: #353c6b;
    font-size: 60px;
    font-weight: 700;
    line-height: 77px;
    padding-bottom: 20px;
}

.started .started__btitle {
    background-color: #353c6b;
    color: #B5B8BF;
    font-size: 50px;
    font-weight: 300;
    font-style: italic;
    line-height: 50px;
    display: inline-block;
    padding: 17.5px 18px;
    margin-bottom: 40px;
    border-radius: 8px;
}

.started .started__descr {
    color: #353c6b;
    font-size: 18px;
    font-weight: 400;
    width: 304px;
    line-height: 30px;
    text-align: center;
}

.started .started__btn {
    display: inline-block;
    color: #B5B8BF;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    background-color: #353c6b;
    padding: 10px 42px;
    margin-top: 32px;
    border: 5px solid #353c6b;
    transition: color .5s, background-color .5s;
    border-radius: 8px;
}

.started .started__btn:hover {
    color: #353c6b;
    background-color: transparent;
}

/* ABOUT US BANNER */
.about__banner {
    padding-top: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about__banner::after {
    position: absolute;
    z-index: -1;
    content: "";
    background-image: url("../img/bg_about.png");
    height: 100%;
    width: 100%;
    left: -523px;
    top: 0;
    background-position: 0;
    background-repeat: no-repeat;
}

.woocommerce-info {
    text-align: center;
    width: 100%;
    padding-bottom: 50px;
    font-size: 36px;
}

.about__left__svg {
    position: absolute;
    left: -420px;
    top: 52px;
}

.about__left__svg svg {
    height: 732px;
}

.about__right__svg {
    position: absolute;
    right: -766px;
    top: 75px;
}

.about__right__svg svg {
    height: 732px;
}

.about__title {
    color: #353c6b;
    font-size: 60px;
    font-weight: 700;
    line-height: 77px;
    margin-bottom: 20px;
}

.about__uslogan,
.about__bslogan {
    color: #353c6b;
    font-size: 50px;
    font-weight: 300;
    font-style: italic;
    line-height: 70px;
    position: relative;
    display: table;
    margin: 0 auto;
}

.about__uslogan::before,
.about__bslogan::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #B5B8BF;
    transition: width 1s;
}

.about__bslogan::before {
    transition-delay: 0.75s;
}

.about__uslogan span,
.about__bslogan span {
    white-space: nowrap;
    width: 0;
    transition: width 1.25s;
    transition-delay: 0.25s;
    overflow: hidden;
    display: block;
    position: relative;
}

.about__bslogan span {
    transition-delay: 1s;
}

.about__uslogan {
    padding: 7.5px 45px;
}

.about__bslogan {
    padding: 4px 42px;
}

.about__slogan.animated .about__uslogan span,
.about__slogan.animated .about__bslogan span {
    width: 100%;
}

.about__slogan.animated .about__uslogan::before,
.about__slogan.animated .about__bslogan::before {
    width: 100%;
}

.about__desc {
    color: #707070;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    max-width: 870px;
    margin: 0 auto;
    padding-top: 20px;
}

.about__desc p {
    padding-bottom: 15px;
}

.about__mouse {
    margin: 30px 0;
}

.rug__mouse {
    margin-top: 150px;
}

.mouse__down {
    opacity: .25;
    cursor: pointer;
    transition: opacity .5s;
    display: inline-block;
    background-image: url("../img/icon_mouse.svg");
    width: 26px;
    height: 40px;
    background-repeat: no-repeat;
}

.mouse__down:hover {
    opacity: 1;
}

/* ABOUT TIMELINE */
.timeline {
    padding-left: 12%;
    margin-top: 158px;
}

.timeline__block {
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-flow: row wrap;
    max-width: 1161px;
    margin-left: 212px;
    visibility: visible !important;
}

.timeline__block.right {
    max-width: 1091px;
    margin-left: 0;
}

.timeline__title {
    color: #353c6b;
    font-size: 36px;
    font-weight: 700;
    line-height: 66px;
    margin-top: -10px;
}

.timeline__text {
    display: flex;
    padding-top: 110px;
    padding-bottom: 65px;
}

.main__banner .container {
    position: relative;
}

.timeline__block.right .timeline__text {
    text-align: right;
    justify-content: right;
    width: 100%;
}

.timeline__text__left {
    padding: 0 98.5px;
}

.timeline__img {
    width: 292px;
}

.timeline__img img,
.timeline__img svg {
    width: 292px;
}

.timeline__text__right {
    max-width: 651px
}

.timeline__slogan {
    color: #353c6b;
    font-size: 25px;
    font-weight: 300;
    font-style: italic;
    line-height: 47px;
    margin-top: 10px;
    position: relative;
    display: inline-block;
    padding: 1.5px 14px;
}

.timeline__slogan span {
    white-space: nowrap;
    width: 0;
    transition: width 1.25s;
    transition-delay: 0.25s;
    overflow: hidden;
    display: block;
    position: relative;
}

.timeline__slogan::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #B5B8BF;
    transition: width 1s;
}

.timeline__block.animated .timeline__slogan span {
    width: 100%;
}

.timeline__block.animated .timeline__slogan::before {
    width: 100%;
}

.timeline__descr {
    color: #707070;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.timeline__descr p {
    padding-bottom: 15px;
}

.timeline__vline {
    height: 100%;
    width: 3px;
    background-color: #353c6b;
    position: absolute;
    left: 0;
    top: 0;
}

.timeline__vline.right {
    left: auto;
    right: 0;
}

.timeline__hline {
    max-width: 879px;
    width: 879px;
    height: 3px;
    background-color: #353c6b;
    position: absolute;
    left: 0;
    bottom: 0;
}

.timeline__hline.right {
    left: auto;
    right: 0;
}

.timeline__block.first .timeline__text {
    padding-top: 0;
}

.timeline__box {
    width: 35px;
    height: 35px;
    background-color: #353c6b;
    transform: rotate(45deg);
    position: absolute;
    top: 105px;
    left: -16px;
}

.timeline__vline.right+.timeline__box,
.timeline__vline.right+.timeline__box+.animate {
    right: -16px;
    left: auto;
}

.timeline__block.first .timeline__box {
    top: 6px;
}

.timeline__block.last .timeline__vline {
    height: 100px;
}

.timeline__block .timeline__hline.animate {
    width: 0;
    background-color: #B5B8BF;
}

.timeline__block .timeline__vline.animate {
    height: 0;
    background-color: #B5B8BF;
}

.timeline__block .timeline__box.animate {
    background-color: #B5B8BF;
    opacity: 0;
}

/* CATEGORY */
.products {
    background-color: rgba(112, 112, 112, 0.06);
    padding-left: 490px;
    padding-right: 100px;
    min-height: 637px;
}

.category__block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 5px solid #e3e3e3;
    height: 120px;
}

.products__category {
    font-size: 0;
}

.products__category a {
    opacity: 0.34;
    color: #353c6b;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    display: inline-block;
    padding: 42px 37px;
    border-bottom: 5px solid transparent;
    margin-bottom: -5px;
    min-width: 195px;
    text-align: center;
}

.products__category a:hover,
.products__category a.active {
    /*background-color: #B5B8BF;
    opacity: 1;
    border-bottom-color: #353c6b;*/
    background-color: transparent;
    opacity: 1;
    border-bottom-color: #B5B8BF;
}

.products__grid .grid {
    opacity: 0.3;
    width: 25px;
    height: 26px;
    display: inline-block;
    margin-left: 20px;
    cursor: pointer;
}

.products__grid .grid:hover,
.products__grid .grid.active {
    opacity: 1;
}

.products__grid .grid_1 {
    background-image: url("../img/layout_grid1.svg");
}

.products__grid .grid_2 {
    background-image: url("../img/layout_grid2.svg");
}

.products__grid .grid_3 {
    background-image: url("../img/layout_grid3.svg");
}

.products__block {
    display: flex;
    flex-wrap: wrap;
    margin-right: -37.5px;
    margin-left: -37.5px;
    position: relative;
}



.products__block .product {
    padding: 0px;
    /* 30px */
    margin-bottom: 25px;
    transition: width 0.5s;
}

.products__block.grid_1 .product {
    width: calc(100% / 4);
}

.products__block.grid_2 .product {
    width: calc(100% / 5);
}

.products__block.grid_3 .product {
    width: calc(100% / 6);
}

.products__block .product a {
    position: relative;
    display: inline-block;
}

.products__block .product .kc-product-tooltip {
    display: none;
    background: #B5B8BF;
    overflow: hidden;
    color: #353C6B;
    position: absolute;
    padding: 3px 5px;
    text-align: left;
    z-index: 999999;
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
}


/*.products__block .product > a:hover::after {*/
/*    border: 10px solid #B5B8BF;*/
/*    position: absolute;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    content: "";*/
/*    top: 0;*/
/*    left: 0;*/
/*}*/

/*.products__block .product > a:hover::before {*/
/*    width: 50px;*/
/*    height: 56px;*/
/*    background-color: #B5B8BF;*/
/*    background-image: url("../img/icon_open.svg");*/
/*    background-repeat: no-repeat;*/
/*    background-position: 50%;*/
/*    position: absolute;*/
/*    content: "";*/
/*    top: 0;*/
/*    right: 0;*/
/*}*/

.products__block .caption__name {
    padding-top: 15px;
}

.products__block .caption__name,
.products__block .caption__model {
    font-weight: 400;
    color: #1e2346;
    font-size: 18px;
    line-height: 26px;
}

.products__block .caption__model {
    font-weight: 600;
}

.loading__category {
    background-image: url("../img/preloader_category.svg");
    width: 38px;
    height: 38px;
    margin: 0 auto;
    padding-bottom: 100px;
    background-repeat: no-repeat;
    display: none;
}

.category__svg {
    padding-top: 40px;
    padding-left: 300px;
    padding-bottom: 90px;
    min-height: 637px;
    width: 100%
}

.category__svg svg {
    height: 505px;
}

.category__banner {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: -50px;
}

.category__title {
    color: #353c6b;
    font-size: 60px;
    font-weight: 700;
    line-height: 77px;
    padding-bottom: 11px;
}

.category__slogan {
    color: #353c6b;
    font-size: 50px;
    font-weight: 300;
    font-style: italic;
    line-height: 50px;
    padding: 17.5px 25px;
    position: relative;
    overflow: hidden;
    max-width: 100%;
}

.category__slogan:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #B5B8BF;
    z-index: -1;
    transition: width 1s;
}

.category__slogan span {
    white-space: nowrap;
    width: 0;
    transition: width 1.25s;
    transition-delay: 0.25s;
    overflow: hidden;
    display: block;
}

.category__banner.animated .category__slogan span,
.category__banner.animated .category__slogan:before {
    width: 100%;
}

.category__text {
    margin-right: 71px;
    max-width: 530px;
    min-width: 530px;
    padding-bottom: 30px;
}

.category__desc {
    color: #707070;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    padding-top: 15px;
    padding-bottom: 25px;
}

.category__btn {
    color: #353c6b;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    display: inline-block;
    position: relative;
    padding: 15px 42px;
    overflow: hidden;
    max-width: 100%;
}

.category__btn:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background-color: #B5B8BF;
    z-index: -1;
    transition: width 1s;
    transition-delay: 0.75s;
}

.category__btn span {
    white-space: nowrap;
    width: 0;
    transition: width 1.25s;
    overflow: hidden;
    display: block;
    transition-delay: 1s;
}

.category__banner.animated .category__btn:before {
    width: 100%;
}

.category__banner.animated .category__btn span {
    width: 100%;
}

.filter {
    position: relative;
}

/*.filter.sticky-header, #header-slider_forcefullwidth.sticky-header, div.section.sticky-header{*/
/*    margin-top: -38px;*/
/*}*/

.filter__box {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    /*overflow-y: auto;*/
    /*overflow-x: hidden;*/
}

/*.filter__content::after{
    content: "";
    position: absolute;
    height: 100%;
    width: 60px;
    top: 0;
    left: 0;
    background-color: #B5B8BF;
}*/

.filter__image {
    position: absolute;
    left: -100px;
    top: 29px;
    cursor: pointer;
    opacity: 0.28;
    transition: opacity 0.5s;
}

.filter__image:hover,
.filter__image.open {
    opacity: 1;
}

.filter__btn {
    width: 60px;
    height: 60px;
    background-color: #1e2346;
    position: sticky;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    left: 0;
    top: calc(100% - 60px);
    cursor: pointer;
    z-index: 11;
    display: none;
}

.filter__btn span {
    background-image: url("../img/icon_right.svg");
    background-position: 50%;
    background-repeat: no-repeat;
    transition: transform .5s;
    width: 100%;
    height: 100%;
    display: block;
}

.filter__box.open .filter__btn span {
    transform: rotate(180deg);
}

.filter__box .filter__content {
    position: sticky;
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -ms-sticky;
    position: -o-sticky;
    left: 0;
    top: 0;
    background-color: #fff;
    width: 300px;
    height: 100%;
    transform: translateX(-100%);
    transition: transform 1s;
}

@-moz-document url-prefix() {
    .filter__box .filter__content {
        position: static;
        max-height: calc(100vh);
    }

}

.filter__fixed {
    /*top: 0;*/
    /*position: sticky;*/
    /*position: -webkit-sticky;*/
    left: 0;
    white-space: nowrap;
    overflow: hidden;
    z-index: 1;
}

.filter__fixed__block {
    /*padding: 55px;*/
    padding-left: 115px;
    padding-left: 10px;
    padding-right: 10px;
}

.filter__fixed__block .widget_layered_nav {
    position: relative;
}

.filter__search input {
    color: #1d294b;
    font-size: 25px;
    font-weight: 600;
    font-style: italic;
    line-height: 30px;
    border: none;
    background-color: transparent;
    max-width: 100%;
}

.filter__search input::placeholder {
    opacity: 0.28;
}

.filter__item {
    padding: 25px 0;
    border-bottom: 3px solid rgba(112, 112, 112, 0.08);
    position: relative;
}

.filter__attr {
    cursor: pointer;
}

.filter__attr__title {
    color: #1d294b;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    padding-right: 30px;
    background-image: url("../img/icon_plus_blue.svg");
    background-repeat: no-repeat;
    background-position: 100% 50%;
}

.filter__box .filter__content::-webkit-scrollbar {
    width: 5px;
    background-color: #fff;

}

.filter__box .filter__content::-webkit-scrollbar-thumb {
    border-radius: 10px !important;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3) !important;
    background-color: #353c6b !important;
}

.filter__attr__title.active {
    font-weight: 700;
    background-image: url("../img/icon_minus_blue.svg");
}

.filter__box.open .filter__content {
    width: 300px;
    overflow-y: scroll;
    height: 100%;
    min-width: 300px;
}

.filter__attr__desc {
    padding-top: 15px;
}

.filter__attr__item {
    padding: 15px 0;
    display: flex;
    align-items: center;
}

.filter__attr__item label+span {
    padding-left: 15px;
    font-size: 16px;
    font-weight: 600;
}

.filter__attr__item span+span {
    padding-left: 5px;
    font-weight: 600;
}

.filter.preloader::before {
    background-color: #fff;
    background-image: url("../img/preloader_category.svg");
}

.filter__search__btn,
.filter__search__clear {
    margin: 20px 0;
    width: 100%;
    text-align: center;
    cursor: pointer;
    display: block;
}

.filter__search__btn {
    color: #1e2346;
    font-size: 18px;
    font-weight: 600;
    line-height: 30px;
    background-color: #B5B8BF;
    padding: 10px 0;
    /*margin-top: 90px;*/
}

.filter__search__clear {
    color: #1e2346;
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    line-height: 30px;
    padding: 5px 0;
    border: 5px solid #B5B8BF;
}

.filter-bottom-buttons-wrap {
    display: flex;
    flex-direction: column;
    padding: 0 5px;
}

.filter-bottom-buttons-wrap .button-row {
    display: flex;
    margin: 45px -5px 0 -5px;
}

.filter-bottom-buttons-wrap .button-row>.f-btn {
    width: calc(100% / 2);
    padding: 0 5px;
    margin: 0 auto;
}

.computer .filter-bottom-buttons-wrap .button-row>.f-btn {
    width: 100%;
}

.filter-bottom-buttons-wrap .button-row>.f-btn>a {
    height: 38px;
    line-height: 20px;
    font-size: 16px;
}

/* FAQ */
.faq__search {
    height: 465px;
    background-color: #B5B8BF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq__search__block {
    display: flex;
    flex-flow: row;
    align-content: center;
    justify-content: center;
}

.faq__search__block input {
    background-color: transparent;
    border: none;
    color: #353c6b;
    font-size: 60px;
    font-weight: 300;
    line-height: 77px;
    max-width: 300px;
    padding-left: 21px;
    font-style: italic;
}

.faq__search__block input::placeholder {
    opacity: 0.35;
}

.faq__search__title {
    color: #353c6b;
    font-size: 60px;
    font-weight: 300;
    line-height: 77px;
}

.faq__menu {
    display: flex;
    justify-content: space-between;
    max-width: 1369px;
    align-items: center;
    margin: 75px auto;
}

.faq__menu__separator {
    width: 5px;
    height: 43px;
    background-color: #353c6b;
}

.faq__menu__item {
    color: #353c6b;
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
    cursor: pointer;
}

.faq__menu__item.active,
.faq__menu__item:hover {
    color: #8E98A2;
}

.faq__result {
    margin-bottom: 265px;
}

.faq__content .faq__tab {
    display: none;
}

.faq__content .faq__tab.active {
    display: block;
}

.faq__content__item {
    border-top: 3px solid rgba(112, 112, 112, 0.08);
    padding-top: 30px;
    cursor: pointer;
}

.faq__content__item:last-child {
    border-bottom: 3px solid rgba(112, 112, 112, 0.08);
}

.faq__content__item .faq__content__item__desc {
    display: none;
}

.faq__content__item__title,
.faq__content__item__desc {
    max-width: 1369px;
    margin: 0 auto;

}

.faq__content__item__title {
    color: #1d294b;
    font-size: 30px;
    font-weight: 300;
    line-height: 30px;
    position: relative;
    padding-left: 45px;
    padding-bottom: 30px;
}

.faq__content__item__desc {
    padding-bottom: 30px;
    color: #707070;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.faq__content__item__title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    background-image: url("../img/icon_plus.svg");
    background-position: 50%;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    transition: all 1s;
}

.faq__content__item.active .faq__content__item__title:before {
    background-image: url("../img/icon_minus.svg");
}

/* RUG */

.rug__banner {
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 110px 0;
}

.rug__left__svg {
    position: absolute;
    top: -69px;
    left: 0;
}

.rug__right__svg {
    position: absolute;
    top: -69px;
    right: 0;
}

.rug__left__svg svg,
.rug__right__svg svg {
    height: 955px;
}

.rug__title {
    color: #353c6b;
    font-size: 60px;
    font-weight: 700;
    line-height: 77px;
    padding-bottom: 15px;
}

.rug__uslogan,
.rug__bslogan {
    color: #353c6b;
    font-size: 50px;
    font-weight: 300;
    font-style: italic;
    line-height: 70px;
    position: relative;
    display: table;
    margin: 0 auto;
}

.rug__uslogan::before,
.rug__bslogan::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    /*background-color: #B5B8BF;*/
    transition: width 1s;
}

.rug__bslogan::before {
    transition-delay: 0.75s;
}

.rug__uslogan span,
.rug__bslogan span {
    white-space: nowrap;
    width: 0;
    transition: width 1.25s;
    transition-delay: 0.25s;
    overflow: hidden;
    display: block;
    position: relative;
}

.rug__bslogan span {
    transition-delay: 1s;
}

.rug__uslogan {
    padding: 7.5px 45px;
}

.rug__bslogan {
    padding: 4px 42px;
}

.rug__slogan.animated .rug__uslogan span,
.rug__slogan.animated .rug__bslogan span {
    width: 100%;
}

.rug__slogan.animated .rug__uslogan::before,
.rug__slogan.animated .rug__bslogan::before {
    width: 100%;
}

.rug__desc {
    max-width: 939px;
    padding-bottom: 30px;
    font-size: 18px;
    line-height: 30px;
    color: #707070;
    font-weight: 400;
    margin: 0 auto;
    padding-top: 38px;
}

.rug__desc p {
    margin: 0;
}

.rug__udesc {
    color: #353c6b;
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    line-height: 30px;
}

.rug__timeline {
    display: flex;
    flex-flow: column;
}

.rug__timeline__block {
    width: 50%;
    text-align: right;
    margin: 0 1.5px;
    padding: 0 148px;
    position: relative;
    visibility: visible !important;
}

.rug__timeline__block.right {
    align-self: flex-end;
    border-right: none;
    text-align: left;
}

.rug__timeline__title {
    color: #353c6b;
    font-size: 36px;
    font-weight: 700;
    padding-bottom: 35px;
}

.rug__timeline__box,
.rug__timeline__box.animate {
    width: 35px;
    height: 35px;
    background-color: #353c6b;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    right: -16px;
}

.rug__timeline__box.animate {
    opacity: 0;
    background-color: #B5B8BF;
    z-index: 10;
}

.rug__timeline__block.right .rug__timeline__box {
    right: auto;
    left: -16px;
}

.rug__timeline__line {
    position: absolute;
    right: 0;
    width: 3px;
    background-color: #353c6b;
    top: 0;
    height: 100%;
}

.rug__timeline__line.animate {
    position: absolute;
    right: 0;
    width: 3px;
    background-color: #B5B8BF;
    top: 0;
    height: 0;
}

.rug__timeline__block.right .rug__timeline__line,
.rug__timeline__block.right .rug__timeline__line.animate {
    right: auto;
    left: 0;
}

.rug__timeline__img {
    padding-bottom: 100px;
}

/* DELERS */

.dealer {
    height: 465px;
    background-color: #B5B8BF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px;
}

.dealer__title {
    color: #353c6b;
    font-size: 60px;
    letter-spacing: -0.9px;
    line-height: 77px;
    font-weight: 700;
    padding-bottom: 45px;
    text-align: center;
}

.dealer__title span {
    font-weight: 300;
}

#dealer-search {
    margin-bottom: 50px;
}

.dealer__search__input input {
    color: #353c6b !important;
    font-size: 60px !important;
    font-weight: 300;
    font-style: italic;
    line-height: 77px;
    background-color: transparent;
    border: none;
    text-align: center;
    width: auto !important;
}

.search_param {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 50px;
}

.dealer__search__input input::placeholder {
    opacity: 0.35;
}

.dealer__block {
    display: flex;
    flex-flow: column;
    align-items: center;
}

.dealer__list {
    max-width: 1342px;
    margin: 70px auto;
    padding: 10px;
}

.dealer__list .list__item {
    border-right: 2px solid rgba(53, 60, 107, 0.5);
    border-left: 2px solid rgba(53, 60, 107, 0.5);
    text-align: center;
}

.dealer__list .list__item {
    display: flex;
    justify-content: center;
    flex-flow: column;
    color: #353c6b;
    font-size: 18px;
    font-weight: 600;
    line-height: 35px;
}

.dealer__list .list__item p {
    margin: 0;
}

.dealer__map {
    margin-bottom: 164px;
    margin-top: 97px;
}

/* CONTACTS */
.contact {
    height: 465px;
    background-color: #353c6b;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 125px;
}

.contact__title {
    color: #B5B8BF;
    font-size: 60px;
    font-weight: 300;
    line-height: 77px;
    padding-bottom: 45px;
    text-align: center;
}

.contact__search__input input {
    background-color: transparent;
    text-align: center;
    border: 0;
    color: #B5B8BF;
    font-size: 60px;
    font-weight: 300;
    font-style: italic;
    line-height: 77px;
}

.contact__search__input {
    text-align: center;
}

.contact__form {
    margin-top: 74px;
    margin-bottom: 153px;
}

.contact__form .form_group.col-3 {
    display: flex;
    justify-content: space-between;
    margin-left: -15px;
    margin-right: -15px;
}

.contact__form .form_group.col-3 .input__block {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

.contact__form input,
.contact__form textarea {
    background-color: #f6f6f6;
    color: #1d294b;
    padding: 24.5px 30px;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    line-height: 22px;
    width: 100%;
    border: 1px solid #f6f6f6;
}

.contact__form textarea {
    margin-top: 20px;
    width: 100%;
    min-height: 227px;
    min-width: 100%;
}

.contact__form__left {
    width: 887px;
    max-width: 100%;
}

.contact__btn {
    background-color: #B5B8BF;
    margin-top: 20px;
    color: #353c6b;
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    padding: 9px 10px;
    text-align: center;
    cursor: pointer;
    border: 5px solid #B5B8BF;
    transition: background-color .5s;
}

.contact__btn:hover {
    background-color: transparent;
}

.contact__form__right {
    padding-left: 109px;
    padding-top: 15px;
}

.contact__form__block {
    display: flex;
    justify-content: center;
    flex-flow: row wrap;
}

.contact__form__right .list__item {
    color: #353c6b;
    font-size: 20px;
    font-weight: 400;
    line-height: 50px;
    display: flex;
    flex-flow: column;
}

.contact__form__right .list__item .list__address p {
    margin: 0;
}

/* IMAGE */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.displays_image {
    width: 70%;
    height: auto;
    margin-left: 15%;
    margin-right: 15%;
}

/* DOTS */
.slick-dots {
    position: absolute;
    bottom: -50px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    background-color: #777;
    border-radius: 100px;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}

.slick-dots li.slick-active {
    background-color: #353c6b;
}

/* PRODUCT */
.single__product__block {
    display: flex;
    flex-flow: row nowrap;
    margin-bottom: 80px;
}

.product__slider__item {
    display: flex;
    justify-content: center;
}

.single__product__left {
    padding: 0 10%;
}

.single__product__right {
    min-width: 837px;
    width: 837px;
    padding-top: 0px;
    margin-top: 4.5em;
}

.single__product__right h1 {
    color: #353c6b;
    font-size: 2em;
    font-weight: 700;
    line-height: 30px;
}

.single__product__attributes {
    max-width: 598px;
    background-color: #f6f6f6;
    color: #353c6b;
    font-size: 18px;
    font-weight: 700;
    padding: 50px 60px;
    padding-bottom: 20px;
    padding-top: 40px;
    margin-top: 40px;
    line-height: 30px;
    margin-bottom: 10px;
}

.single__product__attributes span {
    font-weight: 400;
}

.product__attributes__item {
    padding-bottom: 20px;
}

.single__product__faq__desc {
    display: none;
}

.single__product__faq__item {
    border-top: 3px solid rgba(112, 112, 112, 0.08);
    padding-top: 20px;
    cursor: pointer;
}

.single__product__faq__item:last-child {
    border-bottom: 3px solid rgba(112, 112, 112, 0.08);
}

.single__product__faq__title {
    color: #1d294b;
    font-size: 30px;
    font-weight: 300;
    line-height: 30px;
    position: relative;
    padding-left: 45px;
    padding-bottom: 20px;
}

.single__product__faq__title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    background-image: url("../img/icon_plus.svg");
    background-position: 50%;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    transition: all 1s;
}

.single__product__faq__item.active .single__product__faq__title::before {
    background-image: url("../img/icon_minus.svg");
}

.single__product__faq__help {
    color: #707070;
    font-size: 16px;
    margin-top: 35px;
    font-weight: 400;
    line-height: 30px;
}

.single__product__faq__desc {
    padding-bottom: 30px;
    color: #707070;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.my__desc table {
    width: 100%;
    border-color: #707070;
}

.my__desc ul {
    padding: 0;
    list-style-type: none;
}

.my__desc ul>li {
    padding-left: 15px;
}

.my__desc ul>li:before {
    width: 8px;
    height: 8px;
    background-color: #1d294b;
    content: "";
    display: inline-block;
    position: relative;
    top: -2px;
    left: -10px;
}

.product__slider__right,
.product__slider__left {
    width: 60px;
    height: 60px;
    background-color: #1e2346;
    position: absolute;
    left: 0;
    top: calc(50% - 30px);
    cursor: pointer;
    z-index: 10;
}

.product__slider__right {
    right: 0;
    left: auto;
}

.product__slider__right span,
.product__slider__left span {
    background-image: url("../img/icon_right.svg");
    background-position: 50%;
    background-repeat: no-repeat;
    transition: transform .5s;
    width: 100%;
    height: 100%;
    display: block;
}

.product__slider__left {
    transform: rotate(180deg);
}

.single__product__slider.slider-nav {
    margin-top: 30px;
    padding: 0 60px;
}

.single__product__fixed {
    top: 70px;
    position: sticky;
    position: -webkit-sticky;
    left: 0;
}

.single__product__icon {
    display: flex;
    justify-content: space-around;
    padding-bottom: 15px;
}

.single__product__faq__heading {
    color: #353c6b;
    font-size: 36px;
    font-weight: 700;
    line-height: 30px;
    padding-bottom: 60px;
    padding-top: 80px;
}

.product__icons__image {
    cursor: pointer;
    width: 55px;
    height: 55px;
    min-width: 50px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: 100px;
    padding: 10px;
}

.product__icons__image.active {
    border: 1px solid #B5B8BF;
}

.single__product__icons {
    padding-top: 10px;
    max-width: 598px;
}

.product__icons__text {
    display: none;
    color: #B5B8BF;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    padding: 12px;
}

.product__icons__text.active {
    display: block;
}

.product__slider__item.mini {
    margin: 10px;
}

/* RETAILERS */

.retailers {
    height: 465px;
    background-color: #353c6b;
    display: flex;
    align-items: center;
}

.retailers__block__title {
    color: #B5B8BF;
    text-align: center;
    font-size: 60px;
    font-weight: 300;
    line-height: 77px;
}

.retailers__tabs {
    padding-bottom: 128px;
}

.retailers__menu {
    display: flex;
    justify-content: space-between;
    max-width: 1369px;
    align-items: center;
    margin: 69px auto;
    margin-bottom: 128px;
}

.retailers__menu__item {
    color: #353c6b;
    font-size: 36px;
    font-weight: 700;
    line-height: 36px;
    cursor: pointer;
}

.retailers__menu__separator {
    width: 5px;
    height: 43px;
    background-color: #353c6b;
}

.retailers__menu__item.active,
.retailers__menu__item:hover {
    color: #8E98A2;
}

.retailers__content__tab {
    display: none;
    position: relative;
}

.retailers__content__tab.active {
    display: block;
}

.retailers__tab__item .retailers__tab__item__desc {
    display: none;
}

.retailers__bg {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg__iframe {
    width: 100%;
    max-width: 431px;
    height: 459px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    background-color: #ffffff;
    padding: 0 77px;
    display: flex;
    align-items: center;
}

.bg__iframe label {
    color: #353c6b;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-transform: uppercase;
    padding-bottom: 10px;
    display: block;
}

.bg__iframe input[type="text"],
.bg__iframe input[type="password"] {
    border: 0;
    border-bottom: 2px solid #5b5f88;
    width: 100%;
    color: #5b5f88;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    padding-bottom: 5px;
}

.bg__iframe__form,
.bg__iframe form {
    width: 100%;
}

.bg__iframe__btn {
    width: 100%;
    background-color: #B5B8BF;
    color: #002f65;
    font-size: 20px;
    font-weight: 700;
    display: block;
    text-align: center;
    padding: 13.5px 0;
    border: 5px solid #B5B8BF;
    cursor: pointer;
    transition: background-color 0.5s;
}

.bg__iframe__btn:hover {
    background-color: transparent;
}

.bg__iframe a {
    color: #353c6b;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    padding: 35px 0;
    padding-top: 0;
}

.bg__iframe .form_group {
    padding-bottom: 28px;
}

.retailers__tab__item__title {
    color: #1d294b;
    font-size: 30px;
    font-weight: 300;
    line-height: 30px;
    position: relative;
    padding-left: 45px;
    padding-bottom: 30px;
    cursor: pointer;
}

.retailers__tab__item {
    border-top: 3px solid rgba(112, 112, 112, 0.08);
    padding-top: 30px;
}

.retailers__tab__item:last-child {
    border-bottom: 3px solid rgba(112, 112, 112, 0.08);
}

.retailers__tab__item__title,
.retailers__tab__item__desc {
    max-width: 1369px;
    margin: 0 auto;
}

.retailers__tab__item__desc {
    padding-left: 117px;
}

.retailers__news__items {
    display: flex;
    flex-flow: row wrap;
    margin-left: 0;
}

.retailers__news__items .retailers__news__item {
    width: 20%;
    padding: 30px;
}

.retailers__help {
    color: #707070;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}

.retailers__tab__item__title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    background-image: url("../img/icon_plus.svg");
    background-position: 50%;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
    transition: all 1s;
}

.retailers__tab__item.active .retailers__tab__item__title::before {
    background-image: url("../img/icon_minus.svg");
}

.retailers__tab__item.active .retailers__tab__item__title {
    font-weight: 600;
    font-size: 29px;
}

.retailers__news__item a {
    display: block;
    border: 2px solid #B5B8BF;
    color: #353c6b;
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: center;
    padding: 6px;
    margin-top: 20px;
    transition: all 0.5s;
}

.retailers__news__item a:hover {
    background-color: #B5B8BF;
}

.retailers__tab__images {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

.retailers__tab__image {
    padding: 12.5px;
}

.retailers__news__items {
    padding-top: 45px;
}

/* Other */
.menu__menu li.mobile__item {
    display: none;
}

.error_form {
    color: rgb(205, 53, 58);
    padding-top: 5px;
    font-size: 13px;
}

.alert__seccess {
    color: #339d89;
    border: 1px solid #339d89;
}

.alert {
    background-color: #fff;
    margin-bottom: 20px;
    padding: 10px 20px;
    font-weight: 800;
    font-size: 16px;
}

.alert span {
    font-weight: 400;
}

.clearfix:before,
.clearfix:after {
    display: table;
    content: " ";
    clear: both;
}

.header__info_product {
    min-height: 4.5em;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: flex-start;
}

.header__info_product--visualise-link {
    text-align: right;
    margin: 24px 0 10px;
}

.header__info_product--visualise-link span {
    font-size: 10px;
    line-height: 9px;
    display: block;
    text-align: right;
    color: #000;
}

@media screen and (min-width: 300px) and (max-width: 579px) {
    .timeline__slogan {
        line-height: 25px;
        font-size: 12px;
    }
}

@media (max-width: 599px) {

    .rug__uslogan span,
    .rug__bslogan span {
        font-size: 13px;
        width: 100%;
        text-align: center;
        line-height: 18px;
    }

    .rug__timeline__img svg {
        width: 100%;
    }

    .rug__slogan span,
    .rug__bslogan span {
        font-size: 14px !important;
        width: 100% !important;
        text-align: center !important;
        line-height: 20px !important;
    }
}

.img-fluid-small {
    height: 75px;
}

body>div.header>div>div>div.menu__menu>ul>li:nth-child(7) {
    margin-right: 0px;
}

body>div.header>div>div>div.menu__menu>ul>li:nth-child(6) {
    margin-right: 10px;
}

#wrap {
    margin: 50px 100px;
    display: inline-block;
    position: relative;
    height: 60px;
    float: right;
    padding: 0;
    position: relative;
}

#s {
    height: 60px;
    font-size: 30px;
    display: inline-block;
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 600;
    border: none;
    outline: none;
    color: #1d294b;
    padding: 3px;
    padding-right: 60px;
    width: 0px;
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    z-index: 3;
    transition: width .8s cubic-bezier(0.000, 0.795, 0.000, 1.000);
    cursor: pointer;
}

.aws-search-field:focus {
    z-index: 10;
    border: 5px solid #B5B8BF;
    background-color: #fff;
    cursor: text;
    color: #1d294b;
}

#s:focus {
    width: 50vw;
    z-index: 1;
    border: 5px solid #B5B8BF;
    background-color: #fff;
    cursor: text;
    color: #1d294b;
}

#search_submit {
    height: 67px;
    width: 63px;
    display: inline-block;
    color: red;
    float: right;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAADNQTFRFU1NT9fX1lJSUXl5e1dXVfn5+c3Nz6urqv7+/tLS0iYmJqampn5+fysrK39/faWlp////Vi4ZywAAABF0Uk5T/////////////////////wAlrZliAAABLklEQVR42rSWWRbDIAhFHeOUtN3/ags1zaA4cHrKZ8JFRHwoXkwTvwGP1Qo0bYObAPwiLmbNAHBWFBZlD9j0JxflDViIObNHG/Do8PRHTJk0TezAhv7qloK0JJEBh+F8+U/hopIELOWfiZUCDOZD1RADOQKA75oq4cvVkcT+OdHnqqpQCITWAjnWVgGQUWz12lJuGwGoaWgBKzRVBcCypgUkOAoWgBX/L0CmxN40u6xwcIJ1cOzWYDffp3axsQOyvdkXiH9FKRFwPRHYZUaXMgPLeiW7QhbDRciyLXJaKheCuLbiVoqx1DVRyH26yb0hsuoOFEPsoz+BVE0MRlZNjGZcRQyHYkmMp2hBTIzdkzCTc/pLqOnBrk7/yZdAOq/q5NPBH1f7x7fGP4C3AAMAQrhzX9zhcGsAAAAASUVORK5CYII=) center center no-repeat;
    text-indent: -10000px;
    border: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    cursor: pointer;
    opacity: 1;
    cursor: pointer;
    transition: opacity .4s ease;
}

#search_submit:hover {
    opacity: 0.5;
}

#model_name {
    text-transform: capitalize;
    margin-top: -2em;
}

select#pa_model {
    display: none;
}

a.reset_variations {
    display: none !important;
}


.search-wrap {
    position: relative;
    max-width: 220px;
    border-radius: 4px;
}

.filter__search .search-wrap {
    margin: 0 auto;
}

.search-wrap .live-search-list {
    position: absolute;
    bottom: -1px;
    transform: translateY(100%);
    border: 1px solid #CCCCCC;
    z-index: 9999;
    background: #fff;
    display: none;
    min-width: 220px;
}

.filter__search .search-wrap .live-search-list {
    max-width: 220px;
}

.filter__search .search-wrap .live-search-list ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

.filter__search .search-wrap .live-search-list ul li {
    max-width: 218px !important;
    min-width: unset;
}

.search-wrap .live-search-list>i {
    color: #1d294b;
}

.search-wrap .live-search-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
    font-weight: bold;
    max-height: 250px;
    overflow: hidden;
}

.search-wrap .live-search-list ul li {
    transition: all .3s ease;
    background: #fff;
    min-width: 220px;
    border-bottom: 1px solid #cccccc;
    color: #1d294b !important;
    word-break: break-all;
    margin-right: 0 !important;
    /*max-width: 220px;*/
}

.search-wrap .live-search-list ul li:hover {
    background: #f5f5f5;
}

.search-wrap .live-search-list i.loader {
    display: table;
    margin: 8px auto;
    font-size: 20px;
}

.search-wrap .live-search-list .view-all-results {
    font-weight: normal;
    display: none;
}

.search-wrap .live-search-list .view-all-results a {
    text-align: center;
    min-width: 220px;
    color: #21759b;
    display: block;
    font-size: 12px;
    line-height: 40px;
    transition: all .3s ease;
}

.search-wrap .live-search-list .view-all-results a:hover {
    background: #f5f5f5;
}

.search-wrap .live-search-list li a {
    display: flex;
    flex-wrap: nowrap;
    padding: 15px;
    font-size: 13px;
}

.search-wrap .live-search-list li a:after {
    display: none !important;
}

.search-wrap .live-search-list li a span {
    flex-grow: 1;
}

.search-wrap .live-search-list li a span.result_image {
    padding-right: 15px;
    max-width: 66.16px;
    min-width: 66.16px;
}

.search-wrap .live-search-list li a span.result_image img {
    width: 50px;
    height: 50px;
    min-width: 50px;
}

.search-wrap .live-search-list li a span.result_content {
    display: flex;
}

.search-wrap .live-search-list li a span.result_content * {
    white-space: normal;
}

.search-wrap .live-search-list li a span.result_content span.result_head {
    align-self: flex-start;
    color: #1d294b;
    word-break: break-all;
}

.search-wrap .live-search-list li a span.result_content span.result_head span.result_color {
    font-size: 11px;
    margin-top: 4px;
    color: #1d294b;
    word-break: break-all;
}

.search-wrap {
    max-width: 30px;
    position: relative;
    transition: all .3s ease;
    min-height: 30px;
    min-width: 30px;
}

.search-wrap .fa-search {
    color: #fff;
    cursor: pointer;
    position: relative;
    z-index: 50;
    transition: all .3s ease;
}

.search-wrap.open .fa-search {
    color: #363D6B;
}

.search-wrap form {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    background: rgba(218, 220, 227, 0);
    border-radius: 9px;
    padding: 5px 10px;
    max-width: 40px;
    overflow: hidden;
    transition: all .5s ease;
}

.search-wrap.open form {
    position: absolute;
    background: rgba(218, 220, 227, 1);
    z-index: 49;
    left: 0;
    top: 0;
    min-width: 265px;
}

@media screen and (max-width: 1220px) {
    .search-li:not(.s-rtl) .search-wrap {
        display: none;
    }
}

@media screen and (min-width: 1220px) {
    .search-li.s-rtl .search-wrap {
        display: none;
    }
}

.search-li.s-rtl {
    position: relative;
    min-width: 38px;
    min-height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-li.s-rtl .search-wrap {
    margin-right: 20px !important;
}

.search-li.s-rtl .search-wrap form {
    position: relative;
    /*right: 0;*/
    min-height: 38px;
    min-width: 38px;
    border-radius: 40px;
    padding: 0;
    max-height: 38px !important;
    transform: translateX(0%);
    transition: min-width .3s ease, background .1s ease, transform .6s ease !important;
}

.search-li.s-rtl .search-wrap form input {
    opacity: 0
}

.search-li.s-rtl .search-wrap.open form {
    min-width: calc(100vw - 145px);
    transform: translateX(-97%);
    padding: 7px 10px;
    margin-top: -4px;
    /*box-shadow: -30px 0 0 9px #353C6B;*/
    transition: min-width .3s ease, background .1s ease, transform .0s ease !important;
}

.search-li.s-rtl .search-wrap:not(.open) .live-search-list {
    opacity: 0 !important;
}

.search-li.s-rtl .search-wrap.open .live-search-list {
    position: absolute;
    bottom: -1px;
    border: 1px solid #CCCCCC;
    z-index: 9999;
    background: #fff;
    display: none;
    min-width: calc(100vw - 140px);
    transform: translateX(-97%) translateY(100%);
}

.search-li.s-rtl .search-wrap.open .live-search-list li {
    min-width: calc(100vw - 140px);
}

.search-li.s-rtl .search-wrap form>span {
    width: 38px;
    height: 38px;
    transition: all .5s ease
}

.search-li.s-rtl .search-wrap.open form>span {
    width: 17px;
    height: 17px;
}

.search-li.s-rtl .search-wrap.open form input {
    opacity: 1
}

.search-li.s-rtl .search-wrap form {
    overflow: visible;
}

.search-li.s-rtl .search-wrap .fa-search {
    font-size: 28px;
    margin-top: 2px;
    transition: all .5s ease;
}

.search-li.s-rtl .search-wrap.open .fa-search {
    font-size: 14px;
    margin-top: 0;
}

.search-wrap form>* {
    flex-grow: 1;
}

/*.search-wrap form .c-search-submit{*/
/*    width: 36px;*/
/*    max-width: 36px;*/
/*    min-width: 36px;*/
/*    height: 40px;*/
/*    text-align: center;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*    border: 0;*/
/*    transition: all .3s ease;*/
/*    cursor: pointer;*/
/*    background: #B5B8BF;*/
/*}*/

/*.search-wrap form .c-search-submit:hover{*/
/*    background: #A3A7AF;*/
/*}*/

.search-wrap form .c-search-input {
    border: 0;
    padding: 0 8px;
    background: transparent;
    font-size: 14px !important;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: normal !important;
    font-style: italic !important;
    color: #000000 !important;
    transition: all .3s ease;
    line-height: 14px;
}

.search-wrap form .c-search-input:focus {
    border-color: #A3A7AF;
}

.search-wrap form .c-search-input::placeholder {
    font-size: 14px !important;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: normal !important;
    font-style: italic !important;
    color: #000000 !important;
    opacity: 1 !important;
}

.search-wrap form>span {
    display: inline-block;
    width: 17px;
    height: 17px;
    max-width: 17px;
}

.search-wrap form>span>i {
    color: #3A3E6A;
}

body>div.filter>div:nth-child(2) {
    margin-top: 0 !important;
}

.singlecart {
    width: calc(100% / 4);
}

.wc__filter__search__input {
    border: 3px solid #B5B8BF;
    padding: 8px;
    font-size: 14px !important;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: bold !important;
    font-style: italic !important;
    color: #1d294b !important;
    transition: all .3s ease;
    width: 100%;
}

.wc__filter__search__input::placeholder {
    font-size: 14px !important;
    font-family: 'Open Sans', sans-serif !important;
    font-weight: bold !important;
    font-style: italic !important;
    color: #1d294b !important;
    opacity: 1 !important;
}

.products__block .caption__name {
    min-height: 67px;
}

.bitnami-corner-image {
    display: none !important;
}

.rug-link {
    margin-bottom: 42px;
}

.rug-link .row-rug .content-rug {
    padding: 5px 117px;
    background: #3E446A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #B6B8BF;
    border-radius: 8px;
}

.rug-link .row-rug .content-rug h2,
.rug-link .row-rug .content-rug span {
    /*font-family: Open-Sans;*/
    font-style: normal;
    font-weight: 800;
    font-size: 28px;
    line-height: 44px;
    padding: 0;
    margin: 0;
    text-align: center;
}

.rug-link .row-rug .content-rug svg {
    height: 36px;
    transform: scale(1.3);
}

.rug-link .row-rug .content-rug a.rug-builder-link {
    display: inline-block;
    height: 36px;
    background: #C4C4C4;
    /*font-family: Open-Sans;*/
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 33px;
    color: #3E446A;
    padding: 0 20px;
    border-radius: 8px;
}

@media screen and (max-width: 1325px) {
    .rug-link .row-rug .content-rug {
        padding: 5px 80px;
    }
}

@media screen and (max-width: 1280px) {
    .rug-link .row-rug .content-rug {
        padding: 5px 40px;
    }
}

@media screen and (max-width: 1180px) {
    .rug-link .row-rug {
        padding: 0 80px;
    }
}

@media screen and (max-width: 1180px) {
    .rug-link .row-rug {
        padding: 0 30px;
    }
}

@media screen and (max-width: 992px) {
    .rug-link .row-rug .content-rug {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-bottom: 10px;
    }

    .rug-link .row-rug .content-rug h2 {
        text-align: center;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 763px) {
    .rug-link .row-rug .content-rug h2 {
        /*font-size: 22px;*/
        line-height: 1.4;

    }
}

@media screen and (max-width: 500px) {

    .rug-link .row-rug .content-rug h2,
    .rug-link .row-rug .content-rug span {
        font-size: 20px;
    }

    .rug-link .row-rug .content-rug a.rug-builder-link {
        font-size: 18px;
    }
}

@media screen and (max-width: 415px) {
    .rug-link .row-rug .content-rug {
        padding: 5px 20px;
    }

    .rug-link .row-rug .content-rug h2,
    .rug-link .row-rug .content-rug span {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .rug-link .row-rug .content-rug a.rug-builder-link {
        font-size: 16px;
        line-height: 28px;
        height: 28px;
        margin-bottom: 10px;
    }
}

.woocommerce-MyAccount-content {
    padding: 0 10px;
}

.woocommerce-MyAccount-content .woocommerce-table {
    text-align: left;
}

.woocommerce-MyAccount-content .woocommerce-table .product-name {
    text-align: left !important;
}

.woocommerce-MyAccount-content .woocommerce-table th {
    padding: 20px;
}

.woocommerce-MyAccount-content>p:nth-child(1) {
    line-height: 26px;
}

.woocommerce-MyAccount-content .woocommerce-order-details .prod_block .order__details__product {
    margin-bottom: 10px;
}

.woocommerce-MyAccount-content .woocommerce-customer-details {
    width: 100%;
    /*flex-wrap: nowrap;*/
}

.woocommerce-MyAccount-content .woocommerce-customer-details>* {
    box-sizing: border-box;
}

.woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-columns {
    width: 100%;
    display: flex;
    justify-content: flex-start;
}

.woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-columns>div {
    width: calc(100% / 2);
    margin-bottom: 20px;
    max-width: 250px;
}

@media screen and (max-width: 1380px) {
    .woocommerce-MyAccount-content .woocommerce-order-details .prod_block .order__details__product {
        width: calc(100% / 3);
    }
}

@media screen and (max-width: 992px) {
    .woocommerce-MyAccount-content .woocommerce-order-details .prod_block .order__details__product {
        width: calc(100% / 2);
    }
}

@media screen and (max-width: 666px) {
    .woocommerce-MyAccount-content .woocommerce-order-details .prod_block .order__details__product {
        width: 100%;
    }
}

@media screen and (max-width: 410px) {
    .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-columns {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
    }

    .woocommerce-MyAccount-content .woocommerce-customer-details .woocommerce-columns>div {
        width: 100%;
    }
}

#header-slider_forcefullwidth {
    height: 100vh !important;
}

#header-slider_forcefullwidth #header-slider_wrapper {
    position: relative;
    height: 100vh !important;
}

#header-slider_forcefullwidth #header-slider_wrapper #header-slider {
    height: 100% !important;
    max-height: none !important;
}

@media screen and (min-width: 1830px) {
    #header-slider_forcefullwidth {
        height: 100vh !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper {
        position: relative;
        height: 100vh !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper #header-slider {
        height: 100% !important;
        max-height: none !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .rs-parallax-wrap {
        right: 190px !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .rs-text-bg-wrapper {
        top: 555px !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .top-title-wrap {
        top: 560px !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .main-title-wrap {
        top: 589px !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .bottom-title-wrap {
        top: 621px !important;
    }
}

@media screen and (min-width: 1950px) {
    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .rs-parallax-wrap {
        right: 250px !important;
    }
}

@media screen and (min-width: 2099px) {
    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .rs-parallax-wrap {
        right: 300px !important;
    }
}

@media screen and (min-width: 2142px) {
    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .rs-parallax-wrap {
        right: 360px !important;
    }
}

@media screen and (min-width: 2333px) {
    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .rs-parallax-wrap {
        right: 420px !important;
    }
}

@media screen and (min-width: 2485px) {
    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .rs-parallax-wrap {
        right: 560px !important;
    }
}

@media screen and (min-width: 2560px) {
    #header-slider_forcefullwidth {
        height: 1000px !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper {
        height: 1000px !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper #header-slider {
        height: 1000px !important;
        max-height: 1000px !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .rs-text-bg-wrapper {
        top: 722px !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .top-title-wrap {
        top: 727px !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .main-title-wrap {
        top: 758px !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .bottom-title-wrap {
        top: 789px !important;
    }
}

@media screen and (min-width: 2750px) {
    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .rs-parallax-wrap {
        right: 680px !important;
    }
}

@media screen and (min-width: 2950px) {
    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .rs-parallax-wrap {
        right: 750px !important;
    }
}

@media screen and (min-width: 3100px) {
    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .rs-parallax-wrap {
        right: 900px !important;
    }
}

@media screen and (min-width: 3400px) {
    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .rs-parallax-wrap {
        right: 1000px !important;
    }
}

@media screen and (min-width: 3500px) {
    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .rs-parallax-wrap {
        right: 1000px !important;
    }
}

@media screen and (min-width: 3700px) {
    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .rs-parallax-wrap {
        right: 1100px !important;
    }
}

@media screen and (min-width: 3840px) {
    #header-slider_forcefullwidth {
        height: 1250px !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper {
        height: 1250px !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper #header-slider {
        height: 1250px !important;
        max-height: 1250px !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .rs-text-bg-wrapper {
        top: 940px !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .top-title-wrap {
        top: 945px !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .main-title-wrap {
        top: 973px !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .bottom-title-wrap {
        top: 1003px !important;
    }
}

@media screen and (min-width: 3850px) {
    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .rs-parallax-wrap {
        right: 1200px !important;
    }
}

@media screen and (max-width: 720px) {

    #header-slider_forcefullwidth #header-slider_wrapper #header-slider,
    #header-slider_forcefullwidth,
    #header-slider_forcefullwidth #header-slider_wrapper {
        max-height: 371px !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .rs-parallax-wrap {
        right: 190px !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .rs-text-bg-wrapper {
        top: 285px !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .top-title-wrap {
        top: 290px !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .main-title-wrap {
        top: 305px !important;
    }

    #header-slider_forcefullwidth #header-slider_wrapper #header-slider .bottom-title-wrap {
        top: 324px !important;
    }

    #header-slider_forcefullwidth canvas {
        height: unset !important;
        transform: translateY(-37%) !important;
    }
}

.filter__box .cat-filters-wrap {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    flex-direction: column;
    box-sizing: border-box;
    padding: 0 15px;
    /*margin-top: 15px;*/
}

.filter__box .filter-sidebar-close {
    background: transparent;
    border: 0;
    width: 32px;
    margin-left: auto;
    margin-right: 0px;
    cursor: pointer;
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 0;
}

.filter__box .filter-sidebar-close i.kane-cross-icon {
    width: 32px;
    height: 32px;
    display: block;
}

.filter__box .filter-sidebar-close i.kane-cross-icon:before {
    content: '';
    width: inherit;
    height: inherit;
    display: inherit;
    background: url(../img/cross-light.svg) no-repeat;
    background-size: 100% 100%;
}

.filter__box .cat-filters-wrap .cat-filters-row {
    margin: 0 -15px;
    box-sizing: border-box;
    flex-wrap: wrap;
    display: flex;
}

.filter__box .cat-filters-wrap .cat-filters-row>.f-btn {
    width: calc(100% / 2);
    padding: 0 15px;
}

.filter__box .cat-filters-wrap .cat-filters-row>.f-btn>a {
    background: #E3E3E3;
    border-radius: 13px;
    text-align: center;
    display: block;
    height: 38px;
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 38px;
    margin: 5px 0;
    color: #888888;
    box-sizing: border-box;
    transition: all .3s ease;
}

.filter__box .cat-filters-wrap .cat-filters-row>.f-btn>a:hover,
.filter__box .cat-filters-wrap .cat-filters-row>.f-btn>a.active {
    color: #353C6B;
}

.product-result-count-search-wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.product-result-count-search-wrap .search-wrap {
    width: auto !important;
    margin: 0 !important;
}

.product-result-count-search-wrap .filter-btn-wrap {
    background: #D8DAE2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 8px;
    cursor: pointer;
}

.product-result-count-search-wrap .filter-btn-wrap i {
    margin-right: 10px;
}

form.products-per-page {
    margin: 0 0 10px 0 !important;
    width: auto !important;
}

#filter .filter-overlay {
    opacity: 0;
    transition: opacity .5s ease;
}

#filter.open .filter-overlay {
    content: '';
    position: fixed;
    z-index: 9997;
    background: rgba(0, 0, 0, .4);
    width: 100vw;
    height: 100vh;
    top: 0;
    opacity: 1;
    transition: opacity .5s ease;
}

.content-blur {
    filter: blur(5px);
}

.wp-pagenavi {
    padding-bottom: 40px !important;
}

.preload * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

table.variations label {
    float: left;
    margin-bottom: 8px;
    margin-top: 10px;
    font-weight: 600;
}

table.variations select {
    height: 30px;
    width: 234px;
}

.single_variation_wrap .woocommerce-variation-description p {
    margin: 5px 0;
    font-weight: 600;
}

.single_variation_wrap .woocommerce-variation-price .price ins {
    font-weight: 600;
}

/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

#alx-cart-qty-table-column button.qty-btn {
    background: #353C6B;
    color: #fff;
    border: 0;
    height: 46px;
    line-height: 46px;
    width: 40px;
    cursor: pointer;
    transition: all .3s ease;
    border-radius: 1px;
}

#alx-cart-qty-table-column button.qty-btn:hover {
    background: #2d2d5a;
}

#alx-cart-qty-table-column input.qty {
    border: 0;
    background: #F3F3F3;
    box-shadow: inset 0 0 1px 1px rgba(188, 188, 188, 1);
    text-align: center;
    max-width: 50px;
    border-radius: 1px;
}

.woocommerce {
    position: relative;
}

.woocommerce .preloader-wrap-cart {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999999;
}

.woocommerce .preloader-wrap-cart:not(.cart-loader-show) {
    display: none;
}

.cart_totals table tr:nth-child(odd) {
    background: #F3F3F3;
}

.cart_totals table tr:nth-child(even) {
    background: #FCFCFC;
}

.cart_totals table tr td .woocommerce-shipping-methods {
    margin: 0;
    padding: 20px;
}

@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {

    /* Force table to not be like tables anymore */
    table.woocommerce-cart-form__contents,
    table.woocommerce-cart-form__contents thead,
    table.woocommerce-cart-form__contents tbody,
    table.woocommerce-cart-form__contents th,
    table.woocommerce-cart-form__contents td,
    table.woocommerce-cart-form__contents tr {
        display: block;
        border-radius: 0 !important;
        border: 0 !important;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    table.woocommerce-cart-form__contents thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    table.woocommerce-cart-form__contents tr {
        border: 1px solid #ccc;
    }

    table.woocommerce-cart-form__contents td {
        position: relative;
        padding-left: 50% !important;
        text-align: left !important;
        border-bottom: 1px solid #BCBCBC !important;
    }

    table.woocommerce-cart-form__contents td img {
        max-width: 100%;
        height: auto !important;
    }

    table.woocommerce-cart-form__contents td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        background: #ebebeb;
        height: 100%;
        top: 0px;
        left: 0px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-size: 16px;
        font-weight: bold;
        display: flex;
        align-items: center;
        padding-left: 6px;
        /*transform: translateY(-50%);*/
    }

    table.woocommerce-cart-form__contents tr:nth-child(even) td:before {
        background: #f5f5f5;
    }

    table.woocommerce-cart-form__contents td.product-remove {
        text-align: right !important;
        background: #BCBCBC !important;
    }

    table.woocommerce-cart-form__contents td:nth-of-type(2):before {
        content: "Product image";
    }

    table.woocommerce-cart-form__contents td:nth-of-type(3):before {
        content: "Product";
    }

    table.woocommerce-cart-form__contents td:nth-of-type(4):before {
        content: "Quantity";
    }

    table.woocommerce-cart-form__contents td:nth-of-type(5):before {
        content: attr(data-title);
    }

    table.woocommerce-cart-form__contents td:nth-of-type(6):before {
        content: attr(data-title);
    }

    .cart_totals table {
        width: 100%;
        border: 1px solid #BCBCBC !important;
        margin: 0;
        padding: 0;
    }

    .cart_totals table tr {
        margin: 0 !important;
        padding: 0 !important;
    }

    .cart_totals table tr td {
        border-top: 0px !important;
    }

    .cart_totals table tr td,
    .cart_totals table tr th {
        margin: 0 !important;
        border-bottom: 1px solid #BCBCBC !important;
    }

    .cart_totals table tr:last-child td,
    .cart_totals table tr:last-child th {
        border-bottom: 0px !important;
    }
}

#alx-cart-qty-table-column {
    display: flex;
    justify-content: center;
}

#alx-cart-qty-table-column button {
    margin: 0 2px;
}

table tbody tr.woocommerce-cart-form__cart-item.cart_item td.product-thumbnail img {
    max-width: 178px;
    max-height: 178px;
}

div.product__update>div.products__block.grid_3>div:nth-child(3)>div.product__caption>div.upsells_block_shop {
    width: 142px;
}

.product__caption-color-name .color-name {
    margin: 0 auto;
    padding: 12px 3px;
    background: #f1f1f1 !important;
    word-wrap: break-word;
}


.upsells_block_shop {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.grid_3 .upsells_block_shop {
    width: 142px;
    justify-content: flex-start;
}

.grid_2 .upsells_block_shop {
    width: 214px;
    justify-content: flex-start;
}

.grid_1 .upsells_block_shop {
    width: 357px;
    justify-content: flex-start;
}

.grid_3 .product__caption-color-name .color-name {
    max-width: 142px;
}

.grid_2 .product__caption-color-name .color-name {
    max-width: 214px;
}

.grid_1 .product__caption-color-name .color-name {
    max-width: 357px;
}

@media screen and (min-width: 1531px) {
    .product__caption-color-name .color-name {
        /*margin: 0;*/
        text-align: center;
    }

    .products__block {
        margin-right: -40px;
        margin-left: -40px;
    }

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

    .grid_2 .upsells_block_shop {
        width: 214px !important;
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .grid_1 .upsells_block_shop {
        width: 357px !important;
        display: inline-flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    div.product__update>div.products__block.grid_2>div>a>img {
        max-width: 214px;
        width: 214px;
    }

    div.product__update>div.products__block.grid_1>div>a>img {
        max-width: 357px;
        width: 357px;
    }

    /*.product__block.grid_2 .product .upsells_block_shop{*/
    /*    width: 214px !important;*/
    /*}*/
}

@media screen and (max-width: 857px) {
    .grid_1 .product__caption-color-name .color-name {
        max-width: 300px;
    }

    .grid_1 .upsells_block_shop {
        width: 300px;
        justify-content: flex-start;
    }
}

@media screen and (max-width: 768px) {
    .grid_1 .product__caption-color-name .color-name {
        max-width: 280px;
    }

    .grid_1 .upsells_block_shop {
        width: 280px;
        justify-content: flex-start;
    }
}

@media screen and (max-width: 701px) {
    .grid_1 .product__caption-color-name .color-name {
        max-width: 220px;
    }

    .grid_1 .upsells_block_shop {
        width: 220px;
        justify-content: flex-start;
    }
}


@media screen and (max-width: 576px) {
    .grid_1 .product__caption-color-name .color-name {
        max-width: 180px;
    }

    .grid_1 .upsells_block_shop {
        width: 180px;
        justify-content: flex-start;
    }
}

@media screen and (max-width: 550px) {
    .grid_2 .product__caption-color-name .color-name {
        max-width: 160px;
    }

    .grid_2 .upsells_block_shop {
        width: 160px;
        justify-content: flex-start;
    }
}

@media screen and (max-width: 480px) {
    .grid_1 .product__caption-color-name .color-name {
        max-width: 132px;
    }

    .grid_1 .upsells_block_shop {
        width: 132px;
        justify-content: flex-start;
    }
}

@media screen and (max-width: 470px) {
    .grid_2 .product__caption-color-name .color-name {
        max-width: 132px;
    }

    .grid_2 .upsells_block_shop {
        width: 132px;
        justify-content: flex-start;
    }
}

.single__product .related_products {
    margin-left: 0;
    margin-right: 0;
}

@media screen and (max-width: 1068px) {
    .single__product .related_products.grid_1 .product {
        width: 33.33333%;
    }

    div.products__block.grid_1.related_products>div>a>img {
        width: 250px !important;
        height: 250px !important;
    }
}

@media screen and (max-width: 876px) {
    .single__product .related_products.grid_1 .product {
        width: 50%;
    }
}

@media screen and (max-width: 576px) {
    .single__product .related_products.grid_1 .product {
        width: 100% !important;
    }

    .single__product .related_products.grid-1 .product>a>img {
        max-height: unset !important;
    }
}

@media screen and (max-width: 480px) {
    .single__product .related_products.grid-1 .product>a>img {
        max-height: unset !important;
    }
}

@media screen and (max-width: 368px) {
    .single__product .grid_1 .product>a>img {
        max-width: none !important;
    }
}

.product_subtitle {
    padding: 12px 3px;
    background: #f1f1f1;
    margin: 0 auto;
    max-width: 250px;
}

.computer .f-btn.apply-filter-btn {
    display: none;
}

.mobile .filter__fixed__block {
    height: calc((var(--vh, 1vh) * 100) - 67px);
    overflow: auto;
}

.mobile .filter-bottom-buttons-wrap {
    position: fixed;
    background: #fff;
    bottom: 0;
    width: 100%;
    left: 0;
    overflow: hidden;
    transition: background .3s ease, height .3s ease;
    height: 92px;
}

.mobile .filter-bottom-buttons-wrap .button-row {
    margin-top: 0;
    padding: 0 0 10px 5px;
    border-top: 4px solid #F4F4F4;
    transform: translateY(0);
    transition: transform .3s ease;
}

.mobile .filter-bottom-buttons-wrap.hide {
    background: transparent;
    height: 0;
}

.mobile .filter-bottom-buttons-wrap.hide .button-row {
    transform: translateY(100%);
}

.mobile div#filters-list-wrap {
    padding-left: 0;
    padding-right: 0;
}

.about-us-ytb-wrapper {
    width: 1100px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    display: table;
    margin: 0 auto;
}

.single__product__collection__button__wrap {
    padding: 40px 0;
}

.single__product__collection__button__wrap .single__product__collection__button {
    width: 100%;
    padding: 15px 0;
    background-color: #353C6B;
    color: #fff;
    display: block;
    text-align: center;
    font-family: 'Open sans', sans-serif;
    font-size: 20px;
    max-width: 598px;
    transition: background-color .3s ease;
}

.single__product__collection__button__wrap .single__product__collection__button:hover {
    background-color: #3b4376;
}

.about-us-ytb-wrapper {
    width: 1100px;
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
    display: table;
    margin: 0 auto;
}

button.single_add_to_cart_button[disabled],
a.single_add_to_cart_button[disabled] {
    background: #7a7c80;
    cursor: not-allowed;
}

#shipping_method li:first-child {
    display: none;
}

.cart-collaterals tr.cart-subtotal,
.cart-collaterals tr.order-total,
.cart-collaterals #shipping_method {
    display: none;
}

td[id^="cart-item-note-"] {
    text-align: center;
}

td[id^="cart-item-note-"] textarea {
    resize: none;
    padding: 10px;
    border: 1px solid #C1C1C1;
    border-radius: 0;
}

td[id^="cart-item-note-"] button {
    background: #2D2D5A;
    color: #fff;
    font-weight: bold;
    font-family: "Open Sans", sans-serif;
    border: 1px solid #2D2D5A;
    padding: 8px 15px;
    cursor: pointer;
    transition: all .3s ease;
}

td[id^="cart-item-note-"] button:hover {
    background: #1E2346;
    border-color: #1E2346;
}

td[id^="cart-item-note-"] button:disabled {
    cursor: not-allowed;
    background: #B5B8BF;
    border-color: #B5B8BF;
    color: #2D2D5A;
}

.single__product__attributes .product__attributes__item a {
    text-decoration: underline;
}

.cart-continue-shopping {
    background: #2D2D5A;
    color: #fff;
    padding: 15px 30px;
    display: inline-block;
    margin: 20px 0;
    font-weight: bold;
    font-family: "Open Sans", sans-serif;
    font-size: 17px;
    transition: background .3s ease;
}

.cart-continue-shopping:hover {
    background: #1E2346;
    color: #fff;
}


form.woocommerce-cart-form td[data-title="Additional info"] {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

form.woocommerce-cart-form td[data-title="Additional info"]>div.info-fields {
    text-align: left;
    width: auto;
}

form.woocommerce-cart-form td[data-title="Additional info"]>div.info-fields label {
    margin-bottom: 5px;
    margin-top: 5px;
    display: block;
}

form.woocommerce-cart-form td[data-title="Additional info"]>div.info-fields input {
    border: 1px solid #C1C1C1;
    border-radius: 0;
    padding: 8px;
}

.cart-item-btn {
    background: #2D2D5A;
    color: #fff;
    padding: 7px 17px;
    display: inline-block;
    margin: 5px 0;
    font-weight: bold;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    transition: background .3s ease;
    border: 0;
    cursor: pointer;
    text-align: center;
}

.cart-item-btn:hover {
    background: #1E2346;
    color: #fff;
    cursor: pointer;
}


.products-slider {
    margin-bottom: 60px;
    display: flex;
}

.products-slider .slide {
    padding-left: 10px;
    padding-right: 10px;
    max-width: 450px;
}

.products-slider .slide .img-wrap {
    overflow: hidden;
    border-radius: 8px;
}

.products-slider .slide img {
    max-height: 450px;
    height: 450px;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
}

.products-slider .slide img {
    max-width: 100%;
    height: auto;
}

.products-slider .slick-track {
    margin-left: unset !important;
    margin-right: unset !important;
}

@media not all and (min-resolution:.001dpcm) {
    @supports (-webkit-appearance:none) {

        .products-slider .slide img {
            max-width: 100%;
            height: 430px;
        }
    }
}

/*@media screen and (min-width: 992px) {*/
/*    .products-slider .slick-track {*/
/*        margin-left: -10px;*/
/*        margin-right: -10px;*/
/*    }*/
/*}*/

.products-slider-buttons {
    display: flex;
    justify-content: flex-end;
}

@media screen and (max-width: 992px) {
    .products-slider-buttons {
        padding-right: 10px;
    }
}

.products-slider-buttons .buttons-wrap {
    padding-top: 15px;
    padding-bottom: 15px;
    display: table;
}

.products-slider-buttons .buttons-wrap button {
    background: #fff;
    border-radius: 4px;
    color: #aaa;
    border: 1px solid #aaa;
    padding: 10px 20px;
    cursor: pointer;
    transition: background.3s ease;
}

.products-slider-buttons .buttons-wrap button:hover {
    background: #eee;
}

.products-slider-buttons .buttons-wrap button.next {
    margin-left: 1px;
}

.products-slider .product-name {
    font-size: 22px;
    line-height: 28px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.products-slider .slick-dots {
    display: none !important;
}

.products-slider-for-in-one .slide-page-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}


.products-slider-for-in-one .slide-page-wrap>a {
    width: calc(100% / 2);
}

/*.products-slider-for-in-one .slide{*/
/*    padding-top: 20px;*/
/*}*/

.products-slider-for-in-one .slide-page-wrap>a {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.products-slider-for-in-one .slide-page-wrap>a>div.img-wrap {
    overflow: hidden;
    border-radius: 8px;
}

.products-slider-for-in-one .slide-page-wrap>a>div.img-wrap>img {
    width: 250px;
    height: 250px;
    max-width: 100%;
    aspect-ratio: 1/1;
    object-position: center;
    object-fit: cover;
}

@media screen and (max-width: 1298px) {
    .products-slider-for-in-one .slide-page-wrap>a>div.img-wrap>img {
        width: 160px;
        height: 160px;
    }
}

@media screen and (max-width: 425px) {
    .products-slider-for-in-one .slide-page-wrap>a>div.img-wrap>img {
        width: 130px;
        height: 130px;
    }
}

.products-slider-for-in-one .slide-page-wrap>a .product-name {
    margin-top: 20px;
    font-size: 20px;
}

.products-slider-for-in-one .slick-custom-arrow i {
    font-size: 52px;
    color: #353C6B
}

.products-slider-for-in-one .slick-custom-arrow:before {
    display: none;
}

@media screen and (max-width: 992px) {
    .banner-wrapper {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .banner-wrapper>div {
        flex-basis: unset;
        max-width: 100% !important;
        width: 100%;
    }

    .banner-wrapper #main__svg {
        padding-left: 80px;
        padding-right: 80px;
        padding-bottom: 0;
    }

    .products-slider-for-in-one .slide-page-wrap>a>img {
        width: 230px;
        height: 230px;
    }

    .products-slider-for-in-one .slick-custom-arrow i {
        font-size: 34px;
        color: #353C6B
    }
}

@media screen and (max-width: 768px) {
    .products-slider-for-in-one .slide-page-wrap>a>img {
        width: 150px;
        height: 150px;
    }
}

@media screen and (max-width: 576px) {
    .products-slider-for-in-one .slide-page-wrap>a>img {
        width: 100px;
        height: 100px;
    }

    .products-slider-for-in-one .slide-page-wrap>a .product-name {
        margin-top: 20px;
        font-size: 14px;
    }

    .banner-wrapper #main__svg {
        padding-left: 30px;
        padding-right: 40px;
    }
}

.products-slider-for-in-one .slick-next,
.products-slider-for-in-one .slick-prev {
    height: auto;
    width: auto;
}

.header {
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width: 1220px) {
    .header {
        flex-direction: row;
    }

    .header .menu__menu #inner-menu-logo {
        max-width: 130px !important;
        margin: 0;
        max-height: 44px;
        opacity: 1 !important;
    }

    .header .menu__menu a:hover {
        background: transparent !important;
    }
}

.header.filled {
    background: #353C6B;
}

.category__cols .cols__left .cols__bottom {
    background-color: #B5B8BF;
    width: 100%;
    padding: 32px 40px;
    display: flex;
    padding-right: 50px;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    bottom: 0;
}

.category__cols .cols__left .cols__bottom .cols__title {
    font-size: 36px;
    line-height: 40px;
    color: #353c6b;
    padding-right: 15px;
    font-weight: 300;
}

@media (max-width: 992px) {
    .category__cols .cols__left .cols__title {
        padding-right: 0;
        text-align: center;
        font-size: 24px !important;
        padding-bottom: 10px;
    }
}


@media (max-width: 992px) {
    .category__cols .cols__left .cols__bottom {
        flex-flow: column;
    }
}


.category__cols .cols__left .cols__bottom .cols__title:first-letter {
    text-transform: capitalize;
}

.single__product-visualise-link a {
    display: inline-block;
    background: url("../img/vizilogo.png") 100% center no-repeat;
    padding: 8px 84px 8px 0;
    font-size: 18px;
    text-decoration: underline;
}

.single__product-visualise-link a:hover {
    text-decoration: none;
}

.dsr__price {
    margin-bottom: 15px;
}

.wpsl-store-location span.store_tag {
    background-color: #B5B8BF;
    color: #353c6b;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 20px;
    display: block;
    width: fit-content;
}

.border-group {
    display: flex;
    gap: 10px;
    align-items: baseline;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 80%;
    max-height: 80%;
    overflow-y: auto;
    position: relative;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.product-item {
    margin: 10px;
    cursor: pointer;
}

.product-image {
    width: 100%;
    height: 0;
    padding-top: 100%;
    position: relative;
    overflow: hidden;

}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title {
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 15px;
    text-align: center;
}

.product-color {
    font-size: 0.9rem;
    color: #666;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup-content {
    background-color: #fff;
    padding: 30px 20px 20px 20px;
    border-radius: 8px;
    max-width: 80%;
    max-height: 80%;
    overflow-y: auto;
    position: relative;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.clear-canvas {
    cursor: pointer;
    display: none;
}

.product-color {
    padding: 15px;
    background-color: #f1f1f1;
    text-align: center;
}

.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #353c6b;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
body.no-scroll {
    overflow: hidden!important;
}

.woocommerce-result-count-wrap {
    display: flex;
    flex-direction: column;
    flex-basis: 50%;
}

@media (min-width: 1299px){
    #d-filter-by-year-form.left-side {
        display: none;
    }
}
@media (max-width: 1299px) {
    .kane-filters {
        display: none;
    }
    #d-filter-by-year-form.left-side {
        display: block;
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .woocommerce-result-count-wrap > p {
        margin-bottom: 0;
        width: 100%;
    }
}

@media (max-width: 576px) {
    #d-filter-by-year-form label[for="d_filter_by_year"] {
        display: none;
    }

    #d-filter-by-year-form select {
        padding-left: 0 !important;
    }

    #d-filter-by-year-form .d_spacer {
        display: none;
    }

    .woocommerce-result-count-wrap {
        flex-basis: 75%;
    }
}

@media (max-width: 1243px) and (min-width: 1220px) {
    .products .products__grid {
        display: none !important;
    }
}

@media (max-width: 1220px) and (min-width: 1200px) {
    .products .products__block {
        padding-left: 300px;
    }
    .for-update .wp-pagenavi {
        padding-left: 300px;
    }
}