/* General */
html {
    font-size: 100%;
}

* {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

th {
    font-weight: 600;
}

.highcharts-credits {
    display: none !important;
}

.highcharts-tooltip-container {
    z-index: 9000 !important;
}

.highcharts-axis-labels text,
.highcharts-label .highcharts-text-outline {
    font-weight: 700;
}

.modal-fullscreen .modal-dialog {
    width: 90%;
    height: 90%;
}

.modal-fullscreen .modal-body {
    height: calc(90vh - 100px);
    overflow: hidden;
}

@media (min-width: 1000px) {
    .modal-dialog-full {
        width: 95%;
        margin: 30px auto;
    }
}

.col-xs-5ths,
.col-sm-5ths,
.col-md-5ths,
.col-lg-5ths {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.col-xs-5ths {
    width: 20%;
    float: left;
}

@media (min-width: 768px) {
    .col-sm-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-5ths {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-5ths {
        width: 20%;
        float: left;
    }
}

html, body {
    min-height: 100%;
}

body {
    background: rgb(223, 203, 255);
    background: -moz-linear-gradient(0deg, rgba(223, 203, 255, 1) 0%, rgba(140, 68, 255, 1) 100%);
    background: -webkit-linear-gradient(0deg, rgba(223, 203, 255, 1) 0%, rgba(140, 68, 255, 1) 100%);
    background: linear-gradient(0deg, rgba(223, 203, 255, 1) 0%, rgba(140, 68, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#dfcbff", endColorstr="#8c44ff", GradientType=1);
}

.transitions {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

/* Loading */
.carregando {
    width: 60px;
    aspect-ratio: 1;
    --c: no-repeat linear-gradient(#BD362F 0 0);
    --d: no-repeat linear-gradient(#f1a417 0 0);
    --e: no-repeat linear-gradient(#67b168 0 0);
    background: var(--c) 0% 100%,
    var(--d) 50% 100%,
    var(--e) 100% 100%;
    animation: l2 1s infinite linear;
    margin: 10px auto;
}

.carregando:after {
    position: absolute;
    content: var(--carregando);
    margin-top: 60px;
    font-size: 0.63rem;
    padding-left: var(--mlCarregando);
}

@keyframes l2 {
    0% {
        background-size: 20% 100%, 20% 100%, 20% 100%
    }
    20% {
        background-size: 20% 60%, 20% 100%, 20% 100%
    }
    40% {
        background-size: 20% 80%, 20% 60%, 20% 100%
    }
    60% {
        background-size: 20% 100%, 20% 80%, 20% 60%
    }
    80% {
        background-size: 20% 100%, 20% 100%, 20% 80%
    }
    100% {
        background-size: 20% 100%, 20% 100%, 20% 100%
    }
}

/* Header */
#header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

#header-bg svg {
    position: relative;
    display: block;
    width: calc(128% + 1.3px);
    height: 120px;
}

#header-bg .shape-fill {
    fill: #9A33F6;
    filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 1));
}

body #header {
    position: sticky;
    padding: 15px;
    color: #fff;
    font-size: 2.25rem;
}

body #header .titulo {
    font-weight: 500;
}

body #header .item {
    font-size: 2.25rem;
    margin-top: 15px;
}

body #header .slogan {
    font-size: 1.25rem;
}

body #header .logo-sejusp {
    position: absolute;
    top: 15px;
    left: 60px;
}

body #header .logo-tjms {
    position: absolute;
    top: 15px;
    right: 10px;
}

#header .logo-sejusp-tjms {
    display: none;
}

#header .logo-sejusp-tjms .sejusp {
    float: left;
}

#header .logo-sejusp-tjms .tjms {
    float: right;
}

body #header .logo-sejusp img,
body #header .logo-tjms img,
body #header .logo-sejusp-tjms img {
    height: 65px;
}

body #header .logo-tjms img.idioma,
body #header .logo-sejusp-tjms img.idioma {
    cursor: pointer;
    height: 16px;
}

#header .toggleMenu {
    position: absolute;
}

#header .toggleMenu button {
    background: transparent;
    border: none;
    margin: 20px 0;
}

#header .toggleMenu button .icon-bar {
    border-bottom: 2px solid #fff;
    margin: 5px 0;
    width: 22px;
}

/* Menu lateral */
body.openMenu {
    padding-left: 300px;
}

#menu {
    background: #9A33F6;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 300px;
    height: 100%;
    margin-left: -300px;
    overflow: auto;
    padding: 20px;
}

#menu.openMenu {
    margin-left: 0;
}

#menu a {
    font-size: 1.13rem;
    color: #fff;
    cursor: pointer;
}

