/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/* 
    Created on : 01/04/2023, 13:39:27
    Author     : Victor
*/

/*/////////////////////////////////////*/
/*// INPUTS E BOTÕES SEM ESTILO PADÃO /*/
/*/////////////////////////////////////*/

/* Retira padrões de navegadores como o do Iphone*/
textarea,
input[type="text"],
input[type="date"],
input[type="button"],
input[type="submit"] {
    -webkit-appearance: none;
}

button {
    outline: none !important;
    border: none;
    background: transparent;
}

button:hover {
    cursor: pointer;
}

iframe {
    border: none !important;
}

/*---------------------------------------------*/

/*/////////////////////////////////////*/
/*////////////// FONTES ///////////////*/
/*/////////////////////////////////////*/

/* Fonte padrão*/
html, body{
    font-family: "montserrat" , sans-serif;
    margin:0px!important
}

h1, h2, h3, h4, h5 {
    margin:6px 0
}

/* Fonte De titulo*/
.titulo{
    font-size: 20px;
    font-weight: 600;
}

/*---------------------------------------------*/

/*/////////////////////////////////////*/
/*//////// NAVEGAÇÂO E RODAPÉ /////////*/
/*/////////////////////////////////////*/

/* Barra de navegação simples */
.barranav {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 60px;
    box-shadow: 0px 0px  4px rgba(0, 0, 0, 0.25);

}

/* Rodapé simples */
.barraf {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
    padding-bottom: 4px;
    box-shadow: 4px 4px  4px rgba(0, 0, 0.25, 0);

}

/* Logotipo quadrado dentro da barra de navegação */
.logoquadrado {
    max-height: 65px;
    max-width: 65px;
}

/* Logotipo retangulo dentro da barra de navegação */
.logoretangulo {
    max-height: 50px;
}

/*---------------------------------------------*/

/*/////////////////////////////////////*/
/*/////// CONFIGURAÇÕES DE DIV ////////*/
/*/////////////////////////////////////*/

/* Centralizar div */
.centro {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

/* Centralizar div dentro da página*/
.centropag{
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    position: fixed!important;
}

/* Tela dividida a esquerda */
.divisae {
    float: left;
    width: 50%;
    height: 650px;
}

/* Tela dividida a direita */
.divisad {
    float: right;
    width: 50%;
    height: 650px;
    box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.2);
}

/* Personalizar imagens a esquerda */
.regulaimgL{
    width: 100%;
    float:left;
}

/* Personalizar imagens a direita */
.regulaimgR{
    width: 100%;
    float:right;
}

/* Deixa objetos lado a lado */
.emlinha {
    display: inline-block!important;
}

/* Caixa com rolagem - tamanho 500px */
.rolagem-500 {
    overflow-y: auto;
    height: 500px;
}

/* Div de tamanho responsivo para 100% */

.divnew95{
    width: 95%!important;
}
.divnew90 {
    width: 90%!important;
}
.divnew85 {
    width: 85%!important;
}
.divnew80 {
    width: 80%!important;
}
.divnew75 {
    width: 75%!important;
}
.divnew70 {
    width: 70%!important;
}
.divnew65{
    width: 65%!important;
}
.divnew60{
    width: 60%!important;
}
.divnew55{
    width: 55%!important;
}
.divnew50{
    width: 50%!important;
}
.divnew45{
    width: 45%!important;
}
.divnew40{
    width: 40%!important;
}
.divnew35 {
    width: 35%!important;
}
.divnew30 {
    width: 30%!important;
}
.divnew25 {
    width: 25%!important;
}
.divnew20 {
    width: 20%!important;
}
.divnew15 {
    width: 15%!important;
}
.divnew10 {
    width: 10%!important;
}
.divnew5 {
    width: 5%!important;
}



/*/////////////////////////////////////*/
/*///////// DESENVOLVIMENTO ///////////*/
/*/////////////////////////////////////*/

