/* 
    Created on : 10/10/2021, 00:10:51
    Author     : Marcos
*/
/*LOGIN CLIENTE*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
#corpo{
    /*background: linear-gradient(rgba(255,255,255,.9), rgba(255,255,255,.9)), url('./chatz/img/communication-g2591ccc8b_1280.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;*/
    color: white;
    font-weight: bold;
    padding: 20px;
    width: 90vw;
    min-height: 430px;
    height: 65vh;
    margin: auto;
    text-align: center;
}
#msg-login{
    height: auto;
    padding: 10px;
    width: 100vw;
    background-color: #99ff99;
    text-align: center;
    font-family: monospace;
    font-weight: bold;
    font-size: 17px;
}
#dv-mensagem{
    width: 90vw;
    height: 40px;
    margin: auto;
    padding: 10px;
    background-color: #99e4a4;
    color: brown;
    text-align: center;
    opacity: .8;
    display: none;
}
#p-msg{
    font-weight: bold;
    font-size: 18px;
}
#corpo h3{
    text-align: center;
    color: black;
}
form{
    background-color: #669900;
    width: 400px;
    max-width: 100%;
    height: 220px;
    padding: 10px;
    margin: 10px auto;
    border-radius: 20px;
    box-shadow: 10px 10px 10px black;
}
.img-icons-gerais{
    width: 48px;
    height: 48px;
    vertical-align: middle;
    margin-right: 12px;
}
#frm_login_cliente{
    background-color: white;
    color: black;
    width: 400px;
    max-width: 100%;
    height: 250px;
    padding: 15px;
    margin: 15px auto;
    border-radius: 20px;
    box-shadow: 10px 10px 10px black;
}

#frm_login_cliente input[type="text"], input[type="password"], input[type="submit"], label{
    display: block;
    font-weight: bold;
    width: 100%;
    padding: 10px;
} 
#frm_login_cliente input[type='submit']{
    margin-top: 25px;
    transition: all .5s ease;
    height: 35px;
}
#frm_login_cliente input[type="submit"]:hover{
    background-color: green;
    color: white;
    box-shadow: 0 0 10px black;
    border-radius: 5px;
}

#btn-esqueci{
    padding: 5px;
    border: none;
    background-color: initial;
    cursor: pointer;
    color: red;
    font-weight: bold;
}
#btn-esqueci:hover{
    font-weight: bold;
}
/*MODAL TROCAR SENHA*/
#modal-trocar-senha{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,.8);
    display: none;
}
#dv-trocar-senha{
    width: 470px;
    height: auto;
    margin: 50px auto;
    position: relative;
    background-color: #eee;
    border-radius: 0 15px 15px 0;
}
#fechar-trocar-senha{
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
    background-color: red;
    color: white;
    text-align: center;
}
#frm-email-trocar-senha{
    background-color: initial;
    width: 100%;
    height: auto;
    padding: 25px;
    border-radius: 0 15px 15px 0;
}
input{
    width: 100%;
}
/*FIM LOGIN DO CLIENTE*/

/*AREA DO CLIENTE*/
#listarAnuncios{
    width: 90vw;
    height: auto;
    margin: 0 auto;
}
#listarAnuncios h3{
    text-align: center;
}
#divAnunciosCliente{
    width: 90vw;
    height: auto;
}
#tblAnunciosCliente{
    /*background-color: rgba(72,255,72,.7);*/
    border: 1px solid black;
    width: 95%;
    background-color: rgba(145, 201, 86, 0.452);
    max-width: 100vw;
    margin: 5px auto;
}
#tblAnunciosCliente #titulo{
    font-weight: bold;
    background-color: rgba(137, 43, 226, 0.501);
    color: white;
}
#tblAnunciosCliente td{
    text-align: center;
    border: 1px solid black;
    padding: 5px;
}
.bt_excluir{
    padding: 5px;
    cursor: pointer;
    border: none;
    background-color: initial;
    font-weight: bold;
    color: red;
    transition: all .5s ease;
}
.bt_excluir:hover{
    background-color: red;
    color: white;
    box-shadow: 0 0 10px black;
}
.a_excluir{
    padding: 5px;
    cursor: pointer;
    transition: all .5s ease;
}
.a_excluir:hover{
    background-color: red;
    color: white;
    box-shadow: 0 0 10px black;
}
.a_editfot{
    padding: 5px;
    cursor: pointer;
    transition: all .5s ease;
}
.a_editfot:hover{
    background-color: green;
    color: white;
    box-shadow: 0 0 10px black;
}
.a_add_anuncio{
    padding: 10px;
    cursor: pointer;
    transition: all .5s ease;
}
.a_add_anuncio:hover{
    background-color: green;
    color: white;
    box-shadow: 0 0 10px black;
}
.p_link{
    text-align: center;
    padding: 5px;
}
.alink{
    padding: 5px;
    text-align: center;
}
.alink:hover{
    background-color: green;
    color: white;
}
/*caso escolha cadastrar novo anuncio*/
#frmCadAnun{
    background-color: #777;
    margin: 10px auto;
}
#frmCadAnun #divEstados{
    border-radius: 10px;
    background-color: #aaa;
    padding: 20px 10px;
    margin: 30px;
}
#frmCadAnun #divEstados select{
    width: 100%;
    padding: 5px;
    cursor: pointer;
}
/*se escolher editar o anuncio*/
#divEditAnuncio{
    background-color: white;
    
}
#divEditAnuncio #frmEditAnun{
    background-color: #ddd;
    width: 600px;
    height: auto;
}
#frmEditAnun label, input[type="text"], input[type="FILE"], input[type="submit"], textArea{
    display: block;
    width: 100%;
    padding: 5px;
    cursor: pointer;
}
#frmEditAnun p{
    padding: 10px;
    font-family: Cambria;
}

