@media screen and (min-width: 1921px) {
    body.compensate-for-scrollbar {
        margin-right: auto !important
    }
}

@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;
        pointer-events: none;
        transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-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
    }
}

.rwdMenu {
    font-size: 1rem
}

.rwdMenu ul {
    display: block;
    width: 100%;
    padding: 0
}

.rwdMenu:not(:first-child) > ul {
    border-top: 1px solid rgb(0 0 0 / .1)
}

.rwdMenu + .rwdMenu > ul {
    border-top: none
}

.rwdMenu ul ul {
    display: none;
    box-shadow: inset 0 3px 5px -1px rgb(0 0 0 / .12);
    background-color: rgb(0 0 0 / .1)
}

.rwdMenu li {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    border-bottom: 1px solid rgb(0 0 0 / .1)
}

.rwdMenu li.hide-mobile {
    display: none
}

.rwdMenu li.slided {
    border-bottom: none
}

.rwdMenu a {
    color: inherit
}

.rwdMenu li > *:first-child {
    flex: 1 0 0%;
    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 > ul {
    font-size: .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 rgb(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 rgb(0 0 0 / .04);
    background: rgb(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
}

.rwdButton {
    float: right;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    font-size: 18px;
    border: 1px solid rgb(0 0 0 / .1);
    background-color: #fff;
    transition: all 0.4s;
    border-radius: 50%
}

.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(.4);
    -webkit-transform: scale(.4);
    -ms-transform: scale(.4)
}

.rwdButton.active > .animIcon--close {
    opacity: 1
}

.rwdButton.active > .animIcon--close ~ * {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0)
}

@media screen and (max-width: 1750px) {
    #main-menu > ul > li > .offer-menu-list-wrapper {
        min-width: 900px
    }
}

@media screen and (max-width: 1600px) {
    .category-section-news-small .news-title {
        font-size: 15px;
    }

    .category-section-news-small .news-content .text {
        font-size: 13px;
    }

    .box-image {
        aspect-ratio: initial
    }

    .box-image img {
        height: 100%
    }

    .shop-product-list {
        margin: -8px
    }

    .shop-product-box {
        padding: 8px
    }

    .about-page .description-collection-item-content {
        padding: 15px calc(2 * var(--space-50)) !important
    }

    .main-slider-arrows .btn {
        width: 48px;
        height: 48px
    }

    .main-slider-arrows .btn-prev {
        left: 15px
    }

    .main-slider-arrows .btn-next {
        right: 15px
    }

    .main-slide-content {
        left: 50px;
        right: 50px
    }

    .section-news-small .news-image {
        width: 50%
    }

    .section-news-small .news-content {
        width: 50%;
        padding-left: var(--space-25)
    }

    .product-container {
        padding: calc(var(--space-25) - 2px)
    }

    .main-slide-content-image {
        width: 31%
    }

    .main-slide-content-right {
        width: 69%
    }

    .mainsearch {
        width: 320px
    }

    .modal-product-slider {
        margin: -8px
    }
}

@media screen and (max-width: 1440px) {
    .icon-list .swiper-wrapper {
        justify-content: flex-start
    }

    .contact-item-content {
        width: 82%
    }

    .text-image-content {
        width: 39%
    }

    .text-image-photo {
        padding-left: var(--space-50);
        width: calc(61% + var(--container-padding))
    }

    .text-image-content .text {
        padding-right: var(--space-50)
    }

    .mainsearch {
        width: 250px
    }

    .main-slide-content-right {
        padding-left: calc(2 * var(--space-50));
        width: 72%
    }

    .main-slide-content-image {
        width: 28%
    }

    .slider-title {
        font-size: 48px
    }

    .mainIcons-list {
        margin: -10px -15px
    }

    .mainIcon {
        padding: 10px 15px
    }

    .section-title-xl {
        font-size: var(--font-36)
    }

    .news-list {
        margin: -10px
    }

    .news {
        padding: 10px
    }

    .section-news-small .news-content {
        padding-left: 20px
    }

    .footer-top {
        margin: -15px;
        margin-bottom: var(--space-60)
    }

    .footer-top > div {
        padding: 15px
    }

    .description-collection-item-content {
        padding-left: var(--space-60)
    }

    .description-collection-item:nth-child(odd) .description-collection-item-content {
        padding-right: var(--space-60)
    }

    .asidedPage-content {
        padding-left: var(--space-40)
    }

    .aside {
        width: 290px
    }

    .asidedPage-content {
        width: calc(100% - 290px)
    }

    .select2-container--default .select2-selection--multiple, .select2-container .select2-selection--single {
        min-width: 200px
    }

    #main-menu > ul > li + li {
        margin-left: 12px
    }

    .easy-protect-title {
        font-size: 15px
    }

    .logo {
        max-width: 240px
    }
}

