@font-face {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    src: url(https://fonts.gstatic.com/s/ptsans/v12/jizaRExUiTo99u79D0KExQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --body-height: calc(100vh - 153px);
    /* 55 header + 50 menu + 48 footer */
    --body-login-height: calc(100vh - 159px);
    /* 55 header + 50 menu + 48 footer + 6 page pad */
    --card-size: 150px;
    --card-size2: 300px;
    --card-size3: 450px;
    --card-size4: 600px;
}

/* ~~~~~~~~~~ BODY ~~~~~~~~~~ */

body {
    font-family: 'PT Sans';
    font-size: 12px;
    min-height: 100vh;
    max-width: 100vw;
    overflow-x: hidden;
}

#page-body {
    min-height: var(--body-height);
    overflow-x: hidden !important;
    padding-top: 10px;
}

.home-login #page-body {
    padding-top: 0px;
}

/* ~~~~~~~~~~ HEADER ~~~~~~~~~~ */

#header {
    align-items: center;
    background-color: #F3F3F3;
    color: #3B8751;
    display: flex;
    font-size: 1.8em;
    font-weight: 800;
    height: 55px;
    overflow-x: hidden;
    top: 0;
    z-index: 9;
}

#header .title {
    justify-content: center;
    text-align: center;
    width: 100%;
}

#header .dropdown {
    z-index: 9;
}

#header .dropdown-list {
    background-color: #F3F3F3;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    display: none;
    min-width: 100px;
    position: absolute;
    top: 50px;
}

#header .dropdown-list a {
    color: #3B8751;
    display: block;
    font-size: 14px;
    font-weight: normal;
    padding: 10px 10px;
    text-decoration: none;
}

#header .dropdown-list a:hover {
    background-color: #e7e7e7;
}

#header .dropdown:hover .dropdown-list {
    display: block;
    text-align: center;
}

#header .dropdown:hover .btn_login {
    background-color: #e7e7e7;
}

/* ~~~~~~~~~~ FOOTER ~~~~~~~~~~ */

#footer {
    align-items: center;
    background-color: #979797;
    bottom: 0;
    color: white;
    display: inline-flex;
    font-style: italic;
    height: 48px;
    justify-content: space-between;
    margin-top: auto;
    overflow-x: hidden;
    width: 100%;
    z-index: 1;
}

#footer a {
    color: white;
    text-decoration: none;
}

#footer a:hover {
    filter: drop-shadow(0 3px 3px rgb(0 0 0 / 40%));
}

.footer-e {
    font-size: 16px;
    padding-left: 10px;
}

.footer-d {
    font-size: 15px;
    padding-right: 10px;
}

/* ~~~~~~~~~~ IMG ~~~~~~~~~~ */

.cagarras-logo {
    background-image: url("../img/logos/logo_cagarras.svg");
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
    float: left;
    height: 55px;
    margin-left: 5px;
    margin-right: 10px;
    width: 55px;
}

.funbio-logo {
    background-image: url("../img/logos/TAC_Apoio_a_UCs_barra_horizontal_cor.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    height: 150px;
    margin-bottom: 10px;
    width: 100%;
}

.row-logos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    height: 100px;
}

.logos {
    height: 200px;
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    align-content: stretch;
}

.funbio-logo2 {
    background-image: url("../img/logos/TAC_Apoio_a_UCs_barra_horizontal_cor.png");
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 10px;
    width: 100%;
    background-position: center;
}

.mona-logo {
    background-image: url("../img/logos/logo_cagarras.svg");
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 5px;
    margin-right: 10px;
    width: 70px;
}

.icmbio-logo {
    background-image: url("../img/logos/logo-icmbio-colorido.svg");
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 5px;
    margin-right: 10px;
    width: 70px;
}

.brasil-logo {
    background-image: url("../img/logos/logo-republica.svg");
    background-repeat: no-repeat;
    background-size: contain;
    margin-left: 5px;
    margin-right: 10px;
    width: 70px;
}

.ico {
    cursor: pointer;
}

.ico-small {
    height: 17px;
    width: auto;
}

