/* WL Health Packages — Frontend CSS */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    --wlhp-orange:  #f47920; 
    --wlhp-cream:   #f8f6f1;
    --wlhp-green:   #1a5c3a;
    --wlhp-red:     #d32f2f;
}

/* ─────────────────────────────────────────────────────────
   1. FILTER TABS (Listing Page - Sleek Blue Pill) 
───────────────────────────────────────────────────────── */
.wlhp-filter-tabs {
    background: #1d55cc !important; /* Exact requested blue */
    border-radius: 50px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 28px !important;
    margin: 0 auto 48px auto !important; 
    width: fit-content !important; 
    max-width: 100% !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -ms-overflow-style: none !important;
    scrollbar-width: none !important;
    border: none !important;
    box-shadow: none !important;
}
.wlhp-filter-tabs::-webkit-scrollbar {
    display: none !important;
}

.wlhp-tab {
    -webkit-appearance: none !important;
    appearance: none !important;
    background: transparent !important;
    color: rgba(255, 255, 255, 0.75) !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 6px 12px !important; 
    margin: 0 !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: color .2s !important;
    border-bottom: 2px solid transparent !important;
    box-shadow: none !important;
    outline: none !important;
}
.wlhp-tab:hover { color: #fff !important; }
.wlhp-tab.active {
    color: #fff !important;
    border-bottom: 2px solid #fff !important; 
    background-color: transparent !important; 
}


/* ─────────────────────────────────────────────────────────
   2. LISTING SECTIONS & HEADERS
───────────────────────────────────────────────────────── */
.wlhp-listing-section { width: 100%; margin-bottom: 64px; }
.wlhp-section-header { margin-bottom: 32px; padding-bottom: 0; border-bottom: none; text-align: left; }
.wlhp-section-header h2 { 
    font-family: "Playfair Display", "Times New Roman", serif !important; 
    font-size: 40px !important; 
    font-weight: 500 !important; 
    color: #222 !important; /* Solid black/dark grey */
    margin: 0 0 12px !important; 
    line-height: 1.2 !important; 
}
.wlhp-section-header p { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
    font-size: 15px !important; 
    color: #555 !important; 
    margin: 0 !important; 
    line-height: 1.6 !important; 
    max-width: 800px; 
}


/* ─────────────────────────────────────────────────────────
   3. CARDS GRID & CARD DESIGN (Homepage + Listing)
───────────────────────────────────────────────────────── */
.wlhp-cards-grid { 
    display: grid !important; 
    grid-template-columns: repeat(4, 1fr) !important; 
    gap: 24px !important; 
    margin: 24px 0 !important; 
    width: 100% !important;
}

.wlhp-card { 
    background: transparent !important; 
    border: none !important; 
    border-radius: 0 !important; 
    box-shadow: none !important; 
    overflow: visible !important; 
    display: flex !important; 
    flex-direction: column !important; 
    padding: 0 !important;
    transition: transform .2s !important;
}
.wlhp-card:hover { transform: translateY(-4px) !important; box-shadow: none !important; }

/* Tall Portrait Images with exact 337x475 ratio & 4 rounded corners */
.wlhp-card-img-wrap { 
    position: relative !important; 
    display: block !important; 
    overflow: hidden !important; 
    aspect-ratio: 337 / 475 !important; /* Exact dimensions provided */
    background: var(--wlhp-cream) !important; 
    border-radius: 12px !important; /* Rounds all 4 corners */
    margin-bottom: 20px !important; /* Clear gap below image */
    width: 100% !important;
}
.wlhp-card-img-wrap img { 
    width: 100% !important; 
    height: 100% !important; 
    object-fit: cover !important; 
    object-position: right bottom !important; /* Pushes the people down and right */
    display: block !important; 
    border-radius: 12px !important; 
}
.wlhp-badge { display: none !important; } /* Hidden */

/* Card Typography (Black Serif Titles) */
.wlhp-card-body { padding: 0 !important; display: flex !important; flex-direction: column !important; flex: 1 !important; }
.wlhp-card-title { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
    font-size: 19px !important; 
    font-weight: 700 !important; 
    color: #111 !important; 
    margin: 0 0 8px !important; 
    line-height: 1.3 !important; 
}
.wlhp-card-title a { color: inherit !important; text-decoration: none !important; }
.wlhp-card-desc { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
    font-size: 14px !important; 
    color: #555 !important; 
    margin: 0 0 20px !important; 
    line-height: 1.5 !important; 
    flex: 1 !important; 
}
.wlhp-card-price { display: none !important; } /* Hidden */

/* Read & Book Button */
.wlhp-btn-book { 
    display: block !important; 
    text-align: center !important; 
    border: 1px solid #222 !important; /* Black border */
    color: #222 !important; /* Black text */
    background: transparent !important; 
    padding: 12px !important; 
    border-radius: 4px !important; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
    font-size: 13px !important; 
    font-weight: 600 !important; 
    text-decoration: none !important; 
    margin-top: auto !important; 
    transition: background .15s, color .15s !important; 
}
.wlhp-btn-book:hover { background: #222 !important; color: #fff !important; }


/* ─────────────────────────────────────────────────────────
   4. DETAIL PAGE (Form & Layout)
───────────────────────────────────────────────────────── */
.wlhp-detail-wrap { max-width: 900px; margin: 40px auto; padding: 0 20px 60px; box-sizing: border-box; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif; }
.wlhp-breadcrumb { font-size: 13px; color: #777; margin-bottom: 32px; }
.wlhp-breadcrumb a { color: #444; text-decoration: none; }
.wlhp-breadcrumb a:hover { color: var(--wlhp-orange); }
.wlhp-breadcrumb span { margin: 0 8px; color: #ccc; }

.wlhp-detail-top { display: grid; grid-template-columns: 280px 1fr; gap: 0 48px; align-items: start; margin-bottom: 40px; }
.wlhp-detail-left { position: static; }
.wlhp-detail-img { width: 100%; aspect-ratio: 337 / 475; border-radius: 12px; overflow: hidden; background: #e5e5e5; }
.wlhp-detail-img img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 12px; }

.wlhp-detail-right-content { display: flex; flex-direction: column; min-width: 0; }

.wlhp-detail-badge { background: transparent; color: var(--wlhp-orange); font-size: 12px; font-weight: 700; padding: 0; text-transform: capitalize; margin-bottom: 6px; display: block; }
.wlhp-detail-title { font-family: "Playfair Display", "Times New Roman", serif !important; font-size: 36px !important; font-weight: 500 !important; color: #222 !important; margin: 0 0 16px !important; line-height: 1.15 !important; }

.wlhp-detail-pricing { display: flex; align-items: baseline; gap: 16px; margin-bottom: 4px; flex-wrap: wrap; }
.wlhp-detail-discount { background: none; color: var(--wlhp-orange); font-size: 26px; font-weight: 600; padding: 0; }
.wlhp-detail-price { font-size: 26px; font-weight: 700; color: #222; }
.wlhp-detail-price sup { font-size: 14px; top: -0.4em; }

.wlhp-detail-mrp { font-size: 13px; color: #555; margin-bottom: 4px; display: block; width: 100%; text-decoration: line-through; }
.wlhp-detail-mrp::before { content: "M.R.P.: "; text-decoration: none; display: inline-block; padding-right: 4px; }
.wlhp-incl-tax { font-size: 12px; color: #777; margin-bottom: 32px; }

/* Form Layout */
.wlhp-book-card { margin-bottom: 32px; max-width: 550px; width: 100%; background: transparent !important; border: none !important; box-shadow: none !important; padding: 0 !important; }
.wlhp-book-card-head { display: none !important; }
.wlhp-book-card-body { padding: 0 !important; width: 100% !important; }

#wlhpQuickForm { display: grid !important; grid-template-columns: 1fr 1fr !important; column-gap: 16px !important; row-gap: 22px !important; align-items: start !important; width: 100% !important; }
.wlhp-form-field { margin-bottom: 0 !important; position: relative !important; width: 100% !important; box-sizing: border-box !important; }
.wlhp-form-field label { display: none !important; }
#wlhpQuickForm > div.wlhp-form-field:nth-of-type(1) { grid-column: 1 / 3 !important; } 
#wlhpQuickForm > div.wlhp-form-field:nth-of-type(2) { grid-column: 1 / 2 !important; } 
#wlhpQuickForm > div.wlhp-form-field:nth-of-type(3) { grid-column: 2 / 3 !important; } 
#wlhpQuickForm > div.wlhp-form-field:nth-of-type(4) { grid-column: 1 / 3 !important; } 
#wlhpQuickForm > div.wlhp-form-field:nth-of-type(5) { grid-column: 1 / 2 !important; } 
#wlhpSubmit { grid-column: 2 / 3 !important; margin-top: 0 !important; }

.wlhp-form-field input, .wlhp-form-field select { width: 100% !important; height: 46px !important; padding: 0 16px !important; border: 1px solid #dcdcdc !important; border-radius: 4px !important; font-size: 14px !important; color: #222 !important; background-color: #fff !important; outline: none !important; font-family: inherit !important; -webkit-appearance: none !important; appearance: none !important; box-shadow: none !important; box-sizing: border-box !important; }
.wlhp-form-field input::placeholder { color: #888 !important; font-size: 13.5px !important; }
.wlhp-form-field input:focus, .wlhp-form-field select:focus { border-color: #888888 !important; }.wlhp-form-field input:-webkit-autofill { -webkit-box-shadow: 0 0 0 30px white inset !important; -webkit-text-fill-color: #222 !important; }
.wlhp-form-field input.err { border-color: #dcdcdc !important; background-color: #fff !important; }
.wlhp-form-field input.ok { border-color: #dcdcdc !important; }
.wlhp-form-field .err-msg {
    position: absolute !important;
    bottom: -18px !important;
    left: 0 !important;
    font-size: 11px !important;
    color: #ff0000 !important;
    display: block !important;
    width: 100%;
    white-space: nowrap;
}
.wlhp-form-field .hint { display: none !important; }
.wlhp-select-wrap { position: relative !important; width: 100% !important; }
.wlhp-select-wrap::after { content: ''; position: absolute; right: 16px; top: 50%; transform: translateY(-50%); border-left: 5px solid transparent; border-right: 5px solid transparent; border-top: 6px solid #888; pointer-events: none; }
.wlhp-select-wrap select { padding-right: 40px !important; cursor: pointer !important; text-overflow: ellipsis; white-space: nowrap; overflow: hidden; }

/* Text CAPTCHA */
/* -- Captcha Row -- */
.wlhp-captcha-row {
    display: flex !important;
    align-items: stretch !important;
    gap: 10px !important;
    height: 46px !important;
    width: 100% !important;
}
.wlhp-captcha-text {
    flex: 0 0 110px !important;
    width: 110px !important;
    height: 52px !important;
    min-height: 46px !important;
    background: #cccccc !important;
    border: none !important;
    border-radius: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    letter-spacing: 3px !important;
    color: #333 !important;
    cursor: default !important;
    user-select: none !important;
    font-family: monospace !important;
    box-sizing: border-box !important;
}
.wlhp-captcha-input-wrap {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    height: 46px !important;
    margin: 0 !important;
    display: block !important;
}
.wlhp-captcha-input-wrap input {
    width: 100% !important;
    height: 46px !important;
    padding: 0 8px !important; /* Reduced from 12px to give text more room */
    text-align: left !important;
    margin: 0 !important;
    box-sizing: border-box !important;
    font-size: 14px !important;
}
.wlhp-captcha-input-wrap input::placeholder {
    font-size: 12px !important; /* Reduced from 13px to fit perfectly */
    font-weight: 400 !important;
    color: #888 !important;
    letter-spacing: normal !important;
    text-align: left !important;
}
.wlhp-captcha-hint { display: none !important; }
/* Success Box */
.wlhp-success-box { background: #edf7f1; border: 1px solid #a8d5bc; border-radius: 8px; padding: 22px 18px; text-align: center; }
.wlhp-success-icon { width: 46px; height: 46px; background: var(--wlhp-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; font-size: 20px; color: #fff; }
.wlhp-success-box h4 { font-size: 18px; font-weight: 700; color: var(--wlhp-green); margin-bottom: 6px; }
.wlhp-success-box p { font-size: 13px; color: #555; margin-bottom: 4px; }
.wlhp-booking-id { display: inline-block; background: #222; color: #fff; font-size: 13px; font-weight: 600; letter-spacing: 1.5px; padding: 6px 16px; border-radius: 4px; margin-top: 10px; }

/* Descriptions & Tests */
.wlhp-full-desc { font-size: 14px; color: #555; line-height: 1.6; margin-top: 0; border-top: none; padding-top: 0; max-width: 550px; }
.wlhp-full-desc p { margin-bottom: 16px; }

.wlhp-tests-section { margin-top: 24px; width: 100%; max-width: none !important; }
.wlhp-test-group { margin-bottom: 24px; break-inside: avoid; }
.wlhp-test-group-name { font-size: 15px; font-weight: 700; color: #222 !important; background: none; border-left: none; padding: 0; margin-bottom: 14px; border-bottom: 1px solid #eaeaea; padding-bottom: 6px; text-transform: none; }
.wlhp-tests-list { list-style: none; padding: 0; margin: 0; display: grid !important; grid-template-columns: 1fr 1fr !important; column-gap: 32px !important; row-gap: 10px !important; }
.wlhp-tests-list li { display: flex; align-items: flex-start !important; gap: 10px; font-size: 13.5px; color: #222 !important; line-height: 1.4; margin-bottom: 0 !important; }
.wlhp-tests-list li::before { content: ''; width: 15px; height: 15px; flex-shrink: 0; background-color: #222 !important; border-radius: 50%; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 6.5l2 2 4.5-4.5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: center; background-size: 8px; margin-top: 0 !important; }


/* ─────────────────────────────────────────────────────────
   5. RELATED PACKAGES (Slider for Detail Page - STRICT FIX)
───────────────────────────────────────────────────────── */
.wlhp-related { 
    grid-column: 2 !important; 
    grid-row: 9 !important; 
    margin-top: 60px !important; 
    width: 100% !important; 
    overflow: hidden !important; 
    display: block !important;
}
.wlhp-related-title { 
    font-family: "Playfair Display", "Times New Roman", serif !important; 
    font-size: 32px !important; 
    font-weight: 500 !important; 
    color: #222 !important; 
    margin: 0 0 24px 0 !important; 
    padding: 0 !important; 
    border: none !important; 
    line-height: 1.2 !important; 
    text-align: left !important; 
}

.wlhp-related-slider { 
    display: flex !important; 
    gap: 24px !important; 
    overflow-x: auto !important; 
    scroll-snap-type: x mandatory !important; 
    padding-bottom: 16px !important; 
    width: 100% !important;
    scrollbar-width: thin; 
    scrollbar-color: #dcdcdc transparent; 
}
.wlhp-related-slider::-webkit-scrollbar { height: 6px; }
.wlhp-related-slider::-webkit-scrollbar-track { background: transparent; }
.wlhp-related-slider::-webkit-scrollbar-thumb { background: #dcdcdc; border-radius: 4px; }

.wlhp-related-card { 
    flex: 0 0 calc(50% - 12px) !important; 
    width: calc(50% - 12px) !important;
    scroll-snap-align: start !important; 
    background: transparent !important; 
    border: none !important; 
    display: flex !important; 
    flex-direction: column !important; 
    align-self: stretch !important;
}
.wlhp-related-card img { 
    width: 100% !important; 
    aspect-ratio: 337 / 475 !important; 
    object-fit: cover !important; 
    display: block !important; 
    border-radius: 12px !important; 
    margin-bottom: 16px !important; 
}

.wlhp-related-card-body { 
    padding: 0 !important; 
    display: flex !important; 
    flex-direction: column !important; 
    flex: 1 !important; 
    height: 100% !important;
}

/* Hard block against hot-pink theme titles */
.wlhp-related-card-body h4 { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important; 
    font-size: 19px !important; 
    font-weight: 700 !important; 
    color: #111 !important; 
    margin: 0 0 8px !important; 
    line-height: 1.3 !important; 
    padding: 0 !important;
    border: none !important;
}
.wlhp-related-card-body h4 a { 
    color: #222 !important; 
    text-decoration: none !important; 
}
.wlhp-related-card-body p { 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
    font-size: 13px !important; 
    color: #555 !important; 
    margin: 0 0 20px !important; 
    line-height: 1.5 !important; 
    flex: 1 !important; 
}

.wlhp-related-btn { 
    display: block !important; 
    text-align: center !important; 
    border: 1px solid #222 !important; 
    color: #222 !important; 
    background: transparent !important; 
    padding: 12px !important; 
    border-radius: 4px !important; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif !important;
    font-size: 13px !important; 
    font-weight: 600 !important; 
    text-decoration: none !important; 
    margin-top: auto !important; 
    transition: background .15s, color .15s !important; 
}
.wlhp-related-btn:hover { background: #222 !important; color: #fff !important; }




/* ─────────────────────────────────────────────────────────
   7. RESPONSIVE MEDIA QUERIES
───────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .wlhp-cards-grid { grid-template-columns: repeat(3, 1fr) !important; }
}

@media (max-width: 900px) {
    .wlhp-cards-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .wlhp-filter-tabs { border-radius: 50px !important; padding: 8px 18px !important; justify-content: flex-start !important; margin-bottom: 32px !important; flex-wrap: nowrap !important; }
    .wlhp-detail-top { grid-template-columns: 1fr; gap: 24px; }
    .wlhp-detail-img, .wlhp-detail-badge, .wlhp-detail-title, .wlhp-detail-pricing, .wlhp-detail-mrp, .wlhp-incl-tax, .wlhp-detail-right, .wlhp-full-desc, .wlhp-tests-section, .wlhp-related { grid-column: 1 !important; grid-row: auto !important; }
    .wlhp-detail-img { max-width: 320px; aspect-ratio: auto; }
}

@media (max-width: 600px) {
    .wlhp-detail-wrap { padding: 0 16px 60px; }
    .wlhp-cards-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
    .wlhp-section-header h2 { font-size: 32px !important; }
    .wlhp-detail-title { font-size: 28px !important; }
    
    #wlhpQuickForm { display: flex !important; flex-direction: column !important; gap: 20px !important; width: 100% !important; }
    .wlhp-form-field { width: 100% !important; }
    .wlhp-form-field input, .wlhp-form-field select { width: 100% !important; }
    
    .wlhp-tests-list { columns: 1 !important; }
    .wlhp-related-card { flex: 0 0 85% !important; width: 85% !important; }
    
    .care-section .cards-container { grid-template-columns: 1fr !important; }
    .care-section-title { font-size: 28px !important; margin-bottom: 24px !important; }
}

/* ── Title overlay on card image (for non-text placeholder images) ────────── */
.wlhp-card-img-wrap {
    position: relative;
}
/* ── Title overlay on card image (for non-text placeholder images) ────────── */
.wlhp-card-img-wrap {
    position: relative;
}

.wlhp-card-img-title-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    max-width: 95%; /* Keeps text from stretching all the way across */
    box-sizing: border-box;
    padding: 20px 16px; /* Tighter padding keeps the text higher up */
    background: transparent;
    color: #002f5d; 
    font-family: "Playfair Display", "Times New Roman", serif !important;
    font-size: 24px; /* Reduced from 32px so long names take up less space */
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
}

/* ── Tier badge on Premium cards (Gold / Silver / Platinum) ─────────────── */
.wlhp-tier-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    z-index: 2;
}
.wlhp-tier-badge--platinum {
    background: #1d55cc;
    color: #fff;
}
.wlhp-tier-badge--gold {
    background: #f5c842;
    color: #6b4a00;
}
.wlhp-tier-badge--silver {
    background: #d4d4d4;
    color: #3a3a3a;
}
/* ── About This Package section ── */
.wlhp-about-section {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #e8edf5;
}
.wlhp-about-content {
    font-size: 13px;
    line-height: 1.7;
    color: #444;
}
.wlhp-about-content h2 {
    font-size: 1.1em;
    color: #1b4f9b;
    margin: 18px 0 8px;
}
.wlhp-about-content h3 {
    font-size: 1em;
    color: #1b4f9b;
    margin: 14px 0 6px;
}
.wlhp-about-content p {
    margin-bottom: 14px;
}
.wlhp-about-content ul,
.wlhp-about-content ol {
    padding-left: 20px;
    margin-bottom: 14px;
}
.wlhp-about-content li {
    margin-bottom: 6px;
}
.wlhp-about-content strong {
    color: #1b4f9b;
}
/* Remove red borders on form validation errors */
input.error, 
select.error, 
input[aria-invalid="true"], 
input:invalid {
    border-color: #ddd !important; /* Forces the default grey border */
    box-shadow: none !important;
    outline: none !important;
}
/* Submit Button Loader Animation */
.wlhp-detail-wrap .wlhp-book-card #wlhpQuickForm #wlhpSubmit,
.wlhp-btn-submit {
    width: 100% !important;
    background-color: #f47920 !important;
    background: #f47920 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 4px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background .15s !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}
.wlhp-detail-wrap .wlhp-book-card #wlhpQuickForm #wlhpSubmit:hover,
.wlhp-btn-submit:hover:not(:disabled) {
    background-color: #003366 !important;
    background: #003366 !important;
}
.wlhp-btn-submit:disabled { opacity: .5 !important; cursor: not-allowed !important; }

.wlhp-detail-wrap .wlhp-book-card #wlhpQuickForm #wlhpSubmit.is-loading,
.wlhp-btn-submit.is-loading {
    position: relative !important;
    color: transparent !important;
    pointer-events: none !important;
    background-color: #003366 !important;
    background: #003366 !important;
}

.wlhp-detail-wrap .wlhp-book-card #wlhpQuickForm #wlhpSubmit.is-loading::after,
.wlhp-btn-submit.is-loading::after {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    top: calc(50% - 11px);
    left: calc(50% - 11px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: wlhp-spin 0.8s linear infinite;
}

@keyframes wlhp-spin {
    to { transform: rotate(360deg); }
}

@keyframes wlhp-spin {
    to { transform: rotate(360deg); }
}