/**
 * MOBILE MENU
 */

/* NAV TOGGLE */
.nav-toggle span {
    background: #79747a;
}

.nav-toggle.active span {
    background: var(--color-lightBlue);
}

/* RWD MENU */
.rwd-menu ul > li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rwd-menu ul > li {
    display: block;
    float: left;
    /*margin-bottom: -1px;*/
    width: 100%;
    border-bottom: 1px solid #e5e5e5;
    text-align: left;
    position: relative;
}

.rwd-menu ul > li .glyphicon-bg {
    position: absolute;
    top: -1px;
    right: 0;
    width: 50px;
    height: 51px;
    background-color: var(--color-lightBlue);
    color: #fff;
}

.glyphicon {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s;
    font-size: 14px;
}

.rwd-menu ul > li.active-slide .glyphicon-bg .glyphicon {
    -webkit-transform: scaleY(-1);
    -moz-transform: scaleY(-1);
    -ms-transform: scaleY(-1);
    -o-transform: scaleY(-1);
    transform: scaleY(-1);
}

.rwd-menu ul > li > a,
.rwd-menu .rwd-categories-title {
    position: relative;
    padding: 13px 15px 13px;
    color: #000;
    text-align: left;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    display: block;
}

.rwd-categories-title:after {
    content: '\f107';
    font-family: FontAwesome;
    display: block;
    width: 50px;
    height: 50px;
    line-height: 48px;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s;
}

.rwd-categories-title.active:after {
    -webkit-transform: scale(-1);
    -moz-transform: scale(-1);
    -ms-transform: scale(-1);
    -o-transform: scale(-1);
    transform: scale(-1);
}

.rwd-menu .rwd-menu-wrapper > ul > li.active-link > a {
    color: var(--color-lightBlue);
    text-decoration: none;
    font-weight: 700;
}

.rwd-menu ul > li > a#home {
    padding-left: 50px;
    background: url(../images/home.png) no-repeat 15px 16px;
}

.rwd-menu ul > li.active-link > a#home {
    background: url(../images/home.png) no-repeat 15px -76px;
}

