@media screen and (min-width: 1921px) {
    body.compensate-for-scrollbar {
        margin-right: auto !important;
    }
}

/**
 * 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%);
    }

    header.stickable .rwdPanel {
        z-index: -1;
        margin-top: 1px;
    }

    .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: 700;
    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: 40px;
    height: 40px;
    font-size: 22px;
    flex-shrink: 0;
    margin: -9px 6px -9px -9px;
}

.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: 700;
    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-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 15px 0 0;
    font-size: 18px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transition: all 0.4s;
}

.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: var(--color-primary);
}

.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);
}

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

@media screen and (max-width: 1600px) {
    .main-slide-title {
        font-size: 64px;
    }

    .footer-big-text {
        font-size: 64px;
    }

    .products-slider-custom .product-container {
        padding: var(--space-25);
    }

    .product-image::before {
        padding-top: 75%;
    }

    .product-actions {
        margin-top: var(--space-40);
    }

    .contact-big-text {
        font-size: 62px;
    }

    .product-header {
        display: flex;
        padding-bottom: calc(var(--space-40) - 3px);
    }

    .add-to-basket {
        margin-top: calc(var(--space-40) - 10px);
        padding-bottom: calc(var(--space-40) - 10px);
        margin-bottom: calc(var(--space-40) - 10px);
        padding-left: var(--space-25);
        padding-right: var(--space-25);
    }

    .add-to-basket-right {
        padding-left: 15px;
    }

    .add-to-basket-left {
        padding-right: 15px;
    }
}

@media screen and (max-width: 1440px) {
    .mainCategories-list{
        padding-top: 102px;
    }

    .mainCategories-list .title.title-white {
        font-size: 20px;
    }

    .main-slide-title {
        font-size: 56px;
    }

    .footer-big-text {
        font-size: 56px;
    }

    .main-aside {
        width: 285px;
    }

    .header-main {
        margin-left: 285px;
    }

    #content {
        margin-left: 285px;
    }

    .logo {
        min-height: 102px;
    }

    .header-main-inner {
        min-height: 101px;
    }

    .main-slide-content {
        padding-bottom: var(--space-60);
    }

    .btn-link-slider {
        margin-top: var(--space-60);
    }

    .category-inner {
        padding: calc(var(--space-40) - 8px) 15px;
    }

    .mainAbout {
        background-position-x: 115px;
    }

    .mainAbout-title {
        font-size: 68px;
    }

    footer {
        margin-left: 285px;
    }

    .footer-logotype {
        width: 120px;
        height: 120px;
    }

    .product-container {
        padding: calc(var(--space-40) - 5px) var(--space-50);
    }

    .subpage #content {
        padding-top: 102px;
    }

    .contact-big-text {
        font-size: 54px;
    }

    .section-background {
        margin-top: -102px;
        padding-top: 102px;
    }

    .section-contact-form {
        background-position-x: 200px;
    }

    .shop-product-view {
        /*min-height: calc(100vh - 102px);*/
    }

    .product-manufacturer {
        height: 110px;
        width: 110px;
    }

    .product-nav-slider .product-slide {
        padding: 4px;
    }

    .product-nav-slider {
        margin: -4px;
    }

    .product-description {
        background-position-x: 285px;
    }

    .basket-table .name a.title, .basket-table tbody .lp, .basket-table .price:not(.price-old) {
        font-size: 14px;
    }

    .basket-table .price:not(.price-old), .basket-table tbody .lp {
        font-size: 18px;
    }

    #main-menu {
        padding-top: var(--space-60);
    }

    .user-nav {
        margin-right: var(--space-40);
    }

    .user-nav-item + .user-nav-item {
        padding-left: 6px;
    }

    .user-nav-item + .user-nav-item::before {
        margin-right: 4px;
    }

    .summary-box .tinyscrollbar .viewport {
        max-height: 190px;
    }

    .summary-box {
        height: initial;
    }
}

