.modal-wrap.timelimit-modal-wrap {
	display: none;
}

.modal-wrap.timelimit-modal-wrap.is-visible {
	display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 111;
    pointer-events: all;

    .modal {
        /*display: block;*/
        position: relative;
        z-index: 3;
        margin-left: auto;
        margin-right: auto;
        top: 8vh;
        max-width: 100%;
        width: 677px;
        height: auto;
        background-color: #fff;
        padding: 32px;
        border-radius: 56px;
        filter: drop-shadow(0 0 96px #0c7bb4);
        gap: 32px;
        display: flex;
        flex-direction: column;

        @media(min-width: 1000px) {
            & {
                padding: 64px;
                padding-bottom: 40px;
                border-radius: 56px;
                min-height: 400px;
                pointer-events: all;
            }
        }
    }
    .close {
        position: absolute;
        right: 28px;
        top: 32px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: var(--Silver, #f6f6f6);
        padding: 10px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: flex;
        cursor: pointer;
    }
    h2 {
        color: var(--Blue, #0089cf);
        font-family: "Paytone One";
        font-size: 48px;
        font-style: normal;
        font-weight: 400;
        line-height: 110%;
        margin-bottom: 0;
    }

    h3 {
        color: var(--Black, #2C2C2C);
        font-family: Poppins;
        font-size: 18px;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        margin-bottom: 8px;
        margin-top: 0;
    }
    .buttons-wrap {
        display: flex;
        flex-direction: column;
        gap: 24px;

        .btn-white {
            border: 2px solid var(--Blue, #0089CF);
            gap: 16px;

        }
    }
    .backdrop {
        display: block;
        opacity: .7;
        background: var(--Blue, #0089cf);
        -webkit-backdrop-filter: blur(250px);
        backdrop-filter: blur(250px);
        position: absolute;
        width: 100%;
        height: 100vh;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 2;
        pointer-events: none;
    }
/*    .timelimit-form.modal {
        display: block;

    }*/
    .modal-bg {
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: -1;
        pointer-events: none;
        width: 100%;
        height: auto;

        svg {
            height: auto;
            width: 100%;
        }
    }

    @media (max-width: 999.9px) {
        & {
            width: calc(100% - 24px);
            margin-left: 12px;
        }
    }
}

.timelimit-modal-wrap .modal {
    position: absolute;
    width: 677px;
    height: auto;
    background-color: #fff;
    padding: 32px;
    /*border-radius: 10px;*/
    filter: drop-shadow(0 0 96px #0c7bb4);
    display: none;
    z-index: 2;
}


.popup-content h4 {
	color: var(--Black, #2C2C2C);
	font-family: Poppins;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
}

.popup-content p {
	color: var(--Black, #2C2C2C);
	font-family: Poppins;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

#brevo-submit label p:last-child {
	margin-bottom: 0;
}