@media screen and (max-width: 1280px) {
    .category-section-news-small .news-content .text {
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    #main-menu > ul > li + li {
        margin-left: 7px
    }

    .logo {
        max-width: 190px
    }

    .main-slide-image {
        min-height: initial
    }

    .header-mid-inner #main-menu li a i {
        padding-left: 6px
    }

    .container-custom {
        padding-left: 75px;
        padding-right: 75px
    }

    .news-list-wrapper .slider-arrows .btn.prev {
        left: -60px
    }

    .news-list-wrapper .slider-arrows .btn.next {
        right: -60px
    }

    .news-title {
        font-size: 18px;
        line-height: 1.5;
        margin-bottom: 15px
    }

    .footer-col-1 .text {
        font-size: 18px
    }

    .footer-top {
        margin: -8px;
        margin-bottom: var(--space-50)
    }

    .footer-top > div {
        padding: 8px
    }

    .footer-contact .caption-big {
        font-size: 16px;
        margin-top: 4px
    }

    .footer-logo img {
        max-width: 200px
    }

    .shop-product-view-top-content {
        padding-left: var(--space-40)
    }

    .shop-product-offer-box-actions {
        gap: var(--space-25)
    }

    .shop-product-info-bottom {
        gap: var(--space-25)
    }

    .shop-product-offer-box-actions-bottom {
        gap: var(--space-25)
    }

    .shop-product-offer-box-actions-bottom > .btn {
        width: calc(50% - (var(--space-25) / 2))
    }

    .shop-product-lease-now-container {
        width: calc(50% - (var(--space-25) / 2))
    }

    .icon-item {
        width: 25%
    }

    .news .category {
        padding: 16px 4px;
        min-height: 92px;
        font-size: 11px
    }

    .article-image .category {
        padding: 16px 4px;
        min-height: 92px;
        font-size: 11px
    }

    .shop-product-offer-box-actions-left {
        width: 58%
    }

    .shop-product-offer-box-actions-right {
        width: 42%
    }

    .shop-product-box {
        width: 33.3333%
    }

    .header-top-left {
        gap: 10px
    }

    #main-menu li a {
        font-size: 13px
    }

    .header-top-contact {
        font-size: 13px
    }

    #main-menu > ul > li > .offer-menu-list-wrapper::before {
        left: 34%
    }

    #main-menu > ul > li > .offer-menu-list-wrapper {
        min-width: 905px
    }

    .product-slide-inner {
        padding: 6px
    }

    .easy-protect-header {
        gap: 10px
    }

    .textForm-inner.width-75 .textForm-text {
        width: 50%
    }

    .textForm-inner.width-75 .textForm-form {
        width: 50%
    }
}

@media screen and (min-width: 1140px) {
    .mainsearch {
        top: 0 !important
    }

    .footer-col-content {
        display: block !important
    }
}

