:root {
    --body-background: rgb(255, 255, 255);
    --body-color: rgb(62, 62, 62);
    --body-font: "Roboto Condensed", sans-serif;
    --color-blueText: #2a97d3;
    --color-blueBg: #39a0d9;
    --color-blackText: #2e2d2d;
    --color-lightBlackText: #3e3e3e;
    --color-whiteText: #ffffff;
    --color-whiteBg: #ffffff;
    --color-orangeText: #f7863e;
    --color-orangeBg: #f7863e;
    --color-grayText: #818181;
    --color-grayBorder: #d6d6d6;
    --color-grayBg: #f4f4f4;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--body-background);
    color: var(--body-color);
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 24px;
}

html {
    scroll-padding-top: 156px;
}

body.lightbox-wrapper {
    overflow-y: scroll !important;
}

h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4 {
    font-weight: 700;
    text-transform: uppercase;
}

h2,
.h2 {
    font-size: 46px;
}

@media (max-width: 991.98px) {
    h2,
    .h2 {
        font-size: 36px;
    }
}

@media (min-width: 576px) {
    .container {
        padding-right: 0;
        padding-left: 0;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-right: 30px;
        padding-left: 30px;
    }
}

a {
    text-decoration: none;
}

.button {
    border-radius: 4px;
    background-image: -moz-linear-gradient( 0deg, rgb(254, 152, 61) 0%, rgb(245, 129, 62) 100% );
    background-image: -webkit-linear-gradient( 0deg, rgb(254, 152, 61) 0%, rgb(245, 129, 62) 100% );
    background-image: -ms-linear-gradient( 0deg, rgb(254, 152, 61) 0%, rgb(245, 129, 62) 100% );
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 19px 23px;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--color-whiteText);
}

.button:hover,
.button:focus {
    color: var(--color-whiteText);
    text-decoration: none;
}

.button_yellow {
    background: #ffc439;
}

.button_blue {
    color: var(--color-blueText);
    border-color: var(--color-blueText);
}

.button_framed {
    background: none;
    border-width: 2px !important;
    border-style: solid !important;
}

.button_blue.button_framed:hover,
.button_blue.button_framed:focus {
    color: var(--color-blueText);
    border-color: var(--color-blueText);
}

.button i {
    font-size: 24px;
}

.btn:focus {
    box-shadow: none;
}

.blue-gradient {
    background-image: -moz-linear-gradient( 0deg, rgb(42, 151, 211) 0%, rgb(103, 188, 235) 100% );
    background-image: -webkit-linear-gradient( 0deg, rgb(42, 151, 211) 0%, rgb(103, 188, 235) 100% );
    background-image: -ms-linear-gradient( 0deg, rgb(42, 151, 211) 0%, rgb(103, 188, 235) 100% );
}

.orange-gradient {
    background-image: -moz-linear-gradient( 0deg, rgb(254, 152, 61) 0%, rgb(245, 129, 62) 100% );
    background-image: -webkit-linear-gradient( 0deg, rgb(254, 152, 61) 0%, rgb(245, 129, 62) 100% );
    background-image: -ms-linear-gradient( 0deg, rgb(254, 152, 61) 0%, rgb(245, 129, 62) 100% );
}

.orange-text-gradient {
    background: #fe983d;
    background: linear-gradient(to left, #fe983d 0%, #f5813e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blue-text-gradient {
    background: #2b98d3;
    background: linear-gradient(to left, #66bceb 0%, #2b98d3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bottom-control {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 400;
    transition: .3s all;
}

@media(max-width: 991.98px) {
    .bottom-control {
        display: none;
    }
}

.bottom-control > * ~ * {
    margin-top: 5px;
}

.backtotop {
    --size: 50px;
    height: var(--size);
    width: var(--size);
    border-radius: 50%;
    color: var(--body-background);
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    cursor: pointer;
    transition: 0.4s all;
    user-select: none;
    z-index: 1031;
    border: 1px solid var(--body-background);
    background: radial-gradient(closest-side, var(--color-orangeBg) 79%, transparent 80% 100%), conic-gradient(#fff var(--progress, 0%), var(--color-orangeBg) 0)
}

.backtotop.show {
    opacity: 1;
    transition: 0.4s all;
    pointer-events: all;
}

.mobile-fixed-email-button {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    color: var(--color-whiteText);
    background-color: var(--color-orangeBg);
    background-image: url("/images/default/email-icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
    -webkit-transform: scale(1);
    transform: scale(1);
    z-index: 100;
    -webkit-transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
    -webkit-animation: bounce_border 5s ease-out 1.5s infinite;
    -webkit-transform-origin: 50% 50%;
    animation: bounce_border 5s ease-out 1.5s infinite;
    transform-origin: 50% 50%;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.mobile-fixed-email-button:hover {
    color: var(--color-whiteText);
}

.prevent-select {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}


.switch {
    --switch-height: 24px;
    --switch-width: 45px;
    --switch-button-radius: 18px;
    --switch-on-color: #2d99d4;
    --switch-off-color: #f5823e;
    --switch-button-color: #fff;
    --switch-border-radius: 34px;
    --switch-padding: calc((var(--switch-height, 0px) - var(--switch-button-radius, 0px)) / 2);
    position: relative;
    display: inline-block;
    width: var(--switch-width, 0px);
    height: var(--switch-height, 0px);
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--switch-off-color);
    transition: .3s;
}

.switch .slider:before {
    position: absolute;
    content: "";
    height: var(--switch-button-radius);
    width: var(--switch-button-radius);
    left: var(--switch-padding, 0px);
    bottom: var(--switch-padding, 0px);
    background-color: var(--switch-button-color);
    transition: .3s;
}

.switch input:checked + .slider {
    background-color: var(--switch-on-color);
}

.switch input:focus + .slider {
    box-shadow: 0 0 1px var(--switch-on-color);
}

.switch input:checked + .slider:before {
    left: calc(100% - var(--switch-button-radius, 0px) - var(--switch-padding, 0px));
}

.switch .slider.round {
    border-radius: var(--switch-border-radius, 0px);
}

.switch .slider.round:before {
    border-radius: 50%;
}


@media (min-width: 768px) {
    .bottom-control {
        opacity: 0.4;
    }

    .bottom-control:hover {
        opacity: 1;
    }
}

@keyframes bounce_border {
    0% {
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
    }

    17% {
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
    }

    22% {
        box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.1);
    }

    25% {
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
    }

    30% {
        box-shadow: 0 0 0 8px rgba(0, 0, 0, 0.1);
    }

    35% {
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
    }

    100% {
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.1);
    }
}

#cookie {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1030;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 30px;
}

#cookie-content {
    background: var(--color-whiteBg);
    border-radius: 5px;
    padding: 26px 27px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#cookie-content .cookie-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#cookie-content .cookie-info {
    font-size: 18px;
    line-height: 22px;
    color: var(--color-blackText);
}

#cookie-content .cookie-info .cookie_learn_more {
    display: block;
    margin-top: auto;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

#cookie-content .cookie-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

#cookie-content .cookie-buttons .button {
    border: 2px solid transparent;
    padding: 16px 40px;
}

#cookie-content .cookie-buttons #cookie_preferences_button.button {
    border: 2px solid var(--color-orangeBg);
    background: none;
    color: var(--color-orangeText);
}

.CookiePreferencesPopup .modal-header {
    position: absolute;
    right: 0px;
    z-index: 3;
}

.cookiepref h2.title {
    font-weight: 400;
    font-size: 22px;
    margin: 0;
}

.cookiepref div.company_name {
    font-size: 14px;
}

.cookiepref .nav a {
    font-size: 18px;
    color: var(--color-blackText) !important;
    padding: 5px 15px !important;
}

.cookiepref .nav a.active {
    color: var(--color-whiteText) !important;
    background-color: var(--color-orangeBg);
    border-radius: 0;
}

.cookiepref .main-body {
    display: flex;
    flex-direction: column;
}

.cookiepref .main-body .tabs .tab-pane:not(.active) {
    display: none;
}

.cookiepref .main-body .tabs .text {
    font-size: 14px;
}

.cookiepref .main-body .tabs .text a {
    color: var(--body-color);
}

.cookiepref .main-body .tabs .text > *:last-child {
    margin-bottom: 0;
}

.cookiepref .main-body .tabs h4 {
    font-weight: 400;
}

.cookiepref .line {
    position: relative;
    margin-top: 15px;
}

.cookiepref .line ~ .line {
    margin-top: 10px;
}

.cookiepref .line input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.cookiepref .line input + label,
.cookiepref .line.forced label {
    padding-left: 45px;
    cursor: pointer;
    transform: translateY(0px);
    display: inline;
}

.cookiepref .line input + label:before,
.cookiepref .line.forced label:before {
    content: "";
    width: 40px;
    height: 20px;
    display: block;
    background-color: #f38787;
    position: absolute;
    left: 0;
    top: 3px;
    border-radius: 20px;
    border: 1px solid #cccccc;
    transition: 0.2s all;
}

.cookiepref .line input + label:after,
.cookiepref .line.forced label:after {
    content: "";
    height: 18px;
    width: 18px;
    display: block;
    border-radius: 50%;
    background-color: var(--color-whiteBg);
    position: absolute;
    left: 1px;
    top: 4px;
    transition: 0.2s all;
}

.cookiepref .line input:checked + label:before,
.cookiepref .line.forced label:before {
    background-color: var(--color-blueBg);
}

.cookiepref .line input:checked + label:after,
.cookiepref .line.forced label:after {
    left: 20px;
}

.cookiepref .submit_cookie_form {
    border: none;
    margin-left: auto;
}

@media (min-width: 768px) {
    .cookiepref .main-body {
        display: flex;
        flex-direction: row;
        border-top: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
    }

    .CookiePreferencesPopup .modal-dialog {
        min-width: 700px;
    }

    .cookiepref .nav {
        width: 200px;
    }

    .cookiepref .nav a {
        width: 200px;
        max-width: 200px;
        transition: 0.2s all;
        padding: 20px 15px !important;
    }

    .cookiepref .nav a:not(.active):hover {
        background-color: #dfdfdf;
    }

    .cookiepref .main-body .tabs {
        border-left: 1px solid #ccc;
    }

    .CookiePreferencesPopup .modal-body {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 767.98px) {
    #cookie > .container {
        max-width: 100%;
    }

    #cookie-content {
        flex-direction: column;
        gap: 15px;
        max-width: 300px;
        align-items: stretch;
    }

    #cookie-content .cookie-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    #cookie-content {
        max-width: 100%;
    }
}

.breadscrumbs {
    position: relative;
    z-index: 1;
    background: var(--color-grayBg);
}

.breadscrumbs ul {
    list-style: none;
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    border-top: 1px solid #d6d6d6;
    color: #717171;
    font-size: 12px;
    margin: 0;
    padding: 0;
}

.breadscrumbs ul li a {
    color: #717171;
    padding: 10px 0;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.modal-content {
    border: none;
}

#modal_backdrop {
    opacity: .5;
}

.modal-backdrop {
    background-color: rgba(0, 0, 0, .35);
    backdrop-filter: blur(5px);
}

.modal-backdrop.show {
    opacity: 1;
}

