.location_names {
    background: #ffffff;
    padding: 15px;
    border-radius: 8px;
	margin-bottom: 15px;
	border: 1px solid rgb(237, 237, 237);
}

.location_names h4 {
    font-size: 16px;
    margin: 0 0 7px 0;
    color: #333;
    font-weight: 600;
    cursor: pointer;
}
.location_names h4 span {
    font-size: 14px;
    font-weight: 400;
    color: #777;
    display: block;
    margin: 5px 0 0 0;
	position:relative;
}
.location_names h4 span svg {
    position: absolute;
    top: -2px;
}


.location_names h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #000;
}
.location_names h6 {
    font-size: 13px;
    color: #777777;
    font-weight: 500;
    margin: 0 0 0 0;
    display: flex;
    align-items: center;
}
.location_names h6 span {
    background: #0f6e56;
    width: 18px;
    display: inline-block;
    height: 18px;
    color: #fff;
    text-align: center;
    line-height: 19px;
    font-size: 11px;
    border-radius: 10px;
    margin: -1px 5px 0 0;
}

.new_custom_items {
    border-radius: 8px;
	background:#ffffff;
	margin-bottom: 10px;
	border: 1px solid rgb(237, 237, 237);
}

.mybooking_main {
    padding: 20px 0 40px 0;
    background: #ffffff;
}

.myOrders_head {
    width: 500px;
    margin: 0 auto;
    height: 98vh;
    overflow-x: hidden;
    overflow-y: auto;
	-ms-overflow-style: none;
    scrollbar-width: none;
}
.booking_names {
    font-size: 20px;
    margin: 15px 0 14px 0;
    font-weight: 600;
    color: #333;
}
.myOrders_listing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding: 0 0 0px 0;
    border-radius: 15px;
    min-height: 151px;
    background: #fff;
    border: solid 1px #D6EDE7;
}

.order_left_one {
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}

.order_left_one h5 {
    font-size: 13px;
    margin: 0 0 0px 0;
    font-weight: 500;
    color: #5e6175;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order_left_one h3 {
    background: #e1f5ee;
    color: #0f6e56;
    font-weight: 500;
    padding: 3px 10px 3px 10px;
    border-radius: 14px;
    font-size: 12px;
    display: inline-block;
    margin: 0;
    width: 82px;
    text-align: center;
}

.order_left_one h4 {
    font-size: 16px;
    margin: 0 0 0px 0;
    font-weight: 600;
    color: #333;
    line-height: 20px;
}
.order_left_one h6 {
    font-size: 14px;
    margin: 0 0 0px 0;
    font-weight: 600;
    color: #0f6e56;
}
.order_left_one p {
    font-size: 13px;
    margin: 0 0 0px 0;
    font-weight: 500;
    color: #5e6175;
}

.mb-card-arrow {
    display: flex;
    align-items: center;
    padding: 5px 5px 5px 5px;
    color: #0f6e56;
    flex-shrink: 0;
    transition: color 0.18s;
    border-radius: 27px;
}
.mb-card-arrow svg {
    width: 18px;
    height: 18px;
}

.order_right_two {
    width: 30%;
    margin: 0 20px 0 0;
    height: 155px;
    overflow: hidden;
}
.order_right_two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px 0 0 15px;
}
.order_right_two a {
    background: #27b45c;
    text-align: center;
    display: block;
    margin: 12px 0 0 0;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    padding: 6px 0 7px 0;
    border-radius: 19px;
    position: relative;
}

.request_left {
    background: #fff;
    padding: 0px;
    border-radius: 10px;
    margin-bottom: 10px;
    border: solid 1px #ebebeb;
}


/** CONFIRM BOOKING OLD CSS **/

.confirmbooking_main * {
    box-sizing: border-box;
}

.confirmbooking_main {
    background: #f4faf8;
    min-height: 100vh;
    padding: 40px 0 60px;
}

/* ── SUCCESS HERO CARD ── */
.cb-hero-card {
    background: #fff;
    border: 1px solid #d6ede7;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 20px;
    animation: cbSlideUp 0.5s ease both;
}