@media screen and (max-width: 1139px) {
    .lang.lang-item {

    }

    header.has-popup-top + #content {
        padding-top: 187px !important;
    }

    .category-section-news-small .news-content .text {
        -webkit-line-clamp: 4;
        line-clamp: 4;
    }

    .category-section-news-small .news-title {
        font-size: 15px;
    }

    .category-section-news-small .news-content .text {
        font-size: 13px;
    }

    .category-section-news-small {
        padding: 0 60px;
        margin-left: 0;
    }

    .easy-protect-label-text {
        font-size: 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 {
        border-bottom: 1px solid rgb(0 0 0 / .1);
        border-radius: 0;
        background-color: #fff
    }

    .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
    }

    .rwdPanel .social-icon {
        color: var(--color-primary)
    }

    .header-top {
        display: none
    }

    .header-mid-inner {
        padding: 12px 0
    }

    .header-mid-right {
        gap: 35px
    }

    .header-mid-right-inner {
        gap: 20px
    }

    #content {
        padding-top: 187px
    }

    .main-slide-content {
        top: 50%;
        transform: translateY(-50%)
    }

    .main-slide-content-image {
        display: flex;
        align-items: center
    }

    .mainsearch {
        width: 100%
    }

    .top-box-basket-container {
        padding-right: 8px
    }

    .section-news-small .swiper-wrapper {
        flex-wrap: initial
    }

    .mainCategories-item-link .icon {
        width: 50px;
        height: 50px
    }

    .mainCategories-item-link {
        font-size: 15px
    }

    .mainCategories-item-title {
        font-size: 18px
    }

    .footer-col-content {
        display: none;
        padding-top: 0;
        padding-bottom: var(--space-40)
    }

    .footer-col-title {
        padding: 12px 0;
        margin: 0;
        position: relative
    }

    .footer-col-title:after {
        content: '\f107';
        position: absolute;
        font-family: FontAwesome;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
        transition: all .2s linear
    }

    .footer-col-heading.active .footer-col-title:after {
        transform: translateY(-50%) scaleY(-1)
    }

    .footer-cols {
        flex-direction: column;
        margin-bottom: 0
    }

    .footer-col {
        width: 100% !important;
        border-bottom: 1px solid rgb(255 255 255 / .3)
    }

    .footer-social .social-icon {
        width: 40px;
        height: 40px
    }

    .footer-col-1 {
        padding-bottom: var(--space-50)
    }

    .footer-col-5 {
        border-bottom: 0
    }

    .asidedPage-content {
        width: 100%;
        padding-left: 0
    }

    .aside-button {
        display: none
    }

    .aside {
        display: none;
        padding-top: 40px;
        padding-bottom: 50px;
        position: fixed;
        left: -280px;
        pointer-events: none;
        width: 280px;
        z-index: 9999;
        transition: all 0.3s;
        top: 129px;
        bottom: 0
    }

    header.rollup + #content .aside {
        top: 0
    }

    .aside-shadow {
        display: block;
        opacity: 0;
        pointer-events: none
    }

    .aside-shadow.active {
        position: fixed;
        inset: 0;
        z-index: 1;
        background-color: rgb(0 0 0 / .6);
        opacity: 1;
        pointer-events: auto
    }

    .aside-bg {
        display: block;
        background-color: #fff;
        right: 0;
        z-index: -1
    }

    .aside-close {
        display: block;
        position: absolute;
        font-size: 20px;
        top: 10px;
        right: 10px
    }

    .aside.active {
        left: 0;
        margin-left: 0;
        pointer-events: auto
    }

    .aside-menu > ul > li > .menuList-group {
        border-radius: 0 !important
    }

    .aside-menu {
        max-height: calc(100vh - 160px);
        overflow: auto;
        scrollbar-width: thin
    }

    .aside-menu > ul > li > .menuList-group > a {
        display: flex;
        align-items: center;
        line-height: 21px;
        padding: 8px 0;
        min-height: 50px
    }

    .aside-menu > ul > li > ul {
        margin-top: 0;
        border-radius: 0
    }

    .product-container {
        padding: 15px
    }

    .btn-lg {
        padding: 10px 16px;
        gap: 8px
    }

    .product-photo {
        width: 45%
    }

    .shop-product-view-top-content {
        width: 55%
    }

    .shop-product-info {
        gap: 16px
    }

    .shop-product-info-left {
        font-size: 13px
    }

    .about-page .description-collection-item:nth-child(odd) .description-collection-item-content {
        padding-right: 0 !important;
        padding-left: var(--space-60)
    }

    .about-page .description-collection-item:nth-child(even) .description-collection-item-content {
        padding-left: 0 !important;
        padding-right: var(--space-60)
    }

    .contact-collection-item-title {
        font-size: 18px
    }

    .contact-collection-item-image {
        margin-bottom: 8px
    }

    .contact-collection-item-text {
        font-size: 14px
    }

    .offer-menu-shadow {
        display: none !important
    }

    .offer-menu-list-wrapper {
        width: 100%;
        display: none
    }

    .offer-menu-list {
        display: block !important;
        width: 100%
    }

    .category-list-wrapper {
        width: 100%;
        max-height: initial;
        overflow: initial;
        max-width: initial
    }

    .category-list-wrapper > ul {
        display: block !important;
        width: 100%
    }

    .rwdMenu i:not(.fa-shopping-cart) {
        display: none !important
    }

    header .user-nav-item-inner .icon {
        margin: 0 !important
    }

    .rwdPanel .user-nav-item-inner .icon {
        margin-right: 15px !important
    }

    .modal-wide .modal-dialog {
        width: 100%
    }

    .shop-manufacturer-box {
        width: 33.3333%
    }

    .mainpage #content > .container .alert-container {
        top: 65px
    }

    .main-slide-image img {
        min-height: 68vh
    }

    .lang.lang-item .langs-menu-short {
        display: none;
    }

    .header-mid {
        position: static;
        border-bottom: 0
    }

    .shop-product-slider-wrapper .container {
        padding-left: 25px;
        padding-right: 25px
    }

    .shop-store-btn .icon {
        width: 35px;
        height: 30px
    }

    header {
        transition: top, 0.3s
    }

    header.rollup.sticky {
        top: -129px
    }

    .aside-menu > ul > li > .menuList-group {
        padding: 0 10px
    }

    .custom-popup {
        width: 96%
    }

    .custom-popup h2 {
        font-size: 20px
    }

    .box .section-title-sm {
        font-size: 19px
    }

    header {
        background-color: #fff
    }

    .header-bottom {
        padding-bottom: 12px;
        border-bottom: 1px solid rgb(0 0 0 / .1)
    }

    .box .btn {
        position: static;
        width: initial;
        margin: 0 auto;
        margin-top: 20px;
        transform: initial
    }

    .serviceRequest-form-container .checkboxradio-container .col-xs-2 {
        width: 20%
    }

    .serviceRequest-form-container .checkboxradio-container .col-xs-4 {
        width: 100%
    }

    .product-container .shop-add-to-basket .btn {
        opacity: 1
    }

    .shop-product-list {
        padding: 0
    }

    header .user-nav-item-inner .icon {
        width: 26px !important;
        height: 26px !important
    }

    .header-fav .icon {
        width: 26px;
        height: 23px
    }

    .basket-icon svg {
        width: 24px
    }

    .header-mid-inner .mainsearch {
        display: none
    }

    .form .form-control {
        font-size: 16px
    }

    .mainsearch input.form-control {
        font-size: 16px
    }

    .contact-item-content {
        width: 100%
    }

    .contact-collection {
        margin: -16px
    }

    .contact-collection-item {
        padding: 16px
    }

    .header-bottom-inner {
        min-height: 46px
    }

    .category-list-wrapper {
        display: none
    }

    .product-column-price-total {
        display: none !important
    }

    .rwdAccount {
        width: 100%
    }

    .rwdAccount > ul, .rwdAccount > ul > ul {
        display: block !important
    }

    .rwdAccount > ul > ul {
        background-color: #fff0
    }

    .login-container .cloneMenu-toggle {
        display: none !important
    }

    .article-content .article-contents {
        width: 48%;
    }
}

