@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Anton&family=Archivo+Black&family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Bebas+Neue&family=Gravitas+One&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Special+Gothic+Condensed+One&family=Zalando+Sans+Expanded:ital,wght@0,200..900;1,200..900&display=swap');


/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Barlow", sans-serif;
}

body.no-scroll {
    position: fixed;
    overflow: hidden;
    width: 100%;
    height: 100%;
    overscroll-behavior: none;
}


body {
    font-family: 'Barlow', sans-serif;
    background: #F7F6F5;
}

p {
    margin: 0;
}

.surface-select {
    z-index: 9;
}


/* OVERLAY */
.pincode-overlay {
    position: fixed;
    inset: 0;
    background: #f7f6f5;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    height: 100dvh;
    min-height: -webkit-fill-available;
}

.pincode-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* CONTAINER (Modern Grid Row/Col) */
.pincode-container {
    width: 100%;
    max-width: 1400px;
    height: 88vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 28px;
    overflow: hidden;
    animation: scaleIn 0.4s ease;
}

.pincode-form .input-group {
    width: 100%;
}

/* ANIMATION */
@keyframes scaleIn {
    from {
        transform: scale(0.96);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* LEFT COLUMN */
.pincode-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

/* RIGHT COLUMN */
.pincode-right {
    padding: 90px 110px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pincode-right h1 {
    margin-top: 2rem;
}

.pincode-right p {
    margin-bottom: 2rem;
}

/* LOGO */
.brand-logo {
    width: 150px;
}

/* HEADING */
h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.1;
    height: auto;
}

/* TEXT */
p {
    font-family: "Albert Sans", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #6c6c6c;
    margin-bottom: 0;
}

/* INPUT GROUP */
.input-group {
    position: relative;
}

/* INPUT */
#pin_code {
    width: 100%;
    height: 70px;
    padding: 0 28px;
    padding-right: 150px;
    border-radius: 999px;
    border: 1px solid #e5e5e5;
    font-size: 16px;
    transition: 0.3s ease;
}

#pin_code:focus {
    border-color: #111;
    outline: none;
}

/* BUTTON */
#pincode_submit_btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);

    height: 52px;
    padding: 0 34px;
    border-radius: 999px;
    border: none;
    background: #111;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;

    font-family: Albert Sans;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
}

#pincode_submit_btn:hover {
    background: #000;
}

#pincode_submit_btn .arrow {
    display: inline-block;
    transition: .3s;
}

#pincode_submit_btn:hover .arrow {
    transform: rotate(-40deg);
}

.back-link {
    color: #191B1C;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.back-link:hover {
    text-decoration: none;
}

.step-text {
    font-size: 15px;
    font-weight: 600;
    color: #191B1C;
}

/* Room List */
.room-size {
    padding: 2rem 3rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid #F7F6F566;
    position: absolute;
    z-index: 99;
    top: 20px;
    box-shadow: 0px 4px 4px 0px #AEB4B71A;
    left: 30px;
}

.space-section {
    max-width: 1440px;
    /* matches modern design width */
    margin: 0 auto;
    padding: 0 24px 40px;
}

.space-container {
    display: flex;
    gap: 16px;
    margin-bottom: 1rem;
}

/* CARD BASE */
.space-card {
    flex: 1;
    height: 300px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border-radius: 30px;
}

.space-container.first .space-card:first-child {
    flex: 2;
}

.space-container.second .space-card:nth-child(3) {
    flex: 2;
}

.space-card:hover {
    flex: 3;
    /* 👈 hovered becomes largest */
}

/* IMAGE */
.space-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

/* OVERLAY */
.space-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .65),
            rgba(0, 0, 0, .05));
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
}

/* TEXT */
.space-overlay h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
}

.space-overlay p {
    font-size: 14px;
    opacity: .85;
}

