: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 === */.products-04 {
    background: #fff;
}

.products-04-category {
    background-size: cover !important;
    background-position: center !important;
}

.products-04-category .breadcrumb {
    background: none !important;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}

.products-04-category .breadcrumb ul {
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    color: #fff;
}

.products-04-category .breadcrumb ul li {
    padding: 0px 5px;
}

.products-04-category .breadcrumb ul li a {
    color: #fff;
}

.products-04-category .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #fff;
    padding: 0;
    padding-right: 5px;
}

.products-04-category .category-description {
    padding-bottom: 30px;
    margin-top: 15px;
}

.products-04-category .category-description h1 {
    color: #fff;
    margin-bottom: 15px;
}

.products-04-category .category-description {
    color: #fff;
}

.products-04-image {
    position: relative;
    overflow: hidden;
}

.products-04-image:after {
    padding-bottom: 100%;
    display: block;
    content: "";
}

.products-04-image img {
    max-width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: auto;
    transform: translate(-50%, -50%);
}

.products-04 .category-sort {
    margin-bottom: 30px;
}

.products-04 .category-sort.upvc-french-doors {
    display: none;
}

.products-04 .category-sort .sorting {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-grayBorder);
}

.products-04 .category-sort .left-part {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.products-04 .category-sort .right-part {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-end;
}

.products-04 .category-sort .left-part .show-filter button {
    background-color: #fff;
    color: #000;
    border: 1px solid #000;
    border-radius: 20px;
    font-size: 14px;
    padding: 10px 15px;
    line-height: 14px;
}

.products-04 .category-sort .left-part .show-filter button.open {
    background-color: #000;
    color: #fff;
}

.products-04 .category-sort .left-part .show-filter button i.fa-plus {
    transition: 0.2s transform;
    margin-left: 10px;
}

.products-04 .category-sort .left-part .show-filter button.open i.fa-plus {
    transform: rotate(45deg);
}

.products-04 .category-sort .sorting .sort-direction-button {
    border: 1px solid #c9c9c9;
    padding: 5px 10px;
    height: 100%;
    cursor: pointer;
    transition: 0.2s all;
}

.products-04 .category-sort .sorting .sort-direction-button.active {
    background: #c9c9c9;
}

.products-04 .category-sort .sorting .sort-direction-button:hover,
.products-04 .category-sort .sorting .sort-direction-button:active {
    background: #aaa;
}

.products-04 .category-sort .sorting .sortby-sort {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    transition: 0.2s all;
    user-select: none;
}

.products-04 .category-sort .sorting .sortby-sort.open {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-color: transparent;
}

.products-04 .category-sort .sorting .sortby-sort.open .sort-variants {
    color: #000;
}

.products-04 .category-sort .sorting .sort-select {
    padding-left: 10px;
}

.products-04 .category-sort .sorting .sort-select i {
    margin-left: 5px;
    transition: 0.2s all;
}

.products-04 .category-sort .sorting .sortby-sort.open .sort-select i {
    transform: rotate(180deg);
}

.products-04 .category-sort .sorting .sort-select .selected {
    cursor: pointer;
    color: var(--color-orangeText);
}

.products-04 .category-sort .sorting .sort-select .sort-variants {
    position: absolute;
    z-index: 9;
    background: #fff;
    display: none;
    right: -1px;
    top: 100%;
    width: calc(100% + 2px);
    border: 1px solid #000;
    font-size: 14px;
}

.products-04 .sorting .sortby-sort.open .sort-variants {
    display: block;
}

.products-04 .product-colours-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
}

.products-04 .product-colours-swatches {
    display: flex;
    column-gap: 5px;
    margin-top: 0px;
    flex-wrap: wrap;
}

.products-04 .product-colours-swatches .product-colour-swatch img {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid gray;
    display: block;
    margin-bottom: 0;
}

.products-04 .category-sort .sorting .sort-select .sort-variants .sort-var {
    padding: 10px 15px;
    cursor: pointer;
    transition: 0.2s all;
}