@media screen and (max-width: 1000px) {
    .shop-product-info-bottom {
        flex-direction: column
    }

    .shop-product-info-bottom .btn {
        width: 100%
    }

    .shop-product-info-contact {
        font-size: 14px;
        gap: 8px
    }

    .news {
        width: 50%
    }

    .news .categories {
        top: 0
    }

    .shop-product-view-top-content .btn {
        font-size: 13px
    }
}

@media screen and (max-width: 900px) {
    .category-section-news-small {
        padding: 0;
    }

    .category-section-news-small .btn-circle {
        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
    }

    .slider-title {
        font-size: 38px
    }

    .main-slider .swiper-pagination {
        bottom: 10px
    }

    .text-image-inner {
        flex-direction: column-reverse
    }

    .text-image-content {
        width: 100%
    }

    .text-image-photo {
        width: initial;
        padding-left: 0;
        padding-bottom: 35px;
        padding-right: 0;
        margin-left: calc(-1 * var(--container-padding));
        margin-right: calc(-1 * var(--container-padding))
    }

    .text-image-video {
        width: calc(100% + (2 * var(--container-padding)));
        margin-right: calc(-1 * var(--container-padding))
    }

    .text-image-content .text {
        padding-right: 0
    }

    .mainIcon {
        width: 50%
    }

    .box-content .text {
        font-size: 15px
    }

    .mainCategories-list {
        margin: -12px -8px
    }

    .mainCategories-item {
        width: 50%;
        padding: 12px 8px
    }

    .footer-top {
        flex-wrap: wrap
    }

    .footer-top > div {
        width: 50% !important
    }

    .shop-product-view-top {
        display: block
    }

    .product-photo {
        width: 68%;
        margin: 0 auto
    }

    .shop-product-view-top-content {
        width: 100%;
        padding-top: 30px;
        padding-left: 0
    }

    .shop-product-view-top .section-title-md {
        margin-bottom: 22px
    }

    .icon-list {
        justify-content: center
    }

    .icon-item {
        width: 40%;
        align-items: center
    }

    .ask-info-contact .icon-wrapper {
        width: 50px;
        height: 50px
    }

    .ask-info-contact {
        gap: 15px;
        font-size: 18px
    }

    .contact-item {
        display: block
    }

    .contact-item-content {
        width: 100%
    }

    .contact-item-image {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 20px
    }

    .main-slide-content {
        left: 0;
        right: 0
    }

    .main-slider-arrows {
        display: none
    }

    .main-slide-image img {
        min-height: 62vh
    }

    .basket-table .image a {
        width: 90px;
        height: 90px
    }

    .mainCategories-image {
        display: none
    }

    .mainCategories {
        background: #242424
    }

    .textImage-title {
        padding: 0 var(--container-padding)
    }

    .textForm-inner {
        display: block
    }

    .textForm-text {
        padding: 0 !important;
        width: 100% !important
    }

    .textForm-form {
        width: 100% !important
    }

    * + .textForm-text {
        margin-top: var(--space-40)
    }

    .product-column-price-total {
        display: none !important
    }

    .shop-product-code {
        text-align: center;
    }

    .shop-product-price .price-net .price:not(.price-old) {
        font-weight: 700;
        color: var(--color-primary);
        font-size: calc(var(--font-36) + 12px)
    }

    .textImage {
        flex-direction: column !important
    }

    .textImage-image {
        width: 100%
    }

    .textImage-content {
        width: 100%;
        padding-left: var(--container-padding) !important;
        padding-right: var(--container-padding) !important
    }

    .textImage-text {
        max-height: initial;
        overflow: auto
    }

    .shop-product-view-top .section-title-md {
        order: -4;
    }

    .shop-product-view-top .shop-product-code {
        order: -3;
        text-align: right;
    }

    .shop-product-view-top .shop-product-view-under-title {
        order: -2;
        flex-direction: row-reverse;
    }

    .shop-product-view-top {
        display: flex;
        flex-direction: column;
    }
}