.ico:hover {
    filter: drop-shadow(0 3px 3px rgb(0 0 0 / 40%));
    -webkit-filter: drop-shadow(0 3px 3px rgb(0 0 0 / 40%));
}

.ico-direita {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    padding-top: 20px;
}

.ico-expand {
    cursor: pointer;
    position: absolute;
    bottom: 3px;
    left: 3px;
    width: 15px;
}

.ico-trash {
    cursor: pointer;
    position: absolute;
    bottom: 4px;
    left: 22px;
    width: 12px;
    opacity: 0.7;
}

/* ~~~~~~~~~~ MENU BAR ~~~~~~~~~~ */

.menu {
    background-color: #3B8751;
    height: 50px;
    text-align: center;
    top: 55px;
    /* width: 100vw; */
    z-index: 7;
}

.menu ul {
    display: inline-flex;
    justify-content: space-around;
    z-index: 9;
}

.menu li, .horizontal-cb li {
    list-style: none;
    min-width: 112px;
}

.horizontal-cb {
    justify-content: space-around !important;
}

.menu a {
    color: white;
    display: block;
    font-size: 1.3em;
    font-weight: 600;
    padding: 15px 20px;
    text-decoration: none;
    transition: background-color 0.5s, color 0.5s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.menu-login ul {
    display: none;
}

@media (max-width: 900px) {
    .menu a {
        font-size: 1.2em;
        padding: 15px 16px 16px 16px;
    }
    @media (max-width: 850px) {
        .menu a {
            font-size: 1.1em;
            padding: 16px 14px 17px 14px;
        }
        @media (max-width: 820px) {
            .menu a {
                font-size: 1.0em;
                padding: 17px 12px 18px 12px;
            }
        }
    }
}

body.visitacao li.visitacao a, 
body.mergulho-noturno li.mergulho-noturno a, 
body.especies li.especies a, 
body.perfil-satisfacao li.perfil-satisfacao a, 
body.ocorrencias li.ocorrencias a, 
body.sobre li.sobre a, 
body.configuracoes li.configuracoes a, 
body.home-login li.home-login a {
    background-color: #F69226;
}

/* ~~~~~~~~~~ TEXT ~~~~~~~~~~ */

h1, h2, legend {
    color: #ECAD4F;
    padding: 8px 8px;
}

legend {
    padding: 6px 4px;
}

h3, .destack {
    color: #00541F;
    padding: 8px 4px;
    text-align: center;
}

.destack {
    font-size: 2.5em;
    font-weight: 900;
    letter-spacing: 4px;
}

table caption {
    color: #ECAD4F;
    font-size: 1.5em;
    font-weight: 500;
    padding: 8px 1px;
    text-align: left;
}

label {
    color: #00541F;
    font-size: 1em;
    font-weight: 700;
    overflow-wrap: break-word;
    overflow: hidden;
    padding-bottom: 1px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.big-label {
    font-size: 2em;
    font-weight: 700;
}

@media (max-width: 800px) {
    h3 {
        font-size: 1.12em;
    }
}

@media (max-width: 700px) {
    h1, h2, h3 legend, label, p, .big-label {
        letter-spacing: -0.5px !important;
    }
    h3 {
        font-size: 1.1em;
    }
    .textolongo {
        font-size: 0.95em;
    }
    .big-label {
        font-size: 1.8em;
    }
}

@media (max-width: 600px) {
    .textolongo {
        font-size: 0.85em;
    }
    .textolongo2 {
        font-size: 0.9em;
    }
}

.modal label {
    font-style: normal;
    font-weight: 400;
}

.modal h2 {
    padding: 0;
}

.m-login .modal_x, .m-login label {
    color: #F4F4F4 !important;
}

p {
    color: #00541F;
    font-size: 1.17em;
    padding: 8px 4px;
    text-align: justify;
}

.small-text {
    color: #00541F;
    font-size: small;
}

.modal p {
    margin-top: 2%;
}

/* ~~~~~~~~~~ FIELDSET ~~~~~~~~~~ */

fieldset {
    border-color: #054A20;
    border-radius: 10px;
    border-width: 1.5px;
    margin: 0 0.5%;
    padding-top: 0;
    padding-bottom: 0.2em;
    padding-left: 0.5em;
    padding-right: 0.5em;
}

.fieldset-duo {
    width: 100%;
}

legend {
    font-size: 1.4em;
    font-weight: 900;
    margin-left: 0.4em;
}

.group-fieldset {
    display: flex;
    flex-direction: row;
    width: 99%;
}

@media (min-width: 1200px) {
    .group-fieldset {
        flex-direction: column;
    }
}

/* ~~~~~~~~~~ FORMS ~~~~~~~~~~ */

input, 
select, 
textarea, 
datalist, 
.input-list {
    background-color: #fff;
    color: #00541F;
    border: 1px solid #707070;
    border-radius: 4px;
    font-family: 'PT Sans' !important;
    font-size: 1em !important;
    margin: 0 0 4px 0;
    padding: 5px;
    width: auto;
}

input:disabled, 
select:disabled, 
textarea:disabled, 
datalist:disabled, 
.input-list:disabled {
    background-color: #5ca6ac46 !important;
}

select {
    height: 2.25em;
    padding: 4px;
}

datalist {
    position: absolute;
    border-radius: 0;
    margin: 0;
    max-height: 15rem;
    max-width: 30rem;
    min-width: 10rem;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0px;
    width: auto;
    z-index: 1000;
}

.combo-list {
    cursor: pointer;
}

option {
    background-color: #FAFAFA;
    color: #00541F;
    cursor: pointer;
    padding: 5px;
    z-index: 1000;
}

option:hover, .active{
    background-color: rgb(35,144,250);
    color: white;
    cursor: pointer;
}

input[type=text] {
    background: url(../img/ico-magn.svg) no-repeat scroll 3px 4px;
    /* background-color: #00541F; */
    padding-left: 8px;
    text-indent: 15px;
}

@media (max-width: 880px) {
    input[type=text]:active, input[type=text]:focus {
        background-color: #fff;
        background: #fff;
        padding-left: 2px;
        text-indent: 2px;
    }
}

input[type=date] {
    padding: 3.8px 5px 4.5px 5px;
}

::-webkit-calendar-picker-indicator {
    cursor: pointer;
    padding: 0%;
}

::-webkit-clear-button, ::-webkit-inner-spin-button {
    display: none;
}

.form-msg-error {
    color: red;
    font-size: 16px;
    font-weight: bold;
    background-color: yellow;
    padding: 5px 10px;
    border-radius: 10px;
    cursor: default;
    margin: 25px auto;
    display: none;
    text-align: center;
}

.modal .form-msg-error {
    color: red;
    font-size: 12px;
    font-weight: bold;
    background-color: yellow;
    padding: 5px 10px;
    border-radius: 10px;
    cursor: default;
    margin: 10px auto 0px auto;
    display: none;
    text-align: center;
}

.modal input, 
.modal select, 
.modal textarea, 
.modal datalist, 
.modal .input-list {
    background: none;
    font-size: 1.2em;
    text-indent: 0;
}

/* ~~~~~~~~~~ DROPDOWN ~~~~~~~~~~ */

.dropdown-check-list {
    display: inline-block;
    min-width: 114px;
}

.dropdown-check-list .anchor {
    background-color: #fff;
    border: 1px solid #707070;
    border-radius: 4px;
    color: #00541F;
    cursor: pointer;
    display: inline-block;
    font-family: 'PT Sans' !important;
    font-size: 1em !important;
    height: 25px;
    margin: 0 0 5px 0;
    padding: 5px 9px 5px 5px;
    position: relative;
    width: auto;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.dropdown-check-list .anchor:after {
    position: absolute;
    content: "";
    border-left: 2px solid black;
    border-top: 2px solid black;
    padding: 2.2px;
    right: 6px;
    top: 25%;
    -moz-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}

.dropdown-check-list .anchor:active:after {
    right: 8px;
    top: 21%;
}

.dropdown-check-list ul.items {
    padding: 2px;
    display: none;
    margin: 0;
    border: 1px solid #ccc;
    /* border-top: none; */
}

.dropdown-check-list ul.items li {
    align-items: flex-start;
    display: flex;
    list-style: none;
    margin: 2px;
    /* word-break: break-all; */
    word-wrap: break-word;
}

.dropdown-check-list input[type="checkbox"] {
    margin: 2px 4px 2px 0;
}

.dropdown-check-list.visible .anchor {
    color: #0094ff;
}

.dropdown-check-list.visible .items {
    background-color: white;
    box-shadow: 0 -1 0.5px rgba(0 0 0 / 40%);
    display: block;
    position: absolute;
    width: 100%;
    top: 36px;
    z-index: 1000;
}

/* ~~~~~~~~~~ TABLE ~~~~~~~~~~ */

#page-body table {
    border-radius: 8px;
    border-collapse: collapse;
    color: #00541F;
    overflow: hidden;
    table-layout: fixed;
    height: calc(var(--card-size3) - 40px);
    width: auto;
}

.ocorrencias table {
    height: calc(var(--card-size2) - 40px) !important;
}

.configuracoes table {
    min-height: auto !important;
}

#page-body tbody {
    display: block;
    width: 100%;
}

#page-body thead {
    background-color: white;
    height: 36px;
    overflow: hidden;
}