#menu table td.icone {
    width: 1%;
    white-space: nowrap;
    padding-right: 10px;
}

#menu table td {
    vertical-align: middle;
    padding: 5px 0;
}

/* Cards */
.card {
    background: rgba(255, 255, 255, .8);
    border-radius: 15px;
    border: 1px solid #e1e1e1;
    padding: 10px;
    box-shadow: 3px 3px 3px #8c44ff;
    margin-bottom: 30px;
    height: 100%;
}

.card-max {
    height: 100%;
}

.card-title {
    padding: 10px;
}

.card-title h4 {
    color: #333;
    font-size: 1.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.card-title .titulo {
    color: #333;
    font-size: 1.00rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    padding: 0 50px 10px 0;
    border-bottom: 2px solid #8c44ff;
    display: inline-block;
}

.card-title h1 {
    color: #8c44ff;
    font-size: 1.88rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    padding: 0;
}

.d-flex {
    display: flex;
    flex-wrap: wrap;
}

/* Content */
#sobre {
    display: none;
}

#apresentacao .cardView,
#sobre .cardView {
    padding: 0 20px;
}

#apresentacao .icone {
    padding: 15px 10px;
}

#apresentacao .icone a {
    font-size: 1.00rem;
    color: rgb(140, 68, 255);
    cursor: pointer;
}

#apresentacao .icone img {
    padding: 10px;
    border: 1px solid rgb(140, 68, 255);
    border-radius: 50%;
    margin-bottom: 5px;
}

#apresentacao .titulo-apresentacao {
    font-size: 0.875rem;
    font-weight: 700;
    margin: 0 0 10px;
}

#sobre .todos-por-elas img {
    max-width: 100%;
}

#sobre .info {
    display: flex;
}

#sobre .info .icone {
    padding: 0 10px;
}

#graficos {
    margin-bottom: 30px;
    display: none;
}

.listaRegistros {
    max-height: 500px;
    font-size: 0.875rem;
}

.listaRegistros label {
    font-weight: 300;
}

#modalAmpliarGrafico .modal-title span {
    text-transform: uppercase;
}

#campanha {
    font-size: 1.13rem;
    text-align: center !important;
    padding: 30px !important;
}

#campanha .totalizador {
    font-weight: bold;
}

#campanha img {
    max-height: 64px;
}

#campanha img.logo-principal {
    max-height: 130px;
}

#campanha span.icone {
    font-size: 2.81rem;
}

.acaoMapa:has(#municipio) {
    width: 200px !important;
}

#municipio {
    height: 20px;
    line-height: 20px;
    font-size: 0.50rem;
}

.selecionarAno {
    width: 160px;
}

.icones-rodape .row {
    display: flex;
    align-items: center;
}

.icones-rodape img {
    max-width: 100%;
    max-height: 46px;
}

.marcadores span:not(.legenda) {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 1px solid #333;
    border-radius: 5px;
    position: absolute;
}

.marcadores .marcador {
    position: relative;
}

.marcadores span.legenda {
    padding-left: 30px;
}

.marcadores span.roxo {
    background: rgb(149, 82, 255);
}

.marcadores span.cinza {
    background: rgb(220, 220, 220);
}

.compnet {
    text-align: right;
    font-size: 0.56rem;
}

/* Select2 */
.select2-selection__rendered {
    line-height: 14px !important;
}

.select2-selection {
    height: 26px !important;
}

.select2-container,
.select2-container--bootstrap .select2-selection--single .select2-selection__rendered,
.select2-selection__placeholder {
    color: #333 !important;
}

/* Adequação Select */
.customSelect {
    font-size: 0.875rem;
    font-weight: 400;
    color: #aaa;
    padding: 7px 10px;
    height: 34px !important;
}

.customSelect option {
    font-weight: 700;
    color: #333;
}

/* Responsivo */
@media (max-width: 1475px) {
    body #header .titulo {
        width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 1280px) {
    .icones-rodape .row {
        display: block;
        margin-bottom: 0;
    }

    .icones-rodape .row div {
        margin-bottom: 20px;
    }
}

@media (max-width: 1120px) {
    body #header .titulo {
        width: 100%;
        margin: 0 auto;
        padding-left: 50px;
    }

    #header .logo-sejusp,
    #header .logo-tjms {
        display: none;
    }

    #header .logo-sejusp-tjms {
        display: block;
    }
}

@media (max-width: 650px) {
    .icones-rodape .row {
        display: block;
        margin-bottom: 0;
    }

    .icones-rodape .row div {
        margin-bottom: 20px;
    }

    #header .logo-sejusp-tjms {
        display: block;
        text-align: center;
    }

    #header .logo-sejusp-tjms img {
        float: none !important;
    }
}