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

.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: 1850px) {
    .main-slider-inner .slick-dots {
        right: calc((var(--container-padding) - 26px) / -2);
    }
}

@media screen and (max-width: 1720px) {
    .news-item-image {
        width: calc(50% + var(--container-padding));
        margin-right: calc(-1 * var(--container-padding));
    }

    .main-news .news-item:nth-of-type(even) .news-item-image {
        margin-right: 0;
        margin-left: calc(-1 * var(--container-padding));
    }
}

@media screen and (max-width: 1600px) {
    header .menuList {
        padding-left: var(--space-25);
        padding-right: var(--space-25);
        margin: 0 calc(-1 * var(--space-25));
    }

    header .menuList > li {
        padding: 0 var(--space-25);
    }

    .main-about-line1 {
        font-size: 22px;
    }

    .main-categories-title {
        font-size: 14px;
    }

    .see-all-categories > a {
        font-size: 13px;
    }


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

    .main-slide-teaser {
        font-size: 16px;
    }

    .header-bottom-inner {
        gap: var(--space-60);
    }

    .main-top-inner {
        gap: var(--space-60);
    }

    .main-categories .menuList > li > .menuList-group > a {
        font-size: 12px;
    }

    .main-top-right {
        width: calc(100% - 187px - var(--space-60));
    }

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


    .product-box-offer-right {

        padding-left: 0;
    }

    .product-container {
        padding: 8px;
    }

    .category-item {
        width: 20%;
    }

}

@media screen and (max-width: 1440px) {
    .products-slider-big .section-related-inner {
        margin: -10px;
    }

    .products-slider-big .section-related-inner .shop-product-box {
        padding: 10px;
    }

    .logotype-slider:not(.slick-initialized) .logotype-slider-col:nth-of-type(n + 9) {
        display: none;
    }

    .logotype-slider-col {
        width: 12.5%;
    }

    .main-box-title {
        font-size: 28px;
    }

    .main-box-text {
        font-size: 18px;
    }

    .header-bottom-inner .user-nav > .user-nav-item > .user-nav-item-inner {
        font-size: 12px;
    }

    .main-slider-inner .slick-dots {
        right: unset;
        left: var(--space-40);
        top: unset;
        bottom: var(--space-40);
        transform: none;
        flex-direction: row;
    }

    .btn.btn-lg.btn-header-offer {
        font-size: 14px;
        min-height: 46px;
        line-height: 1em;
    }

    .shop-product-offer-box .btn.btn-lg {
        font-size: 12px;
    }

    .product-box-offer-left {
        padding-right: var(--space-40);
    }

    .shop-product-offer-box .btn .icon {
        width: 15px;
        height: 15px;
    }

    .shop-product-offer-box .shop-store-btn .icon {
        width: 20px;
        height: 20px;
    }

    .footer-payment {
        gap: var(--space-40);
    }

    /* podgląd produktu */
    .shop-product-offer-box-content-item {
        padding: 0 10px;
    }

    /* contact */
    .contact-item {
        word-break: break-all;
    }

    .product-list,
    .shop-product-list {
        margin: -10px;
    }

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

}

@media screen and (max-width: 1366px) {
    .order-history-container .table.table-crud > tbody > tr > td {
        font-size: 12px;
        padding: 8px;
    }

    .order-history-container .table.table-crud thead th {
        font-size: 13px;
        padding: 8px;
    }

    .basket-table td.product-info-box {
        width: 30%;
    }

    .input-price.form-control {
        padding: 4px;
    }

    .tax-rate-input {
        padding: 4px;
    }

    .basket-table td.product-info-box {
        width: 29%;
    }

    .basket-table .input-margin {
        padding: 4px;
    }

    /*.basket-table td.product-info-box {*/
    /*    width: 40%;*/
    /*}*/
}