.rwd-menu ul > li > ul > li > a .box-title {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.rwd-menu ul > li.active > ul {
    display: block;
}

.rwd-menu ul > li.active > a {
    /*font-weight: bold;*/
    color: var(--color-lightBlue);
}

.rwd-menu ul > li > a > .glyphicon-bg {
    position: absolute;
    top: 1px;
    right: 0;
    bottom: 0;
    width: 50px;
    background: #e7e7e7;
    color: #000;
    text-align: center;
    transition: 0.4s all;
}

.rwd-menu ul > li > ul > li > a,
.rwd-menu ul > li.active > ul > li > a {
    color: #000;
}

.rwd-menu ul > li > ul > li.active-link > a {
    text-decoration: underline;
}

.rwd-menu ul > li:first-child > a > .glyphicon-bg {
    top: 0;
}

.rwd-menu ul > li > a .glyphicon {
    width: 100%;
    vertical-align: middle;
    text-align: center;
    line-height: 50px;
    transition: 0.4s all;
}

.rwd-menu ul > li.active > a .glyphicon {
    transition: 0.4s all;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.rwd-menu ul > li.active > ul > li:last-child {
    border-bottom: 0;
}

.rwd-menu ul > li ul {
    border-bottom: 1px solid #000;
}

.rwd-menu ul > li > ul > li {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #e7e7e7;
    text-align: center;
}

.rwd-menu ul > li > ul > li:last-child {
    margin-bottom: -1px;
}

.rwd-menu ul > li > ul > li > a {
    position: relative;
    padding: 13px 15px 13px 35px;
    color: #000;
    text-align: left;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.rwd-menu ul > li > ul > li > a > .glyphicon-bg,
.rwd-menu ul > li > ul > li > ul > li {
    background: #b7b7b7;
}

.rwd-menu ul > li > ul > li > ul > li > a {
    padding: 13px 15px 13px 55px;
}

.rwd-menu ul > li > ul > li > a:before {
    position: absolute;
    top: 22px;
    left: 15px;
    width: 5px;
    height: 5px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #000;
    content: '';
}

.rwd-menu ul > li > ul > li.active-link > a:before {
    background: #000;
}

.rwd-menu ul > li > ul > li > ul > li > a:before {
    left: 35px;
}

.rwd-menu ul > li > ul > li > ul {
}

.rwd-menu ul > li > ul > li > ul > li > ul {
}

.rwd-panel {
    display: none;
    pointer-events: none;
    overflow-x: hidden;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: 100%;
}

.rwd-panel-wrapper {
    pointer-events: visible;
    overflow-x: hidden;
    height: inherit;
    background: #fff;
}

.rwd-lang li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.rwd-lang .lang {
    display: block;
    padding: 12px 15px;
    color: #000;
}

.rwd-lang .lang span {
    font-size: 16px;
}

.rwd-lang .langs-menu-icon {
    margin-right: 15px;
}

.rwd-lang .langs-menu-short {
    display: none;
}

.rwd-lang .langs-menu-long {
    display: inline-block;
    text-transform: uppercase;
}

/* --------------- BREAKPOINTS --------------- */

@media screen and (max-width: 1840px) {
    .mainSlider-content {
        max-width: calc(100% - 160px);
    }

    .mainSlider-content-image + .mainSlider-content-info {
        padding-left: var(--space-60);
    }

    /*.product-list-slider-arrows {*/
        /*position: static;*/
        /*padding-left: 0;*/
        /*padding-right: 0;*/
        /*-webkit-transform: none;*/
        /*-moz-transform: none;*/
        /*-ms-transform: none;*/
        /*-o-transform: none;*/
        /*transform: none;*/
        /*text-align: center;*/
        /*display: flex;*/
        /*width: 100%;*/
        /*justify-content: center;*/
    /*}*/

    /*.product-list-slider-arrows .btn {*/
        /*margin-bottom: var(--space-40);*/
        /*background-color: #fff;*/
        /*border-color: #e5e5e5;*/
    /*}*/

    /*.product-list-slider-arrows .btn + .btn {*/
        /*margin-left: 10px;*/
    /*}*/

    /*.product-list-slider-next {*/
        /*float: none;*/
    /*}*/

    /*---- buttons ----*/

    .btn-squareGiantic {
        width: 52px;
        height: 52px;
    }

    .btn-squareGiantic .caption {
        line-height: 48px;
        font-size: 32px;
    }

    .linkBar-contact {
        padding: 0 150px 0 60px;
    }
}

@media screen and (max-width: 1600px) {
    .section-mainpage-categories {
        margin: var(--space-60) 0;
    }

    .mainSlider-title {
        font-size: var(--font-36);
    }

    .product .price:not(.price-old) {
        font-size: 18px;
    }

    .box-title {
        font-size: var(--font-36);
    }

    .box-description {
        margin-top: var(--space-25);
    }

    .box-button {
        margin-top: var(--space-30);
    }

    .linkBanner-title {
        font-size: 54px;
        width: 380px;
    }

    .product-view-content {
        padding-left: 100px;
    }
}

@media screen and (max-width: 1440px) {
    .container {
        padding-left: 50px;
        padding-right: 50px;
    }

    .header-categories .category-menu ul {
        padding-right: 680px;
    }

    .header-categories li > a {
        font-size: 13px;
    }
    .header-categories li ul li {
        padding: 0 15px;
    }

    .header-categories li ul li:nth-child(5n + 1) {
        padding-left: 0;
    }

    .header-categories li ul li:nth-child(5n + 5) {
        padding-right: 0;
    }

    .header-categories .category-menu li:nth-child(5n + 1) {
        padding-left: 15px;
    }

    .header-categories .category-menu li:nth-child(2n + 1) {
        padding-left: 0;
    }

    .header-categories .category-menu li:nth-child(5n + 5) {
        padding-right: 15px;
    }

    .header-categories .category-menu li:nth-child(2n + 2) {
        padding-right: 0;
    }

    #content {
        padding-top: 181px;
    }

    .section-whyUs {
        --title-width: 400px;
    }

    /*.product {*/
        /*padding: 15px;*/
    /*}*/

    /*.products-list {*/
        /*margin: -15px;*/
    /*}*/

    .mainSlider-label .product-label {
        padding: 2px 25px 4px;
    }

    .box {
        display: flex;
        flex-direction: column;
    }

    .box-content {
        position: static;
        padding: var(--space-30) 30px;
        border: 1px solid #e5e5e5;
        border-width: 0 1px 1px 1px;
        flex-grow: 1;
    }

    .box:nth-child(even) .box-content-innerWrapper,
    .box-content-innerWrapper {
        padding-right: 0;
        color: #000;
    }

    .box:nth-child(odd) .box-content {
        border-left: none;
    }

    .box:nth-child(even) .box-content {
        padding-left: 30px;
        border-right: none;
    }

    .box-description {
        max-width: 100%;
    }

    .linkBar-contact {
        padding: 0 100px 0 50px;
    }

    .linkBanner-title {
        font-size: 46px;
        width: 350px;
    }

    .linkBar-contact-element .icon {
        width: 76px;
        height: 76px;
    }

    .linkBar-contact-element .caption {
        margin-top: 10px;
        font-size: 21px;
    }

    .userpanel-container h1 {
        font-size: 32px;
    }
}

@media screen and (max-width: 1366px) {
    .header-categories > li > ul > li {
        padding: 0 15px;
    }

    .header-item + .header-item {
        margin-left: 12px;
        padding-left: 15px;
    }

    .header-top-text .text-highlight {
        font-size: 14px;
    }

    .footer-delivery-list {
        max-width: 200px;
    }
}

@media screen and (max-width: 1280px) {
    .container {
        padding-left: 40px;
        padding-right: 40px;
    }

    #main-menu > ul > li > a {
        padding: 10px;
    }

    #search-form {
        width: 380px;
    }

    .section-whyUs {
        --title-width: 350px;
    }

    .mainSlider-slide.noLeftImage .mainSlider-label {
        top: 20px;
    }

    .product {
        width: 33.3333%;
    }

    .products-list.products-list-slider:not(.slick-initialized) .product:nth-child(4) {
        display: none;
    }

    .box-content,
    .box:nth-child(even) .box-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .product-view-content {
        padding-left: 50px;
    }

    .footer-contact-group-title,
    .footer-toggle a,
    .footer-toggle .text {
        font-size: 14px;
        line-height: 32px;
    }
}

@media screen and (min-width: 1140px) {
    .rwd-lang,
    .rwd-menu,
    .nav-toggle {
        display: none;
        display: none !important;
    }

    .footer-toggle {
        display: block !important;
    }

    /*.container.container {*/
        /*max-width: 1790px;*/
        /*padding-left: 100px;*/
        /*padding-right: 100px;*/
    /*}*/
}