.especies thead {
    height: 32px !important;
}

#page-body thead th {
    font-style: italic;
    font-weight: 800;
    word-wrap: break-word;
}

@media (min-width: 880px) {
    #page-body thead th {
        word-wrap: normal;
    }
}

#page-body thead, #page-body tbody tr {
    display: table;
    table-layout: fixed;
    width: 100%;
}

#page-body th, #page-body td {
    padding: 8px 5px;
    text-align: center;
    vertical-align: middle;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.visitacao th, .visitacao td {
    width: calc(100% / 6);
}

.especies th, .especies td,
.ocorrencias th, .ocorrencias td {
    width: calc(100% / 5);
}

#page-body tbody tr {
    background-color: #f3dfc9;
}

#page-body tbody tr:nth-child(even) {
    background-color: #F4F4F4;
}

#page-body tbody tr:nth-child(odd):hover {
    background-color: #cfc6b8;
}

#page-body tbody tr:nth-child(even):hover {
    background-color: #bdbdbd;
}

#page-body tbody td {
    word-wrap: break-word;
}

.small-cell {
    width: 30px !important;
}

.txtpermissoes {
    padding: 4px;
    border-radius: 2px;
    font-weight: bold;
    color: white;
    margin: 0px 3px;
    cursor: default;
}