.color-preview {
    width: 20px;
    height: 20px;
    display: inline-block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.advansys {
    color: #fff;
    font-family: Arial;
    font-weight: 700;
    letter-spacing: -0.015em;
}

.btn.btn-primary.bootbox-accept {
    background-image: -webkit-linear-gradient( 0deg, rgb(42, 151, 211) 0%, rgb(103, 188, 235) 100% );
    border: none;
}

/* Custom product basket item parts */
.custom-parts .parent-category-title {
    font-weight: 700;
}

.custom-parts .extra-data-info-row {
    display: flex;
    gap: 5px;
    text-transform: capitalize;
}
/* Custom product basket item parts end */

/* Saved custom product start */
.saved-custom-products-list {
    display: grid;
    gap: 10px;
}

.saved-custom-product {
    display: grid;
    grid-template: auto 1fr/ 140px 1fr auto;
    position: relative;
    column-gap: 40px;
    border-radius: 5px;
    padding: 20px 40px;
    box-shadow: 0px 0px 15px 7.5px rgba(0, 0, 0, 0.05);
    background: #fff;
}

.saved-custom-product .saved-custom-product-name {
    font-size: 22px;
    font-weight: 700;
    color: #3e3e3e;
}

.saved-custom-product .saved-custom-product-image-container {
    position: relative;
    grid-area: 1/1/span 2/span 1;
    max-height: 200px;
    height: 200px;
}

.saved-custom-product .saved-custom-product-image-container.top-cutted {
    overflow: hidden;
}

.saved-custom-product .image {
    object-fit: contain;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.saved-custom-product .saved-custom-product-image-container.top-cutted > .image,
.saved-custom-product .saved-custom-product-image-container.top-cutted .saved-custom-product-image-wrapper .product-part-image {
    --top-cutted-offset: 20px;
    inset: auto;
    left: 0;
    right: 0;
    top: calc(-1 * var(--top-cutted-offset, 0px));
    height: calc(100% + var(--top-cutted-offset, 0px));
}

.saved-custom-product .saved-custom-product-image-wrapper {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.saved-custom-product .saved-custom-product-image-wrapper .product-part {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.saved-custom-product .saved-custom-product-image-wrapper .product-part-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.saved-custom-product .gross,
.saved-custom-product .net {
    font-weight: 700;
    font-size: 22px;
}

.saved-custom-product .gross {
    grid-area: 3/3;
}

.saved-custom-product .net,
.saved-custom-product .date {
    display: none;
}

.saved-custom-products-list:not(:has(div))::before {
    content: "No doors saved yet";
}

.saved-custom-product .saved-product-categories {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    align-content: start;
}

.saved-custom-product .saved-custom-product-remove {
    grid-area: 1/3;
}

.saved-custom-product .category-title {
    font-weight: 700;
    text-transform: capitalize;
    grid-column: 1;
}

.saved-custom-product .category-values {
    grid-column: 2;
}

.saved-custom-product .category-title,
.saved-custom-product .category-values {
    font-size: 14px;
    line-height: 24px;
}

.saved-custom-product-remove::after {
    content: "\f00d";
    font-family: "Font Awesome 6 Pro";
    padding-left: 5px;
    line-height: 1;
}

/* Saved custom product end */
/* Save custom product quote */
.save-quote-form .selected-parts-data {
    margin-top: 20px;
}

.save-quote-form .selected-parts-data .category-name {
    font-weight: 700;
}

.save-quote-form .selected-parts-data .category-part {
    display: flex;
    gap: 5px;
}

.save-quote-form .selected-parts-data .part-name:has( + .part-value)::after {
    content: ":";
}

.save-quote-form .selected-parts-data .category:not(:has(.category-part)) {
    display: none;
}

.save-quote-form .selected-parts-data .category:has(> .category-parts > .category-part) {
    display: flex;
    gap: 10px;
}

.save-quote-form .selected-parts-data .category:has(.part-value) {
    display: initial !important;
}

.save-quote-form .selected-parts-data .category:has(.part-value) .category-parts {
    padding-left: 10px;
}

.save-quote-bootbox .bootbox-cancel {
    display: none;
}

.save-quote-bootbox .modal-header {
    border: none;
}

.save-quote-bootbox .modal-footer {
    border: none;
    background: #f4f4f4;
}

.save-quote-bootbox .modal-body {
    background: #f4f4f4;
}

.save-quote-bootbox .modal-title {
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.save-quote-bootbox .form-control {
    min-height: 50px;
    margin-top: 4px;
}

.save-quote-bootbox .modal-header,
.save-quote-bootbox .modal-footer,
.save-quote-bootbox .modal-body {
    padding: 20px;
}

.save-quote-bootbox .modal-header {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.save-quote-bootbox .modal-footer {
    justify-content: flex-start;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding-top: 0;
}

.save-quote-form .selected-parts-data .subcategories .category-name {
    text-transform: capitalize;
}

.save-quote-form .selected-parts-data .category-name {
    text-transform: uppercase;
}

.save-quote-bootbox .modal-header .btn-close {
    position: relative;
    bottom: 10px;
    left: 5px;
}

.save-quote-bootbox .form-control {
    border-radius: 7px;
    border: 1px solid #26262622;
}

.save-quote-form .selected-parts-data {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 25px;
    font-size: 14px;
}

.save-quote-form .selected-parts-data .category:has(> .category-parts > .category-part) .category-name::after {
    content: ":";
}

.save-quote-form .selected-parts-data .category:has(> .category-parts > .category-part) .category-name {
    font-weight: 400;
    text-transform: capitalize;
}

.save-quote-bootbox .category {
    order: 2;
}

.save-quote-bootbox .category:has(.category) {
    order: 1;
}

.save-quote-bootbox .bootbox-accept {
    width: 100%;
    min-width: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    background: var(--color-blueBg);
}

.save-quote-form .selected-parts-data > .category:not(:has(> .category-parts > .category-part)) > .category-name {
    margin-bottom: 10px;
}
/* Save custom product quote end*/

/* Survey form start */
.survey-form .selected-parts-data {
    margin-top: 20px;
}

.survey-form .selected-parts-data .category-name {
    font-weight: 700;
}

.survey-form .selected-parts-data .category-part {
    display: flex;
    gap: 5px;
}

.survey-form .selected-parts-data .part-name:has( + .part-value)::after {
    content: ":";
}

.survey-form .selected-parts-data .category:not(:has(.category-part)) {
    display: none;
}

.survey-form .selected-parts-data .category:has(> .category-parts > .category-part) {
    display: flex;
    gap: 10px;
}

.survey-form .selected-parts-data .category:has(.part-value) {
    display: initial !important;
}

.survey-form .selected-parts-data .category:has(.part-value) .category-parts {
    padding-left: 10px;
}

.survey-bootbox .bootbox-cancel {
    display: none;
}

.survey-bootbox .modal-header {
    border: none;
}

.survey-bootbox .modal-footer {
    border: none;
    background: #f4f4f4;
}

.survey-bootbox .modal-body {
    background: #f4f4f4;
}

.survey-bootbox .modal-title {
    letter-spacing: -0.025em;
    text-transform: uppercase;
}

.survey-bootbox .form-control {
    min-height: 50px;
    margin-top: 4px;
}

.survey-bootbox .modal-header,
.survey-bootbox .modal-footer,
.survey-bootbox .modal-body {
    padding: 20px;
}

.survey-bootbox .modal-header {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.survey-bootbox .modal-footer {
    justify-content: flex-start;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    padding-top: 0;
}

.survey-form .selected-parts-data .subcategories .category-name {
    text-transform: capitalize;
}

.survey-form .selected-parts-data .category-name {
    text-transform: uppercase;
}

.survey-bootbox .modal-header .btn-close {
    position: relative;
    bottom: 10px;
    left: 5px;
}

.survey-bootbox .form-control {
    border-radius: 7px;
    border: 1px solid #26262622;
}

.survey-form .selected-parts-data {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 25px;
    font-size: 14px;
}

.survey-form .selected-parts-data .category:has(> .category-parts > .category-part) .category-name::after {
    content: ":";
}

.survey-form .selected-parts-data .category:has(> .category-parts > .category-part) .category-name {
    font-weight: 400;
    text-transform: capitalize;
}

.survey-bootbox .category {
    order: 2;
}

.survey-bootbox .category:has(.category) {
    order: 1;
}

.survey-bootbox .bootbox-accept {
    width: 100%;
    min-width: 0;
    padding-top: 5px;
    padding-bottom: 5px;
    background: var(--color-blueBg);
    border: 1px solid var(--color-blueBg);
}

.survey-bootbox .bootbox-accept:hover,
.survey-bootbox .bootbox-accept:focus {
    background: var(--color-blueText);
    border-color: var(--color-blueText);
}

.survey-form .selected-parts-data > .category:not(:has(> .category-parts > .category-part)) > .category-name {
    margin-bottom: 10px;
}

.saved-custom-product .saved-custom-product-image-wrapper .product-part-image,
.saved-custom-product .image {
    object-position: top;
}
/* Survey form end*/

/* === globalheader === */.show-basket-popup {
    position: relative;
}

.basket-popup-body {
    position: absolute;
    right: 0;
    top: calc(100% + 15px);
    z-index: 999;
    min-width: 360px;
}

    .basket-popup-body .basket-popup-wrapper {
        background: #fff;
        border: 1px solid #000;
        width: 100%;
    }

    .basket-popup-body:before {
        content: "";
        color: #fff;
        font-weight: 600;
        position: absolute;
        top: -26px;
        right: 0px;
        font-size: 30px;
        width: 100%;
        height: 30px;
    }

    .basket-popup-body .items .popup-baket-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 300px;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #d2d2d2;
        width: 100% !important;
    }

        .basket-popup-body .items .popup-baket-item.item-hidden {
            display: none;
        }

    .basket-popup-body .items .item-list {
        padding: 15px;
    }

        .basket-popup-body .items .item-list div.popup-baket-item.item-visible-last {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

    .basket-popup-body .items .popup-baket-item .image {
        width: 80px;
        height: 80px;
        position: relative;
        overflow: hidden;
        border: 3px solid #fff;
        transition: 0.2s all;
    }

        .basket-popup-body .items .popup-baket-item .image a {
            text-decoration: none !important;
        }

        .basket-popup-body .items .popup-baket-item .image .btn-remove-item {
            position: absolute;
            z-index: 9;
            top: -3px;
            right: -3px;
            color: #fff;
            padding: 2px 4px;
            opacity: 0;
            pointer-events: none;
            background: #000;
            display: flex;
            width: 28px;
            height: 28px;
            align-items: center;
            justify-content: center;
            text-decoration: none !important;
            transition: 0.2s all;
        }

        .basket-popup-body .items .popup-baket-item .image:hover {
            cursor: pointer;
            border: 3px solid #000;
        }

            .basket-popup-body .items .popup-baket-item .image:hover .btn-remove-item {
                opacity: 1;
                pointer-events: all;
            }

        .basket-popup-body .items .popup-baket-item .image .btn-remove-item > i {
            font-size: 16px;
            transition: 0.2s all;
        }

        .basket-popup-body .items .popup-baket-item .image:hover .btn-remove-item > i {
            font-size: 20px;
        }

        .basket-popup-body .items .popup-baket-item .image:before {
            content: "";
            display: block;
            padding-bottom: 100%;
        }

        .basket-popup-body .items .popup-baket-item .image img {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%,-50%);
            width: 100%;
        }

    .basket-popup-body .items .popup-baket-item .description {
        padding: 0 10px;
        width: auto;
        flex: 1;
        text-align: left;
    }

        .basket-popup-body .items .popup-baket-item .description .product-title {
            color: #3e3e3e;
            font-size: 16px;
            font-weight: normal;
            margin-bottom: 0;
        }

        .basket-popup-body .items .popup-baket-item .description .price {
            color: #404040;
            font-size: 20px;
            font-weight: 700;
        }

        .basket-popup-body .items .popup-baket-item .description .price-vat {
            color: gray;
            font-size: 12px;
        }


    .basket-popup-body .basket-total {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        color: #404040;
        padding: 10px 20px;
        font-weight: bold;
        font-size: 20px;
    }

    .basket-popup-body .basket-control {
        display: flex;
        flex-direction: row;
        align-items: end;
        align-items: flex-end;
        justify-content: space-between;
        padding: 0px 20px 20px 20px;
    }

        .basket-popup-body .basket-control > a {
            background: #2f292b;
            color: #fff;
            text-decoration: none;
            padding: 7px 25px;
            display: block;
            font-family: Open Sans;
            font-size: 18px;
        }

            .basket-popup-body .basket-control > a.edit-my-basket {
                color: #4c4c4c !important;
                font-size: 13px;
                background: none;
                padding: 0;
            }

                .basket-popup-body .basket-control > a.edit-my-basket:hover {
                    text-decoration: underline;
                }

                .basket-popup-body .basket-control > a.edit-my-basket > i {
                    font-size: 14px !important;
                }

        .basket-popup-body .basket-control a.checkout-now {
            border: 2px solid #2f292b;
            transition: 0.2s all;
        }

            .basket-popup-body .basket-control a.checkout-now:hover {
                background: #fff;
                color: #000 !important;
                transform: scale(1.02);
            }

            .basket-popup-body .basket-control a.checkout-now:active {
                background: #fff;
                color: #000 !important;
                transform: scale(0.98);
            }


    .basket-popup-body .btn-remove-item {
        color: #000;
        font-size: 14px;
        cursor: pointer;
    }

        .basket-popup-body .btn-remove-item:hover {
            text-decoration: underline;
        }

    .basket-popup-body .items.v-items-scroll .scroll_arrow {
        background-color: #a6a6a6;
        width: 100%;
        height: 35px;
        background-repeat: no-repeat;
        background-position: 50% 50%;
        opacity: 0.4;
        transition: 0.2s all;
        cursor: pointer;
    }

        .basket-popup-body .items.v-items-scroll .scroll_arrow:hover {
            opacity: 1;
        }

        .basket-popup-body .items.v-items-scroll .scroll_arrow.scroll_up {
            background-image: url('/images/default/angle-up-icon.svg');
        }

        .basket-popup-body .items.v-items-scroll .scroll_arrow.scroll_down {
            background-image: url('/images/default/angle-down-icon.svg');
        }

@media(max-width: 575px) {
    .basket-popup-body {
        right: 15px;
        width: calc(100vw - 30px);
    }

        .basket-popup-body .items .popup-baket-item {
            width: 100%;
        }

            .basket-popup-body .items .popup-baket-item .image .btn-remove-item {
                opacity: 1;
                pointer-events: all;
            }
}

/* === popupbasket02 === */.add-to-basket-popup .modal-dialog {
    max-width: 400px;
    margin: 0 0 0 auto;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.35s ease;
}

.add-to-basket-popup.two-columns .modal-dialog {
    max-width: min(520px, 100dvw);
}

.add-to-basket-popup.two-columns .drawer-title br {
    display: none;
}

.add-to-basket-popup,
.add-to-basket-popup.fade {
    opacity: 1 !important;
    transition: transform 0.35s ease !important;
    z-index: 2500;
}

.add-to-basket-popup.fade .modal-dialog {
    transform: translateX(100%) !important;
    transition: transform 0.35s ease !important;
}

.add-to-basket-popup .bootbox-close-button {
    display: none;
}

.add-to-basket-popup .modal-header {
    display: none;
}

.add-to-basket-popup .modal-content {
    border: none;
    border-radius: 0;
    height: 100%;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
}

.add-to-basket-popup .modal-body,
.add-to-basket-popup .bootbox-body {
    padding: 0;
    height: 100%;
}

.add-to-basket-popup .modal-backdrop,
.add-to-basket-popup .modal-backdrop.fade,
.add-to-basket-popup .modal-backdrop.show {
    opacity: 0.45 !important;
    transition: none !important;
    backdrop-filter: blur(1px);
}

.add-to-basket-popup.show .modal-dialog {
    transform: translateX(0) !important;
}

.atb-pup {
    height: 100%;
}

.atb-pup .drawer {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
}

.atb-pup .drawer-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 30px;
    background: #fff;
}

.atb-pup .drawer-title {
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-orangeText, #f58220);
    letter-spacing: -0.025em;
    font-size: 24px;
    line-height: 1;
}

.atb-pup .drawer-close {
    background: none;
    border: none;
    padding: 0;
    font-size: 20px;
    color: #555;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 15px;
    right: 15px;
}

.atb-pup .drawer-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0;
}

.atb-pup .product-summary {
    display: flex;
    gap: 20px;
    background: #f4f4f4;
    padding: 20px 30px;
    border-bottom: 1px solid #d8d8d8;
}

.atb-pup .product-thumb {
    border: none;
    border-radius: 0;
    text-align: left;
    background: transparent;
    max-height: 180px;
    width: 160px;
    height: 180px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
}

.atb-pup .product-thumb img {
    position: absolute;
    inset: 0;
    max-width: 100%;
    max-height: 180px;
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.atb-pup .product-thumb.top-cutted > img.product-image,
.atb-pup .product-thumb.top-cutted .basket-custom-product-image-wrapper .product-part-image {
    --top-cutted-offset: 15px;
    inset: auto;
    left: 0;
    right: 0;
    top: calc(-1 * var(--top-cutted-offset, 0px));
    height: calc(100% + var(--top-cutted-offset, 0px));
}

.atb-pup .basket-custom-product-image-wrapper {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.atb-pup .basket-custom-product-image-wrapper .product-part {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.atb-pup .basket-custom-product-image-wrapper .product-part-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.atb-pup .product-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 25px 0;
    text-align: left;
    max-width: 240px;
}

.atb-pup .product-name {
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    letter-spacing: -0.025em;
}

.atb-pup .product-attrs {
    display: grid;
    gap: 4px;
    color: #4a4a4a;
    font-size: 14px;
}

.atb-pup .attr-row {
    display: flex;
    gap: 6px;
}

.atb-pup .attr-name {
    font-weight: 600;
    color: #2b2b2b;
    white-space: nowrap;
}

.atb-pup .product-qty {
    font-weight: 600;
    font-size: 14px;
}

.atb-pup .product-prices {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.atb-pup .price-main {
    color: #0081c6;
    font-size: 22px;
    font-weight: 800;
}

.atb-pup .price-sub {
    font-size: 13px;
    color: #5c5c5c;
}

.atb-pup .price-note {
    color: #8a8a8a;
    margin-left: 2px;
}

.atb-pup .product-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px 18px;
    background: #f4f4f4;
    padding: 20px 30px 0;
    flex: 1;
    overflow-y: auto;
    align-content: flex-start;
}

.two-columns .atb-pup .product-details {
    grid-template-columns: 1fr 1fr;
}

.atb-pup .custom-parts {
    display: contents;
}

.atb-pup .custom-product-category {
    display: flex;
    gap: 0;
    font-size: 14px;
    color: #3a3a3a;
    align-items: flex-start;
    flex-wrap: wrap;
}

.atb-pup .parent-category-title {
    font-weight: 400;
    text-transform: capitalize;
    font-size: 14px;
    color: #2b2b2b;
    line-height: 1.4;
}

.atb-pup .parts {
    padding-left: 0;
}

.atb-pup .custom-part-info {
    line-height: 1.5;
}

.add-to-basket-popup .product-details .custom-product-category:not(:has(.custom-part-info)) {
    display: none;
}

.add-to-basket-popup .product-details .custom-product-category .parent-category-title:only-child {
    display: block;
}

.add-to-basket-popup .product-details .custom-product-category .parts .custom-part-info {
    font-weight: 400;
}

.add-to-basket-popup .product-details .custom-parts > .custom-product-category {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.add-to-basket-popup .product-details .custom-parts > .custom-product-category > .parent-category-title {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

.add-to-basket-popup .product-details .custom-product-category .child-categories > .custom-product-category:has(> .parts .custom-part-info) > .parent-category-title::after {
    content: ":";
    margin-right: 4px;
}

.add-to-basket-popup .product-details .custom-product-category .child-categories {
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding-left: 0 !important;
}

.add-to-basket-popup .product-details .custom-product-category .child-categories > .custom-product-category {
    align-items: baseline;
    flex-wrap: nowrap;
}

.add-to-basket-popup .product-details .custom-product-category .child-categories > .custom-product-category > .parent-category-title {
    font-weight: 400;
    text-transform: capitalize;
    font-size: 14px;
}

.atb-pup .drawer-footer {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 30px;
    background: #f4f4f4;
}

.two-columns .atb-pup .drawer-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.atb-pup .drawer-footer .button {
    height: 44px;
    border-radius: 3px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    border: none;
}

.atb-pup .drawer-footer .blue-gradient {
    color: #fff;
}

.atb-pup .drawer-footer .orange-gradient {
    color: #fff;
}

.add-to-basket-popup .modal-footer {
    display: none;
}

.atb-pup .drawer-body {
    min-height: 0;
}

@media (max-width: 991px) {
    .add-to-basket-popup .modal-dialog {
        max-width: 100%;
        width: 100%;
    }
}

/* === addtobasket_popup === */header {
    position: sticky;
    top: 0px;
    z-index: 1030;
}

.navbar {
    --navdark: 0, 0, 0;
    --navlightdark: 45, 45, 45;
    padding: 0;
    flex-direction: column;
    background: #fff;
}

.navbar .top-header {
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    transition: 0.5s all;
}

.navbar .top-header a {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

.navbar.scrolled {
    box-shadow: 0px 5px 15px -10px rgba(0, 0, 0, 0.75);
}

.navbar.scrolled .top-header {
    height: 0px;
    padding: 0;
    overflow: hidden;
}

.navbar {
    flex-grow: 1;
}

.navbar .right-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    justify-content: flex-end;
    gap: 20px;
}

.navbar .right-buttons a {
    color: #000;
}

.navbar .right-buttons a.checkout-now {
    color: #fff;
}

.navbar .right-buttons i {
    font-size: 26px;
    color: #60b2de;
}

.navbar .right-buttons i.fa-spinner {
    font-size: 16px;
}

.navbar .right-buttons .title {
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
}

.navbar .right-buttons .subtitle {
    font-size: 12px;
    color: #959595;
}

.navbar .right-buttons .navbar-account-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.navbar .right-buttons .navbar-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
}

.navbar .right-buttons .navbar-button.phone-button {
    padding-right: 18px;
}

.navbar .saved-custom-products {
    padding-right: 30px;
}

.right-buttons .nav-basket-count {
    width: 30px;
    height: 30px;
    color: #3e3e3e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -18px;
    right: 5px;
    font-weight: bold;
}

.navbar-button {
    background: transparent;
    border: none;
}

.navbar .search-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0;
    position: relative;
    height: 42px;
    color: #fff;
}

.navbar .search-box #searchString {
    height: 40px;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0;
    background: none;
}

.navbar .search-box .form-control {
    background: none;
    border: none;
    outline: none;
    padding-top: 2px;
    padding-bottom: 2px;
    color: #fff;
}

.navbar .search-box #searchButton {
    height: 100%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0px 10px 0px 20px;
    font-size: 28px;
    color: #fff;
}

.navbar .search-box.has-error {
    border: 1px solid rgb(185, 74, 72);
    /*    background: rgb(255, 234, 234);*/
    position: relative;
}

.navbar .search-box.has-error div.error,
.navbar .search-box .form-control.error ~ div.error {
    width: auto;
    position: absolute;
    top: 100%;
    left: 0;
    color: #f00;
}

.navbar .search-box .help-block.form-error {
    color: rgb(185, 74, 72);
    position: absolute;
    left: 0px;
    top: 100%;
}

.navbar-brand {
    padding: 0;
    margin-right: 0px;
}

.logo {
    height: auto;
    max-width: 180px;
    max-height: 75px;
}

.navbar-container {
    position: relative;
    min-height: 105px;
}

.navbar-nav {
    background-color: var(--nav-mobile-backgroundcolor);
    width: 100%;
}

.basket-header .navbar-nav {
    border-bottom: 1px solid var(--color-grayBorder);
}

.nav-link {
    color: (((nav-link-color-mobile))) !important;
    border-bottom: 1px solid var(--navlink-mobile-bordercolor);
}

.nav-item.lvl1.show > .nav-link {
    color: #919191 !important;
}

.dropdown-item-menu .nav-link {
    min-width: 180px;
    display: flex;
    column-gap: 5px;
}

.item-dropdown .dropdown-item-menu {
    display: none;
}

.item-dropdown.show > .dropdown-item-menu {
    display: block;
    background: (((nav-mobile-backgroundcolor)));
}

.navbar-nav .dropdown-item-menu .back-btn {
    display: none;
}

.navbar-nav .dropdown-item-menu .parent-title {
    display: none;
}

.nav-item.item-dropdown .dropdown-switch .dd_caret:after {
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    margin-left: 5px;
    font-weight: 400;
}

.navbar .right-buttons .account_popup_dialog {
    right: auto;
    left: 0;
}

.navbar .right-buttons .account_popup_dialog:before {
    content: "";
    position: absolute;
    left: 0px;
    width: 110px;
    height: 40px;
    top: -40px;
}

.navbar .right-buttons .account_popup_dialog i {
    font-size: 18px;
}

.navbar .right-buttons .account_popup_dialog a:hover {
    color: #fff;
}

.navbar-phone {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    text-align: right;
}

.navbar-phone b {
    font-weight: 900;
}

.navbar-phone-button {
    float: right;
    margin: 10px 10px 0 -10px;
    padding: 2px 7px;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: var(--navbar-phone-icon);
}

.working-hours {
    font-size: 16px;
    font-weight: 400;
}

.dropdown-menu {
    margin: 0;
    border: none;
    border-radius: 0;
    background: #ccc;
}

.dropdown-item {
    color: #fff !important;
}

.dropdown-item.show {
    background: #ff9900;
}

.dropdown-toggle::after {
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    width: auto;
    height: auto;
    border: none;
    font-size: 15px;
    vertical-align: middle;
}

#navbar-menu {
    width: 100%;
    background-color: #f4f4f4;
    margin: 0;
    border-bottom: 1px solid lightgray;
}

/* Mobile offcanvas styling */
#navbar-menu .mobile-menu {
    display: none;
}

/* Override offcanvas-body alignment for mobile-menu */
#navbar-menu .mobile-menu {
    align-items: flex-start !important;
    justify-content: flex-start !important;
}

#navbar-menu .navbar-toggler {
    display: none;
}

