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

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

.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: 1700px) {
    .asidedPage-content {
        padding-left: calc(2 * var(--space-40));
        width: calc(100% - 340px);
    }

    .aside {
        width: 340px;
    }

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

    header.sticky #menu-bottom ul li a{
        padding: 10px 10px;
    }

    #menu-bottom ul li a{
        font-size: 13px;
    }

    #menu-bottom ul{
        margin: 0 -10px;
    }

    #content {
        padding-top: 157px;
    }

}

@media screen and (max-width: 1600px) {
    .mainAbout-top-text{
        font-size: 30px;
    }

    .mainAbout-top-inner{
        gap: var(--space-40);
    }

    .product-bottom {
        padding: calc(var(--space-25) - 5px) 12px;
        flex-grow: 1;
    }

    .product-content {
        padding: 0 12px;
        padding-bottom: calc(var(--space-25) - 3px);
    }

    #menu-bottom ul li a{
        font-size: 13px;
    }

    .form-section-image {
        max-width: 200px;
        top: -18%;
    }

    .main-slider-left{
        min-height: 600px;
    }

}

@media screen and (max-width: 1440px) {
    .mainCategory-item-heading .mainCategory-name {
        font-size: 16px;
    }

    .mainCategory-item-content .text{
        font-size: 14px;
    }

    #main-menu li a{
        font-size: 14px;
    }

    /* header */
    #main-menu ul {
        padding-right: 0;
        margin-right: 0;
        gap: var(--space-40);
    }

    #menu-bottom ul {
        justify-content: space-between;
    }

    /* ----- mainpage ----- */
    /* mainSlider */
    .main-slider-left > .text {
        /*margin-top: calc(var(--space-60) * 3);*/
    }

    /* discountGroup */
    /* mainCategory */
    .mainCategories-section {
        padding-bottom: calc(4 * var(--space-50) + 40px);
    }

    .shop-product-box .price-net .icon {
        margin-right: 12px;
    }

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

    #menu-bottom ul li a,
    header.sticky #menu-bottom ul li a{
        padding: 10px 7px;
        gap: 5px;
    }

    #menu-bottom li a .icon:first-of-type{
        max-width: 20px;
    }

    #content {
        padding-top: 147px;
    }

    .main-slider-left > .btn {
        margin-top: var(--space-25);
    }

    .main-slider-inner-wrapper{
        padding-bottom: calc(2 * var(--space-40));
    }

    .shop-product-view-top-content{
        padding-left: calc(3 * var(--space-50));
        width: 60%;
    }

    .product-photo{
        width: 40%;
    }

}

@media screen and (max-width: 1280px) {
    .mainCategories-top-logo {
        top: -3px;
        max-width: 100px;
    }

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

    /* header */
    #main-menu ul {
        gap: var(--space-25);
    }

    #main-menu li a {
        font-size: 12px;
    }

    #menu-bottom ul li a{
        font-size: 11px;
    }

    header.sticky #menu-bottom ul li a {
        padding: 12px 15px;
    }

    /* footer */
    .logotype-slider .logotype {
        max-width: 25%;
    }

    /* ----- mainpage ----- */
    /* mainSlider */
    .main-slider-left > .text {
        margin-top: calc(var(--space-60) * 5);
        top: 0;
    }

    .main-slider-left > .btn{
        top: 0;
    }

    /* discountGroup */
    .shop-product-box .price-gross, .shop-product-box .price-net {
        flex-direction: column;
    }

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

    .product-bottom .price-gross {
        gap: 10px;
    }

    .section-discountGroup .product-title {
        font-size: 18px;
    }

    /* mainCategory */
    .mainCategory-name {
        font-size: 18px;
    }

    .mainCategory-hover .btn-lg {
        height: 42px;
    }

    .mainCategories-section {
        padding-bottom: calc(4 * var(--space-50) + 60px);
    }

    /* about */
    .mainAbout-left,
    .mainAbout-right {
        width: 50%;
    }

    .main-slider-products {
        max-width: initial;
    }

    /* ----- subpages ----- */
    /* dystrybucja */
    .distribution-left {
        width: 470px;
    }

    .shop-product-list{
        margin: -7px;
    }

    .shop-product-box {
        padding: 7px;
    }

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

    .contact-top-line1 {
        right: 3%;
    }

    .about-collection-item {
        gap: var(--space-60);
    }

    .about-collection-text {
        width: calc(50% - var(--space-60));
    }

}