@media screen and (max-width: 1280px) {
    .news-item-label {
        font-size: 15px;
    }

    header .menuList > li > .menuList-group > a {
        font-size: 12px;
    }

    .shop-manufacturer-box {
        width: 25%;
    }

    .products-slider-big .shop-product-box {
        width: 20%;
    }

    .products-slider-big .section-related-inner:not(.slick-initialized) .shop-product-box:nth-of-type(n + 6) {
        display: none;
    }

    .products-slider-normal .shop-product-box {
        width: 25%;
    }

    .products-slider-normal .section-related-inner:not(.slick-initialized) .shop-product-box:nth-of-type(n + 5) {
        display: none;
    }

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

    .news-item-text {
        font-size: 15px;
    }

    .main-news .news-item:nth-of-type(even) .news-item-content {
        padding: var(--space-50) 0 var(--space-50) calc(var(--space-60) + 10px);
    }

    .news-item-content {
        padding: var(--space-50) calc(var(--space-60) + 10px) var(--space-50) 0;
    }

    .category-item {
        width: 25%;
    }

    .category-name {
        font-size: 13px;
    }

    .mainsearch {
        width: 285px;
    }

    .contact-line {
        font-size: 75px;
    }

    /* contact */
    .people-group:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
        margin-left: 0;
    }

    .people-group:nth-child(3) {
        grid-column: 2;
        grid-row: 1;
        margin-top: 375px;
        margin-right: 0;
        margin-bottom: 40px;
    }

    .people-group:last-of-type {
        margin-top: 0;
    }

    /* o nas - page about */
    .gallery-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-list-item {
        padding: 10px;
    }

    /* product list */
    .asidedPage-content .shop-product-box {
        padding: 10px;
    }

    .heading-top {
        margin-bottom: var(--space-40);
    }

    .shop-product-offer-box-content-item:last-child {
        flex-wrap: wrap;
        justify-content: center;
    }


    .shop-product-offer-box-content-item .btn.btn-circle {
        margin-left: 2px;
    }

    .shop-update-basket .price-net, .shop-update-basket .price-gross {
        display: block;
    }

    .shop-tax-rate-box .input-tax-rate {
        min-width: 66px;
    }


    .grid-actions .btn-toolbar > .btn-group .btn {
        gap: 3px;
        padding: 4px 5px;
    }

    .order-history-container .table.table-crud > tbody > tr > td {
        padding: 6px;
    }

}