.products-04 .category-sort .sorting .sort-select .sort-variants .sort-var:hover,
.products-04 .category-sort .sorting .sort-select .sort-variants .sort-var:active {
    background: #c9c9c9;
}

.products-04 .category-sort .sorting .sort-select .sort-variants .sort-var ~ .sort-var {
    border-top: 1px solid #c9c9c9;
}

.products-04 .category-sort .sorting .sort-select .sort-variants .sort-var.active {
    opacity: 0.4;
    pointer-events: none;
}

.products-04 .category-sort .sorting .product-count {
    font-size: 16px;
    margin-right: 15px;
    line-height: 1;
}

.products-04 .category-name {
    position: relative;
    text-align: center;
    margin-bottom: 0;
    background: #fff;
    border-radius: 5px;
    padding: 45px;
    font-weight: bold;
    font-size: 52px;
    line-height: 1;
    color: var(--color-blueText);
    text-transform: uppercase;
}

.products-04 .product-list,
.products-04 .category-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding-left: 7px;
    padding-right: 7px;
}

.products-04 .product-list.upvc-patio-doors {
    grid-template-columns: repeat(4, 1fr);
}

.products-04 .product-card {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    border-radius: 10px;
    margin: 10px 0;
    flex-basis: 235px;
    transition: 0.3s;
    position: relative;
}

.products-04 .product-card:hover {
    background: var(--color-whiteBg);
    box-shadow: 0px 0px 13px -4px rgba(0, 0, 0, 0.75);
}

.products-04 .product-card img {
    max-width: 100%;
    max-height: 355px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: 0.3s;
}

.products-04 .product-card h3 {
    font-size: 16px;
    margin: 0;
    padding: 0;
    line-height: 18px;
    color: var(--color-lightBlackText);
    text-align: center;
    margin-bottom: 16px;
    flex-grow: 1;
    letter-spacing: -0.025em;
}

.products-04 .product-card .price-gross {
    font-size: 24px;
    line-height: 1;
    color: rgb(68, 68, 68);
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    display: none;
}

.products-04 .product-card .price-gross:has(.sale-price) {
    display: block;
    margin-bottom: 4px;
}

.products-04 .product-card .price-gross .original-price {
    font-size: 18px;
    color: rgb(255, 0, 0);
}

.products-04 .product-card .price-gross .original-price .price {
    text-decoration: line-through;
}

.products-04 .product-card .button {
    width: 100%;
    text-align: center;
    transition: 0.3s;
    overflow: hidden;
    max-height: 60px;
}

.products-04 .product-card .product-count-label {
    position: absolute;
    background: var(--color-blueBg);
    color: #fff;
    display: grid;
    width: 58px;
    height: 58px;
    place-content: center;
    border-radius: 50%;
    top: 8px;
    right: 8px;
    text-align: center;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: -.01em;
    line-height: 1;
}

.products-04 .product-card .product-count-label::after {
    content: "styles";
    font-size: 10px;
    font-weight: 500;
}

/* Hardcode for Bradley */
.irish-oak-upvc-doors-with-catflaps .product-card h3 {
    min-height: 54px;
}

.products-04 .basket-loader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.products-04 .clear_filters {
    color: #000;
}

.products-04 .clear_filters:hover {
    color: #000;
}

.products-04 .category_wrapper {
    position: relative;
    overflow: hidden;
}

#product-04-filter-tabs .filter-var-list {
    width: 100%;
    max-height: 155px;
    overflow: auto;
}

#product-04-filter-tabs .panel-body.price-filter {
    padding: 0px;
    margin-top: 10px;
}

#product-04-filter-tabs .panel-body.price-filter .price_input {
    display: flex;
    flex-direction: row;
    width: calc(100% - 10px);
    align-items: center;
    justify-content: space-between;
}

#product-04-filter-tabs .panel-body.price-filter .price_input label {
    font-size: 14px;
}

