/* ==========================================================================
   ADVANCED NOTIFICATION BANNER STYLES - SIDEWAYS SLIDER
   Expolio Group - Horizontal Carousel & Dual-Slot Architecture
   ========================================================================== */

/* 1. Header Smooth Vertical Gliding */
.eg-header {
    transition: top 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.eg-header.has-top-banner {
    top: 14px;
}

/* 2. Notification Slot Containers (Matching Glassmorphism Capsule) */
.eg-banner-slot {
    position: relative;
    width: var(--banner-width-percent, 100%);
    margin-left: auto;
    margin-right: auto;
    height: var(--slot-height, 56px);
    max-height: var(--slot-height, 56px);
    overflow: hidden;
    background: var(--eg-header-bg, rgba(255, 255, 255, 0.92));
    backdrop-filter: blur(var(--eg-header-blur, 18px));
    -webkit-backdrop-filter: blur(var(--eg-header-blur, 18px));
    border: var(--eg-header-border, 1px solid rgba(0, 0, 0, 0.06));
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.35s ease,
                margin 0.35s ease,
                padding 0.35s ease;
    box-sizing: border-box;
    display: block !important;
}

.eg-banner-slot.eg-banner-align-left {
    margin-left: 0;
    margin-right: auto;
}

.eg-banner-slot.eg-banner-align-center {
    margin-left: auto;
    margin-right: auto;
}

.eg-banner-slot.eg-banner-align-right {
    margin-left: auto;
    margin-right: 0;
}

/* Allow slot to expand when a drawer is open inside */
.eg-banner-slot.has-open-drawer {
    height: auto;
    max-height: 600px;
    overflow: visible;
}

.eg-slot-top {
    margin-bottom: 8px;
    --slot-height: 60px;
}

.eg-slot-bottom {
    margin-top: 8px;
    --slot-height: 48px;
}

/* Retracted / Dismissed State */
.eg-banner-slot.is-dismissed {
    max-height: 0 !important;
    opacity: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    border: none !important;
    pointer-events: none !important;
}

/* 3. Horizontal Viewport & Track (Sideways Slider) */
.eg-banner-viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

/* When a drawer is open, let viewport overflow so drawer is visible */
.eg-banner-slot.has-open-drawer .eg-banner-viewport {
    overflow: visible;
}

.eg-banner-slot.has-multiple-slides .eg-banner-viewport {
    cursor: grab;
}

.eg-banner-slot.has-multiple-slides .eg-banner-viewport:active,
.eg-banner-slot.has-multiple-slides.is-dragging .eg-banner-viewport {
    cursor: grabbing !important;
}

/* Ensure interactive elements always get pointer cursor, even in multi-slide banners */
.eg-banner-viewport .eg-banner-coupon-pill,
.eg-banner-viewport .eg-banner-cta-btn,
.eg-banner-viewport .eg-drawer-toggle-btn,
.eg-banner-viewport .eg-lead-submit-btn,
.eg-banner-viewport .eg-scratch-trigger,
.eg-banner-viewport .eg-slot-close-btn,
.eg-banner-viewport a[href],
.eg-banner-viewport button {
    cursor: pointer !important;
}

.eg-banner-track {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.eg-banner-slide {
    flex: 0 0 100%;
    min-width: 100%;
    max-width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    height: 100%;
    padding: 0 36px 0 16px; /* Space for cross mark only */
    border-radius: 12px;
    box-sizing: border-box;
}

/* 4. Banner Content Elements */
.eg-banner-body {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 100%;
    font-size: 13px;
    line-height: 1.4;
    text-align: center;
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    overflow: hidden;
}

.eg-banner-left-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: var(--icon-pct, 80%);
    max-height: 48px;
    margin-right: 2px;
    pointer-events: none;
    user-select: none;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.eg-banner-left-icon-wrap:hover {
    transform: scale(1.08) rotate(-3deg);
}

.eg-banner-left-icon-img {
    display: block;
    height: 100%;
    width: auto;
    max-height: 48px;
    object-fit: contain;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.18));
}

.eg-banner-pill,
.eg-banner-countdown,
.eg-banner-coupon-pill,
.eg-banner-cta-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