.navbar .free_delivery {
    font-size: 14px;
    text-transform: uppercase;
    line-height: 14px;
}

.navbar .free_delivery span {
    margin-left: 15px;
}

.navbar .sales_line .orange {
    font-size: 18px;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 600;
}

.navbar .sales_line .small {
    color: #818181;
    font-size: 16px;
}

.navbar .sales_line a {
    color: var(--color-orangeText);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 36px;
    line-height: 1;
    font-weight: 700;
}

.saved-custom-products-btn .saved-custom-products-count {
    width: 30px;
    height: 30px;
    color: #3e3e3e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: absolute;
    top: -18px;
    right: 5px;
    font-weight: bold;
}

.predictivesearch {
    background-image: -webkit-linear-gradient( 0deg, rgb(42, 151, 211) 0%, rgb(103, 188, 235));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    transform: translateY(-50%);
    border-radius: 10px;
}

.sales_line,
.predictivesearch,
.navbar-benefits {
    transition: .3s all;
    opacity: 1;
    max-height: 100px;
    overflow: hidden;
}

.sales_line:not(.show),
.navbar-benefits:not(.show),
.predictivesearch:not(.show) {
    max-height: 0px;
    opacity: 0;
}

.predictivesearch .psresult {
    position: absolute;
    width: 100%;
    top: 100%;
    background-color: #fff;
    padding: 5px;
    z-index: 999;
    border: 1px solid #dbdbdb;
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
}