/*se escolher editar as imagens (trocar as imagens salvas)*/
#listarEditarImagens{
    margin: 2px auto;
    width: 90%;
    height: auto;
}
#listarEditarImagens #tblImgEdit{
    width: 80%;
    height: auto;
    margin: 2px auto;
    border: 1px solid black;
    background-color: #ddd;
}
#listarEditarImagens #tblImgEdit #titulo{
    font-weight: bold;
}
#listarEditarImagens #tblImgEdit td{
    border: 1px solid black;
    text-align: center;
}
#listarEditarImagens #tblImgEdit td img{
    text-align: center;
    width: 400px;
    height: 300px;
}

p{
    font-size: 14px;
}
#geral{
    color: black;
    width: 600px;
    margin: 0 auto;
}
#geral label{
    cursor: pointer;
}
#geral div{
    display: none;
}
#geral input[type="radio"]{
    display: none;
}
#geral input[type="radio"]:checked + div{
    display: block;
}
#divMaisFotos form{
    height: 112px;
}
/*se escolher editar a imagem especifica*/
#editImg{
    margin: 2px auto;
    width: 900px;
    height: auto;/*600px;*/
}
#editImg form{
    background-color: #ddd;
    margin: 2px auto;
    width: 60%;
    height: auto;
}
#editImg form img{
    padding: 10px;
    width: 500px;
    height: 300px;
}
/*FIM EDITAR IMAGEM*/
/*CADASTRAR ANUNCIO*/
#divCadastroAnuncio{
    margin: 5px auto;
    width: 90%;
}
#divCadastroAnuncio h2{
    text-align: center;
}
#divCadastroAnuncio form{
    background-color: #aaa;
    width: 500px;
    height: auto;
    padding: 10px;
}
#divCadastroAnuncio form label, select, input[type="text"], input[type="submit"], input[type="file"], textArea{
    width: 100%;
    font-weight: bold;
}
#divCadastroAnuncio form select, input{
    height: 30px;
    margin-bottom: 10px;
    cursor: pointer;
}
@media (max-width: 800px){
    #listarAnuncios{
        height: 70vh;
        overflow-x: scroll;
        overflow-y: scroll;
    }
}


/*AREA DO PARCEIRO*/
#parceiroSair{
    background-color: #eee;
    text-align: center;
    padding: 10px;
    width: 280px;
    margin: 10px auto;
    border-radius: 10px;
}
#parceiroSair a{
    padding: 5px;
}
#dadosEmpresa{
    font-size: 12px;
    width: 90vw;
    height: auto;
    margin: 0 auto;
    overflow-x: scroll;
}
#dadosEmpresa table{
    margin: 10px auto;
}
#dadosEmpresa table #titulo{
    background-color: #aaa;
    color: white;
    font-weight: bold;
}
#dadosEmpresa table td{
    font-size: 14px;
    text-align: center;
    padding: 2px;
    border: 1px solid black;
}
#dadosEmpresa table td img{
    width: 90px;
    height: 40px;
}
#dadosEmpresa table td #frm_pgto_parceiro{
    background-color: #eee;
    width: 70px;
    height: 30px;
    padding: 0;
    margin: 0;
}
#frm_pgto_parceiro input[type="submit"]{
    background-color: red;
    color: white;
    width: 100%;
    height: 25px;
    padding: 5px;
}
#frm_pgto_parceiro input[type="submit"]:hover{
    background-color: green;
    color: white;
    box-shadow: 0 0 10px black;
}

/*UPDATE DADOS PARCEIRO*/
.modal{
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: rgba(0,0,0,0.8);
    z-index: 99999;
    opacity: 0;
    -webkit-transition: opacity 400ms ease-in;
    -moz-transition: opacity 400ms ease-in;
    transition: opacity 400ms ease-in;
    pointer-events: none;
}
.modal:target{
    opacity: 1;
    pointer-events: auto;
}
.modal > div{
    width: 450px;
    position: relative;
    margin: 10% auto;
    padding: 15px 20px;
    background: #fff;
}
.fechar{
    position: absolute;
    width: 30px;
    right: -15px;
    top: -20px;
    text-align: center;
    line-height: 30px;
    margin-top: 5px;
    background: #ff4545;
    border-radius: 50%;
    font-size: 16px;
    color: #8d0000;
}
#abrirModalLogo div img{
    width: 150px;
    height: 80px;
}
#abrirModalFoto div img{
    width: 150px;
    height: 80px;
}
#abrirModalComprovante div .img_full{
    width: 400px;
    height: 250px;
}
/*anuncios area administrativa*/
#anuncios{
    width: 100%;
    height: auto;
}
#listarAnunciosAdmin{
    width: 90vw;
    height: auto;
    margin: 0 auto;
}
#listarAnunciosAdmin h3{
    text-align: center;
}
#tblAnuncios{
    width: 95%;
    height: auto;
    margin: 0 auto;
    overflow-x: scroll;
}
#tblAnuncios #titulo{
    font-weight: bold;
    background-color: #999;
    color: white;
    text-align: center;
}
#tblAnuncios td{
    border: 1px solid #ddd;
    text-align: center;
    padding: 0 5px;
}
#tblAnuncios td img{
    width: 80px;
    height: 50px;
}
@media (max-width: 800px){
    #listarAnunciosAdmin{
        height: 80vh;
        overflow-x: scroll;
        overflow-y: scroll;
    }
    
    #tblAnuncios{
        overflow-x: scroll;
        overflow-y: scroll;
    }
}