@media screen and (max-width: 1139px) {
    .text table tr td {
        padding: 6px 10px;
    }

    #main-menu {
        display: none;
    }

    .nav-toggle {
        display: block;
        margin: 20px 0 20px 20px;
    }

    .langs-menu ul {
        display: none !important;
    }

    .rwd-hide {
        display: none;
    }

    .text img {
        max-width: 100%;
        max-width: 100% !important;
    }

    .container {
        width: 100%;
    }

    .body-block {
        position: fixed;
        width: 100%;
    }

    .breadcrumb-container {
        margin: 15px 0;
    }

    .header-top {
        display: none;
    }

    .header-top-innerWrapper > .header-items-wrapper--left {
        display: none;
    }

    .header-top-innerWrapper {
        justify-content: flex-end;
    }

    .rwd-menu .header-categories-rwd > li {
        margin-bottom: 0;
    }

    .rwd-menu .header-categories-rwd > li > a {
        background-color: #f7f7f7;
    }

    .rwd-menu-wrapper .header-items-wrapper--left {
        display: inline-block;
        width: 100%;
        margin: 30px 0;
    }

    .rwd-menu-wrapper .header-item + .header-item {
        margin-left: 0;
        margin-top: 5px;
    }

    .rwd-menu-wrapper .header-item + .header-item:before {
        display: none;
    }

    .rwd-menu-wrapper .header-top-text:before {
        display: none;
    }

    /*.rwd-menu-wrapper .header-categories {*/
        /*display: flex;*/
        /*flex-wrap: wrap;*/
        /*border-top: 1px solid #e5e5e5;*/
        /*background: linear-gradient(to right, #424ffe 0%, #01c0f7 50%, #00f1db 90% ,#01f3db 100%);*/
    /*}*/

    /*.rwd-menu-wrapper .header-categories > li {*/
        /*width: 33.3333%;*/
        /*flex-basis: initial;*/
        /*align-items: stretch;*/
        /*display: flex;*/
        /*border: none;*/
        /*margin-bottom: 0;*/
    /*}*/

    /*.rwd-menu-wrapper .header-categories > li:before {*/
        /*display: none;*/
    /*}*/

    /*.rwd-menu-wrapper .header-categories > li:first-child {*/
        /*border: none;*/
    /*}*/

    /*.rwd-menu-wrapper .header-categories > li > a {*/
        /*font-size: 14px;*/
        /*padding-top: 10px;*/
        /*padding-bottom: 10px;*/
        /*align-items: center;*/
        /*display: flex;*/
        /*justify-content: center;*/
        /*text-align: center;*/
        /*line-height: 1.4;*/
        /*border-right: 1px solid #e5e5e5;*/
        /*border-bottom: 1px solid #e5e5e5;*/
        /*color: #fff;*/
        /*font-weight: 700;*/
    /*}*/

    .rwd-menu-wrapper .rwd-user-list > li > a {
        padding-top: 7px;
        padding-bottom: 7px;
        padding-left: 10px;
    }

    .rwd-menu-wrapper .rwd-user-list > li > a .shop-itemsTotalPrice-gross {
        display: inline-block;
        vertical-align: middle;
        font-weight: 700;
        color: var(--color-lightBlue);
        padding-left: 6px;
    }

    .rwd-menu .header-categories > li.active > a {
        color: #fff;
    }

    .rwd-menu-wrapper .rwd-user-list > li > a .shop-itemsTotalPrice-gross .caption {
        display: none;
    }

    .rwd-menu-wrapper .rwd-user-list > li > a > .icon {
        width: 36px;
        height: 36px;
        display: inline-block;
        vertical-align: middle;
    }

    .rwd-menu-wrapper .rwd-user-list > li > a > .icon > svg {
        fill: var(--color-lightBlue);
    }

    .rwd-menu-wrapper .rwd-user-list > li > a > .caption {
        display: inline-block;
        vertical-align: middle;
        padding-left: 4px;
    }

    .header-items-wrapper--left > .header-item {
        justify-content: center;
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-bottom {
        border-bottom: 1px solid #e5e5e5;
        background: #f3f3f3;
    }

    .header-bottom-innerWrapper {
        display: block;
    }

    header > .header-bar {
        display: none;
    }

    .header-bottom-innerWrapper #search-form {
        width: auto;
        background-color: #fff;
        border: 1px solid #000;
        padding: 1px;
    }

    .header-bottom-innerWrapper #search-form .mainsearch-submit > svg {
        fill: #000;
    }

    .header-bottom-innerWrapper #search-form .mainsearch-input-wrapper {
        display: none;
    }

    .header-bottom-innerWrapper #search-form .mainsearch-submit {
        width: 36px;
        height: 36px;
        padding: 0;
    }

    .header-bottom-innerWrapper > .header-item {
        padding: 14px 10px;
        float: right;
        --icon-size: 40px;
    }

    .header-bottom-innerWrapper > .header-basket {
        float: right;
    }

    .header-bottom-innerWrapper > .header-basket .btn .caption {
        display: none;
    }

    .mainsearch-fancybox #search-form {
        width: 310px;
    }

    .mainsearch-fancybox #search-form .mainsearch-input-wrapper {
        width: calc(100% - 84px);
    }

    .mainsearch-fancybox #search-form .mainsearch-submit {
        border-right: 1px solid #ffffff3d;
    }

    .mainsearch-fancybox .fancybox-close-small {
        top: 50%;
        right: 0;
        width: 42px;
        height: 42px;
        -webkit-transform: translate(0%, -50%);
        -moz-transform: translate(0%, -50%);
        -ms-transform: translate(0%, -50%);
        -o-transform: translate(0%, -50%);
        transform: translate(0%, -50%);
    }

    .mainsearch-fancybox .fancybox-close-small:after {
        top: 50%;
        right: 50%;
        -webkit-transform: translate(50%, -50%);
        -moz-transform: translate(50%, -50%);
        -ms-transform: translate(50%, -50%);
        -o-transform: translate(50%, -50%);
        transform: translate(50%, -50%);
    }

    .mainsearch-fancybox .fancybox-close-small:hover:after {
        background: transparent;
        color: #fff;
    }

    .search-form-wrapper {
        padding: 15px 10px;
        float: right;
    }

    #content {
        padding-top: 71px;
    }

    /*---- buttons ----*/

    .btn-small {
        height: 32px;
        min-width: 120px;
    }

    .btn-small .caption {
        line-height: 30px;
        font-size: 12px;
    }

    .btn-medium {
        height: 36px;
        min-width: 120px;
    }

    .btn-medium .caption {
        line-height: 34px;
        font-size: 15px;
    }

    .btn-normal {
        height: 42px;
        min-width: 160px;
    }

    .btn-normal .caption {
        line-height: 40px;
        font-size: 14px;
    }

    .btn-normal .icon {
        width: 40px;
        height: 40px;
    }

    .btn-normal i {
        font-size: 13px;
    }

    .btn-normal.btn-hasIcon--right.btn-hasIcon--iconLong .caption {
        padding-right: 12px;
    }

    .btn-normal.btn-hasIcon--left.btn-hasIcon--iconLong .caption {
        padding-left: 12px;
    }

    .btn-squareBig {
        width: 42px;
        height: 42px;
    }

    .btn-squareBig .caption {
        line-height: 40px;
        font-size: 18px;
    }

    .btn-squareGiantic {
        width: 46px;
        height: 46px;
        padding: 0;
    }

    .btn-squareGiantic .caption {
        line-height: 42px;
        font-size: 24px;
    }

    .logo {
        padding: 11px 0;
        float: left;
    }

    .logo a {
        height: 48px;
    }

    .location-element-box > *:first-child {
        padding-right: 20px;
    }

    .location {
        padding: 10px;
    }

    .locations-list {
        margin: -10px;
    }

    .article-image-apla {
        display: none;
    }

    .article-image .article-image-small {
        display: none;
    }

    .article-item:nth-child(odd) .article-image {
        padding-left: 15px;
    }

    .article-item:nth-child(even) .article-image {
        padding-right: 15px;
    }

    .section-whyUs {
        --title-width: 300px;
    }

    .contact-top {
        display: block;
    }

    .contact-top-right {
        width: auto;
        margin-top: var(--space-50);
    }

    .contact-top-group {
        display: inline-block;
        vertical-align: middle;
        margin-top: 0 !important;
        width: 50%;
        padding: 10px 0;
    }

    .contact-top-left {
        font-size: 0;
        width: 100%;
    }

    .contact-top-group:nth-child(odd) {
        border-right: 1px solid #e5e5e5;
    }

    .contact-top-group:nth-child(even) {
        padding-left: 50px;
    }

    .contact-top-group.contact-top-group-social {
        border: none;
    }

    .section-contact-form {
        background-image: none;
    }

    .news-title {
        font-size: 18px;
    }

    .category {
        max-width: 33.3333%;
    }

    .section-news {
        background-image: none;
    }

    .mainSlider-content-innerWrapper {
        --mainSlider-content-info: 250px;
    }

    .mainSlider-content-innerWrapper,
    .mainSlider-slide.noRightImage:not(.hasVideo) .mainSlider-content-innerWrapper {
        max-width: calc(100% - 120px);
    }

    .mainSlider-label {
        top: 10%;
        left: 0;
    }

    .mainSlider-slide.noLeftImage .mainSlider-label {
        left: 0;
        right: auto;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .mainSlider-image {
        display: none;
    }

    .mainSlider-floatingCaption {
        right: 0;
        font-size: 18px;
    }

    .box-button .btn .caption {
        font-size: 14px;
    }

    .section-linkBar-innerWrapper {
        display: block;
    }

    .section-linkBar {
        background-position: center left;
    }

    .linkBar-contact {
        padding: 0 var(--space-50);
    }

    .linkBanner-title {
        width: 100%;
        font-size: var(--font-48);
        text-align: center;
        justify-content: center;
        margin-bottom: var(--space-30);
    }

    .linkBar-circle {
        margin-top: var(--space-60);
        width: 100%;
        border-radius: 0;
    }

    .linkBar-circle:before {
        display: none;
    }

    .linkBar-circle-innerWrapper {
        position: static;
        flex-direction: row;
        padding: 0 var(--space-30);
        justify-content: center;
    }

    .linkBar-circle .caption {
        margin-bottom: 0;
        padding-right: 10px;
        font-size: 18px;
        padding-bottom: 2px;
    }

    .linkBar-circle .icon {
        margin-right: 0;
        width: 46px;
        height: 46px;
    }

    #googleMap {
        height: 450px;
    }

    .search-content {
        flex-wrap: wrap;
    }

    .search-content-left {
        width: 100%;
    }

    .search-content-right {
        justify-content: center;
        width: 100%;
        margin-top: var(--space-40);
    }

    .heading-page {
        margin: 25px 0 30px;
    }

    .product-view {
        --slider-size: 360px;
    }

    .shop-configurator-container {
        margin-bottom: 0;
    }

    .product-view-content .shop-product-offer-bottom {
        flex-direction: column;
    }

    .product-view-content .shop-product-offer-bottom-left {
        width: 100%;
        text-align: center;
    }

    .product-view-content .btn {
        width: 100%;
        margin-top: 10px;
    }

    .product-view-content .shop-quantity-box {
        width: 100%;
    }

    .product-view-content .btn {
        height: 40px;
    }

    .product-view-content .btn .icon {
        width: 38px;
        height: 38px;
    }

    .product-view-content .btn .caption {
        font-size: 15px;
        line-height: 38px;
    }

    .product-view .price-gross .caption {
        font-size: 15px;
    }

    .product-view-top .shop-product-offer-top {
        padding-left: 20px;
        padding-right: 20px;
    }

    .userpanel-container h1 {
        font-size: 28px;
    }

    .pagination-wrapper ul li.next a,
    .pagination-wrapper ul li.prev a {
        width: 42px;
        height: 42px;
        line-height: 40px;
    }

    .pagination-wrapper ul li a,
    .pagination-wrapper ul li span {
        padding: 6px 10px;
    }

    .social-list > ul > li {
        width: auto;
    }

    .footer-links-contact > * {
        width: 100%;
    }

    .footer-delivery-list ul {
        padding: 1% 3.3% 25px 3.3%;
    }
    .footer-delivery-list {
        max-width: 100%;
    }
    .footer-toggle .footer-delivery-list ul > li {
        width: 50%;
    }
}