@media screen and (max-width: 1280px) {
    .mainCategories-list .title.title-white {
        font-size: 16px;
    }

    .main-slide-title {
        font-size: 44px;
    }

    .footer-big-text {
        font-size: 44px;
    }

    .mainAbout-inner {
        width: 52%;
    }

    .mainAbout-title {
        font-size: 62px;
    }

    .footer-col-1 {
        width: 38%;
    }

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

    .shop-product-box {
        width: 50%;
    }

    .contact-big-text {
        font-size: 46px;
    }

    .add-to-basket {
        padding-left: 0;
        padding-right: 0;
    }

    .shop-quantity-box .qty-down, .shop-quantity-box .qty-up {
        height: 38px;
        width: 38px;
        line-height: 38px;
    }

    .add-to-basket .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 38px;
    }

    .add-to-basket .select2-container--default .select2-selection--multiple, .add-to-basket .select2-container .select2-selection--single {
        height: 40px;
        line-height: 38px;
    }

    .add-to-basket .select2-container--default .select2-selection--single .select2-selection__arrow {
        width: 40px;
        height: 40px;
    }

    .add-to-basket .select2-container--default .select2-selection--single .select2-selection__arrow::before {
        width: 26px;
        height: 26px;
    }

    .add-to-basket-right {
        padding-left: 10px;
    }

    .add-to-basket-left {
        padding-right: 10px;
    }

    .product-photo {
        width: 44%;
    }

    .product-right {
        width: 56%;
    }
}