/* Barra de título - também pode ser usado em barras de ferramentas em div */
.barratitulo{
    border-radius: 5px 5px 0px  0px;
    padding: 6px 6px 6px 6px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Aparecer e desaparecer em conjunto com função JS */
.column {
    display: none; /* esconder objeto */
}

.show {
    display: block; /* mostrar objeto */
}


/* tooltips */
.tooltips{
    position:relative;
}

.tooltipstxt { /* Base do tooltips */
    background-color: white;
    color: #080C39;
    width: 50%;
    display:none;
    position: absolute;
    right:0px;
    top: 110%;
    z-index: 1;
}

.tooltips:hover div.tooltipstxt{ /* hover do tooltips */
    display:block;
}

/* POP UPs */
.popup { /* Primeira camada do POP UP */
    width: 100%;
    height: 100%;
    display: none;
    position: fixed;
    z-index: 9;
    top: 0%;
    left: 0%;
    background-color: rgba(0,0,0,0.5);

}

.basepop { /* Conteudo do POP UP */
    width: 40%;
    padding: 10px;
    margin: auto;
    margin-top: 10%;
}

/* Ponto de tópicos */
.topicos {
    background-color: #22435D;
    border-radius: 100%;
    color: #fff;
    display: block;
    font-weight: 400;
    font-size: 16px;
    padding: 11px 0;
    text-align: center;
    width: 45px;
}


/*\/\/\/\/\/ ARQUIVOS - CSS EM TESTE \/\/\/\/\/*/
.folders {                                  /*/*/
    display: flex;                          /*/*/
    flex-wrap: wrap;                        /*/*/
    list-style: none;                       /*/*/
    padding: 0;                             /*/*/
    margin: 0;                              /*/*/
}                                           /*/*/
/*/*/
.folder {                                   /*/*/
    background-color: #ecf0f1;              /*/*/
    color: #2c3e50;                         /*/*/
    padding: 20px;                          /*/*/
    margin: 10px;                           /*/*/
    border-radius: 5px;                     /*/*/
    width: calc(33.33% - 20px);             /*/*/
    box-sizing: border-box;                 /*/*/
    text-align: center;                     /*/*/
    position: relative;                     /*/*/
    transition: all 0.2s ease-in-out;       /*/*/
    cursor: pointer;                        /*/*/
}                                           /*/*/
/*/*/
.folder:hover {                             /*/*/
    background-color: #bdc3c7;              /*/*/
}                                           /*/*/
/*/*/
.folder .delete {                           /*/*/
    background-color: #e74c3c;              /*/*/
    color: white;                           /*/*/
    padding: 5px 10px;                      /*/*/
    border-radius: 50%;                     /*/*/
    position: absolute;                     /*/*/
    top: 10px;                              /*/*/
    right: 10px;                            /*/*/
    cursor: pointer;                        /*/*/
    transition: all 0.2s ease-in-out;       /*/*/
}                                           /*/*/
/*/*/
.folder .delete:hover {                     /*/*/
    background-color: #c0392b;              /*/*/
}                                           /*/*/
/*/*/
.new-folder {                               /*/*/
    background-color: #3498db;              /*/*/
    color: white;                           /*/*/
    padding: 20px;                          /*/*/
    margin: 10px;                           /*/*/
    border-radius: 5px;                     /*/*/
    width: calc(33.33% - 20px);             /*/*/
    box-sizing: border-box;                 /*/*/
    text-align: center;                     /*/*/
    position: relative;                     /*/*/
    transition: all 0.2s ease-in-out;       /*/*/
    cursor: pointer;                        /*/*/
}                                           /*/*/
/*/*/
.new-folder:hover {                         /*/*/
    background-color: #2980b9;              /*/*/
}                                           /*/*/
/*/*/
.new-folder:before {                        /*/*/
    content: "+";                           /*/*/
    font-size: 50px;                        /*/*/
    line-height: 1;                         /*/*/
    display: block;                         /*/*/
    margin-bottom: 10px;                    /*/*/
    /*/*/
    .folders {                              /*/*/
        list-style: none;                   /*/*/
        margin: 0;                          /*/*/
        padding: 0;                         /*/*/
    }                                       /*/*/
    /*/*/
    .folders li {                           /*/*/
        display: flex;                      /*/*/
        align-items: center;                /*/*/
        padding: 5px;                       /*/*/
    }                                       /*/*/
    /*/*/
    .folders li:not(:last-child) {          /*/*/
        border-bottom: 1px solid #ccc;      /*/*/
    }                                       /*/*/
    /*/*/
    .folders li button.delete {             /*/*/
        margin-left: auto;                  /*/*/
    }                                       /*/*/
}                                           /*/*/
/*\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\*/

/*---------------------------------------------*/

/*/////////////////////////////////////*/
/*////////////// INPUT ////////////////*/
/*/////////////////////////////////////*/

/* Input largo borda fina branco minimalista */
.input100 {
    font-size: 15px;
    line-height: 2;
    color: #666;
    display: block;
    width: 100%;
    padding: 0 30px 0 30px;
    border-radius: 4px;
}

/* Input para a foto de perfil redonda (codigo de terceiros) */
.personal-image {/* primeira div (centraliza) */
    text-align: center;
}
.personal-image input[type="file"] { /* primeira div (onde a imagem é inserida, a div vira é do input) */
    display: none;
}

.avatarperfil { /* primeira div (icone estatioa de "alaterar perfil") */
    background-image: url(../images/icons/editarperfil.ico);
    background-size:30px 30px;
    background-repeat: no-repeat;
    background-position: right bottom;

}

.avatarperfil:hover{ /* primeira div (Imagem que aparece ao passar o mouse) */
    display: block;
    opacity: 0.5;
    background-image: url(../images/camera-white.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;

}

.avatar{
}

.avatar:hover{
    display: block;
    opacity: 0.2;
}

/*---------------------------------------------*/

/*/////////////////////////////////////*/
/*///////////// TABELAS ///////////////*/
/*/////////////////////////////////////*/

/* linha da tabela com 75px */
.tb75 {
    line-height:.75px;
}

/* Cabeçalho laranja */
.cab-tab-orange thead th {
    color: rgb(255,126,0)!important;
    border: 0;
    text-align: left;
    background-color: #FFF!important;
}

/* Estilo para o calendário */
.calendar {
    width: 90%;
    margin: 2rem auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.2);
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background-color: #ff8c00;
    color: #fff;
    font-size: 1.2rem;
}

.tableca {
    width: 100%;
    border-collapse: collapse;
}

.thca,
.tdca {
    text-align: center;
    padding: 0.8rem 0.5rem;
    border: 1px solid #ccc;
    font-size: 1.1rem;
}

.thca {
    background-color: #f2f2f2;
}

.tdca {
    position: relative;
    cursor: pointer;
}

.tdca:hover {
    background-color: #f2f2f2;
}

.dot {
    position: absolute;
    top: 50%;
    right: 0.7rem;
    transform: translateY(-50%);
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background-color: #ff8c00;
}

.dot.red {
    background-color: red;
}

/* estilo para os botões */
.btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0.5rem;
    background-color: #ff8c00;
    color: #fff;
    border: none;
    border-radius: 0.3rem;
    font-size: 1rem;
    cursor: pointer;
}