.txtpermissoes-equipe {
    background-color: #a96d2d;
}

.txtpermissoes-trilha {
    background-color: #0e4e6a;
}

.txtpermissoes-mergulho {
    background-color: #054A20;
}

/* ~~~~~~~~~~ BUTTONS ~~~~~~~~~~ */

button {
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    opacity: 1;
    text-align: center;
    text-decoration: none;
    transition-duration: 0.4s;
}

button:disabled, button:hover:disabled {
    background-color: lightgray;
    cursor: default;
}

.btn_white {
    background-color: #F3F3F3;
    box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.2);
    color: #307D66;
    font-size: 1.2em;
    font-weight: 700;
    padding: 15px 30px;
}

.btn_white:hover {
    background-color: #eeeeee;
}

.btn_white:active {
    background-color: #e0e0e0;
    box-shadow: 0 3px 16px 0 rgba(0, 0, 0, 0.4);
    transform: translateY(2px);
}

.btn_login_home {
    font-size: 26px;
    color: #a96d2d;
}

.btn_std, .btn_red, .btn_blue, 
.btn_grey, .btn_back {
    border: 1.5px solid #707070;
    color: white;
    font-size: 0.9em;
    font-weight: 700;
    margin-bottom: 5.5px;
    padding: 6.5px 13px;
}