.predictivesearch .psresult .ps_line {
    display: flex;
    flex-direction: row;
    padding-bottom: 10px;
    border-bottom: 1px solid gainsboro;
    margin-bottom: 10px;
}

.predictivesearch .psresult .ps_line:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.predictivesearch .psresult .ps_line img {
    width: 60px;
    height: 60px;
    display: block;
    overflow: hidden;
    object-fit: cover;
}

.predictivesearch .psresult .ps_line .line_data {
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 0px 15px;
    text-align: left;
}

.predictivesearch .psresult .ps_line .line_data .name {
    font-size: 14px;
    color: #000;
}

.predictivesearch .psresult .ps_line .line_data .price {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
}

.predictivesearch .psresult .ps_showall {
    background-color: transparent;
    border: 0;
    outline: none !important;
    cursor: pointer;
}

.predictivesearch .psresult .ps_showall:hover {
    text-decoration: underline;
}

.predictivesearch .psresult .no_result {
    padding: 0px 6px;
    opacity: 0.7;
}

.account_popup_dialog {
    display: none !important;
}

.predictivesearch input::placeholder {
    color: currentColor;
    opacity: .7;
}

.navbar-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 40px;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}

.navbar-benefits .navbar-benefit i {
    color: var(--color-orangeText);
    padding-right: 5px;
}

.text-over-seach > .blue-text-gradient {
    font-size: 22px;
}

.navbar-brand-wrapper {
    display: flex;
    gap: 10px;
}

.navbar-brand-wrapper .vertical-line {
    display: block;
    width: 0;
    border-right: 3px solid #339cd6;
}

.navbar .box-shadow-wrapper {
    position: relative;
    width: 100%;
    box-shadow: 0px 5px 25px -15px;
}

.navbar .navbar-container {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
}

.navbar .saved-custom-products-btn .saved-custom-products-count::after {
    content: "\f004";
    font-family: "Font Awesome 6 Pro";
    margin-left: 2px;
}

.navbar-benefit {
    display: flex;
}

.nav-link[data-additional-color] > .color-preview {
    border-radius: 50%;
}

@media (min-width: 992px) {
    .navbar .dd_caret {
        display: none;
    }

    .navbar-nav {
        background: transparent;
        justify-content: space-between;
    }

    .nav-link {
        border: none;
    }

    .nav-item.lvl1 > .nav-link {
        padding: 12px 0 !important;
        font-size: 18px;
        color: var(--color-lightBlackText) !important;
        text-transform: uppercase;
        font-weight: bold;
        position: relative;
    }

    .nav-item.lvl1 > .nav-link::after {
        content: "";
        position: absolute;
        bottom: -1px;
        border-bottom: 2px solid transparent;
        left: 0;
        width: 100%;
        transition: .3s;
    }

    .nav-item.lvl1.show > .nav-link::after {
        border-bottom-color: #2e2d2d;
    }

    .nav-item.lvl2 > .nav-link::after {
        content: "";
        width: 100px;
        position: absolute;
        border-bottom: 2px solid var(--color-blueText);
        left: 0px;
        bottom: 0;
    }

    .nav-item.lvl1 > .nav-link br {
        display: none;
    }

    .dropdown-menu {
        margin-top: 15px;
        background: #000;
    }

    .dropdown-menu:after {
        content: "";
        position: absolute;
        top: -19px;
        height: 20px;
        left: 0;
        right: 0;
    }

    .dropdown-menu:before {
        content: "";
        position: absolute;
        top: -19px;
        left: 20px;
        border: 10px solid transparent;
        border-bottom: 9px solid #000;
    }

    .nav-item.item-dropdown.lvl2 > .dropdown-switch .dd_caret:after {
        display: none;
    }

    .nav-item.item-dropdown.show.lvl2 > .dropdown-switch .dd_caret:after {
        display: none;
    }

    .nav-item.lvl1 > .dropdown-item-menu {
        background: var(--color-grayBg);
        position: absolute;
        left: 50%;
        top: 100%;
        transform: translateX(-50%) translateY(-50%) scale(0);
        width: 100vw;
        padding: 45px 0px 35px;
        opacity: 0;
        pointer-events: none;
        transition: 0.3s all;
        display: block;
        box-shadow: 0px 4px 11px -4px rgba(0, 0, 0, 0.75);
    }

    .nav-item.lvl1.show > .dropdown-item-menu {
        pointer-events: all;
        transform: translateX(-50%) translateY(0%) scale(1);
        opacity: 1;
    }

    .nav-item.item-dropdown > .dropdown-item-menu > div > .navlinks-wrapper {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-start;
        flex-wrap: wrap;
        margin-top: calc(-1 * var(--bs-gutter-y));
        margin-right: calc(-0.5 * var(--bs-gutter-x));
        margin-left: calc(-0.5 * var(--bs-gutter-x));
    }

    .nav-item.item-dropdown > .dropdown-item-menu > div > .navlinks-wrapper > .nav-item {
        width: 25%;
        max-width: 25%;
        flex: 25% 1 1;
        padding-left: calc(0.5 * var(--bs-gutter-x));
        padding-right: calc(0.5 * var(--bs-gutter-x));
    }

    .nav-item.item-dropdown > .dropdown-item-menu .nav-link {
        color: var(--color-lightBlackText);
        text-decoration: none;
        text-transform: none;
        padding-left: 0;
        padding-right: 0;
    }

    .nav-item.lvl2 {
        display: flex;
        flex-direction: column;
    }

    .nav-item.lvl2 > .nav-link {
        width: 100%;
        display: block;
        min-width: 100%;
        padding: 0px 0px 15px;
        font-weight: 700;
        font-size: 18px;
        position: relative;
    }

    .nav-item.lvl2 .dropdown-item-menu {
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: all;
        width: 100%;
        background: transparent;
        padding: 10px 0px;
        display: block;
    }

    .nav-item.lvl2 .dropdown-item-menu > div > .navlinks-wrapper {
        flex-direction: column;
    }

    .nav-item.item-dropdown > .dropdown-item-menu > div > .navlinks-wrapper > .nav-item.lvl3 {
        width: 100%;
        flex: 100%;
        max-width: 100%;
    }

    .nav-item.item-dropdown > .dropdown-item-menu .nav-item.lvl3 > .nav-link {
        padding: 6px 0px;
        position: relative;
        font-size: 16px;
    }

    .door-gallery {
        display: grid;
        grid-template-columns: 1fr auto;
        column-gap: 30px;
        row-gap: 10px;
        align-items: start;
        grid-template-rows: auto 1fr;
        margin-top: 15px;
    }

    .door-gallery-image {
        width: 160px;
        height: 160px;
        object-fit: cover;
        object-position: center;
        grid-row: span 2;
    }

    .door-gallery-button {
        padding: 5px;
    }

    .door-gallery-text {
        font-weight: 400;
    }
}