#product-04-filter-tabs .panel-body.price-filter .price_input > div {
    width: calc(50% - 10px);
}

#product-04-filter-tabs
.panel-body.price-filter
.price_input
.price_slider_input {
    width: 100%;
}

#product-04-filter-tabs .panel-body.price-filter #price-slider-wrapper {
    margin-top: 20px;
    margin-bottom: 40px;
}

#product-04-filter-tabs
.panel-body.price-filter
#price-slider-wrapper
#price-slider {
    opacity: 0;
    position: absolute;
    width: 1px;
    height: 1px;
}

#product-04-filter-tabs
.panel-body.price-filter
#price-slider-wrapper.noUi-horizontal {
    height: 10px;
    width: calc(100% - 20px);
    margin-left: 10px;
}

#product-04-filter-tabs
.panel-body.price-filter
#price-slider-wrapper.noUi-horizontal
.noUi-handle {
    border-radius: 50%;
    width: 16px;
    height: 16px;
    top: -4px;
    border: 3px solid var(--color-orangeBg);
}

#product-04-filter-tabs
.panel-body.price-filter
#price-slider-wrapper.noUi-horizontal
.noUi-handle.noUi-active {
    background-color: var(--color-orangeBg);
}

#product-04-filter-tabs
.panel-body.price-filter
#price-slider-wrapper.noUi-horizontal
.noUi-tooltip {
    top: calc(100% + 10px);
    color: #000;
    background: transparent;
    border: 0;
}

#product-04-filter-tabs
.panel-body.price-filter
#price-slider-wrapper.noUi-horizontal
.noUi-handle-lower
.noUi-tooltip {
    transform: none;
    left: -10px;
}

#product-04-filter-tabs
.panel-body.price-filter
#price-slider-wrapper.noUi-horizontal
.noUi-handle-upper
.noUi-tooltip {
    transform: none;
    left: auto;
    right: -10px;
}

#product-04-filter-tabs .panel-body .filter-checkbox {
    position: relative;
}

#product-04-filter-tabs .panel-body .filter-checkbox input {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
}

#product-04-filter-tabs .panel-body .filter-checkbox ~ .filter-checkbox {
    padding-top: 0;
}

#product-04-filter-tabs .panel-body .filter-checkbox input + label {
    display: block;
    padding: 5px 0px;
    padding-left: 30px;
    margin: 0;
    font-size: 14px;
    cursor: pointer;
}

#product-04-filter-tabs .panel-body .filter-checkbox input + label:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 1px solid #9a9a9a;
    transition: 0.3s all;
    border-radius: 50%;
}

#product-04-filter-tabs
.panel-body
.filter-checkbox
input + label:hover:before {
    background: #e6e6e6;
}

#product-04-filter-tabs .panel-body .filter-checkbox input + label:after {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.2s;
    width: 12px;
    height: 12px;
    background: #000;
    border-radius: 50%;
}

#product-04-filter-tabs
.panel-body
.filter-checkbox
input:checked + label:before {
    border: 2px solid #000;
}

#product-04-filter-tabs
.panel-body
.filter-checkbox
input:checked + label:after {
    opacity: 1;
}

#product-04-filter-tabs
.panel-body
.filter-checkbox.color-attr
input + label
.color_preview {
    position: absolute;
    width: 12px;
    height: 12px;
    left: -1px;
    top: 50%;
    transition: opacity 0.2s;
    opacity: 0.4;
    transform: translateY(-50%);
}

#product-04-filter-tabs
.panel-body
.filter-checkbox.color-attr
input + label:hover
.color_preview {
    opacity: 1;
}

#product-04-filter-tabs
.panel-body
.filter-checkbox.color-attr
input:checked + label:after {
    opacity: 0;
}

#product-04-filter-tabs
.panel-body
.filter-checkbox.color-attr
input:checked + label
.color_preview {
    opacity: 1;
}

#product-04-filter-tabs .panel-body .color_preview {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    margin-left: 5px;
}