@media screen and (max-width: 767px) {
    .panel-body .form-element-nip .element-row .input-group .input-group-btn > .btn {
        width: unset !important;
    }

    .shop-product-variants-body > .shop-product-variant-container.row > * {
        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
      }

    .main-slide-content-right {
        padding-left: var(--space-60)
    }

    .slider-title {
        font-size: 32px
    }

    .shop-product-slider-wrapper .section-header {
        flex-direction: column;
        gap: 10px
    }

    .product-slide-inner {
        padding: 10px
    }

    .description-collection-item {
        display: block
    }

    .description-collection-item-image {
        width: 100%
    }

    .description-collection-item-content {
        width: 100%;
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 20px
    }

    .description-collection-item + .description-collection-item {
        margin-top: 30px
    }

    .ask-info-inner {
        flex-direction: column
    }

    .ask-info-left {
        width: 100%
    }

    .ask-info-right {
        width: 100%
    }

    .about-page .description-collection-item-content {
        padding: 0 !important;
        margin-top: var(--space-40)
    }

    .gallery-list-item {
        width: 33.3333%
    }

    .shop-manufacturer-box {
        width: 50%
    }

    .fa-search + .hidden-xs {
        display: block !important
    }

    .serviceRequest-form-container .checkboxradio-container .col-xs-2 {
        width: 25%
    }

    .mainIcons-list.swiper .mainIcon {
        width: 75%
    }

    .mainIcons-list-wrapper {
        padding: 0
    }

    .mainIcons-list-wrapper .slider-arrows {
        display: none
    }
}

@media screen and (min-width: 706px) {
    footer .show-hide {
        display: block !important
    }
}

@media screen and (max-width: 639px) {
    .modal-body .section-wrapper.top-box-top > .row {
        font-size: 13px;
    }

    .news-top-wrapper .about-title{
        font-size: calc(var(--font-30) + var(--font-24));
    }
    .news-page-content.has-vertical-image {
        display: block
    }

    .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
    }

    .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
    }

    .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
    }

    .password-reset-form-container .controls.captcha-container .col-sm-4, .newsletter-modal-form .controls.captcha-container .col-sm-4 {
        width: 100%
    }

    .mainIcons-list {
        margin: -10px -6px
    }

    .mainIcon {
        padding: 10px 6px
    }

    .section-news-small .news-inner {
        flex-direction: column
    }

    .section-news-small .news-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        margin-bottom: calc(var(--space-25) + 7px)
    }

    .section-news-small .news-content {
        width: 100%;
        padding-left: 0
    }

    .newsletter-box-input .form-control {
        height: 50px !important
    }

    .newsletter-box-input .form-control::placeholder {
        font-size: 15px
    }

    .newsletter-box-input .btn {
        width: 50px;
        height: 50px
    }

    .newsletter-box-inner .form-teaser {
        font-size: 17px;
        line-height: 1.6
    }

    .shop-product-box {
        width: 50%
    }

    .news-category-list {
        gap: 10px var(--space-50)
    }

    .news .category {
        padding: 12px 4px;
        min-height: 84px;
        font-size: 12px
    }

    .contact-collection {
        flex-wrap: wrap
    }

    .contact-collection-item {
        width: 50%
    }

    .product-photo {
        width: 100%
    }

    .news-date {
        text-align: center
    }

    .section-news .btn-lg {
        height: 40px;
        font-size: 13px;
        width: initial !important
    }

    .shop-product-linked-categories {
        font-size: 12px
    }

    .about-top {
        background: #000;
        padding-bottom: calc(2 * var(--space-50))
    }

    .product-photo .shop-store-btn {
        z-index: 999
    }

    .filter-section {
        flex-direction: column;
        align-items: flex-start
    }

    .serviceRequest-form-container .checkboxradio-container .col-xs-2 {
        width: 33.3333%
    }

    .news-list-wrapper .slider-arrows {
        display: none
    }

    .container-custom {
        padding-left: var(--container-padding);
        padding-right: var(--container-padding)
    }

    .news.swiper-slide {
        width: 80%
    }

    .news-list.one-item .news.swiper-slide {
        width: 100%
    }

    .header-info-inner .caption {
        font-size: 13px
    }

    .header-info-inner .btn {
        min-width: 130px
    }

    /*.modal.fade:not(.modal-ask) .modal-dialog {*/
    /*    top: 50%;*/
    /*    transform: translateY(-52%) !important*/
    /*}*/

    .shop-product-offer-box-actions-left {
        width: 60%
    }

    .shop-product-offer-box-actions-right {
        width: 40%
    }

    .modal-ask .modal-dialog {
        margin: 0
    }

    .modal-ask {
        overflow: initial !important;
        padding-right: 0 !important
    }

    .modal-ask .modal-body {
        overflow-y: auto;
        max-height: calc(100dvh - 56px)
    }

    .product-info-box-inner {
        display: flex;
        align-items: center
    }

    .basket-table .name {
        width: auto;
        padding-left: 15px
    }


    .article-content .article-contents {
        width: 100%;
    }
}