.eg-banner-pill {
    display: inline-flex;
    align-items: center;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 2px 9px;
    border-radius: 9999px;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

/* News Ticker Viewport */
.eg-banner-ticker-viewport {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, black 10px, black calc(100% - 10px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10px, black calc(100% - 10px), transparent 100%);
}

.eg-banner-text-content {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    color: inherit;
    font-size: 13px;
    will-change: transform, opacity;
}

.eg-banner-text-content p {
    margin: 0;
    display: inline;
    white-space: nowrap;
}

.eg-banner-text-content a {
    color: inherit;
    font-weight: 700;
    text-decoration: underline;
}

/* Strictly Right to Left Single Message Glide:
   - Holds at start (0% to 20%) so user reads first words
   - Smoothly glides right-to-left at readable pace (20% to 72%)
   - Holds at end (72% to 85%) so user reads final words
   - Soft fade-out, silent reset to start, soft fade-in (85% to 100%)
   Zero backwards bounce. Strictly moves right-to-left. Single text only.
*/
.eg-banner-ticker-viewport.is-ticker-active {
    justify-content: flex-start;
}

.eg-banner-ticker-viewport.is-ticker-active .eg-ticker-content {
    animation: egSingleTextMarquee var(--ticker-duration, 12s) ease-in-out infinite;
}

/* Pause when visitor hovers or touches */
.eg-banner-slot:hover .eg-ticker-content,
.eg-banner-slot:active .eg-ticker-content,
.eg-banner-ticker-viewport:hover .eg-ticker-content,
.eg-banner-ticker-viewport:active .eg-ticker-content {
    animation-play-state: paused !important;
}

@keyframes egSingleTextMarquee {
    0%, 20% {
        transform: translateX(0);
        opacity: 1;
    }
    72% {
        transform: translateX(var(--ticker-offset, -120px));
        opacity: 1;
    }
    85% {
        transform: translateX(var(--ticker-offset, -120px));
        opacity: 1;
    }
    91% {
        transform: translateX(var(--ticker-offset, -120px));
        opacity: 0;
    }
    93% {
        transform: translateX(0);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.eg-banner-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 6px;
    text-decoration: none !important;
    white-space: nowrap;
    background: #4f46e5;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(79, 70, 229, 0.25);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.eg-banner-cta-btn:hover {
    transform: translateX(2px);
    filter: brightness(1.12);
}

.eg-banner-cta-btn i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

/* 5. Live Countdown Clock */
.eg-banner-countdown {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 3px 9px;
    border-radius: 8px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.6px;
    white-space: nowrap;
    color: inherit;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.eg-countdown-icon {
    font-size: 11px;
    opacity: 0.9;
    animation: egClockPulse 2s infinite ease-in-out;
}

@keyframes egClockPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.18); opacity: 1; }
}

.eg-countdown-digits {
    font-variant-numeric: tabular-nums;
}

/* 6. 1-Click Coupon Code Copier Pill */
.eg-banner-coupon-pill {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px dashed currentColor;
    padding: 3px 10px;
    border-radius: 8px;
    font-size: 11.5px;
    color: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    -webkit-user-select: none;
}

.eg-banner-coupon-pill:hover {
    background: rgba(255, 255, 255, 0.32);
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.eg-banner-coupon-pill:active {
    transform: translateY(0) scale(0.98);
}

.eg-coupon-label {
    font-size: 9.5px;
    font-weight: 600;
    opacity: 0.85;
    letter-spacing: 0.5px;
}

.eg-coupon-code {
    font-weight: 800;
    letter-spacing: 0.8px;
}

.eg-copy-icon {
    font-size: 11px;
    opacity: 0.85;
    transition: transform 0.2s ease;
}

.eg-banner-coupon-pill:hover .eg-copy-icon {
    transform: scale(1.15);
}

/* Copied Floating Tooltip Bubble */
.eg-copied-bubble {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    background: #10b981;
    color: #ffffff !important;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.35);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    z-index: 20;
}

.eg-copied-bubble::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px 4px 0 4px;
    border-style: solid;
    border-color: #10b981 transparent transparent transparent;
}

