﻿body {
    font-family: 'Segoe UI','Open Sans',Roboto,-apple-system,system-ui,BlinkMacSystemFont;
}

.container {
    width: 100%;
}

@media (min-width: 1370px) {
    .container {
        max-width: 85%;
    }
}

@media (min-width: 700px) {
    .container {
        padding: 0 2rem;
    }
}

.filtroIndicador {
    float: left;
    min-width: 50px;
    width: 50px;
    max-width: 50px;
    height: 100%;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 10px;
    border-right: 1px solid #DCDCDC;
    display: flex;
    flex-direction: column;
}

    .filtroIndicador .btn {
        width: 40px;
        height: 40px;
        margin: 2px;
        border: 0;
        padding-top: 10px;
    }

.contentIndicadores {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.upIndicadores {
    max-width: 600px;
}

@media screen and (max-width: 800px) {
    .upIndicadores {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    .upIndicadores {
        max-width: 350px;
    }
}

@media screen and (max-width: 600px) {
    .filtroIndicador {
        min-width: 100%;
        width: 100%;
        max-width: 100%;
        height: auto;
        margin-top: 0px;
        margin-bottom: 10px;
        margin-left: 5px;
        border-right: none;
        display: flex;
        flex-direction: row;
    }

        .filtroIndicador:after {
            content: '';
            display: block;
            clear: both;
        }

        .filtroIndicador .btn {
            width: 40px;
            height: 40px;
            border: 1px solid #DCDCDC;
            margin-bottom: 2px;
            align-content: center;
        }

    .contentIndicadores {
        display: flex;
        flex-direction: column !important;
    }

    .wrapper {
        min-width: 100%;
        width: 100%;
        max-width: 100%;
    }

    .listaIndicadores {
        min-width: 100%;
        width: 100%;
        max-width: 100%;
    }
}

.icone-painel {
    position: absolute;
    right: 0;
    top: 0;
    margin: 10px;
    opacity: 0.5;
}

.form-signin {
    position: absolute;
    margin-top: -225px;
    top: 50%;
    height: 450px;
    margin-left: -230px;
    left: 50%;
    width: 460px;
}

@media (max-width: 600px) {
    .form-signin {
        position: relative;
        left: 0;
        top: 50px;
        margin: auto;
        width: 80%;
    }
}

.btn-acsn {
    width: 80px;
    height: 75px;
    background-color: #323232 !important;
}

.btn-disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: transparent;
}

.btn-disabled:hover {
    background-color: transparent;
}

.btn-acsn-lg {
    width: 120px;
    height: 100px;
}

.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url("../../Images/ajax-loader.gif") center no-repeat #fff;
}

.navbar-custom {
    background-color: #0070c0;
    color: rgba(255, 255, 255, 0.90);
    border-color: #0070c0;
}

.navbar-inverse .navbar-nav > li > a {
    color: rgba(255, 255, 255, 0.90);
}

.navbar-inverse .navbar-brand {
    color: rgba(255, 255, 255, 0.90);
}

.navbar-inverse .navbar-toggle {
    border-color: #0070c0;
}

.wrapper {
}

    .wrapper:after {
        content: '';
        display: block;
        clear: both;
        margin-bottom: 15px;
    }

.grid {
    float: left;
    display: inline-block;
    background: #FFFFFF;
    max-width: 125px;
}

.grid-duplo {
    max-width: 250px;
}

.grid-chart {
    max-width: 500px;
    width: 500px;
    height: 250px;
    background-color: #DCDCDC;
    align-content: center;
    border: 5px solid #fff;
    padding: 10px;
}

.grid-item {
    float: left;
    width: 125px;
    height: 125px;
    background-color: #DCDCDC;
    border: 5px solid #fff;
    padding: 10px;
    position: relative;
    display: flex;
    align-items: flex-end;
    border-radius: 0.75rem;
    -webkit-transition: 0.5s ease;
    -moz-transition: 0.5s ease;
    transition: 0.5s ease;
}

    .grid-item:hover {
        opacity: 0.9 !important;
        border: 5px solid lightgray;
        border-radius: 0.5rem;
        cursor: pointer;
    }

.grid-item-m {
    width: 250px;
}

.grid-item-d {
    width: 22rem;
    height: 9rem;
    overflow: hidden;
    background-color: lightgray;
    align-items: self-start;
}

.grid-item-g {
    width: 250px;
    height: 250px;
    /*display: table;*/
}

.ItemIndicadorResultado {
    float: none;
    font-size: medium;
    font-weight: 600;
    vertical-align: bottom;
}

.ItemIndicadorTexto {
    float: none;
    font-size: 0.85em;
    color: #323232;
    vertical-align: bottom;
}

.ItemIndicadorResultado-g {
    font-size: xx-large;
    text-align: center;
}

.ItemIndicadorTexto-g {
    font-size: x-large;
    text-align: center;
}

@keyframes scale {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.75;
    }

    100% {
        opacity: 1;
    }
}