@media screen and (max-width: 560px) {
    .modal-body .section-wrapper.top-box-top > .row {
        flex-direction: column;
    }

    .modal-body .section-wrapper.top-box-top > .row > * {
        width: 100%;
    }

    .modal-body .section-wrapper.top-box-top > .row > .text-right .top-box-product-item-flex {
        justify-content: flex-start;
    }

    .modal-body .section-wrapper.top-box-top > .row {
        font-size: 13px;
    }

    .text {
        word-wrap: break-word;
        font-size: 14px
    }

    .faq-title {
        font-size: 14px
    }

    .main-slide-content-inner {
        flex-direction: column
    }

    .main-slide-content-image {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        display: none
    }

    .main-slide-image img {
        min-height: initial;
        aspect-ratio: initial;
        max-height: initial;
        object-fit: initial
    }

    .main-slide-content-right {
        width: 100%;
        padding-left: 0;
        margin-top: 0
    }

    .slider-title {
        text-align: center
    }

    .main-slide-content-right .text {
        display: none
    }

    .main-slide-content {
        position: static;
        transform: none !important;
        color: #000;
        background-color: #fff;
        padding-top: calc(2 * var(--space-40))
    }

    .main-slide-content-image img {
        max-width: 100%
    }

    .main-slide-content-right .btn {
        background-color: #fff;
        border-color: #000;
        color: #000
    }

    .main-slider .swiper-pagination {
        bottom: -40px
    }

    .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 5px
    }

    .header-mid-right .user-nav {
        display: none
    }

    .header-mid-right-inner {
        gap: 16px
    }

    .logo {
        max-width: 172px
    }

    .rwdButton {
        width: 44px;
        height: 44px
    }

    .text-image-title {
        font-size: 26px
    }

    .section-subtitle {
        font-size: 20px
    }

    .box {
        width: 100%
    }

    .box-content {
        padding-bottom: calc(var(--space-60) + 10px)
    }

    .mainCategories-item {
        width: 100%
    }

    .footer-top > div {
        width: 100% !important
    }

    .aside {
        top: 113px
    }

    .shop-product-info-left {
        margin-bottom: 15px
    }

    .shop-product-info {
        display: block
    }

    .shop-product-params-table td {
        font-size: 14px;
        padding: 12px 15px !important
    }

    .news {
        width: 100%
    }

    .pagination-wrapper ul li.next a, .pagination-wrapper ul li.prev a {
        width: 40px;
        height: 40px
    }

    .pagination-wrapper ul li a, .pagination-wrapper ul li span {
        padding: 8px 4px
    }

    .form-element .col-xs-4 {
        width: 100%
    }

    .news-image {
        border-radius: 0;
        margin-bottom: var(--space-25)
    }

    .news-list:not(.swiper) .news-image {
        margin-top: calc(var(--space-25) + 7px);
        margin-bottom: 0
    }

    .news-category-list {
        margin-bottom: calc(var(--space-60) + 5px)
    }

    .news-date {
        margin-bottom: 16px
    }

    .news-list:not(.swiper) .news + .news {
        padding-top: 25px;
        margin-top: 22px;
        position: relative
    }

    .news-list:not(.swiper) .news + .news::before {
        content: '';
        position: absolute;
        top: 0;
        left: 10px;
        right: 10px;
        height: 1px;
        background: rgb(0 0 0 / .1)
    }

    .news-list:not(.swiper) .news-inner {
        display: flex;
        flex-direction: column-reverse
    }

    .news-image img {
        border-radius: 25px;
        margin: 0 auto
    }

    .news-content .text {
        -webkit-line-clamp: 4;
        line-clamp: 4
    }

    .payment-channel .panel-body img {
        max-width: 90% !important
    }

    .modal-title {
        font-size: 18px
    }

    .section-news .section-header {
        flex-direction: column;
        gap: 12px
    }

    .ask-info-contact .icon-wrapper {
        width: 40px;
        height: 40px
    }

    .ask-info-contact .icon-wrapper .icon {
        width: 18px
    }

    .ask-info-contact {
        gap: 12px;
        font-size: 16px
    }

    .ask-title {
        font-size: var(--font-30)
    }

    .ask-teaser {
        font-size: 16px
    }

    .main-slide .btn-row {
        display: flex;
        justify-content: center
    }

    .main-slider.swiper {
        margin-bottom: calc(3 * var(--space-50) - 8px)
    }

    .contact-collection {
        justify-content: center;
        align-items: center;
        flex-direction: column
    }

    .contact-collection-item {
        width: 100%;
        max-width: 220px
    }

    .product-slider-arrows .btn-arrow-prev, .product-slider-arrows .btn-arrow-next {
        position: static;
        transform: none
    }

    .product-slider-arrows {
        position: absolute;
        top: -62px;
        right: 15px;
        z-index: 1
    }

    .product-nav-slider-wrapper {
        padding-left: 0;
        padding-right: 0;
        padding-top: 8px
    }

    .product-nav-slider .product-slide {
        padding: 4px
    }

    .product-nav-slider {
        margin: -4px
    }

    .mainCategories-list {
        display: none
    }

    .mainCategories-list-rwd {
        display: block
    }

    .mainCategories-image {
        clip-path: inset(0)
    }

    .mainCategories-image img {
        position: fixed;
        object-position: center;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%
    }

    .shop-store-btn {
        right: 14px
    }

    .product-photo .swiper-pagination {
        display: none;
        padding: 0 15px;
        position: static;
        margin-top: 15px
    }

    .product-nav-slider {
        display: none
    }

    .product-photo .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .product-photo .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 3px
    }

    .product-photo .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: #ddd
    }

    .product-photo .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: #858585
    }

    .main-slide-image::before {
        display: none
    }

    .shop-product-view-top-content {
        padding-top: 15px
    }

    .mainsearch-submit {
        width: 40px;
        height: 40px
    }

    .mainsearch input.form-control {
        height: 40px
    }

    .swiper-pagination-bullet {
        background-color: #ddd
    }

    .swiper-pagination-bullet:hover {
        background-color: #858585;
        border-color: #858585
    }

    .swiper-pagination-bullet-active {
        background-color: #858585;
        border-color: #858585
    }

    .about-top {
        aspect-ratio: initial !important;
        min-height: 440px
    }

    .about-top-image .image-desktop {
        display: none
    }

    .about-top-image iframe {
        display: none
    }

    .about-top-image .image-mobile {
        display: block
    }

    .shop-product-offer-box-actions-left {
        width: 57%
    }

    .shop-product-offer-box-actions-right {
        width: 43%
    }

    .easy-protect-options {
        max-width: 92%
    }

    .product-info-box-inner .image {
        margin-bottom: 0
    }

    .productTile-grid-title {
        font-size: 18px;
        margin-top: 5px;
    }

    .modal-basket-slider .product-container .product-image {
        aspect-ratio: 73 / 27;
        margin-top: 0;
        margin-bottom: 5px;
    }

    .modal-slider-top{
        margin-bottom: 12px;
    }

    .modal .alert .message {
        font-size: 13px;
    }

    .modal .alert{
        padding: 10px;
    }
}