/* ARROW */
.space-overlay .arrow {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

/* HOVER */
.space-card:hover img {
    transform: scale(1.08);
}


.space-card:hover .arrow {

    background: #fff;
    color: #000;
    transform: rotate(-40deg);
}


.onLoadWrapper {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.Heading {
    margin-top: 1rem;
}

/* Room Card Wrapper */
.room-card {
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.room-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Image Section */
.room-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    box-shadow: 0px 0px 4px #da2d2d;
}

/* Title Section */
.room-title {
    text-align: center;
    padding: 14px 10px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

/* Hover Effect */
.room-card:hover {
    transform: translateY(-6px);
}


/* Canva Room Load CSS */
.cmn-room-btn .span-icon {
    width: 20px;
    height: 20px;
}

.cmn-room-btn .span-icon i {
    font-size: 12px;
}

.cmn-room-btn.cn-btn {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
    bottom: 40px;
    backdrop-filter: blur(10px);
    padding: 1.5rem 2.1rem;
    border-radius: 50px;
    border: 1px solid #EFEEEE;
    height: auto;
}

.btn-text-set-back {
    margin: 0;
}

.btn-text-set {
    color: #F7F6F5;
    text-shadow: none;
}

#topPanelmainpanel {
    top: 100px;
    margin-right: 15px;
    padding: 1.5rem;
    margin-left: 0;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid #EEEEEE;
    color: #F7F6F5;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    width: 56px;
    margin-top: 0;
    transition: none;
}


#mainpage-panel-btn {
    margin: 0;
}

.share-div {
    background: transparent;
    backdrop-filter: blur(10px);
    border: 1px solid #EFEEEE;
    color: #F7F6F5;
    bottom: 40px;
    border-radius: 50px;
    box-shadow: none;
    margin: 0;
}

.btn-text-set-back {
    color: #F7F6F5;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.4) !important;
}

.fixed {
    position: fixed;
    z-index: 9;
    top: 25px;
}


.back-main-btn,
.step-text-btn {
    top: 25px;
}

/* room header */
/* .header-menu {
    visibility: hidden;
} */

#dialogRoomSelect.show {
    backdrop-filter: blur(10px);
    background-color: rgb(84 84 84 / 26%);
}

/* SIDEBAR STYLE */
.top-panel {
    border-radius: 30px;
    z-index: 999;
}

.top-panel-product {
    background-color: rgb(203 203 203 / 40%) !important;
    backdrop-filter: blur(60px);
    border: 2px solid #F7F6F580;
}

.product-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px;
}

.product-panel-closeBtn {
    background: #F7F6F566;
    border-radius: 50%;
    border: 2px solid #E6E6E666;
    cursor: pointer;
}

.product-panel-closeBtn .closer-btn {
    padding: 1.2rem 1.5rem;

}

.product-panel-closeBtn .closer-btn i {
    font-size: 16px;
}

.slected_tile {
    background: #F7F6F573;
    border: 2px solid #FFFEFD;
}

.slected_tile .tile-list-thumbnail-image-holder {
    border: 1px solid #FFFEFD;
    border-radius: 15px;
}

.slected_tile .tile-list-thumbnail-image-holder img {
    height: 64px;
    width: 64px;
    border-radius: 15px;
}

.-caption {
    color: #191B1C;
    font-size: 16px;
    line-height: 18px;
}

.open-panel {
    margin-right: 10px;
    color: #8D8D8D;
}

.top-panel-button-active {
    background-color: #191B1C !important;
}

.top-panel-button:hover {
    background-color: #191B1C !important;
    color: #FFFFFF;
}

.top-panel-button {
    border: 0;
    background-color: #F7F6F5;
}

.panel-title {
    margin: 0;
}

.h5-wrapper {
    justify-content: flex-start;
}

.top-panel-label {
    font-weight: 600;
    font-size: 14px;
    color: #191B1C;
}

.top-panel-box-cmn-br {
    font-weight: 600;
    font-size: 14px;
    border: 0;
    color: #191B1C;
}

.filterText {
    color: #191B1C;
}

.radio-surface-pattern p {
    color: #191B1C;
}

#topPanelSearchResult {
    font-family: "Jost", sans-serif;
    font-size: 14px;
}

.panel_list li {
    width: 33%;
}

.panel_list .top-panel-content-tiles-list-item:hover {
    border: 1px solid #F7F6F5A1;
}

.panel_list .tile-list-text p {
    font-size: 11px;
    color: #191B1C;
}

.radio-surface-rotation label {
    font-size: 14px;
    color: #191B1C;
}

.radio-surface-rotation input[type=radio]:checked+label {
    text-decoration: none;
}

.top-panel-btn-filter i {
    color: #6C6C6C;
}

.top-panel-btn-filter {
    border-radius: 7px;
    border: 1px solid #E6E6E6;
    background: #F7F6F5;
}

