/* Disabling temporarily */
/* General Css Starts */
body {
    overflow-x: hidden;
}

.variation {
    margin-top: 10px;
}

.variation p {
    line-height: 140%;
}

.flat-pack-kitchen ul,
.complete-kitchen-builder ul {
    margin: 0px;
}

.complete-kitchen-builder p,
.complete-kitchen-builder span,
.flat-pack-kitchen p,
.flat-pack-kitchen span {
    color: inherit;
}

.complete-kitchen-builder .icon i,
.flat-pack-kitchen .icon i {
    font-family: 'FontAwesome' !important;
}

@media (min-width: 1400px) {

    .complete-kitchen-builder .container,
    .complete-kitchen-builder .container-lg,
    .complete-kitchen-builder .container-md,
    .complete-kitchen-builder .container-sm,
    .complete-kitchen-builder .container-xl,
    .complete-kitchen-builder .container-xxl,
    .flat-pack-kitchen .container,
    .flat-pack-kitchen .container-lg,
    .flat-pack-kitchen .container-md,
    .flat-pack-kitchen .container-sm,
    .flat-pack-kitchen .container-xl,
    .flat-pack-kitchen .container-xxl {
        max-width: 1374px;
    }
}

.flat-pack-kitchen .site-main,
.complete-kitchen-builder .site-main {
    padding-bottom: 100px;
}

.complete-kitchen-builder .content-container,
.flat-pack-kitchen .content-container {
    padding: 0px;
}

.complete-kitchen-builder .fade-animation,
.flat-pack-kitchen .fade-animation {
    animation: fading 2s;
}

@keyframes fading {
    from {
        opacity: .3;
    }

    to {
        opacity: 1;
    }
}

.content-area {
    /* padding-top: 91px; */
}

/* General Css Ends */

/* E-coomerce Page Title Css Starts */

.section.snippet-title h1 {
    color: var(--k4u-black);
    margin-bottom: 30px;
}

.section.snippet-title p {
    color: var(--k4u-darker-gray);
}

/* E-coomerce Page Title Css Ends */

/* kitchen Cabinets colors Css starts Here */

.snippet.cabinet-color {
    /* margin: 40px 0px; */
    margin-bottom: 40px;
    /* z-index: 1000; */
}

.snippet.cabinet-color .cabinet-color-section {
    background: var(--k4u-light-gray);
    padding: 30px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.snippet.cabinet-color .cabinet-color-section .cabinet-title {
    display: inline-flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 49px;
}

.snippet.cabinet-color .cabinet-color-section .cabinet-title h3 {
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 140%;
    color: var(--k4u-black);
}

.snippet.cabinet-color .cabinet-color-section .cabinet-colors {
    padding-left: 68px;
}

.snippet.cabinet-color .cabinet-color-section .cabinet-colors .row.outer {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 100px;
}

.snippet.cabinet-color .cabinet-color-section .cabinet-colors .color-item {
    cursor: pointer;
    width: auto;
    opacity: 1;
    transition: all 0.35s;
    /* opacity: .5; */
}

.snippet.cabinet-color .cabinet-color-section .cabinet-colors .color-item.fade-animation {
    opacity: 1;
}

.snippet.cabinet-color .cabinet-color-section .cabinet-colors .color-item .row.inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
}

.snippet.cabinet-color .cabinet-color-section .cabinet-colors .color-item .color-circle {
    height: 76px;
    width: 76px;
    position: relative;
}

.snippet.cabinet-color .cabinet-color-section .cabinet-colors .color-item p {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: var(--k4u-black);
    width: auto;
}

.snippet.cabinet-color .cabinet-color-section .cabinet-colors .color-item .color-circle .circle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.snippet.cabinet-color .cabinet-color-section .cabinet-colors .color-item .color-circle::before {
    content: '';
    height: calc(100% + 20px);
    width: calc(100% + 20px);
    display: flex;
    border: 1px solid #c5c5c5;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .7s;
}

.snippet.cabinet-color .cabinet-color-section .cabinet-colors .color-item:hover .color-circle::before {
    opacity: 1;
    transition: all .7s;
}

.snippet.cabinet-color .cabinet-color-section .cabinet-colors .color-item .color-circle.color-selected::before {
    opacity: 1;
    transition: all .7s;
    border-color: var(--k4u-black);
}

.snippet.cabinet-color .cabinet-color-section .cabinet-colors .color-item .color-circle.color-selected .circle-icon {
    display: block;
    transition: all .7s;
}

@media (max-width: 1200px) {
    .snippet.cabinet-color .cabinet-color-section .cabinet-title {
        gap: 30px;
    }

    .snippet.cabinet-color .cabinet-color-section .cabinet-colors .row.outer {
        gap: 60px;
    }
}