@media screen and (min-width: 1140px) {
    .mainsearch {
        top: 0 !important;
    }

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

@media screen and (max-width: 1139px) {
    .mainAbout-top-text{
        font-size: 24px;
    }

    .mainCategory-item-heading .mainCategory-name {
        font-size: 14px;
    }

    .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;
        box-shadow: 0px 6px 14px 0px #0000001a;
    }

    .mainsearch.rwdPanel .mainsearch-submit {
        height: 46px;
    }

    .mainsearch.rwdPanel input,
    .mainsearch.rwdPanel .mainsearch-submit {
        border: none;
    }


    /* header */
    .header-top-right .mainsearch-rwd-button {
        margin-right: 0;
        background: none;
    }

    .header-top-right .top-box-basket-container {
        margin-right: 10px;
    }

    .mainsearch-submit {
        color: var(--color-secondary);
    }

    .mainsearch-search .form-element-container {
        position: unset;
    }

    .mainsearch-search {
        align-items: center;
        justify-content: space-between;
    }

    .mainsearch.rwdPanel input, .mainsearch.rwdPanel .mainsearch-submit {
        margin-right: 0;
        padding: 10px;
    }

    .mainsearch.rwdPanel input {
        border: 1px solid rgba(0, 0, 0, 0.2);
        padding: 20px 10px;
    }

    .header-top-inner {
        padding: 10px 0;
    }

    /*.rwdMenu*/
    .rwdMenu li > *:first-child > .fa {
        display: none;
    }

    /* ----- mainpage ----- */
    /* discountGroup */
    .shop-product-box.swiper-slide {
        width: 33.3333%;
    }

    /* mainIcons */
    .mainIcons-inner {
        justify-content: center;
    }

    .icon-box-item {
        width: 33.333%;
    }

    /* footer */
    .footer-cols {
        flex-direction: column;
    }

    .footer-col {
        width: 100% !important;
    }

    .footer-col:first-child {
        margin-bottom: var(--space-60);
    }

    .footer-col-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: var(--space-25);

        /*border-bottom: 1px solid rgba(255, 255, 255, 0.15);*/
    }

    .footer-col-title .arrow-down {
        display: block;
    }

    .footer-col-content {
        display: none;
        padding-bottom: 15px;
    }

    .footer-logo-box + .footer-col-content {
        display: unset;
    }

    .footer-col:nth-child(2) {
        margin-left: 0;
    }

    /* mainCategories */
    .mainCategory-box {
        align-self: flex-start;
        width: 33.3%;
    }

    .mainCategory-box-inner:hover {
        top: 0 !important;
    }

    .mainCategory-hover,
    .mainCategory-text {
        max-height: unset;
    }

    .mainCategory-hover {
        position: unset;
    }

    .mainCategory-box-inner:hover::before {
        display: none;
    }

    .mainCategory-box + .mainCategory-box {
        border-left: 0;
    }

    /* ----- subpages -----*/
    /* product page */
    .shop-product-offer-box-main-left,
    .shop-product-offer-box-main-right {
        width: 50%;
    }

    /* search */
    .search-group .shop-product-box {
        flex: 280px;
    }


    .main-slider-products {
        margin-bottom: -70px;
    }

    .header-mid {
        display: none;
    }

    .mainsearch-rwd-button svg path {
        stroke: var(--color-primary);
    }

    #content {
        padding-top: 71px;
    }

    .main-slider-inner-wrapper {
        min-height: initial;
        /*padding-top: 30px;*/
        /*padding-bottom: 70px;*/
    }

    .dots-wrapper {
        bottom: 40px;
    }

    .slick-dots {
        gap: 50px;
    }

    .main-slider-headinglg {
        font-size: calc(var(--font-48) + 8px);
    }

    .aside {
        margin-bottom: 0;
        bottom: 0;
        position: fixed;
        background-color: #fff;
        left: -330px;
        width: 280px;
        z-index: 101;
        transition: left, 300ms;
        top: 71px;
    }

    .menuList ul > li > .menuList-group > a {
        font-size: 13px;
    }

    .aside-close {
        display: block;
    }

    .aside-title {
        padding-left: var(--container-padding);
        padding-top: 10px;
    }

    .aside-button {
        display: block;
    }

    .aside-shadow.active {
        opacity: 1;
        pointer-events: auto;
    }

    .aside-shadow {
        pointer-events: none;
        opacity: 0;
        transition: opacity, 300ms;
        display: block;
        z-index: 99;
    }

    .aside.active {
        left: 0;
    }

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

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

    .logo {
        max-width: 200px;
    }

    .logo-sm {
        max-width: 46px;
    }

    .rwdMenu li > *:first-child > .icon:last-of-type{
        display: none;
    }

    .aside-title{
        font-size: var(--font-24);
    }

    .shop-product-price .price-gross .price.price-old{
        margin-bottom: -4px;
    }

    .contact-top-line1 {
        right: 0;
        max-width: 260px;
    }

    .contact-top-line2 {
        bottom: 3%;
        right: 0%;
    }

    .form-section-image{
        display: none;
    }

    .google-map::before {
        padding-top: 55%;
    }

    .main-slider-left{
        min-height: initial;
    }

    .main-slider-slide-bg img {
        height: 100%;
    }

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

