@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";

:root {
    --main-color: #fff;
    --main-color1: #2b2b2b;
    --color-button-menu:#146883;
    --text-color: #003752;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: #fafafa;
    color: var(--text-color);
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}
h1 {
    font-size: 22px;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

#dv-cards {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-evenly;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 310px;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chart {
    width: 150px;
    height: 150px;
}

.legend {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.color-box {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 50%;
}

.card .label {
    height: 30px;
    align-items: center;
}

.card .texto {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.navbar {
    padding: 15px 10px;
    background: #fff;
    border: none;
    border-radius: 0;
    /* margin-bottom: 40px; */
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

i,
span {
    display: inline-block;
}

.dv-title {
    width: 100%;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    padding-left: 20px;
    height: 50px;
    display: flex;
    align-items: center;
}

.frm_error {
    border: 1px solid #FF0000;
}

.error {
    color: #FF0000;
    font-size: 12px;
    margin-top: 5px;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

.wrapper {
    display: flex;
    align-items: stretch;
}


/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    min-height: 100vh;
    transition: all 0.3s;
}

#content-data {
    margin: 10px;
}

.tb-list i {
    font-size: 1.5em;
    color: #999;
}

.tb-list .ico-edit {
    color: var(--primary);
}

.tb-list .ico-delete {
    color: var(--danger);
}

.campo_datas {
    display: flex;
    width: 100%;
    /* float: left; */
}

.div-data {
    padding: 20px;
    border: 0.2px solid #d1d1d1;
    background-color: rgb(243, 243, 243);
    border-radius: 2px;
}

.clicado {
    background-color: #0dcaf0 !important;
}

#sidebarCollapse {
    display: none !important;
}
.div-imprimir{
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0px 0px 20px 0px;
}

.div-imprimir button{
        width: 10%;
        margin-right: 2%;
}
.impressao_relatorio{
    width: 80%;
    justify-content: space-between;
    align-items: start;
    text-align: center;
    flex-direction: column;
    float: right;
}

@media (max-width: 990px) {

    #menu-relatorio span {
        font-size: 10px !important;
    }

    .campo_datas {
        display: flex;
        flex-direction: column;
        width: 80%;
        padding: 10px;
        justify-content: center;
    }

    .div-data {
        display: flex;
        justify-content: center;
    }

    .campo_datas input {
        text-align: center;
    }

    .campo_datas .buttons {
        display: flex;
        justify-content: space-between;
        margin-top: 15px;
    }

    .campo_datas button {
        margin-left: 0px !important;
    }

    #dv-cards {
        flex-direction: column !important;
        align-items: center;

    }

    .card {
        margin-top: 15px !important;
    }

    #sidebarCollapse {
        display: block !important;
    }

    .lista_backupimagens,
    .lista_backupdados,
    .lista_backupdatabase,
    .lista_backupdatabaselocal td {

        font-size: 12px !important;
        text-align: center;
        justify-content: center;
    }

    .img-login-mobile {
        display: block !important;
    }


}

@media (max-width: 1500px) {


    .campo_datas {
        display: flex;
        width: 80%;
        padding: 10px;
    }

    .div-data {
        display: flex;
        justify-content: center;
    }

    .campo_datas input {
        text-align: center;
    }

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

    #dv-cards {

        flex-wrap: wrap;
        align-items: center;
    }

    .card {
        margin-top: 15px !important;
    }

    .card .texto canvas {
        width: 250px !important;
    }

    .lista_backupimagens,
    .lista_backupdados,
    .lista_backupdatabase,
    .lista_backupdatabaselocal td {

        font-size: 12px !important;
        text-align: center;
        justify-content: center;
    }

    .img-login-mobile {
        display: block !important;
    }


}