#over {
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 999999;
    background: #000000d4;
    
   
}

#pop {
    display: block;
    padding-top: 7px !important;
    margin: auto;
    background: white;
    text-align: center;
    padding: 40px;
    max-width: 600px;
    width: auto;
    margin-top: 20px;

    border-radius: 12px;
    box-shadow: 0 0px 50px rgb(0 51 155 / 70%);

    max-height: 90%;
    overflow: auto;
}
#pop img {
    max-width: 100%; /* Faz as imagens serem responsivas */
    height: auto;
}
#poplogo {
    height: 120px;
    margin-bottom: 30px;
}

#popbtn {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 40px;
}

.popform {
    height: 73px;
    width: 91%;
    text-align: left;
    float: left;
    margin: 20px;
    font-size: 30px;
    padding: 2px 10px 2px 45px;
    font-family: 'Metropolis';
    font-weight: 200;
    border-radius: 13px;
    border: 1px solid #d7d9e0;
    margin-bottom: 0;
}

.toast-message {
    font-size: 26px;
    font-weight: 800;
}



#toast-container > div {

    opacity: 0.95;

}

.d-none {
    display: none
}

.pulse {
    animation: pulsar 1.3s infinite;
}

@keyframes pulsar {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}