﻿.gtxf-body-no-scroll {
    overflow:hidden !important;
}
.gtxf-megamodal {
    position: fixed;
    inset: 0;
    z-index: 99999999999 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}

    .gtxf-megamodal.open {
        opacity: 1;
        pointer-events: auto;
    }

.gtxf-megamodal-blur,
.gtxf-megamodal-tint {
    position: absolute;
    inset: 0;
}

.gtxf-megamodal-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 480px;
    padding: 2rem;
    animation: gtxfMegaFadeUp .35s ease-out;
    color:#ffff;
}

.gtxf-megamodal-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.gtxf-megamodal-message {
    font-size: 1.2rem;
    opacity: .9;
    margin-bottom: 2rem;
}

.gtxf-megamodal-btn {
    /* Used as a selector only */
}

.gtxf-megamodal-btn-default {
    background: #00c853;
    color: #fff;
    border: none;
    padding: .9rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
}

@keyframes gtxfMegaFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.gtxf-megamodal-fadeout {
    opacity: 0;
    transform: scale(0.98);
    transition: opacity var(--gtxf-fade-duration, 150ms) ease, transform var(--gtxf-fade-duration, 150ms) ease;
}

