.tela_cheia_modal
{
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000;
    left: 0px;
    top: 0px;
    opacity: 0.5;
    display: none;
}

.corpo_tela_modal
{
    position: fixed;
    width:470px;
    height: 310px;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    text-align: center;
    display: none;
}

.corpo_tela_modal .icon
{
position: relative;
width: 80px;
top: 40px;
}

.corpo_tela_modal .titulo{
    position: relative;
    font-family: arial;
    font-size: 19pt;
    top: 40px;
    color: #666;
}


.corpo_tela_modal .texto{
    position: relative;
    font-family: arial;
    top: 50px;
    color: #666;
    width: 80%;
    left: 10%;
    text-align: center;
}

.corpo_tela_modal button
{
    position: relative;
    padding: 12px;
    padding-left: 15px;
    padding-right: 15px;
    top: 60px;
    border: none;
    background-color: var(--cor-software);
    color: #fff;
    font-family: arial;
    font-size: 13pt;
    border-radius: 5px;
    margin-left: 10px;
    margin-right: 10px;
    cursor: pointer;
    transition: 0.3s;
    display: none;
}

.corpo_tela_modal .btn_cancel
{
    background-color: #ddd;
    color: #666;
}

.corpo_tela_modal .btn_ok
{
    width: 80px;
}

.corpo_tela_modal .btn_confirmar:hover
{
    background-color: var(--cor-escura-software);
}

.corpo_tela_modal .btn_ok:hover
{
    background-color: var(--cor-escura-software);
}

.corpo_tela_modal .btn_cancel:hover
{
    background-color: #e8e7e7;
}



@media only screen and (max-width: 483px) {

    .corpo_tela_modal
{
    width: 95%;

}


}


@media only screen and (max-width: 310px) {
    .corpo_tela_modal button
    {
        padding: 8px;
        padding-left: 10px;
        padding-right: 10px;
  
    }
}