@media (min-width: 1200px) {
    .navbar-expand-lg .navbar-nav {
        gap: 10px;
    }
}

@media (max-width: 1399.98px) {
    .door-gallery {
        column-gap: 20px;
    }

    .door-gallery-image {
        width: 130px;
        height: 130px;
    }

    .nav-item.lvl1 > .nav-link {
        text-align: center;
    }
}

@media (max-width: 1199.98px) {
    .nav-item.lvl1 > .nav-link br {
        display: block;
    }

    .door-gallery {
        column-gap: 15px;
    }

    .door-gallery-image {
        width: 100px;
        height: 100px;
    }

    .navbar-benefits {
        gap: 8px 12px;
        padding-left: 8px;
    }

    .text-over-seach > .blue-text-gradient {
        font-size: 18px;
    }

    .navbar .sales_line a {
        font-size: 26px;
    }
}

@media (max-width: 991.98px) {
    :root {
        --head-height: 60px;
    }

    .logo {
        max-width: none;
        height: var(--head-height);
    }

    .hamburger.button {
        padding: 0;
        width: var(--head-height);
        height: var(--head-height);
        position: relative;
    }

    .hamburger.button:focus {
        outline: none;
        box-shadow: none;
    }

    .hamburger .hamburger-box {
        display: block;
        width: 20px;
        height: 2px;
        background: var(--color-whiteBg);
        position: relative;
    }

    .hamburger .hamburger-box:before {
        content: " ";
        display: block;
        width: 20px;
        height: 2px;
        background: var(--color-whiteBg);
        position: absolute;
        left: 0;
        top: -7px;
    }

    .hamburger .hamburger-box:after {
        content: " ";
        display: block;
        width: 20px;
        height: 2px;
        background: var(--color-whiteBg);
        position: absolute;
        left: 0;
        bottom: -7px;
    }

    .navbar .search-box {
        height: var(--head-height);
    }

    .navbar .search-box #searchButton {
        padding: 0px 0px 0px 15px;
        font-size: 30px;
    }

    .navbar .search-box #searchButton em {
        font-size: 30px;
    }

    #navbar-menu {
        width: 100%;
        background-color: var(--color-grayBg);
        margin: 0;
        position: fixed;
        left: 0;
        top: 0;
        height: 100%;
        max-width: 320px;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        overflow-x: clip;
        overflow-y: scroll;
    }

    #navbar-menu .container {
        background: var(--color-whiteBg);
    }

    #navbar-menu .mobile-menu-search {
        padding: 16px;
    }

    #navbar-menu #form-search label {
        display: none;
    }

    #navbar-menu #form-search .search-box {
        position: relative;
    }

    #navbar-menu #searchButton {
        border: none;
        background: none;
        color: var(--color-blueText);
        font-size: 30px;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    #navbar-menu #form-search .form-control {
        border-radius: none;
        border: none;
        height: 60px;
        padding-left: 50px;
        border-bottom: 1px solid var(--color-grayBg);
    }

    #navbar-menu #form-search .form-control:focus,
    #navbar-menu #form-search .form-control:hover {
        outline: none;
        box-shadow: none;
    }

    #navbar-menu .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 30px;
        padding-top: 55px;
        padding-bottom: 30px;
        border: none !important;
    }

    #navbar-menu .nav-item {
        width: 100%;
    }

    #navbar-menu .nav-link {
        display: flex;
        justify-content: space-between;
    }

    #navbar-menu .nav-item.lvl1 > .nav-link {
        text-align: left;
        padding: 0 !important;
        text-transform: none;
        color: var(--color-lightBlackText) !important;
        font-weight: bold;
    }

    #navbar-menu .nav-item.lvl1 > .nav-link br {
        display: none;
    }

    .nav-item.item-dropdown .dropdown-item-menu .nav-link {
        color: var(--color-blueText);
        text-decoration: none;
        text-transform: none;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    #navbar-menu .mobile-menu {
        display: block;
        background: var(--color-grayBg);
        padding: 30px;
        flex-grow: 1;
    }

    #navbar-menu .mobile-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    #navbar-menu .mobile-menu ul li a {
        display: block;
        font-size: 16px;
        line-height: 36px;
        text-decoration: none;
        color: var(--color-lightBlackText);
    }

    #navbar-menu .navbar-toggler {
        display: none;
        background: none !important;
        border: none !important;
        position: absolute;
        right: 0;
        top: 0;
        z-index: 9;
        align-items: center;
        justify-content: center;
    }

    #navbar-menu .navbar-toggler.hamburger .hamburger-box {
        background: var(--color-lightBlackText);
        transform: rotate(45deg);
        transform-origin: center center;
        position: relative;
    }

    #navbar-menu .navbar-toggler.hamburger .hamburger-box:before {
        display: none;
    }

    #navbar-menu .navbar-toggler.hamburger .hamburger-box:after {
        content: " ";
        display: block;
        width: 20px;
        height: 2px;
        background: var(--color-lightBlackText);
        transform: rotate(-90deg);
        transform-origin: center center;
        position: absolute;
        top: 0;
        left: 0;
    }

    .navbar-benefits {
        display: none;
    }

    .navbar-brand-wrapper {
        flex-grow: 1;
    }

    .navbar .navbar-container {
        column-gap: 20px;
    }

    #navbar-menu .dropdown-item-menu .container {
        padding: 0;
        max-width: 100%;
        width: 100%;
    }

    #navbar-menu ul.navbar-nav {
        margin-left: -15px;
        margin-right: -15px;
    }

    #navbar-menu > .container {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    #navbar-menu .navbar-nav {
        position: static;
        overflow: visible;
    }

    #navbar-menu .nav-item.item-dropdown {
        position: static;
    }

    #navbar-menu .nav-item.item-dropdown > .dropdown-item-menu {
        display: block;
        position: absolute;
        inset: 0;
        padding: 22px 30px 24px;
        background: var(--color-whiteBg);
        transform: translateX(-100%);
        transition: transform 0.35s ease-in-out;
        z-index: 2;
        overflow-y: auto;
        height: 100%;
    }

    #navbar-menu .nav-item.item-dropdown.show > .dropdown-item-menu {
        transform: translateX(0);
    }

    #navbar-menu .dropdown-item-menu .dropdown-item-menu {
        padding-top: 5px;
    }

    #navbar-menu .nav-item:has(> .door-gallery) {
        display: none;
    }

    #navbar-menu .dropdown-item-menu .back-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: none;
        border: none;
        color: var(--color-lightBlackText);
        padding: 8px 0;
        font-weight: 700;
        text-transform: uppercase;
    }

    #navbar-menu .dropdown-item-menu .back-btn::before {
        content: "\f104";
        font-family: "Font Awesome 6 Pro";
        font-weight: 400;
        font-size: 20px;
    }

    #navbar-menu .dropdown-item-menu .back-btn span {
        display: none;
    }

    #navbar-menu .dropdown-item-menu > .parent-title {
        display: block;
        font-size: 20px;
        font-weight: 700;
        color: var(--color-lightBlackText);
        margin-top: 10px;
        margin-bottom: 12px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #navbar-menu .dropdown-item-menu > .container {
        padding-top: 5px;
    }

    .navbar .search-box {
        justify-content: flex-end;
    }

    .navbar .right-buttons .navbar-account-button {
        flex-direction: row;
    }

    .navbar-nav .nav-link {
        font-size: 18px;
    }

    .navbar .right-buttons .title {
        display: none;
    }

    .navbar .search-box {
        background: none;
        border: none;
        border-radius: 0;
    }

    .navbar .search-box #searchButton em {
        color: var(--color-blueText);
        font-size: 30px;
    }

    .navbar .search-box #searchButton {
        padding: 0;
    }

    .navbar .search-box .form-control {
        display: none;
    }

    .navbar .right-buttons .search-toggle {
        border: 0;
        background: none;
        cursor: pointer;
    }

    .nav-link[data-additional-color] > .color-preview {
        border: 1px solid lightgray;
    }

    .nav-link:has(.color-preview) {
        padding-left: 27px;
        position: relative;
    }

    .color-preview {
        position: absolute;
        left: 0;
    }
}


@media (max-width: 767px) and (min-width: 576px) {
    .navbar {
        width: auto;
    }
}

@media (max-width: 575.98px) {
    :root {
        --head-height: 45px;
    }

    .navbar .right-buttons .navbar-button {
        padding: 0;
    }

    .navbar .right-buttons {
        width: 100%;
        justify-content: flex-end;
    }

    .navbar {
        width: auto;
    }

    .navbar .right-buttons .saved-custom-products-btn .saved-custom-products-count {
        top: -17px;
        right: -22px;
    }

    .navbar .right-buttons .navbar-button .nav-basket-count {
        top: -17px;
        right: -14px;
    }

    .navbar #form-search {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        background: #fff;
    }

    .navbar #form-search:hover {
        display: block !important;
        z-index: 999;
    }

    .navbar .search-box .help-block.form-error {
        display: none !important;
    }

    .navbar.scrolled {
        margin-top: 0;
        border-bottom: 1px solid #dbdbdb;
    }

    .navbar.scrolled .right-buttons {
        height: 60px;
    }

    .navbar .navbar-container {
        column-gap: 10px;
    }

    .navbar-benefits,
    .navbar .sales_line,
    .navbar-brand-wrapper .vertical-line {
        display: none !important;
    }

    .navbar-container {
        min-height: 80px;
    }

    .navbar .right-buttons {
        gap: 0;
    }

    .navbar .top-header {
        display: none;
    }
}


@media (min-width: 992px) and (max-width: 1199.98px), (min-width: 992px) and (max-height: 900px) {
    .nav-item.lvl1 > .nav-link {
        font-size: 14px;
    }

    .navbar-benefits {
        font-size: 12px;
    }

    .logo {
        max-height: 56px;
    }

    .text-over-seach > .blue-text-gradient {
        font-size: 16px;
    }

    .navbar .sales_line a {
        font-size: 22px;
    }

    .sales_line, .predictivesearch, .navbar-benefits {
        font-size: 14px;
    }

    .navbar .sales_line .small {
        font-size: 14px;
    }

    .text-over-seach {
        font-size: 14px;
        line-height: 1.3;
    }
}

/* === nav-04-ecommerce === */.carousel-01 {
  --desktoph: 600px;
  --tableth: 600px;
  --mobileh: 500px;
  background-color: #f4f4f4;
}