#product-04-filter-tabs .panel-body .image_preview {
    background-size: cover !important;
    background-position: center !important;
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
    margin-left: 5px;
}

.products-04 .category_wrapper {
    position: relative;
    overflow: hidden;
}

.products-04 .category-filter .product-filter-tabs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.products-04 .category-filter .product-filter-tabs .noUi-connect {
    background: var(--color-blueBg);
}

.products-04 .category-filter .product-filter-tabs .panel {
    position: relative;
}

.products-04 .category-filter .product-filter-tabs .panel .panel-collapse {
    position: absolute;
    left: 0;
    top: calc(100% - 10px);
    background: #fff;
    padding: 15px;
    min-width: 280px;
    z-index: 5;
}

#product-04-filter-tabs .panel .panel-heading a {
    position: relative;
    display: flex;
    width: 100%;
    padding: 20px 15px;
    padding-left: 0px;
    text-decoration: none;
    transition: 0.2s all;
    background: none;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
    font-size: 16px;
    font-weight: 400;
    color: var(--color-orangeText);
    line-height: 22px;
}

#product-04-filter-tabs .panel .panel-heading a i {
    font-size: 14px;
    transform-origin: 50% 50%;
    transition: transform 0.3s ease-in;
}

#product-04-filter-tabs .panel .panel-heading a:not(.collapsed) i {
    transform: rotate(180deg);
}

.image_hover_preview {
    max-width: 100%;
    max-height: 100%;
}

.products-04 .category-item,
.products-04 .product-item {
    margin-bottom: 30px;
}

.products-04 .product-item.hprod {
    display: none !important;
}

.products-04 .show_more_products {
    width: 100%;
    text-align: center;
    border-radius: 0px;
    padding: 10px 15px;
}

.products-04 .show_more_products:hover {
    border: 2px solid #000;
    background: #fff;
    color: #000;
    transform: scale(1.01);
}

.products-04 .show_more_products:active {
    border: 2px solid #000;
    background: #fff;
    color: #000;
    transform: scale(0.98);
}

.products-04 .show_more_products.triggeronscroll {
    border: 0;
    background-color: transparent;
    padding: 0;
    pointer-events: none;
}

.products-04 .product-04-btn {
    border-radius: 0;
    display: block;
    padding: 10px 15px;
    width: 100%;
    font-size: 16px;
    border: 2px solid #000;
    transition: 0.2s all;
    border-radius: 40px;
}

.products-04 .product-04-btn i {
    margin-left: 5px;
}

.products-04 .product-04-btn:hover {
    border: 2px solid #000;
    background: #fff;
    color: #000;
}

.products-04 .product-04-btn:active {
    border: 2px solid #000;
    background: #fff;
    color: #000;
    transform: scale(0.98);
}

.products-04 .products-04-title {
    font-weight: normal;
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 5px;
    text-align: center;
    text-overflow: ellipsis;
    overflow: hidden;
}

.products-04 .products-04-price {
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 10px;
}

.products-04 .products-04-price-vat {
    font-weight: 600;
    color: #757575;
    font-size: 14px;
    text-align: center;
    margin-top: 0;
    margin-bottom: 15px;
}

.products-04 .no-products-form {
    margin-top: 30px;
    margin-bottom: 30px;
}

.products-04 .no-products-form h2 {
    margin-bottom: 15px;
    text-align: center;
}

.products-04 .no-products-form .form-text {
    margin-bottom: 15px;
    text-align: center;
}

.products-04 .no-products-form .bottom-box {
    position: relative;
}