@media screen and (max-width: 520px) {
    .shop-product-slider .shop-product-box {
        width: 80%
    }

    .shop-product-list .slider-arrows {
        display: none
    }

    .modal-slider-top {
        flex-direction: column;
        text-align: center
    }
}

@media screen and (min-width: 481px) {
    .easy-protect-content {
        display: block !important
    }
}

@media screen and (max-width: 480px) {
    .panel-body .form-element-nip .element-row .input-group .input-group-btn > .btn {
        font-size: 11px;
        padding: 0 8px;
        min-width: 90px !important;
    }

    .panel-body .form-element-nip .element-row .input-group input {
        padding-right: 125px;
    }

    .panel-body .form-element-nip .element-row .glyphicon {
        right: 95px;
    }

    .shop-product-variants-body > .shop-product-variant-container.row > * {
        width: 100%;
        max-width: 300px;
    }

    header.has-popup-top + #content {
        padding-top: 168px !important;
    }

    .shop-product-view-under-title {
        gap: 5px;
    }

    .header-mid-right {
        gap: 18px
    }

    .modal-footer > .btn {
        width: 100%
    }

    .modal-footer .btn + .btn {
        margin-left: 0;
        margin-top: 5px
    }

    .mainIcon {
        width: 100%
    }

    .mainIcon-title {
        font-size: 15px;
        margin-bottom: 8px
    }

    .mainIcon-text {
        font-size: 14px
    }

    .btn-circle {
        width: 40px;
        height: 40px
    }

    .news-list-wrapper .slider-arrows .btn.prev {
        left: -45px
    }

    .news-list-wrapper .slider-arrows .btn.next {
        right: -45px
    }

    .shop-product-box {
        width: 100%
    }

    .shop-product-offer-box-actions {
        flex-direction: column-reverse
    }

    .shop-product-offer-box-actions.has-easy-protect {
        flex-direction: column
    }

    .shop-product-offer-box-actions:not(.has-easy-protect) .shop-product-offer-box-actions-left {
        padding-top: calc(var(--space-25) + 5px);
        border-top: 1px solid rgb(0 0 0 / .2)
    }

    .invoice-address-fieldset .form-element-label-wrapper .form-element-name {
        display: block
    }

    .form-element-copy-btn {
        margin-top: 10px
    }

    .shop-product-offer-box-actions-bottom {
        flex-direction: column;
        gap: 10px
    }

    .shop-product-offer-box-actions-bottom .btn {
        width: 100%
    }

    .panel-page .login-form .btn {
        width: 100%
    }

    .mainIcon-icon img {
        max-width: 70px;
        max-height: 70px;
        margin: 0 auto
    }

    .mainIcon-content {
        width: 80%
    }

    .header-info-inner {
        flex-wrap: wrap
    }

    .header-info-inner > .icon {
        width: 8%
    }

    .header-info-inner .caption {
        padding-right: 0;
        width: 87%
    }

    .header-info-inner .btn {
        margin-top: 5px;
        height: 32px
    }

    .shop-product-offer-box-actions-left, .shop-product-offer-box-actions-right {
        width: 100%
    }

    .easy-protect-toggle {
        display: flex !important
    }

    .easy-protect-content {
        display: none
    }

    .easy-protect-toggle.easy-protect-toggle.easy-protect-toggle {
        background-color: #422979;
        color: #fff
    }

    .shop-product-offer-box-actions-right {
        flex-direction: row
    }

    .shop-product-offer-box-actions-right .btn {
        height: 40px;
        width: 60%
    }

    .shop-product-offer-box-actions-right .shop-quantity-box {
        width: 40%
    }

    .btn.ask-product {
        background-color: #fff;
        border-color: rgb(0 0 0 / .2);
        color: #000
    }

    .btn-delivery {
        background-color: #F6F6F6;
        border-color: #F6F6F6;
        color: #000
    }

    .shop-product-info-bottom .btn {
        height: 38px
    }

    .shop-product-info-bottom {
        gap: 10px
    }

    #content {
        padding-top: 170px
    }

    .mainIcons-list-wrapper, .gallery-list-slider-wrapper {
        padding: 0
    }

    .mainIcons-list-wrapper .slider-arrows, .gallery-list-slider-wrapper .slider-arrows {
        display: none
    }

    .gallery-list-slider-wrapper .gallery-list-item {
        width: 80%
    }

    .shop-product-lease-now-container {
        width: 100%
    }

    .shop-product-offer-box-actions.has-easy-protect .shop-product-offer-box-actions-row-bottom {
        flex-direction: column
    }

    .shop-product-offer-box-actions-row-bottom .easy-protect-wrapper {
        width: 100%
    }

    .shop-product-offer-box-actions.has-easy-protect .shop-product-offer-box-actions-buttons {
        width: 100%;
        flex-direction: row
    }

    .basket-table .name a.title, .basket-table tbody .lp, .basket-table .price:not(.price-old) {
        font-size: 14px
    }

    .basket-bottom-info{
        flex-direction: column;
        align-items: flex-start;
    }
}