@media (min-width: 800px) {
    .btn_std, .btn_red, .btn_blue, 
    .btn_grey, .btn_back {
        font-size: 1em;
        margin-bottom: 0.5%;
        padding: 10px 20px;
    }
}

.btn_ico {
    display: inline-flex;
    align-items: center;
}

.btn_std {
    background-color: #669A44;
}

.btn_std:hover {
    background-color: #45682d;
}

.btn_blue {
    background-color: #26A9E0;
}

.btn_blue:hover {
    background-color: #1c82ad;
}

.btn_red {
    background-color: #FF5F5F;
}

.btn_red:hover {
    background-color: #c44949;
}

.btn_back {
    background-color: #F69226;
}

.btn_back:hover {
    background-color: #d47d20;
}

.btn_grey {
    background-color: grey;
    border: 1px solid #F3F3F3;
    border-radius: 4px;
    color: #307D66;
    font-weight: 600;
    font-size: 1.2em;
}

.btn_login {
    background-color: #F3F3F3;
    border: none;
    color: #3B8751;
    cursor: pointer;
    height: 55px;
    min-width: 100px;
}

.btn_login div {
    font-style: italic;
}

.userdata {
    font-size: 14px;
    padding: 10px;
    font-weight: normal;
}

.btn_x {
    color: #606060;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.btn_close {
    background-color: #fff;
    cursor: pointer;
    font-size: 1.3em;
    position: absolute;
    top: 3px;
    right: 3px;
    width: 20px;
}

.btn_close:hover {
    box-shadow: 0 0 6px rgba(0 0 0 / 40%);
}

/* ~~~~~~~~~~ DIV ~~~~~~~~~~ */

.hidden {
    display: none;
}

.scroll-y {
	overflow-y: auto;
}

.opacity0 {
    opacity: 0;
}

.opacity1 {
    opacity: 1;
}

.inline-flex {
    display: inline-flex;
    justify-content: space-between;
}

.column {
    flex-direction: column;
}

.flex {
    display: inline-flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 5px 0.5%;
    width: 100%;
}

.flex-item {
    display: inline-flex;
    flex: 1 1 0;
    height: 45px;
    justify-content: flex-end;
    /* margin: 0.5%; */
    position: relative;
}

.flex .child {
    flex: 1 1 25% !important;
}

.flex-graph {
    min-width: 350px;
}

@media (max-width: 1081px) {
    .grid {
        gap: 0 0.5%;
    }

    .grid .flex-item {
        margin-bottom: 0.5%;
    }

    .grid .flex-item:nth-child(3n + 1) {
        order: 1;
    }
    
    .grid .flex-item:nth-child(3n + 2) {
        order: 2;
    }
    
    .grid .flex-item:nth-child(3n) {
        order: 3;
    }
    
    .grid::before,
    .grid::after {
      content: "";
      flex-basis: 100%;
      width: 0;
      order: 2;
    }
}

.flex-even {
    justify-content: space-evenly;
}

.grow2 {
    flex: 2 1 0;
}

.grow3 {
    flex: 3 1 0;
}

.shink2 {
    flex: 1 2 0;
}

.no-wrap {
    flex-wrap: nowrap;
}

.w100 {
    width: 100%;
}

.w50 {
    width: 50%;
}

.w33 {
    width: calc(100% / 3);
}

.h100 {
    height: calc(var(--body-height) - 10px);
}

.hcenter {
    display: inline-flex;
    justify-content: center !important;
    align-items: center;
}

.vcenter {
    text-align: center;
    vertical-align: middle !important;
}

.std_vw {
    margin: 0 0.5%;
    width: 99%;
}

.m-top {
    margin-top: 0.5%;
}

.m-top-m {
    margin-top: -0.1%;
}

.m-top2 {
    margin-top: 1.5%;
}

.m-bottom {
    margin-bottom: 0.5%;
}

.m-right {
    margin-right: 0.5%;
}

.m-left {
    margin-left: 0.5%;
}

.box {
    border: 1.5px solid #054A20;
    border-radius: 8px;
}

.box-shadow {
    box-shadow: 0 0 6px rgba(0 0 0 / 40%);
}