@media screen and (max-width: 1000px) {
    .about-us-know-left-headinglg,
    .mainAbout-title-line2 {
        font-size: calc(var(--font-48) + 15px);
    }

    /* footer */
    .logotype-slider .logotype {
        max-width: 33.3333%;
    }

    /* ----- mainpage ----- */
    /**/
    /* ----- subpages -----*/
    /* product page */
    .shop-product-offer-box-main {
        flex-direction: column;
    }

    .shop-product-offer-box-main-right {
        width: 100%;
        margin-top: 0;
    }

    /*  dystrybucja */
    .distribution-row {
        flex-direction: column;
        gap: calc(var(--space-50) * 2);
    }

    .distribution-left {
        width: 100%;
    }

    .contact-top-line1,
    .contact-top-line2 {
        font-size: var(--font-30);
    }

    .contact-top-line-caption{
        font-size: var(--font-30);
        margin-top: -3px;
        margin-right: 20px;
    }
}

@media screen and (max-width: 900px) {
    .mainAbout-top-inner{
        flex-wrap: wrap;
    }

    .mainAbout-top-line{
        display: none;
    }

    .mainAbout-top{
        padding: var(--space-50) 0;
    }

    .mainCategories {
        grid-template-columns: 1fr;
    }

    .mainCategories-top-logo{
        left: unset;
        right: var(--container-padding);
        transform: unset;
    }

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


    /* ----- mainpage ----- */
    /* mainSlider */

    .main-slider-slide .container {
        height: 100%;
    }

    .main-slider-slide .btn {
        margin-right: 0;
        margin-left: auto;
    }

    .main-slider-inner-wrapper {
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        height: 100%;
    }

    .main-slider-left > .text,
    .main-slider-left > .btn {
        color: #000000;
    }

    .main-slider-left > .btn {
        border-color: #000;
    }

    .main-slider-left > .text {
        margin-top: auto;
        max-width: unset;
        max-height: unset;
        overflow: unset;
    }

    .main-slider-left,
    .main-slider-right {
        width: 100%;
    }

    .main-slider-pagination {
        top: unset !important;
        bottom: 30px !important;
        left: 50% !important;
        transform: translateX(-50%);
        flex-direction: row;
    }

    .main-slider-pagination .main-slider-pagination-bullet {
        background-color: #fff;
    }

    .main-slider-pagination .main-slider-pagination-bullet:before {
        border-color: #000;
    }

    /* about */
    .mainAbout-inner {
        flex-direction: column-reverse;
        gap: var(--space-50);
    }

    .mainAbout-right{
        padding-left: 0;
    }

    .mainAbout-left,
    .mainAbout-right {
        width: unset;
    }

    .mainAbout-left {
        max-width: unset;
    }

    /* mainIcons */
    .icon-box-item {
        width: 50%;
    }

    /* ----- subpages ----- */
    .page-title {
        margin-bottom: var(--space-60);
    }

    /* product page */
    .shop-product-view-top {
        flex-direction: column;
    }

    .shop-product-offer-box-main {
        flex-direction: row;
    }

    .shop-product-view-top-content {
        padding-left: 0;
        padding-top: var(--space-60);
    }

    .shop-product-offer-box-main-left {
        width: 60%;
    }

    .shop-product-offer-box-main-right {
        width: 40%;
    }

    .product-photo,
    .shop-product-view-top-content {
        width: 100%;
    }

    .product-photo .product-slide-inside {
        max-width: 400px;
        margin: 0 auto;
    }

    .product-labels {
        margin-top: 15px;
    }


    /* about */
    .about-us-know {
        flex-direction: column;
    }

    .about-us-know-left,
    .about-us-know-right {
        width: unset;
    }

    .about-us-know-left {
        max-width: unset;
    }

    .about-us-know-right-img {
        margin: 0 auto -27px auto;
    }

    .about-icons-containerBox {
        flex-wrap: wrap;
        justify-content: center;
        padding-bottom: var(--space-60);
    }

    .about-icons-box-title {
        margin: var(--space-40) 0;
    }

    .gallery-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

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

    /* contact */
    .contact-us-inner {
        gap: calc(var(--space-40) * 2);
        flex-direction: column;
    }

    .contact-us-left {
        max-width: unset;
    }

    .contact-us-right-imgBox {
        margin-bottom: -70px;
    }

    /* search */
    .search-group .product-labels {
        margin-top: 0;
    }

    .main-slider-right{
        margin-top: 25px;
    }

    .main-slider-inner-wrapper {
        padding-top: 30px;
        padding-bottom: 70px;
    }

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

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

    .contact-top-right{
        width: 100%;
        position: relative;
        padding-top: var(--space-60);
    }

    .contact-top-line1{
        top: var(--space-60);
    }
    .contact-top-logo{
        display: none;
    }

    .logotypes .logotypes-title{
        width: 28%;
        padding-right: 15px;
    }

    .logotypes .logotypes-slider-container{
        width: 72%;
    }

    .about-page-inner {
        flex-direction: column-reverse;
    }

    .about-page-left{
        width: 100%;
        margin-top: var(--space-50);
    }

    .about-page-right {
        width: 100%;
        padding-left: 0;
    }

    .main-slider-line2-wrapper{
        margin-bottom: 30px;
        margin-top: 5px;
    }

    .main-slider .logo-top{
        margin-right: 0;
    }
}

