@import "./escala.css";      /* folha de estilo da página escala.php */
@import "./cad-escala.css";  /* folhe de estilo da página cad-escala.php */
@import "./login.css";       /* folha de estilo do formulario de login*/
@import "./cad-leitor.css";  /* folha de estilo do formulário de cadastro de leitores */

* {
    margin     : 0;
    padding    : 0;
    box-sizing : border-box;
    font-family: "Roboto Flex", sans-serif;
    transition : 0.4s;
}

.container {
    width    : 100%;
    max-width: 1400px;
    margin   : 0 auto;
    display  : flex;
}

/*** Reset de Documento ************/
/***********************************/
.bg-white {
    background-color: white;
}

/*** Framework mtm *****************/
/***********************************/

section.entrada-wraper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/*** Entrada Principal *************/
/***********************************/

header.header-wraper {
    width: 100%;
    background: linear-gradient(to right, #00c3ff, white, white,  white, #00c3ff);

}

header.header-wraper .logo-wraper {
    width: 350px;
    margin: 10px auto;  
    display: flex;
    align-items: center;
    justify-content: center;  
    flex-wrap: wrap;
}
header.header-wraper .logo-wraper img {
    width: 150px;
}

header.header-wraper .logo-wraper .logo-titulo {
    width: 100%;
    text-align: center;
    text-shadow: 1px 1px 2px #ccc;
}
header.header-wraper .logo-wraper .logo-titulo h2 {
    font-size: 30px;
    color: black;
    font-weight: normal;
}

header.header-wraper .nav-wraper ul {
    display: flex;
    background-color: yellowgreen;
    
}
header.header-wraper .nav-wraper ul li {
    list-style: none;
    padding: 10px;
}

/*** header principal **************/
/***********************************/

nav.nav-wraper {
    width: 100%;
}

nav.nav-wraper ul {
    display: flex;
    list-style: none;
    justify-content: center;
    background: #00c3ff;
}

nav.nav-wraper ul li {
    padding: 10px;
    user-select: none;
    cursor: pointer;
}

nav.nav-wraper ul li a {
    text-decoration: none;
    color: black;
    font-weight: 400;
    transition: all .4s;
}
nav.nav-wraper ul li a:hover {
    color: white;
}

.menu-selected {
    background-color: rgba(255,255,255,0.5);
}

nav.nav-wraper ul li.menu-cadastro > ul.sub-menu {
    display: none;
    width: 150px;
    position: absolute;
    transition: .4s;
    border-left: 5px solid #0098c7;
    z-index: 10;
}
nav.nav-wraper ul li.menu-cadastro > ul.sub-menu li {
    border-bottom: 1px solid white;
    padding: 10px;
}
nav.nav-wraper ul li.menu-cadastro > ul.sub-menu li a {
    width: 100%;
    display: block;
}
nav.nav-wraper ul li.menu-cadastro > ul.sub-menu li:hover {
    background-color: #7ee1ff;
}
nav.nav-wraper ul li.menu-cadastro:hover ul.sub-menu {
    display: block;
}

nav.nav-wraper div.usuario-logado {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 5px 2%;
    margin: 0 auto;
    background-color: #3cd2ff;

}
nav.nav-wraper div span {
    padding: 0 5px;
    font-weight: bold;
}
nav.nav-wraper div p {
    padding: 0 5px;
}
nav.nav-wraper div img {
    width: 40px;
    padding: 0 5px;
}
/*** nav nav-wraper ****************/
/***********************************/

section.principal-wraper {
    width: 100%;
    padding: 10px 0;
    text-align: center;
    text-shadow: 1px 1px 2px black;
    color: white;
    font-size: 20px;
    background-color: rgba(0, 195, 255, .5);
}
section.mes-ano-wraper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
form.form-mes-ano {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
form.form-mes-ano div.box {
    min-width: 100px;
    display: flex;
    margin: 0 5px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
form.form-mes-ano div.box input {
    width: 100%;
    height: calc(50% + 2px);
    margin-top: auto;
    border-radius: 5px;
    border: none;
    color: rgb(40,40,40);
    background-color: #00c3ff;
    font-size: 16px;
    transition: .5s;
}
form.form-mes-ano div.box input:hover {
    background-color: #0098c7;
    color: white;
}

form.form-mes-ano label {
    width: 100%;
    text-align: center;
    padding: 10px 0 0 0;
    font-size: 20px;
    color: rgb(40,40,40);
}
form.form-mes-ano select {
    width: 100%;
    padding: 5px 0;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    outline: none;
    border: 2px solid #00c3ff;
}
form.form-mes-ano select > option {
    background-color: #00c3ff;
    color: black;
    font-size: 18px;
}

/*** section.principal-wraper ******/
/***********************************/

footer.rodape-wraper {
    width: 100%;
    margin-top: 10px;
    padding: 10px 0;
    text-align: center;
    background: linear-gradient( to top, #00c3ff, #7ee1ff);
}

footer.rodape-wraper h2 {
    color: white;
    text-shadow: 1px 1px 1px black;
}
footer.rodape-wraper h3 {
    font-weight: 500;
    padding-top: 10px;
}

/*** footer rodape *****************/
/***********************************/

/*** Media Screen ******************/
@media screen and (max-width: 768px){
    form.form-mes-ano div.box {
        margin: 0 auto;
        width: 100%;
    }
    form.form-mes-ano select {
        max-width: 300px;
    }
    form.form-mes-ano div.box input {
        width: 300px;
        height: 40px;
        margin-top: 20px;
    }
    form.form-mes-ano select {
        margin: 5px 0;
    }
    div.input-wraper input[type=submit],
    div.input-wraper input[type=reset] {
        width: 50%;
    }
    form.form-cad-leitor div.input-wraper-leitor {
        width: 100%;

    }

}
/***********************************/