.top-panel-button:hover i {
    color: #FFFFFF;
}

.panel-title-style {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
}

.withoutThemePanelWrapper {
    border-top: 1px solid #E5EBEEE3;
    margin-top: 1rem;
}

.top-panel-content-tiles-list-item.selected {
    border: 0;
}

.top-panel-content-tiles-list-item.selected .tile-list-thumbnail-image-holder {
    border: 2px solid #da2d2d;
}

.panel_list li {
    border: 0;
}

.panel_list .tile-list-thumbnail-image-holder {
    border: 1px solid #FFFFFF;
}

.panel_list .top-panel-content-tiles-list-item:hover {
    border: 0;
}

.panel_list .top-panel-content-tiles-list-item:hover .tile-list-thumbnail-image-holder {
    border: 1px solid #da2d2d;
}

.filter-item-checkbox input[type=checkbox]:checked:after {
    background-color: #191B1C;
}

.filter-click-active {
    color: #191B1C;
}

.filter-item-checkbox label {
    font-size: 12px;
    color: #191B1C;
}

#topPanelSearchResult {
    color: #191B1C;
}

.radio-surface-pattern .pattern-image-icon {
    border: 1px solid #F7F6F5;
}

.radio-surface-pattern input[type=radio]:checked+label {
    border: 0;
}

.radio-surface-pattern input[type=radio]:checked+label img {
    border: 2px solid #da2e2e;
}

.radio-surface-pattern label:hover {
    border: 0;
}

.radio-surface-pattern label:hover img {
    border: 2px solid #da2e2e;
}

#grout-predefined-color button {
    border: 1px solid #FFFFFF;
    margin: 5px;
}

#grout-color-picker {
    height: 50px;
    border-radius: 30px;
}

.range-wrapper {
    position: relative;
    width: 260px;
    padding: 10px;
    background: #bfbfbf;
    border-radius: 6px;
}

input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    height: 5px;
    background: #f2f2f2;
    border-radius: 20px;
    outline: none;
}

/* Track */
input[type=range]::-webkit-slider-runnable-track {
    height: 5px;
    background: #f2f2f2;
    border-radius: 20px;
}

/* Thumb */
input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 15px;
    background: #bfbfbf;
    border-radius: 6px;
    border: 2px solid #a9a9a9;
    cursor: pointer;
    margin-top: -6px;
}

/* Firefox Track */
input[type=range]::-moz-range-track {
    height: 8px;
    background: #f2f2f2;
    border-radius: 20px;
}

/* Firefox Thumb */
input[type=range]::-moz-range-thumb {
    width: 28px;
    height: 20px;
    background: #bfbfbf;
    border-radius: 6px;
    border: 2px solid #a9a9a9;
    cursor: pointer;
}

#selected_panel_theme {
    border-top: 1px solid #E5EBEEE3;
}

#selected_panel_theme .active_theme {
    border: 2px solid #ce1f22 !important;
}

#selected_panel_theme #topPanelThemeListBox {
    margin-top: 2rem;
}

/* #selected_panel_theme  */
#selected_panel_theme .panel_list li {
    width: 100%;
    flex-wrap: nowrap;
    align-items: center;
}
.panel_list li{
    justify-content: left;
}

#selected_panel_theme .panel_list .tile-list-thumbnail-image-holder {
    width: 84px !important;
    border: 0;
}

#selected_panel_theme .panel_list .tile-list-thumbnail-image-holder img {
    width: auto;
    height: auto;
    border-radius: 15px;
    border: 0;
}
.panel_list .tile-list-thumbnail-image-holder img{
    border: 0;
}

#selected_panel_theme .panel_list .top-panel-content-tiles-list-item {
    padding: 6px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    color: #555;
    position: relative;
    background: #F7F6F573;
    border: 2px solid #FFFEFD;
}

#selected_panel_theme .panel_list .top-panel-content-tiles-list-item .tile-list-text .-caption {
    border-bottom: none;
    font-size: 15px !important;
    margin-bottom: 0px;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 700;
    text-transform: capitalize;
}

.top-panel-content-tiles-list-item-product {
    border: 0;
}

.top-panel-content-tiles-list-item {
    background-color: transparent;
}

.top-panel-content-tiles-list-item-product .tile-list-text,
.top-panel-content-tiles-list-item-product .tile-list-text p {
    color: #191B1C;
    margin-top: 0.5rem;
}

