@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%);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
    }

    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 .offer-menu-list li.slided:not(.has-submenu) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

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

.rwdMenu > ul > li > ul {
    font-size: 0.875rem;
}

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

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

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

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

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

.rwdMenu li > *:first-child > .fa,
.rwdMenu li > *:first-child > .icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 22px;
    flex-shrink: 0;
    margin: -9px 6px -9px -9px;
}

.rwdMenu li > *:first-child > .icon img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.rwdMenu li > *:first-child > .caption {
    flex: 1 0 0;
}

.rwdMenu li > *:first-child > .caption * {
    display: inline-block;
}

.rwdMenu li > *:first-child > .caption ~ * {
    margin-left: 10px;
}

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

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

.cloneMenu-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 46px;
    padding: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    background: rgba(0, 0, 0, 0.06);
}

.cloneMenu-toggle::before {
    content: "\f107";
    display: block;
    font-family: 'FontAwesome', sans-serif;
    transition: all 0.3s;
}

.cloneMenu-toggle.active::before {
    transform: rotateZ(180deg);
    -webkit-transform: rotateZ(180deg);
    -ms-transform: rotateZ(180deg);
}

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

/**
 * RWD BUTTON
 */

.rwdButton {
    float: right;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    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: #f00;
}

.rwdButton .animIcon--close span {
    background-color: #fff;
}

.rwdButton:not(.active) > .animIcon--close {
    transform: scale(0.4);
    -webkit-transform: scale(0.4);
    -ms-transform: scale(0.4);
}

.rwdButton.active > .animIcon--close {
    opacity: 1;
}

.rwdButton.active > .animIcon--close ~ * {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
}

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

@media screen and (max-width: 1600px) {
    .contact-form-deco.contact-form-deco--left {
        left: 5.0208vw;
    }

    .contact-form-deco.contact-form-deco--right {
        right: 5.0208vw;
    }

    .subpage .about-section-deco.about-section-deco--chicken,
    .about-section-deco.about-section-deco--chicken {
        left: -4.575vw;
    }

    .main-category-item-title {
        font-size: 15px;
    }
}

@media screen and (max-width: 1440px) {
    .asidedPage-content {
        padding-left: calc(2 * var(--space-50) - 10px);
    }

    .aside-menu > ul > li > .menuList-group > a:last-child {
        padding: 10px 20px;
    }

    .aside-menu > ul > li > .menuList-group > a {
        padding: 10px 15px 10px 20px;
    }

    .aside-menu > ul > li > ul > li > .menuList-group a {
        padding: 10px 15px 10px 30px;
    }

    .aside-menu > ul > li > ul > li > .menuList-group a:last-child {
        padding: 10px 30px;
    }

    .aside-menu > ul > li > ul > li > ul {
        padding: 30px 30px 30px 50px;
    }

    .aside {
        width: 350px;
    }

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

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

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

    .contact-top-tiles-section {
        grid-template-columns: 3fr 1.2fr;
    }

    .icon-text-item {
        flex-direction: column;
    }

    .section-title {
        font-size: 40px;
    }

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

    #main-menu ul {
        gap: var(--space-50);
    }

    .mainsearch {
        width: 480px;
    }

    .footer-col-title {
        font-size: 19px;
    }

    .footer-logo {
        width: 260px;
    }

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

@media screen and (max-width: 1280px) {
    .product-basket-box-right > .btn {
        gap: 10px;
        padding-left: 10px;
        padding-right: 10px;
        font-size: 13px;
    }

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

    .contact-form-deco.contact-form-deco--left {
        left: 3.5208vw;
    }

    .contact-form-deco.contact-form-deco--right {
        right: 3.5208vw;
    }

    .logotype {
        width: 25%;
    }

    .footer-col-content ul li a {
        font-size: 14px;
    }

    .main-category-item-title {
        font-size: 13px;
    }

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

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

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

    .mainsearch {
        width: 350px;
    }
}

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

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

