@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    src: url("/assets/webfonts/inter.woff2") format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url("/assets/webfonts/inter.woff2") format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    src: url("/assets/webfonts/inter.woff2") format('woff2');
}

/* latin */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url("/assets/webfonts/inter.woff2") format('woff2');
}

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url("/assets/webfonts/inter.woff2") format('woff2');
}

body {
    color: #212529;
    font-family: 'Inter', sans-serif;
}

.app-toolbar {
    background-color: #004C97;
}

.app-header {
    background-color: #003f80;
    border-bottom: 1px solid #00366c;
}

.app-header-menu .menu > .menu-item > .menu-link .menu-title {
    color: #C4CADA;
}

[data-kt-app-header-sticky=on] .app-header {
    background-color: #003f80;
    border-bottom: 1px solid #00366c;
}

.pre-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    cursor: wait;
    overflow: hidden;
}

.pre-loader .spin {
    border: 10px solid #f3f3f3;
    border-top: 10px solid #004C97;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    margin: 0 auto;
}

.pre-loader .spin-container {
    margin: auto;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    display: block;
}

.pre-loader .spin-text {
    text-align: center;
    color: white;
    font-weight: bold;
    margin-top: 15px;
    font-size: 1.2rem;
    /*text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);*/
}

.btn-group-xs > .btn, .btn-xs {
    padding: .4rem .7rem !important;
    font-size: .9rem;
    line-height: .5;
    border-radius: .5rem;
}

.btn-group-xs > .btn i, .btn-xs i {
    font-size: .85rem;
}

table.dataTable > thead > tr > td:not(.sorting_disabled), table.dataTable > thead > tr > th:not(.sorting_disabled) {
    padding-right: .75rem;
}

.v-align-middle {
    vertical-align: middle !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.app-header-menu .menu > .menu-item > .menu-link .menu-title {
    color: #4B5675;
}

.custom-table-container {
    overflow: auto;
}

.linha-pontilhada {
    color: #000033;
    font: 9px Arial;
    width: 100%;
    border-bottom: 1px dashed #000;
    text-align: right;
    margin-bottom: 10px;
}

.table-responsive + .row{
    margin-top: 20px;
}

.whatsapp-side-button {
    background-color: #25D366;
    width: 55px;
    height: 55px;
    text-align: center;
    border-radius: 30px;
    position: fixed;
    bottom: 17px;
    right: 17px;
    z-index: 1000;
    box-shadow: rgba(0, 0, 0, 0.1) 0 1px 6px, rgba(0, 0, 0, 0.2) 0 2px 24px;
    padding-top: 7px;
    font-size: 1.5rem;
    color: white;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    animation: shake 10s infinite;
}

.whatsapp-side-button:hover {
    cursor: pointer;
    background-color: #1ea852 !important;
}

.whatsapp-side-button:active {
    background-color: #1ea852 !important;
}

.whatsapp-side-button img {
    width: 32px;
    height: auto;
}

@media (min-width: 992px) {
    .app-header-menu .menu > .menu-item > .menu-link .menu-title {
        color: #C4CADA;
    }
}

@media (min-width: 1400px) {
    .modal-xl {
        max-width: 1320px;
    }
}

@media print {
    body {
        visibility: hidden;
        margin: 0;
        padding: 0;
        overflow: visible !important;
    }

    .no-print {
        display: none;
    }

    .print-section {
        page-break-inside: avoid;
        visibility: visible;
        position: absolute;
        left: 0;
        top: 0;
        overflow: visible !important;
    }

    header, footer {
        display: none;
    }
}