@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) {
    header .login-form {
        display: none;
    }

    .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 {
    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 var(--container-padding);
    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 var(--color-border-deafult);
    background-color: #fff;
    transition: all 0.4s;
    border-radius: 0;
}

.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);
    border-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) {
    .aside-page-row {
        gap: var(--space-40);
    }

    @media screen and (min-width: 1140px) {
        .aside-page-content .shop-product-box {
            width: 33.3333%;
        }
    }

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

    .product-box-container {
        padding: calc(var(--space-60) + 6px) var(--space-25) var(--space-25) var(--space-25);
    }

    .main-top-icon-item .text {
        font-size: 14px;
    }
}

@media screen and (max-width: 1440px) {
    .header-categories > ul > li > .menu-group > a{
        min-height: 50px;
    }

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

    .shop-product-view .product-slider-section .shop-product-box {
        padding: 0 9px;
    }

    .shop-product-view .product-slider-section .product-slider {
        width: calc(100% + 18px);
        margin: 0 -9px;
    }

    .category-item-name{
        font-size: 16px;
    }

    .category-item-image {
        height: 136px;
    }

    .footer-top-inner .social-list {
        margin-left: 10.625vw;
    }

    .category-section-aside {
        width: 260px;
    }

    .category-section-content .category-list {
        width: calc(100% - 260px - (var(--space-40) + 5px));
    }

    .category-section-content .category-item-name {
        font-size: 14px;
    }

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

    .main-top-icon-item .icon-wrapper {
        width: 32px;
    }

    .main-top-icons {
        gap: var(--space-25);
    }

    #main-menu > ul > li > a {
        font-size: 14px;
        padding: 0 calc(var(--space-40) - 5px);
    }

    .mainsearch {
        width: 440px;
    }

    .header-top-inner {
        font-size: 14px;
        height: 46px;
    }

    .btn-lg.btn-header-offer {
        min-height: 50px;
    }

    .user-nav-item-inner {
        font-size: 14px;
    }

    #content {
        padding-top: 193px;
    }

    .header-top-right {
        gap: var(--space-40);
    }

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

@media screen and (max-width: 1280px) {
    .category-list{
        grid-template-columns: repeat(4, 1fr);
    }

    @media screen and (min-width: 1140px) {
        .aside-page-content .shop-product-box {
            width: 50%;
        }
    }

    .category-section-content .category-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-box-bottom .price-box > .price-net .price:not(.price-old) {
        font-size: 16px;
    }

    .product-box-bottom .price-box > .price-gross .price:not(.price-old) {
        font-size: 12px;
    }

    .main-top-icon-item .text {
        font-size: 13px;
    }

    .header-top-contact-link {
        font-size: 14px;
    }

    .header-top-contact-link .icon {
        width: 14px;
    }

    .mainsearch {
        width: 360px;
    }

    .header-bot-inner {
        gap: var(--space-25);
    }

    #main-menu > ul > li > a {
        padding: 0 var(--space-25);
    }

    .btn-lg.btn-header-offer {
        width: 250px;
        font-size: 14px;
        gap: 15px;
        padding: 10px 15px;
    }

    .main-top-categories > ul > li > .menu-group > a {
        font-size: 14px;
    }

    .main-top-categories {
        width: 250px;
    }

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

    .header-top-right {
        gap: var(--space-25);
    }

    .user-nav-item-inner {
        font-size: 13px;
    }

    .user-nav-item-inner > .icon-wrapper {
        width: 14px;
    }

    .basket-box-btn .caption {
        min-width: 80px;
    }

    .product-box-bottom-right .btn {
        width: 40px !important;
        height: 40px !important;
    }
}

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

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

