@font-face {
    font-family: "Gotham Black";
    src: url('../font/Gotham-Black.ttf');
}

@font-face {
    font-family: 'Gotham Rounded Book';
    src: url('../font/gotham-rounded-book.ttf');
}

@font-face {
    font-family: 'Gotham Rounded Bold';
    src: url('../font/gotham-rounded-bold.ttf');
}


#campos input {
    width: 100%;
    padding: 3px;
    box-sizing: border-box;
}
*{
    padding: 0;
    margin: 0;
    font-family: "Gotham Rounded Book";
    outline: none;
    transition: 0.7s;
}

body{
    background-color: white;
    /*background-color: #ff7300;*/
    overflow: hidden;
}

header{
    width: 200px;
    position: absolute;
    left: 0;
    top: 0;

    transition: .3s;
}

hr{
    margin: 30px auto;
    width: 50%;
    border: 1px #444240 solid;
}

/* MENU */

nav hr{
    margin: 15px auto;
}

nav ul{
    list-style: none;
    width: 100%;
    font-size: 13px;
}

nav li{
    width: calc(100% - 20px);
    padding: 10px;
    font-weight: normal;
    transition: .5s;
}

nav li:hover{
    width: calc(100% - 26px);
    border-right: 6px #45b29d solid;
    background-color: #f2f2f2;
    font-weight: bold;
}

/* /MENU */

a{
    color: #444240;
    font-size: 12px;
}

a:hover{
    color: #45b29d;
}

small{
    font-size: 10px;
}

/* NOTIFICATION */

@keyframes anot {
    0%   {
        background-color:white;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    25%  {
        background-color: rgba(255, 255, 255, 0.27);
        -webkit-transform: scale(1.3);
        -moz-transform: scale(1.3);
        -ms-transform: scale(1.3);
        -o-transform: scale(1.3);
        transform: scale(1.3);
    }
    50%  {

        background-color:white;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
    75%  {
        background-color:white;
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        background-color: rgba(255, 255, 255, 0.27);
        -webkit-transform: scale(1.3);
        -moz-transform: scale(1.3);
        -ms-transform: scale(1.3);
        -o-transform: scale(1.3);
        transform: scale(1.3);
    }
}

#notification{
    position: fixed;
    top: 20px;
    right: 25px;
    z-index: 99999999999999;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding: 10px;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.63);
    cursor: pointer;
    animation-name: anot;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    transition: 2s;
    display: none;
}

.show{
    display: block !important;
}

#notification p{
    position: absolute;
    text-align: center;
    left: 0;
    top: 20px;
    color: #444240 !important;
    width: 100%;
    font-size: 10px !important;
}

/* /NOTIFICATION */


/* TITULOS */

header a{
    text-decoration: none;
}

.header{
    padding: 5% 10%;
    background-color: #444240;
}

.header a{
    color: #d6d6d6;
}

#sitemap{
    padding: 0 10% 5% 10%;
    height: calc(90% - 54px);
}

h3{
    font-size: 40px;
    color: white;
    font-family: "Gotham Black" !important;
}

h4{
    padding: 8px;
    background-color: #cecece;
    color: white;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

h5{
    font-size: 25px;
    color: #fff;
    font-family: "Gotham Black" !important;
    margin: 0px auto 15px auto;
}

h6{
    font-size: 20px;
    color: #45b29d;
    font-family: "Gotham Black" !important;
    margin: 0px auto 15px auto;
}

p{
    font-size: 13px;
    text-align: left;
    color: white;
}

.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 10px;
}

.grid-item {
    padding: 20px;
    /*font-size: 30px;*/
    text-align: left;

    -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
    -moz-animation: fadein 2s; /* Firefox < 16 */
    -ms-animation: fadein 2s; /* Internet Explorer */
    -o-animation: fadein 2s; /* Opera < 12.1 */
    animation: fadein 2s;
}

.grid-container .grid-item li{
    margin: 5px auto;
}

.grid-container .grid-item > a{
    text-decoration: none;
}

ul{
    list-style: none !important;
}