@media screen and (max-width: 1139px) {
    .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-right: 25px;
        margin-bottom: 15px;
    }

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

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

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

    /*HEADER*/
    header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background-color: #fff;
    }

    .main-aside {
        position: static;
    }

    .header-main {
        margin-left: 0;
    }

    .logo {
        min-height: initial;
        width: 225px;
        background-color: #000;
        margin-bottom: -1px;
    }

    .social-icon {
        color: #000;
        border-color: #000;
        width: 40px;
        height: 40px;
    }

    .social-icon svg {
        width: 30px;
        height: 30px;
    }

    .header-main-inner {
        min-height: initial;
    }

    .main-aside {
        width: initial;
        background-color: transparent;
        flex-direction: row;
        align-items: center;
        height: initial;
    }

    .social-list {
        width: initial;
        padding: 0;
        position: static;
        margin-left: 15px;
    }

    #content {
        margin-left: 0;
        padding-top: 81px !important;
    }

    .rwdMenu .user-nav-item + .user-nav-item {
        padding-left: 0;
    }

    .mainsearch-rwd-button .icon {
        width: 30px;
        height: 30px;
    }

    .user-nav {
        margin-right: var(--space-60);
    }

    .main-slide {
        height: initial;
    }

    .main-slide > .container {
        height: initial;
    }

    .main-slide-content {
        padding-top: calc(2 * var(--space-50));
    }

    .main-slide-content .price-box {
        margin-top: calc(2 * var(--space-50));
    }

    .main-slider-arrows {
        bottom: var(--space-60);
    }

    .mainCategories {
        height: initial;
        max-height: initial;
        background-position-x: 0;
    }

    .mainCategories-list {
        padding: 0;
    }

    .product-slider-wrapper {
        height: initial;
        padding-top: var(--space-60);
    }

    .product-slider-wrapper .section-heading {
        margin-top: var(--space-60);
    }

    .mainAbout {
        background-position-x: -150px;
    }

    .mainAbout-inner {
        height: initial;
        margin-bottom: calc(3 * var(--space-60));
    }

    footer {
        margin-left: 0;
    }

    .footer-main-inner {
        height: initial;
        padding-top: calc(2 * var(--space-50));
    }

    .footer-big-text {
        font-size: 38px;
        padding-bottom: 15px;
        padding-top: 5px;
        text-align: center;
    }

    .header-white {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .header-white .mainsearch input.form-control::placeholder {
        color: #000;
    }

    .header-white .mainsearch input.form-control:-ms-input-placeholder {
        color: #000;
    }

    .header-white .mainsearch input.form-control::-ms-input-placeholder {
        color: #000;
    }

    .header-white .user-nav-item-inner {
        color: #000;
    }

    .header-white .user-nav-item::before {
        color: #000;
    }

    .header-white .mainsearch-submit {
        color: #000;
    }

    .header-white .basket-box-btn {
        color: #000;
    }

    .header-white .logo-white {
        opacity: 0;
    }

    .header-white .logo-black {
        opacity: 1;
    }

    .header-white .mainsearch input.form-control {
        color: #000;
    }

    .section-background {
        padding-top: 0;
        margin-top: 0;
    }

    .contact-page {
        height: initial;
    }

    .scroll-bottom {
        display: none;
    }

    .contact-top-right {
        padding-left: 15px;
    }

    .contact-big-text {
        font-size: 38px;
    }

    .contact-item .icon {
        width: 40px;
        height: 40px;
        margin-right: 6px;
    }

    .section-contact-form {
        background-position-x: -80px;
        height: initial;
    }

    .contact-form-no-bs {
        margin-top: calc(2 * var(--space-40));
    }

    .shop-product-view {
        height: initial;
        margin-bottom: var(--space-60);
    }

    .product-description {
        background-position-x: 0;
    }

    .product-description {
        height: initial;
        max-height: initial;
    }

    .user-nav {
        display: none;
    }

    .gallery-wrapper {
        height: initial;
        padding-top: var(--space-60);
    }

    .page-top {
        height: initial;
        padding: var(--space-60) 0;
    }

    .aside-content {
        padding-top: 72px;
        padding-bottom: 50px;
        position: fixed;
        transition: transform 0.4s, top 0.4s;
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
        pointer-events: none;
        width: 280px;
        --side-space: 15px;
        background-color: #000;
    }

    .aside-bg {
        display: none;
    }

    .aside-shadow {
        display: block;
        opacity: 0;
        pointer-events: none;
    }

    .aside-button {
        display: block;
    }

    .aside-close {
        display: block;
        color: var(--color-primary);
    }

    .hide-filters {
        display: none;
    }

    .logo-white {
        display: none !important;
    }

    .entry-alert {
        margin-top: initial !important;
    }

    .product-description-left {
        margin-bottom: 52px;
    }
}

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


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

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

    .caption-basket {
        display: none;
    }

    .main-slide-title {
        font-size: 38px;
    }

    .title {
        font-size: 16px;
    }

    .mainAbout-title {
        font-size: 54px;
    }

    /*FOOTER*/
    .footer-main {
        background-position: top;
    }

    .footer-col-content {
        display: none;
        padding-bottom: var(--space-25);
    }

    .footer-col-content ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-cols {
        flex-wrap: wrap;
        margin: 0;
    }

    .footer-col {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 12px;
    }

    .footer-col + .footer-col {
        margin-left: 0;
    }

    .footer-title {
        position: relative;
        text-align: center;
        padding-bottom: 12px;
        margin: 0;
        font-size: 16px;
        width: 100%;
    }

    .footer-title::after {
        content: '\f107';
        position: absolute;
        right: 10px;
        top: calc(50% - 15px);
        transition: all 0.4s;
        font-family: FontAwesome;
        font-size: 16px;
        color: var(--color-primary);
    }

    .footer-title.active::after {
        transform: translate3d(0, 0%, 0) scaleY(-1);
        -webkit-transform: translate3d(0, 0%, 0) scaleY(-1);
        -moz-transform: translate3d(0, 0%, 0) scaleY(-1);
        -ms-transform: translate3d(0, 0%, 0) scaleY(-1);
        -o-transform: translate3d(0, 0%, 0) scaleY(-1);
    }

    .footer-cols-right {
        width: 100%;
    }

    .footer-middle {
        width: 100%;
        order: 1;
        padding-left: 0;
    }

    .footer-col-4 {
        order: 2;
    }

    .footer-col-1 {
        order: 3;
        padding-bottom: 15px;
    }

    .footer-middle-bottom {
        order: 4;
    }

    .footer-middle .footer-col + .footer-col {
        margin-top: 0;
    }

    .footer-logotypes {
        justify-content: center;
    }

    .copyright, .copyright-undicom {
        display: inline-block;
    }

    .copyright {
        margin-right: 12px;
        margin-bottom: 12px;
    }

    .footer-logotype {
        width: 100px;
        height: 100px;
    }

    .footer-contact-item,
    .footer-content {
        text-align: center;
    }

    .contact-big-text {
        font-size: 34px;
    }

    .contact-top-right {
        width: 60%;
    }

    .contact-top-left {
        width: 40%;
    }

    #contact-form {
        width: 100%;
    }

    .product-right {
        padding-left: var(--space-25);
    }
}

