/* ESTILO DO MODAL */

.modal-container{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #0000004b;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    display: none;
}

.modal-pj-pf{
    width: 40%;
    min-width:250px;
    min-height: 100px;
    background-color: #ffffff;
    padding: 50px 30px;
    border-radius: 10px;
    position: relative;
    animation: animate-modal 0.2s ease-in-out;
}

.modal-pj-pf h2{
    font-weight: 600;
}

.fechar{
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    background-color: #ff0000;
    color: #fff;
    font-weight: 700;
    font-size: 14pt;
    cursor: pointer;
}

.modal-pj-pf h2{
    margin-bottom: 20px;
    color: var(--corAzul);
    font-size: 28px;
}

@keyframes animate-modal {
    from{
        opacity: 0;
        transform: translate3d(0, -20px, 0);
    }

    to{
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.modal-container.mostrar{
    display: flex;
}

.mostrar .modal-submenu{
    animation: animate-modal .3s;
}

.btn-escolha{
    width: 100%;
    text-align: center;
}

.btn-escolha button{
    background-color: var(--cms-secondary, #58c8ea);
    color: #fff;
    border: 0;
    width: 80%;
    max-width: 400px;
    height: 60px;
    margin: 15px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    cursor: pointer;
    border-radius: 999px;
}