/* /TITULOS */

body > section{
    position: relative;
    background-color: white;
    width: calc(100% - 200px);
    float: left;
    height: 63px;
    overflow: auto;
    margin-left: 200px;
    transition: .3s;
}

section #informe{
    padding: 5% 10%;
}

section #reports label{
    margin: 5px 40px;
    width: calc(100% - 80px);
    vertical-align: middle;
}

section #reports label select{
    width: auto !important;
    display: inline-block !important;
    vertical-align: middle;
}

.grafico{
    overflow: hidden;
}

.grafico > div{
    overflow: hidden;
}

.grafico h5{
    margin: 15px auto;
}

.graph{
    cursor: pointer;
}

.item-grafico{
    margin-top: 30px;
    width: 50%;
    overflow: hidden;
    float: left;
    position: relative;
}

.item-grafico-3{
    margin-top: 30px;
    width: 33.333333333%;
    overflow: hidden;
    float: left;
    position: relative;
}

@media all and (max-width: 900px){
    .item-grafico-3{
        width: 50%;
        overflow: hidden;
        float: left;
        position: relative;
    }
}

@media all and (max-width: 600px){
    .item-grafico-3{
        width: 100%;
        overflow: hidden;
        float: left;
        position: relative;
    }
}

@media all and (max-width: 800px) {
    .item-grafico{
        width: 100%;
    }
    section #reports label select{
        width: calc(100%) !important;
        display: block !important;
    }
}

.item-grafico-full{
    margin-top: 30px;
    width: 100%;
    overflow: hidden;
    float: left;
    position: relative;
}

#expand{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999999999999999999;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 5% 10%;
    display: none;
}

#expand div{
    display: none;
    height: 100%;
}

#close-expand{
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 999999999999999999999;
    display: block !important;
    cursor: pointer;
}

.expand{
    position: absolute;
    right: 1%;
    top: 1%;
    z-index: 99999;
    border-radius: 4px;
    border: 1px #e9e9e9 solid;
    padding: 5px 10px;
    box-shadow: 0 0 5px #ddd;
    cursor: pointer;
}

/*canvas{
    height: 50vh;
}*/

section .container{
    border: 1px #ddd solid;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
    padding: 10px;
    display: none;
}

b{
    font-family: "Gotham Rounded Bold";
}


h2 b{
    font-weight: lighter;
    font-size: 2.8vw;
    line-height: 1vw;
}

@media all and (max-width: 800px){
    #titulo h2 > img{
        width: 20%;
    }

    #titulo h2 > p{
        font-size: 7.5vw;
    }

    h2 b{
        font-size: 6.3vw;
    }
}



@media all and (max-width: 800px){
    .container h3{
        font-size: 5vw;
        padding: 3%;
        text-align: center;
        color: #444240;
    }

    .container p{
        font-size: 4vw;
        text-align: center;
    }
}

@keyframes animacarrega {
    from{
        opacity: 0;
    }to{
         opacity: 1;
     }
}

#supcarregando{
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
    z-index: 999999999999999999999999999;
    padding: 100%;
    background: rgba(0, 0, 0, 0.65);
    display: none;

    animation-name: animacarrega;
    animation-fill-mode: forwards;
    animation-duration: 1s;
}

#supcarregando i{
    color: #444240;
}

input[type='text'], input[type='number'], input[type='date'], input[type='time'], textarea, input[type='tel'], input[type='password'], input[type='email'], input[type='search'], select{
    width: calc(100% - 16px);
    padding: 8px;
    /*border-radius: 6px;*/
    border: none;
    box-shadow: inset 0 0 20px rgba(60, 60, 60, 0.05);
    font-size: 14px;
    background: #dddddd;
}

textarea{
    max-width: calc(100% - 16px);
    min-width: calc(100% - 16px);
}

input:disabled{
    opacity: .5 !important;
}

/*canvas{
    background: white;
    fill: white;
}*/

