/* -------------------------------------------------------------- */
/* SEPTIMA COOKIE CONSENT                                         */
/* -------------------------------------------------------------- */

.septimacc.modal-overlay {
    width: 100%;
    height: 100dvh;
    background: rgba(29, 30, 31, 0.5);
    font: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow-y: auto;
    
    -webkit-animation: septimacc_fadein 0.5s;
    -moz-animation: septimacc_fadein 0.5s;
    -ms-animation: septimacc_fadein 0.5s;
    -o-animation: septimacc_fadein 0.5s;
    animation: septimacc_fadein 0.5s;
}

.septimacc .modal-container {
    width: 550px;
    max-width: 90%;
    background-color: white;
    padding: 3rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.septimacc .modal-container h2 {
    font-size: 1.5rem;
}

.septimacc .btn {
    flex: 1;
    padding: 0.75rem 4rem;
}

@keyframes septimacc_fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-moz-keyframes septimacc_fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes septimacc_fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-ms-keyframes septimacc_fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-o-keyframes septimacc_fadein {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* -------------------------------------------------------------- */
/* BREAKPOINTS                                                    */
/* -------------------------------------------------------------- */

@media only screen and (max-width: 767px) {
    .septimacc .modal-container {
        padding: 2rem;
    }
}
