/**
* Home
* Portfolio category page
    * Portfolio Property Options
    *Portfolio Taxonomy Archive
* Book A Consultation page
* Showroom page
* About Us page
* FAQs page
* Request a Brochure page
* 404 page
* Blogs page
* Text page
* Blog single page
* Refer a friend page
* Single kitchen
* Dev 6
*
*/ 
.products_load_more .loadmore_loader{
    position: absolute;
    bottom: 14px;
    right: 12px;
    left: unset;
    color: white;
    display: none;
} 

#load_more_products{
    position: relative;
}
.loadmore_loader_flatpack{
    display: none;
}
/* Professional Loading Placeholder Styles */
.color-placeholder {
    display: inline-block;
    width: 150px; /* Adjust to match your actual color cell width */
    height: 200px; /* Adjust to match your actual color cell height */
    margin: 10px;
    border-radius: 8px;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
    vertical-align: top;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.color-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.8),
        transparent
    );
    animation: shimmer 1.8s infinite ease-in-out;
}

@keyframes shimmer {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.color-placeholder .placeholder-image {
    width: calc(100% - 20px);
    height: 120px; /* Adjust based on your color image height */
    background: #e9ecef;
    border-radius: 6px;
    margin: 10px 10px 15px 10px;
    position: relative;
}

.color-placeholder .placeholder-content {
    padding: 0 10px;
}

.color-placeholder .placeholder-title {
    width: 80%;
    height: 16px;
    background: #e9ecef;
    border-radius: 4px;
    margin: 0 auto 10px;
}

.color-placeholder .placeholder-subtitle {
    width: 60%;
    height: 12px;
    background: #f1f3f4;
    border-radius: 4px;
    margin: 0 auto;
}

/* Enhanced fade-in animation for real colors - DO NOT override existing styles */
.color-color-cell {
    /* Only add transition, don't override existing display/positioning */
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Only apply animation states when specifically added */
.color-color-cell.loading-animation {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
}

.color-color-cell.loading-animation.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Placeholder container */
.color-placeholders-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

/* Loading error message styling */
.loading-error-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    margin: 20px;
    text-align: center;
}

.loading-error-message span {
    color: #856404;
    font-size: 16px;
    margin-bottom: 15px;
}

.retry-button {
    background: #007cba;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.retry-button:hover {
    background: #005a87;
}

/* Loading complete message */
.loading-complete-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #d4edda;
    color: #155724;
    padding: 12px 20px;
    border-radius: 6px;
    border: 1px solid #c3e6cb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
    font-weight: 500;
}

.loading-complete-message span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .color-placeholder {
        width: calc(50% - 15px);
        height: 180px;
        margin: 5px;
    }
    
    .color-placeholder .placeholder-image {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .color-placeholder {
        width: 100%;
        height: 160px;
        margin: 5px 0;
    }
    
    .color-placeholder .placeholder-image {
        height: 90px;
    }
}

/* Animation staggering for multiple placeholders */
.color-placeholder:nth-child(1) { animation-delay: 0s; }
.color-placeholder:nth-child(2) { animation-delay: 0.1s; }
.color-placeholder:nth-child(3) { animation-delay: 0.2s; }
.color-placeholder:nth-child(4) { animation-delay: 0.3s; }
.color-placeholder:nth-child(5) { animation-delay: 0.4s; }
.color-placeholder:nth-child(6) { animation-delay: 0.5s; }

/* Smooth transitions for placeholder removal */
.color-placeholder.removing {
    animation: fadeOutScale 0.3s ease forwards;
}

@keyframes fadeOutScale {
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}


/* Home */
.home.header {
    height: 74vh;
    min-height: 700px;
    position: relative;
    margin-bottom: 118px;
}

@media (max-width: 991px) {
    .home.header {
        min-height: 800px;
        margin-bottom: 500px;
    }
}

@media (max-width: 576px) {
    .home.header {
        min-height: 800px;
        margin-bottom: 250px;
    }
}

.home.header .front {
    position: absolute;
    height: 100%;
}

.home.header .front-left {
    display: flex;
    align-items: end;
    padding-bottom: 60px;
}

@media (max-width: 991px) {
    .home.header .front-left {
        align-items: center;
    }
}

@media (max-width: 767px) {
    .home.header .front-left {
        padding-bottom: 0px;
    }

    .flat-pack-container .section.cabinet-unit .cabinet-units .unit-item {
        margin-bottom: 0 !important;
    }
}

.home.header h1 {
    font-size: 72px;
    color: white;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .home.header h1 {
        font-size: 50px;
    }
}

@media (max-width: 576px) {
    .home.header h1 {
        font-size: 40px;
    }
}

.home.header p {
    color: white;
    margin-bottom: 85px;
}

@media (max-width: 768px) {
    .home.header p {
        margin-bottom: 50px;
    }
}

.home.header .icon-boxes {
    margin: -15px;
}

/* @media (max-width: 768px) {
    .home.header .icon-boxes {
        display: flex;
        flex-direction: column;
    }
} */


@media (max-width: 576px) {
    .home .front-page-banner-title {
        font-size: 20px;
    }
}

.section.completekitchen_section:nth-last-child(n+4),
.section.replacementDoor_section:nth-last-child(n+4) {
    min-height: unset !important;
}



.home.header .icon-box {
    display: flex;
    align-items: center;
    padding: 15px;
}

.home.header .icon-box img {
    margin-right: 20px;
}

.home.header .icon-box h6 {
    color: white;
    font-family: "Barlow";
    font-size: 14px;
    font-weight: 200;
    line-height: 180%;
}