.blur-bkg {
    background-image: url("../img/landscape/Luiz_Augusto_Correia_de_Araujo_9.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    opacity: 0.4;
    height: var(--body-height);
    width: 100%;
    z-index: 1;
}

#page-body .login {
    position: relative;
    height: 100%;
    width: 100%;
}

#page-body .link-sobre {
    margin-top: 40px;
    font-size: 14px;
    font-weight: bold;
    color:#00541F;
}

#page-body .login .box {
    background-color: #fafafa80;
    border: 0px;
    height: 50%;
    left: 70%;
    margin: 0;
    padding: 20px;
    position: absolute;
    top: 50%;
    -ms-transform: translate(-120%, -50%);
    transform: translate(-120%, -50%);
    width: 30%;
    z-index: 10;
}

@media (max-width: 900px) {
    #page-body .login .box {
        left: 50%;
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 50%;
    }
}

.login-box {
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.navbar {
    margin-top: 10px;
    height: 30px;
}

.dashboard {
    align-items: flex-start;
    display: inline-flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding: 0 0.5%;
}

.dash-item {
    display: inline-flex;
    justify-content: space-evenly;
    position: relative;
}

.card-w1, .card-w2, .card-w3 {
    flex: 1 1 var(--card-size);
    height: var(--card-size);
}

.card-shrink{
    flex: 0 2 var(--card-size) !important;
}

.card-w150 {
    max-width: var(--card-size);
}

.card-w2 {
    flex: 2 1 var(--card-size);
}

.card-w3 {
    flex: 3 1 var(--card-size);
}

.card-w4 {
    flex: 4 1 var(--card-size);
}

@media (max-width: 850px) {
    .visitacao .card-w2,
    .especies .card-w2,
    .ocorrencias .card-w2 {
        max-width: 425px;
    }
}

@media (max-width: 750px) {
    .visitacao .card-w2,
    .especies .card-w2,
    .ocorrencias .card-w2 {
        max-width: 375px;
    }
}

@media (max-width: 710px) {
    .card-w2 {
        flex: 1 1 var(--card-size);
    }
    
    .card-w3 {
        flex: 2 1 var(--card-size);
    }
    
    .card-w4 {
        flex: 3 1 var(--card-size);
    }
}

.card-small .card-w1 {
    max-height: var(--card-size);
}

.card-small h3 {
    font-size: 1em;
}

.card-h1 {
    height: var(--card-size);
}

.card-h2{
    height: var(--card-size2) !important;
}

.card-h3{
    height: var(--card-size3) !important;
}

.card-h4{
    height: var(--card-size4) !important;
}

.card-scroll {
    overflow: hidden;
    width: auto;
}

.card-scroll .scroll-item {
    height: calc((var(--card-size) *2) - 35px);
    width: auto;
}

.dash-map {
    border-radius: 8px;
    min-width: var(--card-size);
    padding: 0;
}

.export {
    display: inline-flex;
    align-items: center;
    color: #054A20;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 700;
    font-style: italic;
    padding: 5px;
    position: absolute;
    top: 120px;
    right: 15px;
}

.export::before {  
    content: url(../img/ico-sheet.svg) 
}

.painel {
    display: none;
}

#painel-nodata {
    text-align: center;
    margin: 50px;
    font-size: 18px;
    font-weight: bold;
    color: #df374e;
}

#painel-infoquestions {
    text-align: center;
    margin: 50px;
    font-size: 14px;
    font-weight: bold;
    color: #353535;
}

/* ~~~~~~~~~~ MAP ~~~~~~~~~~ */

#map {
    border: 1.5px solid #054A20;
    border-radius: 8px;
    height: var(--card-size);
    position: relative;
    width: 100%;
    z-index: 1;
}

/* ~~~~~~~~~~ MODAL ~~~~~~~~~~ */

.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
    from {
        -webkit-transform: scale(0)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@keyframes animatezoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

.modal {
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
    height: 100%;
    left: 0;
    overflow: auto;
    padding-top: 100px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.modal-header {
    padding: 10px 15px 0;
}

#report-modal .modal-header {
    background-color: #979797;
    padding: 0;
}

#report-modal .flex {
    align-items: center;
    height: 40px;
    justify-content: flex-end;
}