@media (max-width: 992px) {
    .snippet.cabinet-color .cabinet-color-section {
        padding: 30px;
    }

    .snippet.cabinet-color .cabinet-color-section .cabinet-colors {
        padding-left: 20px;
    }

    .snippet.cabinet-color .cabinet-color-section .cabinet-colors .row.outer,
    .snippet.cabinet-color .cabinet-color-section .cabinet-colors .color-item .row.inner {
        gap: 20px;
    }

    .snippet.cabinet-color .cabinet-color-section .cabinet-colors .color-item p {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .snippet.cabinet-color .cabinet-color-section {
        display: block;
    }

    .snippet.cabinet-color .cabinet-color-section .cabinet-title {
        width: 100%;
        margin-bottom: 30px;
    }

    .snippet.cabinet-color .cabinet-color-section .cabinet-title img {
        display: none;
    }

    .snippet.cabinet-color .cabinet-color-section .cabinet-colors {
        padding-left: 0px;
    }

    .snippet.cabinet-color .cabinet-color-section .cabinet-colors .row.outer {
        display: inline-block;
    }

    .snippet.cabinet-color .cabinet-color-section .cabinet-colors .color-item:first-child {
        margin-bottom: 40px;
    }

    .snippet.cabinet-color .cabinet-color-section .cabinet-colors .color-item .row.inner {
        justify-content: flex-start;
    }
}

/* kitchen Cabinets colors Css Ends Here */

/* flat pack kitchen Units Css starts Here */

.section.cabinet-unit {
    margin-bottom: 40px;
    align-items: center;
}

.section.cabinet-unit .unit-title h3 {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 140%;
    color: var(--k4u-black);
}

.section.cabinet-unit .cabinet-units {
    /* padding-left: 69px; */
}

.section.cabinet-unit .cabinet-units .row.outer {
    gap: 24px;
    justify-content: flex-start;
}

.section.cabinet-unit .cabinet-units .unit-item {
    background-color: var(--k4u-white);
    padding: 20px 55px;
    position: relative;
    cursor: pointer;
    width: auto;
    opacity: 1;
    transition: all .7s;
    z-index: 1;
    border-radius: 100px;
}

.section.cabinet-unit .cabinet-units .unit-item:hover {
    background-color: #f8f8f8;
    transition: all .7s;
}

/* .section.cabinet-unit .cabinet-units .unit-item.unit-selected:hover{
    opacity: 1;
    transition: all .35s;
} */
/* .section.cabinet-unit .cabinet-units .unit-item::after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--k4u-light-gray);
    transition: all .35s;
    border-radius: 100px;
    z-index: -1;
}
.section.cabinet-unit .cabinet-units .unit-item.unit-selected::after{
    width: 100%;
} */
.unit-selected {
    background-color: var(--k4u-light-gray) !important;
    transition: all .7s;
    /* border-radius: 100px; */
}

.unit_icon {
    display: none;
    margin-right: 12px;
    transition: all .7s;
}

.unit_icon i {
    font-size: 16px;
}

.unit-selected .unit_icon {
    display: inline-block;
    transition: all .7s;
}

/* .unit-selected::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    font-size: 16px;
    position: absolute;
    left: 36px;
    color: var(--k4u-black);
    font-weight: 900;
} */
.unit-selected p {
    color: var(--k4u-black) !important;
}

.section.cabinet-unit .cabinet-units .unit-item p {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: var(--k4u-darker-gray);
}

@media (max-width: 1350px) {
    .section.cabinet-unit .cabinet-units {
        padding-left: 40px;
    }

    .section.cabinet-unit .cabinet-units .unit-item {
        padding: 20px 30px;
    }
}

@media (max-width: 1200px) {
    .section.cabinet-unit .cabinet-units .row.outer {
        gap: 20px;
    }

    .section.cabinet-unit .cabinet-units .unit-item {
        padding: 15px 22px;
    }
}

@media (max-width: 767px) {
    .section.cabinet-unit {
        display: block;
    }

    .section.cabinet-unit .unit-title {
        width: 100%;
    }

    .section.cabinet-unit .cabinet-units {
        padding-left: 0px;
        width: 100%;
        margin-top: 20px;
    }

    .section.cabinet-unit .cabinet-units .row.outer {
        display: inline-block;
    }

    .section.cabinet-unit .cabinet-units .unit-item {
        margin-bottom: 30px;
    }
}

/* flat pack kitchen Units Css Ends Here */

/* Complete Kitchen CSS */

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

.section.completekitchen.cabinet-unit {
    /* padding-top: 60px; */
    display: none;
    transition: all .7s;
}

.section.completekitchen.cabinet-color,
.completekitchen.cabinet-products,
.completekitchen.cart-buttons,
.replacementDoor.cart-buttons,
.section.replacementDoor.cabinet-color {
    display: none;
    transition: all .7s;
}

.section .flatPack .cart-buttons {
    display: none;
    transition: all .7s;
}

/* Complete Kitchen Section Steps */
.snippet.step-bar {
    position: relative;
    display: flex;
    align-items: center;
}

.snippet.step-bar .progress-nav {
    display: flex;
    align-items: center;
    list-style: none;
    max-width: 470px;
    margin: 0px auto;
    margin-right: 15px;
    width: 100%;
}

.snippet.step-bar .progress-nav li {
    display: block;
    width: 19%;
    height: 3px;
    background-color: var(--k4u-black);
    line-height: 1.2;
    color: var(--k4u-black);
    position: relative;
    transition: all .7s;
}

/* .snippet.step-bar .progress-nav li {
    width: 25%;
} */
.snippet.step-bar .progress-nav li:last-child {
    width: 0%;
    transition: all .7s;
}

.snippet.step-bar .progress-nav li:before {
    display: flex;
    align-items: center;
    justify-content: center;
    content: "";
    width: 22px;
    height: 22px;
    background-color: var(--k4u-light-gray);
    border: 3px solid var(--k4u-black);
    font-weight: 700;
    font-size: 15px;
    background-size: 60%;
    border-radius: 50%;
    position: absolute;
    top: -10px;
    right: 0;
    left: -5px;
    cursor: pointer;
    transition: all .7s;
}

.snippet.step-bar .progress-nav li.active:before {
    border: 6px solid var(--k4u-black);
    /* transition: all .7s; */
}

.snippet.step-bar .progress-nav li.active~li:before {
    width: 22px;
    height: 22px;
    top: -10px;
    content: "";
    background-color: var(--k4u-light-gray);
    background-image: none;
    border: 2px solid var(--k4u-gray);
    transition: all .7s;
}

.snippet.step-bar .progress-nav li a {
    font-family: 'Prata';
    color: currentColor;
    font-size: 16px;
    bottom: calc(100% + 20px);
    font-weight: 400;
    position: absolute;
    line-height: 22.4px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    text-align: center;
}

.snippet.step-bar .progress-nav li.active {
    background-color: var(--k4u-gray);
    color: var(--k4u-black);
    /* transition: all .7s; */
}

.snippet.step-bar .progress-nav li.active~li {
    background-color: var(--k4u-gray);
    color: var(--k4u-darker-gray);
    transition: all .7s;
}

/* kitchen Range colors Css starts Here */
.section.kitchen-range {
    margin: 40px 0px;
}

.section.kitchen-range .range-color-section {
    background: var(--k4u-light-gray);
    padding: 37px 55px 37px 64px;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    transition: all .7s;
}

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

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

.section.kitchen-range .range-color-section .range-colors {
    padding-left: 68px;
}

.section.kitchen-range .range-color-section .range-colors .row.outer {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 55px;
}

.section.kitchen-range .range-color-section .range-colors .color-item {
    cursor: pointer;
    width: auto;
}

.section.kitchen-range .range-color-section .range-colors .color-item .row.inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
}

.section.kitchen-range .range-color-section .range-colors .color-item .color-circle {
    height: 76px;
    width: 76px;
    position: relative;
}

.section.kitchen-range .range-color-section .range-colors .color-item p {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: var(--k4u-black);
    width: auto;
}

.section.kitchen-range .range-color-section .range-colors .color-item .color-circle .circle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.section.kitchen-range .range-color-section .range-colors .color-item .color-circle.color-selected .circle-icon {
    display: block;
    color: #fff;
}

.section.kitchen-range .range-color-section .range-colors .color-item:hover .color-circle::before {
    opacity: 1;
    transition: all .7s;
}

.section.kitchen-range .range-color-section .range-colors .color-item .color-circle::before {
    content: '';
    height: calc(100% + 20px);
    width: calc(100% + 20px);
    display: flex;
    border: 1px solid #c5c5c5;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .7s;
}

.section.kitchen-range .range-color-section .range-colors .color-item .color-circle.color-selected::before {
    opacity: 1;
    transition: all .7s;
    border-color: var(--k4u-black);
}

/* @keyframes rotate {
    0% {
        width: 0%;
        height: 0%;
    }
    100% {
        width: 96px;
        height: 96px;
    }
  } */
.section-next-btn {
    text-align: right;
    display: block;
    margin-top: 30px;
}

.section-next-btn .next-button {
    display: inline-block;
    cursor: pointer;
}

.section-next-btn .next-button svg {
    margin-left: 9px;
}

.section-next-btn .next-button.disabled {
    pointer-events: none;
    /* opacity: .5; */
    cursor: not-allowed;
    background-color: var(--k4u-light-gray);
    border-color: var(--k4u-gray);
    color: var(--k4u-darker-gray);
}

.section-next-btn .next-button.disabled svg path {
    stroke: var(--k4u-darker-gray);
}

/* .section-next-btn .next-button::after {
    content: "\f178";
    display: inline;
    font-family: 'FontAwesome';
    font-weight: 400;
    margin-left: 10px;
    top: 2px;
    position: relative;
} */

@media (max-width:1350px) {

    .section.kitchen-range .range-color-section .range-title,
    .section.kitchen-range .range-color-section .range-colors .color-item .row.inner {
        gap: 30px;
    }

    .section.kitchen-range .range-color-section .range-colors {
        padding-left: 50px;
    }

    .section.kitchen-range .range-color-section .range-colors .row.outer {
        gap: 40px;
    }
}

@media (max-width:1200px) {
    .section.kitchen-range .range-color-section {
        padding: 37px 30px 37px 30px;
    }

    .section.kitchen-range .range-color-section .range-title,
    .section.kitchen-range .range-color-section .range-colors .color-item .row.inner {
        gap: 20px;
    }

    .section.kitchen-range .range-color-section .range-colors {
        padding-left: 35px;
    }

    .section.kitchen-range .range-color-section .range-colors .row.outer {
        gap: 30px;
        justify-content: space-between;
    }
}

@media (max-width:768px) {
    .section.kitchen-range .range-color-section .range-title {
        gap: 49px;
    }

    .section.kitchen-range .range-color-section .range-colors {
        padding-left: 68px;
    }

    .section.kitchen-range .range-color-section .range-colors .row.outer {
        gap: 40px;
    }

    .section.kitchen-range .range-color-section .range-colors .color-item .row.inner {
        gap: 35px;
    }
}

