﻿/*Autor: Pedro Cardoso*/
/*Data: 27/10/2019*/
/*Descrição: CSS Construido com base num template e adaptado à necessidade MG*/
/*Tipo de letra da empresa: Verdana*/
/*Cores padrão:
    HEX
    verde: #58a618
    verde claro: #bdd600
    rosa: #cf0072
    vermelho: #d52b1e
    roxo: #522398
    azul claro: #00a9e0

    RGB
    verde: rgb(88,166,24)
    verde claro: rgb(190,214,0)
    rosa: rgb(207,0,114)
    vermelho: rgb(213,43,30)
    roxo: rgb(82,35,152)
    azul claro: rgb(0,169,224)
*/

/*Para poder filtrar a tabela*/
.sort-th {
    cursor: pointer;
}

.fa {
    float: right;
}

#report-container {
    /*height: 300px;*/
    height: calc(0.5625 * 61vw); /* 16:9 aspect ratio */
}

iframe {
    border: none;
}

@media only screen and (max-width: 574px) {
    #report-container {
        height: calc(0.5625 * 100vw); /* 16:9 aspect ratio */
    }
}

app {
    position: relative;
    display: flex;
    flex-direction: column;
}

/*configuração para usar fotos dos funcionários em minituras*/

.miniaturafotoMG {
    max-height: 35px;
    max-width: 35px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
}

.fotoMG150x150 {
    max-height: 150px;
    max-width: 150px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
}

/*Configuração da animação do carregamento do site */

.sk-cube-grid {
    width: 80px;
    height: 80px;
    margin: 100px auto;
}

    .sk-cube-grid .sk-cube {
        width: 33%;
        height: 33%;
        background-color: #494e52;
        float: left;
        -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
        animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
    }

    .sk-cube-grid .sk-cube1 {
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }

    .sk-cube-grid .sk-cube2 {
        -webkit-animation-delay: 0.3s;
        animation-delay: 0.3s;
    }

    .sk-cube-grid .sk-cube3 {
        -webkit-animation-delay: 0.4s;
        animation-delay: 0.4s;
    }

    .sk-cube-grid .sk-cube4 {
        -webkit-animation-delay: 0.1s;
        animation-delay: 0.1s;
    }

    .sk-cube-grid .sk-cube5 {
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }

    .sk-cube-grid .sk-cube6 {
        -webkit-animation-delay: 0.3s;
        animation-delay: 0.3s;
    }

    .sk-cube-grid .sk-cube7 {
        -webkit-animation-delay: 0s;
        animation-delay: 0s;
    }

    .sk-cube-grid .sk-cube8 {
        -webkit-animation-delay: 0.1s;
        animation-delay: 0.1s;
    }

    .sk-cube-grid .sk-cube9 {
        -webkit-animation-delay: 0.2s;
        animation-delay: 0.2s;
    }

@-webkit-keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }

    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}

@keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }

    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}