@media screen and (max-width: 420px) {
    .shop-product-accessories-check {
        width: 20px;
        height: 20px;
    }

    .shop-product-accessories-image {
        width: 60px;
        height: 60px;
    }

    .heading-page .section-title-md {
        text-align: center
    }

    .asidedPage-heading {
        flex-direction: column;
        gap: var(--space-25)
    }

    .header-bottom-inner {
        gap: 20px
    }

    .footer-bar-content.footer-bar-content > * {
        display: block;
        margin-left: 0;
        margin-right: 0
    }

    .slider-title {
        font-size: 24px
    }

    .icon-item {
        width: 65%
    }

    .gallery-list-item {
        width: 50%
    }

    .about-title {
        font-size: 34px
    }

    .shop-manufacturer-box {
        width: 100%
    }

    .delivery-options {
        font-size: 14px
    }

    .serviceRequest-form-container .checkboxradio-container .col-xs-2 {
        width: 50%
    }

    .shop-product-slider .shop-product-box {
        padding: 5px
    }

    .shop-product-slider .shop-product-list {
        margin: -5px
    }

    .shop-basket-summary .shop-method-name {
        font-size: 14px
    }

    .shop-product-offer-box-actions-buttons {
        flex-direction: column;
        gap: 10px
    }

    .shop-product-offer-box-actions-row-top {
        gap: 8px
    }

    .shop-product-offer-box-actions-row-bottom .btn {
        width: 100%
    }

    .shop-product-offer-box-actions-row-top .shop-quantity-box {
        max-width: initial;
        flex-grow: 1;
        max-width: 135px
    }

    .shop-product-offer-box-actions-row-top .btn {
        width: calc(100% - 135px);
        padding: 10px 12px;
    }

    .shop-product-view-top-content .btn .icon{
        max-width: 15px;
    }

    .shop-product-offer-box-actions-sticky {
        gap: 15px
    }

    .shop-product-offer-box-actions-sticky .shop-product-price .price-net .price:not(.price-old) {
        font-size: calc(var(--font-36) + 2px);
    }

    .shop-product-offer-box-actions-sticky.show-footer{
        justify-content: space-between;
    }

    .shop-product-offer-box-actions-sticky .btn{
        max-width: 165px;
    }



}

@media screen and (max-width: 380px) {

    .news-top-wrapper .about-title{
        font-size: calc(var(--font-24) + var(--font-24) - 4px);
    }

    .shop-product-offer-box-actions-right .shop-quantity-box {
        width: 38%
    }

    .shop-product-offer-box-actions-right .btn {
        width: 62%;
        padding: 10px 12px;
        font-size: 12px
    }

    .shop-product-price .price-net .price:not(.price-old) {
        font-size: calc(var(--font-36) + 6px)
    }
}

@media screen and (max-width: 360px) {
    .top-box-basket-container {
        display: none
    }

    .serviceRequest-form-container .checkboxradio-container .col-xs-2 {
        width: 100%
    }

    .shop-product-offer-box-actions.has-easy-protect .shop-product-offer-box-actions-buttons {
        flex-direction: column
    }
}

@media screen and (max-width: 340px) {
    .shop-product-offer-box-actions-right {
        flex-direction: column
    }
    .shop-product-view-top-content .btn {
        font-size: 12px;
    }
    .shop-product-offer-box-actions-row-top .btn {
        width: calc(100% - 115px);
    }



    .shop-product-offer-box-actions-row-top .shop-quantity-box {
       max-width: 115px;
    }
}

@media screen and (max-width: 319px) {
    body {
        width: 320px
    }
}

@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
    }
}