@media screen and (max-width: 767px) {
    .mainAbout-top-text {
        font-size: 19px;
    }

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


    /* header */
    .header-top-inner {
        padding: 10px 0;
    }

    .logo a {
        max-width: 190px;
    }

    /* ----- mainpage ----- */
    /* discountGroup */
    .shop-product-box.swiper-slide {
        width: 50%;
    }

    .heading-buttons {
        justify-content: center;
    }

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

    .section-discountGroup .product-title {
        font-size: 16px;
    }

    .product-text {
        font-size: 14px;
    }

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

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

    .product-bottom .price-gross{
        gap: 5px;
    }

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

    .about-collection-item {
        flex-direction: column !important;
    }

    .about-collection-image{
        width: 100%;
    }

    .about-collection-text{
        width: 100%;
    }

    .text h2{
        font-size: 18px;
    }

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

}

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

@media screen and (max-width: 639px) {
    .mainCategory-item-heading{
        padding: 13px;
    }

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

    /* footer */
    .logotype-slider .logotype {
        display: block;
    }


    .logotypes .logotypes-title {
        font-size: 20px;
        width: 100%;
        margin-bottom: var(--space-40);
    }

    .logotypes-inner {
        flex-direction: column;
    }

    .logotypes .logotypes-slider-container {
        width: 100%;
    }

    /* ----- mainpage ----- */
    /* mainCategory */
    .mainCategory-box {
        width: 50%;
    }

    /* about */
    .section-mainIcons.section-padding {
        padding: calc(var(--space-60) * 2) 0;
    }

    .about-text.section-padding {
        padding: var(--space-60) 0;
    }

    /* ----- subpages ----- */
    /* general */

    /* about */
    .about-us-know-right-img {
        width: 80%;
    }

    .about-icons-containerBox {
        flex-direction: column;
        gap: calc(var(--space-60) * 2);
    }

    .about-icons-box {
        width: 100%;
    }

    .gallery-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

    /* contact */
    .form-section-title {
        font-size: var(--font-36);
    }

    .heading-bottom {
        display: block;
    }

    .shop-sort {
        margin-top: 15px;
    }

    .file {
        width: 100%;
        padding: calc(var(--space-25) - 8px) var(--space-25);
    }

    .file-left .caption {
        font-size: 13px;
    }

    .file-icon{
        margin-right: 7px;
        max-width: 24px;
    }

    .file-right .btn {
        padding: 10px calc(var(--space-25) - 3px);
    }

    .footer-col-title {
        font-size: 17px;
        font-weight: 700;
    }

}

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

    /* header */
    .header-top-inner .user-nav {
        display: none;
    }

    /* footer */
    .logotype-slider .logotype {
        max-width: 50%;
    }

    /* ----- subpages ----- */
    /* product page */
    .shop-product-offer-box-main-left,
    .shop-product-offer-box-main-right {
        width: 50%;
    }

    /* contact */
    .contact-us-left-phoneNumber {
        font-size: calc(var(--font-48) + 6px);
    }

    .contact-us-right-imgBox {
        display: none;
    }

    .contact-us.section-padding {
        padding-top: 0;
        padding-bottom: var(--space-60);
    }

    .checkboxradio-container .col-xs-4 {
        width: 100%;
    }

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

}