select{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;

    background-image:
            linear-gradient(45deg, transparent 50%, gray 50%),
            linear-gradient(135deg, gray 50%, transparent 50%),
            linear-gradient(to right, #dddddd, #dddddd);
    background-position:
            calc(100% - 17px) calc(1em + 2px),
            calc(100% - 12px) calc(1em + 2px),
            calc(100% - 2.5em) 0.5em,
            1em;
    background-size:
            5px 5px,
            5px 5px,
            1px 1.5em;
    background-repeat: no-repeat;

    width: calc(100%);
    padding: 8px;
    padding-right: 50px;
    border-radius: 0;
    /*border: 1px #ddd solid;*/
    box-shadow: inset 0 0 20px rgba(60, 60, 60, 0.05);
    font-size: 14px;
}

textarea{
    min-height: 100px;
}


label{
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    font-size: 12px;
}

.button{
    display: block;
    text-align: right;
    margin-top: 20px;
}

.button button{
    border: 2px solid #444240;
    /*border-radius: 4px;*/
    background: none;
    padding: 10px;
    display: inline-block;
    overflow: hidden;
    transition: 1s;
    text-align: center;
    cursor: pointer;
    background: #fff;
    font-size: 13px;
}

.apres{
    border: none !important;
    border-top: 2px solid #444240 !important;
    border-left: 2px solid #444240 !important;
    border-radius: 0 !important;
    border-top-left-radius: 7px !important;
}

.button button div:nth-child(1){
    float: left;
    overflow: hidden;
    transition: 1s;
}

.button button p{
    text-align: center;
    color: #444240;
    /*letter-spacing: 2px;*/
    float: left;
    transition: 1s;
    overflow: hidden;
    font-family: "Gotham Rounded Bold" !important;

}

.button button div:nth-child(2){
    float: left;
    vertical-align: middle;
    transition: 1s;
    width: 0;
}

.button button i{
    color: #444240;
    /*height: 18px;
    line-height: 17px;*/
    vertical-align: middle;
    transition: 1s;
    opacity: 0;
    margin-left: 0px;
    font-size: 13px;
}

.button button:hover{
    background: #444240;
}

.button button:hover div:nth-child(1) p, .button button:hover div:nth-child(2) i{
    color: white !important;
}

.button button:hover div:nth-child(2){
    width: 22px;
    margin-left: 8px;
}

.button button:hover div:nth-child(2) i{
    opacity: 1;
}

/* TABELAS */

#table{
    margin-top: 20px;
    /*border-radius: 7px; */
    overflow: hidden;
    overflow-x: auto;
    font-size: 13px;
    width: 100%;
}
#table1{
    margin-top: 20px;
    /*border-radius: 7px; */
    overflow: hidden;
    overflow-x: auto;
    font-size: 13px;
    width: 100%;
}
#table2{
    margin-top: 20px;
    /*border-radius: 7px; */
    overflow: hidden;
    overflow-x: auto;
    font-size: 13px;
    width: 100%;
}
table{
    border-collapse: collapse;
    width: 100%;
}

table a{
    cursor: pointer !important;
}

thead tr{
    background-color: #444240;
    color: white;
    cursor: pointer;
}

thead tr th:first-child{
    border-top-left-radius: 7px;
}

thead tr th:last-child{
    border-top-right-radius: 7px;
}

tbody tr:nth-child(even){
    background-color: rgba(0, 0, 0, 0.03);
}

tbody tr:last-child td:first-child{
    border-bottom-left-radius: 7px;
}

tbody tr:last-child td:last-child{
    border-bottom-right-radius: 7px;
}

th{
    font-family: "Gotham Black";
}

td, th{
    padding: 8px;
    text-align: center;
    border-right: 1px rgba(221, 221, 221, 0.18) solid;
}

td:last-child, th:last-child{
    border: none;
}

i{
    color: #444240 !important;
}

th:nth-child(1), td:nth-child(1){
    width: 30px;
}

/* /TABELAS */

/* INDEX */

.div_login{
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 250px;
    overflow: auto;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.4);
}

.div_cadastro{
    background-color: #fff;
    margin: 30px auto;
    width: 250px;
    overflow: auto;
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.4);
}