@keyframes cbSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cb-banner {
    background: #0f6e56;
    padding: 28px 28px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cb-banner::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    pointer-events: none;
}
.cb-banner::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    pointer-events: none;
}

.cb-check-ring {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cbPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
    position: relative;
    z-index: 1;
}
@keyframes cbPop {
    from {
        opacity: 0;
        transform: scale(0.3);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.cb-check-inner {
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cb-check-inner svg {
    width: 22px;
    height: 22px;
}

.cb-banner h1 {
    font-size: 25px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0;
    position: relative;
    z-index: 1;
}
.cb-banner p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}
.cb-order-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.04em;
    position: relative;
    z-index: 1;
}
.cb-order-badge small {
    opacity: 0.6;
    font-weight: 400;
    font-size: 11px;
}

/* ── BOOKING DETAILS ── */
.cb-details-body {
    padding: 28px 28px 8px;
}

.cb-section-eyebrow {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7a9490;
    margin-bottom: 18px;
}

.cb-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px dashed #d6ede7;
    animation: cbFadeIn 0.4s ease both;
}
.cb-row:last-child {
    border-bottom: none;
}

@keyframes cbFadeIn {
    from {
        opacity: 0;
        transform: translateX(-6px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
.cb-row:nth-child(1) {
    animation-delay: 0.25s;
}
.cb-row:nth-child(2) {
    animation-delay: 0.32s;
}
.cb-row:nth-child(3) {
    animation-delay: 0.38s;
}
.cb-row:nth-child(4) {
    animation-delay: 0.44s;
}
.cb-row:nth-child(5) {
    animation-delay: 0.5s;
}
.cb-row:nth-child(6) {
    animation-delay: 0.56s;
}

.cb-row-icon {
    width: 36px;
    height: 36px;
    background: #f0faf6;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.cb-row-icon svg {
    width: 15px;
    height: 15px;
    color: #0f6e56;
}

.cb-row-label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #7a9490;
    margin-bottom: 3px;
}
.cb-row-val {
    font-size: 14px;
    font-weight: 500;
    color: #0e1c18;
    line-height: 1.45;
}
.cb-row-val.cb-green {
    color: #0f6e56;
    font-weight: 700;
}

.cb-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.cb-pill-confirmed {
    background: #e1f5ee;
    color: #0f6e56;
}
.cb-pill-pending {
    background: #fff8e7;
    color: #854f0b;
}

/* ── NOTE STRIP ── */
.cb-note {
    margin: 4px 28px 24px;
    background: #f0faf6;
    border: 1px solid #d6ede7;
    border-radius: 12px;
    padding: 11px 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 12.5px;
    color: #3a4d46;
    line-height: 1.55;
}
.cb-note svg {
    width: 15px;
    height: 15px;
    color: #0f6e56;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── RIGHT COLUMN ── */

/* Payment card */
.cb-pay-card {
    background: #fff;
    border: 1px solid #d6ede7;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    animation: cbSlideUp 0.5s ease 0.15s both;
}
.cb-pay-header {
    background: #25333a;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cb-pay-header h3 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
}
.cb-pay-tag {
    font-size: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.75);
    padding: 3px 10px;
    border-radius: 20px;
}
.cb-pay-body {
    padding: 18px 20px;
}

.cb-pay-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    font-size: 13.5px;
    border-bottom: 1px solid #eef7f3;
}
.cb-pay-row:last-of-type {
    border-bottom: none;
}
.cb-pay-row .lbl {
    color: #7a9490;
}
.cb-pay-row .val {
    font-weight: 500;
    color: #0e1c18;
}
.cb-pay-row .val del {
    color: #c0392b;
    font-weight: 400;
    font-size: 12.5px;
}

.cb-pay-total {
    margin-top: 12px;
    background: #f0faf6;
    border: 1px solid #d6ede7;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cb-pay-total .lbl {
    font-size: 13px;
    font-weight: 600;
    color: #0e1c18;
}
.cb-pay-total .amount {
    font-size: 24px;
    font-weight: 700;
    color: #0f6e56;
    letter-spacing: -0.02em;
}

.cb-savings {
    margin-top: 10px;
    text-align: center;
    font-size: 12px;
    color: #0f6e56;
    font-weight: 600;
}
.cb-savings span {
    background: #e1f5ee;
    padding: 4px 12px;
    border-radius: 20px;
}

/* App card */
.cb-app-card {
    background: #25333a;
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    animation: cbSlideUp 0.5s ease 0.25s both;
}
.cb-app-card::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgb(255 255 255 / 15%);
    pointer-events: none;
}
.cb-app-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}
.cb-app-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 14px;
    line-height: 1.5;
}
.cb-app-btns {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.cb-app-btn {
    flex: 1;
    min-width: 120px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: background 0.2s;
}
.cb-app-btn:hover {
    background: rgba(255, 255, 255, 0.14);
}
.cb-app-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.cb-app-btn .t1 {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
}
.cb-app-btn .t2 {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

/* Action buttons */
.cb-btn-primary {
    display: block;
    width: 100%;
    padding: 13px;
    margin-bottom: 10px;
    background: #0f6e56;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none !important;
    transition:
        background 0.18s,
        transform 0.15s;
}
.cb-btn-primary:hover {
    background: #085041;
    transform: translateY(-1px);
    color: #fff;
}

.cb-btn-secondary {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #3a4d46;
    border: 1px solid #d6ede7;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: background 0.18s;
}
.cb-btn-secondary:hover {
    background: #fff;
    color: #0e1c18;
}

/* Confetti */
.cb-confetti-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 9999;
    height: 0;
}
.cb-piece {
    position: absolute;
    border-radius: 2px;
    opacity: 0;
    animation: cbFall 1.6s ease-in forwards;
}
@keyframes cbFall {
    0% {
        opacity: 1;
        transform: translateY(-10px) rotate(0deg);
    }
    100% {
        opacity: 0;
        transform: translateY(100vh) rotate(720deg);
    }
}


/** CONFIRM BOOKING OLD CSS **/

.taxes-and-fee{}
.fee-content-bg{ background: #fff; border-radius: 15px}

.taxes-levied h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 25px 0 15px 0;
    color: #000;
}
.taxes-levied p {
    font-size: 14px;
    font-weight: 300;
    color: #3c3c3c;
    line-height: 20px;
    margin: 0 0 30px 0;
}
.taxes-levied h6 {
    background: #0f6e56;
    text-align: center;
    font-size: 16px;
    height: 45px;
    line-height: 43px;
    border-radius: 6px;
    cursor: pointer;
    color: #fff;
    margin: 0 0 0 0;
}
.changeclose_btn {
    display: inline-block;
    line-height: 26px;
    background: #ffffff;
    color: #0a0a0a;
    border-radius: 27px;
    cursor: pointer;
    float: right;
    width: 30px;
    height: 30px;
    text-align: center;
    position: absolute;
    right: 0;
    top: -35px;
    z-index: 1;
    padding: 5px 0 5px 0;
}


.cancellation-content {
    background: #fff;
	border-radius: 15px
}
.policy-levie h6 {
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 15px 0;
    font-weight: 600;
}
.policy-levie h5 {
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 15px 0;
    font-weight: 400;
    border-bottom: dashed 1px #ddd;
    padding: 0 0 15px 0px;
}
.policy-levie h4 {
    font-size: 14px;
    margin: 0 0 25px 0;
    font-weight: 400;
    background: #f3fff4;
    padding: 10px 10px 10px 10px;
    color: #181818;
    border: solid 1px #6acf8f42;
    border-radius: 7px;
}
.policy-levie h4 img {
    width: 16px;
    margin: -4px 2px 0 0;
}

.policy-levie h3 {
    font-size: 20px;
    margin: 0 0 10px 0;
    font-weight: 600;
}
.policy-levie p {
    font-size: 14px;
    font-weight: 400;
    color: #3c3c3c;
    line-height: 20px;
    margin: 0 0 20px 0;
}
.policy-levie a {
    background: #0f6e56;
    text-align: center;
    font-size: 16px;
    height: 45px;
    line-height: 43px;
    border-radius: 6px;
    cursor: pointer;
    color: #ffffff;
    margin: 0 0 0 0;
    display: block;
    text-decoration: none;
}

/** CONFIRM BOOKING LOADER **/

.spinner {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	position: fixed;
	width: 100%;
	background: rgba(0,0,0,0.8);
	z-index: 999;
	top:0;
	left:0;
}

.loader-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 44px 35px 40px;
    text-align: center;
    width: 320px;
}