.carousel-01 .carousel-inner {
  border-radius: 7px;
}

.carousel-01 .carousel-inner .container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: (((carousel-01-align)));
}

.carousel-01 .carousel-inner .carousel-caption {
  top: 50%;
  left: 95px;
  transform: translateY(-50%);
  text-align: inherit;
  width: 330px;
  bottom: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.page404 .carousel-01 .carousel-inner .carousel-caption {
  left: 0;
  width: 100%;
}

.carousel-01 .carousel-caption-title {
  margin-bottom: 5px;
  font-size: 68px;
  line-height: 18px;
  color: var(--color-blackText);
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: -2px;
}

.carousel-01 .carousel-caption-title strong,
.carousel-01 .carousel-caption-title span {
  font-size: 125px;
  line-height: 70px;
  color: var(--color-blueText);
}

.carousel-01 .carousel-caption-text {
  font-size: 20px;
  line-height: 26px;
  margin: 0;
  color: var(--color-lightBlackText);
  text-align: center;
  margin-top: 25px;
}

.page404 .carousel-01 .carousel-caption-text {
  margin-top: 35px;
}

.carousel-01 .carousel-caption .btn {
  margin-top: 20px;
}

.carousel-01 .carousel-caption .btn i {
  font-size: 22px;
  line-height: 16px;
  margin-left: 10px;
  margin-right: -10px;
  transform: translateY(1px);
}

.carousel-01 .link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.carousel-01 .carousel-item {
  overflow: hidden;
}

.carousel-01 .carousel-inner .prev-slide,
.carousel-01 .carousel-inner .next-slide {
  position: absolute;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2;
  opacity: 0.3;
  transition: opacity 0.3s;
}

.carousel-01 .carousel-inner .prev-slide:hover,
.carousel-01 .carousel-inner .next-slide:hover {
  opacity: 0.8;
}

.carousel-01 .carousel-inner .prev-slide {
  left: 45px;
}

.carousel-01 .carousel-inner .next-slide {
  right: 45px;
}

.carousel-01 .carousel-inner .slick-dots {
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
}

.carousel-01 .carousel-inner .slick-dots > li {
  cursor: pointer;
  font-weight: 600;
}

.carousel-01 .carousel-inner .slick-dots > li button {
  display: none;
}

.carousel-01 .carousel-inner .slick-dots > li:before {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  color: #fff;
  opacity: 0.2;
  padding: 5px;
  transition: opacity 0.3s;
  cursor: pointer;
}

.carousel-01 .carousel-inner .slick-dots > li:hover:before {
  opacity: 0.6;
}

.carousel-01 .carousel-inner .slick-dots > li.slick-active:before {
  opacity: 0.8;
}

.carousel-01 .carousel-item {
  height: var(--desktoph);
  position: relative;
}

.carousel-01 .carousel-item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: calc(100% + 1px);
  width: calc(100% + 1px);
  object-fit: cover;
}

.carousel-01 .carousel-item:before {
  content: "";
}

.carousel-01 .button::after {
    content: "";
    -webkit-mask: url(/images/favicon/favicon-32x32.png/);
    display: inline-block;
    height: 1em;
    aspect-ratio: 1;
    background: #fff;
    -webkit-mask-size: contain;
}

@media screen and (max-width: 1199px) {
  .carousel-01 .carousel-inner .carousel-caption {
    left: 50px;
  }
  .page404 .carousel-01 .carousel-inner .carousel-caption {
    left: 0;
  }
  .carousel-01 .carousel-item {
    height: 550px;
  }
}