@media screen and (max-width: 991px) {
    .section-filter {
        position: fixed;
        top: 70px;
        width: 280px;
        bottom: 0;
        align-items: flex-start;
        -webkit-transform: translate3d(-100%, 0, 0);
        -moz-transform: translate3d(-100%, 0, 0);
        -ms-transform: translate3d(-100%, 0, 0);
        -o-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        transition: transform 0.4s;
        z-index: 102;
        overflow-y: auto;
    }
    .section-filter.active {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }
    .section-filter .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .section-filter-open {
        position: static;
        display: block;
        width: 100%;
        text-align: center;
        height: 36px;
        line-height: 36px;
        z-index: 5;
        font-size: 16px;
        color: #fff;
        background-color: var(--color-lightBlue);
        font-weight: 700;
    }
    .section-filter-open > * + * {
        margin-left: 5px;
    }
    .section-filter-shadow {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.8);
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.4s;
        display: block;
        z-index: 101;
    }
    .section-filter-shadow.active {
        opacity: 1;
        pointer-events: initial;
    }
    .section-filter-close {
        display: block;
        position: absolute;
        font-size: 20px;
        color: var(--color-lightBlue);
        top: 10px;
        right: 15px;
        line-height: 30px;
        width: 30px;
        height: 30px;
        text-align: center;
    }
}