@media screen and (max-width: 1200px) {
    .shop-store-btn {
        font-size: 10px !important;
        gap: 3px;
    }

    .shop-product-offer-box .shop-add-to-basket {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .shop-product-offer-box-content-item .btn.btn-circle {
        margin-left: 0;
        margin-bottom: 10px;
    }
}

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

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

@media screen and (max-width: 1139px) {
    .filter-aside {
        top: 60px;
    }

    header .menuList > li {
        width: 100%;
    }

    .store-btns a {
        padding: 5px !important;
        width: 35px;
        height: 35px;
        display: flex !important;
        justify-content: center;
        align-items: center;
    }

    header .menuList {
        grid-template-columns: 1fr;
        max-height: 100%;
    }

    .header-offer {
        display: none !important;
    }

    .section-title + .products-slider-arrows {
        min-width: 120px;
    }

    .header-categories,
    .header-categories-shadow {
        top: 65px;
    }

    .products-slider-big .section-related-inner:not(.slick-initialized) .shop-product-box:nth-of-type(n + 5) {
        display: none;
    }

    .products-slider-big .shop-product-box {
        width: 25%;
    }


    .products-slider-big .section-related-inner {
        margin: -7px;
    }

    .products-slider-big .section-related-inner .shop-product-box {
        padding: 7px;
    }

    #menuList {
        max-height: calc(100vh - 65px);
        overflow: auto;
        scrollbar-width: thin;
        scrollbar-color: var(--color-primary) #ccc;
    }

    #menuList::-webkit-scrollbar {
        width: 3px;
    }

    #menuList::-webkit-scrollbar-track {
        background-color: rgba(0, 0, 0, 0.1);
    }

    #menuList::-webkit-scrollbar-thumb {
        background-color: var(--color-primary);
    }

    .people-item-name {
        font-size: 20px;
    }

    .people-item-job {
        font-size: 16px;
    }

    .people-name {
        font-size: 20px;
    }

    .logotype-slider:not(.slick-initialized) .logotype-slider-col:nth-of-type(n + 7) {
        display: none;
    }

    .logotype-slider-col {
        width: 16.6666%;
    }

    .social-list > ul {
        justify-content: flex-start;
        padding: 0 var(--container-padding);
    }

    .main-top-left {
        display: none;
    }

    .main-top-right {
        width: 100%;
    }

    .header-bottom-right {
        gap: 15px;
    }

    .mainsearch {
        max-width: unset;
        width: 100%;
    }

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

    .mainsearch-search:before {
        content: none;
    }

    .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% - 40px);
        margin-right: -6px;
        flex-grow: 0;
    }

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

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

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

    .aside {
        padding-top: 40px;
        padding-bottom: 50px;
        position: fixed;
        left: -280px;
        pointer-events: none;
        width: 280px;
        z-index: 9999;
        transition: all 0.3s;
        top: 60px !important;
        bottom: 0;
    }

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

    .aside-bg {
        display: block;
        background-color: #fff;
        right: 0;
        z-index: -1;
    }

    .aside-button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
    }

    .aside-close {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .aside.active {
        left: 0;
        margin-left: 0;
        pointer-events: auto;
    }

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

    .people-group-content {
        margin: -12px;
    }

    .people-item {
        padding: 12px;
    }

    .contact-bottom-left {
        width: 45%;
    }

    .contact-line {
        font-size: 62px;
    }

    .mainsearch {
        width: 100%;
        margin-left: 0;
    }

    .mainsearch-rwd-button {
        margin-right: 0;
    }

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

    .header-top {
        display: none;
    }

    .logo {
        top: 0;
        margin-bottom: 0;
        width: 120px;
    }

    .header-mid-inner {
        padding: 6px 0;
    }

    .rwdMenu .user-nav-item .icon-user {
        width: 23px !important;
        height: 28px !important;
        margin: 0 !important;
        margin-right: 15px !important;
    }

    #content {
        padding-top: 62px;
    }

    .mainIcons-image {
        display: none;
    }

    .mainpage .mainIcon:nth-child(2) {
        padding-left: 0;
    }

    .mainIcons-list {
        padding: 0;
    }

    .mainIcons-title {
        font-size: 90px;
    }

    .mainAbout-middle {
        width: 20%;
    }

    .mainAbout-middle-text {
        font-size: 17px;
    }

    .mainText-title {
        font-size: 44px;
    }

    .footer-cols {
        display: flex;
        flex-direction: column;
        margin-bottom: 0;
    }

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

    .footer-title {
        padding-top: 15px;
        padding-bottom: 15px;
        cursor: pointer;
        display: block;
        position: relative;
        border-bottom: 1px solid rgba(26, 128, 192, 0.2);
        font-size: 20px;
        width: 100%;
    }

    .footer-content {
        padding-top: 15px;
    }

    .footer-title::after {
        content: "\f054";
        font-size: 16px;
        font-family: FontAwesome;
        transition: transform, 500ms;
        position: absolute;
        right: var(--container-padding);
        top: 50%;
        transform: translateY(-50%) rotate(90deg);
        color: var(--color-primary);

    }

    .footer-heading.active .footer-title::after {
        transform: translateY(-50%) rotate(90deg) scaleX(-1);
    }

    .footer-heading {
        margin-bottom: 0;
    }

    .footer-title.active::after {
        -webkit-transform: rotate(90deg);
        -moz-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        -o-transform: rotate(90deg);
        transform: rotate(90deg);
    }

    .footer-content {
        display: none;
    }

    .footer-col-title {
        margin-bottom: 0;
    }

    .footer-col.footer-col-1 {
        max-width: initial;
    }

    .footer-col-3 .footer-payment .footer-title::after {
        display: none;
    }

    .basket-table .shop-product-price-net,
    .basket-table .shop-product-price-gross {
        float: none;
    }

    .basket-table .price-net,
    .basket-table .price-gross {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-direction: row;
    }

    .basket-table .input-price.form-control {
        max-width: 120px;
        height: 38px;
    }


    .basket-table td:not(.product-column-price) .shop-update-basket .input-tax-rate {
        height: 38px;
    }


    .shop-product-box {
        padding: 22px 10px;
    }

    .products-slider-normal {
        margin-bottom: calc(var(--space-60) + 20px);
    }

    /* header */
    .header-middle-inner {
        gap: 0;
    }

    /* footer */
    .footer-logoBox {
        margin: var(--space-40) auto;
    }

    .footer-title + .icon {
        display: none;
    }

    /* header main-page */
    .section-related-inner {
        margin: -10px;
    }

    /* sliders */
    .product-content-bottom-inner {
        padding: 10px calc(var(--space-25) - 12px);
    }

    /* main about */
    .main-about-logoBox {
        margin-left: calc(var(--space-60) * 2.5);
    }

    /* logotypes footer */
    .logotypes-link-more {
        display: block;
    }

    /* contact */
    .contact-bottom .contact-form-container {
        width: 85%;
    }

    .people-group:nth-child(3) {
        margin-top: 400px;
    }

    /* o nas - page */
    .page-item-content {
        padding: var(--space-60) 0;
    }

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

    header {
        background-color: #fff;
    }

    .search-group .aside {
        width: 280px;
    }

    .shop-product-offer-box-content-item .title {
        margin-right: 15px;
    }

    .shop-product-offer-box-content-item:nth-child(2) {
        width: 23%;
    }

    .shop-product-offer-box-content-item:nth-child(4) {
        width: 26%;
    }

    .shop-product-offer-box-top-item:nth-child(2) {
        width: 23%;
    }

    .shop-product-offer-box-top-item {
        padding: 10px 15px;
    }

    .btn.only-mobile {
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .basket-table td.product-info-box {
        width: 100%;
    }

    /*.basket-table .price-gross .caption,*/
    /*.basket-table .price-net .caption {*/
    /*    display: none;*/
    /*}*/
    .basket-table .input-margin {
        padding: 4px;
    }
}

