@import url('https://fonts.googleapis.com/css2?family=Commissioner:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

:root {
    /* ===== Colors ===== */
    --body-color: #dfded9;
    --sidebar-color: #FFF;
    --primary-color: #198754;
    --primary-color-light: #F6F5FF;
    --toggle-color: #DDD;
    --text-color: #707070;
    /* ====== Transition ====== */
    --tran-03: all 0.2s ease;
    --tran-03: all 0.3s ease;
    --tran-04: all 0.3s ease;
    --tran-05: all 0.3s ease;
}

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

html {
    font-family: 'Commissioner', sans-serif;
    /*font-size: 62.5%;*/
}


body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif !important;
    display: flex;
    justify-content: space-around;
}

.off{
    opacity: 0;
}

.login-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.login-container .container{
    width: 100%;
    padding: 45px;
    border-radius: 15px;
    box-shadow: 20px 15px 94px -39px rgba(0,0,0,0.75);
    height: 100%;
    background-color: white;
}

.main-container {
    margin-left: 5%;
    width: 92vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    z-index: 1;
}

/*.main-alt-size {
    width: 84vw;
    margin-left: 13%;
    transition: 0.2s;
}*/

.btn-pet {
    background-color: var(--primary-color);
}

/* CONTAINER */
.container-card {
    width: 100%;
    height: 95%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 2px 15px 58px -16px rgba(0,0,0,0.75);
}


.containers-card {
    width: 100%;
    padding: 20px;
}

.header-card {
    width: 100%;
    height: 6%;
    padding: 20px;
}

.buttons-container{
    height: 10%;
}

.main-card{
    width: 100%;
    height: 80%;
    padding: 20px;
}

.text-container-header-card {
    font-size: 25px;
}

/* DETALHES */
.dataTables_filter {
    display: flex;
    padding: 5px;
    margin-right: 10px;
    justify-content: end;
}

.actions-list{
    display: flex;
    justify-content: space-around;
}

.form-edit-container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-edit{
    width: 80%;
    height: 80%;
}

.movimentacao-entrada {
    color: rgb(33, 201, 33);
}

.movimentacao-saida {
    color: red;
}

/* COMANDOS PARA RESPONSIVIDADE */
@media screen and (max-width: 1600px) {
    .main-container {
        width: 90vw;
        margin-left: 6%;
    }

    .main-alt-size {
        width: 82vw;
        margin-left: 14%;
    }
}

@media screen and (max-width: 1380px) {
    .main-container {
        margin-left: 7%;
    }

    .main-alt-size {
        width: 79vw;
        margin-left: 19.5%;
    }
}

@media screen and (max-width: 1180px) {
    .main-container {
        margin-left: 8%;
    }
}

@media screen and (max-width: 1080px) {
    .main-container {
        width: 88vw;
        margin-left: 9%;
    }

}