.eg-banner-coupon-pill.is-copied .eg-copied-bubble {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* 7. Device Targeting Rules */
@media (max-width: 768px) {
    .eg-banner-slide.eg-device-desktop {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .eg-banner-slide.eg-device-mobile {
        display: none !important;
    }
}

/* 8. Dots Indicator */
.eg-banner-dots {
    position: absolute;
    bottom: 3px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 8;
    pointer-events: auto;
}

.eg-banner-dots .eg-dot {
    width: 6px;
    height: 6px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.35;
    cursor: pointer;
    transition: opacity 0.25s, width 0.25s, border-radius 0.25s;
}

.eg-banner-dots .eg-dot.is-active {
    opacity: 0.95;
    width: 14px;
    border-radius: 4px;
}

/* 9. Cross Mark Close Button */
.eg-slot-close-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: rgba(0, 0, 0, 0.08);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: inherit;
    font-size: 11px;
    line-height: 1;
    transition: all 0.22s ease;
    z-index: 10;
}

.eg-slot-close-btn:hover {
    background: rgba(239, 68, 68, 0.9);
    color: #ffffff;
    transform: translateY(-50%) scale(1.1);
}

/* ==========================================================================
   RESPONSIVE OPTIMIZATION (MOBILE & TABLET SCREENS)
   ========================================================================== */

@media (max-width: 991px) {
    .eg-header.has-top-banner {
        top: 10px;
    }

    .eg-banner-body {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .eg-header.has-top-banner {
        top: 6px;
    }

    .eg-banner-slot {
        height: var(--slot-height, 50px);
        max-height: var(--slot-height, 50px);
        border-radius: 10px;
    }

    .eg-slot-top {
        margin-bottom: 5px;
        --slot-height: 52px;
    }

    .eg-slot-bottom {
        margin-top: 5px;
        --slot-height: 44px;
    }

    .eg-banner-slide {
        min-height: 36px;
        height: 100%;
        padding: 0 28px 0 10px;
        border-radius: 8px;
    }

    .eg-banner-body {
        gap: 6px;
        justify-content: flex-start;
        height: 100%;
        font-size: 11px;
        width: 100%;
        flex-wrap: nowrap;
        overflow: hidden;
    }

    .eg-banner-pill {
        font-size: 9px;
        padding: 2px 6px;
        flex-shrink: 0;
    }

    .eg-banner-ticker-viewport {
        flex: 1 1 auto;
        min-width: 0;
        justify-content: flex-start;
        mask-image: linear-gradient(to right, transparent 0%, black 6px, black calc(100% - 6px), transparent 100%);
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6px, black calc(100% - 6px), transparent 100%);
    }

    .eg-banner-text-content {
        font-size: 11px;
        white-space: nowrap;
    }

    .eg-banner-text-content p {
        white-space: nowrap;
        margin: 0;
        display: inline;
    }

    .eg-banner-cta-btn {
        font-size: 10px;
        padding: 2px 7px;
        flex-shrink: 0;
    }

    .eg-banner-coupon-pill {
        font-size: 9.5px;
        padding: 2px 6px;
        flex-shrink: 0;
    }

    .eg-slot-close-btn {
        width: 20px;
        height: 20px;
        right: 4px;
        font-size: 10px;
    }

    .eg-banner-dots {
        display: none;
    }
}

/* ============================================================
   ADVANCED MODULES: WHATSAPP, PHONE, LEAD CAPTURE & DRAWER
   ============================================================ */

/* 1. WhatsApp Button */
.eg-btn-whatsapp {
    background-color: #25d366 !important;
    color: #ffffff !important;
    border-color: #20ba5a !important;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.35);
}
.eg-btn-whatsapp:hover {
    background-color: #20ba5a !important;
    transform: translateY(-1px);
}

/* 2. Phone Call Button */
.eg-btn-phone {
    background-color: #2563eb !important;
    color: #ffffff !important;
    border-color: #1d4ed8 !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

/* 3. Inline Email Lead Capture */
.eg-banner-lead-form {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}
.eg-lead-input {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #0f172a;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 6px;
    width: 140px;
    outline: none;
    transition: all 0.2s ease;
}
.eg-lead-input:focus {
    background: #ffffff;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.4);
}
.eg-lead-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 6px;
    border: 1px solid transparent;
    cursor: pointer;
    background: #4f46e5;
    color: #ffffff;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.eg-lead-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.eg-lead-success-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(16, 185, 129, 0.95);
    color: #ffffff;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
}
.eg-lead-coupon {
    background: #ffffff;
    color: #065f46;
    padding: 1px 5px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    cursor: pointer;
}

/* 4. Expandable Drawer */
.eg-drawer-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: inherit;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 6px;
    cursor: pointer !important;
    flex-shrink: 0;
    transition: all 0.2s ease;
    pointer-events: auto !important;
    position: relative;
    z-index: 5;
}
.eg-drawer-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.28);
}
.eg-drawer-arrow {
    font-size: 9px;
    transition: transform 0.25s ease;
}
.eg-drawer-toggle-btn.is-expanded .eg-drawer-arrow {
    transform: rotate(180deg);
}