.house-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    position: relative;
}

.ripple-wrap {
    position: relative;
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    border: 2px solid #0f6e56;
    animation: rippleOut 1.8s ease-out infinite;
    opacity: 0;
}

.ripple:nth-child(1) {
    width: 72px;
    height: 72px;
    animation-delay: 0s;
}
.ripple:nth-child(2) {
    width: 54px;
    height: 54px;
    animation-delay: 0.3s;
}
.ripple:nth-child(3) {
    width: 36px;
    height: 36px;
    animation-delay: 0.6s;
}

@keyframes rippleOut {
    0% {
        transform: scale(0.4);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.center-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0f6e56;
    position: relative;
    z-index: 2;
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

.loader-title {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 6px;
}

.loader-sub {
    font-size: 13px;
    color: #888;
    margin-bottom: 24px;
    line-height: 1.5;
}

.progress-bar-wrap {
    background: #e1f5ee;
    border-radius: 8px;
    height: 6px;
    overflow: hidden;
    margin-bottom: 16px;
}

.progress-bar-fill {
    height: 100%;
    border-radius: 8px;
    background: #0f6e56;
    animation: progressFlow 2s ease-in-out infinite;
    width: 0%;
}

@keyframes progressFlow {
    0% {
        width: 0%;
        margin-left: 0;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

.steps {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.step-pill {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.step-pill.done {
    background: #e1f5ee;
    color: #0f6e56;
}
.step-pill.active {
    background: #0f6e56;
    color: #fff;
    animation: stepPulse 1s ease infinite;
}
.step-pill.pending {
    background: #f5f5f5;
    color: #aaa;
}

@keyframes stepPulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.step-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.done .step-dot {
    background: #0f6e56;
}
.active .step-dot {
    background: #fff;
}
.pending .step-dot {
    background: #ccc;
}

.warning-strip {
    margin-top: 18px;
    background: #fff8e7;
    border: 1px solid #fac775;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11.5px;
    color: #854f0b;
}

.warn-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    fill: #854f0b;
}



/* Mobile (up to 767px) */
@media (max-width: 767px) {
	
.location_names{ padding: 12px 10px; margin-bottom: 10px;}
.location_names h4{ font-size: 14px; margin: 0 0 10px 0; border-bottom: dashed 1px #ddd; padding: 0 0 10px 0;}
.location_names h4 span{ font-size: 13px; }
.location_names h3{ font-size: 14px; margin: 0 0 5px 0;}
.new_custom_items{ margin-bottom: 10px;}
.mybooking_main{ padding: 15px 0 15px 0;}	
.download_app_me{ display:none;}
.myOrders_head{ width: 100%;}
.confirmbooking_main{ padding: 10px 0; }
.cb-details-body{ padding: 28px 20px 8px;}
.cb-banner{ padding: 15px 15px 20px;}
.cb-check-inner{ width: 30px; height: 30px; }
.cb-check-ring{ width: 50px; height: 50px; margin: 0 auto 12px;}
.cb-banner h1{ font-size: 18px; letter-spacing: 0;}
.cb-banner p{ font-size: 13px;}
.cb-note{ margin: 4px 20px 24px;}
.order_left_one h5{ font-size: 11px; margin: 0 0 5px 0;}
.order_left_one h4{ font-size: 14px; margin: 0 0 5px 0;}
.order_left_one h6{ font-size: 12px; margin: 0 0 6px 0;}
.order_left_one p{ font-size: 11px;}
	
}