.service-section .service-icon svg {
    width: 2em;
    height: 2em;
    display: block;
    fill: #ffffff;
    font-size: 23px;
}

.service-icon {
    background: var(--main);
    text-align: center;
    border-radius: 100%;
    display: inline-block;
    padding: 12px;
}


.service-icon .image-crop {
    display: block;
    width: 3em;
    height: 3em;
    vertical-align: middle;
    line-height: 3em;
}


.wash-stribe-payment {
    position: relative;
}

.loader {
    position: absolute;
    margin: 0 auto;
    width: 30px;
    height: 30px;
    margin-left: -15px;
    margin-top: -15px;
    opacity: 0;
    top: 50%;
    left: 50%
}

.loader:before {
    content: '';
    display: block;
    padding-top: 100%
}

.loading .loader {
    opacity: 1
}

.loader .circular {
    animation: rotatekey 2s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto
}

.loader .path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: dash 1.5s ease-in-out infinite;
    stroke: #000;
    stroke-linecap: round
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px
    }

    100% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -124px
    }
}


.wash_payment_list .box_added_content {
    display: none;
}

.show_box_added {
    cursor: pointer;
    font-weight: 500;
    text-decoration: underline;
}

/* ── Stripe return notice banner ─────────────────────────────────── */
.jws-stripe-notice {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .08);
    animation: jws-notice-in .35s ease;
    max-width: 90vw;
    margin: 0 auto 20px;
}

@keyframes jws-notice-in {
    from {
        opacity: 0;
        transform: translateY(-12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.jws-stripe-notice--success {
    background: #f0faf3;
    border: 1.5px solid #4caf7d;
    color: #1a4731;
}

.jws-stripe-notice--cancel {
    background: #fff8f0;
    border: 1.5px solid #f0a040;
    color: #5a3200;
}

.jws-stripe-notice__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-top: 2px;
}

.jws-stripe-notice--success .jws-stripe-notice__icon {
    background: #4caf7d;
    color: #fff;
}

.jws-stripe-notice--cancel .jws-stripe-notice__icon {
    background: #f0a040;
    color: #fff;
}

.jws-stripe-notice__body {
    flex: 1;
}

.jws-stripe-notice__body h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
}

.jws-stripe-notice__body p {
    margin: 0 0 10px;
    font-size: 14px;
    opacity: .85;
}

.jws-stripe-notice__details {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    font-size: 14px;
}

.jws-stripe-notice__details li {
    margin-bottom: 4px;
}

.jws-stripe-notice__btn {
    display: inline-block;
    padding: 9px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: opacity .2s;
}

.jws-stripe-notice__btn:hover {
    opacity: .85;
}

.jws-stripe-notice--success .jws-stripe-notice__btn--book {
    background: #4caf7d;
    color: #fff;
}

.jws-stripe-notice--cancel .jws-stripe-notice__btn--book {
    background: #f0a040;
    color: #fff;
}

.jws-stripe-notice__close {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    opacity: .5;
    padding: 0;
}

.jws-stripe-notice__close:hover {
    opacity: 1;
}