#report-modal .ico {
    height: 25px;
}

#report-modal .ico-small {
    height: 18px;
}

#report-modal .title1,
#report-modal .title2 {
    color: #000;
    font-weight: 700;
    text-align: center;
}

#report-modal .title2 {
    font-size: 1.5em;
}

.modal-chk-row {
    margin: 5px;
}

.modal-chk-row input {
    vertical-align: middle;
}

.modal-chk-row label {
    margin-left: 4px;
}

.modal-content {
    background-color: #fff;
    border: 1px solid #888;
    box-shadow: 0 3px 6px rgb(0 0 0 / 40%);
    margin: auto;
    padding: 0%;
    position: relative;
    width: 450px;
}

#report-modal .modal-content {
    height: fit-content;
    width: 640px;
}

#graph-modal .modal-content {
    height: fit-content;
    width: 80%;
}

@media (min-width: 2100px) {
    #graph-modal .modal-content {
        width: 65%
    }
}

.m-default {
    margin: auto;
    padding: 10px;
}

.bottom-modal {
    align-items: center;
    display: inline-flex;
    margin: 5% auto 0%;
    justify-content: center;
    width: 100%;
}

.m-default .bottom-modal {
    justify-content: space-around !important;
}

.modal_x {
    color: #307D66;
    cursor: pointer;
    font-size: 4em;
    position: absolute;
    top: -8px;
    right: 15px;
}

#report-modal table {
    border: none;
    border-collapse: collapse;
    color: #000;
    table-layout: fixed;
    height: 100%;
    width: auto;
}

#report-modal td {
    padding: 8px;
}

#report-modal .f-cell {
    font-weight: 900;
    font-size: 1.2em;
    padding: 6px 8px 0 0;
    vertical-align: top;
}

#report-modal .t-cell {
    text-align: justify;
    text-justify: inter-word;
}

/* ~~~~~~~~~~ IMAGEM SLIDER ~~~~~~~~~~ */

.hidden-overflow {
	overflow: hidden;
}

.image-slider {
	overflow-x: scroll;
	display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    align-content: center;
    align-items: stretch;
}

.image-in-slider {
	margin: 5px 5px 12px 5px;
    border: #666 2px solid;
    border-radius: 5px;
}

.image-slider::-webkit-scrollbar {
  height: 10px;               /* width of the entire scrollbar */
}

.image-slider::-webkit-scrollbar-track {
  background: #666;        /* color of the tracking area */
}

.image-slider::-webkit-scrollbar-thumb {
  background-color: #ECAD4F;    /* color of the scroll thumb */
  border-radius: 20px;       /* roundness of the scroll thumb */
  border: 2px solid #666;  /* creates padding around scroll thumb */
}

/* ~~~~~~~~~~ MISC ~~~~~~~~~~ */

.loadingimg {
    margin: 30px auto;
    padding: 30px;
}

canvas {
    border-radius: 0 0 8px 8px;
    height: auto;
}

#graph-modal canvas {
    border-radius: 0;
    height: 80%;
    width: 100%;
}

.canvas-h1 {
    height: calc(var(--card-size) - 36px) !important;
}

.canvas-h2 {
    height: calc((var(--card-size) *2) - 35px) !important;
}

.test-img1 {
    height: 480px;
    width: 600px;
}

.test-img2 {
    height: 1080px;
    width: 1080px;
}

.test-img2 {
    height: 1920px;
    width: 1024px;
}

.navigate {
    border-radius: 5px;
    color: #307D66;
    padding: 5px;
    text-decoration: none;
    transition: background-color .3s;
}

.navigate.active {
    color: #307D66;
    text-decoration: none;
}

.navigate:hover:not(.active) {
    background-color: #e0e0e0ce;
}

.result {
    border-radius: 5px;
    padding: 2px;
}

.result:hover {
    background-color: #e0e0e0ce;
}