.top-panel-content-tiles-list-item-product .cart-summary-link {
    font-size: 14px;
    color: #191B1C;
}

.product-top-panel-box .loadCartItems {
    height: calc(100vh - 300px);
    scrollbar-width: none;
    border-top: 1px solid #E5EBEEE3;
}

.total-product-title {
    color: #FFFFFF !important;
    font-size: 16px;
    font-weight: 500;
}

.customise-other-spaces {
    font-family: Albert Sans;
    background-color: #F6F7F8 !important;
    border-color: #ECEEF1 !important;
    color: #191B1C !important;
    font-size: 14px;
    border-radius: 50px;
}

.review-get-quote {
    font-family: Albert Sans;
    font-size: 14px;
    border-radius: 50px;
    background-color: #191B1C !important;
    border-color: #191B1C !important;
    color: #F7F6F5 !important;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

/* PDF SUMMARY STYLES  */

.pdf-body {
    background-color: #F7F6F5;
}

.pdf-summary-container p {
    margin: 0 0 1px !important;
}

.product-title {
    margin-bottom: 5px;
    font-family: Barlow;
    font-weight: 700;
    font-size: 40px;
    text-align: left;
    color: #191B1C;
}

.form-title {
    margin-bottom: 5px;
    margin-top: 1rem;
    font-family: Barlow;
    font-weight: 700;
    font-size: 30px;
    text-align: left;
    color: #191B1C;
}

.text {
    font-family: Barlow;
    font-weight: 500;
    font-size: 18px;
    text-align: left;
    color: #191B1C;
    line-height: 100%;


}

.sub-text {
    font-family: Albert Sans;
    font-weight: 500;
    font-size: 16px;
    color: #6C6C6C;
    line-height: 100%;
}

.right-panel {
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 20px;
    margin-top: 45px;
}

#fill_basic_form {
    margin: 2rem 0;
}

.right-panel label {
    font-family: Albert Sans;
    font-weight: 500;
    font-size: 14px;
    color: #6C6C6C;
}

.right-panel .form-control {
    background-color: #F7F6F5 !important;
    border-radius: 50px;
    padding: 2rem;
}

.right-panel textarea.form-control {
    border-radius: 10px !important;
}

.form-control:focus {
    font-family: Albert Sans;
    font-weight: 400;
    font-size: 14px;
    color: #6C6C6C;
}

.right-panel .form-control::placeholder {
    font-family: Albert Sans;
    font-weight: 400;
    font-size: 14px;
    color: #6C6C6C;
}

.right-panel .whatsapp_button,
.right-panel .download-btn,
.right-panel .whatsapp_button:disabled,
.right-panel .download-btn:disabled {
    font-family: Albert Sans;
    background-color: #F6F7F8;
    border: 1px solid #ECEEF1;
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    color: #191B1C !important;
    border-radius: 20px;
    padding: 1rem;
}

.footer-btn {
    display: flex;
    gap: 10px;
}

.title-small {
    font-family: Barlow;
    font-weight: 700;
    font-style: Bold;
    font-size: 22px;
    line-height: 100%;
    margin-top: 2rem;
}

.text-small {
    font-family: Albert Sans;
    font-weight: 300;
    font-size: 16px;
    line-height: 100%;
    color: #191B1C;
}

/* Table */
.summary-wrapper {
    background: #f5f5f5;
    border-radius: 20px;
}

.summary-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.summary-table thead {
    background: #e7e7e7;
}

.summary-table th {
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-align: left;
}

.summary-table td {
    padding: 18px 14px;
    border-bottom: 1px solid #e5e5e5;
    font-size: 14px;
    color: #555;
}

.summary-table tr:last-child td {
    border-bottom: none;
}

.text-center {
    text-align: center;
}

.tile-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tile-img {
    width: 55px;
    height: 55px;
    border-radius: 8px;
    object-fit: cover;
}

.tile-title {
    font-weight: 600;
    font-size: 14px;
    color: #444;
}

.tile-sub {
    font-size: 13px;
    color: #777;
    line-height: 18px;
}

.tile-calculator {
    color: #2f80ed;
    font-size: 13px;
    text-decoration: none;
}

.tile-calculator:hover {
    text-decoration: underline;
}

.summary-footer {
    background: #efefef;
}