@media (max-width:767px) {
    .section.kitchen-range .range-color-section {
        display: block;
    }

    .section.kitchen-range .range-color-section .range-title {
        width: 100%;
    }

    .section.kitchen-range .range-color-section .range-title img {
        display: none;
    }

    .section.kitchen-range .range-color-section .range-colors {
        padding-left: 0px;
        margin-top: 30px;
        width: 100%;
    }

    .section.kitchen-range .range-color-section .range-colors .row.outer {
        gap: 30px;
    }
}

/* kitchen Range colors Css Ends Here */

/* Kitchen Collection Css Starts Here */
.section.kitchen-collection {
    /* padding: 60px 0px; */
    display: none;
    transition: all .7s;
}

.section.kitchen-collection .collection-title {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 140%;
    color: var(--k4u-black);
    margin-bottom: 50px;
}

.section.kitchen-collection .kitchen-collections {
    gap: 30px;
    padding: 0px;
}

.section.kitchen-collection .kitchen-collections .collection-card-item {
    width: auto;
    position: relative;
    cursor: pointer;
}

.section.kitchen-collection .kitchen-collections .collection-card-item:hover::before {
    opacity: 1;
    transition: all .7s;
}

.section.kitchen-collection .kitchen-collections .collection-card-item::before {
    content: '';
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 1px solid #c5c5c5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.collection-selected::before {
    border-color: var(--k4u-black) !important;
    opacity: 1 !important;
    transition: all .7s;
}

.collection-selected .collection-name {
    background-color: transparent !important;
    color: #fff !important;
    transition: all .7s;
}

.section.kitchen-collection .kitchen-collections .collection-card-item:hover .collection-name {
    background-color: transparent !important;
    color: #fff !important;
    transition: all .7s;
}

.section.kitchen-collection .kitchen-collections .collection-card-item .collection-name {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    color: var(--k4u-black);
    background-color: var(--k4u-light-gray);
    padding: 30px;
    position: absolute;
    width: 100%;
    bottom: 0px;
    transition: all .7s;
}

.section.collection-popup {
    position: fixed;
    display: block;
    height: 100%;
    width: 100%;
    z-index: 10000;
    top: 0px;
    left: 0px;
    transition: 0.3s visibility ease-in, opacity 0.3s ease-out;
    visibility: hidden;
    opacity: 0;
}

.section.collection-popup.show {
    visibility: visible;
    opacity: 1;
}

.section.collection-popup .overlay {
    content: '';
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
}

.section.collection-popup .close-popup {
    position: absolute;
    right: 30px;
    top: 15px;
    cursor: pointer;
}

.section.collection-popup .close-popup i {
    font-size: 28px;
    color: var(--k4u-black);
}

.section.collection-popup .popup-content {
    position: fixed;
    width: 100%;
    max-width: 600px;
    height: 100%;
    max-height: 650px;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid #ccc;
    padding: 30px;
    text-align: center;
}

.section.collection-popup .popup-content h3 {
    text-align: center;
    margin-top: 20px;
}

.section.collection-popup .popup-content img {
    margin-top: 30px;
}

.section.collection-popup .popup-content a.popup-btn {
    display: inline-block;
    margin-top: 20px;
}

@media (max-width:767px) {
    .section-next-btn {
        text-align: center;
    }

    .section.collection-popup .popup-content {
        max-height: 570px;
        max-width: 320px;
        padding: 20px;
    }

    .section.collection-popup .popup-content img {
        max-width: 250px;
    }

    .section.collection-popup .popup-content a.popup-btn {
        padding: 7px 10px;
    }

    .section.collection-popup .popup-content a.popup-btn::after {
        display: none;
    }
}

@media (max-width:320px) {
    .section.kitchen-collection .kitchen-collections .collection-card-item img {
        max-width: 270px;
    }

    .section.collection-popup .popup-content {
        max-height: 500px;
        padding: 10px;
        max-width: 280px;
    }

    .section.collection-popup .close-popup {
        right: 15px;
        top: 8px;
    }

    .section.collection-popup .popup-content img {
        max-width: 220px;
    }
}

/* Kitchen Collection Css Ends Here */

/* Complete Kitchen Types Css starts Here */
.section.kitchen-type {
    padding: 0px 0px 60px;
    /* margin-bottom: 40px; */
    align-items: center;
    display: none;
    transition: all .7s;
    align-content: flex-start;
}

.section.kitchen-type .kitchen-type-title h3 {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 140%;
    color: var(--k4u-black);
}

.section.kitchen-type .kitchen-types .row.outer {
    gap: 24px;
    justify-content: flex-start;
}

.section.kitchen-type .kitchen-types .type-item {
    background-color: var(--k4u-white);
    padding: 20px 55px;
    position: relative;
    cursor: pointer;
    width: auto;
    opacity: 1;
    transition: all .7s;
    z-index: 1;
    border-radius: 100px;
}

.section.kitchen-type .kitchen-types .type-item:hover {
    background-color: #f8f8f8;
    transition: all .7s;
}

/* .section.kitchen-type .kitchen-types .type-item.type-selected:hover{
    opacity: 1;
    transition: all .35s;
} */
.type-selected {
    background-color: var(--k4u-light-gray) !important;
    /* border-radius: 100px; */
}

.type_icon {
    display: none;
    margin-right: 12px;
}

.type_icon i {
    font-size: 16px;
}

.type-selected .type_icon {
    display: inline-flex;
}

.type-selected p {
    color: var(--k4u-black) !important;
}

.section.kitchen-type .kitchen-types .type-item p {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: var(--k4u-darker-gray);
}

@media (max-width:767px) {

    .completekitchen .kitchen-type-title,
    .completekitchen .kitchen-types {
        width: 100%;
    }

    .completekitchen .kitchen-types {
        margin-top: 30px;
    }

    .completekitchen.kitchen-type .drill_label {
        font-size: 16px;
    }
}

/* Complete Kitchen Types Css Ends Here */

/* Complete Kitchen Colors Css Starts Here  */
.section.kitchen-color {
    /* padding: 60px 0px; */
    padding-bottom: 60px;
    display: none;
    transition: all .7s;
}

.section.kitchen-color .color-title {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 140%;
    color: var(--k4u-black);
    margin-bottom: 40px;
}

/* .section.kitchen-range .range-title h3{
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 140%;
    color: var(--k4u-black);
} */
.section.kitchen-color .kitchen-colors {
    gap: 25px;
    /* justify-content: center; */
}

/* .section.kitchen-range .range-colors .row.outer{
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 55px;
} */
.section.kitchen-color .kitchen-colors .color-item {
    cursor: pointer;
    width: 100%;
    max-width: 200px;
    text-align: center;
    margin-bottom: 25px;
}

.section.kitchen-color .kitchen-colors .color-item .row.inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
}

.section.kitchen-color .kitchen-colors .color-item .color-circle {
    height: 90px;
    width: 90px;
    position: relative;
    margin: 0px auto 20px;
}

.section.kitchen-color .kitchen-colors .color-item p {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: var(--k4u-black);
    width: auto;
}

.section.kitchen-color .kitchen-colors .color-item .kitchen_count {
    color: #B0B0B0;
    text-align: right;
    font-size: 15px;
    font-family: Prata;
    line-height: 140%;
    margin-left: 10px;
}

.section.kitchen-color .kitchen-colors .color-item .color-circle .circle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.section.kitchen-color .kitchen-colors .color-item .color-circle.color-selected .circle-icon {
    display: block;
    color: var(--k4u-black);
}

.section.kitchen-color .kitchen-colors .color-item:hover .color-circle::before {
    opacity: 1;
    transition: all .7s;
}

.section.kitchen-color .kitchen-colors .color-item .color-circle::before {
    content: '';
    height: 112px;
    width: 112px;
    display: flex;
    border: 1px solid #c5c5c5;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .7s;
}

