.varden-widget-hidden {
    display: none;
}

.vardenWidgetBackdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 99998;
    opacity: 0;
    transition: opacity 0.3s;
}

.vardenWidgetModal {
    position: fixed;
    top: 50%;
    width: 100%;
    max-width: 640px;
    height: 100%;
    max-height: min(90vh, 1400px);
    left: 50%;
    transform: translate(-50%, -60%);
    border: 1px solid #202225;
    z-index: 99999;
    border-radius: 24px;
    overflow: auto;
    opacity: 0;
    transition: opacity 0.3s,
    transform 0.3s;
}

.vardenWidgetModalContent {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: white;
    padding: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s,
    transform 0.3s;
    transform: translate(-50%, -50%);
}

.vardenWidgetModalIframe {
    width: 100%;
    height: 100%;
    max-height: calc(min(90vh, 1400px) - 15px);
    border: none;
    padding-bottom: env(safe-area-inset-bottom);
}

/* Mobile view */
@media (max-width: 640px) {
    .vardenWidgetModal {
        max-width: 100vw;
        max-height: 100lvh;
        border-radius: 0;
        transform: translate(-50%, -50%);
    }

    .vardenWidgetModalIframe {
        width: 100%;
        height: 100%;
        max-height: calc(100dvh - 15px);
        border: none;
        padding-bottom: env(safe-area-inset-bottom);
    }
}

.body-no-scroll {
    overflow: hidden;
}