.tax-text {
    font-size: 12px;
    color: #777;
    text-align: right;
}

.total-amount {
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.table-active,
.table-active>th,
.table-active>td {
    background-color: #E6E6E6 !important;
}

.mobile-header {
    display: none;
}

.selection-title {
    font-family: Barlow;
    font-weight: 700;
    font-size: 30px;
    line-height: 100%;
    margin-top: 4rem;
}

.show_main_image_wrapper {
    margin-top: 2rem;
}

.details-card {
    border: none;
    border-radius: 20px;
    padding: 5px;
    background-color: #FFFFFF;
    padding: 1rem;
    width: 90%;
    margin: 2rem 0 1rem 0;
}

.details-card p {
    font-size: 14px;
}

.product-details-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-details-info .cap-text {
    font-family: Albert Sans;
    font-size: 16px;
    color: #6C6C6C;
}

.tiles-tag {
    font-family: Barlow;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    color: #6C6C6C;
}

.desktopShow {
    display: block !important;
}

.mobileShow {
    display: none !important;
}

#topPanelTilesListBox {
    height: 50vh;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 916px) {

    .desktopShow {
        display: none !important;
    }

    .mobileShow {
        display: block !important;
    }

    .Heading {
        margin-top: 1rem;
    }

    .pincode-overlay {
        padding: 2rem;
        height: 100vh;
        overflow: hidden;
    }

    .pincode-container {
        grid-template-columns: 1fr;
        height: auto;
    }

    .space-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    /* Base card */
    .space-card {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        height: 180px;
    }

    /* Image */
    .space-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Overlay */
    .space-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 12px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
        color: #fff;
    }

    /* 🔥 DIFFERENT SIZES */
    .space-card.large {
        grid-row: span 2;
        height: 370px;
    }

    .space-card.wide {
        grid-column: span 2;
        height: 180px;
    }

    /* Small cards */
    .space-card.small {
        height: 180px;
    }

    /* Remove hover zoom */
    .space-card:hover {
        transform: none;
    }

    .space-overlay .arrow {
        top: 18px;
    }


    h1 {
        font-size: 36px;
    }

    .room-image {
        height: 160px;
    }

    .pincode-right {
        padding: 40px 0px;
    }

    .brand-logo {
        width: 150px;
    }

    .pincode-right h1 {
        font-size: 26px;
    }

    .pincode-right h1 {
        margin-top: 1rem;
    }

    .pincode-right p {
        margin-bottom: 1rem;
    }

    .input-group {
        /* display: flex;
        flex-direction: column;
        gap: 14px; */
        position: relative;
    }

    #pin_code {
        padding-right: 20px;
    }

    /* #pincode_submit_btn {
        position: static;
        transform: none;
        height: 50px;
    } */

    .panel_list {
        display: flex;
        flex-direction: row;
        overflow-y: auto;
        max-height: 70vh;
        flex-wrap: nowrap;
    }

    .panel_list {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    #selected_panel_theme .panel_list {
        flex-wrap: wrap;
    }

    .top-panel-box-overflow-y,
    .product-top-panel-box .loadCartItems {
        max-height: 250px !important;
    }

    .top-panel {
        border-radius: 30px 30px 0 0;
        right: 0 !important;
    }

    .cmn-room-btn.cn-btn {
        background: #000;
        border-radius: 30px;
        bottom: 30%;
    }

    #topPanelmainpanel {
        top: 90%;
        left: 50%;
        transform: translateX(-50%);
        color: #000;
    }

    #topPanelmainpanel i {
        transform: rotate(90deg);
    }

    #selectd-data,
    #slected-panel,
    #room-cart-list {
        max-height: 365px !important;
    }

    .back-main-btn,
    .back-main-btn {
        top: 60px;
        left: 15px;
    }

    .back-main-btn,
    .step-text-btn {
        top: 60px;
        right: 15px;
    }

    .share-btn-img {
        display: none;
    }

    .top-panel-product {
        background-color: #ffffff !important;
        backdrop-filter: none;
    }

    .slected_tile {
        background: #f7f6f5f5;
        border: 2px solid #FFFEFD;
    }

    .panel-title-style {
        color: #000;
    }

    .step-text {
        font-size: 14px;
    }

    .mobile-logo {
        text-align: center;
        background: #FFF;
        padding: 0.7rem;
        border-radius: 20px;
        margin-bottom: 12px;
    }

    .mobile-header-step {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #E5EBEE;
        padding-bottom: 1.5rem;
        padding-top: 1rem;
    }

    .dekstop-header {
        display: none !important;
    }

    .mobile-header {
        display: block !important;
    }

    .total-product-title {
        color: #000000 !important;
        text-align: left;
    }

    .canvas-fullscreen>canvas {
        position: unset;
        /* top: 0px; */
    }

    .pincode-left img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        border-radius: 30px;
    }
}