.section.kitchen-color .kitchen-colors .color-item .color-circle.color-selected::before {
    opacity: 1;
    transition: all .7s;
    border: 1px solid var(--k4u-black);
}

@media (max-width:767px) {
    .section.kitchen-color .kitchen-colors .color-item {
        max-width: 138px;
    }

    .section.kitchen-color .kitchen-colors .color-item p {
        font-size: 18px;
    }

    .section.kitchen-color .kitchen-colors .color-item .kitchen_count {
        font-size: 12px;
    }
}

@media (max-width:320px) {
    .section.kitchen-color .kitchen-colors .color-item {
        max-width: 110px;
    }

    .section.kitchen-color .kitchen-colors .color-item p {
        font-size: 16px;
    }
}

/* Complete kitchen Colors Css Ends Here */

/* Complete Kitchen Drill Option Css */

.completekitchen.kitchen-type .drill_choice {
    margin-top: 40px;
    display: flex;
    align-items: center;
    transition: 0.3s visibility ease-in, opacity 0.3s ease-out;
    visibility: visible;
    opacity: 1;
    padding-left: 0px !important;
}

.completekitchen.kitchen-type .drill_choice.show {
    visibility: visible;
    opacity: 1;
}

.completekitchen.kitchen-type .drilling_choice {
    height: 20px;
    width: 20px;
    cursor: pointer;
}

.completekitchen.kitchen-type .drill_label {
    margin-left: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
}

/* flat pack kitchen & Complete Kitchen Products Starts Here */

.section.completekitchen.cabinet-products {
    padding-top: 60px;
}

.section.completekitchen.cabinet-products .product-card-item,
.section.replacementDoor.cabinet-products .product-card-item {
    display: block;
}

/* flatpack cabinets  */
.snippet.multiProducts {
    margin-bottom: 60px;
    gap: 30px;
}

.snippet.multiProducts .product-card-item {
    width: 100%;
    max-width: 315px;
    display: none;
    height: auto;
    text-align: center;
    padding: 15px;
}

.snippet.multiProducts .product-card-item .product-image {
    margin-bottom: 25px;
}

.snippet.multiProducts .product-card-item .product-image img {
    max-width: 100%;
}

.snippet.multiProducts .product-card-item .product-name h3 {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    color: var(--k4u-black);
    margin-bottom: 25px;
}

.snippet.multiProducts .product-card-item .price-group {
    display: flex;
    justify-content: center;
    gap: 28px;
    align-items: center;
    margin-bottom: 40px;
}

.snippet.multiProducts .product-card-item .price-group .sale-price,
.snippet.multiProducts .product-card-item .price-group .sale-price .price {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    text-align: center;
    color: var(--k4u-black);
}

/* .snippet.multiProducts .product-card-item .price-group .sale-price span , .snippet.multiProducts .product-card-item .price-group .regular-price span{
    color:var(--k4u-black);
} */
.snippet.multiProducts .product-card-item .price-group .regular-price,
.snippet.multiProducts .product-card-item .price-group .regular-price .price {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 140%;
    text-align: center;
    text-decoration-line: line-through;
    color: var(--k4u-black);
}


/* complete kitchen flatpack  */


.snippet.multiProducts-kitchen {
    margin-bottom: 60px;
    gap: 30px;
}

.snippet.multiProducts-kitchen .product-card-item {
    width: 100%;
    max-width: 315px;
    display: none;
    height: auto;
    text-align: center;
    padding: 15px;
}

.snippet.multiProducts-kitchen .product-card-item .product-image {
    margin-bottom: 25px;
}

.snippet.multiProducts-kitchen .product-card-item .product-image img {
    max-width: 100%;
}

.snippet.multiProducts-kitchen .product-card-item .product-name h3 {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    color: var(--k4u-black);
    margin-bottom: 25px;
}

.snippet.multiProducts-kitchen .product-card-item .price-group {
    display: flex;
    justify-content: center;
    gap: 28px;
    align-items: center;
    margin-bottom: 40px;
}

.snippet.multiProducts-kitchen .product-card-item .price-group .sale-price,
.snippet.multiProducts-kitchen .product-card-item .price-group .sale-price .price {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 140%;
    text-align: center;
    color: var(--k4u-black);
}

/* .snippet.multiProducts-kitchen .product-card-item .price-group .sale-price span , .snippet.multiProducts-kitchen .product-card-item .price-group .regular-price span{
    color:var(--k4u-black);
} */
.snippet.multiProducts-kitchen .product-card-item .price-group .regular-price,
.snippet.multiProducts-kitchen .product-card-item .price-group .regular-price .price {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 500;
    font-size: 15px;
    line-height: 140%;
    text-align: center;
    /* text-decoration-line: line-through; */
    color: var(--k4u-black);
}














.quantity-box {
    display: inline-block;
    border-bottom: 1px solid;
    width: 100%;
    max-width: 104px;
    padding-bottom: 13px;
    /* margin-top: 40px; */
}

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

.minus-icon::before {
    content: '\f068';
    font-family: 'FontAwesome';
    font-size: 14px;
    color: var(--k4u-darker-gray);
    font-weight: 400;
}

.plus-icon::before {
    content: '\2b';
    font-family: 'FontAwesome';
    font-size: 14px;
    color: var(--k4u-darker-gray);
    font-weight: 400;
}

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

.quantity-box .quantity-input {
    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);
}

/* flat pack kitchen Products Ends Here */

/* Bottom Total Price Bar Section Css */

.section.cart-buttons {
    padding: 30px;
    background-color: var(--k4u-light-gray);
    position: absolute;
    bottom: 30px;
    width: 100%;
    z-index: 100;
    max-width: 1350px;
    margin: 0px auto 0px auto;
    /* left: 0; */
}

@media (max-width:1150px) {
    .section.cart-buttons {
        left: 0 !important;
    }
}

.replacement-products-grid {
    margin-bottom: 180px;
}

