<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@media (max-width: 768px) {
    /* Ø£ÙŠ ÙƒÙˆØ¯ Ù‡Ù†Ø§ Ø³ÙŠØ·Ø¨Ù‚ ÙÙ‚Ø· Ø¹Ù„Ù‰ Ø§Ù„Ø´Ø§Ø´Ø§Øª Ø§Ù„ØµØºÙŠØ±Ø© (Ù…Ø«Ù„ Ø§Ù„Ø¬ÙˆØ§Ù„Ø§Øª) */
    .logo-max-width-mobile {
        max-width: 80px;
    }
}

.iframe-popup-container .backdrop {
    background: hsl(0deg 0% 0% / 50%);
    position: fixed;
    inset: 0;
    z-index: 999;
}

.iframe-popup-container &gt; .popup {
    --spacing: 4rem;
    position: fixed;
    top: calc(50% - var(--spacing));
    bottom: auto;
    right: auto;
    left: calc(50% - var(--spacing));
    z-index: 999;
    translate: -50% -50%;
    width: calc(100% - var(--spacing));
    background: #ffffff;
    max-width: 800px;
    max-height: 600px;
    border: 1px solid #aaa;
    border-radius: 5px;
    margin: var(--spacing);
    /* height: calc(100% - var(--spacing)); */
    box-shadow: 1px 1px 5px 1px #696969;
    display: flex;
    flex-direction: column;
    overflow: scroll;
    height: auto;
}

.iframe-popup-container &gt; .popup header {
    height: 30px;
    border-bottom: 1px solid #ccc;
    background: #ff4c1d;
    color: #ffffff;
    padding-inline-start: 0.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    align-items: center;
}

/*  â”€â”€ Ø®Ù„ÙÙŠØ© Ø§Ù„Ù†Ù…ÙˆØ°Ø¬ ÙˆÙ„ÙˆÙ† Ø§Ù„Ù†Øµ â”€â”€ */
[data-bs-theme="dark"] .wpwl-container {
    background-color: #1e1e1e !important;
}

[data-bs-theme="dark"] .wpwl-form {
    background-color: transparent !important;
    color: #eee !important;
}

/*  â”€â”€ Ø¹Ù†Ø§ÙˆÙŠÙ† Ø§Ù„Ø­Ù‚ÙˆÙ„ (Labels) â”€â”€ */
[data-bs-theme="dark"] .wpwl-label {
    color: #ccc !important;
}

/*  â”€â”€ Ø­Ù‚ÙˆÙ„ Ø§Ù„Ø¥Ø¯Ø®Ø§Ù„ (Inputs) â”€â”€ */
[data-bs-theme="dark"] .wpwl-control {
    background-color: #333 !important;
    color: #fff !important;
    border: 1px solid #555 !important;
}

/*  â”€â”€ Ø§Ù„Ø¹Ù†Ø§ØµØ± Ø§Ù„Ø²Ø®Ø±ÙÙŠØ© (Wrappers) â”€â”€ */
[data-bs-theme="dark"] .wpwl-wrapper {
    background-color: transparent !important;
}

/*  â”€â”€ Ø²Ø±Ù‘ Ø§Ù„Ø¯ÙØ¹ (Pay now) â”€â”€ */
[data-bs-theme="dark"] .wpwl-button-pay {
    background-color: #0066cc !important;
    color: #fff !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4) !important;
}

/*  â”€â”€ Ø£ÙŠÙ‚ÙˆÙ†Ø§Øª Ø§Ù„Ø¨Ø·Ø§Ù‚Ø§Øª Ø¥Ø°Ø§ Ù„Ø²Ù… Ø§Ù„Ø£Ù…Ø± â”€â”€ */
[data-bs-theme="dark"] .wpwl-brand {
    filter: brightness(0) invert(1) !important;
}

/*  â”€â”€ Ø£ÙŠÙ‚ÙˆÙ†Ø§Øª Ø§Ù„Ø¨Ø·Ø§Ù‚Ø§Øª Ø¥Ø°Ø§ Ù„Ø²Ù… Ø§Ù„Ø£Ù…Ø± â”€â”€ */
[data-bs-theme="dark"] .theme-dark {
    display: block;
}

[data-bs-theme="dark"] .theme-light {
    display: none;
}

[data-bs-theme="light"] .theme-light {
    display: block;
}

[data-bs-theme="light"] .theme-dark {
    display: none;
}


.dot {
    height: 6px;
    width: 6px;
    margin: 0 2px;
    background-color: black;
    border-radius: 50%;
    display: inline-block;
    animation: dotFlashing 1.5s infinite linear alternate;
}

.dot:nth-child(2) {
    animation-delay: 0.3s;
}

.dot:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes dotFlashing {
    0% {
        opacity: 0.2;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.2;
    }
}

.whatsapp-div {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

[dir=ltr] .whatsapp-div {
    right: auto;
    left: 20px;
}

.sale-count {
    color: #c0392b;
    font-weight: bold;
    font-size: 1.2rem;
    display: inline-block;
    animation: pulse 1.2s ease-in-out infinite;
}

.sale-count .emoji {
    margin-left: 5px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.has-error .form-label {
    color: red;
}

.has-error .invalid-feedback {
    display: block;
}

.has-error input {
    border-color: red;
}


@media (max-width: 768px) {

.navbar-brand {
 margin: auto;
}
}</pre></body></html>