/* RESPONSIVE TABLET */
@media (min-width: 768px) and (max-width: 1024px) {

    .space-container {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 220px;
    }


    .pincode-overlay {
        padding: 2rem;
    }

    .pincode-container {
        grid-template-columns: 1fr;
        height: auto;
    }

    /* .pincode-left {
        display: none;
    } */

    .pincode-right {
        padding: 60px;
    }

    .pincode-right h1 {
        font-size: 34px;
    }
}

@media (min-width: 1025px) and (max-width: 1600px) {

    #topPanelTilesListBox {
        height: 44vh;
    }

    .slected_tile .tile-list-thumbnail-image-holder img {
        height: 59px;
        width: 59px;
    }

    .slected_tile .-caption {
        font-size: 14px !important;
    }

    .panel-title-style {
        font-size: 14px;
    }

    .selcte-data-btn {
        width: 20px;
        height: 20px;
    }

    .top-panel-box-cmn-br {
        padding: 10px 0px;
    }

    .top-panel-button {
        font-size: 12px;
    }

    #topPanelSearchResult {
        font-size: 12px;
    }

    .top-panel-box-cmn-br {
        font-size: 12px;
    }

    .tile-list-text{
        padding: 0 2px;
    }
    .panel_list .tile-list-text .-caption {
        margin-top: 5px !important;
        font-size: 11px !important;
    }

    .panel_list .tile-list-text .-caption{
        padding-bottom: 0;
    }
    .panel_list .tile-list-thumbnail-image-holder img {
        height: 80px;
        width: 80px;
    }

    .panel_list .tile-list-text p{
        font-size: 10px;
    }

    .top-panel-label {
        font-size: 12px;
    }

    .step-text {
        font-size: 14px;
    }

    .back-link {
        font-size: 14px;
    }

    #topPanelmainpanel {
        height: 48px;
        width: 48px;
    }

    .cmn-room-btn.cn-btn {
        padding: 1.2rem 2.1rem;
    }

    .cmn-room-btn .span-icon {
        width: 16px;
        height: 16px;
    }

    .top-panel-product {
        width: 370px;
    }

    .room-size {
        padding: 1.5rem 3rem;
    }

    .brand-logo {
        width: 130px;
    }

    .review-get-quote,
    .dropdown-btn {
        font-size: 13px !important;
    }

    .space-card {
        height: 240px;
    }

    .dropdown,
    .review-get-quote {
        font-size: 13px;
    }

}

@media (max-width: 375px) {


    .pincode-right {
        padding: 20px 0px;
    }

    .pincode-left img {
        height: 295px;
    }
}

/* START POSITION (HIDDEN) */
.top-slide-modal .modal-dialog {
    transform: translateY(-100px);
    transition: all 0.4s ease;
    opacity: 0;
}

/* WHEN MODAL SHOWS */
.top-slide-modal.show .modal-dialog {
    transform: translateY(0);
    opacity: 1;
}

/* OPTIONAL: CENTER MODAL */
.top-slide-modal .modal-dialog {
    margin-top: 50px;
}

.room-canvas-container {
    position: relative;
}

/* Surface Controls */
.surface-select {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 999;
}


