:root {
    --primary-color: #fcaf17;
    --secundary-color: #595959;
    --font-family: "Roboto", 'Arial', sans-serif;
    --body-color: #6e6b69;
    --border-radius: 5px;
    --font-weight: 400;
    --font-style: normal;
    --font-size: 1.2rem;
}

body {
    overflow-x: hidden;
    font-family: var(--font-family);
    color: var(--body-color);
    font-weight: var(--font-weight);
    font-style: var(--font-style);
    font-size: var(--font-size);
}

img {
    max-width: 100%;
}

a {
    color: #ffffff !important;
    text-decoration: none;
}

a:hover {
    color: var(--secundary-color);
    text-decoration: underline;
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-secundary {
    color: var(--secundary-color) !important;
}

.bg-primary {
    background: var(--primary-color) !important;
}

.bg-secundary {
    background: var(--secundary-color) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

sup {
    font-size: 70%;
}

.antonio{
    font-family: "Antonio", sans-serif;
}

.edu{
    font-family: "Edu AU VIC WA NT Pre", cursive;
    font-weight: 500;
}

header{
    background: var(--primary-color);
    background: -webkit-linear-gradient(180deg,rgba(252, 175, 23, 1) 0%, rgba(252, 175, 23, 1) 90%, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, 1) 100%);
    background: -moz-linear-gradient(180deg,rgba(252, 175, 23, 1) 0%, rgba(252, 175, 23, 1) 90%, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, 1) 100%);
    background: linear-gradient(180deg,rgba(252, 175, 23, 1) 0%, rgba(252, 175, 23, 1) 90%, rgba(255, 255, 255, 1) 90%, rgba(255, 255, 255, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(
    startColorstr="#FCAF17",
    endColorstr="#FFFFFF",
    GradientType=0
    );
}

header div:not(.container){
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2dvh;
    justify-content: center;
}

.effect::before{
    content: "";
    display: inline-block;
    top: -8px;
    position: relative;
    background: url("../../img/efeito.png") no-repeat;
    background-size: contain;
    width: 100%;
    max-width: 140px;
    height: 9px;
    margin-right: 0.5dvw;
}

.effect::after{
    content: "";
    display: inline-block;
    top: -8px;
    position: relative;
    background: url("../../img/efeito.png") no-repeat;
    background-size: contain;
    width: 100%;
    max-width: 140px;
    height: 9px;
    margin-left: 0.5dvw;
}

label{
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-primary{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
}

.btn-primary:hover, .btn-check:focus+.btn-primary, .btn-primary:focus{
    background-color: var(--secundary-color);
    border-color: var(--secundary-color);
}

/* END DEFAULT STYLES */

/* DASHBOARD PAGE */

.box{
    padding: 5px 10px;
    border-radius: var(--border-radius);
    color: #ffffff;
    display: inline-block;
    width: 48%;
    font-weight: bold;
    text-align: center;
    margin: 0;
}

.box.bg-primary:hover{
    cursor: pointer;
    text-decoration: underline;
}

table.dataTable thead>tr>td.sorting, table.dataTable thead>tr>td.sorting_asc, table.dataTable thead>tr>td.sorting_desc, table.dataTable thead>tr>th.sorting, table.dataTable thead>tr>th.sorting_asc, table.dataTable thead>tr>th.sorting_desc{
    white-space: nowrap;
}

body.dashboard .box{
    display: block;
    width: 100%;
    margin-bottom: 1rem;
}

#dashboard .button-okay, #dashboard .button-cancel{
    padding: 5px 10px;
    display: inline-block;
}

#dashboard input{
    background: #ededed;
    border-color: #ededed;
    border-radius: 0;
}

#dashboard #usersTable tr th{
    border: none;
    background: var(--primary-color);
    color: #ffffff;
    text-transform: uppercase;
    font-weight: bold;
}

#dashboard #usersTable tr td, #dashboard #usersTable tr th{
    white-space: nowrap;
    text-align: left;
}

#dashboard #usersTable tr td button{
    font-size: 14px !important;
    padding: 5px 10px !important;
    margin-right: 5px;
}

#dashboard #usersTable tr td button:last-child{
    margin-right: 0;   
}

#dashboard .pagination .page-item.active .page-link{
    background-color: var(--secundary-color);
    border-color: var(--secundary-color);
    color: #fff;
}

#dashboard .pagination .page-item .page-link{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    border-radius: 0;
}

#dashboard .row, #dashboard table, #dashboard .dt-paging{
    display: none;
}

.divider{
    background: url("../../img/efeito.png") repeat-x;
    background-size: contain;
    width: 100%;
    height: 9px;
    margin-block: 2dvh;
}

/* END DASHBOARD PAGE */

/* FOOTER */

.footer {
    font-size: 70%;
    background-color: #595959;
    color: #ffffff;
}

/* FOOTER */

@media only screen and (min-width: 1024px) {
    header div:not(.container){
        flex-wrap: nowrap;
        gap: 2dvw;
    }

    header div img:nth-child(2){
        margin-top: -3dvh;
    }
}

@media only screen and (max-width: 768px){
    header{
        background: var(--primary-color) !important;
    }

    header div img:nth-child(1){
        margin-top: 2dvh;
    }

    header div img:nth-child(2){
        max-width: 90% !important;
    }

    header div img:nth-child(3){
        margin-bottom: 2dvh;
    }

    .effect::before, .effect::after{
        display: block;
        margin-inline: 0;
        margin-block: 0.5dvh;
        left: 50%;
        transform: translateX(-50%);
        top: 2px;
    }
}