@media screen and (max-width: 900px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer-bar {
        text-align: center;
        padding: 13px 0;
        line-height: normal;
    }

    .footer-bar-content > * {
        float: none;
        display: inline-block;
        vertical-align: middle;
    }

    .footer-bar-content.footer-bar-content > * {
        margin-left: 15px;
        margin-right: 15px;
    }

    .footer-bar .footer-bar-links {
        display: block;
        margin: -3px -8px;
    }

    .footer-bar .footer-bar-links:not(:last-child) {
        margin-bottom: 3px;
    }

    .footer-bar-links > li {
        margin: 3px 8px;
        line-height: 20px;
    }

    .copyright,
    .copyright-undicom {
        margin-top: 4px;
        margin-bottom: 4px;
        line-height: 20px;
    }

    .location-element-box > * {
        width: 100%;
    }

    .location-element-box {
        display: block;
    }

    .location-element-container {
        text-align: center;
    }

    .location-element-btn {
        margin-top: 10px;
    }

    .location-email-box {
        width: auto;
    }

    .section-whyUs {
        --title-width: 250px;
    }

    .whyUs-title {
        padding: var(--space-50) 0 var(--space-50) 0;
    }

    .mainSlider-content {
        position: static;
    }

    .mainSlider-content-innerWrapper {
        --mainSlider-content-info: 150px;
        padding-top: 75px;
    }

    .mainSlider-content-innerWrapper,
    .mainSlider-slide.noRightImage .mainSlider-content-innerWrapper {
        max-width: 100%;
    }

    .mainSlider-slide.noLabel .mainSlider-content-innerWrapper {
        padding-top: var(--space-50);
    }

    .mainSlider-slide.noLeftImage .mainSlider-label,
    .mainSlider-label {
        top: 20px;
        right: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .mainSlider-content-image {
        padding-left: 30px;
    }

    .mainSlider-slide.noLeftImage .mainSlider-content-info {
        padding-left: 30px;
    }

    .mainSlider-slide.noLeftImage.hasVideo .mainSlider-title {
        margin-bottom: 0;
    }

    .mainSlider-slide:before {
        display: none;
    }

    .box-content,
    .box:nth-child(even) .box-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    .section-heading.section-heading-center.hasRight .section-heading-title {
        text-align: left;
    }

    .product-view-bottom-left {
        width: 100%;
    }

    .product-view-bottom-right {
        display: none;
    }

    .product-view-bottom-left {
        width: 100%;
    }

    .product-view-top-innerWrapper {
        flex-direction: column;
    }

    .product-view-photos {
        width: 100%;
    }

    .product-view-content {
        width: 100%;
        padding-left: 0;
    }

    .product-view-photos + .product-view-content {
        margin-top: var(--space-60);
    }

    .contact-top .social-list > ul {
        justify-content: flex-start;
    }

    .contact-top .social-list > ul > li {
        width: 33.3333%;
    }

    .product-list-slider-arrows {
        top: -38px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-view-recommended .product-list-slider-arrows {
        justify-content: flex-end;
    }

    .section-filter-open {
        left: 15px;
    }

    .filter-form-buttons {
        max-width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .text .table-responsive-wrapper {
        position: relative;
        padding-bottom: 40px;
        margin: 20px 0;
    }
    .text .table-responsive-wrapper::after {
        pointer-events: none;
        content: "";
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 45px;
        background-size: contain;
        background-position: right 15px center;
        background-repeat: no-repeat;
        background-image: url(../images/rwd-table-hand.png);
        -webkit-animation-name: rwd-hand-move;
        animation-name: rwd-hand-move;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        -webkit-animation-iteration-count: infinite;
        animation-iteration-count: infinite;
        -webkit-animation-direction: alternate;
        animation-direction: alternate;
        -webkit-animation-timing-function: linear;
        animation-timing-function: linear;
    }
    .text .table-responsive {
        margin: 0;
        border: none;
    }

    .text table {
        margin: 0;
        min-width: 780px;
    }
    @keyframes rwd-hand-move {
        0% {
            transform: translateX(-30px);
        }
        100% {
            transform: translateX(0);
        }
    }
    @-webkit-keyframes rwd-hand-move {
        0% {
            transform: translateX(-20px);
        }
        100% {
            transform: translateX(0);
        }
    }

    .form .form-element-captcha .captcha-image-wrapper {
        margin-bottom: 15px;
    }

    #search-form {
        width: 300px;
    }

    .section-whyUs-innerWrapper {
        display: block;
    }

    .whyUs-title {
        width: 100%;
        text-align: center;
    }

    .whyUs-content {
        width: 100%;
        margin: 0 auto;
    }

    .gallery-list-item {
        width: 50%;
    }

    .gallery-list-item:nth-child(n+5) {
        display: none;
    }

    .contact-top-group:not(:last-child) {
        width: 100%;
        border-right: none;
    }

    .whyUs-title .firstLine,
    .whyUs-title .secondLine {
        display: inline;
    }

    .whyUs-element {
        width: calc(33.3333% - 20px);
        padding: 0;
    }

    .whyUs-content {
        width: 100%;
        margin: 0;
        justify-content: space-between;
    }

    .whyUs-title {
        margin: var(--space-50) 0 var(--space-50) 0;
        padding: 0;
    }

    .whyUs-content {
        margin: var(--space-40) 0 var(--space-60) 0;
        padding: 0;
    }

    .contact-top-group {
        margin: 30px 0;
        padding: 0;
    }

    .contact-top-left {
        padding-right: 0;
    }

    .contact-top-box {
        text-align: center;
    }

    .contact-top-group:nth-child(even) {
        padding-left: 0;
    }

    .contact-top-group-social {
        width: 100%;
    }

    .contact-top-group-social .social-list {
        max-width: 100%;
    }

    .contact-top-group:nth-child(odd) {
        border-right: none;
    }

    .contact-top-group:last-child {
        margin-bottom: 0;
    }

    .news {
        width: 50%;
        padding: 10px;
    }

    .news-list {
        margin: -10px;
    }

    .mainpage .section-news .news:nth-child(3) {
        display: none;
    }

    .category {
        max-width: 50%;
    }

    .product {
        width: 50%;
    }

    .products-list.products-list-slider:not(.slick-initialized) .product:nth-child(3) {
        display: none;
    }

    .heading-page-title,
    .heading-page-description {
        text-align: center;
    }

    .sidebar-side .submenu h3 {
        line-height: 1.4;
        padding-bottom: 15px;
    }

    .userpanel-container h1 {
        padding-bottom: 15px;
    }

    .page-sidebar .submenu {
        padding-bottom: var(--space-50);
    }

    .mainSlider-slide.hasVideo .mainSlider-content-innerWrapper {
        max-width: 100%;
        text-align: center;
    }

    .mainSlider-slide.hasVideo .mainSlider-content {
        flex-direction: column;
        padding-bottom: 30px;
    }

    .mainSlider-youtube {
        width: 100%;
        padding: 0 25px;
    }

    .mainSlider-slide.noLeftImage.hasVideo .mainSlider-content-innerWrapper {
        align-items: center;
    }
}

@media screen and (min-width: 706px) {
    footer .show-hide {
        display: block !important;
    }
}

@media screen and (max-width: 639px) {
    .text img {
        max-width: 100%;
        max-width: 100% !important;
        width: inherit;
        width: inherit !important;
        height: auto;
        height: auto !important;
    }

    .text table,
    .text iframe,
    .text object {
        max-width: 100%;
        max-width: 100% !important;
        width: 100%;
        width: 100% !important;
    }

    .article-image {
        margin-right: 0;
        margin-top: 0;
        width: 100%;
        display: block;
        float: none;
        max-width: none;
        text-align: center;
        line-height: 0;
    }
    .article-item:nth-child(odd) .article-image {
        padding-right: 15px;
    }
    .article-item:nth-child(even) .article-image {
        padding-left: 15px;
    }

    .breadcrumb-container {
        margin: 12px 0;
    }
    .breadcrumb > li:not(:first-child):not(:last-child):not(:nth-last-child(2)) {
        display: none;
    }
    .breadcrumb > li:not(:first-child):not(:last-child) a {
        font-size: 0;
        text-indent: -1000px; /* Apple */
    }
    .breadcrumb > li:not(:last-child) a span {
        display: none;
    }
    .breadcrumb > li:not(:first-child):not(:last-child) a:after {
        content: "...";
        font-size: 12px;
    }
    .breadcrumb > li + li:before {
        padding: 0 6px;
    }
    .breadcrumb > li:first-child a {
        font-size: 0 !important;
        letter-spacing: 0 !important;
    }
    .breadcrumb > li:first-child a:after {
        content: "\f015";
        display: inline-block;
        font-family: FontAwesome, sans-serif;
        font-size: 12px;
    }

    /*.header-item {*/
        /*--icon-size: 28px;*/
    /*}*/

    /*.btn-basket > .caption,*/
    /*.header-item-innerWrapper > .caption {*/
        /*font-size: 12px;*/
        /*padding-left: 8px;*/
    /*}*/

    /*header .btn-basket .shop-itemsTotalPrice-gross {*/
        /*font-size: 14px;*/
    /*}*/

    #content {
        padding-top: 63px;
    }

    .logo a {
        height: 40px;
    }

    .nav-toggle {
        margin-bottom: 16px;
        margin-top: 16px;
    }

    .header-bottom-innerWrapper > .header-item {
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .search-form-wrapper {
        padding-bottom: 11px;
        padding-top: 11px;
    }

    .mainSlider-floatingCaption {
        font-size: 16px;
    }

    .mainSlider-content-innerWrapper {
        --mainSlider-content-info: 120px;
    }

    .mainSlider-floatingCaption {
        display: none;
    }

    /*.products-list {*/
        /*margin: -10px;*/
    /*}*/

    /*.product {*/
        /*padding: 10px;*/
    /*}*/

    .linkBar-circle .icon {
        width: 40px;
        height: 40px;
    }

    .linkBar-circle .caption {
        font-size: 16px;
    }

    .linkBar-contact-element .icon {
        width: 60px;
        height: 60px;
    }

    .linkBar-contact-element .caption {
        margin-top: 5px;
        font-size: 18px;
    }

    .search-content-left {
        flex-wrap: wrap;
    }

    .search-content .select2-element {
        width: 48%;
    }

    .find-location {
        width: 100%;
        margin-top: var(--space-30);
    }

    .search-content-right {
        margin-top: 10px;
    }

    .search-content .show-all {
        width: 100%;
    }

    .heading-page {
        margin: 15px 0 25px;
    }

    .product-view .price-gross .caption {
        font-size: 14px;
    }

    .product-list-innerWrapper {
        margin: 0 -12px;
    }

    .products-list {
        margin: -12px 0;
    }

    .product {
        padding: 12px;
    }

    .section-filter {
        top: 62px;
    }
}

@media screen and (max-width: 560px) {
    .text {
        word-wrap: break-word;
    }

    .location {
        width: 100%;
    }

    .section-whyUs {
        display: none;
    }

    .category-bottom {
        flex-direction: column;
    }

    .category-button {
        margin-top: 15px;
    }

    .category-title {
        padding-right: 0;
        text-align: center;
    }

    /*---- buttons ----*/

    .btn-small {
        height: 30px;
        min-width: 115px;
    }

    .btn-small .caption {
        line-height: 28px;
    }

    .btn-medium {
        height: 32px;
        min-width: 100px;
    }

    .btn-medium .caption {
        line-height: 30px;
        font-size: 14px;
    }

    .btn-normal {
        height: 36px;
        min-width: 140px;
    }

    .btn-normal .caption {
        line-height: 34px;
        font-size: 13px;
    }

    .btn-normal .icon {
        width: 34px;
        height: 34px;
    }

    .btn-normal i {
        font-size: 12px;
    }

    .btn-normal.btn-hasIcon--right.btn-hasIcon--iconLong .caption {
        padding-right: 10px;
    }

    .btn-normal.btn-hasIcon--left.btn-hasIcon--iconLong .caption {
        padding-left: 10px;
    }

    .btn-squareBig {
        width: 36px;
        height: 36px;
    }

    .btn-squareBig .caption {
        line-height: 34px;
        font-size: 16px;
    }

    .btn-squareGiantic {
        width: 36px;
        height: 36px;
    }

    .btn-squareGiantic .caption {
        line-height: 34px;
        font-size: 16px;
    }

    .mainSlider-arrows {
        left: -15px;
        right: -15px;
        width: auto;
    }

    .mainSlider-arrows .btn {
        background-color: transparent;
        border-color: transparent;
    }

    .mainSlider-content {
        max-width: 100%;
    }

    .mainSlider-title {
        font-size: 20px;
    }

    .box-button .btn .caption {
        font-size: 13px;
    }

    .boxes-list {
        flex-wrap: wrap;
    }

    .box {
        width: 100%;
    }

    .box:nth-child(odd) .box-content,
    .box:nth-child(even) .box-content {
        border-left: none;
        border-right: none;
    }

    #googleMap {
        height: 350px;
    }

    .pagination-wrapper ul li {
        padding: 0;
    }

    .pagination-wrapper ul li.next a,
    .pagination-wrapper ul li.prev a {
        width: 38px;
        height: 38px;
        line-height: 36px;
    }

    .pagination-wrapper ul li a,
    .pagination-wrapper ul li span {
        padding: 4px 10px;
    }

    .contact-top .social-list > ul > li {
        width: 50%;
    }
}

@media screen and (max-width: 480px) {
    .linkBar-contact {
        flex-direction: column;
        padding: 0;
    }
    .linkBar-contact-element {
        width: 100%;
    }
    .linkBar-contact-element + .linkBar-contact-element {
        margin-top: var(--space-25);
    }
    .linkBar-circle .caption {
        font-size: 14px;
    }
    .linkBar-circle .icon {
        width: 32px;
        height: 32px;
    }

    .product-view-tabs {
        flex-direction: column;
    }
    .product-view-tab {
        flex-basis: 0;
        width: 100%;
    }
    .product-view-tab + .product-view-tab {
        margin-top: 8px;
    }

    .social-list > ul {
        text-align: left;
    }
    .social-list > ul > li {
        width: 50%;
        text-align: left;
    }

    .contact-top-group .social-item .caption {
        font-size: 14px;
    }

    .heading-page-top {
        display: block;
    }
    .shop-sort .form-element-container {
        justify-content: center;
        margin-top: 10px;
    }
    .shop-sort .form-element-container .select2-selection__rendered {
        width: 140px;
    }
}

@media screen and (max-width: 420px) {
    .header-top-innerWrapper .header-item-innerWrapper > .caption {
        display: none;
    }

    .footer-bar-content.footer-bar-content > * {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    .news {
        width: 100%;
        padding: 0;
    }

    .news-list {
        margin: 0;
    }

    .news + .news {
        margin-top: 40px;
    }

    .category-image-innerWrapper {
        padding: var(--space-40) 5px var(--space-25);
    }

    .category {
        padding: 5px;
    }

    .categories-list {
        margin: -5px;
    }

    .category-bottom {
        padding: 10px 5px 18px;
    }

    .mainSlider-content-info {
        text-align: center;
        width: 100%;
    }

    .mainSlider-content-image + .mainSlider-content-info {
        padding-left: 10px;
    }

    .mainSlider-content-innerWrapper,
    .mainSlider-slide.noRightImage .mainSlider-content-innerWrapper {
        max-width: 100%;
        --mainSlider-content-info: 100px;
    }

    .mainSlider-title {
        font-size: 16px;
    }

    .mainSlider-price .firstLine {
        font-size: 16px;
    }

    .product-list-innerWrapper {
        margin: 0 -6px;
    }

    .products-list {
        margin: -6px 0;
    }

    .product {
        padding: 6px;
    }

    .search-content .select2-element {
        width: 100%;
    }

    .search-content .select2-element + .select2-element {
        margin-top: 10px;
    }

    .product-list-slider-arrows {
        top: -34px;
    }
}

@media screen and (max-width: 400px) {
    .product-list-slider-arrows {
        position: static;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        justify-content: space-between;
        width: 100%;
    }
    .product-view-recommended .product-list-slider-arrows {
        justify-content: space-between;
    }
    .product-list-slider-arrows .btn {
        box-shadow: none !important;
    }
    .product-list-slider-arrows .product-list-slider-prev {
        text-align: left;
    }
    .product-list-slider-arrows .product-list-slider-next {
        text-align: right;
    }
}

@media screen and (max-width: 380px) {
    .product {
        width: 100%;
    }

    .products-list.products-list-slider:not(.slick-initialized) .product:nth-child(2) {
        display: none;
    }

    .header-bottom-innerWrapper > .header-basket {
        display: none;
    }

    .pagination-wrapper ul li a,
    .pagination-wrapper ul li span {
        padding: 4px 8px;
    }
}

@media screen and (max-width: 319px) {
    body {
        width: 320px;
    }
}

/* --------------- GLOBAL VARIABLES --------------- */

@media screen and (max-width: 1600px) {
    :root {
        --space-60: 55px;
        --space-50: 45px;
        --space-40: 35px;
        --space-35: 30px;

        --font-48: 40px;
        --font-45: 38px;
        --font-40: 36px;
        --font-36: 32px;
        --font-35: 30px;
        --font-30: 26px;
        --font-26: 24px;
        --font-24: 22px;
    }
}

@media screen and (max-width: 1440px) {
    :root {
        --space-60: 50px;
        --space-50: 40px;

        --font-48: 36px;
        --font-45: 34px;
        --font-40: 32px;
    }
}

@media screen and (max-width: 1366px) {
    :root {
        --space-30: 25px;
        --space-25: 20px;

        --font-48: 34px;
        --font-45: 32px;
        --font-40: 30px;
        --font-36: 28px;
        --font-35: 28px;
        --font-30: 24px;
    }
}

@media screen and (max-width: 1280px) {
    :root {
        --space-60: 40px;
        --space-50: 35px;
        --space-40: 30px;
        --space-35: 25px;

        --font-48: 32px;
        --font-45: 30px;
        --font-40: 26px;
    }
}

@media screen and (max-width: 1139px) {
    :root {
        --space-60: 35px;
        --space-50: 30px;
        --space-40: 25px;
        --space-35: 20px;
        --space-30: 20px;
        --space-25: 15px;
    }
}

@media screen and (max-width: 960px) {
    :root {
        --space-60: 30px;
        --space-50: 25px;
        --space-40: 20px;
    }
}

@media screen and (max-width: 639px) {
    :root {
        --font-48: 30px;
        --font-45: 28px;
        --font-40: 26px;
        --font-36: 24px;
        --font-35: 24px;
        --font-30: 22px;
        --font-26: 20px;
        --font-24: 18px;
    }
}

@media screen and (max-width: 420px) {
    :root {
        --font-48: 24px;
        --font-45: 24px;
        --font-40: 22px;
        --font-36: 20px;
        --font-35: 20px;
        --font-30: 20px;
        --font-26: 18px;
        --font-24: 16px;
    }
}

/* --------------- LOGIN --------------- */
@media screen and (max-width: 991px) {
    .password-reset-info .panel-heading {
        padding: 0;
    }
}

@media screen and (max-width: 767px) {
    .login-info-content {
        padding: 0;
    }

    .login-info-content .btn-base {
        right: 15px;
    }
}

@media screen and (max-width: 480px) {
    .login-box .btn.btn-base {
        position: static;
        width: 100%;
    }

    .login-box .login-submitRow {
        flex-direction: column;
    }

    .login-box .login-submitRow .login-forgotPassword,
    .login-box .login-submitRow .delete-backToUser {
        margin-top: 15px;
    }

    .login-info-content .text-base {
        margin-bottom: 15px;
        padding-bottom: 0;
    }
}