/* DOT WRAPPER */
.dot-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* OUTER RING */
.dot-outer {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #363636;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* INNER CIRCLE */
.dot-inner {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
}

/* LABEL */
.label {
    padding: 6px 14px;
    backdrop-filter: blur(60px);
    color: #FFF;
    border-radius: 25px;
    font-size: 14px;
    text-align: center;
    opacity: 0;
    transform: scale(0.8);
    transition: 0.3s;
    border: 1px solid #363636;
}

/* HOVER */
.surface-select:hover .label {
    opacity: 1;
    transform: scale(2);
}

/* ACTIVE */
.surface-select.active .label {
    opacity: 1;
    background: rgb(244 244 244 / 58%);
}

/* ACTIVE DOT EFFECT */
.surface-select.active .dot-outer {
    border-color: #fff;
    transform: scale(1.1);
}

/*  */


.tool {
    position: relative;
    display: inline-block;
}

/* Tooltip bubble */
.custom-tooltip {
    position: absolute;
    left: 55px;
    top: 28%;
    transform: translateY(-50%);
    background: #D9D9D9;
    color: #6C6C6C;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    width: 260px;
    padding: 14px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    font-family: Albert Sans;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    text-align: left;
}

.custom-tooltip-btn {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #D9D9D9;
    color: #6C6C6C;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
    width: 260px;
    padding: 14px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    font-family: Albert Sans;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    text-align: left;
}

.custom-tooltip::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid #D9D9D9;
}

.custom-tooltip-btn::after {
    content: "";
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #D9D9D9;
}

.tool.show-tooltip .custom-tooltip,
.tool.show-tooltip .custom-tooltip-btn {
    opacity: 1;
}

.surface-select,
.tool,
#container {
    overflow: visible;
}

.surface-select {
    position: relative;
}


.custom-model-content {
    background: #FFF;
    border-radius: 30px;
    padding: 4rem;
}

.custom-model-content .modal-header {
    padding: 0 0 1rem 0;
    margin-bottom: 1rem;
}

#tilecal .modal-header::before,
#tilecal .modal-header::after {
    content: none !important;
    display: none !important;
}

.custom-model-header-second {
    padding: 2rem 0 1rem 0;
    border-bottom: 1px solid #E6E6E6;
}

.custom-model-header-second h2 {
    font-family: Barlow;
    font-weight: 700;
    font-style: Bold;
    font-size: 22px;
    line-height: 100%;
    color: #191B1C;
    margin-bottom: 10px;
}

.custom-model-header-second p {
    font-family: Albert Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    line-height: 100%;
    color: #6C6C6C;
}

.custom-model-content .modal-body {
    margin-top: 2rem;
    padding: 0;
}

.custom-model-content form label {
    font-family: Albert Sans;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 16px;
    line-height: 100%;
    color: #6C6C6C;
}


.custom-model-content form .form-control {
    background: #F6F7F8 !important;
    border-radius: 10px !important;
    border: 1px solid #ECEEF1;
    padding: 18px;
    color: #6C6C6C;
    margin-top: 10px !important;
    font-family: Albert Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
}

.custom-model-content form .input-group>.form-control:focus,
.input-group>.form-select:focus {
    border-color: #191B1C !important;
}

.custom-model-content form .form-control::placeholder {
    font-family: Albert Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    text-transform: capitalize;
    color: #6C6C6C;
}


.calculate-btn {
    border-radius: 50px;
    border: 2px solid #191B1C;
    padding: 1.5rem;
    background: #000000;
    color: #F7F6F5;
    font-family: Albert Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 1rem;
}

.calculate-btn:hover {
    color: #F7F6F5;
}

.calculate-btn i {
    color: #FFA500;
}

.reset-btn {
    border-radius: 50px;
    border: 2px solid #E6E6E6;
    padding: 1.5rem;
    background: #F6F7F8;
    color: #191B1C;
    font-family: Albert Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 1rem;
}

.tiles-result {
    margin-top: 2rem;
}

.tiles-result h3 {
    font-family: Barlow;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    color: #191B1C;
}

.result-main {
    display: flex;
    flex-wrap: wrap;
}

.tiles-result .form-label {
    font-family: Albert Sans;
    font-weight: 300;
    font-size: 18px;
    line-height: 100%;
    margin-right: 1rem;
}

.custom-close {
    background-color: #eee;
    border-radius: 50%;
    padding: 1.5rem !important;
}

.send-btn {
    border-radius: 50px;
    border: 2px solid #191B1C;
    padding: 1.5rem;
    background: #000000;
    color: #F7F6F5;
    font-family: Albert Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.send-btn:hover {
    color: #F7F6F5;
}

.tiles-title {
    margin: 1rem 0 1rem 0;
}

.tiles-title h3 {
    font-family: Barlow;
    font-weight: 700;
    font-size: 30px;
    line-height: 42px;
    letter-spacing: 0%;
    color: #191B1C;
}

.tiles-title p {
    font-family: Albert Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #6C6C6C;
}