@media screen and (max-width: 1139px) {
    .section-title {
        font-size: 35px;
    }

    .product-page-top-inner {
        flex-direction: column;
        gap: var(--space-50);
    }

    .product-page-photo {
        max-width: 550px;
        width: 100%;
        align-self: center;
    }

    .product-basket-box-right {
        max-width: 300px;
    }

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

    .aside-toggle-btn {
        display: flex;
        width: 30px;
        height: 30px;
        position: fixed;
        top: 250px;
        left: 0;
        z-index: 6;
        background-color: var(--color-secondary);
        color: #fff;
        transition: all .2s ease-in-out;
    }

    .aside-toggle-btn .icon {
        position: absolute;
        inset: 5px;
        transition: all .2s ease-in-out;
    }

    .aside-toggle-btn .icon.icon--burger {
        opacity: 1;
    }

    .aside-toggle-btn .icon.icon--close {
        opacity: 0;
    }

    .aside-toggle-btn.active .icon.icon--burger {
        opacity: 0;
    }

    .aside-toggle-btn.active .icon.icon--close {
        opacity: 1;
    }

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

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

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

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

    .aside.active {
        left: 0;
    }

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

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

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

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

    .filter-form-title,
    .aside-title {
        padding-left: var(--container-padding);
    }

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

    .asidedPage-content {
        padding-left: 0;
    }

    .mainsearch {
        width: 100%;
    }

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

    .contact-top-tiles-image {
        display: none;
    }

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

    .footer-col-content-payments {
        display: flex;
        flex-wrap: wrap;
        gap: var(--space-25) var(--space-60);
    }

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

    .footer-cols {
        grid-template-columns: 1fr;
    }

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

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

    .about-section-deco {
        display: none;
    }

    .icon-text-item {
        flex-direction: row;
    }

    .icon-text-section-inner {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .heading-buttons {
        gap: var(--space-25);
    }

    .btn-square {
        width: 40px;
        height: 40px;
    }

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

    .heading-buttons > .btn-discount {
        font-size: 13px;
    }

    .main-slide-right {
        width: 320px;
    }

    .header-bottom {
        display: none;
    }

    #content {
        padding-top: 89px;
    }

    .header-top .user-nav-item-inner {
        width: 40px;
        height: 40px;
    }

    .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.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: 100%;
    }

    .mainsearch.rwdPanel .mainsearch-submit {
        /*height: 46px;*/
        right: 14px;
        top: 14px;
        bottom: 14px;
    }

    .mainsearch input.form-control {
        padding: 5px 30px 5px 15px;
    }

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

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

    .product-list {
        margin: calc(var(--space-60) - 6px) -6px;
    }

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

    .variant-item-inner {
        min-width: 38px;
        padding: 8px 8px;
    }

    .file{
        width: 50%;
    }

}

@media screen and (max-width: 900px) {
    .contact-tile {
        font-size: 14px;
    }

    .logotypes-title {
        width: 25%;
    }

    .logotypes-slider-container {
        width: calc(2 * var(--space-50) + 75%);
    }

    .section-title {
        font-size: 32px;
    }

    .icon-text-item {
        flex-direction: column;
    }

    .main-categories-inner {
        display: grid;
        grid-template-columns: 1fr;
        align-items: center;
        gap: var(--space-60);
    }

    .main-categories-title {
        writing-mode: unset;
        text-orientation: unset;
        transform: rotate(0);
    }

    .main-slide-right {
        display: none;
    }

    .main-slide {
        display: flex;
        align-items: center;
    }

    .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) {
    .product-form-top-image{
        display: none;
    }

    .product-form {
        padding: var(--space-60) var(--space-60) var(--space-40) var(--space-60);
    }

    .param-row {
        font-size: 14px;
        padding: 15px;
    }

    .product-basket-box-left .shop-product-price .price-gross .price:not(.price-old) {
        font-size: 32px;
    }

    .filter-form-title,
    .aside-title,
    .page-title.page-title-sm {
        font-size: 25px;
    }

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

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

    .header-top-right {
        gap: 10px;
    }

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

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

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

@media screen and (max-width: 639px) {
    .product-set-items-list {
        display: grid;
        flex-wrap: wrap;
        grid-template-columns: 1fr 1fr;
    }

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

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

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

    .logotypes-section-inner {
        flex-direction: column;
        gap: var(--space-60);
    }

    .logotypes-title {
        width: 100%;
        text-align: center;
    }

    .logotype {
        justify-content: center;
    }

    .logotypes-slider-container {
        width: calc(2 * var(--space-50) + 100%);
    }

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

    .logo {
        width: 200px;
    }

    #content {
        padding-top: 63px;
    }

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

    .file{
        width: 100%;
    }
}

@media screen and (max-width: 560px) {
    .product-tab-btn{
        font-size: 14px;
    }

    .set-container{
        flex-direction: column;
        gap: var(--space-60);
    }

    .product-set-content::before {
        left: 50%;
        top: calc(var(--space-60) / -2);
        transform: translateX(-50%) translateY(-50%);
    }

    .product-page-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 28px;
    }

    .product-basket-box-right > .btn {
        gap: 7px;
        font-size: 12px;
    }

    .icon-text-section-inner {
        grid-template-columns: 1fr;
    }

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

@media screen and (max-width: 480px) {
    .login-box .row-flex-center .btn{
        width: 100%;
    }

    .product-basket-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-basket-box-right {
        width: 100%;
        max-width: unset;
    }

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

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

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

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

@media screen and (max-width: 420px) {
    .aside {
        width: 275px;
        left: -275px;
    }

    .aside-shadow {
        left: 275px;
    }

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

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

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

    .header-top-inner {
        gap: 10px;
    }

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

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

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

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

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