@media screen and (max-width: 480px) {
    .modal-footer > .btn {
        width: 100%;
    }

    .modal-footer .btn + .btn {
        margin-left: 0;
        margin-top: 5px;
    }

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

    /* header */


    .header-top-left{
        gap: 8px;
    }

    .logo-sm {
        max-width: 36px;
    }

    .logo {
        max-width: 144px;
    }

    .logo a {
        max-width: 160px;
    }

    /* ----- mainpage ----- */
    /* discount group */
    .shop-product-box.swiper-slide {
        width: 100%;
    }

    /* mainCategory */
    .mainCategory-box {
        width: 100%;
    }

    .mainCategory-box + .mainCategory-box {
        border-top: 1px solid rgba(255, 255, 255, 0.5);
        margin-top: calc(var(--space-40) * 2);
    }

    .mainCategories-section .section-header {
        margin-bottom: var(--space-50);
        min-height: 55px;
        padding-right: 110px;
    }

    /* mainIcons */
    .icon-box-item {
        width: 100%;
    }

    .logotype-slider .logotype {
        max-width: unset;
    }

    /* ----- subpages ----- */
    /* product page */
    .shop-product-offer-box-main {
        flex-direction: column;
    }

    .shop-product-offer-box-main-left,
    .shop-product-offer-box-main-right {
        width: 100%;
    }

    .shop-product-offer-box-bottom {
        align-items: center;
        gap: 10px;
    }

    .shop-product-offer-box-bottom-item {
        width: auto !important;
    }

    /* offer */
    .shop-category-top .heading-page {
        margin-bottom: var(--space-50);
    }

    /* about */
    .about-us-know-left-headinglg {
        font-size: calc(var(--font-48) + 6px);
    }

    .about-us-know-left-headingsm,
    .contact-us-left-title {
        font-size: 14px;
    }

    .aside{
        top: 61px;
    }

    .shop-product-view-top-logo {
        max-width: 80px;
    }

    .contact-top-line1{
        max-width: 170px;
        font-size: 16px;
        top: 3%;
    }

    .contact-top-line2 {
        max-width: 138px;
        font-size: 16px;
        bottom: -1%;
        right: -5%;
    }

    .google-map::before {
        padding-top: 70%;
    }

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

}

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

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

    .main-slider-line2-wrapper {
        margin-bottom: 14px;
    }
    .main-slider-left{
        margin-bottom: 25px;
    }

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

    /* header */
    .header-top-right .basket-box {
        display: none;
    }


    /* footer */
    .footer-col-title {
        font-size: 20px;
    }

    .main-slider-products {
        margin-bottom: -47px;
    }

    .shop-product-info-item {
        width: 100%;
    }

    .file {
        display: block;
    }

    .file-left{
        padding-right: 0;
        padding-bottom: 12px;
        justify-content: center;
    }

}

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