@media screen and (max-width: 1139px) {
    .shop-product-view-row {
        flex-direction: column;
        align-items: center;
    }

    .product-view-left {
        width: 100%;
        max-width: 600px;
    }

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

    .product-view-basket-container-info {
        justify-content: flex-start;
        gap: var(--space-25);
    }

    .shop-product-view-row + .shop-product-view-row .product-view-left {
        max-width: unset;
    }

    .btn-aside-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        position: fixed;
        top: 250px;
        left: 0;
        z-index: 6;
        background-color: var(--color-primary);
        border: none;
        color: #fff;
        transition: all .2s ease-in-out;
    }

    .btn-aside-toggle.active .icon:not(.icon-close),
    .btn-aside-toggle:not(.active) .icon-close {
        display: none;
    }

    .aside-shadow {
        display: block;
        position: fixed;
        left: 294px;
        top: 134px;
        right: 0;
        z-index: 4;
        transition: all .2s ease-in-out;
        bottom: 0;
        opacity: 0;
        pointer-events: none;
        background-color: rgba(42, 42, 42, 0.4);
    }

    .aside {
        position: fixed;
        z-index: 5;
        top: 134px;
        left: -294px;
        bottom: 0;
        background-color: #fff;
        transition: all .2s ease-in-out;
        overflow: auto;
    }

    .aside-title {
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase;
        color: #000;
        padding: var(--container-padding);
    }

    .aside-list > li > .menu-group > a {
        min-height: 50px;
    }

    .aside.active {
        left: 0;
    }

    .btn-aside-toggle.active {
        left: 314px;
    }

    .aside::-webkit-scrollbar {
        width: 3px;
    }

    .aside::-webkit-scrollbar-track {
        background: var(--color-border-deafult);
    }

    .aside::-webkit-scrollbar-thumb {
        background: var(--color-primary);
    }

    /* Styl dla przeglądarki Firefox */
    @-moz-document url-prefix() {
        .aside {
            scrollbar-width: thin;
            scrollbar-color: var(--color-primary) var(--color-border-deafult);
        }
    }

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

    .about-collection-item {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .about-collection-item-content {
        width: 100%;
    }

    .about-collection-item + .about-collection-item {
        border-top: 1px solid rgba(0, 0, 0, 0.2);
    }

    .about-collection-item + .about-collection-item.has-image {
        padding-top: calc(var(--space-60) + 10px);
    }

    .about-collection-item-image {
        width: 100%;
        margin: 0 !important;
        max-width: 700px;
        order: -1 !important;
    }

    .footer-top-inner {
        flex-direction: column;
        gap: var(--space-40);
    }

    .footer-top-inner .social-list {
        margin-left: 0;
        gap: 10px var(--space-60);
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

    .footer-col-heading .icon {
        transition: all .2s linear;
        filter: brightness(0) invert(1);
    }

    .footer-col-heading.active .icon {
        transform: scaleY(-1);
    }

    .footer-col-pad {
        grid-template-columns: repeat(4, 1fr);
    }

    .text {
        font-size: 14px;
    }

    .main-about-inner {
        grid-template-columns: 1fr 1fr;
    }

    .category-section-aside-inner ul li a {
        font-size: 13px;
    }

    .category-section-aside {
        width: 230px;
    }

    .category-section-content .category-list {
        width: calc(100% - 230px - (var(--space-40) + 5px));
    }

    .category-section-aside > .btn {
        font-size: 13px;
    }

    .category-section-aside > .btn .icon {
        display: none;
    }

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

    .category-item {
        padding: var(--space-25);
    }

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

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

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

    #content {
        padding-top: 134px;
    }

    .header-top-right > .social-list {
        display: none;
    }

    .mainsearch {
        width: 100%;
    }

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

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

    .basket-box-btn,
    .basket-icon {
        color: #000;
    }

    .header-top-right > .only-rwd > .basket-box .basket-icon {
        padding: 0;
        width: 24px;
        height: unset;
    }

    .header-bot {
        display: none;
    }

    .header-mid-inner {
        display: flex;
        justify-content: space-between;
        gap: 15px;
    }

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

    .mainsearch input.form-control {
        height: 46px;
    }

    .mainsearch-submit {
        color: #fff;
        background-color: var(--color-primary);
    }

    .mainsearch.rwdPanel .dropdown-menu {
        position: static !important;
        width: 100%;
        box-shadow: none;
    }

    .mainsearch.rwdPanel .mainsearch-search,
    .mainsearch.rwdPanel .dropdown-menu {
        padding: 15px;
    }

    .mainsearch.rwdPanel .dropdown-menu .dropdown-search-li.all-search-results {
        margin-top: 15px;
    }

    .mainsearch.rwdPanel .form-element-container {
        width: calc(100% - 46px);
        flex-grow: 0;
    }

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

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

@media screen and (max-width: 900px) {
    .files-list{
        grid-template-columns: 1fr;
    }

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

    .category-item-image {
        height: 100px;
    }

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

    .news-item:not(.swiper-slide):nth-of-type(even) .news-item-image {
        order: 2;
    }

    .news-item {
        width: 50%;
    }

    .main-about-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .main-about-image {
        max-width: 550px;
    }

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

    .category-section-images-list {
        gap: var(--space-25);
        grid-template-columns: repeat(6, auto);
    }

    .category-section-content .category-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-top-icons {
        grid-template-columns: auto auto;
        justify-content: space-evenly;
    }

    .main-top-icon-item {
        justify-content: flex-start;
    }

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

@media screen and (max-width: 767px) {
    .shop-product-view .section-heading{
        display: flex;
    }

    .shop-product-view .section-heading:before{
        content: none;
    }

    .product-param-item {
        grid-template-columns: 1fr 1fr;
    }

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

    .contact-page-deco {
        display: none;
    }

    .category-section-aside {
        align-self: center;
        width: 100%;
        max-width: 300px;
        max-height: 400px;
    }

    .category-section-aside > .btn .icon {
        display: flex;
    }

    .category-section-content .category-list {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }

    .category-section-content {
        flex-direction: column;
    }

    .category-section-aside-inner {
        position: static;
        inset: unset;
    }

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

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

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

@media screen and (max-width: 639px) {
    .product-param-item{
        font-size: 14px;
    }

    .product-view-basket-container {
        flex-direction: column;
    }

    .product-view-basket-container-right {
        padding-left: 0;
        width: 100%;
        max-width: 300px;
    }

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

    .checkboxradio-container > .row > .col-xs-4 + .col-xs-4{
        margin-top: 5px;
    }

    .category-list {
        grid-template-columns: 1fr 1fr;
    }

    .aside-page-row-heading{
        flex-direction: column;
        align-items: flex-start;
    }

    .filter-form-content{
        right: unset;
        left: 4px;
    }

    .aside-shadow,
    .aside {
        top: 126px;
    }

    .footer-col-pad {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-item:not(.swiper-slide):nth-of-type(even) .news-item-image {
        order: unset;
    }

    .news-item {
        width: 100%;
        grid-template-rows: auto auto;
    }

    .main-boxes-section-inner {
        grid-template-columns: 1fr;
    }

    .main-slider-item-content {
        padding: var(--space-50);
    }

    .header-top-inner {
        font-size: 12px;
    }

    #content {
        padding-top: 127px;
    }

    .logo {
        width: 145px;
    }

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

@media screen and (max-width: 560px) {
    .pagination-wrapper ul li a, .pagination-wrapper ul li span {
        font-size: 13px;
        padding: 5px;
    }

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

    .contact-page-top {
        grid-template-columns: 1fr;
    }

    .main-about-logotypes {
        grid-template-columns: repeat(3, auto);
    }

    .category-section-images-list {
        grid-template-columns: repeat(3, auto);
    }

    .category-section-content .category-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .header-top-right > .header-top-contact-link {
        display: none;
    }

    .text {
        word-wrap: break-word;
        font-size: 14px;
    }

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

@media screen and (max-width: 480px) {
    .file-item{
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
        padding: calc(var(--space-25) + 10px) var(--space-60);
    }

    .file-item .btn{
        margin-left: 0;
    }

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

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

@media screen and (max-width: 420px) {
    .category-list {
        grid-template-columns: 1fr;
    }

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

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

@media screen and (max-width: 380px) {
    .aside {
        width: 260px;
    }

    .aside-shadow {
        left: 0;
    }

    .btn-aside-toggle.active {
        left: 272px;
    }

    .aside .menu-group > a {
        gap: 12px;
    }

    .aside-list > li > ul > li > .menu-group > a {
        font-size: 12px;
    }

    .aside-list > li > .menu-group > a {
        font-size: 13px;
    }
}

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