.home.header .left {
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

@media (max-width: 991px) {
    .home.header .left {
        height: 800px;
    }
}

.home.header .right {
    z-index: 100;
}

.home.header .box-outer {
    padding: 50px 57px;
    display: flex;
    align-items: end;
    background-position: center !important;
    background-size: cover !important;
}

@media (max-width: 991px) {
    .home.header .box-outer {
        padding: 93px 57px;
    }
}

@media (max-width: 576px) {
    .home.header .box-outer {
        padding: 30px 57px;
    }
}

.home.header .box-outer:last-child {
    background-blend-mode: MULTIPLY, NORMAL;
    position: relative;
    z-index: 100;
}

.home.header .box-outer .texture {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    background-image: url(.././img/graphics/graphic-1.svg);
    opacity: 0.5;
    background-repeat: no-repeat;
    background-size: contain;
}

.home.header .box-outer a {
    width: 100%;
    z-index: 10;
}

.home.header .box-outer .box {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
}

.home.header .box-outer h4 {
    width: 50%;
    color: white;
}

@media (max-width: 991px) {
    .home.header .box-outer h4 {
        width: 63%;
    }
}

.home.header .sq {
    margin-left: auto;
    width: 69px;
    height: 69px;
    border: 1px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.home.header .box:hover .sq {
    background-color: var(--k4u-black);
    border-color: vaR(--k4u-black);
}


.home.intro {
    position: relative;
    margin-bottom: 150px;
}

@media (max-width: 991px) {
    .home.intro {
        top: 50px;
    }
}

.home.intro .main div {
    z-index: 100;
}

@media (max-width: 991px) {
    .home.intro .main div {
        margin-top: 30px;
    }
}

@media (max-width: 715px) {
    .home.intro .main div {
        margin-top: 20px;
    }
}


.home.intro .first {
    padding-right: 20px;
}

.home.intro .second {
    padding: 0 30px 0 50px;
}

@media (max-width: 991px) {
    .home.intro .second {
        padding: initial;
    }
}

.home.intro h2 {
    margin-bottom: 70px;
}

@media (max-width: 991px) {
    .home.intro h2 {
        margin-bottom: 30px;
    }
}

.home.intro .outer {
    position: absolute;
    height: 100%;
    width: 100%;
}

@media (max-width: 991px) {
    .home.intro .outer {
        position: relative;
        top: 50px;
        height: 300px;
    }
}

.home.intro .video {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

@media (max-width: 991px) {
    .home.intro .video {
        height: 300px;
    }
}

.home.intro .outer .play {
    z-index: 200;
    width: 146px;
    height: 146px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    border: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

.home.intro .play:hover {
    animation: pulse 0.6s ease-in-out;
}



.home.style {
    margin-bottom: 150px;
}

@media (max-width: 991px) {
    .home.style {
        margin-bottom: 50px;
    }
}

@media (max-width: 715px) {
    .home.style {
        margin-bottom: 50px;
    }
}

@media (max-width: 487px) {
    .home.style {
        padding-top: 100px;
    }
}

@media (max-width: 355px) {
    .home.style {
        padding-top: 200px;
    }
}

.home.style h2 {
    margin-bottom: 20px;
}

.home.style .under {
    margin-bottom: 58px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 991px) {
    .home.style .under {
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }
}

.home.style .under .wysiwyg {
    width: 75%;
}

@media (max-width: 991px) {
    .home.style .under .wysiwyg {
        width: 100%;
    }
}

.home.brochure {
    margin-bottom: 79px;
}

.home.brochure .global.cta-banner-1 .right .content {
    padding: 106px 97px 106px 50px;
}

@media (max-width: 991px) {
    .home.brochure .global.cta-banner-1 .right .content {
        padding: 50px;
    }
}

@media (max-width: 462px) {
    .home.brochure .global.cta-banner-1 .right .content {
        padding: 15px;
    }
}

.home.brochure .global.cta-banner-1 .wide-right-inner {
    background-color: transparent;
}


.home.usps {
    margin-bottom: 117px;
}


.home.diy {
    margin-bottom: 103px;
}

@media (max-width: 991px) {
    .home.diy {
        margin-bottom: 50px;
    }
}

.home.diy h2 {
    margin-bottom: 20px;
}

.home.diy .wysiwyg {
    margin-bottom: 54px;
}

.home.diy .items-container {
    margin: 0 -15px;
}

@media (max-width: 991px) {
    .home.diy .items-container {
        display: flex;
        gap: 30px;
    }
}

.home.diy .item-container {
    padding: 0 15px;
}

.home.diy .item {
    min-height: 430px;
    display: flex;
    align-items: end;
    justify-content: center;
    background-position: center !important;
    background-size: cover !important;
    text-align: center;
    padding: 30px;
}

@media (max-width: 576px) {
    .home.diy .item {
        min-height: 240px;
    }
}

.home.diy .content {
    width: 100%;
}

.home.diy h3 {
    color: white;
    margin-bottom: 22px;
}

.home.diy .aspire-btn {
    width: 100%;
}




.home.showroom {
    position: relative;
}

.home.showroom .left {
    padding: 154px 50px 154px 0;
    z-index: 100;
}

@media (max-width: 991px) {
    .home.showroom .left {
        padding: 50px 0px;
    }
}

.home.showroom h2 {
    margin-bottom: 20px;
}

.home.showroom .wysiwyg {
    margin-bottom: 50px;
}

.home.showroom .wide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

@media (max-width: 991px) {
    .home.showroom .wide {
        position: relative;
        height: 300px;
    }
}

.home.showroom .wide .right {
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
}

@media (max-width: 991px) {
    .home.showroom .wide .right {
        height: 300px;
    }
}

.home.showroom .graphic {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(.././img/graphics/graphic-3.svg);
    background-repeat: no-repeat;
    background-position: -135px center;
    background-size: cover;
}


/* Portfolio category page */
.category.hero {
    margin-bottom: 70px;
}

@media (max-width: 576px) {
    .category.hero {
        margin-bottom: initial;
    }
}


.category.styles {
    margin-bottom: 150px;
}

@media (max-width: 992px) {
    .category.styles {
        margin-bottom: 50px;
    }

    /* .replacement-doors-content-area .replacement-products-grid {
        margin-bottom: 168px !important;
    } */
}


.category.styles h2 {
    margin-bottom: 20px;
}

.category.styles .top {
    margin-bottom: 58px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 767px) {
    .category.styles .top {
        margin: 50px 0px;
        flex-direction: column;
    }
}



.category.colours {
    margin-bottom: 150px;
}

@media (max-width: 992px) {
    .category.colours {
        margin-bottom: 50px;
    }
}


.category.colours h2 {
    margin-bottom: 20px;
}

.category.colours .top {
    margin-bottom: 58px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 767px) {
    .category.colours .top {
        flex-direction: column;
    }
}



/* Portfolio Property Options */
/* .property.hero {
    margin-bottom: 72px;
    padding-top: 91px;
}
.property.hero h1 {
    margin-bottom: 20px;
} */


.property.grid {
    margin-bottom: 125px;
}


.property.cta {
    margin-bottom: 22px;
}



/* Portfolio Taxonomy Archive */
.taxonomy.hero {
    margin-bottom: 66px;
}

.taxonomy.intro {
    margin-bottom: 150px;
}

@media (max-width: 991px) {
    .taxonomy.intro {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .taxonomy.intro {
        padding-top: 50px;
    }
}

.taxonomy.intro .right {
    padding-left: 41px;
}

@media (max-width: 991px) {
    .taxonomy.intro .right {
        padding-left: initial;
    }
}


.taxonomy.items {
    margin-bottom: 150px;
}

@media (max-width: 991px) {
    .taxonomy.items {
        margin-bottom: 50px;
    }
}

.taxonomy.items h2 {
    margin-bottom: 20px;
}

.taxonomy.items .wysiwyg {
    margin-bottom: 54px;
}


.taxonomy.content {
    position: relative;
    margin-bottom: 150px;
}

.taxonomy.content .left {
    padding: 74px 50px 74px 0;
    z-index: 100;
}

@media (max-width: 991px) {
    .taxonomy.content .left {
        padding: initial;
    }
}

.taxonomy.content h2 {
    margin-bottom: 20px;
}

.taxonomy.content .wysiwyg {
    margin-bottom: 50px;
}

.taxonomy.content .wide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.taxonomy.content .wide .right {
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
}

@media (max-width: 991px) {
    .taxonomy.content .wide .right {
        top: 350px;
    }
}

@media (max-width: 475px) {
    .taxonomy.content .wide .right {
        top: 430px;
    }
}

@media (max-width: 388px) {
    .taxonomy.content .wide .right {
        height: 300px;
        top: 640px;
    }
}

@media (max-width: 329px) {
    .taxonomy.content .wide .right {
        top: 700px;
    }
}

.taxonomy.content .graphic {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(.././img/graphics/graphic-3.svg);
    background-repeat: no-repeat;
    background-position: -135px center;
    background-size: 100%;
}


.taxonomy.other {
    margin-bottom: 150px;
    margin-top: 150px;
}

@media (max-width: 991px) {
    .taxonomy.other {
        margin-bottom: 70px;
        margin-top: 400px;
    }
}

@media (max-width: 475px) {
    .taxonomy.other {
        margin-top: 500px;
    }
}

@media (max-width: 388px) {
    .taxonomy.other {
        margin-top: 450px;
    }
}

.taxonomy.other h2 {
    margin-bottom: 30px;
}



.taxonomy.cta {
    margin-bottom: 30px;
}



/* Book A Consultation page */
.consult.header {
    position: relative;
    margin-bottom: 150px;
}

@media (max-width: 991px) {
    .consult.header {
        margin-bottom: 50px;
        top: 60px;
    }
}

.consult.header .left {
    padding: 74px 50px 43px 0;
    z-index: 100;
}

@media (max-width: 991px) {
    .consult.header .left {
        padding: 50px 0px;
    }
}

.consult.header h1 {
    margin-bottom: 45px;
}

.consult.header h3 {
    margin-bottom: 25px;
}

.consult.header p {
    margin-bottom: 50px;
}

.consult.header .aspire-form .btn-container {
    height: 261px;
    display: flex;
    align-items: end;
}

@media (max-width: 600px) {
    .consult.header .aspire-form .btn-container {
        height: 100px;
    }
}

.consult.header .aspire-form .date-container {
    position: relative;
}

.consult.header .aspire-form .date-container::before,
.consult.header .aspire-form .time-container::before {
    content: '';
    background-image: url(.././img/icons/calendar-2.svg);
    width: 24px;
    height: 24px;
    position: absolute;
    right: 15px;
    bottom: 30px;
    z-index: 10;
    background-size: contain;
}

.consult.header .aspire-form .time-container::before {
    background-image: url(.././img/icons/clock.svg);
}

.consult.header .wide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

@media (max-width: 991px) {
    .consult.header .wide {
        position: relative;
        height: 300px;
    }
}

.consult.header .wide .right {
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
}

@media (max-width: 991px) {
    .consult.header .wide .right {
        height: 300px;
    }
}

.consult.header .graphic {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(.././img/graphics/graphic-3.svg);
    background-repeat: no-repeat;
    background-position: -135px center;
    background-size: 100%;
}


.consult.info {
    margin-bottom: 100px;
}

.consult.info h2 {
    margin-bottom: 40px;
}

.consult.info .items-container {
    margin: 0 -15px;
}

.consult.info .item-container {
    padding: 0 15px;
}

@media (max-width: 575px) {
    .consult.info .item-container {
        margin: 10px 0px;
    }
}

.consult.info .item {
    background-color: var(--k4u-light-gray);
    padding: 56px 40px;
    height: 100%;
    display: flex;
    align-items: center;
}

.consult.info h3 {
    margin-bottom: 20px;
}

.consult.info .alt h3 {
    font-size: 25px;
    margin-bottom: 14px;
}

@media (max-width: 440px) {
    .consult.info .alt h3 {
        font-size: 19px;
    }
}

.consult.info .alt h3:last-child {
    margin-bottom: 0;
}




/* Showroom page */
.showroom.hero {
    margin-bottom: 70px;
}


.showroom.info {
    margin-bottom: 100px;
}

@media (max-width: 767px) {
    .showroom.info {
        margin-bottom: 50px;
        margin-top: 100px;
    }
}

.showroom.info h2 {
    margin-bottom: 40px;
}

@media (max-width: 991px) {
    .showroom.info h2 {
        margin-top: 50px;
        margin-bottom: 10px;
    }
}

.showroom.info .items-container {
    margin: 0 -15px;
}

.showroom.info .item-container {
    padding: 0 15px;
}

@media (max-width: 575px) {
    .showroom.info .item-container {
        margin: 5px 0px;
    }
}

.showroom.info .item {
    background-color: var(--k4u-light-gray);
    padding: 56px 40px;
    height: 100%;
    display: flex;
    align-items: center;
}

.showroom.info h3 {
    margin-bottom: 20px;
}

.showroom.info .alt h3 {
    font-size: 25px;
    margin-bottom: 14px;
}

@media (max-width: 440px) {
    .showroom.info .alt h3 {
        font-size: 19px;
    }
}

.showroom.info .alt h3:last-child {
    margin-bottom: 0;
}


.showroom.map {
    margin-bottom: 150px;
}

@media (max-width: 991px) {
    .showroom.map {
        margin-bottom: 50px;
    }
}

.showroom.map .wide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

@media (max-width: 991px) {
    .showroom.map .wide {
        position: relative;
        height: 400px;
    }
}

.showroom.map .wide .left-outer {
    padding-right: 30px;
}

@media (max-width: 991px) {
    .showroom.map .wide .left-outer {
        height: 400px;
        padding-right: 0px;
    }
}

.showroom.map .wide .right-outer {
    background-color: var(--k4u-light-gray);
}

.showroom.map .narrow {
    position: relative;
    z-index: 100;
}

.showroom.map .narrow .right-container {
    padding-left: 15px;
    padding-bottom: 10px;
}

@media (max-width: 991px) {
    .showroom.map .narrow .right-container {
        padding-left: initial;
    }

}

.showroom.map .narrow .right {
    padding: 132px 40px 132px 60px;
    min-height: 630px;
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .showroom.map .narrow .right {
        padding: 50px 0px 0px;
        min-height: initial;
    }
}

.showroom.map h2 {
    margin-bottom: 40px;
}

.showroom.gallery {
    margin-bottom: 150px;
}

@media (max-width: 991px) {
    .showroom.gallery {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .showroom.gallery {
        margin-bottom: 0px;
    }
}

.showroom.gallery h2 {
    margin-bottom: 40px;
}

.showroom.gallery .carousel-container {
    position: relative;
}

.showroom.gallery img {
    width: 100%;
    height: 657px;
    object-fit: cover;
}

@media (max-width: 1200px) {
    .showroom.gallery img {
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .showroom.gallery img {
        height: initial;
    }
}

@media (max-width: 767px) {
    .showroom.gallery img {
        margin-bottom: 50px;
    }
}

.showroom.gallery .swiper-gallery-button-prev svg,
.showroom.gallery .swiper-gallery-button-next svg {
    height: unset;
    transition: all 0.2s;
}

.showroom.gallery .swiper-gallery-button-prev {
    left: -70px;
}

@media (max-width: 1200px) {
    .showroom.gallery .swiper-gallery-button-prev {
        left: -23px;
    }
}

@media (max-width: 992px) {
    .showroom.gallery .swiper-gallery-button-prev {
        left: -23px;
        top: 40%;
    }
}

.showroom.gallery .swiper-gallery-button-next {
    right: -70px;
    transform: rotate(180deg);
}

@media (max-width: 1200px) {
    .showroom.gallery .swiper-gallery-button-next {
        right: -23px;
    }
}

@media (max-width: 992px) {
    .showroom.gallery .swiper-gallery-button-next {
        right: -23px;
        top: 40%;
    }
}

.showroom.gallery .swiper-gallery-button-prev:hover svg,
.showroom.gallery .swiper-gallery-button-next:hover svg {
    transform: translateX(-10px);
}

@media (max-width: 768px) {

    .showroom.gallery .swiper-gallery-button-prev:hover svg,
    .showroom.gallery .swiper-gallery-button-next:hover svg {
        transform: translateX(0px);
    }
}

.showroom.usps {
    margin-bottom: 100px;
}

.showroom.usps h2 {
    margin-bottom: 40px;
}



/* About Us page */
.about.hero {
    margin-bottom: 95px;
}


.about.intro {
    margin-bottom: 173px;
}

@media (max-width: 991px) {
    .about.intro {
        margin-bottom: 50px;
    }
}

.about.intro .wide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

@media (max-width: 991px) {
    .about.intro .wide {
        position: relative;
        height: 470px;
    }
}

.about.intro .left {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.about.intro .graphic {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(.././img/graphics/graphic-4.svg);
    background-size: 443px;
    background-repeat: no-repeat;
    background-position: bottom right;
}

@media (max-width: 576px) {
    .about.intro .graphic {
        background-size: 233px;
    }
}

.about.intro .right {
    padding: 109px 30px 77px 90px;
}

@media (max-width: 991px) {
    .about.intro .right {
        padding: 50px 0px 0px;
    }
}

.about.intro h2 {
    margin-bottom: 20px;
}

.about.content {
    margin-bottom: 150px;
}

@media (max-width: 991px) {
    .about.content {
        margin-bottom: 50px;
    }
}

.about.content .item {
    margin-bottom: 50px;
}

.about.content .item:last-child {
    margin-bottom: 0;
}

.about.content .item:nth-child(even) .text {
    order: 2;
    padding: 68px 0px 68px 90px;
}

@media (max-width: 991px) {
    .about.content .item:nth-child(even) .text {
        padding: 50px 30px;
    }
}

.about.content .text {
    padding: 68px 93px 68px 0;
}

@media (max-width: 991px) {
    .about.content .text {
        padding: 50px 30px 0px;
        order: 2;
    }
}

.about.content .item:nth-child(even) .img {
    order: 1;
}

.about.content h2 {
    margin-bottom: 20px;
}

.about.content .img {
    position: relative;
}

@media (max-width: 991px) {
    .about.content .img {
        height: 300px;
        order: 1;
    }
}

.about.content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}


.about.usps {
    margin-bottom: 150px;
}

@media (max-width: 767px) {
    .about.usps {
        margin-bottom: 50px;
    }
}

.about.usps h2 {
    margin-bottom: 40px;
}

.about.usps .items-container {
    margin: -15px -15px;
}

.about.usps .item-container {
    padding: 15px 15px;
}

.about.usps .item {
    background-color: var(--k4u-light-gray);
    display: flex;
    align-items: center;
    gap: 44px;
    padding: 35px 40px;
}



.about.content-2 {
    margin-bottom: 150px;
}

.about.content-2 .text {
    padding: 89px 87px 131px 75px;
    background-color: var(--k4u-light-gray);
}

@media (max-width: 991px) {
    .about.content-2 .text {
        order: 2;
    }
}

@media (max-width: 576px) {
    .about.content-2 .text {
        padding: 30px;
    }
}


.about.content-2 .item:nth-child(even) .text {
    order: 2;
}

.about.content-2 .item:nth-child(even) .img {
    order: 1;
}

.about.content-2 h2 {
    margin-bottom: 20px;
}

.about.content-2 p {
    margin-bottom: 40px;
}

.about.content-2 .img {
    position: relative;
}

@media (max-width: 991px) {
    .about.content-2 .img {
        height: 300px;
        order: 1;
    }
}

.about.content-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}



.about.fitting {
    margin-bottom: 150px;
}

@media (max-width: 576px) {
    .about.fitting {
        margin-bottom: initial;
    }
}

.about.fitting h2 {
    margin-bottom: 20px;
}

.about.fitting p {
    margin-bottom: 39px;
}

.about.fitting .left {
    position: relative;
}

.about.fitting img {
    position: absolute;
    object-fit: cover;
}

.about.fitting .img-1 {
    width: 598px;
    height: 466px;
    top: -30px;
    left: -300px;
}

@media (max-width: 991px) {
    .about.fitting .img-1 {
        top: -60px;
        left: 0px;
    }
}

@media (max-width: 640px) {
    .about.fitting .img-1 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .about.fitting .img-1 {
        width: 250px;
        height: 250px;
    }
}

.about.fitting .img-2 {
    width: 349px;
    height: 349px;
    top: 170px;
    right: 120px;
}

@media (max-width: 991px) {
    .about.fitting .img-2 {
        top: 137px;
        right: 0px;
    }
}

@media (max-width: 640px) {
    .about.fitting .img-2 {
        width: 300px;
        height: 300px;
        top: 14px;
        right: 0px;
    }
}

@media (max-width: 480px) {
    .about.fitting .img-2 {
        width: 200px;
        height: 200px;
        top: 14px;
        right: 0px;
    }
}

.about.fitting .img-3 {
    width: 303px;
    height: 303px;
    bottom: -15px;
    left: -15px;
}

@media (max-width: 991px) {
    .about.fitting .img-3 {
        top: 282px;
        left: 20px;
    }
}

@media (max-width: 600px) {
    .about.fitting .img-3 {
        top: 258px;
        left: 30px;
    }
}

@media (max-width: 480px) {
    .about.fitting .img-3 {
        width: 200px;
        height: 200px;
        top: 118px;
        left: 38px;
    }
}

@media (max-width: 991px) {
    .about.fitting .right {
        position: initial;
        margin-top: 650px;
    }
}

@media (max-width: 480px) {
    .about.fitting .right {
        margin-top: 410px;
    }
}

.about.video {
    padding-top: 150px;
    margin-bottom: 250px;
}

@media (max-width: 576px) {
    .about.video {
        margin-top: 50px;
        margin-bottom: initial;
    }
}

.about.video .outer {
    position: relative;
}

.about.video .narrow .left {
    padding: 131px 0;
    z-index: 100;
}

@media (max-width: 991px) {
    .about.video .narrow .left {
        padding: 0px;
        margin-top: 460px;
    }
}

@media (max-width: 576px) {
    .about.video .narrow .left {
        margin-top: 150px;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .about.video .outer .text-2 {
        font-size: 32px;
    }
}

.about.video .wide-1,
.about.video .wide-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

@media (max-width: 991px) {
    .about.video .wide-1 {
        width: 100%;
        height: 35%;
        top: 400px;
    }
}

@media (max-width: 576px) {
    .about.video .wide-1 {
        width: 100%;
        height: 52%;
        top: 137px;
    }
}

.about.video .wide-1 .left {
    background-color: var(--k4u-light-gray);
    z-index: 99;
}

.about.video .wide-2 {
    top: -150px;
}

.about.video .wide-2 .right {
    height: calc(100% + 300px);
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

@media (max-width: 576px) {
    .about.video .wide-2 .right {
        height: 350px;
    }
}

.about.video .wide-2 .right button {
    z-index: 200;
    width: 146px;
    height: 146px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    border: none;
}

.about.video .wide-2 .right button:hover {
    animation: pulse 0.6s ease-in-out;
}

.about.cta {
    margin-top: 150px;
}

@media (max-width: 991px) {
    .about.cta {
        margin-top: 50px;
    }
}





/* FAQs page */
.faqs.main {
    margin-bottom: 68px;
}

.faqs.main .outer {
    background-color: var(--k4u-light-gray);
    padding: 30px;
}


.faqs.cta {
    margin-bottom: 30px;
}



/* Request a Brochure page */
.brochure.header {
    position: relative;
}

.brochure.header .left {
    padding: 74px 50px 43px 0;
    z-index: 100;
}

.brochure.header h1 {
    margin-bottom: 45px;
}

.brochure.header h3 {
    margin-bottom: 25px;
}

.brochure.header p {
    margin-bottom: 50px;
}

.brochure.header input[type="submit"] {
    width: 100%;
}

.brochure.header .wide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.brochure.header .wide .right {
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
}

.brochure.header .graphic {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(.././img/graphics/graphic-3.svg);
    background-repeat: no-repeat;
    background-position: -135px center;
    background-size: 100%;
}



/* 404 page */
.four.main {
    /* background-color: var(--k4u-light-gray); */
    background-image: url(.././img/graphics/graphic-5.svg);
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}

@media (max-width: 738px) {
    .four.main {
        background-size: cover;
    }
}

.four.main .outer {
    padding: 200px 0;
    align-items: center;
}

@media (max-width: 767px) {
    .four.main .outer {
        padding: 100px 0px;
    }
}

.four.main h1 {
    margin-bottom: 17px;
    font-size: 80px;
    line-height: 140%;
}

@media (max-width: 738px) {
    .four.main h1 {
        font-size: 45px;
    }
}

.four.main h2 {
    margin-bottom: 67px;
    font-size: 40px;
    line-height: 140%;
}



/* Blogs page */
.blog.main {
    margin-bottom: 91px;
}

/* Text page */
.text.main {
    margin-bottom: 100px;
}

.text.dynamic {
    margin-bottom: 70px;
}

.text.dynamic .content-container .row {
    margin: -20px;
}

.text.dynamic .content-container [class*="col-"] {
    padding: 20px;
}



/* Blog single page */
.single.main {
    margin-bottom: 89px;
}

.single.main .hero {
    margin-bottom: 43px;
    padding-top: 91px;
}

.single.main .hero h1 {
    margin-bottom: 16px;
}

.single.main .hero h5 {
    font-size: 16px;
    line-height: 150%;
}

.single.main .cover {
    width: calc(100% + 290px);
    margin-left: -290px;
    height: 499px;
    object-fit: cover;
    margin-bottom: 65px;
}

@media (max-width: 991px) {
    .single.main .cover {
        width: 100%;
        margin-left: initial;
        height: 300px;
    }
}

.single.main .right {
    padding-top: 206px;
}

@media (max-width: 991px) {
    .single.main .right {
        padding-top: 50px;
    }
}

.single.main .bottom {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 77px;
}

.single.main h5 {
    font-size: 20px;
    line-height: 150%;
    margin-right: 53px;
}

@media (max-width: 576px) {
    .single.main h5 {
        margin-right: initial;
    }
}

.single.main .fa-x-twitter {
    color: white;
    background-color: var(--k4u-black);
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.single.main .fa-facebook {
    font-size: 32px;
    color: var(--k4u-black);
}



/* Refer a friend page */
.refer.header {
    position: relative;
    margin-bottom: 80px;
}

@media (max-width: 991px) {
    .refer.header {
        margin-bottom: 350px;
    }
}

@media (max-width: 815px) {
    .refer.header {
        margin-bottom: 400px;
    }
}

@media (max-width: 554px) {
    .refer.header {
        margin-bottom: 450px;
    }
}

@media (max-width: 425px) {
    .refer.header {
        margin-bottom: 500px;
    }

    .home.intro {
        margin-bottom: 50px;
    }
}

@media (max-width: 380px) {
    .refer.header {
        margin-bottom: 350px;
    }
}

.refer.header .left {
    padding: 74px 50px 43px 0;
    z-index: 100;
}

@media (max-width: 576px) {
    .refer.header .left {
        padding: 70px 0px 50px;
    }
}

.refer.header h1 {
    margin-bottom: 25px;
}

.refer.header .wide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.refer.header .wide .right {
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
    position: relative;
}

@media (max-width: 991px) {
    .refer.header .wide .right {
        top: 300px;
    }
}

@media (max-width: 815px) {
    .refer.header .wide .right {
        top: 350px;
    }
}

@media (max-width: 554px) {
    .refer.header .wide .right {
        top: 400px;
    }
}

@media (max-width: 420px) {
    .refer.header .wide .right {
        top: 450px;
    }
}

@media (max-width: 380px) {
    .refer.header .wide .right {
        top: 650px;
        height: 300px;
    }
}

@media (max-width: 350px) {
    .refer.header .wide .right {
        top: 700px;
        height: 300px;
    }
}

.refer.header .graphic {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(.././img/graphics/graphic-3.svg);
    background-repeat: no-repeat;
    background-position: -135px center;
    background-size: 100%;
}

.refer.main {
    margin-bottom: 100px;
}

.refer.main .wysiwyg {
    margin-bottom: 35px;
}



/* Single kitchen */
.kitchen.title {
    padding: 91px 0 30px 0;
}

@media (max-width: 576px) {
    .kitchen.title {
        padding: 60px 0px 30px;
    }
}

.kitchen.hero {
    margin-bottom: 40px;
}

.kitchen.hero .wide {
    position: absolute;
    width: 100%;
    height: 630px;
    top: 0;
    left: 0;
}

@media (max-width: 991px) {
    .kitchen.hero .wide {
        position: relative;
    }
}

@media (max-width: 991px) {
    .kitchen.hero .wide {
        height: 280px;
    }
}

.kitchen.hero .left {
    padding-right: 30px;
}

@media (max-width: 991px) {
    .kitchen.hero .left {
        padding-right: initial;
    }
}

.kitchen.hero img {
    width: 100%;
    height: 630px;
    object-fit: cover;
}

@media (max-width: 576px) {
    .kitchen.hero img {
        object-fit: cover;
        height: 350px;
    }
}

.kitchen.hero .wide .right {
    background-color: var(--k4u-light-gray);
}

@media (max-width: 991px) {
    .kitchen.hero .wide .right {
        display: none;
    }
}

.kitchen.hero .narrow {
    min-height: 630px;
    align-items: center;
}

@media (max-width: 991px) {
    .kitchen.hero .narrow {
        min-height: initial;
        margin-top: 590px;
    }
}

@media (max-width: 576px) {
    .kitchen.hero .narrow {
        min-height: initial;
        margin-top: 290px;
    }
}

.kitchen.hero .narrow .right {
    z-index: 100;
    padding-left: 60px;
}

.kitchen.hero .narrow .right p {
    font-size: 16px;
    margin-bottom: 20px;
}

.kitchen.hero .narrow .right p:last-child {
    margin-bottom: 0px;
}

@media (max-width: 991px) {
    .kitchen.hero .narrow .right {
        padding-left: initial;
    }
}


.kitchen.hero-under {
    margin-bottom: 100px;
}

@media (max-width: 991px) {
    .kitchen.hero-under {
        margin-top: -130px;
    }
}

.kitchen.hero-under .left {
    padding-right: 30px;
    position: relative;
}

@media (max-width: 991px) {
    .kitchen.hero-under .left {
        padding-right: initial;
        bottom: 28rem;
    }
}

@media (max-width: 845px) {
    .kitchen.hero-under .left {
        bottom: 32rem;
    }
}

@media (max-width: 695px) {
    .kitchen.hero-under .left {
        bottom: 35rem;
    }
}

@media (max-width: 576px) {
    .kitchen.hero-under .left {
        bottom: 35rem;
    }
}

@media (max-width: 562px) {
    .kitchen.hero-under .left {
        bottom: 37rem;
    }
}

@media (max-width: 539px) {
    .kitchen.hero-under .left {
        bottom: 39rem;
    }
}

@media (max-width: 463px) {
    .kitchen.hero-under .left {
        bottom: 43rem;
    }
}

@media (max-width: 455px) {
    .kitchen.hero-under .left {
        bottom: 48rem;
    }
}

@media (max-width: 384px) {
    .kitchen.hero-under .left {
        bottom: 52rem;
    }
}

@media (max-width: 355px) {
    .kitchen.hero-under .left {
        bottom: 56rem;
    }
}

@media (max-width: 347px) {
    .kitchen.hero-under .left {
        bottom: 61rem;
    }
}


.kitchen.hero-under .left .swiper-slide-thumb-active img {
    border: 2px solid var(--k4u-black);
}

.kitchen.hero-under .left img {
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.kitchen.hero-under .swiper-kitchen-button-prev svg,
.kitchen.hero-under .swiper-kitchen-button-next svg {
    height: unset;
    transition: all 0.2s;
}

@media (max-width: 992px) {

    .kitchen.hero-under .swiper-kitchen-button-prev svg,
    .kitchen.hero-under .swiper-kitchen-button-next svg {
        height: revert-layer;
    }
}

.kitchen.hero-under .swiper-kitchen-button-prev {
    left: -50px;
}

@media (max-width: 992px) {
    .kitchen.hero-under .swiper-kitchen-button-prev {
        left: initial;
    }
}

@media (max-width: 991px) {
    .kitchen.hero-under .swiper-kitchen-button-prev {
        top: 50%;
        left: -14px;
    }
}


.kitchen.hero-under .swiper-kitchen-button-next {
    right: -23px;
    transform: rotate(180deg);
}

@media (max-width: 992px) {
    .kitchen.hero-under .swiper-kitchen-button-next {
        right: 30px;
    }
}

@media (max-width: 991px) {
    .kitchen.hero-under .swiper-kitchen-button-next {
        top: 50%;
        right: -14px;
    }
}

.kitchen.hero-under .swiper-kitchen-button-prev:hover svg,
.kitchen.hero-under .swiper-kitchen-button-next:hover svg {
    transform: translateX(-10px);
}

.kitchen.hero-under .right {
    background-color: var(--k4u-light-gray);
    padding: 30px;
    display: flex;
    gap: 24px;
    justify-content: end;
}

@media (max-width: 576px) {
    .kitchen.hero-under .right {
        flex-direction: column;
    }
}

.kitchen.hero-under a {
    padding: 18px 35px;
}

.kitchen.hero-under a:first-child {
    background-color: transparent;
    color: var(--k4u-black);
}

.kitchen.hero-under a:first-child:hover {
    background-color: var(--k4u-black);
    color: white;
}


.kitchen.other {
    margin-bottom: 100px;
}

.kitchen.other h2 {
    margin-bottom: 40px;
}


.kitchen.usps {
    margin-bottom: 150px;
}

@media (max-width: 768px) {
    .kitchen.usps {
        margin-bottom: 50px;
    }
}

.kitchen.usps h2 {
    margin-bottom: 40px;
}

/* Dev 6 */
.row.section.completekitchen.snippet-hero-min.snippet-title div {
    width: 50% !important;
    /* min-height: 20vh; */
}

.default-popup-completekitchen.section.completekitchen.collection-popup.show .popup-content {
    display: flex;
    padding: 0 !important;
    justify-content: center;
    align-items: center;
    border: 0px !important;
}

.popup-content div.popup-content-child {
    width: 50%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
}

.popup-content-subchild-2 * {
    text-align: left !important;
    width: 100%;
}

.popup-content-child.popup-content-child-2 {
    padding-left: 27px;
    padding-bottom: 22px;
}

.section.collection-popup .popup-content {
    height: 350px !important;
}

.section.collection-popup .popup-content img {
    margin: 0px !important;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.popup-content-subchild-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.section.collection-popup .close-popup {
    right: -30px !important;
    top: -28px !important;
}

.section.collection-popup .close-popup i {
    color: white !important;
}

.row.section.completekitchen.kitchen-collection.completekitchen_section {
    margin-bottom: 20px
}

@media screen and (max-width:1024px) {
    .col-7.title-section h1 {
        font-size: 30px;
    }

    .flatstep-css .progress-nav li:last-child {
        white-space: nowrap;
    }

    .section.cabinet-unit .unit-title h3 {
        font-size: 22px !important;
        white-space: nowrap;
    }

    .flat-pack-container .cate-nav-flat-pack {
        padding: 20px 30px !important;
    }

    .door-colors-wrapper {
        row-gap: 0px !important;
        column-gap: 20px !important;
    }

    .color-selection-main .door-colors-wrapper h2 {
        font-size: 17px !important;
    }

    .cate-nav-flat-pack .unit-type-wrapper .unit-type-single {
        padding-bottom: 5px !important;
    }

}

@media screen and (max-width:767px) {
    .col-5.snippet.step-bar:has(.snippet.step-bar ul:has(li:first-child:not(.active))) {
        position: fixed;
        top: 0;
        left: 0;
        background-color: white;
        width: 100vw;
        z-index: 999;
    }

    .snippet.step-bar .progress-nav li:last-child a {
        transform: translateX(-30%) !important;
        -webkit-transform: translateX(-30%) !important;
        -moz-transform: translateX(-30%) !important;
        -ms-transform: translateX(-30%) !important;
        -o-transform: translateX(-30%) !important;
    }

    .snippet.step-bar .progress-nav li a {
        font-size: 14px !important;
        -webkit-transform: translateX(-100%) !important;
        -moz-transform: translateX(-100%) !important;
        -ms-transform: translateX(-100%) !important;
        -o-transform: translateX(-100%) !important;
        transform: translateX(-100%) !important;
    }

    .snippet.step-bar .progress-nav {
        max-width: unset !important;
        margin-left: unset !important;
        justify-content: center;
    }

    .row.section.completekitchen.snippet-hero-min.snippet-title div {
        width: 100% !important;
        margin: auto;
        text-align: center;
    }

    .row.section.completekitchen.snippet-hero-min.snippet-title {
        flex-direction: column;
    }

    .default-popup-completekitchen.section.completekitchen.collection-popup.show .popup-content {
        flex-direction: column;
    }

    .popup-content-child {
        width: 100% !important;
    }

    .section.collection-popup .popup-content img {
        max-width: unset !important;
    }

    .popup-content div.popup-content-child {
        align-items: center;
    }

    .popup-content-subchild-2 * {
        text-align: center !important;
    }

    .popup-content-subchild-2 h4 {
        margin-top: 7px;
    }

    .section.collection-popup .popup-content h3 {
        margin-top: 10px !important;
    }

    .popup-content-child.popup-content-child-2 {
        padding-left: unset;
    }

    /* .col-5.snippet.step-bar { position: fixed; background: white; top: 0; left: 0; z-index: 999; } */
}

@media screen and (max-width:375px) {
    ul.progress-nav.progress-function li:first-child a {
        transform: translateX(-117%) !important;
    }
}

/* End Dev 6 */




/* replacement door css */
.color-selection-main {
    background: var(--k4u-light-gray);
    padding: 0;
    justify-content: space-between;
    align-items: center;
    transition: all .7s;
    display: none;
    padding-top: 20px;
    padding-left: 30px;


}

.replacement-doors-content-area .color-selection-main {
    margin-bottom: 50px;
}

.color-selection-main .range-title {
    margin-bottom: 10px;
}

.color-selection-main .range-title {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 49px;
}

.door-colors-wrapper {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 55px;
    display: flex;

}

.color-selection-main .door-colors-wrapper h2 {
    font-family: 'Barlow', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: var(--k4u-black);
    width: auto;
    cursor: pointer;
    padding-bottom: 20px;
}

.complete-kitchen-color-options-wrapper {
    display: none;
    align-items: baseline;
    column-gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
    row-gap: 30px;
    /* padding-bottom: 200px; */
}

.complete-kitchen-color-options-wrapper .color-color-cell {
    width: 14.8%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    row-gap: 0;
    row-gap: 10px;
    position: relative;
    cursor: pointer;
}


/* .complete-kitchen-color-options-wrapper{
    column-gap: 0 !important;
} */


.door-color-options-wrapper {
    display: flex;
    justify-content: start;
    align-items: baseline;
    gap: 35px;
    /* margin-top: 50px; */
    flex-wrap: wrap;
    /* row-gap: 30px; */
}

.color-color-cell h2 {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 32px;
    color: var(--k4u-black);
    width: auto;
    text-align: center;
    /* white-space: nowrap; */
}

.color-color-cell img {
    width: 120px;
    height: 120px;
}

.door-type-cat-wrapper {
    background: #e0e0e0;
    padding: 20px 30px;
    padding-bottom: 0;
    justify-content: space-between;
    align-items: center;
    transition: all .7s;
    display: none;
}

.replacement-doors-content-area .door-type-cat-wrapper {
    margin-bottom: 30px !important;
}

.door-type-cat-wrapper .range-title {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 49px;
    margin-bottom: 10px;
}

.color-selection-main .range-title h3 {
    font-size: 30px;
}

.door-type-cat-wrapper .range-title h3 {
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 140%;
    color: var(--k4u-black);
}

.door-type-cat-wrapper .door-type-cat-main {
    flex-wrap: wrap;
    justify-content: flex-start;
    /* gap: 55px; */
    display: flex;
    column-gap: 30px;
    row-gap: 10px;
}

.door-type-cat-wrapper .door-type-cat-main p {
    /* font-family: 'Barlow', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: var(--k4u-black);
    width: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    column-gap: 5px;
    padding-bottom: 20px;
    text-transform: capitalize; */


    font-family: 'Barlow', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: var(--k4u-black);
    width: auto;
    cursor: pointer;
    display: flex;
    align-items: center;
    column-gap: 5px;
    padding-bottom: 20px;
    text-transform: capitalize;

}

.door-look-cells-wrapper {
    display: flex;
    /* padding: 30px 0;  removed space between Door type and unit type on complete kitchen flatpack page*/
    align-items: start;
    column-gap: 40px;
    display: none;
    padding-left: 20px;
}

.door-look-head {
    width: 15%
}


.door-look-cells-main {
    gap: 24px;
    justify-content: flex-start;
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 20px;
    width: 100%;
}

.door-look-cells-main p {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: var(--k4u-darker-gray);
    padding: 20px;
    border-radius: 100px;
    transition: 1s;
    text-transform: capitalize;
    cursor: pointer;
}

.door-look-cells-main p:hover {
    background-color: #f8f8f8;
    transition: all .7s;
}

.door-look-select {
    background-color: var(--k4u-light-gray) !important;
    display: flex;
    align-items: center;
    column-gap: 5px;
}

/* .door-look-select .icon.unit_icon{
    display:block;
} */

#main-cat-selection {
    padding: 20px 40px;
    cursor: pointer;
    background: whitesmoke;
    border-radius: 100px;
    font-family: 'Prata', sans-serif;
    text-transform: capitalize;
}

.row.section.replacementDoor.door-colors.completekitchen_section {
    display: none;
}

.door-type-nav-cell-selected span {
    display: block;
}

.replacement-product-cell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
    flex-wrap: wrap;
    row-gap: 30px;
    column-gap: 100px;
    border: 1px solid gray;
    margin: 20px;
    border-radius: 10px;
}

.replacement-product-cell h3 {
    font-size: 18px;
    text-transform: capitalize;
}

.replacement-product-cell img {
    height: 100px;
}

.replacement-step-bar {
    align-items: center;
    display: flex;
    justify-content: center;
}

.replace-steps-wrapper {
    min-height: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background: whitesmoke;
    border: 1px solid #a0a0a0;
    cursor: pointer;
}

.replace-steps-wrapper span {
    transition: 1s;
}

.replace-steps-wrapper span {
    padding: 8px 10px;
}

.replace-steps-wrapper span:nth-child(1),
.replace-steps-wrapper span:nth-child(2) {
    border-right: 1px solid #a0a0a0;
}

.replace-steps-wrapper .rep-active-step {
    color: #0354ae;
    font-weight: 500;
}

.rep-doors-cart-main {
    display: block
}

.drilling-options-container {
    display: none;
}

#drilling-form label {
    cursor: hover;
}

.style_subitems {
    margin-top: 50px;
    row-gap: 30px;
    justify-content: start;
    column-gap: 20px;

}

.style_subitems .style-subitem.col-2 {
    width: 15.43%;
    cursor: pointer;

}

.style_subitems .style-subitem.col-2 .style {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.style_subitems .style-subitem.col-2 .style .style-boxes {
    height: 100%;
}

.style_subitems .style-subitem.col-2 .style .style-boxes .style-image {
    width: 100%;
    height: 100%;
    transform: scale(1.25);
}

.style_subitems .style-subitem.col-2 .inner .circle-icon {
    display: none;
}

.style_subitems .style-subitem.col-2 .inner .style_name {
    color: var(--k4u-black);
    background-color: var(--k4u-light-gray);
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    padding: 10px;
    width: 100%;
    margin: 0 auto;
    z-index: 10;
    text-align: center;
    position: absolute;
    transition: 1s;
    font-size: 20px;
    bottom: 0px;
}

.style-subitem-selected {
    padding: 5px;
    border: 1px solid #000;
}

/* .style-subitem:hover .style_name, .style-subitem-selected .style_name {
    background: none !important;
    color: #fff !important;
} */

.door-replacement-style-nav {
    padding: 20px !important;
    row-gap: 10px;
    /* padding-top: 20px !important;
    padding-left: 30px !important;
    padding-right: 30px !important; */
}

.door-replacement-style-nav .range-colors,
.door-replacement-style-nav .range-title {
    padding-left: 0;
}

.door-replacement-style-nav .color-item .row.inner {
    padding-bottom: 20px;
}

.door-replacement-style-nav .color-item p {
    font-family: 'Barlow', sans-serif !important;
}

/* .active-parent-category {
    color: #0354ae !important;
} */
.active-parent-category {
    transition: 0.6s !important;
    border-bottom: 2.5px solid #000;
    width: fit-content;
}

.active-parent-category .color_name {
    font-weight: bold !important;
}

.door-color-options-wrapper .color-color-cell {
    width: 14.4%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: left;
    row-gap: 0;
    row-gap: 10px;
    position: relative;
    cursor: pointer;
}

@media (max-width: 1366px) {
    .door-color-options-wrapper .color-color-cell {
        width: 14.1% !important;
    }
}

@media (max-width: 1237px) {
    .door-color-options-wrapper .color-color-cell {
        width: 13.2% !important;
    }
}

@media (max-width: 1024px) {
    .door-color-options-wrapper .color-color-cell {
        width: 21.2% !important;

    }
}
@media (max-width: 600px) {
    .door-color-options-wrapper .color-color-cell {
        width: 45% !important;

    }
}


.nav-active-color {
    /* color: #0354ae !important; */
    font-weight: bold !important;
    border-bottom: 2.5px solid #000 !important;
}

#switch_section .nav-active-color {
    background-color: #000 !important;
    color: white !important;
    border: unset !important;
}


.door-type-nav-cell-selected {
    border-bottom: 2.5px solid #000 !important;
    width: fit-content;
    font-weight: bold !important;
}

#switch_section .door-type-nav-cell-selected {
    width: unset !important;
}

.drill-check-wrapper {
    display: flex;
    align-items: baseline;
    column-gap: 10px;
}

.drill-check-wrapper label,
.replacement-product-cell label,
.replacement-product-cell .regular-price,
.replacement-product-cell .sale-price,
.replacement-product-cell>h3 {
    font-family: 'Barlow', sans-serif;
    color: #000;
}

.replacement-product-cell>h3 {
    width: 15%;
}

.replacement-product-cell [name="quantity"] {
    width: 80px;
    border: 1px solid gray;
    padding: 5px;
    border-radius: 6px;
}

.drilling-options-container>h3 {
    font-family: 'Barlow', sans-serif;
    color: #0354ae;
    font-weight: 600;
}

#drilling-form {
    margin: 6px 0;
    display: flex;
}

#drilling-form>label {
    margin-right: 15px;
    display: flex;
    align-items: center;
    column-gap: 5px;
    cursor: pointer;
}

#drilling-form>input {
    margin-right: 5px;
}

.drilling-inputs {
    display: flex;
    column-gap: 6px;
    margin-bottom: 6px;
}

.drilling-inputs .input-label-span-wrapper {
    width: 33%;
    display: flex;
    align-items: center;
    column-gap: 6px;
    flex-wrap: wrap;
}

.drilling-inputs .input-label-span-wrapper label {
    width: 100%;
}

.drill-comments {
    display: flex;
    flex-direction: column;
    row-gap: 6px;
}

.drilling-options-container {
    width: 100%;
}

.input-label-span-wrapper input {
    padding: 5px;
    margin-top: 6px;
    border-radius: 6px;
    border: 1px solid gray;
    width: 90%;
    min-height: 40px;
}

.input-label-span-wrapper label,
.drill-comments textarea,
.drill-comments label {
    /* color: #0354ae; */
    font-weight: 500 !important;
    margin: 0;
}

.drill-comments textarea {
    padding: 5px;
    margin-top: 0;
    border-radius: 6px;
    border: 1px solid gray;
    width: 100%;
    min-height: 125px;
}

.active-door-color .circle-icon {
    display: block !important;
}

.color-color-cell .circle-icon {
    display: none;
}

.color_image {
    position: relative !important;

}

.circle-icon {
    position: absolute !important;
    /* Position the icon absolutely within the relative parent */
    top: 50% !important;
    /* Center vertically */
    left: 50% !important;
    /* Center horizontally */
    transform: translate(-50%, -50%) !important;
    /* Adjust position to perfectly center */

}

.active-door-color .circle-icon {
    position: absolute;
    /* top: 30%; */
    top: 25%;
    width: 40px;
    height: 40px;
    margin: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(#000, transparent);
}

.active-door-color .circle-icon i {
    color: #fff;
}

.color-color-cell img {
    transition: 0.6s;
    padding: 5px;
    border-radius: 120px;
}

.active-door-color img {
    transition: 0.6s;
    border: 1px solid #000;

}

.replacement-doors-content-area .switch_main,
.replacement-doors-content-area .add-to-cart.aspire-btn {
    display: flex;
    align-items: center;
    /* padding: 0px 64px; */
}

.price-container-sale .regular-price {
    text-decoration: line-through;
}

.replacement-doors-content-area .replacement-products-grid {
    margin-bottom: 0;
}

.replacement-products-grid .price-container {
    display: flex;
    column-gap: 10px;
    max-width: 110px;
    width: 100%;
    justify-content: start;
}

.replacement-products-grid .price-container p {
    font-weight: 600;
}

.replacement-doors-content-area .snippet.step-bar .progress-nav {
    max-width: 700px;
    justify-content: end;
    padding-right: 50px;
}

.replacement-doors-content-area .snippet.step-bar .progress-nav li {
    width: 26%;
}

.replacement-doors-content-area .snippet.step-bar .progress-nav li a {
    white-space: nowrap;
}

.door-replacement-style-nav {
    padding-bottom: 0 !important;
}

.replacement-doors-content-area .section.cart-buttons.is-sticky {
    /* margin-bottom: 20px; */
    position: fixed;
}

.flat-pack-content-area .section.cart-buttons.is-sticky {
    /* margin-bottom: 20px; */
    position: fixed;
}

.replace-quantity-wrapper .quantity-number {
    box-shadow: none;
    border: none;
    background-color: var(--k4u-white);
    padding: 0px;
    position: relative;
}

.replace-quantity-wrapper [name="quantity"] {
    width: 70px;
    text-align: center;
    border: none;
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 180%;
    color: var(--k4u-darker-gray);
    -webkit-appearance: none;
}

.replace-quantity-wrapper input::-webkit-outer-spin-button,
.replace-quantity-wrapper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.replace-quantity-wrapper {
    border-bottom: 1px solid;
}

.visible-switch {
    visibility: visible !important;
    opacity: 1 !important;
}

.color-color-cell span {
    margin-left: 5px;
}

.replacement-products-grid {
    display: none;
}


/* products layout adjustment Flatpack Cabinets, complete kitchen both */

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ccc;
    padding: 10px;
    box-sizing: border-box;
    min-height: 400px;
    /* Adjust this value based on your design */
}

.product-card img {
    max-width: 100%;
    max-height: 200px;
    /* Adjust this value based on your design */
    object-fit: contain;
}

.flatpack-products-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* Adjust this value based on your design */
}

.product-card .product-title {
    text-align: center;
    flex-grow: 1;
}

.product-card .product-price {
    font-size: 1.5em;
    margin: 10px 0;
}

.product-card .product-quantity {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

#switch_section .complete-assembled-style-nav {
    padding: 0 !important;
}

.section.cart-buttons .total-price--bar {
    justify-content: end !important;
}

.flatpack-products-container .cabinet-product-card {
    width: 100%;
    max-width: 23% !important;
}


@media only screen and (max-width: 1440px) {
    .style_subitems .style-subitem.col-2 {
        width: 15%;
    }

    /* flatpack cabinets products page  */
    /* .flatpack-products-container {
        justify-content: center;
    } */

    /* complete kitchens products grid  */
    .complete-kitchen-flatpack-products {
        justify-content: start;
    }

    .complete-kitchen-flatpack-products .product-card-item {
        width: 100%;
        max-width: 22.5% !important;

    }
}




.complete_kitchen_flatpack_container .snippet.multiProducts-kitchen {
    margin-bottom: 40px !important;
}



/* Replacement Doors Responsive  */
@media only screen and (max-width:1280px) {

    .replacement-doors-content-area .snippet.step-bar .progress-nav li {
        width: 34%;
    }

    .replacement-doors-content-area .snippet.step-bar .progress-nav li a {
        white-space: wrap;
    }

    .replacement-doors-content-area .snippet.step-bar {
        left: 0;
    }

    .replacement-doors-content-area .active-door-color .circle-icon {
        top: 23%;
    }
}


@media (max-width:900px) {
    .replacement-doors-content-area .door-replacement-style-nav .row.outer {
        row-gap: 15px !important;
        column-gap: 30px !important;

    }

    .replacement-doors-content-area .section.door-range .range-color-section .range-colors .color-item p {
        font-size: 17px !important;
    }
}



@media (max-width: 767px) {
    .replacement-doors-content-area .snippet.step-bar .progress-nav li a {
        transform: translateX(-143%) !important;
    }

    .snippet.step-bar .progress-nav li:last-child a {
        transform: translateX(-30%) !important;
    }

    .replacement-doors-content-area .snippet.step-bar .progress-nav {
        padding-top: 95px;
        padding-bottom: 10px;
    }

    .content-area.replacement-doors-content-area .row.section.completekitchen.snippet-hero-min.snippet-title div {
        min-height: 0;
        padding: 0;
    }

    .complete_kitchen_flatpack_container .snippet.step-bar .progress-nav {
        margin-top: 83px;
        margin-bottom: 20px;
    }

    .door-type-cat-wrapper .door-type-cat-main {
        row-gap: 21px;
        column-gap: 14px;
    }

    /* Products Page  */
    .replacement-products-grid-flex {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: space-evenly
    }

    .replacement-product-cell {
        flex-direction: column;
        min-width: 249px;
    }

    .replacement-product-cell img {
        height: 300px;
    }

    .replacement-product-cell>h3 {
        width: unset;
    }

    .drilling-options-container {
        max-width: 249px;
    }

    .replacement-products-grid .price-container {
        justify-content: center;
    }

    .rep_out_of_stock:after {
        left: 37%;
        top: unset;
    }


    p.total_price {
        font-size: 22px !important;
    }

    .section.cart-buttons .cart-button-group {
        margin-top: 10px !important;
    }

    /* .section.cart-buttons {
        padding: 10px 0 !important;
    } */

    .section.cart-buttons p.total_price,
    .section.cart-buttons p.total_price span {
        font-size: 22px !important;
    }

    /* .replacement-doors-content-area .replacement-products-grid {
        margin-bottom: 145px !important;
    } */


    /* .door-type-cat-wrapper .door-type-cat-main {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        column-gap: 20px;
        row-gap: 5px;
        margin-top: 10px;
        cursor: pointer;
        padding: 0 5px;
    } */

    /* complete kitchens page  */

    .complete_kitchen_flatpack_container .snippet-hero-min {
        padding-top: 62px !important;
    }



}

@media (max-width: 600px) {
    .replacement-doors-content-area .door-color-options-wrapper {
        column-gap: 76px !important;
        justify-content: space-evenly;
    }

    .replacement-doors-content-area .section.cart-buttons .cart-button-group {
        gap: 0;
        justify-content: space-evenly;
    }

    .replacement-doors-content-area .switch_main,
    .replacement-doors-content-area .add-to-cart.aspire-btn {
        padding: unset;
    }

    .replacement-doors-content-area .section.door-range .range-color-section .range-colors .color-item p {
        font-size: 17px !important;
    }

    .replacement-doors-content-area .style_subitems .style-subitem.col-2 .inner .style_name {
        font-size: 17px !important;
    }

    .replacement-product-cell {
        min-width: unset !important;
        margin: 0 !important;
        row-gap: 5px !important;
        padding: 5px !important;
        width: 100% !important;
        max-width: 45% !important;
        text-align: center
    }

    .replacement-product-cell img {
        width: 100%;
        height: unset;
        object-fit: cover;
    }

    .replacement-products-grid.replacement-products-grid-flex {
        gap: 25px;
        justify-content: start !important;
        flex-direction: initial !important;
    }

    .replacement-doors-content-area .section.cart-buttons.is-sticky {
        bottom: 0 !important;
    }
}

@media(max-width: 481px) {
    .replacement-doors-content-area .door-colors-wrapper {
        row-gap: 15px !important;
        column-gap: 30px !important;
    }
}

@media (max-width: 425px) {

    .rep_out_of_stock:after {
        width: 80%;
        padding: 3px;
        left: 83px;
    }

    .door-replacement-style-nav {
        padding-bottom: 20px !important;
    }

    .door-replacement-style-nav .color-item .row.inner {
        padding-bottom: 5px !important;
    }

    .replacement-doors-content-area .snippet.step-bar .progress-nav li {
        width: 45%;
    }

    .replacement-doors-content-area .snippet-hero-min {
        padding-top: 25px;
    }

    .style_subitems .style-subitem.col-2 .inner .style_name {
        font-size: 14px;
    }

    .content-area.replacement-doors-content-area .row.section.completekitchen.snippet-hero-min.snippet-title div {
        padding: unset;
        padding-top: 50px;
    }

    .replacement-doors-content-area .snippet.step-bar .progress-nav {
        padding-top: 48px;
        padding-bottom: 19px;
    }


    .cart_section_design_change .cart-button-group.button-groups {
        display: flex !important;
        flex-direction: unset !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
    }


    .cart_section_design_change .add-to-cart.cart-button {
        width: 48% !important;
        padding: 10px !important;

    }

    .cart_section_design_change .cart-buttons .add-to-cart {
        padding: 10px !important;
    }

    .cart_section_design_change .switch_main {
        width: 48% !important;
    }

    .cart_section_design_change .switch-button {
        padding: 10px !important;
    }

    .cart_section_design_change .cart-button-group .switch_main {
        position: unset !important;
    }

    .cart_section_design_change .cart-button-group .switch_main ul {
        bottom: 93% !important;
        left: 33px;
    }

    .cart_section_design_change #switch_section {
        width: 83% !important;
    }

    .replacement-doors-content-area .replacement-products-grid {
        margin-bottom: 25px !important;
    }

}

@media (max-width: 1280px) and (min-width:768px) {
    .aspire-btn {
        font-size: 16px !important;
        padding: 12px 17px 13px 17px !important;
    }

    .rep_out_of_stock:after {
        left: 60px;
        top: 80px
    }

}

.flatpack-responsive .snippet.multiProducts {
    margin-bottom: 30px !important;
}

.flatpack-responsive .snippet-hero-min {
    margin-top: 50px !important;
}

.complete_kitchen_flatpack_container .snippet-hero-min {
    margin-bottom: 50px !important;
}

.complete_kitchen_flatpack_container .pro-grid-complete-flat {
    margin-bottom: 50px !important;
}

.complete_kitchen_flatpack_container .snippet.cabinet-color {
    margin-bottom: 50px !important;
}

.complete-kitchen-color-options-wrapper.door-color-options-wrapper {
    margin-bottom: 50px !important;
    margin-top: 50px !important;
}

.replacement-doors-content-area .section.door-range {
    margin-bottom: 100px !important;
}

.replacement-doors-content-area .snippet.multiProducts {
    margin-bottom: 50px !important;
}

.flatpack-responsive .snippet.cabinet-color {
    margin-bottom: 50px !important;
}

.flatpack-responsive .section.cabinet-unit {
    margin-bottom: 0 !important;
}

.flat-pack-container .cabinet-units.col-10 {
    margin-top: 40px !important;
}

@media only screen and (max-width: 1100px) {
    /* .door-replacement-style-nav {
        padding-top: 15px !important;
        padding-left: 15px !important;
    } */

    .door-replacement-style-nav .row.outer {
        gap: 22px !important;
    }

    .section.door-range .range-color-section .range-colors .color-item p {
        font-size: 18px !important;
    }

    .door-replacement-style-nav .range-title h3 {
        font-size: 26px !important;
    }

    .style_subitems .style-subitem.col-2 {
        width: 18%;
    }

    /* .door-replacement-style-nav .color-item .row.inner {
        padding-bottom: 10px;
    } */

    /* .color-selection-main {
        padding-top: 15px;
        padding-left: 15px;

    } */

    .color-selection-main .range-title h3,
    .door-type-cat-wrapper .range-title h3 {
        font-size: 26px;
    }

    /* .color-selection-main .door-colors-wrapper h2 {
        font-size: 17px;
        padding-bottom: 10px !important;
    } */

    .door-color-options-wrapper .color-color-cell {
        width: 20%;
        text-align: left !important;
        display: flex;
        /* align-items: start; */

    }

    .color-color-cell h2 {
        font-size: 18px !important;
    }

    /* .door-color-options-wrapper {
        column-gap: 0 !important;
    } */

    .door-type-cat-wrapper {
        padding: 20px 30px;
    }

    .replacement-product-cell {
        column-gap: 15px;
    }

    .door-type-cat-wrapper .door-type-cat-main p {
        padding-bottom: 5px;
        font-size: 18px;
    }

    .door-look-head {
        width: 100%;
    }

    .door-look-cells-main p {
        font-size: 16px;
        padding: 15px;
    }

    .door-look-head {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 1024px) {

    /* complete kitchen assembled and flatpack  */

    .active-door-color .circle-icon {
        position: absolute;
        top: 23%;
    }

    /* .complete-assembled-style-nav .color-item .row {
        padding-bottom: 15px !important;
    } */

    /* .cate-nav-flat-pack .unit-type-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        column-gap: 20px;
        row-gap: 5px;
        margin-top: 10px;
        cursor: pointer;
        padding: 0 5px;
    } */

    .style_subitems .style-subitem.col-2 .inner .style_name {
        font-size: 16px !important;
    }

    /* .complete-assembled-style-nav {
        padding-top: 15px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    } */

    .complete_kitchen_flatpack_container .door-color-options-wrapper {
        gap: 30px !important;
    }

    .color-color-cell span {
        margin-left: 0;
    }

    .snippet.step-bar {
        left: 130px
    }

    .snippet.cabinet-color .cabinet-color-section .cabinet-colors .row.outer {
        gap: 49px !important;
    }

    .snippet.cabinet-color .cabinet-color-section .cabinet-title h3 {
        font-size: 22px !important;
    }

    .flat-pack-container .cate-nav-flat-pack {
        padding-left: 15px;
    }


    .complete_kitchen_flatpack_container .snippet.multiProducts-kitchen .product-card-item {
        max-width: 30.5% !important;
    }

    .complete-assembled-style-nav .row.outer {
        gap: 20px !important;
    }

    .complete_kitchen_flatpack_container .snippet.multiProducts-kitchen {
        gap: 30px !important;

    }

    .snippet.multiProducts-kitchen .product-card-item .product-name h3 {
        font-size: 20px !important;
    }

    .complete_kitchen_flatpack_container p.col-6.color_name.style_name {
        font-size: 17px;
    }

    .out_of_stock:after {
        left: 100px !important;
    }

    .complete-kitchen-flatpack-products {
        /* display: flex; */
        justify-content: start;
        /* align-items: center; */
    }

    /* .complete-kitchen-flatpack-products .snippet.multiProducts-kitchen */
    .section.cart-buttons .cart-button-group .switch_main ul li {
        font-size: 16px;
    }

    .cate-nav-flat-pack .unit-type-wrapper .unit-type-single {
        font-size: 17px;
    }

    .complete_kitchen_flatpack_container .btn-2 {
        padding: 12px 34px 13px 34px !important;
    }


    /* Flatpack Cabinet Responsive  */

    .flatpack-responsive .snippet.step-bar {
        left: 0;
    }

    .flatpack-responsive .section.cabinet-unit .cabinet-units .row.outer {
        gap: 14px;
    }

    /* .flatpack-responsive .flatpack-products-container {
        justify-content: space-evenly !important;
    } */
    .flatpack-products-container .cabinet-product-card {
        width: 100%;
        max-width: 30.5% !important;
    }

    /* .flatpack-responsive .snippet.multiProducts .product-card-item {
        max-width: 266px;
    } */

    .flatpack-responsive .title-section {
        width: 100%;
    }

    .flatpack-responsive .snippet.step-bar {
        width: 100%;
        margin-top: 95px;
        margin-bottom: 30px;
    }



    .flatpack-responsive .progress-nav li {
        width: 26% !important;
    }

    .flatpack-responsive .snippet.step-bar .progress-nav li a {
        transform: translateX(-50%) !important;
    }

    .flatpack-responsive .section.cabinet-unit .cabinet-units .row.outer {
        display: flex !important;
    }

    .flatpack-responsive .section.cabinet-unit .cabinet-units .row.outer {
        justify-content: space-evenly !important;
    }

    .flatpack-responsive .flat-pack-container .cabinet-units .unit-item {
        width: 35.4% !important;
    }

    .cate-nav-flat-pack .unit-type-wrapper {
        row-gap: 15px !important;
    }

}

@media only screen and (max-width: 900px) {
    .replace-steps-wrapper span {
        font-size: 14px;
    }

    .door-replacement-style-nav .row.outer {
        gap: 15px !important;
    }

    .section.door-range .range-color-section .range-colors .color-item p {
        font-size: 14px !important;
    }

    .style_subitems .style-subitem.col-2 {
        width: 22%;
    }

    .color-color-cell h2 {
        font-size: 14px !important;
    }

    .style-subitem .style_name {
        font-size: 14px;
    }



}

@media only screen and (max-width:700px) and (min-width: 425px) {
    .flatpack-responsive .cabinet-units .unit-item {
        width: 32.4% !important;
    }

    .flatpack-responsive .section.cabinet-unit .cabinet-units .unit-item p {
        font-size: 14px !important;
    }
}

@media only screen and (max-width: 600px) {
    .complete-assembled-style-nav {
        padding-bottom: 20px !important;
    }

    .complete-assembled-style-nav .color-item .row {
        padding-bottom: 5px;
    }

    .complete_kitchen_flatpack_container .snippet.step-bar {
        left: 74px;
    }

    .snippet.step-bar .progress-nav {
        justify-content: unset;
    }

    .complete-assembled-style-nav .row.outer {
        row-gap: 15px !important;
        column-gap: 20px !important;
    }

    .style_subitems {
        justify-content: space-evenly;
    }

    .style_subitems .style-subitem.col-2 {
        width: 46%;
    }

    .complete_kitchen_flatpack_container .door-color-options-wrapper {
        gap: 53px !important;
        justify-content: space-evenly;
    }

    .complete_kitchen_flatpack_container .door-type-cat-wrapper .door-type-cat-main {
        row-gap: 15px !important;
        column-gap: 20px !important;

    }

    .door-type-cat-wrapper .door-type-cat-main p {
        padding-bottom: 5px !important;
        font-size: 17px !important;

    }

    .complete_kitchen_flatpack_container .aspire-btn {
        font-size: 15px !important;
    }

    .cate-nav-flat-pack .unit-type-wrapper {
        row-gap: 15px !important;
        column-gap: 20px !important;
    }

    .cart-button-group {
        flex-direction: column !important;
    }

    .section.cart-buttons .cart-button-group .switch-button,
    .section.cart-buttons .cart-button-group .cart-button {
        width: 100%;
        text-align: center;
    }

    .flat-pack-content-area .section.cart-buttons.is-sticky {
        margin-bottom: 0 !important;
        bottom: 0 !important;
    }

    .cate-nav-flat-pack .unit-type-wrapper .unit-type-single {
        padding-bottom: 5px !important;
    }

    .text-smaller-par_hide {
        display: none !important;
        /* hide description on mobile  */
    }
}

@media only screen and (max-width: 425px) {

    .complete_kitchen_flatpack_container .style_subitems .style-subitem.col-2 {
        width: 45%;
    }

    .complete_kitchen_flatpack_container p.col-6.color_name.style_name {
        font-size: 17px;
    }

    .complete_kitchen_flatpack_container .door-color-options-wrapper {
        row-gap: 30px !important;
        column-gap: 20px !important;
    }


    .flatpack-responsive .progress-nav li {
        width: 43% !important;
    }

    .flatpack-responsive .cabinet-units .unit-item {
        width: 44% !important;
    }

    .flatpack-responsive .section.cabinet-unit .cabinet-units .row.outer {
        justify-content: start !important;
    }

    .flatpack-responsive .section.cabinet-unit .cabinet-units .unit-item p {
        font-size: 14px !important;
    }

    .flatpack-responsive .snippet.step-bar {
        margin-left: 15px;
    }

    .flat-pack-content-area .section.cart-buttons.is-sticky {
        margin-bottom: unset;
        bottom: 0;
    }

    .section.cart-buttons {
        padding: 30px !important;
    }

    .complete_kitchen_flatpack_container .btn-2 {
        padding: 10px !important;
    }

    /* .complete_kitchen_flatpack_container .aspire-btn {
        font-size: unset !important;
    } */

    .color-color-cell h2 {
        white-space: nowrap !important;
        font-size: 13px !important;
    }

    .complete-assembled-style-nav .row.outer {
        row-gap: 15px !important;
        column-gap: 20px !important;
    }

    /* .complete-assembled-style-nav .color-item .row {
        padding-bottom: 0 !important;
    } */

    .door-colors-wrapper {
        row-gap: 15px !important;
        column-gap: 20px !important;
    }

    .complete-assembled-style-nav {
        padding: 20px !important;
    }

    .color-selection-main .door-colors-wrapper h2 {
        padding-bottom: 5px !important;
        font-size: 17px !important;
    }

    .color-selection-main {
        padding: 20px !important;

    }

    .complete-kitchen-flatpack-products {
        justify-content: start !important;
    }

    .complete_kitchen_flatpack_container .snippet.multiProducts-kitchen .product-card-item {
        width: 100% !important;
        max-width: 45% !important;
    }

    .out_of_stock:after {
        width: fit-content;
        padding: 3px !important;
        left: 50% !important;
        transform: translate(-50%, -50%)
    }

    .complete_kitchen_flatpack_container .snippet.multiProducts-kitchen {
        gap: 30px !important;
    }

    .snippet.multiProducts-kitchen .product-card-item .product-image {
        /* height: 100%;
        max-height: 200px; */
        margin-bottom: 30px !important;
    }

    .snippet.multiProducts-kitchen .product-card-item .price-group {
        gap: 0 !important;
        margin-bottom: 10px !important;
    }

    .product-card {
        min-height: 0;
    }

    .snippet.multiProducts-kitchen .product-card-item .price-group .sale-price .price {
        font-size: 18px !important;
    }

    .snippet.multiProducts-kitchen .product-card-item .price-group .regular-price.price {
        font-size: 16px !important;
    }

    .snippet.multiProducts-kitchen .product-card-item .product-name.title h3 {
        margin-bottom: 10px !important;
        font-size: 16px !important;
    }


    @media (max-width:425px) {
        .product-card.cabinet-product-card {
            width: 100% !important;
            max-width: 45% !important;

        }

        .snippet.multiProducts .product-card-item .product-name h3 {
            font-size: 17px !important;
        }

        .flatpack-products-container .product-price .regular-price {
            font-size: 17px !important;
        }

        .product-card .product-price {
            margin: 0 !important;
        }

        .flatpack-responsive .flatpack-products-container {
            justify-content: start !important;
        }

        .cabinet_out_of_stock:after {
            width: 80%;
            padding: 2px;
            left: 85px !important;
        }
    }

}

@media (max-width:375px) {
    .complete_kitchen_flatpack_container .snippet.multiProducts-kitchen .product-card-item {
        width: 100% !important;
        max-width: 80% !important;
    }

    .complete-kitchen-flatpack-products {
        justify-content: center !important;
    }
}

/* styles names on steps */

p.description.text-smaller-par.steps-nav {
    font-size: 20px;
    font-family: 'Prata', sans-serif;
    color: #737373;
    /* font-weight: bold; */
}



.style-subitem-selected {
    position: relative;
    border: 1px solid #ccc;
    overflow: hidden;
    padding: 0px;
}

.style-subitem-selected::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%; /* start at 0% width */
    height: 4px;
    background-color: gray;
    border-radius: 10px;
    animation: load 4s forwards;
}

@keyframes load {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.cart-buttons .add-to-cart {
    display: none;
}
.item-category {
    color: #777;
    font-size: 0.9em;
    font-weight: normal;
    display: block;
    margin-bottom: 5px;
}

.cart-buttons .total_price {
    display: none;
}

/* .section.cart-buttons {
    padding: 20px 64px;
} */

.cart-buttons .switch-button {
    padding: 12.5px 40px;
}

.flatpack-responsive .cart-buttons .switch-button {
    padding: 12.5px 55px;
}


.cart-buttons .add-to-cart {
    padding: 12.5px 40px;
}


.complete-kitchen-cart {
    display: block;
}

.nav-active-color1 {
    background-color: #000 !important;
    color: white !important;
    border-bottom: unset !important;
    font-weight: bold !important;
}

.replacementDoor.cart-buttons {
    display: block !important;
    /* main cart bar  */
}

.replacementDoor a.btn-2.aspire-btn.add-to-cart.cart-button {
    display: none;
    /* add to cart button */
}

.switch_items_door_replacement .color-item p {
    padding-bottom: 17px !important;
    cursor: pointer;
}

.hidden_for_switch_section {
    display: none;
}

#switch_section .door-type-nav-cell {
    padding: 10px 0;
    cursor: pointer;
    text-align: center;
    border-bottom: 1px solid gray;
}

.door-type-nav-cell-selected1 {

    border-bottom: 2.5px solid #000 !important;
    width: fit-content !important;
    font-weight: bold !important;
}

#switch_section .complete-assembled-style-nav {
    padding-left: 0 !important;
    padding-top: 0 !important
}

#switch_section .range-colors.style-types {
    padding: 0;
}