/* /INDEX */


/* MENU */

.logo{
    text-align: center;
    padding: 20px 10px;
}

.menu-left{
    float:left;
    background-color: #fff;
    width: 200px;
    box-shadow: inset -10px 0px 23px -15px rgba(0, 0, 0, 0.18);
    overflow: auto;
}

.ic-menu{
    margin-right: 10px;
    text-align: center;
    width: 20px;
    height: 100%;
    display: inline-block;
}

/* /MENU */


/* MENSAGEM */

.msg{
    padding: 10px;
    background-color: rgba(135, 197, 128, 0.33);
    border: 1px solid #80c077;
    margin-bottom: 20px;
    border-radius: 5px;
    color: #80c077;
}

.msg p{
    margin: 0 auto;
}

.erro{
    background-color: rgba(158, 79, 95, 0.15);
    border: 1px solid #9e4f5f;
    color: #9e4f5f;
}

.adv{
    background-color: rgba(158, 128, 72, 0.15);
    border: 1px solid #9e8302;
    color: #9e8302;
}

.sim{
    width: 70px;
    height: 32px;
    background-color: rgb(135, 197, 128);
    color: white;
    padding: 8px;
    font-size: 15px;
    border-radius: 5px;
    margin: 5px;
    line-height: 40px;
}

.sim:hover, .nao:hover{
    color: white;
    opacity: .7;
}

.nao{
    width: 70px;
    height: 32px;
    color: white;
    padding: 8px;
    font-size: 15px;
    border-radius: 5px;
    background-color: rgb(182, 102, 117);
    margin: 5px;
    line-height: 40px;
}

/* /MENSAGEM */


/*.btnmenu{
    display: none;
    background-color: #444240;
    position: absolute;
    right: -40px;
    top: 80px;
    height: 40px;
    width: 40px;
    z-index: 99999999999999;
    font-size: 13px;
    text-align: center;
}*/

.btnmenu{
    display: block;
    background-color: #444240;
    padding: 10px;
    position: absolute;
    right: -38px;
    top: 0px;
    height: 17px;
    width: 17px;
    z-index: 99999999;
    /*border-bottom-right-radius: 7px;*/
    /*border-top-right-radius: 7px;*/
    color: white;
    box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.31);
    font-size: 6px;
    transition: none !important;
    cursor: pointer;
}

.btnmenu i{
    color: white !important;
    transition: none !important;
}


@media all and (max-width: 800px){

    header{
        position: absolute;
        top: 0;
        left: -200px;
        background-color: #f2f2f2;
        width: 200px;
        z-index: 99999999999;
    }

    .btnmenu{
        display: block;
        background-color: #444240;
        padding: 10px;
        position: absolute;
        z-index: 99999999999999;
        color: white;
        box-shadow: 5px 0px 10px rgba(0, 0, 0, 0.31);
        font-size: 6px;
        right: -38px;
        top: 0px;
        height: 17px;
        width: 17px;
        transition: none !important;
        cursor: pointer;
    }

    body > section{
        width: calc(100%);
        margin-left: 0 !important;
    }

    .grid-container {
        grid-template-columns: 1fr 1fr;
    }
}

.div-perms label{
    display: inline-block !important;
    vertical-align: middle !important;
    width: 150px !important;
}

.div-perms > div{
    margin: 15px auto;
}

#map *{
    -moz-transition: none;
    -webkit-transition: none;
    -o-transition: color 0 ease-in;
    transition: none;
}

.noTrans *{
    -moz-transition: none;
    -webkit-transition: none;
    -o-transition: color 0 ease-in;
    transition: none;
}



/* ANEXOS */


#preview{
    display: inline-block;
}

#div-input-file{
    display: inline-block;
    position: relative;
    margin: 5px;
    overflow: hidden;
    width: 150px;
    height: 150px;
    border-radius: 6px;
}