.btn:hover {
    background-color: #e67300;
}

/* estilo para a barra de navegação */
.navbar {
    background-color: #f2f2f2;
    padding: 0.5rem;
}

.navbar h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: bold;
}

/* estilo para centralizar o calendário */
.calendar-wrapper {
    display: flex;
    justify-content: center;
}


@media (max-width:1103px) and (min-width:601px){

    /*/////////////////////////////////////*/
    /*/////// CONFIGURAÇÕES DE DIV ////////*/
    /*/////////////////////////////////////*/

    /* Caixa com rolagem - aumenta para 1000px */
    .rolagem-500 {
        overflow-y: auto;
        height: 1000px;
    }

    /*/////////////////////////////////////*/
    /*///////// DESENVOLVIMENTO ///////////*/
    /*/////////////////////////////////////*/

    /* POP UPs */
    .basepop { /* Conteudo do POP UP */
        width: 100%;
        margin-top: 30%;
    }

    /*/////////////////////////////////////*/
    /*/////// DEFINIÇÃO W3 - TABLET ///////*/
    /*/////////////////////////////////////*/

    .w3-col.m2{
        width: 30%;
    }

    .w3-col.m7{
        width: 70%;
    }
}

@media (max-width:600px) and (min-width:0px){

    /*/////////////////////////////////////*/
    /*//// NAVEGAÇÂO E RODAPÉ - MOBILE ////*/
    /*/////////////////////////////////////*/

    /* Logotipo retangulo dentro da barra de navegação */
    .logoretangulo {
        height: 45px;
        width: 100px;
    }

    /*/////////////////////////////////////*/
    /*/// CONFIGURAÇÕES DE DIV - MOBILE ///*/
    /*/////////////////////////////////////*/

    /* Div de tamanho responsivo para 100% */
    .divnew95 , .divnew90 , .divnew85 , .divnew80 ,
    .divnew75 , .divnew70 , .divnew65 , .divnew60 ,
    .divnew55 , .divnew50 , .divnew45 , .divnew40 ,
    .divnew35 , .divnew30 , .divnew25 , .divnew20 ,
    .divnew15 , .divnew10 , .divnew5 , .divnew {
        width: 100%!important;
    }

    /* Caixa com rolagem - aumenta para 800px */
    .rolagem-500 {
        overflow-y: auto;
        height: 800px;
    }

    /*/////////////////////////////////////*/
    /*///////// DESENVOLVIMENTO ///////////*/
    /*/////////////////////////////////////*/

    /* POP UPs */
    .basepop { /* Conteudo do POP UP */
        width: 100%;
        margin-top: 30%;
    }

    /*/////////////////////////////////////*/
    /*/////// DEFINIÇÃO W3 - MOBILE ///////*/
    /*/////////////////////////////////////*/

    .w3-col, .w3-row-padding{
        padding: 0%!important;
    }

    .w3-margin{
        margin: 16px 0px!important;
    }

    /*/////////////////////////////////////*/
    /*/////// DEFINIÇÃO W3 - MOBILE ///////*/
    /*/////////////////////////////////////*/

    /* Estilo para o calendário */
    .calendar {
        width: 100%;
        margin: auto;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background-color: #fff;
        box-shadow: 0 0.3rem 0.6rem rgba(0, 0, 0, 0.2);
    }

}