#switch_section .complete-assembled-style-nav .color-item {
    border-bottom: 1px solid gray;
    width: 100%;
    max-width: unset;
    text-align: center;
}


#switch_section .color-item .color_name.style_name {
    padding: 10px 0;
    text-align: center;
    /* border-bottom: 1px solid gray; */
}


.replacement-doors-content-area #switch_section .color-item .color_name.style_name {
    border-bottom: 1px solid gray;
}


#switch_section .complete-assembled-style-nav .color-item .row {
    padding-bottom: 0 !important;
}

#switch_section .color-item .color_name.style_name:hover {
    background: black;
    color: white;
}

#switch_section .active-parent-category {
    transition: 0.6s !important;
    /* color: #0354ae !important; */
    border-bottom: 1px solid #000 !important;
    width: unset !important;
}

#switch_section .active-parent-category .color_name {
    background-color: #000;
    color: white;
}

#switch_section li.color-name {
    text-align: center !important;
}

#switch_section .active-flatpack-nav {
    background-color: #000 !important;
    color: white !important;
    /* border-bottom: 1px solid #0354ae !important; */
    width: unset !important;
}

#switch_section li.flatpack_single {
    text-align: center !important;
}

/* replacement doors  */

#switch_section .door-replacement-style-nav {
    padding: 0 !important;
}

