﻿.divBlock
{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.4;
    background-color: #000;
}

.divModal
{
    width: 80%;
    left: 10%;
    margin-left: 0;
    position: absolute;
    display: none;
    background-color: #fff;
    /*top: -20px;*/
    padding: 20px;
    /*Esta propriedade existe para corrigir nos modais onde está os campos estão quebrando e passando para a parte escura
     *Precisa passar de tela por tela corrigindo.(SiacNet)*/
    padding-bottom: 50px !important;
    box-sizing: border-box;
    box-shadow: 0 0 10px #4E4E4E;
    padding-bottom: 20px;
    height: auto !important;
}



/* Telas menores */

@media all and (max-width: 799px)
{
    .divModal
    {
        width: 80%;
        left: 10%;
        margin-left: 0;
    }
}

@media (max-width: 639px)
{
    .divModal
    {
        width: 98%;
        left: 1%;
        margin-left: 0;
        padding: 10px;
    }

        .divModal .btn
        {
            width: 100%;
            float: none !important;
            margin-bottom: 1px;
        }
}
