/**
 * RWD PANEL
 */

@media screen and (min-width: 1140px) {
    .rwdPanel {
        display: none;
    }
    .rwdPanel-action-open,
    .rwdPanel-action-toggle {
        display: none!important;
    }
}

@media screen and (max-width: 1139px) {
    .rwdPanel {
        overflow-x: hidden;
        overflow-y: auto;
        position: fixed;
        z-index: 1000;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: #fff;
        transition-duration: 0.5s;
        transition-timing-function: ease;
        transition-property: transform, -webkit-transform, -ms-transform;
        /* Closed: */
        pointer-events: none;
        transform: translateY(100%);
        -webkit-transform: translateY(100%);
        -ms-transform: translateY(100%);
        border-top: 1px solid #e5e5e5;
    }
    header.stickable .rwdPanel {
        z-index: -1;
    }

    .rwdPanel.active {
        pointer-events: all;
        transform: none;
        -webkit-transform: none;
        -ms-transform: none;
    }

    .rwdPanel-scrollLock body {
        position: fixed;
        width: 100%;
        overflow-y: scroll;
    }
}

/**
 * RWD MENU
 */

.rwdMenu {
    font-size: 1rem;
}
.rwdMenu ul {
    display: block;
    width: 100%;
    padding: 0;
}
.rwdMenu:not(:first-child) > ul {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.rwdMenu + .rwdMenu > ul {
    border-top: none;
}
.rwdMenu ul ul {
    display: none;
    box-shadow: inset 0 3px 5px -1px rgba(0, 0, 0, 0.12);
    background-color: rgba(0, 0, 0, 0.1);
}

.rwdMenu li {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.rwdMenu li.slided {
    border-bottom: none;
}

.rwdMenu a {
    color: inherit;
}
.rwdMenu li > *:first-child {
    flex: 1 0 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 46px;
    padding: 5px var(--container-padding);
    text-align: left;
    word-break: break-word;
    color: #000;
    border: none;
}
.rwdMenu li > *:first-child:hover {
    text-decoration: none;
}
.rwdMenu li.active > *:first-child {
    font-weight: 600;
    color: var(--color-primary);
}

.rwdMenu > ul > li > *:first-child {
    text-transform: uppercase;
}
.rwdMenu > ul > li > ul {
    font-size: 0.875rem;
}

.rwdMenu > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 15px);
}
.rwdMenu > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 30px);
}
.rwdMenu > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 45px);
}
.rwdMenu > ul > li > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 60px);
}
.rwdMenu > ul > li > ul > li > ul > li > ul > li > ul > li > ul > li > *:first-child {
    padding-left: calc(var(--container-padding) + 75px);
}

.rwdMenu li > *:first-child > .fa,
.rwdMenu li > *:first-child > .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    font-size: 22px;
    flex-shrink: 0;
    margin: -6px 6px -6px -6px;
}
.rwdMenu li > *:first-child > .icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}
.rwdMenu li > *:first-child > .caption {
    flex: 1 0 0;
}
.rwdMenu li > *:first-child > .caption * {
    display: inline-block;
}
.rwdMenu li > *:first-child > .caption ~ * {
    margin-left: 10px;
}

.rwdMenu .rwdMenu-count {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2em;
    height: 2em;
    text-align: center;
    font-size: 14px;
    color: #000;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

.rwdMenu .user-nav li + li:before {
    display: none;
}

.cloneMenu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(0, 0, 0, 0.06);
}
.cloneMenu-toggle::before {
    content: "\f107";
    display: block;
    font-family: 'FontAwesome', sans-serif;
    transition: all 0.3s;
}
.cloneMenu-toggle.active::before {
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
}

.rwdPanel .social-box {
    margin-top: 30px;
}
.rwdPanel .social-list-title {
    text-align: center;
}
.rwdPanel .social-list {
    margin: 15px 0;
    text-align: center;
}

/**
 * RWD BUTTON
 */