#div-input-file .file-original, #div-input-file .file-o{
    top: 0;
    left: 0;
    opacity: 0.0;
    -moz-opacity: 0.0;
    filter: alpha(opacity=00);
    position: absolute;
    width: 150px;
    height: 150px;
}
#div-input-falso{
    width: 150px;
    height: 150px;
}

#file-falso{
    background-image: url("../images/+menor.png");
    background-color: #444240;
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    width: 150px;
    height: 150px;
    transition: 1s;
}

#div-input-file:hover #file-falso{
    background-color: #45b29d;
}


.preview{
    display: inline-block;
}

.div-input-file{
    display: inline-block;
    position: relative;
    margin: 5px;
    overflow: hidden;
    width: 150px;
    height: 150px;
    border-radius: 6px;
}

.div-input-file .file-original, .div-input-file .file-o{
    top: 0;
    left: 0;
    opacity: 0.0;
    -moz-opacity: 0.0;
    filter: alpha(opacity=00);
    position: absolute;
    width: 150px;
    height: 150px;
}
.div-input-falso{
    width: 150px;
    height: 150px;
}

.file-falso{
    background-image: url("../images/+menor.png");
    background-color: #444240;
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    width: 150px;
    height: 150px;
    transition: 1s;
}

.div-input-file:hover .file-falso{
    background-color: #444240;
}

.anexo{
    float: left;
    overflow: hidden;
    border: 1px #ddd solid;
    border-radius: 7px;
    padding: 0;
    margin: 5px;
    height: 150px;
    position: relative;
}

.anexo img{
    padding: 0;
    margin: 0;
}


/* ANEXOS END */


/* UPLOAD */

.uploader {

    margin: 20px auto;

    position:relative;
    overflow:hidden;
    min-height:350px;
    border:7px dashed rgba(37, 65, 81, 0.17);
    text-align: center;
    background-color: #f9f9f9;

    width: 100%;
}

.uploader:hover, .uploader:focus {
    border:7px dashed rgba(37, 65, 81, 0.51);
}

.filePhoto{
    position:absolute;
    width: 100%;
    height: 100%;
    top:0;
    left:0;
    bottom:0;
    right:0;
    z-index:3;
    opacity:0;
    cursor:pointer;
    border: none;
    padding: 0;
}

.uploader img{
    object-fit: contain;
    max-width: 100%;
    /*height: 100%;*/
    z-index:2;
    border:none;
    margin: auto;
    /*position: absolute;*/
    /*top: 50%;*/
    /*left: 50%;*/
    /*-webkit-transform: translate(-50%, -50%);*/
    /*-moz-transform: translate(-50%, -50%);*/
    /*-ms-transform: translate(-50%, -50%);*/
    /*-o-transform: translate(-50%, -50%);*/
    /*transform: translate(-50%, -50%);*/
}

.uploader p{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 0;
    color: #6c6c6c;
    max-width: 100%;
    width: 250px;
    font-weight: bolder;
    font-size: 25px;
    cursor: pointer;
    margin: 0;
    text-align: center;
    font-family: "Gotham Black";
}

.btn-erase{
    color: white;
    padding: 7px;
    border-radius: 5px;
    cursor: pointer;
    margin: 20px auto;
}

.btn-erase:hover{
}

.blue{
    background-color: #52b6dd;
}

.blue:hover{
    background-color: #4595b7;
}

/* /UPLOAD */

#gallery{
    border: 1px solid #dddddd;
    border-radius: 10px;
    padding: 10px;
    text-align: center !important;
}

#gallery .arquivo{
    height: 120px;
    max-width: 100%;
    padding: 5px;
    margin: 3px;
    box-shadow: 0 0 5px #dddddd;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    border-radius: 3px;
}

#gallery .arquivo .remove{
    color: #AA0000;
    position: absolute;
    top: 0;
    right: 0;
    background: white;
    padding: 4px;
    border-radius: 3px;
}

#gallery .arquivo a i{
    color: #AA0000 !important;
}

#gallery .arquivo .acao{
    position: absolute;
    top: 0;
    left: 0;
    /*background: white;*/
    /*padding: 4px;*/
    /*border-radius: 3px;*/
}