.products-04 .no-products-form .bottom-box span.required {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.products-04 .categories-list .products-04-title {
    margin-bottom: 15px;
}

.products-04 .categories-list .category-item {
    margin: 15px 0px;
}

.products-04 .category-list.upvc-patio-doors {
    grid-template-columns: repeat(4, 1fr);
}

.products-04 .no-products {
    font-size: 16px;
    text-align: center;
    padding: 15px 15px;
    border: 1px solid #c9c9c9;
    background: #ffe3e3;
}

.products-04 .selecter_attr_wrapper > div {
    margin-top: 15px;
}

.products-04 .selected-attributes .selected-item {
    border: none;
    border-radius: 30px;
    padding: 4px 13px 4px 26px;
    margin-right: 8px;
    font-size: 14px;
    position: relative;
    order: 0;
    transition: 0.3s opacity;
    flex-direction: row-reverse !important;
    color: #6e6f72;
    background: #fff;
}

.products-04 .selected-attributes .selected-item .delete_filter {
    border: 0;
    background: none;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 8px;
    left: 8px;
    color: #6e6f72;
}

.products-04 .selected-attributes .selected-item .delete_filter:before {
    content: "\f00d";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    color: #6e6f72;
    font-size: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.products-04 .selected-attributes .selected-item .delete_filter + span {
    transition: 0.3s opacity;
}

.products-04 .selected-attributes .selected-item .delete_filter:hover + span {
    text-decoration: line-through;
    opacity: 0.4;
}

.products-04 .selected-attributes .clear_filter {
    font-size: 14px;
    color: var(--color-blueText);
    margin-left: 10px;
    order: 1;
    position: relative;
}

.products-04 .selected-attributes .clear_filter:hover ~ div {
    opacity: 0.4;
}

.products-04 .selected-attributes .clear_filter:hover ~ div span {
    text-decoration: line-through;
}

.products-04 .loadingdots-container {
    display: block;
    margin: 0px auto;
    width: 100%;
}

.products-04 .loadingdots-loading i {
    width: 19px;
    height: 19px;
    display: inline-block;
    border-radius: 50%;
    background: #000;
}

.products-04 .loadingdots-loading i:first-child {
    opacity: 0;
    animation: loadingdots-loading-ani2 0.58s linear infinite;
    -webkit-animation: loadingdots-loading-ani2 0.58s linear infinite;
    transform: translate(-19px);
    -webkit-transform: translate(-19px);
}

.products-04 .loadingdots-loading i:nth-child(2),
.products-04 .loadingdots-loading i:nth-child(3) {
    animation: loadingdots-loading-ani3 0.58s linear infinite;
    -webkit-animation: loadingdots-loading-ani3 0.58s linear infinite;
}

.products-04 .loadingdots-loading i:last-child {
    animation: loadingdots-loading-ani1 0.58s linear infinite;
    -webkit-animation: loadingdots-loading-ani1 0.58s linear infinite;
}

.products-04 .sash-svg-container {
    position: absolute;
    z-index: 1;
    inset: 0;
}

.products-04 .sash-svg-container.sash-alignment-top_left img {
    object-position: top left;
}

.products-04 .sash-svg-container.sash-alignment-top_right img {
    object-position: top right;
}

.products-04 .sash-svg-container.sash-alignment-bottom_right img {
    object-position: bottom right;
}

.products-04 .sash-svg-container.sash-alignment-bottom_left img {
    object-position: bottom left;
}

.products-04 .product-item a {
    position: relative;
}

.products-04 .product-item .sash-svg-container img {
    width: auto;
    height: auto;
}

@keyframes loadingdots-loading-ani1 {
    100% {
        transform: translate(39px);
        opacity: 0;
    }
}

@-webkit-keyframes loadingdots-loading-ani1 {
    100% {
        -webkit-transform: translate(39px);
        opacity: 0;
    }
}

@keyframes loadingdots-loading-ani2 {
    100% {
        transform: translate(19px);
        opacity: 1;
    }
}

@-webkit-keyframes loadingdots-loading-ani2 {
    100% {
        -webkit-transform: translate(19px);
        opacity: 1;
    }
}

@keyframes loadingdots-loading-ani3 {
    100% {
        transform: translate(19px);
    }
}

@-webkit-keyframes loadingdots-loading-ani3 {
    100% {
        -webkit-transform: translate(19px);
    }
}

.products-04 .attr_search_box {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.products-04 .attr_search_box input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    height: 36px;
    min-height: 36px;
}

.products-04 .attr_search_box button {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.products-04 :is(.product-buttons, .category-buttons) {
    display: grid;
    width: 100%;
}

.products-04 :is(.product-buttons, .category-buttons) .choose-a-service {
    text-align: center;
    color: var(--color-blueText);
}

.products-04 :is(.product-buttons, .category-buttons) .button {
    text-transform: capitalize;
    max-height: 40px;
    padding: 8px 0px;
}

.products-04 :is(.product-buttons, .category-buttons) .button.fully-fitted-btn {
    background: var(--color-blueBg);
}

.products-04 .product-colours {
    padding: 10px 0px 6px;
}

.products-04 .product-colours-label {
    line-height: 1;
    padding-bottom: 6px;
}

.products-04 .product-buttons .service-price-note {
    text-align: center;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 500;
    color: var(--color-blueText);
}

.products-04 .product-buttons .service-price-note + .button {
    margin-top: 6px !important;
}

.products-04 .product-buttons .button + .service-price-note {
    margin-top: 5px;
}

@media (min-width: 992px) {
    .products-04 .product-item .list-view .products-04-title {
        text-align: left;
    }

    .products-04 .category_wrapper.open-filter .product-list {
        width: 75%;
    }

    .products-04 .category_wrapper.open-filter .product-item {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
        width: 33.333333%;
    }

    .products-04 .no-products {
        margin-bottom: 300px;
    }
}

@media (min-width: 1200px) {
    .products-04 .category_wrapper.open-filter .product-list {
        width: calc(100% - 280px);
    }
}

@media (max-width: 1399.98px) {
    .products-04 .product-list,
    .products-04 .category-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1199.98px) {
    .products-04 .product-list,
    .products-04 .category-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991.98px) {
    .products-04 {
        padding-bottom: 30px;
    }

    .products-04 .product-list,
    .products-04 .category-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .products-04 .product-card {
        background: var(--color-whiteBg);
        box-shadow: none;
        max-width: 320px;
    }

    .products-04 .product-card img {
        height: 270px;
    }

    .products-04 .product-card .button {
        display: block;
    }

    .products-04 .product-card-arrows {
        display: flex;
    }

    .products-04 .product-list,
    .products-04 .category-list {
        justify-content: center;
    }

    .products-04 .category-item,
    .products-04 .product-item {
        margin-bottom: 0;
    }

    .products-04 .category-sort .sorting {
        flex-wrap: wrap;
    }

    .products-04 .category-name {
        width: 100%;
        border-bottom: 1px solid #cacaca;
        padding-bottom: 20px;
        margin-bottom: 15px;
    }

    .products-04 .category-sort .sorting {
        border-bottom: 1px solid #cacaca;
        padding-bottom: 6px;
    }

    .products-04 .category-sort .left-part .show-filter button,
    .products-04 .category-sort .left-part .show-filter button.open,
    .products-04 .category-sort .left-part .show-filter button:active {
        border: 0;
        display: flex;
        align-items: center;
        background-color: transparent;
        color: #000;
    }

    .products-04 .category-sort .left-part .show-filter button .mobile-icon {
        margin-left: 0;
        margin-right: 15px;
        background-color: #000;
        color: #fff;
        width: 40px;
        height: 40px;
        border-radius: 50px;
    }

    .products-04 .category-sort .left-part .show-filter button.toggle_filters {
        padding-left: 0;
        padding-right: 5px;
    }

    .products-04 .category-sort .left-part .show-filter button.toggle_filters span {
        font-weight: 600;
    }

    .products-04 .category-sort .left-part .show-filter button.open i.mobile-icon {
        transform: none;
    }

    .products-04 .category-sort .sorting .product-count {
        margin-left: 5px;
    }

    .products-04 .close_filter {
        background-color: transparent;
        border: 0;
        position: absolute;
        top: 0px;
        right: 15px;
    }

    .products-04 .close_filter img {
        width: 30px;
        height: 30px;
    }

    .products-04 .category-sort .sorting .sortby-sort {
        border: 0;
    }

    .products-04 .category-sort .sorting .sortby-sort.open {
        background-color: #fff;
        color: #000;
    }

    .products-04 .filter_buttons .btn {
        border-radius: 25px;
        padding: 11px 15px;
        width: calc(50% - 10px);
    }

    .products-04 .category-sort .sorting .sort-select .sort-variants .sort-var {
        font-size: 18px;
        line-height: 18px;
    }
}

@media (max-width: 767px) {
    .products-04 .selected-attributes .selected-item {
        margin-bottom: 5px;
    }
}

@media (max-width: 575px) {
    .products-04 .category-sort .sorting .sort-direction-button {
        display: none;
    }

    .products-04 .category-sort .sorting {
        padding-bottom: 10px;
    }

    .products-04 .category-sort .sorting .sortby-sort {
        font-size: 14px;
        padding: 0;
        padding-left: 15px;
    }

    .products-04 .category-sort .sorting .sort-select i {
        margin: 0;
    }

    .products-04 .category-sort .sorting .product-count > span {
        display: none;
    }

    .products-04 .category-sort .sorting .product-count > span.value {
        display: inline;
    }

    #product-04-filter-tabs .panel-heading a {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    #product-04-filter-tabs .panel-heading a i {
        font-size: 18px;
    }

    .products-04 .category-sort .sorting .sort-select .sort-variants {
        top: calc(100% + 15px);
    }

    .products-04 .products-04-title {
        font-size: 14px;
    }

    .products-04 .products-04-price {
        font-size: 18px;
    }

    #product-04-filter-tabs .panel .panel-heading a {
        padding-left: 0;
        padding-right: 0px;
    }

    .products-04 .category-sort .sorting .sort-select .sort-variants {
        width: 180px;
    }

    .products-04 .category-name {
        font-size: 42px;
        padding: 30px 0;
    }

    .products-04 .product-list,
    .products-04 .category-list {
        gap: 15px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .products-04 .product-card {
        box-shadow: none;
        padding: 15px 0 0;
    }

    .products-04 .category-item,
    .products-04 .product-item {
        margin: 0;
    }

    .products-04 .product-card:hover {
        box-shadow: none;
    }

    .products-04 .product-card .product-count-label {
        top: 3px;
        right: -7px;
    }

    .products-04 .product-colours-swatches .product-colour-swatch img {
        width: 12px;
        height: 12px;
    }

    .products-04 .product-buttons .service-price-note {
        font-size: 12px;
    }
}

@media (max-width: 350px) {
    .products-04 .category-sort .left-part .show-filter button .mobile-icon {
        margin-right: 5px;
    }

    .products-04 .category-sort .sorting .sortby-sort,
    .products-04 .category-sort .sorting .sort-select {
        padding-left: 5px;
    }
}

/* === products-04-single-category === */.recently_viewed_products {
    padding-top: 45px;
    padding-bottom: 45px;
}

.recently_viewed_products .slick-track {
    margin-left: 0px;
    margin-right: 0px;
}

.recently_viewed_products .item .item_wrapper {
    padding: 15px;
}

.recently_viewed_products .image-wrapper {
    position: relative;
    padding-bottom: 100%;
    overflow: hidden;
}

.recently_viewed_products .image-wrapper img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.recently_viewed_products .prod-name {
    text-align: center;
}


.recently_viewed_products .slick-arrow {
    z-index: 99;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--color-orangeBg);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    opacity: 1;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    border-radius: 50%;
}

.recently_viewed_products .slick-arrow.left {
    left: 0;
}

.recently_viewed_products .slick-arrow.right {
    right: 0;
}

.recently_viewed_products .product-card {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    margin: 10px 0;
    flex-basis: 235px;
    transition: 0.3s;
}

.recently_viewed_products .product-card:hover {
    background: var(--color-whiteBg);
    box-shadow: none;
}

.recently_viewed_products .product-card img {
    max-width: 100%;
    max-height: 355px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: 0.3s;
}

.recently_viewed_products .product-card h3 {
    font-size: 16px;
    margin: 0;
    padding: 0;
    line-height: 18px;
    color: var(--color-lightBlackText);
    text-align: center;
    margin-bottom: 0;
    min-height: 38px;
    text-wrap: balance;
    max-width: 200px;
}

.recently_viewed_products .service-label {
    width: 100%;
    margin: 12px 0 6px;
    text-align: center;
}

.recently_viewed_products .service-label-line {
    display: block;
    width: 80%;
    height: 2px;
    background: #e3e3e3;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
}

.recently_viewed_products .service-label-text {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.recently_viewed_products .service-label-text.fully-fitted {
    color: var(--color-blueText);
}

.recently_viewed_products .service-label-text.supply-only {
    color: var(--color-orangeText);
}

.recently_viewed_products .product-card .price-gross {
    font-size: 18px;
    line-height: 1;
    color: var(--color-blueText);
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    display: block;
}

.recently_viewed_products .product-card .button {
    width: 100%;
    text-align: center;
    transition: 0.3s;
    overflow: hidden;
    max-height: 60px;
}

/* Hardcode for Bradley */
.recently_viewed_products .irish-oak-upvc-doors-with-catflaps .product-card h3 {
    min-height: 54px;
}

.recently-viewed-product-list,
.category-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    padding-left: 7px;
    padding-right: 7px;
}

.recently_viewed_products :is(.product-buttons, .category-buttons) {
    display: grid;
    width: 100%;
}

.recently_viewed_products :is(.product-buttons, .category-buttons) .choose-a-service {
    text-align: center;
    color: var(--color-blueText);
}

.recently_viewed_products :is(.product-buttons, .category-buttons) .button {
    text-transform: capitalize;
    max-height: 40px;
    padding: 8px 0px;
}

.recently_viewed_products :is(.product-buttons, .category-buttons) .button.fully-fitted-btn {
    background: var(--color-blueBg);
}

.recently_viewed_products .price {
    display: flex;
    text-align: left;
    gap: 8px;
    margin-top: 8px;
}

.recently_viewed_products .price-was {
    font-size: 18px;
    line-height: 1;
}

.recently_viewed_products .price-was-text {
    text-decoration: line-through;
}

.recently_viewed_products .block-title {
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 46px;
    line-height: 1;
    letter-spacing: -.025em;
}

@media (max-width: 1399.98px) {
    .recently-viewed-product-list,
    .category-list {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1199.98px) {
    .recently-viewed-product-list,
    .category-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991.98px) {
    .recently-viewed-product-list,
    .category-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .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;
    }

    .recently-viewed-product-list,
    .category-list {
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .category_wrapper.open-filter .recently-viewed-product-list {
        width: 75%;
    }
}

@media (min-width: 1200px) {
    .category_wrapper.open-filter .recently-viewed-product-list {
        width: calc(100% - 280px);
    }
}

@media (max-width: 991.98px) {
    .recently-viewed-product-list,
    .category-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
    }

    .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;
    }

    .recently-viewed-product-list,
    .category-list {
        justify-content: center;
    }
}

/* === recently_viewed_products === */.category-description {
    padding: 50px 0;
}

.category-description {
    text-align: center;
    padding: 60px 0;
    color: var(--color-lightBlackText);
    background-color: #f4f4f4;
    font-size: 16px;
    line-height: 26px;
}

.category-description ul {
    list-style-position: inside;
    padding: 0;
}

@media (min-width: 992px) {
    .category-description {
        padding-bottom: 120px;
    }
}

.category-description p:last-of-type {
    margin-bottom: 0px;
}
/* === category-description === */.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 === */