@import url("https://fonts.googleapis.com/css2?family=Arimo:wght@400;700&display=swap");

.mobileOnlyRefined {
    display: none;
}

@media (max-width: 768px) {
    body.mobile-refined,
    body.mobile-refined *:not(i):not(svg):not(path):not(code):not(pre):not([class^="fa-"]):not([class*=" fa-"]) {
        font-family: "Arimo", sans-serif !important;
    }
}

@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
    }

    body.mobile-refined {
        --mobile-font-stack: "Arimo", sans-serif;
        background: #ffffff;
        color: #111111;
        font-family: var(--mobile-font-stack);
    }

    body.mobile-refined :is(h1, h2, h3, h4, h5, h6, p, a, span, div, li, label, button, input, select, textarea, strong, small, blockquote) {
        font-family: var(--mobile-font-stack) !important;
    }

    body.mobile-refined .mobileOnlyRefined {
        display: block;
    }

    body.mobile-refined a {
        -webkit-tap-highlight-color: transparent;
    }

    body.mobile-refined .products-header {
        padding: 24px 16px 18px;
        background: #ffffff;
        border-top: 1px solid rgba(17, 17, 17, 0.06);
        border-bottom: 1px solid rgba(17, 17, 17, 0.06);
        text-align: center;
    }

    body.mobile-refined .products-header__title,
    body.mobile-refined .products-header > p:nth-child(1) {
        margin: 0;
        font-family: Rubik, sans-serif;
        font-size: 20px !important;
        line-height: 1.2;
        font-weight: 500;
        color: #111111;
    }

    body.mobile-refined .products-header__crumb,
    body.mobile-refined .products-header > p:nth-child(2) {
        margin: 8px 0 0;
        font-family: Rubik, sans-serif;
        font-size: 10px !important;
        line-height: 1.5;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: #8a857f;
    }

    body.mobile-refined .products-header__crumb a,
    body.mobile-refined .products-header > p:nth-child(2) a {
        color: inherit !important;
    }

    body.mobile-refined .products-header__crumb span,
    body.mobile-refined .products-header > p:nth-child(2) span {
        color: #111111 !important;
    }

    body.mobile-refined footer {
        margin-top: 40px;
    }

    body.mobile-refined .cartSectionTitle {
        margin: 16px 16px 10px;
        font-family: Rubik, sans-serif;
        font-size: 11px;
        line-height: 1.4;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: #655f58;
    }

    body.mobile-refined .cartSummaryNote {
        margin: 14px 16px 0;
        padding: 16px;
        background: #ffffff;
        border: 1px solid rgba(17, 17, 17, 0.08);
        color: #6f6a63;
        text-align: center;
        font-family: Rubik, sans-serif;
        font-size: 13px;
        line-height: 1.65;
    }

    body.mobile-refined .cartContinueLink {
        display: block;
        margin: 14px 16px 0;
        padding: 15px 16px;
        border: 1px solid #111111;
        background: transparent;
        color: #111111;
        text-decoration: none;
        text-align: center;
        font-family: Rubik, sans-serif;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    body.mobile-cart-page .cartContainer {
        width: auto;
        margin: 0;
        padding: 0 16px;
        background: transparent;
        text-align: left;
    }

    body.mobile-cart-page .cartItem.main {
        display: none;
    }

    body.mobile-cart-page .cartItem.itemCart {
        display: grid;
        grid-template-columns: 92px minmax(0, 1fr) auto;
        grid-template-areas:
            "image title delete"
            "image sku delete"
            "image dims delete"
            "image qty delete";
        gap: 7px 12px;
        align-items: start;
        margin: 0 0 14px;
        padding: 12px;
        background: #ffffff;
        border: 1px solid rgba(17, 17, 17, 0.08);
        box-shadow: 0 12px 28px rgba(17, 17, 17, 0.06);
    }

    body.mobile-cart-page .cartItem > div {
        width: auto;
        font-family: Rubik, sans-serif;
    }

    body.mobile-cart-page .cartItem > .product_image_cart {
        grid-area: image;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px;
        background: transparent;
        border: 1px solid rgba(17, 17, 17, 0.06);
    }

    body.mobile-cart-page .cartItem > .product_image_cart > img {
        width: 100%;
        max-height: 84px;
        object-fit: contain;
    }

    body.mobile-cart-page .cartItem > .product_title_cart {
        grid-area: title;
        font-size: 18px;
        line-height: 1.2;
        color: #111111;
        font-weight: 500;
    }

    body.mobile-cart-page .cartItem > .product_sku_cart {
        grid-area: sku;
        font-size: 12px;
        line-height: 1.5;
        color: #807b74;
    }

    body.mobile-cart-page .cartItem > .product_dimensions_cart {
        grid-area: dims;
        font-size: 12px;
        line-height: 1.5;
        color: #807b74;
    }

    body.mobile-cart-page .cartItem > .product_price_cart {
        display: none;
    }

    body.mobile-cart-page .cartItem > .product_quantity_cart {
        grid-area: qty;
        display: inline-flex;
        align-items: center;
        justify-content: space-between;
        min-width: 104px;
        height: 40px;
        padding: 0 10px;
        border: 1px solid rgba(17, 17, 17, 0.14);
        background: #ffffff;
    }

    body.mobile-cart-page .product_quantity_cart > span.plusCounter,
    body.mobile-cart-page .product_quantity_cart > span.minusCounter,
    body.mobile-cart-page .product_quantity_cart > span.numberCounter {
        width: 28px;
        text-align: center;
        font-family: Rubik, sans-serif;
    }

    body.mobile-cart-page .product_quantity_cart > span.plusCounter,
    body.mobile-cart-page .product_quantity_cart > span.minusCounter {
        font-size: 18px;
        font-weight: 500;
    }

    body.mobile-cart-page .product_quantity_cart > span.numberCounter {
        font-size: 15px;
        color: #111111;
    }

    body.mobile-cart-page .cartItem > .product_delete_btn_cart {
        grid-area: delete;
        font-size: 12px;
        line-height: 1;
        color: #111111;
        align-self: start;
    }

    body.mobile-cart-page .refreshCartBtn {
        margin: 8px 0 24px;
        padding: 15px 16px;
        background: #111111;
        color: #ffffff;
        text-align: center;
        font-family: Rubik, sans-serif;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    body.mobile-cart-page .cartDetails {
        width: auto;
        margin: 0;
        padding: 0 16px 28px;
    }

    body.mobile-cart-page .cartDetails > form {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 18px 16px;
        background: #ffffff;
        border: 1px solid rgba(17, 17, 17, 0.08);
    }

    body.mobile-cart-page #orderAddress,
    body.mobile-cart-page #datePickup,
    body.mobile-cart-page #dateReturn {
        width: 100%;
        margin: 0;
        padding: 0 0 12px;
        border: none;
        border-bottom: 1px solid rgba(17, 17, 17, 0.16);
        background: transparent;
        text-align: left;
        font-family: Rubik, sans-serif;
        font-size: 15px;
        color: #111111;
    }

    body.mobile-cart-page .cardDetailsFlex {
        display: block;
        width: 100%;
        margin: 0;
        padding: 18px 16px;
        background: #ffffff;
        border: 1px solid rgba(17, 17, 17, 0.08);
    }

    body.mobile-cart-page .table,
    body.mobile-cart-page .transportationDetails,
    body.mobile-cart-page .completeBtn {
        width: 100%;
        margin: 0;
    }

    body.mobile-cart-page .table table {
        width: 100%;
        border: 0;
        padding: 0;
        font-family: Rubik, sans-serif;
        font-size: 14px;
        border-collapse: collapse;
    }

    body.mobile-cart-page .table table tr {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 0;
        border: 0;
        border-bottom: 1px solid rgba(17, 17, 17, 0.08);
    }

    body.mobile-cart-page .table table td,
    body.mobile-cart-page .table table th {
        border: 0;
        padding: 0;
        font-family: Rubik, sans-serif;
        font-size: 14px;
    }

    body.mobile-cart-page .transportationDetails {
        display: none;
    }

    body.mobile-cart-page .completeBtn {
        margin-top: 18px;
        color: inherit;
    }

    body.mobile-cart-page .completeBtn > span {
        display: block;
        width: 100%;
        margin: 0;
        padding: 16px 18px;
        background: #111111;
        color: #ffffff;
        text-align: center;
        font-family: Rubik, sans-serif;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    body.mobile-rental-cart-page .table table tr:nth-child(n+2) {
        display: none;
    }

    body.mobile-outlet-cart-page .userInfoOrder {
        margin-bottom: 14px;
        padding: 18px 16px;
        background: #ffffff;
        border: 1px solid rgba(17, 17, 17, 0.08);
    }

    body.mobile-outlet-cart-page .userInfoOrderBtnsList {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    body.mobile-outlet-cart-page .userInfoOrder_button,
    body.mobile-outlet-cart-page .outlet_input_btn {
        width: 100%;
        padding: 14px 16px;
        background: #111111;
        color: #ffffff;
        border: none;
        text-align: center;
        font-family: Rubik, sans-serif;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    body.mobile-outlet-cart-page #loginForm,
    body.mobile-outlet-cart-page #guestForm {
        width: 100%;
        margin-top: 14px;
    }

    body.mobile-outlet-cart-page .outlet_input,
    body.mobile-outlet-cart-page select.outlet_input {
        width: 100%;
        margin: 0 0 10px;
        padding: 14px 16px;
        border: 1px solid rgba(17, 17, 17, 0.12);
        background: #ffffff;
        text-align: left;
        font-family: Rubik, sans-serif;
        font-size: 14px;
        box-sizing: border-box;
    }

    body.mobile-outlet-cart-page #paymentOverlay .paymentOptions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    body.mobile-login-page .loginContainer {
        width: auto;
        margin: 0;
        padding: 0 14px 28px;
    }

    body.mobile-login-page #login_error_message {
        max-width: 420px;
        margin: 0 auto 16px;
        padding: 12px 14px;
        background: rgba(190, 18, 60, 0.08);
        color: #9f1239;
        text-align: center;
        font-family: Rubik, sans-serif;
        font-size: 13px;
        font-weight: 700;
        border-radius: 14px;
    }

    body.mobile-login-page .loginIntroCopy {
        max-width: 420px;
        margin: 0 auto 18px;
        color: #6f6a63;
        text-align: center;
        font-family: Rubik, sans-serif;
        font-size: 16px;
        line-height: 1.7;
    }

    body.mobile-login-page .google-auth-block {
        width: min(420px, 100%);
        margin: 0 auto 18px;
    }

    body.mobile-login-page .google-auth-divider {
        margin: 0 0 18px;
    }

    body.mobile-login-page .loginFieldRow {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        max-width: 420px;
        margin: 14px auto 8px;
        color: #111111;
        font-family: Rubik, sans-serif;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

    body.mobile-login-page .loginFieldRow a {
        color: #86817a;
        text-decoration: none;
        font-size: 11px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    body.mobile-login-page .loginContainer > form {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    body.mobile-login-page .loginContainer > form > input {
        width: 100%;
        margin: 0;
        padding: 17px 16px;
        border: 1px solid rgba(17, 17, 17, 0.12);
        background: #ffffff;
        text-align: left;
        font-family: Rubik, sans-serif;
        font-size: 15px;
        box-sizing: border-box;
    }

    body.mobile-login-page .loginContainer > form > button {
        width: 100%;
        margin: 18px 0 0;
        padding: 16px;
        background: #111111;
        color: #ffffff;
        text-align: center;
        font-family: Rubik, sans-serif;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

    body.mobile-login-page .forgotPassword {
        display: none;
    }

    body.mobile-login-page .createAccount {
        max-width: 420px;
        margin: 24px auto 0;
        color: #2f2a26;
        text-align: center;
        font-family: Rubik, sans-serif;
        font-size: 16px;
        line-height: 1.7;
    }

    body.mobile-login-page .createAccount > a {
        font-weight: 700;
    }

    body.mobile-contact-page .mapIframe {
        padding: 16px 14px 0;
    }

    body.mobile-contact-page iframe#map {
        width: 100%;
        height: 220px;
        padding: 0;
        margin: 0;
        border-radius: 24px;
    }

    body.mobile-contact-page .contactContainerV2 {
        display: block;
        width: auto;
        padding: 18px 14px 24px;
    }

    body.mobile-contact-page .contactContainerV2 > .aboutUsV2,
    body.mobile-contact-page .contactContainerV2 > .contactFormV2 {
        width: 100% !important;
        margin: 0 0 16px !important;
        padding: 22px 18px;
        background: #ffffff;
        border: 1px solid rgba(17, 17, 17, 0.08);
        text-align: left;
        box-sizing: border-box;
    }

    body.mobile-contact-page .contactContainerV2 > .aboutUsV2 > .auTitleV2 {
        margin-bottom: 16px;
        padding-left: 12px;
        border-left: 3px solid #111111;
        font-family: Rubik, sans-serif;
        font-size: 12px !important;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    body.mobile-contact-page .contactContainerV2 > .aboutUsV2 > .auDescriptionV2 {
        margin-top: 0;
        font-family: Rubik, sans-serif;
        font-size: 15px !important;
        line-height: 1.8;
        color: #5d5953;
    }

    body.mobile-contact-page .contactContainerV2 > .aboutUsV2 > .auDescriptionV2 + .auDescriptionV2 {
        margin-top: 16px;
    }

    body.mobile-contact-page .contactContainerV2 > .aboutUsV2 > .contactInformationV2 {
        margin-top: 18px;
        color: #2f2a26;
        font-family: Rubik, sans-serif;
        font-size: 14px !important;
        line-height: 1.8;
    }

    body.mobile-contact-page .contactContainerV2 > .aboutUsV2 > .contactInformationV2 strong {
        display: block;
        margin-top: 12px;
        color: #111111;
        font-size: 11px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    body.mobile-contact-page .lh-contact-buttons--contact {
        justify-content: flex-start;
    }

    body.mobile-contact-page .contactContainerV2 > .contactFormV2 > .contactFormTitleV2 {
        margin-bottom: 18px;
        font-family: Rubik, sans-serif;
        font-size: 24px !important;
        line-height: 1.1;
        font-weight: 500;
    }

    body.mobile-contact-page .contactContainerV2 > .contactFormV2 > form > .formElement {
        margin-top: 14px !important;
        font-size: 14px;
    }

    body.mobile-contact-page .contactContainerV2 > .contactFormV2 > form > .formElement > label {
        display: block;
        margin-bottom: 8px;
        font-family: Rubik, sans-serif;
        font-size: 11px !important;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        line-height: 1.4;
    }

    body.mobile-contact-page .contactContainerV2 > .contactFormV2 > form > .formElement > input,
    body.mobile-contact-page .contactContainerV2 > .contactFormV2 > form > .formElement > textarea {
        width: 100% !important;
        padding: 12px 0 !important;
        border: 0 !important;
        border-bottom: 1px solid rgba(17, 17, 17, 0.16) !important;
        background: transparent;
        text-align: left !important;
        font-family: Rubik, sans-serif;
        font-size: 15px !important;
        color: #111111;
        box-sizing: border-box;
    }

    body.mobile-contact-page .contactContainerV2 > .contactFormV2 > form > .formElement > textarea {
        min-height: 120px;
        resize: vertical;
    }

    body.mobile-contact-page .contactContainerV2 > .contactFormV2 > form > .formElement > button {
        width: 100% !important;
        padding: 15px 16px;
        background: #111111;
        color: #ffffff;
        font-family: Rubik, sans-serif;
        font-size: 12px !important;
        font-weight: 700;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

    body.mobile-blog-page .blogContainer {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px;
        padding: 0 14px 24px;
    }

    body.mobile-blog-page .blogFiltersContainer,
    body.mobile-blog-page .blogItems {
        width: 100%;
        margin: 0;
    }

    body.mobile-blog-page .searchBlog > form {
        display: flex;
        align-items: center;
        gap: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(17, 17, 17, 0.14);
    }

    body.mobile-blog-page .blogFiltersContainer > .searchBlog > form > input[type=text] {
        width: 100% !important;
        padding: 0 !important;
        border: 0;
        background: transparent;
        font-family: Rubik, sans-serif;
        font-size: 14px !important;
    }

    body.mobile-blog-page .blogFiltersContainer > .searchBlog > form > button {
        border: none;
        background: transparent;
        font-size: 18px;
        color: #111111;
    }

    body.mobile-blog-page .blogCategoriesFilter {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    body.mobile-blog-page .blogCategoriesFilter > .bcfTitle {
        font-family: Rubik, sans-serif;
        font-size: 11px !important;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    body.mobile-blog-page .ulList {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 0;
        margin: 0;
    }

    body.mobile-blog-page .ulList li {
        margin: 0 !important;
        padding: 8px 12px;
        background: #ffffff;
        border: 1px solid rgba(17, 17, 17, 0.1);
        color: #111111;
        font-family: Rubik, sans-serif;
        font-size: 11px !important;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    body.mobile-blog-page .aBlogItem {
        color: inherit;
        text-decoration: none;
    }

    body.mobile-blog-page .blogItem {
        height: auto;
        margin-top: 20px;
        text-align: left;
        background: transparent;
    }

    body.mobile-blog-page .blogItem > img {
        width: 100%;
        height: 240px;
        object-fit: cover;
    }

    body.mobile-blog-page .blogItem > .blogInformations {
        width: 100%;
        margin-top: 12px;
    }

    body.mobile-blog-page .blogItem > .blogInformations > .blogPrice {
        margin: 0 0 8px;
        color: #8a857f !important;
        font-family: Rubik, sans-serif;
        font-size: 11px !important;
        font-weight: 500;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    body.mobile-blog-page .blogItem > .blogInformations > .blogTitle {
        color: #111111 !important;
        font-family: Rubik, sans-serif;
        font-size: 28px !important;
        font-weight: 500;
        line-height: 1.12;
    }

    body.mobile-blog-page .blogItem > .blogInformations > .blogDescription {
        display: -webkit-box !important;
        margin-top: 10px;
        overflow: hidden;
        color: #4e4943 !important;
        font-family: Rubik, sans-serif;
        font-size: 15px !important;
        line-height: 1.7 !important;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
    }

    body.mobile-blog-page .blogItem > .blogInformations > .blogBtns {
        margin-top: 14px;
    }

    body.mobile-blog-page .blogItem > .blogInformations > .blogBtns > .read-more {
        width: auto !important;
        color: #111111 !important;
        font-family: Rubik, sans-serif;
        font-size: 12px !important;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    body.mobile-blog-page .blogItems > .loadMoreBtn {
        width: 100% !important;
        max-width: 260px;
        margin: 28px auto 0 !important;
        padding: 14px 16px;
        background: #ffffff;
        color: #111111;
        font-family: Rubik, sans-serif;
        font-size: 12px !important;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        box-sizing: border-box;
    }

    body.mobile-blog-post-page .blogContainer {
        display: flex;
        flex-direction: column-reverse;
        gap: 22px;
        padding: 16px 14px 24px;
    }

    body.mobile-blog-post-page .blogContainer > .blogItemsV2,
    body.mobile-blog-post-page .blogContainer > .blogFiltersContainer {
        width: 100%;
        margin: 0;
    }

    body.mobile-blog-post-page .blogItemV2 > .blogDate {
        color: #8a857f;
        font-family: Rubik, sans-serif;
        font-size: 11px !important;
        font-weight: 500;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    body.mobile-blog-post-page .blogItemV2 > .blogTitleV2 {
        padding: 8px 0 12px !important;
        text-align: left !important;
        color: #111111;
        font-family: Rubik, sans-serif;
        font-size: 30px !important;
        line-height: 1.08;
        font-weight: 500;
    }

    body.mobile-blog-post-page .blogItemV2 > img {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 0 16px !important;
        object-fit: cover;
    }

    body.mobile-blog-post-page .blogItemV2 > .blogInformationsV2 {
        width: 100% !important;
        padding: 0 !important;
        color: #4e4943;
    }

    body.mobile-blog-post-page .blogDescriptionV2 {
        width: 100% !important;
        margin: 0 !important;
        color: #4e4943;
        font-family: Rubik, sans-serif;
        font-size: 15px !important;
        line-height: 1.85 !important;
    }

    body.mobile-blog-post-page .blogDescriptionV2 img,
    body.mobile-blog-post-page .blogDescriptionV2 iframe,
    body.mobile-blog-post-page .blogDescriptionV2 video {
        width: 100% !important;
        max-width: 100%;
        height: auto;
    }

    body.mobile-blog-post-page .blogDescriptionV2 table {
        display: block;
        width: 100% !important;
        overflow-x: auto;
    }

    body.mobile-blog-post-page .sharePost {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
        margin-top: 22px;
        padding: 16px 0;
        border-top: 1px solid rgba(17, 17, 17, 0.12);
        border-bottom: 1px solid rgba(17, 17, 17, 0.12);
        text-align: left !important;
    }

    body.mobile-blog-post-page .sharePost > span {
        margin-right: 2px;
        font-size: 11px !important;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: #111111;
    }

    body.mobile-blog-post-page .sharePost > i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px !important;
        height: 40px !important;
        margin-right: 0 !important;
        border: 1px solid rgba(17, 17, 17, 0.12);
        border-radius: 999px;
        font-size: 15px !important;
        color: #111111;
    }

    body.mobile-blog-post-page .categoryListOfPost {
        padding: 16px 0 0;
        width: 100%;
        text-align: left !important;
        color: #111111;
        font-family: Rubik, sans-serif;
    }

    body.mobile-blog-post-page .categoryListOfPost > span:nth-child(1) {
        display: block;
        margin-bottom: 10px;
        font-size: 11px !important;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    body.mobile-blog-post-page .categoryListOfPost > span.category {
        display: inline-flex;
        margin: 0 8px 8px 0;
        padding: 8px 12px;
        background: #ffffff;
        border: 1px solid rgba(17, 17, 17, 0.1);
        color: #111111 !important;
        font-size: 11px !important;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    body.mobile-blog-post-page .blogFiltersContainer {
        text-align: left;
    }

    body.mobile-blog-post-page .blogFiltersContainer > .searchBlog > form {
        display: flex;
        align-items: center;
        gap: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid rgba(17, 17, 17, 0.14);
    }

    body.mobile-blog-post-page .blogFiltersContainer > .searchBlog > form > input[type=text] {
        width: 100% !important;
        padding: 0 !important;
        border: 0;
        background: transparent;
        font-family: Rubik, sans-serif;
        font-size: 14px !important;
    }

    body.mobile-blog-post-page .blogFiltersContainer > .searchBlog > form > button {
        border: none;
        background: transparent;
        font-size: 18px;
        color: #111111;
    }

    body.mobile-blog-post-page .blogCategoriesFilter {
        margin-top: 16px;
    }

    body.mobile-blog-post-page .blogCategoriesFilter > .bcfTitle {
        margin-bottom: 10px;
        font-family: Rubik, sans-serif;
        font-size: 11px !important;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    body.mobile-blog-post-page .ulList {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        padding: 0;
        margin: 0;
    }

    body.mobile-blog-post-page .ulList li {
        margin: 0 !important;
        padding: 8px 12px;
        background: #ffffff;
        border: 1px solid rgba(17, 17, 17, 0.1);
        color: #111111;
        font-family: Rubik, sans-serif;
        font-size: 11px !important;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    body.mobile-blog-post-page .nlRegister {
        width: auto;
        margin: 0;
        padding: 0 14px 24px;
    }

    body.mobile-blog-post-page .nlRegister > .nlRegisterTitle {
        font-size: 24px !important;
        line-height: 1.15;
        font-weight: 500;
    }

    body.mobile-blog-post-page .nlRegister > .nlRegisterSubTitle {
        margin-top: 10px;
        font-size: 14px !important;
        line-height: 1.7;
        color: #5d5953;
    }

    body.mobile-blog-post-page .nlRegister > form {
        display: block;
        margin-top: 14px;
    }

    body.mobile-blog-post-page .nlRegister > form > input {
        width: 100%;
        margin: 0;
        padding: 12px 0;
        border: 0;
        border-bottom: 1px solid rgba(17, 17, 17, 0.16);
        background: transparent;
        text-align: left;
        font-family: Rubik, sans-serif;
        font-size: 15px !important;
        box-sizing: border-box;
    }

    body.mobile-blog-post-page .nlRegister > form > button {
        width: 100%;
        margin: 16px 0 0;
        padding: 15px 16px;
        background: #111111;
        color: #ffffff;
        font-family: Rubik, sans-serif;
        font-size: 12px !important;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        box-sizing: border-box;
    }

    body.mobile-products-page .productsCatalogShell {
        padding: 16px 14px 24px;
    }

    body.mobile-products-page .productsItems > .viewSettings {
        display: flex !important;
        flex-direction: column;
        align-items: stretch !important;
        gap: 12px;
        margin-bottom: 18px;
    }

    body.mobile-products-page .productsItems > .viewSettings > .countPiecesView {
        display: none;
    }

    body.mobile-products-page .productsItems > .viewSettings > .otherOptions {
        width: 100%;
        justify-content: stretch;
    }

    body.mobile-products-page .productsItems > .viewSettings > .otherOptions > .sortingOption {
        width: 100%;
    }

    body.mobile-products-page .productsItems > .viewSettings > .otherOptions > .sortingOption > select {
        width: 100%;
        height: 48px;
        padding: 0 14px;
        border: 1px solid rgba(17, 17, 17, 0.14);
        background: #ffffff;
        color: #111111;
        font-family: Rubik, sans-serif;
        font-size: 13px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    body.mobile-products-page .productsItems > .viewSettings > .otherOptions > .viewOnOption {
        display: none !important;
    }

    body.mobile-products-page .productsCatalogShell .mobile-filter-btn.catalogFiltersToggle {
        display: inline-flex;
        width: 100%;
        margin: 0 0 12px;
        justify-content: center;
        border-radius: 4px;
        background: #111111;
        box-shadow: none;
        color: #ffffff;
        font-family: Rubik, sans-serif;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    body.mobile-products-page .productsCatalogShell .catalogFiltersToggleIcon {
        width: 18px;
        height: 18px;
        background: transparent;
    }

    body.mobile-products-page .productsCatalogShell #productsContainerViewer.flexView {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px !important;
    }

    body.mobile-products-page .productsCatalogShell #productsContainerViewer.flexView > a.catalogProductLink > .catalogProductCard {
        position: relative;
        padding: 10px;
        border: 1px solid rgba(17, 17, 17, 0.08);
        border-radius: 0;
        background: #ffffff;
        box-shadow: none;
    }

    body.mobile-products-page .productsCatalogShell .catalogProductMedia {
        height: 170px !important;
        padding: 12px !important;
        border-radius: 0 !important;
        background: transparent;
        border: 0;
    }

    body.mobile-products-page .productsCatalogShell .catalogProductInfo {
        padding-top: 12px !important;
        gap: 8px !important;
    }

    body.mobile-products-page .productsCatalogShell .catalogProductCard .productTitle {
        min-height: 2.6em;
        text-align: center;
        font-family: Rubik, sans-serif;
        font-size: 16px !important;
        line-height: 1.3;
    }

    body.mobile-products-page .productsCatalogShell .catalogProductCard .productPrice {
        text-align: center;
        font-family: Rubik, sans-serif;
        font-size: 12px !important;
        color: #6d685f;
    }

    body.mobile-products-page .productsCatalogShell .catalogProductCard .productBtns,
    body.mobile-products-page .productsCatalogShell #productsContainerViewer.flexView > a.catalogProductLink > .catalogProductCard > .catalogProductInfo > .productBtns {
        display: block !important;
        position: static !important;
        width: 100% !important;
        margin: 12px 0 0 !important;
        margin-top: 12px !important;
    }

    body.mobile-products-page .productsCatalogShell #productsContainerViewer.flexView > a.catalogProductLink > .catalogProductCard > .catalogProductInfo > .productBtns > .catalogAddToCart {
        display: flex !important;
        width: 100%;
        min-height: 46px;
        align-items: center;
        justify-content: center;
        font-family: Rubik, sans-serif;
        font-size: 12px !important;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    body.mobile-products-page .productsCatalogShell #productsContainerViewer.flexView > a.catalogProductLink > .catalogProductCard > .catalogProductInfo > .productBtns > .catalogAddToFavorites {
        position: absolute !important;
        top: 12px;
        right: 12px;
        width: 42px !important;
        height: 42px !important;
        border-radius: 14px !important;
        background: #ffffff !important;
        box-shadow: 0 10px 24px rgba(17, 17, 17, 0.14);
    }

    body.mobile-products-page .productsCatalogShell .catalogProductCard .catalogAddToFavorites svg {
        width: 18px !important;
        height: 18px !important;
    }

    body.mobile-legacy-products-page .productsContainer {
        display: block;
        padding: 16px 14px 24px;
    }

    body.mobile-legacy-products-page .productsFilter {
        display: none;
    }

    body.mobile-legacy-products-page .productsItems {
        width: 100%;
    }

    body.mobile-legacy-products-page .viewSettings {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 18px;
    }

    body.mobile-legacy-products-page #productsContainerViewer.flexView {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 16px !important;
    }

    body.mobile-legacy-products-page #productsContainerViewer.flexView > a {
        width: 100%;
        color: inherit;
        text-decoration: none;
    }

    body.mobile-legacy-products-page #productsContainerViewer.flexView > a > .productItem {
        position: relative;
        display: flex !important;
        flex-direction: column;
        height: 100%;
        padding: 12px;
        background: #ffffff;
        border: 1px solid rgba(17, 17, 17, 0.08);
        box-sizing: border-box;
    }

    body.mobile-legacy-products-page #productsContainerViewer.flexView > a > .productItem > img {
        width: 100%;
        height: 160px;
        object-fit: contain;
        background: transparent;
    }

    body.mobile-legacy-products-page .productInformations {
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding-top: 12px;
    }

    body.mobile-legacy-products-page .productTitle {
        min-height: 2.6em;
        color: #111111;
        text-align: center;
        font-family: Rubik, sans-serif;
        font-size: 15px;
        line-height: 1.3;
    }

    body.mobile-legacy-products-page .productPrice {
        color: #6d685f;
        text-align: center;
        font-family: Rubik, sans-serif;
        font-size: 12px;
    }

    body.mobile-legacy-products-page .productBtns {
        display: block;
        position: static !important;
        width: 100% !important;
        margin: 12px 0 0 !important;
        margin-top: 12px;
    }

    body.mobile-legacy-products-page .addToCart {
        display: flex;
        width: 100%;
        min-height: 46px;
        align-items: center;
        justify-content: center;
        background: #111111;
        color: #ffffff;
        font-family: Rubik, sans-serif;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        box-sizing: border-box;
    }

    body.mobile-legacy-products-page .addToFavorites {
        position: absolute;
        top: 12px;
        right: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: #ffffff;
        border-radius: 14px;
        box-shadow: 0 10px 24px rgba(17, 17, 17, 0.14);
    }

    body.mobile-legacy-products-page .addToFavorites i {
        color: #111111;
        font-size: 16px;
    }

    body.mobile-product-page .productContainer {
        padding: 16px 16px 30px;
    }

    body.mobile-product-page:not(.modal-is-open) .orientation-lock-overlay {
        display: none !important;
    }

    body.mobile-product-page div.productBreadcrumber {
        padding: 0 0 10px;
        color: #8a857f;
        font-family: Rubik, sans-serif;
        font-size: 10px !important;
        line-height: 1.6;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    body.mobile-product-page div.productTopSection {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    body.mobile-product-page div.productTopSection > .imageSection {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    body.mobile-product-page div.productTopSection > .imageSection > .up-arrow,
    body.mobile-product-page div.productTopSection > .imageSection > .down-arrow {
        display: none;
    }

    body.mobile-product-page div.productTopSection > .imageSection > .viewPhoto {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1.15;
        margin: 0;
        padding: 18px;
        background: transparent;
        border: 1px solid rgba(17, 17, 17, 0.08);
        box-sizing: border-box;
    }

    body.mobile-product-page div.productTopSection > .imageSection > .viewPhoto > img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    body.mobile-product-page div.productTopSection > .imageSection > .photoGallery {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
        width: 100%;
        height: auto;
        margin: 0;
        overflow: visible;
    }

    body.mobile-product-page div.productTopSection > .imageSection > .photoGallery > img {
        width: 100%;
        aspect-ratio: 1;
        padding: 8px;
        background: transparent;
        border: 1px solid rgba(17, 17, 17, 0.08);
        object-fit: cover;
        box-sizing: border-box;
    }

    body.mobile-product-page .relativeProducts > div.relativeProductsItems > a > div.relativeProductsProduct > div.relativeProductsImg,
    body.mobile-product-page .relativeProducts > div.relativeProductsItems > a > div.relativeProductsProduct > div.relativeProductsImg > img,
    body.mobile-products-page .productsCatalogShell .catalogProductMedia > img,
    body.mobile-legacy-products-page #productsContainerViewer.flexView > a > .productItem > img {
        background: transparent !important;
    }

    body.mobile-product-page div.productTopSection > .shortInformationSection {
        width: 100%;
        text-align: left;
    }

    body.mobile-product-page div.productTopSection > .shortInformationSection > .pcTitle {
        font-size: 28px !important;
        line-height: 1.1;
        font-weight: 500;
        color: #111111;
    }

    body.mobile-product-page div.productTopSection > .shortInformationSection > .resultRating {
        display: none;
    }

    body.mobile-product-page div.productTopSection > .shortInformationSection > .pcPrice,
    body.mobile-product-page div.productTopSection > .shortInformationSection > .pcMonthsLeasing {
        margin-top: 8px;
        font-size: 15px !important;
        line-height: 1.5;
        color: #2f2a26;
    }

    body.mobile-product-page div.productTopSection > .shortInformationSection > .pcMonthsLeasing {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
        justify-content: flex-start;
        margin-left: 0;
    }

    body.mobile-product-page div.productTopSection > .shortInformationSection > .pcMonthsLeasing > .pcMonthsLeasingTitle {
        width: 100%;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: #655f58;
    }

    body.mobile-product-page div.productTopSection > .shortInformationSection > .pcMonthsLeasing > .monthLeasing {
        width: 38px;
        height: 38px;
        padding: 0;
        font-size: 13px;
    }

    body.mobile-product-page div.productTopSection > .shortInformationSection > .shortDescription {
        margin-top: 16px;
        font-size: 15px !important;
        line-height: 1.8 !important;
        color: #59544d;
    }

    body.mobile-product-page div.productTopSection > .shortInformationSection > .pcBtns {
        display: grid;
        grid-template-columns: 98px minmax(0, 1fr) 52px;
        gap: 10px;
        width: 100%;
        padding: 16px 0;
        margin-top: 18px;
        border-top: 1px solid rgba(17, 17, 17, 0.12);
        border-bottom: 1px solid rgba(17, 17, 17, 0.12);
        align-items: center;
        box-sizing: border-box;
    }

    body.mobile-product-page div.productTopSection > .shortInformationSection > .pcBtns > .counter {
        display: inline-flex;
        width: 100%;
        height: 48px;
        padding: 0 10px;
        border: 1px solid rgba(17, 17, 17, 0.14);
        box-sizing: border-box;
    }

    body.mobile-product-page div.productTopSection > .shortInformationSection > .pcBtns > .counter > span#plusCounter,
    body.mobile-product-page div.productTopSection > .shortInformationSection > .pcBtns > .counter > span#minusCounter,
    body.mobile-product-page div.productTopSection > .shortInformationSection > .pcBtns > .counter > span#numberCounter {
        width: 28px;
        text-align: center;
        font-family: Rubik, sans-serif;
    }

    body.mobile-product-page div.productTopSection > .shortInformationSection > .pcBtns > .counter > span#plusCounter,
    body.mobile-product-page div.productTopSection > .shortInformationSection > .pcBtns > .counter > span#minusCounter {
        font-size: 18px;
        font-weight: 500;
    }

    body.mobile-product-page div.productTopSection > .shortInformationSection > .pcBtns > .counter > span#numberCounter {
        font-size: 15px;
        color: #111111;
    }

    body.mobile-product-page div.productTopSection > .shortInformationSection > .pcBtns > .addToCartBtn {
        display: flex;
        width: auto;
        height: 48px;
        margin: 0;
        padding: 0 12px;
        align-items: center;
        justify-content: center;
        font-size: 12px !important;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    body.mobile-product-page div.productTopSection > .shortInformationSection > .pcBtns > .addToFavoritesBtn {
        display: flex;
        width: 52px;
        height: 48px;
        margin: 0;
        padding: 0;
        align-items: center;
        justify-content: center;
        font-size: 18px !important;
    }

    body.mobile-product-page .lh-contact-buttons--contact {
        margin-top: 16px;
        padding-top: 14px;
        border-top: 1px solid rgba(17, 17, 17, 0.12);
    }

    body.mobile-product-page .pc3DFile {
        margin-top: 16px;
        padding-top: 14px;
        border-top: 1px solid rgba(17, 17, 17, 0.12);
    }

    body.mobile-product-page .pc3DFile > span {
        display: block;
        margin-bottom: 10px;
        font-family: Rubik, sans-serif;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        color: #655f58;
    }

    body.mobile-product-page .pc3DFile-buttons {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    body.mobile-product-page .pc3DFile-button {
        width: 100%;
        min-height: 46px;
        border-radius: 0;
        font-size: 12px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        box-sizing: border-box;
    }

    body.mobile-product-page div.productTopSection > .shortInformationSection > .pcSku,
    body.mobile-product-page div.productTopSection > .shortInformationSection > .pcCategories {
        margin-top: 12px;
        font-family: Rubik, sans-serif;
        font-size: 12px !important;
        line-height: 1.6;
        color: #655f58;
    }

    body.mobile-product-page div.productBottomSection {
        margin-top: 30px;
    }

    body.mobile-product-page div.productBottomSection > .pbsBtns {
        justify-content: flex-start;
        gap: 18px;
        margin-bottom: 0;
        padding-bottom: 12px;
        border-bottom: 1px solid rgba(17, 17, 17, 0.12);
    }

    body.mobile-product-page div.productBottomSection > .pbsBtns > span {
        font-size: 12px !important;
        letter-spacing: 0.16em;
        text-transform: uppercase;
    }

    body.mobile-product-page div.productBottomSection > .longDescription {
        margin-top: 16px;
        color: #59544d;
        font-family: Rubik, sans-serif;
        font-size: 15px !important;
        line-height: 1.85 !important;
    }

    body.mobile-product-page .relativeProducts {
        padding: 34px 0 0;
        text-align: left;
    }

    body.mobile-product-page .relativeProducts > div.relativeProductsTitle {
        margin-bottom: 16px;
        font-size: 28px !important;
        line-height: 1.1;
        text-align: left;
        font-weight: 500;
    }

    body.mobile-product-page .relativeProducts > div.relativeProductsItems {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        margin-top: 0;
    }

    body.mobile-product-page .relativeProducts > div.relativeProductsItems > a {
        width: 100%;
    }

    body.mobile-product-page .relativeProducts div.relativeProductsItems > a > div.relativeProductsProduct {
        width: 100%;
        margin: 0;
    }

    body.mobile-product-page .relativeProducts > div.relativeProductsItems > a > div.relativeProductsProduct > div.relativeProductsCategories > div.categoriesContent {
        display: block;
        overflow: hidden;
        font-size: 11px !important;
        line-height: 1.5;
        color: #807b74;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    body.mobile-product-page .relativeProducts > div.relativeProductsItems > a > div.relativeProductsProduct > div.relativeProductsCategories > div.addToFavorite i {
        font-size: 16px !important;
    }

    body.mobile-product-page .relativeProducts > div.relativeProductsItems > a > div.relativeProductsProduct > div.relativeProductsTitle {
        margin-top: 8px;
        font-size: 14px !important;
        line-height: 1.35;
        color: #111111;
    }

    body.mobile-product-page .relativeProducts > div.relativeProductsItems > a > div.relativeProductsProduct > div.relativeProductsPrice {
        height: auto !important;
        margin-top: 8px !important;
        overflow: visible !important;
    }

    body.mobile-product-page .relativeProducts > div.relativeProductsItems > a > div.relativeProductsProduct > div.relativeProductsPrice > .relativeProductsPriceT,
    body.mobile-product-page .relativeProducts > div.relativeProductsItems > a > div.relativeProductsProduct > div.relativeProductsPrice > .relativeProductsButton {
        position: static !important;
        opacity: 1 !important;
        transform: none !important;
    }

    body.mobile-product-page .relativeProducts > div.relativeProductsItems > a > div.relativeProductsProduct > div.relativeProductsPrice > .relativeProductsPriceT {
        display: block;
        margin-bottom: 10px;
        color: #6d685f;
        font-size: 12px;
        line-height: 1.5;
    }

    body.mobile-product-page .relativeProducts > div.relativeProductsItems > a > div.relativeProductsProduct > div.relativeProductsPrice > .relativeProductsButton {
        display: flex;
        min-height: 42px;
        align-items: center;
        justify-content: center;
        padding: 10px 12px;
        background: #111111;
        color: #ffffff;
        font-family: Rubik, sans-serif;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        box-sizing: border-box;
    }

    body.mobile-conference-page .confHero2 {
        min-height: 520px;
        padding: 110px 18px 56px;
        align-items: flex-end;
        justify-content: flex-start;
        text-align: left;
    }

    body.mobile-conference-page .confHeroContent2 {
        max-width: 320px;
    }

    body.mobile-conference-page .confHeroTitle2 {
        font-size: 34px;
        line-height: 1.02;
        letter-spacing: 0.02em;
    }

    body.mobile-conference-page .confHeroSubtitle2 {
        margin-top: 8px;
        font-size: 14px;
    }

    body.mobile-conference-page .confHeroText2 {
        margin-top: 10px;
        font-size: 13px;
        line-height: 1.65;
        max-width: 270px;
    }

    body.mobile-conference-page .confWrapper2 {
        padding: 28px 14px 34px;
    }

    body.mobile-conference-page .twoCol2 {
        display: block;
        margin-bottom: 34px;
    }

    body.mobile-conference-page .twoCol2 > div + div {
        margin-top: 18px;
    }

    body.mobile-conference-page .title12 {
        margin-bottom: 10px;
        font-size: 28px;
        line-height: 1.1;
        letter-spacing: 0.02em;
        text-transform: none;
    }

    body.mobile-conference-page .text2 p,
    body.mobile-conference-page .text2 ul li {
        font-size: 14px;
        line-height: 1.7;
    }

    body.mobile-conference-page .grid2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    body.mobile-conference-page .card2 {
        border: 1px solid rgba(17, 17, 17, 0.08);
        border-radius: 0;
        box-shadow: none;
    }

    body.mobile-conference-page .card2 img {
        height: 150px;
    }

    body.mobile-conference-page .cardTitle2 {
        font-size: 12px;
        line-height: 1.4;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    body.mobile-conference-page .cardText2 {
        font-size: 13px;
        line-height: 1.6;
    }

    body.mobile-conference-page .logos-scroll {
        margin-top: 40px !important;
    }

    body.mobile-conference-page .trustedBy {
        font-size: 10px;
        letter-spacing: 0.18em;
    }

    body.mobile-conference-page .ctaSection2 {
        margin-top: 34px;
        padding: 28px 18px;
        background: #111111;
        color: #ffffff;
    }

    body.mobile-conference-page .ctaSection2 h2,
    body.mobile-conference-page .ctaSection2 p {
        color: #ffffff;
    }

    body.mobile-conference-page .ctaButton2 {
        display: block;
        width: 100%;
        margin-top: 16px;
        padding: 14px 18px;
        background: #ffffff;
        color: #111111;
        text-align: center;
        border-radius: 0;
        box-sizing: border-box;
    }
}