@media screen and (max-width: 991.98px) {
  .carousel-01 > .container,
  .carousel-01 > .container > .row > .col-12 {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .carousel-01 > .container > .row {
    margin-left: 0;
    margin-right: 0;
  }
  .carousel-01 .carousel-inner {
    border-radius: 0;
  }
  .carousel-01 .carousel-item {
    height: var(--tableth);
  }

  .carousel-01 .carousel-inner .container {
    position: static;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .carousel-01 .carousel-inner .carousel-caption {
    position: static;
    transform: none;
    z-index: 9;
  }
}

@media screen and (max-width: 767px) {
  .carousel-01 .carousel-item {
    height: var(--mobileh);
  }

  .carousel-01 .carousel-inner .prev-slide {
    left: 15px;
  }

  .carousel-01 .carousel-inner .next-slide {
    right: 15px;
  }

  .carousel-01 .carousel-inner .container {
    align-items: center;
    justify-content: flex-end;
  }

  .carousel-01 .carousel-caption-title {
    margin-bottom: 35px;
    text-align: center;
    line-height: 1;
  }

  .carousel-01 .carousel-caption-title strong,
  .carousel-01 .carousel-caption-title span {
    line-height: 15px;
  }

  .carousel-01 .carousel-inner .carousel-caption {
    padding-bottom: 45px;
  }

  .carousel-inner::after {
    width: 100%;
    height: 40%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
  }
}

@media screen and (max-width: 575px) {
  .carousel-01 .carousel-item {
    height: var(--mobileh);
  }

  .carousel-01 .carousel-item:after {
    content: "";
    padding-bottom: 100%;
    display: block;
  }

  .carousel-01 .carousel-item img {
    object-position: 70%;
  }
}

.carousel-01 .hidden-h1 {
  position: absolute;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  width: 0px;
  height: 0px;
}

/* === carousel-01 === */.mt4row {
  padding: 35px 0px;
  background-color: #f4f4f4;
}

.mt4row .tag-row {
  gap: 60px;
}

.mt4row .tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.mt4row .tag img {
  max-width: 68px;
  max-height: 36px;
}

.mt4row .tag .text {
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
  color: #3e3e3e;
}
.mt4row .tag .text b {
  font-weight: 900;
}

.mt4row .tag .text p {
  margin-bottom: 0;
}

.mt4row .tag .text > *:last-child {
  margin-bottom: 0;
}
@media (max-width: 1199.98px) {
  .mt4row .tag-row {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media (max-width: 991.98px) {
  .mt4row .tag-row {
    padding-left: 0;
    padding-right: 0;
    gap: 0;
    flex-wrap: nowrap;
  }
}
@media (max-width: 767.98px) {
  .mt4row .tag-row {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .mt4row .tag-row::-webkit-scrollbar {
    -webkit-appearance: none;
    display: none;
  }

  .mt4row .tag-row .col {
    flex-basis: 33.3333%;
  }
}
@media (max-width: 575.98px) {
  .mt4row .tag-row .col {
    flex-basis: 100%;
  }
}

/* === main-tags-4-in-row === */.content-01 {
  padding: 50px 0;
  text-align: center;
  background-color: (((content-01-background)));
  color: var(--content-01-color);
}

.content-01-title {
    margin-bottom: 0;
}

h3.content-01-title{
  font-style: italic;
}

.content-01-text {
   margin-top: 20px;
}

.content-01 .arrow-wrapper {
    font-size: 26px;
}
/* === content-01 === */.feat05 {
    padding-bottom: 20px;
}

.feat05 .row {
    --bs-gutter-x: 12px;
    --bs-gutter-y: var(--bs-gutter-x);
}

.feat05 .item {
    position: relative;
    overflow: hidden;
    padding: 30px 32px;
    border-radius: 7px;
    height: 100%;
    min-height: 260px;
    display: flex;
    flex-direction: column;
}

.feat05 .item .title {
    min-height: 110px;
    position: relative;
    z-index: 3;
}

.feat05 .item .title * {
    font-size: 36px;
    line-height: 1;
    color: #fff;
    font-weight: 600;
}

.feat05 .item .title *:last-child {
    margin-bottom: 0px;
}

.feat05 .item .bg-image {
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    height: 100%;
    width: 100%;
    filter: brightness(.6);
}

.feat05 .item::before {
    content: "";
    position: absolute;
    inset: 0;
    backdrop-filter: blur(4px);
    -webkit-mask: radial-gradient(circle, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 15%, rgba(0,0,0,0) 50%);
    width: 200%;
    height: 200%;
    transform: translate(-45%, -15%);
    z-index: 1;
}

@-moz-document url-prefix() {
    .feat05 .item::before {
        backdrop-filter: none;
    }
}

.feat05 .item::after {
    content: "";
    position: absolute;
    left: -15%;
    top: 0px;
    background: #fff;
    width: 45%;
    height: 120%;
    transform: rotate(-18deg);
    opacity: .2;
    z-index: 2;
    transition: .3s all;
}

.feat05 .item .button {
    display: inline-flex;
    padding: 0 !important;
    width: 60px;
    height: 60px;
    margin-top: auto;
    position: relative;
    z-index: 3;
}

.feat05 .item .button i {
    font-size: 20px;
}

.feat05 .item a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}

.feat05 .item .hover-overlay {
    inset: 0;
    position: absolute;
    background: black;
    opacity: 0;
    transition: .3s all;
    pointer-events: none;
}

.feat05 .item:hover .hover-overlay {
    opacity: .35;
}

@media (max-width: 1199.98px) {
    .feat05 .item .title * {
        font-size: 32px;
    }
}

@media (max-width: 767.98px) {
    .feat05 .item {
        padding: 30px;
    }
}

@media (max-width: 575.98px) {
    .feat05 .item .button {
        display: none;
    }

    .feat05 .item {
        padding: 35px 30px;
    }
}

/* === featurettes-05-6-items === */.dots-interactive {
    padding: 125px 0;
    position: relative;
    overflow: hidden;
    --column-gap: 140px;
    --image-max-height: 555px;
}

.dots-interactive-flex-container {
    display: flex;
    gap: var(--column-gap);
    padding: 0 85px;
}

.dots-interactive-image-col {
    flex: 0 0 auto;
}

.dots-interactive-image-wrapper {
    position: relative;
    display: inline-block;
}

.dots-interactive-main-image {
    width: 100%;
    max-height: var(--image-max-height);
    height: auto;
    object-fit: contain;
    display: block;
}

.dots-interactive-point {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 10;
    transition: transform 0.2s, box-shadow 0.2s;
}

.dots-interactive-point:hover,
.dots-interactive-point.active {
    transform: translate(-50%, -50%) scale(1.3);
    border: 3px solid #fff;
}

.dots-connectors-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 8;
}

.dots-connector-path {
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: opacity 0.3s;
    shape-rendering: crispEdges;
}

.dots-connector-path.active {
    opacity: 1;
    animation: drawConnector 0.6s ease-out forwards;
}

@keyframes drawConnector {
    0% {
        stroke-dashoffset: 1000;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.dots-interactive .block-title {
    margin-bottom: 20px;
    line-height: 1;
}

.dots-interactive .block-title .orange {
    color: #f7941d;
}

.dots-interactive-legend {
    margin: 0px 0;
    list-style: none;
    padding: 0;
    display: grid;
    gap: 10px;
}

.dots-interactive-legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: color 0.2s;
}

.dots-interactive-legend-item:hover .dots-interactive-legend-color,
.dots-interactive-legend-item.active .dots-interactive-legend-color {
    box-shadow: 0 0 0 3px var(--dot-color);
}

.dots-interactive-legend-color {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 3px solid #fff;
    box-sizing: content-box;
    transition: box-shadow 0.2s;
}

.dots-interactive-legend-item.active-with-connector {
    color: #333;
}

.dots-interactive-legend-item.active-with-connector .dots-interactive-legend-color {
    box-shadow: 0 0 0 4px rgba(247, 148, 29, 0.2);
}

.dots-interactive-description {
    color: #3e3e3e;
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 30px;
    position: relative;
}

.dots-interactive-description::before {
    content: "";
    display: inline-block;
    width: 100px;
    height: 0px;
    border-top: 1px solid #cacaca;
    margin-bottom: 18px;
}

.dots-interactive .uv-stable {
    display: block;
    background: #329cd6;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    font-weight: 700;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 0;
    transform: translate(50%, -50%);
    font-size: 12px;
    line-height: 14px;
    letter-spacing: -0.01em;
}

.dots-interactive .uv-stable .uv {
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.01em;
}

@media (max-width: 991.98px) {
    .dots-interactive-flex-container {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .dots-interactive-flex-container {
        flex-direction: column;
        gap: 40px;
    }


    .dots-interactive-image-col {
        max-width: 400px;
        margin: 0 auto 40px;
    }

    .dots-interactive .block-title {
        font-size: 32px;
        text-align: center;
        margin-bottom: 40px;
    }

    .dots-interactive-content-col {
        text-align: center;
        width: 100%;
    }

    .dots-interactive-legend {
        display: inline-block;
        text-align: left;
    }

    .dots-connector-path {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .dots-interactive .dots-connectors-svg {
        display: none;
    }

    .dots-interactive {
        padding: 75px 0;
    }
}

/* === dots-interactive === */.content-15 {
    padding: 75px 0;
    background: linear-gradient(to right, #2e2d2d, #2e2d2d 50%, #f4f4f4 50%, #f4f4f4);
}

.content-15-left {
    background-color: #2e2d2d;
    color: #ffffff;
    display: flex;
}

.content-15-top-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.content-15-title {
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 26px;
    line-height: 1;
    letter-spacing: -0.025em;
}

.content-15-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-15-list-item {
    padding-left: 20px;
    margin-bottom: 6px;
    position: relative;
}

.content-15-icons {
    display: flex;
    gap: 34px;
    margin-top: 34px;
}

.content-15-icons img {
    max-height: 110px;
    width: auto;
}

.content-15-right {
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
}

.content-15-right-inner {
    text-align: center;
    max-width: 500px;
}

.content-15-price {
    font-size: 72px;
    letter-spacing: -0.025em;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.content-15-subtitle {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 30px;
    line-height: 1.2;
    text-transform: uppercase;
}

.content-15-text {
    font-size: 15px;
    margin-bottom: 30px;
}

.content-15-product img {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.content-15-list-item::before {
    content: "\f105";
    left: 0;
    top: 0px;
    width: 6px;
    height: 6px;
    color: #1ea7fd;
    font-family: "Font Awesome 6 Pro";
    position: absolute;
}

@media (max-width: 991px) {
    .content-15 {
        padding: 45px 0;
        background: none;
        overflow: clip;
    }

    .content-15-left-inner,
    .content-15-right-inner {
        padding: 40px;
    }

    .content-15-left,
    .content-15-right {
        position: relative;
        z-index: 1;
    }

    .content-15-left-inner::before,
    .content-15-right-inner::before {
        content: "";
        display: block;
        position: absolute;
        width: 100vw;
        left: 50%;
        height: 400vw;
        z-index: -1;
        transform: translateX(-50%);
    }

    .content-15-left-inner::before {
        background-color: #2e2d2d;
        bottom: 0;
    }

    .content-15-right-inner::before {
        background-color: #f4f4f4;
        top: 0;
    }

    .content-15-text br {
        display: none;
    }
}

/* === content-15 === */.content-16-tabs {
    padding: 65px 0 75px;
    background-color: ;
    color: ;
}

.content-16-tabs:has(+ .content-16-tabs) {
    background-color: #fff;
}

.content-16-tabs .content-16-tabs-header {
    margin-bottom: 36px;
}

.content-16-tabs .content-16-tabs-title {
    margin: 0;
    text-transform: uppercase;
}

.content-16-tabs .content-16-tabs-nav {
    border-bottom: 0;
    gap: 32px;
}

.content-16-tabs .content-16-tabs-nav .nav-link {
    border: 0;
    background: transparent;
    padding: 10px 0 10px;
    margin: 0;
    width: 100%;
    text-align: left;
    font-size: 16px;
    text-transform: uppercase;
    color: #49aadf;
    position: relative;
    font-weight: 700;
}

.content-16-tabs .content-16-tabs-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #49aadf;
}

.content-16-tabs .content-16-tabs-nav .nav-link.active {
    color: #fe973d;
}

.content-16-tabs .content-16-tabs-nav .nav-link.active::after {
    background: #fe973d;
}

.content-16-tabs .content-16-tabs-panes {
    padding-top: 56px;
}

.content-16-tabs .content-16-tabs-pane-title {
    font-size: 36px;
    margin-bottom: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.content-16-tabs .content-16-tabs-actions {
    margin-top: 26px;
}

.content-16-tabs .content-16-tabs-media-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.content-16-tabs .content-16-tabs-media-item {
    border-radius: 5px;
    overflow: hidden;
    background: #e9ecef;
}

.content-16-tabs .content-16-tabs-media-item img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.content-16-tabs-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    line-height: 1;
    text-wrap: balance;
}

.content-16-tabs .content-16-tabs-content {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .content-16-tabs {
        padding: 70px 0;
    }

    .content-16-tabs .content-16-tabs-nav {
        gap: 18px;
    }

    .content-16-tabs .content-16-tabs-nav .nav-link {
        text-align: center;
    }

    .content-16-tabs .content-16-tabs-content {
        text-align: center;
    }

    .content-16-tabs .content-16-tabs-media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .content-16-tabs .content-16-tabs-media-grid {
        gap: 12px;
    }
}

/* === content-16-tabs === */.content-12 {
    background: rgb(238, 238, 238);
    color: rgb(62, 62, 62);
    padding: 80px 0;
}

.content-12-media {
    width: 100%;
}

.content-12-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.content-12-content {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.content-12-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    line-height: 1;
    font-size: 46px;
    text-wrap: balance;
}

.content-12-actions {
    margin-top: 16px;
}

@media(min-width: 992px) {
    .content-12-content {
        padding: 30px 0;
    }
}

@media (max-width: 991.98px) {
    .content-12 {
        padding: 60px 0;
    }

    .content-12-title {
        font-size: 36px;
    }
}

/* === content-12 === */.services-02 {
    padding: 70px 0;
}

.services-02 .services-02-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.services-02 .services-02-intro {
    align-content: start;
}

.services-02 .services-02-kicker {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 12px;
    color: #9a9a9a;
    margin-bottom: 10px;
}

.services-02 .services-02-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.services-02 .services-02-text {
    color: #6a6a6a;
    line-height: 1.5;
}

.services-02 .services-02-item {
    position: relative;
}

.services-02 .services-02-card {
    position: relative;
    display: block;
    height: 220px;
    border-radius: 0;
    overflow: hidden;
    text-decoration: none;
    background-color: #4a4a4a;
    color: #fff;
}

.services-02 .services-02-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
    transition: .3s all;
}

.services-02 .services-02-card:hover::before {
    background: rgba(0, 0, 0, 0.5);
}

.services-02 .services-02-card::after {
    content: "\f061";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-size: 16px;
    position: absolute;
    right: 18px;
    bottom: 16px;
    z-index: 2;
}

.services-02 .services-02-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.services-02 .services-02-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: grid;
    align-content: end;
    padding: 20px 24px 28px;
}

.services-02 .services-02-card-title {
    font-size: 22px;
    line-height: 1.2;
}

.services-02 .services-02-banner {
    border-radius: 0;
    border: none;
    padding: 24px 24px 46px;
    position: relative;
}

.services-02 .services-02-banner-text {
    color: #2f2f2f;
    line-height: 1.5;
}

@media (max-width: 1199.98px) {
    .services-02 .services-02-card {
        height: 200px;
    }
}

@media (max-width: 991.98px) {
    .services-02 .services-02-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-02 .services-02-intro {
        max-width: 520px;
    }

    .services-02 .services-02-banner {
        padding: 24px 24px 0px;
    }
}

@media (max-width: 767.98px) {
    .services-02 {
        padding: 50px 0;
    }

    .services-02 .services-02-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .services-02 .services-02-card {
        height: 240px;
    }
}

@media (max-width: 575.98px) {
    .services-02 .services-02-card {
        height: 210px;
    }
}

/* === services-02 === */.content-13-tabs {
    padding: 65px 0 75px;
    background-color: #fff;
    color: rgb(62, 62, 62);
}

.content-13-tabs:has(+ .content-13-tabs) {
    background-color: #fff;
}

.content-13-tabs .content-13-tabs-header {
    margin-bottom: 36px;
}

.content-13-tabs .content-13-tabs-title {
    margin: 0;
    text-transform: uppercase;
}

.content-13-tabs .content-13-tabs-nav {
    border-bottom: 0;
    gap: 32px;
}

.content-13-tabs .content-13-tabs-nav .nav-link {
    border: 0;
    background: transparent;
    padding: 10px 0 10px;
    margin: 0;
    width: 100%;
    text-align: left;
    font-size: 16px;
    text-transform: uppercase;
    color: #49aadf;
    position: relative;
    font-weight: 700;
}

.content-13-tabs .content-13-tabs-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: #49aadf;
}

.content-13-tabs .content-13-tabs-nav .nav-link.active {
    color: #fe973d;
}

.content-13-tabs .content-13-tabs-nav .nav-link.active::after {
    background: #fe973d;
}

.content-13-tabs .content-13-tabs-panes {
    padding-top: 56px;
}

.content-13-tabs .content-13-tabs-pane-title {
    font-size: 36px;
    margin-bottom: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.content-13-tabs .content-13-tabs-actions {
    margin-top: 26px;
}

.content-13-tabs .content-13-tabs-media {
    border-radius: 5px;
    overflow: hidden;
    background: #e9ecef;
}

.content-13-tabs .content-13-tabs-media img {
    display: block;
    width: 100%;
    height: auto;
}

.content-13-tabs .content-13-tabs-media-placeholder {
    width: 100%;
    height: 100%;
    min-height: 320px;
}

.content-13-tabs-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    line-height: 1;
    text-wrap: balance;
}

.content-13-tabs .content-13-tabs-content {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .content-13-tabs {
        padding: 70px 0;
    }

    .content-13-tabs .content-13-tabs-nav {
        gap: 18px;
    }

    .content-13-tabs .content-13-tabs-nav .nav-link {
        text-align: center;
    }

    .content-13-tabs .content-13-tabs-content {
        text-align: center;
    }
}

/* === content-13-tabs === */.product-cards-01 {
    background-color: #f4f4f4;
    padding-top: 60px;
    padding-bottom: 45px;
}

.product-cards-01 .col {
    position: relative;
}

.product-cards {
    position: relative;
}

.product-cards .slick-list {
    height: auto !important;
}

.product-card-arrows {
    position: absolute;
    display: none;
    justify-content: space-between;
    z-index: 9;
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.product-card-arrows .slick-arrow {
    border: none;
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.product-card-arrows .slick-arrow:before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background-image: url("/images/default/right-arrow-white.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    transition: 0.2s all;
}

.product-card-arrows .prev-slide {
    margin-right: 10px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.product-card-arrows .slick-arrow.slick-disabled {
    opacity: 0.5;
    pointer-events: none;
}

.product-cards-01 .slick-list .slick-slide:not(.slick-active) {
    opacity: 0.8;
}

.product-card {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    border-radius: 10px;
    margin: 10px auto;
    transition: .3s all;
    margin: 10px 5px;
    box-shadow: 0px 0px 13px -4px rgba(0, 0, 0, 0);
}

.product-card:hover {
    background: var(--color-whiteBg);
    box-shadow: 0px 0px 13px -4px rgba(0, 0, 0, 0.75);
}

.product-card img {
    max-width: 100%;
    height: 355px;
    object-fit: cover;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 16px;
    margin: 0;
    padding: 0;
    line-height: 18px;
    color: var(--color-lightBlackText);
    text-align: center;
    min-height: 50px;
}

.product-card .product-card-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 10px 0 15px;
}

.product-card .price-with-currency {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    font-size: 24px;
    color: rgb(68, 68, 68);
}

.product-card .price-with-currency .currency {
    font-size: inherit;
    color: inherit;
    font-weight: 700;
}

.product-card .gross-amount {
    font-size: inherit;
    line-height: 1;
    color: inherit;
    font-weight: 700;
}

.product-card .price-with-currency.was-price {
    font-size: 18px;
    color: rgb(255, 0, 0);
}

.product-card .price-with-currency.was-price .currency {
    font-weight: 600;
}

.product-card .price-with-currency.was-price .gross-amount {
    text-decoration: line-through;
    color: inherit;
    font-weight: 600;
}

.product-card .button {
    width: 100%;
    text-align: center;
}

.product-card:hover .button {
    display: block;
}

.product-buttons {
    display: grid;
    width: 100%;
}

.product-buttons .choose-a-service {
    text-align: center;
    color: var(--color-blueText);
}

.product-buttons .button {
    text-transform: capitalize;
    max-height: 40px;
    padding: 8px 0px;
}

.product-buttons .button.fully-fitted-btn {
    background: var(--color-blueBg);
}

@media (max-width: 575.98px) {
    .product-card {
        background: var(--color-whiteBg);
        box-shadow: 0px 0px 13px -4px rgba(0, 0, 0, 0.75);
        -webkit-box-shadow: 0px 0px 13px -4px rgba(0, 0, 0, 0.75);
        -moz-box-shadow: 0px 0px 13px -4px rgba(0, 0, 0, 0.75);
        max-width: 320px;
    }

    .product-card img {
        height: 270px;
    }

    .product-card .button {
        display: block;
    }

    .product-card-arrows {
        display: flex;
    }
}

/* === product-cards-01 === */.content-14 {
    padding: 60px 0;
}

.content-14 .content-14-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
        "title"
        "image"
        "panel";
    padding: 0px 30px;
    z-index: 1;
}

.content-14 .content-14-heading {
    grid-area: title;
    position: relative;
    z-index: 2;
    padding: 40px 20px 0;
}

.content-14 .content-14-wrap::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50px;
    bottom: 65px;
    z-index: 0;
    border: 1px solid #cacaca;
}

.content-14 .content-14-left {
    grid-area: image;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.content-14 .content-14-left-img {
    display: block;
    max-width: 100%;
    height: auto;
}

.content-14 .content-14-panel {
    grid-area: panel;
    position: relative;
    z-index: 0;
    padding: 40px 20px;
    flex-grow: 1;
}

.content-14 .content-14-wrap::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 90px;
    bottom: 30px;
    background: #f4f4f4;
    z-index: -1;
}

.content-14 .content-14-title {
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.content-14 .content-14-text {
    margin: 0;
    max-width: 660px;
    color: #4a4a4a;
}

.content-14 .content-14-text p:last-of-type {
    margin-bottom: 0;
}

.content-14 .content-14-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.content-14 .content-14-thumbs {
    display: flex;
    align-items: center;
    gap: 26px;
    z-index: 6;
}

.content-14 .content-14-thumb {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: -60px;
}

.content-14 .content-14-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (min-width: 992px) {
    .content-14 .content-14-wrap {
        grid-template-columns: fit-content(360px) 1fr;
        grid-template-areas:
            "image title"
            "image panel";
        grid-template-rows: auto 1fr;
        padding: 0px 30px;
        min-height: 490px;
    }

    .content-14 .content-14-wrap::before {
        right: 30px;
    }

    .content-14 .content-14-heading {
        padding: 125px 40px 0 70px;
    }

    .content-14 .content-14-panel {
        padding: 125px 40px 65px 70px;
    }

    .content-14.content-14-has-title .content-14-panel {
        padding-top: 0;
    }

    .content-14 .content-14-wrap::after {
        left: 260px;
        right: 0;
    }

    .content-14 .content-14-left {
        justify-content: flex-start;
    }

    .content-14 .content-14-left-img {
        max-width: 360px;
        object-fit: contain;
        width: 100%;
    }

    .content-14 .content-14-footer {
        position: absolute;
        right: 40px;
        left: 70px;
        bottom: 60px;
    }
}

@media (max-width: 991.98px) {
    .content-14 {
        padding: 15px 0px 45px;
    }

    .content-14 .content-14-wrap {
        padding: 0;
    }

    .content-14 .content-14-wrap::before {
        left: -15px;
        right: 15px;
    }

    .content-14 .content-14-wrap::after {
        top: 65px;
        bottom: 50px;
    }

    .content-14 .content-14-title {
        text-align: center;
        line-height: 1;
    }

    .content-14 .content-14-heading {
        padding: 90px 20px 0;
    }

    .content-14 .content-14-thumbs {
        gap: 14px;
    }

    .content-14 .content-14-thumb {
        margin-bottom: 0px;
    }
}

/* === content-14 === */.logos-01 {
  margin: 25px 0 50px;
}

.logos-01-title {
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.logos-01-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 45px;
}

.logos-01-wrapper .logos-01-logo img {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

.logos-01-wrapper .logos-01-logo:last-child img {
  transform: translateY(-15px);
}

@media (max-width: 575.98px) {
  .logos-01-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

/* === logos-01 === */.footer-04-ecommerce .footer-contacts {
    padding: 35px;
    border-radius: 5px;
    z-index: 9;
    position: relative;
}

.footer-04-ecommerce .footer-contact {
    display: flex;
    gap: 12px;
    color: var(--color-whiteText);
    font-size: 18px;
    font-weight: 400;
}

.footer-04-ecommerce .footer-contact i {
    font-size: 44px;
}

.footer-04-ecommerce .footer-contact h5 {
    font-size: 24px;
    line-height: 1;
    font-weight: bold;
    margin-bottom: 0;
}

.footer-04-ecommerce .footer-contact a {
    color: var(--color-whiteText);
}

.footer-04-ecommerce .footer-contact a:hover,
.footer-04-ecommerce .footer-contact a:focus {
    text-decoration: none;
}

.footer-04-ecommerce .column-title {
    color: var(--color-lightBlackText);
    font-weight: bold;
    font-size: 22px;
    line-height: 28px;
    display: flex;
    margin-bottom: 30px;
    align-items: center;
    gap: 5px;
}

.footer-04-ecommerce .column-title .toggle-footer {
    display: none;
}

.footer-04-ecommerce .link-list .footer-link a {
    color: var(--color-lightBlackText);
    line-height: 36px;
    display: block;
    width: 100%;
}

.footer-04-ecommerce .last-footer {
    color: #777777;
    border-top: 1px solid var(--color-grayBg);
    padding-top: 45px;
    padding-bottom: 45px;
    font-size: 14px;
    line-height: 24px;
    /* margin-top: 50px; */
}

.footer-04-ecommerce .last-footer a {
    color: #777777;
}

.footer-links {
    padding: 60px 0;
}

@media (min-width: 992px) {
    body:has(.category-description) .footer-04-ecommerce,
    body:has(.contact03) .footer-04-ecommerce {
        margin-top: -60px;
    }
}

.footer-04-ecommerce .last-footer em.separator {
    color: #777777;
    font-style: normal;
    margin-left: 5px;
    margin-right: 5px;
}

.footer-04-ecommerce .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    font-size: 14px;
    line-height: 20px;
    text-align: right;
}

.footer-04-ecommerce .footer-logotype {
    margin-bottom: 20px;
}

.footer-04-ecommerce .footer-logo span {
    text-transform: uppercase;
    color: var(--color-blueText);
    font-size: 16px;
    line-height: 1;
}

.footer-04-ecommerce .footer-info br {
    display: none;
}

.footer-04-ecommerce .tyl-logo {
    width: 135px;
}

@media (max-width: 1399px) {
    .footer-04-ecommerce .footer-contact h5 {
        font-size: 22px;
    }

    .footer-04-ecommerce .footer-contact {
        font-size: 16px;
        line-height: 1;
    }

    .footer-04-ecommerce .footer-contact .footer-info {
        display: flex;
        gap: 3px;
        flex-direction: column;
    }
}

@media (max-width: 1199.98px) {
    .footer-04-ecommerce .footer-logo br {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .footer-04-ecommerce > .container:first-child,
    .footer-04-ecommerce .container:first-child .row .col-12 {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    .footer-04-ecommerce .container:first-child .row {
        margin-left: 0;
        margin-right: 0;
    }

    .footer-04-ecommerce .footer-contacts {
        border-radius: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .footer-04-ecommerce .footer-contacts > .row {
        padding-right: var(--bs-gutter-x, 0.75rem);
        padding-left: var(--bs-gutter-x, 0.75rem);
        margin-right: auto !important;
        margin-left: auto !important;
        max-width: 720px;
    }

    .additional-links .footer-link {
        width: 33%;
        display: inline-block;
    }

    .footer-04-ecommerce .contact-with-us {
        justify-content: center;
        align-items: center;
    }

    .footer-04-ecommerce .footer-contact {
        flex-direction: column;
    }

    .footer-04-ecommerce .footer-info br {
        display: block;
    }
}

@media (max-width: 767.98px) {
    .footer-04-ecommerce .footer-contacts {
        position: relative;
        padding-top: 50px;
        padding-bottom: 50px;
        overflow: hidden;
    }

    .footer-04-ecommerce .footer-contacts > .row {
        max-width: 540px;
    }

    .footer-contacts > .row > div:last-child {
        margin-top: 30px;
    }

    .additional-links .footer-link {
        width: 100%;
        display: block;
    }

    .footer-04-ecommerce .contact-with-us {
        flex-direction: column;
    }

    .footer-04-ecommerce .contact-with-us .title {
        margin-bottom: 15px;
    }

    #footer_column03 {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575.98px) {
    .footer-04-ecommerce .column-title {
        margin-bottom: 0px;
    }

    .footer-04-ecommerce .link-list {
        display: none;
        margin-top: 10px;
    }

    .footer-04-ecommerce .link-list.open {
        display: block;
    }

    .footer-04-ecommerce .column-title .toggle-footer {
        display: block;
        font-size: 17px;
    }

    #footer_column03 {
        display: none;
    }

    #footer_column03.open {
        display: block;
    }

    .footer-04-ecommerce .last-footer,
    .footer-04-ecommerce .footer-links {
        display: none;
    }
}

/* === footer-04-ecommerce === */