/* .replacement-products-grid:empty{
    margin-bottom: 0px;
} */
.section.cart-buttons .total-price--bar {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.section.cart-buttons p.total_price,
.section.cart-buttons p.total_price span {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 140%;
    color: var(--k4u-black);
}

.section.cart-buttons .cart-button-group {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    /* align-items: center; */
    justify-content: flex-end;
}

.section.cart-buttons .cart-button-group .switch_main {
    position: relative;
    display: inline-flex;
}

.section.cart-buttons .cart-button-group .switch_main ul {
    position: absolute;
    list-style: none;
    background-color: #fff;
    border: 1px solid;
    bottom: 65px;
    width: 100%;
    transition: all .35s;
    opacity: 0;
    visibility: hidden;
    transform-origin: top left;
    transform: scale(1, 1);
    transition: all ease-in-out 0.3s;
    z-index: 2;
}

.switch_visible {
    opacity: 1 !important;
    transform: scale(1, 1) !important;
    visibility: visible !important;
}

.section.cart-buttons.is-sticky .cart-button-group .switch_main ul {
    bottom: 102%;
    top: unset !important;
}

.section.cart-buttons .cart-button-group .switch_main a {
    background: transparent;
    color: black;
}

.section.cart-buttons .cart-button-group .switch_main a:hover {
    background: var(--k4u-black);
    color: white;
    opacity: 1;
}

.section.cart-buttons .cart-button-group .switch_main ul li {
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 180%;
    background-color: #fff;
    color: var(--k4u-black);
    padding: 10px 34px 10px 34px;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
}

.section.cart-buttons .cart-button-group .switch_main ul li:last-child {
    border-bottom-color: var(--k4u-black);
}

.section.cart-buttons.is-sticky .cart-button-group .switch_main ul li:last-child {
    border-bottom-color: #fff;
}

.section.cart-buttons .cart-button-group .switch_main ul li:hover {
    color: #fff;
    background-color: var(--k4u-black);
}

.section.cart-buttons .cart-button-group .add-to-cart {
    background-color: var(--k4u-black);
    color: var(--k4u-white);
}

.section.cart-buttons .cart-button-group .add-to-cart svg {
    margin-left: 8px;
}

/* .section.cart-buttons .cart-button-group .add-to-cart::after{
    content: "\f178";
    display: inline;
    font-family: 'FontAwesome';
    font-weight: 400;
    margin-left: 10px;
    top: 2px;
    position: relative;
} */

@media (max-width: 1350px) {
    .section.cart-buttons {
        max-width: 1150px;
    }
}

@media (max-width: 992px) {
    .section.cart-buttons {
        padding: 30px;
    }

    .section.cart-buttons .cart-button-group .switch-button,
    .section.cart-buttons .cart-button-group .cart-button {
        padding: 12px 25px;
    }

    .section.cart-buttons.is-sticky .cart-button-group .switch_main ul {
        bottom: 74%;
    }
}

@media (max-width: 767px) {
    .section.cart-buttons {
        padding: 30px 0px;
    }

    .section.cart-buttons .total-price--bar {
        display: block;
    }

    .section.cart-buttons .total-price--bar .total_price-main {
        width: 100%;
        text-align: center;
    }

    .section.cart-buttons .cart-button-group {
        width: 100%;
        gap: 10px;
        justify-content: center;
        margin-top: 30px;
    }

    .section.cart-buttons .cart-button-group .switch-button,
    .section.cart-buttons .cart-button-group .cart-button {
        padding: 10px 14px;
    }
}

/* Bottom Total Price Bar Section Css Ends */

/* Accesories Page Css Starts */

.section.accessories.page-content {
    /* margin-top:57px; */
    margin-bottom: 100px;
}

.section.accessories .accessories-categories {
    row-gap: 30px;
    justify-content: flex-start;
}

.section.accessories .accessories-categories .category-item {
    text-align: center;
    /* width: auto; */
}

.section.accessories .accessories-categories .category-item h3 {
    color: var(--k4u-black);
    text-align: center;
    margin: 25px 0px;
}

.section.accessories .accessories-categories .category-item a.category-btn {
    width: 100%;
    max-width: 226px;
    display: inline-block;
}

@media (max-width: 1450px) {

    .section.accessories .accessories-categories {
        column-gap: 15px;
        row-gap: 30px;
    }

    .section.accessories .accessories-categories .category-item {
        max-width: 300px;
    }

    .section.accessories .accessories-categories .category-item img {
        width: 100%;
    }
}

@media (max-width: 1200px) {

    .section.accessories .accessories-categories .category-item {
        max-width: 260px;
    }
}

@media (max-width: 992px) {

    .section.accessories .accessories-categories .category-item {
        max-width: 225px;
    }
}

@media (max-width: 768px) {

    .section.accessories.page-content .col-3 {
        width: 35%;
    }

    .global.accessories-sidebar .testimonials-item {
        padding: 15px;
    }

    .section.accessories.page-content .categories {
        width: 65%;
    }

    /* .section.accessories .accessories-categories .category-item {
        max-width: 225px;
    } */
}

@media (max-width: 767px) {

    .section.accessories.page-content .col-3 {
        display: none;
    }

    .section.accessories.page-content .categories {
        width: 100%;
    }

    .section.accessories .accessories-categories {
        justify-content: center;
    }

    .section.accessories .accessories-categories .category-item {
        max-width: 155px;
    }

    .section.accessories .accessories-categories .category-item h3 {
        font-size: 20px;
    }

    .section.accessories .accessories-categories .category-item a.category-btn {
        padding: 7px 10px;
    }
}

/* Accessories Category Page CSS Starts */

.section.accessories-category.subcategories {
    /* padding-bottom: 50px; */
    margin-bottom: 100px;
    gap: 30px;
}

.section.accessories-category.subcategories .subcategories-item {
    padding: 40px !important;
    background-color: var(--k4u-light-gray);
    max-width: 660px;
    width: 100%;
}

.section.accessories-category.subcategories .subcategories-item .subcategories-image {
    padding-right: 30px;
}

.section.accessories-category.subcategories .subcategories-item .subcategories-content {
    padding-left: 10px;
}

.section.accessories-category.subcategories .subcategories-item .subcategories-content h4 {
    color: var(--k4u-black);
    margin-top: 4px;
    margin-bottom: 10px;
}

.section.accessories-category.subcategories .subcategories-item .subcategories-content p {
    color: var(--k4u-darker-gray);
    margin-bottom: 20px;
}

.section.accessories-category.subcategories .subcategories-item .subcategories-content a.subcategory-btn {
    display: inline-block;
    padding: 11px 26px !important;
    width: auto;
}



.accessories-category.content {
    position: relative;
    margin-bottom: 100px;
}

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

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

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

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

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

.accessories-category.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%;
}




/* Accessories Category Page Icons Section CSS Starts */

.section.accessories-category.icons-list {
    padding: 50px 0px;
    gap: 30px;
}

.section.accessories-category.icons-list .icon-item {
    padding: 32px 40px 56px !important;
    border: 5px solid var(--k4u-light-gray);
    width: 100%;
    max-width: 315px;
    text-align: center;
}

.section.accessories-category.icons-list .icon-item h3 {
    margin: 10px 0px;
    color: var(--k4u-black);
    text-align: center;
    /* font-family: Prata;
        font-size: 24px;
        font-style: normal;
        font-weight: 400;
        line-height: 140%; */
}

.section.accessories-category.icons-list .icon-item p {
    color: var(--k4u-darker-gray);
    text-align: center;
    /* font-family: Barlow;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 180%; */
}

/* Accessories Category Page Icons Section CSS Starts */

/* .section.accessories-category.best-kitchen{
        padding: 50px 0px 50px 285px;
    }
    .section.accessories-category.best-kitchen .content-part{
        padding-right: 120px;
        display: flex;
        flex-wrap: wrap;
        align-content: center;
    }
    .section.accessories-category.best-kitchen .content-part h2{
        max-width: 528px;
        margin-bottom: 20px;
    }
    .section.accessories-category.best-kitchen .video-part .video-container{
        position: relative;
    }
    .section.accessories-category.best-kitchen .video-part .video-container video{
        width:100%;
        max-width: 830px;
    }
    .section.accessories-category.best-kitchen .video-part .video-container .play-button-wrapper{
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: rgba(0, 0, 0, 0.60);
        padding: 43px;
        border-radius: 50%;
    } */

/* Other Categories Slider Snippet CSS Starts*/

.snippet.other-categories-slider {
    /* padding: 50px 0px; */
    margin-bottom: 100px;
    position: relative;
}

.snippet.other-categories-slider .title h2 {
    color: var(--k4u-black);
    margin-bottom: 40px;
}

.snippet.other-categories-slider .accessories-categorySwiper {
    position: relative;
    text-align: center;
}

.snippet.other-categories-slider .accessories-categorySwiper .category-item h3 {
    color: var(--k4u-black);
    text-align: center;
    font-family: Prata;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin: 25px 0px;
}

.snippet.other-categories-slider .accessories-categorySwiper .category-item a {
    display: inline-block;
}

/* .swiper-wrapper{
        width: 100%;
    }    
    .swiper {
        width: 100%;
        height: 100%;
    }
    .swiper-slide {
        text-align: center;
        background: #fff;
    }
    .swiper {
        margin-left: auto;
        margin-right: auto;
    } */

/* Other Categories Slider Snippet CSS Ends*/

.section.accessories-category.other-accessories-content {
    /* padding: 50px 0px; */
    margin-bottom: 100px;
}

/* .section.accessories-category.other-accessories-content .title-section h1{
        margin-bottom: 30px;
    } */