@media screen and (max-width: 1000px) {
    .main-about-logoBox {
        margin-left: calc(var(--space-60));
    }

    .people-left {
        grid-column: 1;
        grid-row: 1;
    }

    .people-group:nth-child(3) {
        grid-column: 1;
        margin-top: 430px;
    }

    .people-group:last-of-type {
        grid-column: 2;
        margin-top: 400px;
        margin-bottom: 40px;
    }

    .products-slider-wrapper {
        flex-direction: column-reverse;
    }

    .products-slider-wrapper .products-slider-big-inner.has-image,
    .products-slider-image,
    .products-slider-image img {
        width: 100%;
    }

    .products-slider-image {
        border-left: 0;
    }

    .products-slider-image img {
        height: 300px;
    }
}

@media screen and (max-width: 900px) {
    .flex-row.align-start.my-60 {
        flex-direction: column-reverse;
        gap: var(--space-25);
    }

    .flex-row .flex-row-btns {
        width: 100%;
    }

    .news-row-right {
        width: 100%;
        justify-content: flex-start;
    }

    .news-item-label {
        font-size: 13px;
    }

    /*header .menuList {*/
    /*    grid-template-columns: repeat(3, 33.3333%);*/
    /*}*/
    header .menuList > li:nth-last-of-type(-n + 4) > .menuList-group {
        border-bottom: unset;
    }

    header .menuList > li:nth-last-of-type(-n + 3) > .menuList-group {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

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

    .page-item-title {
        font-size: 20px;
    }

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

    .news-item,
    .main-news .news-item:nth-of-type(even) {
        flex-direction: column-reverse;
    }

    .news-item-content,
    .main-news .news-item:nth-of-type(even) .news-item-content {
        width: 100%;
        padding: var(--space-50) 0;
    }

    .news-item-image,
    .main-news .news-item:nth-of-type(even) .news-item-image {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }

    .main-about-inner {
        align-items: center;
        flex-direction: column;
        gap: var(--space-50);
    }

    .main-about-left {
        width: 100%;
        padding-right: 0;
        max-width: 560px;
    }

    .main-about-right {
        width: 100%;
    }

    .logotype-slider:not(.slick-initialized) .logotype-slider-col:nth-of-type(n + 6) {
        display: none;
    }

    .logotype-slider-col {
        width: 20%;
    }

    .category-item {
        width: 33.3333%;
    }

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

    .main-slide-teaser {
        font-size: 14px;
    }

    .header-bottom-right > .user-nav {
        display: none;
    }

    .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-box,
    .asidedPage-content .shop-product-box {
        width: 33.3333%;
    }

    .people-group {
        gap: var(--space-40);
    }

    .contact-item {
        font-size: 14px;
    }

    .people-group:after {
        left: calc(165px + var(--space-40));
    }

    .people-item-top {
        min-height: 56px;
    }

    .contact-item .icon {
        width: 19px;
    }

    .footer-middle-inner {
        display: block;
    }

    .footer-middle-text {
        max-width: 100%;
        padding-right: 0;
        padding-bottom: 15px;
    }

    .footer-payment {
        width: 100%;
    }


    /* main about */
    .main-about-up {
        flex-direction: column;
        gap: 20px;
    }

    .main-about-logoBox {
        margin: 0;
    }

    .main-about-innerTextBox {
        width: 100%;
    }

    /* contact */
    .contact-bottom .contact-form-container {
        width: 100%;
    }

    /* o nas */
    .page-item,
    .page-item:nth-of-type(even) {
        flex-direction: column;
    }

    .page-item:nth-child(odd) .page-item-text, .page-item-title {
        margin-left: 0;
    }

    .page-item:nth-child(even) .page-item-text {
        margin-right: 0;
    }

    .page-item-image {
        width: 75%;
    }

    .page-item {
        margin-bottom: var(--space-60);
    }

    .page-item-content {
        padding: 0;
        margin-bottom: var(--space-40);
    }

    .collection-list {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .collection-list-item-icon {
        width: 15%;
    }

    .collection-list-item:nth-child(even) {
        background-color: #F5F5F5;
        border-left: 1px solid rgba(0, 0, 0, .1);
    }

    .collection-list-item:nth-child(odd) {
        background-color: #fff;
    }


    .gallery-list-item {
        width: auto;
        padding: 6px;
    }

    /* product list */
    .shop-category .page-title {
        margin-bottom: calc(var(--space-50) + 5px);
    }

    .shop-category .heading-top {
        margin-bottom: calc(var(--space-50) + 5px);
    }

    .shop-category .breadcrumb-container {
        margin-bottom: var(--space-60);
    }

    .product-horizontal .product-box-info {
        flex-direction: column;
        width: 100%;
    }

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

    /* podgląd produktu */
    .product-view-content {
        flex-direction: column;
    }

    .product-photo {
        width: 75%;
        margin: 0 auto;
        margin-bottom: var(--space-50);
    }

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

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

    .product-view-description {
        width: 100%;
        margin-bottom: var(--space-40);
    }

    .product-view-description + .product-params-wrapper {
        padding-left: 0;
    }

    .files-section,
    .product-params-wrapper {
        width: 100%;
    }

    /* product series */
    .product-series .product-content-right {
        /*padding-right: 0;*/
        /*padding-left: var(--space-25);*/
        padding: 0 var(--space-25);
    }

    .shop-product-tab-wrapper {
        width: 25%;
    }

    .product-list, .shop-product-list {
        margin: -5px;
    }

    .shop-product-box {
        padding: 15px 5px;
    }

    .product-content-top {
        padding: 0;
    }
}

@media screen and (max-width: 767px) {
    /*#product-form .section-title .fa{*/
    /*    display: block;*/
    /*    margin-left: 10px;*/
    /*}*/
    /*.form-inner-wrapper {*/
    /*    display: none;*/
    /*}*/
    .product-view-content h1.section-title {
        margin-bottom: 15px;
    }

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

    .products-slider-big .section-related-inner:not(.slick-initialized) .shop-product-box:nth-of-type(n + 4) {
        display: none;
    }

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

    .products-slider-normal .section-related-inner:not(.slick-initialized) .shop-product-box:nth-of-type(n + 4) {
        display: none;
    }


    .aside-button {
        width: 38px;
        height: 38px;
    }

    .header-bottom-inner {
        gap: 0;
    }

    .page-item-image {
        width: 100%;
    }

    .logotype-slider:not(.slick-initialized) .logotype-slider-col:nth-of-type(n + 5) {
        display: none;
    }

    .logotype-slider-col {
        width: 25%;
    }


    .btn.btn-lg.btn-header-offer {
        display: none;
    }

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

    .people-group:after {
        display: none;
    }

    .people-group + .people-group {
        margin-top: var(--space-50);
    }

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

    .contact-bottom .contact-form-container {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .contact-bottom {
        display: block;
    }

    .pull-left.basket-btns-left-wrapper {
        float: none !important;
    }

    .basket-btns-right-wrapper {
        margin-bottom: 10px !important;
        width: 100%;
    }


    /* main about */
    .main-about-slider-cards.slick-initialized .slick-slide {
        display: flex;
        align-items: center;
    }

    .contact-form-container .controls.captcha-container .row .col-xs-12:first-child {
        width: 30%;
        min-width: 210px;
    }

    .main-about-slider-cards.slick-initialized .slick-slide {
        border: 0;
    }

    /* contact */
    .people-list {
        grid-template-columns: repeat(1, 1fr);
        margin-bottom: var(--space-50);
    }

    .people-left,
    .people-group:nth-child(2),
    .people-group:nth-child(3),
    .people-group:nth-child(4) {
        /*margin: 0 auto;*/
        /*width: 100%;*/
        /*max-width: 355px;*/
        grid-column: auto;
        grid-row: auto;
    }

    .people-group:last-of-type,
    .people-group:nth-child(3) {
        margin-bottom: 0;
    }

    .people-group:nth-child(2) .people-group-content .people-item:nth-child(2),
    .people-group:nth-child(2) .people-group-content .people-item:last-child,
    .people-group:last-of-type .people-group-content .people-item:nth-child(2) {
        margin-top: 0;
    }

    /* product list */
    .product-content-buttons {
        flex-direction: column;
    }

    .product-content-buttons .btn {
        width: 100%;
    }

    .product-horizontal .product-actions {
        justify-content: flex-start;
    }

    .price-gross {
        flex-direction: column;
    }

    .asidedPage-content .shop-product-box {
        padding: 10px 4px;
    }

    /* product series */
    .product-series .product-content-right {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }

    .product-series .product-box-info-item a,
    .product-series .product-box-info-item {
        flex-wrap: wrap;
    }

    .shop-product-tab {
        font-size: 12px;
    }

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

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

@media screen and (max-width: 639px) {
    .mainsearch .ui-menu .ui-menu-item-wrapper {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .mainsearch .ui-menu .ui-menu-item-wrapper > a {
        width: 100% !important;
    }

    .search-product-price {
        margin-left: 0;
    }

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

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

    .products-slider-big .section-related-inner:not(.slick-initialized) .shop-product-box:nth-of-type(n + 3) {
        display: none;
    }

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

    .products-slider-normal .section-related-inner:not(.slick-initialized) .shop-product-box:nth-of-type(n + 3) {
        display: none;
    }

    .main-slide-bg img,
    .main-slider-video::before {
        min-height: 300px;
    }

    .main-slide-content {
        position: relative;
        flex-direction: column;
    }

    .main-slide-bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 300px;
    }

    .main-slider-inner .slick-dots {
        bottom: unset;
        top: calc(300px - var(--space-40) - 26px);
    }

    .main-slide-product {
        height: 300px;
        width: 100%;
    }

    .main-slide-text {
        height: unset;
        width: 100%;
    }

    .category-item {
        width: 50%;
    }

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

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

    .people-item-top {
        min-height: initial;
    }

    .contact-info {
        display: block;
    }

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

    .main-slider-video::before {
        padding-top: 53%;
    }

    /* contact */
    .contact-form-container .form.contact-form div:nth-child(3) {
        flex-direction: column;
    }

    .contact-form-container .controls.captcha-container .row .col-xs-12:first-child,
    .contact-form-container .controls.captcha-container .row .col-xs-12:last-of-type {
        width: 100%;
    }

    /* o nas - page about */
    .gallery-list {
        grid-template-columns: repeat(2, 1fr);
    }

    /* product list */
    .product-horizontal .product-actions .shop-add-to-basket {
        margin-left: 0;
    }

    .product-horizontal .product-actions .btn {
        width: 100%;
        min-width: auto !important;
    }

    .product-horizontal .product-actions .btn .icon {
        flex-shrink: 0;
    }

    /* aside-filter product list */
    .filter-aside .btn-close {
        top: 8px;
    }
}

@media screen and (max-width: 560px) {
    .newsletter-input-wrapper > .btn {
        padding: 10px;
        gap: 10px;
        font-size: 11px;
    }

    .page-title {
        font-size: 34px;
    }

    .news-item-title {
        font-size: 17px;
    }

    .main-about-line1 {
        font-size: 17px;
    }

    .text {
        font-size: 15px;
    }

    .logotype-slider:not(.slick-initialized) .logotype-slider-col:nth-of-type(n + 4) {
        display: none;
    }

    .logotype-slider-col {
        width: 33.3333%;
    }

    .text {
        word-wrap: break-word;
    }

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

    /* main about */
    .main-about-text.text {
        font-size: 14px;
    }

    /* podgląd produktu */
    .shop-product-offer-box-bottom,
    .product-param-item {
        flex-direction: column;
    }

    .product-param-item {
        border-bottom: 1px solid rgba(0, 0, 0, .1);
        margin-bottom: var(--space-40);
    }

    .product-param-item .product-param-item-value {
        font-weight: bold;
    }

    .product-param-item-name,
    .product-param-item-value {
        width: 100%;
    }

    /* product list */
    .pagination-wrapper ul {
        padding: 0 var(--space-40);
    }

    /* product series */
    .product-series .product-container {
        flex-direction: column;
    }

    .product-series .product-image {
        width: 100%;
        border: 0;
    }

    .product-series .product-content-left {
        width: 100%;
    }

    .product-series .product-content-right {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        padding: var(--space-40);
        border: 0;
    }

    .product-series .product-box-info-item + .product-box-info-item {
        padding-left: 0;
    }

    .product-series .product-box-info {
        gap: 5px;
        justify-content: space-around;
        padding-right: 0;
    }

    .shop-product-tab-wrapper {
        width: 33.3333%;
    }

    .basket-table .input-price.form-control {
        max-width: 85px;
        width: initial;
    }
}

@media screen and (max-width: 480px) {
    .logo {
        top: 0;
        margin-bottom: 0;
        width: 110px;
    }

    .section-title + .products-slider-arrows {
        min-width: unset;
    }

    .news-row-right #filter-form .form-element-container {
        width: calc(100% - 26px);
    }

    #filter-form {
        width: 100%;
    }

    .modal-footer > .btn {
        width: 100%;
    }

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

    /* header main-page */
    .shop-category-list.category-list-slider .category-item {
        min-width: 100px;
        flex: 1 1 45%;
    }

    /* sliders */
    .products-slider-normal:nth-child(even) .products-slider-big-inner.has-image .shop-product-box .product-container {
        border-right: 0;
        border-left: 1px solid rgba(0, 0, 0, .1);
    }


    /* main about */
    .main-about-slider-up h3 {
        font-size: calc(var(--font-24) + 4px);
    }

    /* contact */
    .controls.captcha-container .row {
        flex-direction: column;
    }

    /* o nas - page */
    .collection-list-item-up {
        gap: 20px;
    }

    /* product list */
    .product-content-buttons {
        display: none;
    }

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

    .heading-top .btn.btn-lg.filter-toggle {
        width: 100%;
    }

    .product-horizontal .product-container {
        flex-direction: column;
    }

    .product-horizontal .product-image,
    .product-horizontal .product-content-left,
    .product-horizontal .product-content-right,
    .product-horizontal .product-actions .shop-add-to-basket,
    .product-horizontal .product-actions .btn {
        width: 100%;
    }

    .product-horizontal .product-box-info {
        flex-direction: row;
    }

    .product-horizontal .product-box-info-item {
        width: 50%;
    }

    .shop-sort-form.form,
    .shop-sort-form.form .shop-sort,
    .shop-sort-form.form .form-element,
    .shop-sort-form.form .form-element-wrapper {
        width: 100%;
    }

    .product-actions {
        align-items: center;
        flex-wrap: wrap;
        gap: 7px;
    }

    .product-actions .shop-add-to-basket {
        margin-left: 0;
    }

    .product-horizontal .product-image,
    .product-horizontal .product-content-left {
        border: 0;

    }

    /* podgląd produktu */
    .shop-product-offer-box-top {
        display: none;
    }

    .shop-product-offer-box-content {
        width: 100%;
        margin-bottom: 20px;
    }

    .shop-product-offer-box-top,
    .shop-product-offer-box-content-element {
        flex-direction: column;
    }

    .shop-product-offer-box-top-item {
        display: flex;
        align-items: center;
    }

    .shop-product-offer-box-content-item:nth-child(1),
    .shop-product-offer-box-content-item:nth-child(2),
    .shop-product-offer-box-content-item:nth-child(3),
    .shop-product-offer-box-content-item:nth-child(4) {
        width: 100%;
        padding: 0;
        justify-content: center;
        border: 0;
    }

    .shop-product-offer-box-content-element {
        gap: 5px;
        border: 1px solid rgba(0, 0, 0, .1);
    }

    .shop-product-offer-box-content-item:last-child {
        padding: 0;
        border-bottom: none;
    }

}

@media screen and (max-width: 420px) {
    .header-bottom-right {
        gap: 5px;
    }

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

    .main-box-title {
        font-size: 22px;
    }

    .main-box-text {
        font-size: 16px;
    }

    .main-box-content {
        padding: var(--space-40);
    }

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

    .products-slider-big .section-related-inner:not(.slick-initialized) .shop-product-box:nth-of-type(n + 2) {
        display: none;
    }

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

    .products-slider-normal .section-related-inner:not(.slick-initialized) .shop-product-box:nth-of-type(n + 2) {
        display: none;
    }


    .logotype-slider:not(.slick-initialized) .logotype-slider-col:nth-of-type(n + 3) {
        display: none;
    }

    .logotype-slider-col {
        width: 50%;
    }


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

    .product-photo {
        width: 100%;
    }

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

    .product-box-offer-right {
        width: 100%;
        margin-top: 15px;
    }

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

    .people-item {
        width: 100%;
    }

    .contact-info-right .contact-list {
        font-size: 18px;
    }

    .contact-line {
        font-size: 42px;
    }

    .footer-payment {
        display: block;
    }

    .footer-middle-inner .footer-title {
        margin-bottom: 10px;
    }

    /* logotypes footer */
    .section-heading {
        flex-direction: column;
    }

    /* main about */
    .main-about-slider-up {
        flex-direction: column;
        gap: 15px;
    }

    /* product list */
    .pagination-wrapper ul li.next a .icon, .pagination-wrapper ul li.prev a .icon {
        width: 20px;
    }

    /* aside-filter product list */
    .filter-aside {
        width: 90%;
        top: 21%;
    }

}

@media screen and (max-width: 360px) {
    .category-item {
        width: 100%;
    }
}

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