@media screen and (max-width: 767px) {
    .mainCategories-list {
        flex-wrap: wrap;
    }

    .mainCategories-list-text{
        display: none;
    }

    .category {
        width: 50%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        border-top: none;
        border-left: none;
    }

    .category:nth-of-type(-n + 2){
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

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

    .mainAbout-title {
        font-size: 48px;
    }

    .footer-big-text {
        font-size: 34px;
    }

    .contact-top {
        flex-direction: column;
    }

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

    .contact-top-right {
        width: 100%;
        padding-left: 0;
        padding-top: 15px;
    }

    .contact-big-text {
        font-size: 28px;
    }

    .product-wrapper {
        display: block;
    }

    .product-photo {
        width: 100%;
    }

    .product-right {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }

    .product-right .text {
        max-height: 240px;
    }

    .product-description-inner {
        display: block;
        max-height: initial;
    }

    .product-description-left {
        width: 100%;
        padding-right: 0;
    }

    .product-description-right {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
        padding-bottom: var(--space-60);
    }
}

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

@media screen and (max-width: 639px) {
    .mainCategories {
        background-position-x: -165px;
    }

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

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

    .main-slide-title {
        font-size: 32px;
    }

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

    .heading-items > .btn-md {
        margin-right: var(--space-25);
    }

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

    .mainAbout-inner {
        width: 100%;
    }

    .footer-big-text {
        font-size: 30px;
    }

    .btn-addToBasket .icon-wrapper {
        width: 42px;
        height: 42px;
    }

    .page-top-inner {
        display: block;
    }

    .page-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .page-top-right {
        width: 100%;
        max-height: 61vh;
    }

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

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

    .logo {
        width: 180px;
    }

    .main-slide-title {
        width: 100%;
    }

    #content {
        padding-top: 65px !important;
    }

    .shop-product-box .price {
        font-size: 16px;
    }

    .shop-product-box .price-old {
        font-size: 14px;
    }

    .section-heading {
        display: block;
    }

    .heading-items {
        margin-top: var(--space-25);
    }

    .mainAbout-title {
        font-size: 42px;
    }

    .footer-big-text {
        font-size: 28px;
    }

    .product-container {
        padding: calc(var(--space-40) - 5px);
    }

    .contact-big-text {
        font-size: 24px;
    }

    .inPost-element {
        display: block;
    }

    .inPost-element .form-control-text {
        border-radius: 30px !important;
    }

    .inPost-element .btn {
        border-radius: 30px !important;
        margin-top: 10px;
    }
}

@media screen and (max-width: 420px) {
    .footer-bar-content.footer-bar-content > * {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    .logo {
        width: 160px;
    }

    .header-main {
        margin-left: -15px;
    }

    .rwdButton {
        margin-right: 10px;
    }

    .main-slide-title {
        font-size: 26px;
    }

    #content {
        padding-top: 58px !important;
    }

    .shop-product-box .price-gross, .shop-product-box .price-net {
        display: block;
    }

    .shop-product-box .price + .price {
        margin-left: 0;
    }

    .mainAbout-title {
        font-size: 36px;
    }

    .footer-big-text {
        font-size: 22px;
    }

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

    .shop-sort .form-element-text {
        margin-right: 0;
    }

    .heading-flex .title {
        margin-right: 20px;
    }

    .select2-container--default .select2-selection--multiple .select2-selection__rendered, .select2-container--default .select2-selection--single .select2-selection__rendered {
        padding-right: 35px;
    }

    .contact-big-text {
        font-size: 22px;
    }

    .inPost-MachineSelect {
        font-size: 12px;
    }
}

@media screen and (max-width: 380px) {
    .add-to-basket-left {
        width: 100%;
        padding: 0;
    }

    .add-to-basket-right {
        width: 100%;
        padding: 0;
        padding-top: 15px;
    }

    .shop-product-price .price-box {
        min-height: initial;
    }
}

@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-36: 32px;
        --font-30: 26px;
        --font-24: 22px;
    }
}

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

        --font-48: 36px;

        --container-padding: 30px;
    }
}

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

        --font-48: 34px;
        --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-36: 24px;
        --font-30: 22px;
        --font-24: 18px;
    }
}

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