.eg-banner-drawer {
    width: 100%;
    margin-top: 6px;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    padding: 10px 14px;
    color: #f8fafc;
    font-size: 12px;
    line-height: 1.5;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    animation: egDrawerSlideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
    user-select: text;
    -webkit-user-select: text;
}
@keyframes egDrawerSlideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}
.eg-drawer-header {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #60a5fa;
    font-weight: 700;
    margin-bottom: 4px;
}

/* Drawer body interactive elements */
.eg-drawer-body {
    pointer-events: auto !important;
}

.eg-drawer-body button,
.eg-drawer-body a,
.eg-drawer-body [role="button"] {
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* Copy code button inside drawer offer details */
.eg-drawer-copy-btn,
.eg-drawer-body .eg-copy-code-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(99, 102, 241, 0.9);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer !important;
    pointer-events: auto !important;
    transition: all 0.2s ease;
    user-select: none;
    -webkit-user-select: none;
    position: relative;
    z-index: 15;
}
.eg-drawer-copy-btn:hover,
.eg-drawer-body .eg-copy-code-btn:hover {
    background: rgba(99, 102, 241, 1);
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(99, 102, 241, 0.4);
}
.eg-drawer-copy-btn.is-copied,
.eg-drawer-body .eg-copy-code-btn.is-copied {
    background: rgba(16, 185, 129, 0.9);
}

/* 5. Gamified Scratch Modal */
.eg-scratch-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.eg-scratch-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 11, 20, 0.85);
    backdrop-filter: blur(8px);
}
.eg-scratch-card-box {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #18181b 0%, #27272a 100%);
    border: 1px solid rgba(245, 158, 11, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(245, 158, 11, 0.2);
    border-radius: 16px;
    padding: 24px;
    width: 90%;
    max-width: 390px;
    text-align: center;
    color: #ffffff;
}
.eg-scratch-close-btn {
    position: absolute;
    top: 10px;
    right: 14px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
}
.eg-scratch-close-btn:hover {
    color: #ffffff;
}
.eg-scratch-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 9999px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}
.eg-scratch-title {
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 4px;
    color: #ffffff;
}
.eg-scratch-hint {
    font-size: 11.5px;
    color: #a1a1aa;
    margin: 0 0 16px;
}
.eg-scratch-stage {
    position: relative;
    width: 100%;
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
}
.eg-scratch-secret {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #78350f 0%, #451a03 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 12px;
}
.eg-secret-icon {
    font-size: 26px;
}
.eg-secret-discount {
    font-size: 16px;
    font-weight: 900;
    color: #fbbf24;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    margin: 2px 0;
}
.eg-secret-code-wrapper {
    font-size: 10px;
    color: #fed7aa;
}
.eg-secret-code {
    display: block;
    font-size: 16px;
    letter-spacing: 2px;
    color: #ffffff;
    font-family: monospace;
}
.eg-secret-copy-btn {
    margin-top: 6px;
    background: #f59e0b;
    color: #451a03;
    border: none;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 6px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.eg-secret-copy-btn:hover {
    background: #fbbf24;
}
.eg-scratch-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    cursor: crosshair;
}
.eg-scratch-status {
    font-size: 11px;
    color: #71717a;
    margin-top: 10px;
}