.rwdButton {
    float: right;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    margin: 0 0 0 15px;
    font-size: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.4s;
    border-radius: 6px;
    color: #4c4c4c;
}
.rwdButton .animIcon {
    opacity: 0;
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    width: auto;
}
.rwdButton > * {
    transition: all 0.5s;
}
.rwdButton.rwdPanel-action-toggle.active {
    color: #fff;
    background-color: #f00;
}
.rwdButton .animIcon--close span {
    background-color: #fff;
}
.rwdButton:not(.active) > .animIcon--close {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    -ms-transform: scale(0.4);
}
.rwdButton.active > .animIcon--close {
    opacity: 1;
}
.rwdButton.active > .animIcon--close ~ * {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
}
.rwdButton .icon {
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
}

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

@media screen and (max-width: 1600px) {
    .mainTop-aside {
        margin-right: var(--space-60);
    }

    .section-mainSlider {
        width: calc(100% - 242px - var(--space-60));
    }

    #main-menu {
        padding-left: var(--space-50);
    }

    .asidedPage-content {
        padding-left: var(--space-50);
    }

    .shop-product-card .productBoxes-arrows {
        position: static;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        justify-content: flex-end;
    }
    .shop-product-card .productBoxes-arrows .btn {
        margin-bottom: var(--space-25);
    }

    .page-contact {
        background-size: 50%;
    }
}

@media screen and (max-width: 1440px) {
    .horizontalBox-title {
        font-size: var(--font-30);
        padding-left: var(--space-25);
        padding-right: var(--space-25);
    }

    .productBox {
        width: 25%;
    }

    .section-heading-title {
        font-size: var(--font-40);
    }

    .productBoxes-lg .productBox {
        width: 33.3333%;
    }

    .mainSlider-content {
        max-width: 620px;
    }
}

@media screen and (max-width: 1366px) {
    .infoBoxes {
        padding-left: 0;
        padding-right: 0;
    }

    .header-categories > ul {
        margin: 0 calc(-1 * var(--space-25));
    }
    .header-categories > ul > li {
        width: 25%;
        padding: 0 var(--space-25);
    }

    .productBox.horizontal .productBox-image {
        max-width: 280px;
    }
    .productBox.horizontal .productBox-content-right {
        width: 280px;
    }
    .productBox.horizontal .productBox-content-left {
        width: calc(100% - 280px);
    }
    .productBox.horizontal .productBox-content-right,
    .productBox.horizontal .productBox-content-left-inner {
        padding: 20px;
    }
    .productBox.horizontal .productBox-info-item {
        font-size: 14px;
    }

    .categoryBox-caption {
        font-size: 14px;
    }
}

@media screen and (max-width: 1280px) {
    .mainSlider-arrows .btn.btn {
        width: 40px;
        height: 40px;
    }
}