/* .other-kitchen-content{
        padding-top: 50px;
    }
    .other-kitchen-content h2{
        margin-bottom: 15px;
    }
    .other-kitchen-content ul{
        list-style: none;
    }
    .other-kitchen-content ul , .other-kitchen-content ol{
        margin-bottom: 50px;
    }
    .other-kitchen-content ol{
        padding-left: 16px;
    }
    .other-kitchen-content ul li , .other-kitchen-content ol li{
        color: var(--k4u-darker-gray);
        font-family: Barlow;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 180%;
        margin-bottom: 30px;
    }
    .other-kitchen-content ul li {
        position: relative;
        padding-left: 40px;
    }
    .other-kitchen-content ul li::before{
        content: "";
        position: absolute;
        top: 10px;
        width: 12px;
        height: 12px;
        background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12" fill="none"><circle cx="6" cy="6.00098" r="4.5" stroke="black" stroke-width="3"/></svg>');
        background-size: cover;
        left: 0px;
    }
    .other-kitchen-content ul li:last-child , .other-kitchen-content ol li:last-child{
        margin-bottom: 0px;
    }
    .other-kitchen-content p{
        color: var(--k4u-darker-gray);
        font-family: 'Barlow', sans-serif;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        margin-bottom: 30px;
    }
    .other-kitchen-content p:last-child{
        padding: 37px 47px 21px 52px;
        background-color: var(--k4u-light-gray);
        position: relative;
    }
    .other-kitchen-content p:last-child::before {
        content: '';
        background-color: var(--k4u-black);
        height: 2px;
        width: 56px;
        display: block;
        position: absolute;
        left: -28px;
    }
    .other-kitchen-content p:last-child{
        color: var(--k4u-darker-gray);
        font-family: Barlow;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 180%;
    } */

.snippet.other-categories-slider .swiper-next,
.swiper-next-testimonial {
    position: absolute;
    top: 55%;
    z-index: 10000 !important;
    right: -77px;
    transform: translate(-50%, 50%);
}

.snippet.other-categories-slider .swiper-prev,
.swiper-prev-testimonial {
    z-index: 1;
    position: absolute;
    top: 55%;
    left: -46px;
    transform: translate(-50%, 50%);
}

/* 
    .testimonial-section{
        background-color: var(--k4u-light-gray);
        padding: 50px 0px;
        margin-top: 50px;
    }
    .accessories-testimonialSwiper .swiper-slide{
        text-align: left !important;
    }
    .swiper-prev-testimonial , .swiper-next-testimonial{
        top: 25% !important;
    } */

@media (max-width: 1450px) {

    .section.accessories-category.subcategories .subcategories-item {
        max-width: 600px;
        padding: 30px !important;
    }
}

/* Accessories Category Page CSS Ends */

/* Accessories Range Page CSS Starts */

.accessories-range.page-content {
    margin-bottom: 100px;
}


.accessories-range.faqs {
    margin-bottom: 100px;
}

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

/* .section.accessories-range{
        padding: 0px 0px 100px 0px;
    } */
/* .section.accessories-range.faq-section{
        margin-bottom: 100px;
        background-color: var(--k4u-light-gray);
        padding: 30px;
    } */
/* ul.faq-list{
        list-style: none;
        margin: 0px !important;
    }
    ul.faq-list .faq-list-item{
        margin-bottom: 10px;
    }
    ul.faq-list .faq-list-item:last-child{
        margin-bottom: 0px;
    }
    ul.faq-list .faq-list-item a{
        width: 100%;
        background: #fff;
        padding: 26px 32px 30px 34px;
        font-family: Prata;
        font-size: 22px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        color: var(--k4u-black);
        display: block;
    }
    ul.faq-list .faq-list-item a .accordion-icon{
        position: absolute;
        right: 60px;
    }
    ul.faq-list .faq-list-item a .icon-minus{
        display: none;
    }
    ul.faq-list .faq-list-item.open .icon-minus {
        display: inline-block;
    }
      
    ul.faq-list .faq-list-item.open .icon-plus {
        display: none;
    }
    ul.faq-list .faq-list-item p{
        color: var(--k4u-darker-gray);
        font-family: Barlow;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 180%;
        margin-top: 20px;
        padding: 0px 37px 0px 30px;
        display: none;
    } */
/* Single Product Cards CSS */

.section.accessories-range .accessories-range-products.single-products {
    gap: 30px;
}

.section.accessories-range .accessories-range-products.single-products .single-product {
    max-width: 315px;
}

.section.accessories-range .accessories-range-products.single-products .single-product a.product-image {
    max-width: 315px;
    display: block;
    position: relative;
}

.section.accessories-range .accessories-range-products.single-products .single-product a.product-image img {
    width: 100%;
}

.section.accessories-range .accessories-range-products.single-products .single-product h3 {
    margin: 25px 0px;
}

.section.accessories-range .accessories-range-products.single-products .single-product h3 a {
    color: var(--k4u-black);
    text-align: center;
}

.section.accessories-range .accessories-range-products.single-products .single-product .product-price {
    margin-bottom: 36px;
}

.section.accessories-range .accessories-range-products.single-products .single-product .product-price .sale-price,
.section.accessories-range .accessories-range-products.single-products .single-product .product-price .sale-price .price {
    color: var(--k4u-black);
    text-align: center;
    font-family: Barlow;
    font-weight: 700;
}

.section.accessories-range .accessories-range-products.single-products .single-product .product-price .regular-price {
    margin-left: 28px;
}

.section.accessories-range .accessories-range-products.single-products .single-product .product-price .regular-price,
.section.accessories-range .accessories-range-products.single-products .single-product .regular-price .price {
    color: var(--k4u-black);
    text-align: center;
    font-weight: 500;
    text-decoration: line-through;
}

.section.accessories-range .accessories-range-products.single-products .single-product .quantity-box {
    display: inline-block;
    border-bottom: 1px solid;
    width: 100%;
    max-width: 104px;
    padding-bottom: 13px;
    margin-right: 21px;
}

.section.accessories-range .accessories-range-products.single-products .single-product .quantity-box .quantity-number {
    box-shadow: none;
    border: none;
    background-color: var(--k4u-white);
    padding: 0px;
    position: relative;
}

.section.accessories-range .accessories-range-products.single-products .single-product .minus-icon::before {
    content: '\f068';
    font-family: 'FontAwesome';
    font-size: 14px;
    color: var(--k4u-darker-gray);
    font-weight: 400;
}

.section.accessories-range .accessories-range-products.single-products .single-product .plus-icon::before {
    content: '\2b';
    font-family: 'FontAwesome';
    font-size: 14px;
    color: var(--k4u-darker-gray);
    font-weight: 400;
}

.section.accessories-range .accessories-range-products.single-products .single-product .quantity-box input::-webkit-outer-spin-button,
.section.accessories-range .accessories-range-products.single-products .single-product .quantity-box input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.section.accessories-range .accessories-range-products.single-products .single-product .quantity-box .quantity-input {
    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);
}

.section.accessories-range .accessories-range-products.single-products .single-product .product-bottom a.buy-btn {
    display: inline-block;
    font-weight: 400;
    padding: 11px 26px;
}

.section.accessories-range .accessories-range-products.single-products .single-product .product-bottom .view-more {
    display: inline-block;
    text-align: center;
    padding: 16px;
    margin-left: 18px;
}

/* Accessories Range Page CSS Ends */

/* Accesories Page Ends Starts */

/* Cart Page Design Starts */
/* .woocommerce{
    padding: 60px 40px 100px 40px;
}
.coupon input{
    width: 175px !important;
    height: 40px;
    padding-left: 10px;
}
.woocommerce-cart-form__contents{
    font-family: 'Prata';
}
table.shop_table{
    margin-top: 15px !important;
}
table.shop_table tr th{
    font-family: 'Prata';
}
.wp-element-button{
    background-color: var(--k4u-black) !important;
    color: #fff !important;
    font-weight: 400 !important;
    font-size: 18px !important;
    transition: all 0.3s !important;
    border-radius: 0px !important;
    font-family: 'Barlow', sans-serif;
}
.wp-element-button:hover{
    opacity: .8;
} */