.swal2-icon.swal2-info.swal2-icon-show {
    border-color: #000;
    color: #000;
}

h2#swal2-title {
    font-family: 'Prata', sans-serif;
    font-size: 20px;
    color: #000;
}

.cart-button-group {
    position: relative;
}

.spinner-style {
    position: absolute;
    color: white;
    bottom: 19px;
    right: 13px;
    display: none;
}

.kitchen_colors_animation {
    position: absolute;
    top: 35px;
}

td.product-thumbnail img {
    height: 100%;
    max-height: 200px !important;
    object-fit: contain !important;
    width: 100%;
    max-width: 200px;
}

.useless_code_but_keep_it {
    display: none !important;
}

.custom_cart_page .quantity::after {
    display: none;
}

.custom_cart_page .quantity::before {
    display: none;
}

/* load more button styling  */

.section.cart-buttons {
    bottom: 0 !important;
}

.button-load-more {
    display: none;
}

.button-load-more button {
    padding: 12px 40px;
    color: white;
    background: black;
    position: relative;
}

#load_more_replacement_products{
    padding: 12px 40px;
    color: white;
    background: black;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;

}
.button_mini_loader{
    display: none;
}
.cabinet_spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#flatpack_cabinets_load_more{
    padding: 12px 40px;
    color: white;
    background: black;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.button-load-more_display_block {
    display: none !important;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.loading-more-animation {
    position: absolute;
    right: 14px;
    top: 17px;
    display: none;
}



/* dynamic load more button  */
.products_load_more {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

#load_more_products {
    padding: 12px 40px;
    color: white;
    background: black;
}