@media screen and (max-width: 1139px) {
    .section-mainSlider {
        width: 100%;
    }
    .filterBox {
        padding-left: 10px;
        padding-right: 10px;
    }
    .text table tr td {
        padding: 6px 10px;
    }

    #main-menu {
        display: none;
    }

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

    .rwd-hide {
        display: none;
    }

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

    .container {
        width: 100%;
    }

    .article-image {
        margin-left: 25px;
        margin-bottom: 15px;
    }

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

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

    /**
     * BUTTONS
     */

    .mainSlider-arrows {
        /*bottom: calc(3 * var(--space-40));*/
    }
    .mainSlider-content.buttonOnly {
        padding: 0 40px;
    }

    .btn.btn .icon {
        width: 32px;
        height: 32px;
    }
    .btn.btn .icon:first-child:not(:only-child) {
        margin-left: -4px;
    }
    .btn.btn .icon:last-child:not(:only-child) {
        margin-right: -4px;
    }
    .btn.btn-lg {
        height: 42px;
        font-size: 15px;
        min-width: 120px;
    }
    .btn.btn-lg.btn-square {
        width: 42px;
    }
    .btn.btn-md {
        height: 36px;
        padding: 0 10px;
        min-width: 100px;
        font-size: 14px;
    }
    .btn.btn-md.btn-square {
        width: 36px;
    }
    .btn.btn-sm.btn-custom {
        height: 32px;
        padding: 0 10px;
        font-size: 14px;
        min-width: 90px;
    }

    .mainsearch.rwdPanel {
        width: 100%;
        max-width: 100%;
    }
    .mainsearch.rwdPanel .mainsearch-search {
        background-color: var(--shop-primary);
    }
    .mainsearch.rwdPanel .dropdown-menu {
        position: static!important;
        width: 100%;
        box-shadow: none;
    }
    .mainsearch.rwdPanel .mainsearch-search,
    .mainsearch.rwdPanel .dropdown-menu {
        padding: 15px;
    }
    .mainsearch.rwdPanel .dropdown-menu .dropdown-search-li.all-search-results {
        margin-top: 15px;
    }
    .mainsearch.rwdPanel .form-element-container {
        width: calc(100% - 46px);
        flex-grow: 0;
    }
    .mainsearch.rwdPanel .mainsearch-submit {
        height: 46px;
    }
    .mainsearch.rwdPanel input,
    .mainsearch.rwdPanel .mainsearch-submit {
        border: none;
    }
    .mainsearch-submit {
        position: static;
    }
    .mainsearch-submit .icon {
        width: 32px;
        height: 32px;
        color: #fff;
    }
    .mainsearch-submit::before {
        display: none;
    }

    #content {
        padding-top: 84px;
    }

    header {
        border-bottom: 1px solid #e5e5e5;
    }
    .header-inner {
        min-height: 84px;
    }
    .header-bottom.header-bottom {
        height: 0;
        width: 0;
        margin: 0;
        padding: 0;
        border: 0;
        overflow: hidden;
    }
    .subpage .header-inner {
        padding-bottom: 8px;
    }
    .subpage .logo .logo-image,
    .logo .logo-image {
        height: 60px;
    }
    .header-top .user-nav-item {
        align-items: center;
    }
    .header-left {
        margin-right: 12px;
    }
    .header-top-right > * + *,
    .header-top .user-nav-item + .user-nav-item {
        margin-left: 10px;
        padding-left: 0;
    }
    .header-top-right > * + *::before,
    .header-top .user-nav-item + .user-nav-item::before {
        display: none;
    }
    .header-top .user-nav-item.user-name {
        display: none;
    }
    .header-top .user-nav-item-inner .caption {
        display: none;
    }
    .header-top .user-nav-item-inner {
        width: 40px;
        height: 40px;
        margin: 0;
        justify-content: center;
        border: 1px solid #e5e5e5;
        border-radius: var(--radius-default);
    }
    .header-top .user-nav-item .icon {
        margin: 0;
    }
    .header-top .main-menu-button.main-menu-button {
        margin-left: 30px;
    }
    .header-top-right {
        align-items: center;
    }
    .btn-categories-square.btn-categories-square {
        display: none;
    }
    header .btn-categories-wrapper {
        display: none;
    }

    .mainTop-aside {
        width: 0;
        margin: 0;
    }
    .mainTop-aside .aside {
        padding: 0;
    }
    .mainSlider-arrows .btn.btn {
        width: 46px;
        height: 46px;
    }
    .mainSlider-arrows .btn.btn .icon {
        width: 40px;
        height: 40px;
    }

    .infoBox-icon {
        width: 80px;
        height: 80px;
    }
    .infoBox-title,
    .infoBox-caption {
        font-size: 16px;
    }

    .categoryExhibition-left {
        width: 40%;
    }
    .categoryExhibition-middle {
        display: none;
    }
    .categoryExhibition-right {
        width: 60%;
    }

    .horizontalBoxes-list {
        margin: -10px;
    }
    .horizontalBox {
        padding: 10px;
    }

    .productBox {
        width: 33.3333%;
    }

    .aboutUs {
        background: none;
    }
    .aboutUs-floatingCaption {
        display: none;
    }

    .footer-col-1 {
        width: 20%;
    }
    .footer-col-2 {
        width: 20%;
    }
    .footer-col-3 {
        width: 25%;
    }
    .footer-col-4 {
        width: 35%;
    }
    .footer-col-5 {
        display: none;
    }

    .page-contact {
        background-size: 65%;
    }
    .contact-top-left {
        width: 30%;
    }
    .contact-top-right {
        width: 70%;
    }
    .contact-top-floatingCaption {
        display: none;
    }

    .page-symbol {
        background: none;
    }

    .categoryBox {
        width: 33.3333%;
    }
    .categoryBox-button {
        display: none;
    }

    .asidedPage-content {
        padding-left: 0;
        width: 100%;
    }
    .aside {
        position: fixed;
        left: 0;
        top: 85px;
        bottom: 0;
        -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);
        z-index: 1001;
        transition: transform 0.4s;
        background-color: #fff;
        padding-bottom: 0;
    }
    .aside-content {
        overflow-y: auto;
        height: 100%;
        scrollbar-color: var(--color-default) #f3f3f3;
        scrollbar-width: thin;
    }
    .aside ::-webkit-scrollbar-track {
        background-color: var(--color-default);
    }
    .aside ::-webkit-scrollbar {
        width: 6px;
    }
    .aside ::-webkit-scrollbar-thumb {
        background-color: var(--color-primary);
        border-radius: 0;
    }
    .aside ::-webkit-scrollbar-thumb:hover {
        background-color: var(--color-secondary);
    }
    .asided-title {
        font-size: 26px;
    }
    .aside-close {
        position: absolute;
        top: 0;
        right: 0;
        font-size: 20px;
        color: #fff;
        width: 60px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .aside.active {
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    .aside-shadow {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: #000;
        opacity: 0;
        transition: opacity 0.5s;
        display: block;
        pointer-events: none;
        z-index: 1000;
    }
    .aside-shadow.active {
        opacity: 0.8;
        pointer-events: initial;
    }
    .aside-toggle {
        position: absolute;
        left: 100%;
        top: 100px;
        width: 40px;
        height: 40px;
        color: #fff;
        background-color: var(--color-primary);
        transition: opacity 0.2s;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .aside-toggle .line {
        width: 50%;
        height: 2px;
        background-color: #fff;
    }
    .aside-toggle .line + .line {
        margin-top: 7px;
    }
    .aside.active .aside-toggle {
        opacity: 0;
        pointer-events: none;
    }
    .menuList li.categories-link a {
        padding-right: 11px;
    }
    .menuList a {
        font-size: 16px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .shop-product-offer-buy button[type="submit"] {
        font-size: 18px;
    }
    .shop-product-offer-buy button[type="submit"] .caption {
        padding-bottom: 0;
    }

    .manufacturer-list {
        margin: -12px;
    }
    .manufacturer {
        padding: 12px;
    }

    .productBox.horizontal .productBox-title {
        font-size: 18px;
    }
    .productBox.horizontal .productBox-price .price:not(.price-old) {
        font-size: 20px;
    }

    .file-icon {
        width: 70px;
        height: 70px;
    }

    .mainSlider-content {
        bottom: 0;
    }
    .mainSlider-content .top {
        bottom: auto;
        top: 0;
    }
}

@media screen and (max-width: 900px) {
    .shop-product-offer-box {
        display: flex;
        justify-content: center;
    }
    .shop-product-offer-box > form {
        width: 100%;
    }
    .mainSlider-arrows .btn.btn {
        width: 40px;
        height: 40px;
    }
    .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;
    }

    .shop-product-view-top {
        flex-direction: column;
    }
    .shop-product-view-content {
        padding-left: 0;
        width: 100%;
        margin-top: var(--space-25);
    }
    .shop-product-view-photo {
        width: 100%;
    }
    .product-slider .product-slide::before {
        padding-top: 400px;
    }
    .shop-product-view-title.hideDesktop {
        display: block;
    }
    .shop-product-view-title.showDesktop {
        display: none;
    }

    .manufacturer {
        width: 25%;
    }

    .productBox.horizontal .productBox-content {
        flex-direction: column;
    }
    .productBox.horizontal .productBox-content-left {
        width: 100%;
    }
    .productBox.horizontal .productBox-content-right {
        width: 100%;
        border-left: 0;
        border-top: 1px solid #e5e5e5;
    }

    .file {
        width: 50%;
    }

    .filterTab-grid {
        justify-content: space-between;
        flex-wrap: wrap;
        margin: -4px;
    }
    .filterTab-grid-item {
        width: 7.1429%;
        text-align: center;
        padding: 4px;
    }

    .mainSlider-text.text {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 6;
        line-clamp: 4;
        -webkit-box-orient: vertical;
    }
}

@media screen and (min-width: 768px) {
    .footer-col-content {
        display: block !important;
    }
}

@media screen and (max-width: 767px) {
    .pagination-wrapper ul li {
        padding: 0 5px;
    }
    .mainSlider-arrows {
        left: 5px;
        right: 5px;
    }
    .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;
    }
    .specsTable table {
        min-width: auto;
    }

    @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;
    }

    .mainSlider-content {
        padding: var(--space-40);
        max-width: 100%;
        top: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .mainSlider-content.buttonOnly {
        padding: 0 var(--space-40);
    }

    .infoBoxes {
        display: none;
    }

    .categoryExhibition-inner {
        flex-direction: column;
        min-height: auto;
    }
    .categoryExhibition-left-inner {
        position: static;
        padding-right: 0;
    }
    .categoryExhibition-left {
        width: 100%;
    }
    .categoryExhibition-right {
        width: 100%;
        padding-left: 0;
        margin-top: var(--space-50);
    }
    .categoryExhibition-title {
        font-size: var(--font-30);
        padding: 12px 50px 16px var(--space-25);
        position: relative;
    }
    .categoryExhibition-title::after {
        content: '\f107';
        font-family: 'FontAwesome';
        position: absolute;
        width: 50px;
        top: 0;
        right: 0;
        bottom: 0;
        font-size: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s;
    }
    .categoryExhibition-title.active::after {
        -webkit-transform: scaleY(-1);
        -moz-transform: scaleY(-1);
        -ms-transform: scaleY(-1);
        -o-transform: scaleY(-1);
        transform: scaleY(-1);
    }
    .categoryExhibition .categoryBoxes {
        width: calc(100% + 12px);
        flex-wrap: nowrap;
    }
    .categoryExhibition .categoryBox {
        flex-shrink: 0;
    }
    .categoryExhibition .menuList {
        display: none;
    }

    .productBoxes-lg .productBox,
    .productBox {
        width: 50%;
    }
    .productBox-content-top,
    .productBox-content-bottom,
    .productBox-image-inner {
        padding: var(--space-25);
    }

    .aboutUs-image {
        display: none;
    }
    .aboutUs-button {
        text-align: center;
    }
    .aboutUs-content {
        width: 100%;
        padding-right: 0;
    }
    .aboutUs-text.text {
        max-width: 100%;
    }

    .footer-cols {
        flex-direction: column;
        margin: 0;
    }
    .footer-col {
        width: 100%;
        padding: 0;
    }
    .footer-col-content {
        display: none;
        text-align: center;
        padding-bottom: 20px;
    }
    .footer-col-4 .footer-col-content {
        padding-bottom: 0;
    }
    .footer-col-title {
        text-align: center;
        margin-bottom: 10px;
        padding: 0 40px 10px;
        border-bottom: 1px solid #fff;
        position: relative;
    }
    .footer-col-title::after {
        content: '\f107';
        font-family: 'FontAwesome', sans-serif;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 6px;
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: inherit;
        transition: transform 0.4s;
    }
    .footer-col-title.active::after {
        -webkit-transform: scaleY(-1);
        -moz-transform: scaleY(-1);
        -ms-transform: scaleY(-1);
        -o-transform: scaleY(-1);
        transform: scaleY(-1);
    }
    .footer-logotypes-list {
        display: flex;
        flex-wrap: wrap;
        flex-basis: 100%;
        margin: -5px;
    }
    .footer-logotype {
        max-width: 100%;
        width: 33.3333%;
        padding: 5px;
    }
    .footer-logotype + .footer-logotype {
        margin-top: 0;
    }

    .page-contact {
        background: url(../images/page_symbol.jpg) no-repeat top right / 60%;
    }
    .contact-top {
        flex-direction: column;
    }
    .contact-top-left {
        width: 100%;
    }
    .contact-top-right {
        width: 100%;
    }

    .categoryBox {
        width: 50%;
    }

    .shop-product-tab-wrapper {
        width: 33.3333%;
        font-size: 14px;
    }
}

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

@media screen and (max-width: 639px) {
    .mainSlider-arrows {
        left: -10px;
        right: -10px;
    }
    .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% !important;
        width: 100% !important;
    }

    .article-image {
        margin-left: 0;
        margin-top: 0;
        width: 100%;
        display: block;
        float: none;
        max-width: none;
        text-align: center;
        line-height: 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;
    }

    #content {
        padding-top: 68px;
    }

    .header-inner {
        min-height: 68px;
    }
    .subpage .logo .logo-image {
        height: 36px;
    }
    .logo .logo-image {
        height: 46px;
    }
    .header-top .user-nav {
        display: none;
    }

    .mainSlider-arrows .btn.btn {
        width: 36px;
        height: 36px;
    }
    .mainSlider-arrows .btn.btn .icon {
        width: 30px;
        height: 30px;
    }

    /*.mainSlider-image {*/
        /*margin-left: -150px;*/
        /*margin-right: -150px;*/
    /*}*/

    .horizontalBox {
        width: 100%;
    }

    .logotypes-title {
        width: 120px;
    }
    .logotypes-slider-container {
        width: calc(100% - 120px);
    }

    .aside {
        top: 69px;
    }

    .shop-product-view .product-labels {
        left: 20px;
    }
    .shop-product-view .product-label-inner {
        font-size: 16px;
        height: 30px;
        padding: 0 8px 2px;
    }

    .shop-product-tabs-inner {
        flex-wrap: wrap;
    }

    .product-slider-arrows {
        bottom: 20px;
        right: 20px;
    }

    .manufacturer-list {
        margin: -6px;
    }
    .manufacturer {
        width: 33.3333%;
        padding: 6px;
    }

    .productBox.horizontal .productBox-inner {
        flex-direction: column;
    }
    .productBox.horizontal .productBox-image {
        max-width: 100%;
        border-right: none;
        border-bottom: 1px solid #e5e5e5;
    }
    .productBox.horizontal .productBox-content {
        width: 100%;
    }
}

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

    .btn.btn .icon {
        width: 26px;
        height: 26px;
    }
    .btn.btn-lg {
        height: 36px;
        font-size: 14px;
        min-width: 100px;
    }
    .btn.btn-lg.btn-square {
        width: 36px;
    }
    .btn.btn-md {
        height: 32px;
        min-width: 90px;
        font-size: 13px;
    }
    .btn.btn-md.btn-square {
        width: 32px;
    }
    .btn.btn-sm.btn-custom {
        height: 28px;
        font-size: 13px;
        min-width: 80px;
    }
    .btn.btn .caption {
        padding-bottom: 0;
    }

    .aside-close {
        height: 34px;
        width: 40px;
    }
    .btn.btn-categories .icon {
        margin-right: 10px !important;
    }

    .basket-box-btn.basket-box-btn {
        padding: 0;
    }

    .productBox-title {
        font-size: 15px;
    }
    .productBox-content-bottom {
        flex-direction: column;
        justify-content: space-between;
        min-height: auto;
    }
    .productBox.horizontal .productBox-content-bottom {
        min-height: auto;
    }
    .productBox-content-bottom .btn.btn {
        margin-top: 10px;
        width: 100%;
    }
    .productBox-price {
        padding-right: 0;
        justify-content: center;
    }
    .productBox-price .price-gross {
        align-items: center;
    }
    .productBox .product-labels {
        left: 10px;
    }
    .product-label-inner {
        font-size: 16px;
        height: 26px;
        padding: 0 8px 2px;
    }

    .categoryBox-inner {
        flex-direction: column;
        min-height: auto;
        justify-content: stretch;
    }
    .categoryBox-icon {
        width: auto;
        height: 140px;
    }
    .categoryBox-content {
        padding: 0 10px 15px;
        align-items: center;
        display: flex;
    }
    .categoryBox-caption {
        text-align: center;
    }

    .pagination-wrapper ul li a,
    .pagination-wrapper ul li span {
        padding: 0 6px;
    }
    .pagination-wrapper ul li.next a,
    .pagination-wrapper ul li.prev a {
        width: 40px;
        height: 40px;
        line-height: 38px;
        font-size: 14px;
    }

    .files-list {
        margin: -6px;
    }
    .file {
        width: 100%;
        padding: 6px;
    }

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

    .filterTab-grid-item {
        width: 11%;
    }

    .filterBox.filterBox {
        padding: 6px 10px 18px;
    }
    .filterBox-content > * {
        width: 100%;
    }

    .basket-box-btn.basket-box-btn .caption.caption {
        display: none;
    }

    .specsTable {
        columns: auto;
    }
    .specs-item + .specs-item {
        border-top: 1px solid #e5e5e5;
    }
    .specs-item-cell:nth-child(2) {
        padding: 4px 0 0;
    }

    .productBox-info-content {
        padding: 10px var(--space-40);
    }
    .productBox-info-content-wrapper .productBoxes {
        padding: 0;
    }
    .productBox-info-content-wrapper .productBox.productBox .productBox-title {
        font-size: 14px;
    }
    .productBox-info-content-wrapper .productBoxes-arrows {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .shop-product-offer-buy-right > .btn {
        width: 100%;
        max-width: 220px;
    }

    .shop-quantity {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .shop-quantity > * {
        width: 100%;
        max-width: 150px;
    }

    .productBox-line {
        text-align: center;
    }
    .pagination-wrapper ul li {
        padding: 5px 2px;
    }
    .categoryExhibition .categoryBox {
        width: 100%;
    }

    .section-heading {
        flex-direction: column;
        align-items: center;
    }
    .section-heading-right {
        padding-left: 0;
        margin-top: var(--space-25);
    }

    .aboutUs-button .btn {
        width: 100%;
    }

    .footer-logotype {
        width: 50%;
    }

    .product-nav-slider .product-slide {
        width: 33.3333%;
    }
    .product-slider .product-slide::before {
        padding-top: 300px;
    }

    .shop-product-offer-buy {
        flex-direction: column;
    }
    .shop-product-offer-buy-left {
        width: 100%;
        padding-right: 0;
    }
    .shop-product-offer-buy-right {
        width: 100%;
        padding-left: 0;
        border-left: none;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px solid #e5e5e5;
        align-items: center;
    }
    .shop-product-offer-buy .price-gross,
    .shop-product-offer-buy .price-net {
        justify-content: center;
    }
    .shop-product-offer-buy .price.price-old {
        text-align: center;
    }
}

@media screen and (max-width: 420px) {
    .pagination-wrapper ul li a, .pagination-wrapper ul li span {
        padding: 0 3px;
    }
    .mainSlider-arrows .btn.btn {
        width: 32px;
        height: 32px;
    }
    .footer-bar-content.footer-bar-content > * {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    .header-top .main-menu-button.main-menu-button {
        margin-left: 20px;
    }

    .logotypes-title {
        width: 100%;
        text-align: center;
        padding-right: 0;
        margin-bottom: var(--space-25);
    }
    .logotypes-inner {
        flex-direction: column;
    }
    .logotypes-slider-container {
        width: 100%;
    }
    .logotype-slider {
        margin-right: 0;
    }

    .page-heading-bottom > * + * {
        margin-left: 15px;
    }
    .shop-sort .form-element-wrapper {
        min-width: 120px;
    }

    .manufacturer {
        width: 50%;
    }
}

@media screen and (max-width: 360px) {
    .mainSlider-arrows {
        left: -15px;
        right: -15px;
    }
}

@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;

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

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

        --font-48: 36px;
        --font-45: 34px;

        --container-padding: 30px;
    }
}

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

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

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

        --font-48: 32px;

        --container-padding: 20px;
    }
}

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

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

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

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

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