/* Single Product Page CSS */

.section.singleProduct.singleProduct-detail .product-info {
    margin-bottom: 70px;
}

.section.singleProduct.singleProduct-detail .product-info .feature-image {
    max-width: 540px;
}

.section.singleProduct.singleProduct-detail .product-info .product-detail {
    padding-left: 95px;
    display: flex;
    align-items: center;
}

.section.singleProduct.singleProduct-detail .product-info .product-detail .product-top {
    margin-bottom: 35px;
    display: flex;
    gap: 36px;
    justify-content: flex-start;
}

.section.singleProduct.singleProduct-detail .product-info .product-detail .product-top p.stock-value {
    color: var(--k4u-black);
    border: 1px solid var(--k4u-black);
    border-radius: 100px;
    padding: 0px 22px;
}

.section.singleProduct.singleProduct-detail .product-info .product-detail .product-top p.product-code {
    color: var(--k4u-darker-gray);
}

.section.singleProduct.singleProduct-detail .product-info .product-detail .product-title {
    padding-right: 85px;
    margin-bottom: 50px;
}

.section.singleProduct.singleProduct-detail .product-info .product-detail .product-price {
    display: flex;
    align-items: center;
}

.section.singleProduct.singleProduct-detail .product-info .product-detail .product-price .amount bdi,
.section.singleProduct.singleProduct-detail .product-info .product-detail .product-price .amount .woocommerce-Price-currencySymbol {
    font-size: 34px;
    line-height: 140%;
    color: var(--k4u-black);
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
}

.section.singleProduct.singleProduct-detail .product-info .product-detail .product-price .regular-price {
    margin-left: 40px;
}

.section.singleProduct.singleProduct-detail .product-info .product-detail .product-price .regular-price,
.section.singleProduct.singleProduct-detail .product-info .product-detail .product-price .regular-price .price {
    color: var(--k4u-black);
    font-family: 'Barlow', sans-serif;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: 140%;
    text-decoration: line-through;
}

.section.singleProduct.singleProduct-detail .product-info .product-detail .product-bottom {
    padding-top: 85px;
    display: flex;
    flex-wrap: nowrap;
    gap: 42px;
    justify-content: space-between;
    align-items: flex-end;
}

.section.singleProduct.singleProduct-detail .product-info .product-detail .product-bottom .product-variation {
    position: relative;
    max-width: 225px;
    width: 100%;
    display: block;
}

.section.singleProduct.singleProduct-detail .product-info .product-detail .product-bottom .product-variation label {
    display: block;
    font-family: 'Prata', sans-serif;
    color: var(--k4u-black);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    margin-bottom: 11px;
}

.section.singleProduct.singleProduct-detail .product-info .product-detail .product-bottom .product-variation select {
    position: relative;
    width: 100%;
    font-weight: 400;
    color: var(--k4u-darker-gray);
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    border-bottom: 1px solid var(--k4u-black);
    padding-bottom: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearence: none;
    cursor: pointer;
}

.section.singleProduct.singleProduct-detail .product-info .product-detail .product-bottom .product-variation svg {
    position: absolute;
    bottom: 16px;
    right: 0px;
}

.section.singleProduct.singleProduct-detail .product-info .product-detail .product-bottom .quantity-box {
    max-width: 170px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    margin-top: 0px;
    padding-bottom: 15px;
}

.section.singleProduct.singleProduct-detail .product-info .product-detail .product-bottom .cart-button {
    display: inline-flex;
    max-width: 235px;
    width: 100%;
}

.section.singleProduct.singleProduct-detail .product-info .product-detail .product-detail-group .woocommerce-product-details__short-description {
    display: none;
}

/* Dev 6 */


/* For Variable Product */
.summary.entry-summary form {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.summary.entry-summary form tr {
    display: flex;
    flex-direction: column;
}

.summary.entry-summary div:has(.quantity),
.summary.entry-summary div:has(.quantity) .quantity {
    display: flex;
    gap: 50px;
}

.summary.entry-summary form input {
    border: none;
    border-bottom: 1px solid;
    text-align: center;
}

.summary.entry-summary form select,
button.single_add_to_cart_button,
.summary.entry-summary form input {
    height: 50px;
}

.summary.entry-summary form select {
    border: none;
    border-bottom: 1px solid;
    width: 11vw;
}

.summary.entry-summary a.reset_variations,
.summary.entry-summary .woocommerce-variation-availability {
    display: none !important;
}

.col-5.feature-image img {
    vertical-align: middle;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.summary.entry-summary form tr * {
    color: var(--k4u-darker-gray);
}

.summary.entry-summary form tr label {
    display: block;
    font-family: 'Prata', sans-serif;
    color: var(--k4u-black);
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    margin-bottom: 11px;
}

.summary.entry-summary bdi,
.summary.entry-summary bdi * {
    font-size: 20px !important;
    font-weight: 400 !important;
}

.summary.entry-summary bdi::before {
    content: 'From: ';
}

.swiper-slide.category-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: auto;
}

/* Button */
.single_add_to_cart_button.button.alt {
    background-color: white;
    color: var(--k4u-black);
    border: 1px solid var(--k4u-black);
    padding: 12px 59px;
    white-space: nowrap;
    width: max-content;
}

.single_add_to_cart_button.button.alt:hover {
    color: white;
    background-color: var(--k4u-black)
}

/* End Button */

img.others-category-image {
    width: 100%;
}

@media screen and (max-width:1024px) {
    .section.singleProduct.singleProduct-detail .product-info .product-detail {
        padding-left: 25px;
    }

    .summary.entry-summary form {
        justify-content: unset;
        gap: 10px;
    }

    .summary.entry-summary form select,
    button.single_add_to_cart_button,
    .summary.entry-summary form input,
    .summary.entry-summary form select {
        width: 13vw;
    }

    .single_add_to_cart_button.button.alt {
        padding: 12px 30px;
    }

    .section.singleProduct.singleProduct-detail .product-info .product-detail .product-title {
        padding: 0px;
        margin: 0px;
    }

    .section.singleProduct.singleProduct-detail .product-info .product-detail .product-title,
    .snippet.other-categories-slider .title h2 {
        font-size: 35px;
    }

    .summary.entry-summary div:has(.quantity),
    .summary.entry-summary div:has(.quantity) .quantity {
        gap: 10px;
    }

    .btn-1.text-medium-par {
        padding: 5px 29px;
    }
}

@media screen and (max-width:768px) {
    .section.singleProduct.singleProduct-detail .product-info {
        gap: 10px;
    }

    .section.singleProduct.singleProduct-detail .product-info .product-detail,
    .section.singleProduct.singleProduct-detail .product-info .feature-image {
        width: calc(50% - 5px);
        padding: unset;
    }

    .snippet.other-categories-slider .accessories-categorySwiper .category-item h3 {
        font-size: 16px;
    }


}

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

    .section.singleProduct.singleProduct-detail .product-info .product-detail,
    .section.singleProduct.singleProduct-detail .product-info .feature-image {
        width: 100%;
    }

    .section.singleProduct.singleProduct-detail .product-info .product-detail .product-title,
    .snippet.other-categories-slider .title h2 {
        font-size: 25px;
    }

    .swiper.accessories-categorySwiper .swiper-wrapper {
        display: flex;
        flex-wrap: wrap;
    }

    .swiper-slide.category-item {
        min-width: calc(50% - 15px);
        margin: 10px 7px !important;
    }

    .summary.entry-summary form select,
    button.single_add_to_cart_button,
    .summary.entry-summary form input,
    .summary.entry-summary form select {
        width: 25vw;
    }
}








/* -- Plus & Minus */
.quantity input[type="number"]::-webkit-inner-spin-button,
.quantity input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity {
    position: relative;
}

.quantity::before {
    cursor: pointer;
    content: '+';
    position: absolute;
    font-size: 20px;
    transform: translateY(1px);
    left: 44px;
}

.quantity::after {
    cursor: pointer;
    content: '-';
    position: absolute;
    font-size: 30px;
    transform: translateY(7px);
    /* right: 0; */
    top: -8px;
    left: 0;
}

@media (max-width: 768px) {

    .quantity::after {
        left: unset !important;
        right: 0 !important;
    }

}

/* For Simple Product */

/* End Dev 6 */













/* Replacement Door Page Css  */

/* Door Range colors Css starts Here */

.section.door-range {
    margin: 40px 0px;
}

.section.door-range .range-color-section {
    background: var(--k4u-light-gray);
    padding: 37px 55px 37px 64px;
    /* flex-wrap: nowrap; */
    justify-content: space-between;
    align-items: center;
    transition: all .7s;
}

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

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

.section.door-range .range-color-section .range-colors {
    /* padding-left: 68px; */
}

.section.door-range .range-color-section .range-colors .row.outer {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 55px;
}

.section.door-range .range-color-section .range-colors .color-item {
    cursor: pointer;
    width: auto;
}

.section.door-range .range-color-section .range-colors .color-item .row.inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
}

.section.door-range .range-color-section .range-colors .color-item .color-circle {
    height: 76px;
    width: 76px;
    position: relative;
}

.section.door-range .range-color-section .range-colors .color-item p {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: var(--k4u-black);
    width: auto;
}

.section.door-range .range-color-section .range-colors .color-item .color-circle .circle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.section.door-range .range-color-section .range-colors .color-item .color-circle.color-selected .circle-icon {
    display: block;
    color: #fff;
}

.section.door-range .range-color-section .range-colors .color-item:hover .color-circle::before {
    opacity: 1;
    transition: all .7s;
}

.section.door-range .range-color-section .range-colors .color-item .color-circle::before {
    content: '';
    height: calc(100% + 20px);
    width: calc(100% + 20px);
    display: flex;
    border: 1px solid #c5c5c5;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .7s;
}

.section.door-range .range-color-section .range-colors .color-item .color-circle.color-selected::before {
    opacity: 1;
    transition: all .7s;
    border-color: var(--k4u-black);
}

.style-image {
    width: 100%;
}

/* Door Range colors Css Ends Here */

/* Door Collection Css Starts Here */

.section.door-collection {
    padding: 60px 0px;
    display: none;
    transition: all .7s;
}

.section.door-collection .collection-title {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 140%;
    color: var(--k4u-black);
    margin-bottom: 50px;
}

.section.door-collection .door-collections {
    gap: 30px;
    padding: 0px;
}

.section.door-collection .door-collections .collection-card-item {
    width: auto;
    position: relative;
    cursor: pointer;
}

.section.door-collection .door-collections .collection-card-item:hover::before {
    opacity: 1;
    transition: all .7s;
}

.section.door-collection .door-collections .collection-card-item::before {
    content: '';
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border: 1px solid #c5c5c5;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.collection-selected::before {
    border-color: var(--k4u-black) !important;
    opacity: 1 !important;
    transition: all .7s;
}

.collection-selected .collection-name {
    background-color: transparent !important;
    color: #fff !important;
    transition: all .7s;
}

.section.door-collection .door-collections .collection-card-item:hover .collection-name {
    background-color: transparent !important;
    color: #fff !important;
    transition: all .7s;
}

.section.door-collection .door-collections .collection-card-item .collection-name {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 140%;
    color: var(--k4u-black);
    background-color: var(--k4u-light-gray);
    padding: 30px;
    position: absolute;
    width: 100%;
    bottom: 0px;
    transition: all .7s;
}

/* Door Collection Css Ends Here */

/* Door Colors Css Starts Here  */

.section.door-color {
    padding: 60px 0px;
    display: none;
    transition: all .7s;
}

.section.door-color .color-title {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 140%;
    color: var(--k4u-black);
    margin-bottom: 40px;
}

/* .section.door-range .range-title h3{
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 140%;
    color: var(--k4u-black);
} */
.section.door-color .door-colors {
    gap: 25px;
    /* justify-content: center; */
}

/* .section.door-range .range-colors .row.outer{
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 55px;
} */
.section.door-color .door-colors .color-item {
    cursor: pointer;
    width: 100%;
    max-width: 200px;
    text-align: center;
    margin-bottom: 25px;
}

.section.door-color .door-colors .color-item .row.inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 35px;
}

.section.door-color .door-colors .color-item .color-circle {
    height: 90px;
    width: 90px;
    position: relative;
    margin: 0px auto 20px;
}

.section.door-color .door-colors .color-item p {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: var(--k4u-black);
    width: auto;
}

.section.door-color .door-colors .color-item .door_count {
    color: #B0B0B0;
    text-align: right;
    font-size: 15px;
    font-family: Prata;
    line-height: 140%;
    margin-left: 10px;
}

.section.door-color .door-colors .color-item .color-circle .circle-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
}

.section.door-color .door-colors .color-item .color-circle.color-selected .circle-icon {
    display: block;
    color: var(--k4u-black);
}

.section.door-color .door-colors .color-item:hover .color-circle::before {
    opacity: 1;
    transition: all .7s;
}

.section.door-color .door-colors .color-item .color-circle::before {
    content: '';
    height: 112px;
    width: 112px;
    display: flex;
    border: 1px solid #c5c5c5;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all .7s;
}

.section.door-color .door-colors .color-item .color-circle.color-selected::before {
    opacity: 1;
    transition: all .7s;
    border: 1px solid var(--k4u-black);
}

/* Door Colors Css Ends Here */

/* Door Type Css starts Here */

.section.door-type {
    padding-top: 60px;
    margin-bottom: 40px;
    align-items: center;
    transition: all .7s;
    display: none;
}

/* .door-type .door-type-inner{
    display: flex;
    justify-content: space-between;
    gap: 69px;
    align-items: center;
} */
.section.door-type .doorType-title h3 {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 140%;
    color: var(--k4u-black);
}

.section.door-type .door-types {
    padding-left: 69px;
}

.section.door-type .door-types .row.outer {
    gap: 24px;
    justify-content: flex-start;
}

.section.door-type .door-types .doorType-item {
    background-color: var(--k4u-white);
    padding: 20px 55px;
    position: relative;
    cursor: pointer;
    width: auto;
    opacity: 1;
    transition: all .7s;
    z-index: 1;
    border-radius: 100px;
}

.section.door-type .door-types .doorType-item:hover {
    background-color: #f8f8f8;
    transition: all .7s;
}

/* .section.door-type .door-types .doorType-item.doorType-selected:hover{
    opacity: 1;
    transition: all .35s;
} */
/* .section.door-type .door-types .doorType-item::after{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--k4u-light-gray);
    transition: all .35s;
    border-radius: 100px;
    z-index: -1;
}
.section.door-type .door-types .doorType-item.doorType-selected::after{
    width: 100%;
} */
.doorType-selected {
    background-color: var(--k4u-light-gray) !important;
    transition: all .7s;
    /* border-radius: 100px; */
}

.doorType_icon {
    display: none;
    margin-right: 12px;
    transition: all .7s;
}

.doorType_icon i {
    font-size: 16px;
}

.doorType-selected .doorType_icon {
    display: inline-block;
    transition: all .7s;
}

/* .doorType-selected::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    font-size: 16px;
    position: absolute;
    left: 36px;
    color: var(--k4u-black);
    font-weight: 900;
} */
.doorType-selected p {
    color: var(--k4u-black) !important;
}

.section.door-type .door-types .doorType-item p {
    font-family: 'Prata';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: var(--k4u-darker-gray);
}

/* Door Type Css Ends Here */








/* Cart page */
.cart.main {
    margin-bottom: 60px;
}


/* Checkout page */
.checkout.main {
    margin-bottom: 60px;
}