﻿@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Ubuntu:wght@500;600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Rubik:wght@400;500;700&display=swap');

@import "sweetalert2.min.css";
@import "toaster-box.css";

/*@font-face {
    font-family: "Ceos-Regular";
    src: url("../fonts/ceos/0fadaa21fcac88ceee0bb8da992c221b.eot");
    src: url("../fonts/ceos/0fadaa21fcac88ceee0bb8da992c221b.eot?#iefix") format("embedded-opentype");
    src: url("../fonts/ceos/0fadaa21fcac88ceee0bb8da992c221b.woff") format("woff");
    src: url("../fonts/ceos/0fadaa21fcac88ceee0bb8da992c221b.ttf") format("truetype");
}
*/
:root {
    --bg-color: #fff;
    --fg-color: #222;
    --link-color: #518409;
    --link-color-hover: #ec5840;
    --tbl-color: #555;
    --th-color: #333;
    --panel-color: #fff;
    --blockquote-bg-color: transparent;
    --blockquote-fg-color: #076590;
    --border-color: #d4d4d4;
}

*, *:before, *:after {
    box-sizing: border-box;
}

html {
    min-height: 100vh;
    margin: 0;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}


body {
    width: 100%;
    margin: auto;
    font-family: 'Ubuntu', sans-serif;
    font-size: 12px;
    background-color: var(--bg-color);
    overflow-x: hidden;
    overflow-y: auto;
}


.container {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    margin: 0px auto;
    padding: 5px;
}

.flex-container {
    display: flex;
    flex-direction: row;
}

    .flex-container > div {
        background-color: transparent;
        margin: 10px;
    }


input.lowercase {
    text-transform: lowercase;
}

input.uppercase {
    text-transform: uppercase;
}

input.capitalize {
    text-transform: capitalize;
}


input[type=checkbox] {
    width: 18px;
    height: 18px;
    position: relative;
    margin: 2px 0 0;
    cursor: pointer;
}

    input[type=checkbox] + label {
        font-size: 11px;
        color: var(--fg-color);
        position: relative;
        top: -5px;
        margin-left: 5px;
        font-weight: 300;
        cursor: pointer;
    }

    input[type=checkbox]:checked + label {
        color: green;
    }

input[type=radio] {
    width: 18px;
    height: 18px;
    position: relative;
    margin: 2px 0 0;
    cursor: pointer;
}


    input[type=radio] + label {
        color: var(--fg-color);
        position: relative;
        border: none;
        border-bottom: 2px solid #ddd;
        top: -5px;
        padding: 5px;
        font-weight: 300;
        cursor: pointer;
    }

    input[type=radio]:checked + label {
        color: green;
    }

label {
    font-weight: 600;
    color: var(--fg-color);
    margin-top: 2px;
    margin-bottom: 0px;
}

    label.link {
        color: var(--link-color);
        cursor: pointer;
    }

/*div[class*="col-"] > label {
    background: #ddd;
    width: 100%;
    padding: 2px;
    color: var(--fg-color);
}

div[class*="col-"] > p > label {
    background: #ddd;
    width: 100%;
    padding: 2px;
    color: var(--fg-color);
}


.input-group-btn {
    background-color: #f9f9f9;
    border-bottom:1px solid #ddd;
}*/

textarea {
    resize: vertical;
}

select {
    border: none;
    border-bottom: 1px solid #ddd;
}

blockquote {
    margin: 0;
    padding: 5px;
    font-weight: 800;
    background: var(--blockquote-bg-color);
    color: var(--blockquote-fg-color);
    border: none;
    border-radius: 5px;
}

ul.lista {
    list-style-type: none;
    margin: 10px 0 0 0;
    padding: 0;
}

    ul.lista li {
        float: left;
        margin: 0 5px 0 0;
        padding: 5px;
        min-height: 40px;
        position: relative;
        text-align: center;
        background: transparent;
        color: var(--fg-color);
        border: 1px solid #ccc;
    }

        ul.lista li span.badge {
            border-radius: 0;
            font-weight: 400;
            background-color: transparent;
            color: black;
            font-size: 75%;
            padding: 5px;
        }

        ul.lista li:hover {
            background: #DDD;
            border-bottom: 1px solid var(--fg-color);
        }

.radio {
    list-style-type: none;
    padding-left: 0px;
}

    .radio li {
        position: relative;
        float: left;
        height: 32px;
        padding: 2px;
    }

    .radio label,
    .radio input {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        border-radius: 0px;
        background-color: #dadada;
    }


        .radio input[type="radio"] {
            opacity: 0.01;
            z-index: 100;
        }

            .radio input[type="radio"]:checked + label,
            .Checked + label {
                background: rgba(0, 148, 255, 0.50);
                color: var(--fg-color);
                border: 1px solid transparent;
                border-bottom: 1px solid #0c3c5f;
                border-radius: 5px 5px 0px 0px;
            }

    .radio label {
        border: 1px solid #CCC;
        cursor: pointer;
        z-index: 90;
    }

        .radio label:hover {
            background: rgba(0, 148, 255, 0.10);
            color: blue;
        }

section {
    padding: 5px;
}

.painel {
    position: fixed;
    background-color: var(--panel-color);
    padding: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
    top: 50px;
    width: 80%;
    left: 10%;
    display: none;
    overflow-y: auto;
}

.panel {
    margin-bottom: 5px;
    background-color: var(--panel-color);
    border: 1px solid transparent;
    border-radius: 1px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}

.panel-body {
    padding: 10px;
}

.panel-heading {
    padding: 10px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 1px;
    border-top-left-radius: 1px;
}

.box {
    width: 100%;
    margin: 0;
    margin-top: 4px;
    padding: 4px;
    outline: 0;
    border: 0.5px solid var(--border-color);
    border-radius: 3px;
    vertical-align: middle;
}

.box-header {
    font-weight: 400;
    margin: 0px;
    padding: 10px;
    background: #444;
}

.trapezoid {
    height: 0;
    width: 100%;
}

.trapezoid-up {
    border-bottom: 25px solid black;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
}

.trapezoid-down {
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 25px solid black;
}

.trapezoid-right {
    border-bottom: 25px solid black;
    border-left: 20px solid transparent;
    border-right: 0 solid transparent;
    border-top: 0 solid transparent;
}

.trapezoid-left {
    border-bottom: 25px solid black;
    border-left: 0 solid transparent;
    border-right: 20px solid transparent;
    border-top: 0 solid transparent;
}


.bold {
    font-weight: 600;
}

.fs-100 {
    font-size: 100%;
}

.fs-150 {
    font-size: 150%;
}

.fs-200 {
    font-size: 200%;
}

.p-5 {
    padding: 5px;
}

.p-10 {
    padding: 10px;
}

.p-20 {
    padding: 20px;
}

.p-40 {
    padding: 40px;
}

.p-80 {
    padding: 80px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-80 {
    margin-top: 80px;
}

.ml-5 {
    margin-left: 5px;
}

.ml-10 {
    margin-left: 10px;
}

.ml-20 {
    margin-top: 20px;
}

.ml-40 {
    margin-left: 40px;
}

.ml-80 {
    margin-left: 80px;
}

.mr-5 {
    margin-right: 5px;
}

.mr-10 {
    margin-right: 10px;
}

.mr-20 {
    margin-right: 20px;
}

.mr-40 {
    margin-right: 40px;
}

.mr-80 {
    margin-right: 80px;
}

.mb-5 {
    margin-bottom: 5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-80 {
    margin-top: 80px;
}


.br-5 {
    border-radius: 5px;
}

.br-10 {
    border-radius: 10px;
}

.br-20 {
    border-radius: 20px;
}

.w-100{
    width:100%;
}

.w-75 {
    width: 75%;
}


.w-50 {
    width: 50%;
}

.w-25 {
    width: 25%;
}


hr {
    margin-top: 10px;
    margin-bottom: 10px;
    border: 0;
    border-top: 1px solid #eeeeee;
}

.table {
    font-size: 11px;
    font-weight: 300;
    color: var(--tbl-color);
    /* border: 1px solid var(--border-color);*/
}

    .table tbody tr th {
        border: none;
        color: var(--th-color);
        vertical-align: middle;
        text-align: inherit;
    }

    .table tbody tr td {
        padding: 1px 2px;
        vertical-align: middle;
        text-align: left;
    }

    .table tbody tr:last-child td {
        padding: 2px;
        border: none;
        vertical-align: middle;
        text-align: left;
    }

    .table tbody tr th a {
        font-weight: 300;
        color: #222;
    }


    .table tbody tr:nth-child(odd) {
        border-bottom: 1px solid #ddd;
        background-color: #f9f9f9;
    }

    .table tbody tr:nth-child(even) {
        border-bottom: 1px solid #ddd;
        background-color: rgba(70, 130, 180, 0.10);
    }

    .table tbody tr:last-child {
        border-bottom: 1px solid #ddd;
        background-color: var(--bg-color);
        border: none;
    }



.table-hover > tbody > tr:hover > td {
    background-color: rgba(255,192,7,0.25);
}

.table-hover > tbody > tr:hover > th {
    background-color: #fff;
    background-size: cover;
    color: #333;
}

    .table-hover > tbody > tr:hover > th a {
        color: #333;
    }


h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Rubik', sans-serif;
    letter-spacing: 1px;
    vertical-align: middle;
    /*color: #4682B4;*/
    margin: 0;
    margin-top: 5px;
    margin-bottom: 5px;
}


.tabs-header {
    height: 24px;
    padding: 0 0 0 0;
    overflow: visible;
}

.tabs-tab {
    height: 38px;
    overflow: hidden;
    float: left;
    background: #fff;
    z-index: 1;
    border: 1px solid #ccc;
    border-bottom: 1px solid transparent;
    margin: 0 4px 0;
    -webkit-transform: perspective(100px) rotateX(30deg);
    -moz-transform: perspective(100px) rotateX(30deg);
}

.no-border {
    border: 1px solid transparent;
    outline: 1px solid transparent;
}

.tabs-content {
    padding: 5px 5px;
    border: 1px solid #dcdcdc;
    position: relative;
    background-color: #f9f9f9;
}

/*Custom_Forms - Chips*/

.chips {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
}

    .chips .chip-container {
        width: 100%;
    }

        .chips .chip-container .chip-item {
            display: flex;
            flex: 1;
            width: auto;
            background-color: #0077b5;
            color: #fff;
            border-radius: 3px;
            margin: 2px;
            overflow: hidden;
        }

        .chips .chip-container .chip-item {
            float: left;
        }

            .chips .chip-container .chip-item .chip-button {
                padding: 8px;
                cursor: pointer;
                background-color: #004471;
                display: inline-block;
            }

            .chips .chip-container .chip-item .chip-text {
                padding: 8px;
                cursor: none;
                display: inline-block;
                pointer-events: none
            }

    .chips > .input-input {
        padding: 15px;
        display: block;
        box-sizing: border-box;
        width: 100%;
        height: 34px;
        border: none;
        margin: 5px 0 0;
        display: inline-block;
        background-color: transparent;
    }

/*AutoComplete*/
.autocomplete {
    /*the container must be positioned relative:*/
    position: relative;
    display: inline-block;
    border: 1px solid #d4d4d4;
}

.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    margin: 0px 15px;
    border-bottom: none;
    border-top: none;
    min-height: 24px;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
}

    .autocomplete-items div {
        padding: 5px;
        cursor: pointer;
        background-color: #fff;
        border-bottom: 1px solid #d4d4d4;
    }

        /*when hovering an item:*/
        .autocomplete-items div:hover {
            background-color: #e9e9e9;
        }

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
    background-color: rgba(0, 100, 150, 0.25) !important;
}

.autocomplete-loading {
    background: rgba(255, 255, 255, 0.85) url(../img/espera.gif) no-repeat center center;
}



/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #C8C8C8 #DFE9EB;
}

    /* Chrome, Edge and Safari */
    *::-webkit-scrollbar {
        width: 6px;
        width: 6px;
    }

    *::-webkit-scrollbar-track {
        border-radius: 6px;
        background-color: #DFE9EB;
    }

        *::-webkit-scrollbar-track:hover {
            background-color: #B8C0C2;
        }

        *::-webkit-scrollbar-track:active {
            background-color: #B8C0C2;
        }

    *::-webkit-scrollbar-thumb {
        border-radius: 5px;
        background-color: #C8C8C8;
    }

        *::-webkit-scrollbar-thumb:hover {
            background-color: #BAB5B5;
        }

        *::-webkit-scrollbar-thumb:active {
            background-color: #7755A3;
        }


#imgLOGO {
    height: 30px;
}

.avatar {
    vertical-align: middle;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.ed_dt {
    font-weight: 300;
    font-size: 100%;
    background-color: #f9f9f9;
    background-image: url(../img/bt_date.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: 12px;
    height: 28px;
    padding: 2px 2px;
    border: 1px solid transparent;
    outline: 1px solid transparent;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
    width: 100%;
    cursor: pointer;
}

.ed_find {
    font-size: 12px;
    background-color: transparent;
    background-image: url(../img/find.png);
    background-position: right;
    background-repeat: no-repeat;
    background-size: 12px;
    height: 28px;
    padding: 2px 2px;
    border: none;
    border-bottom: 1px solid #ddd;
    border-radius: 0px;
    width: 100%;
    cursor: pointer;
}

#divHEADER {
    background-color: #0c3c5f;
}

#btMENU {
    padding: 0px;
    font-size: 24px;
    cursor: pointer;
}

#divMENU {
    position: fixed;
    top: 60px;
    width: 250px;
    height: 650px;
    left: 0px;
    display: none;
    z-index: 999;
    overflow-y: auto;
    font-size: 13px;
    border-radius: 0px;
}


    #divMENU a {
        border: none;
        border-radius: 0px;
    }

        #divMENU a:hover {
            color: #4682B4;
        }



#espera table {
    display: none;
}

#espera_bg {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0px;
    left: 0px;
    background: rgba(255, 255, 255, 0.85) url(../img/espera.svg) no-repeat center center;
    z-index: 1999;
    width: 100%;
    height: 100vh;
}

#espera {
    z-index: 2000;
    width: 100px;
    height: 100px;
    background: transparent;
}

.context-menu {
    position: fixed;
    z-index: 1900;
    border: 1px solid #ccc;
    background-color: #fff;
    box-shadow: 0 0 5px #999;
    moz-box-shadow: 0 0 5px #999;
    margin: 0;
    padding: 0;
}

    .context-menu ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

content-menu ul li {
    width: 100%;
    margin: 0;
    padding: 0;
}

.context-menu ul li a {
    padding: 3px 6px;
    border-bottom: 1px solid #dadada;
    font-size: 16px;
    width: 100%;
    float: left;
    color: #555;
    cursor: pointer;
}

    .context-menu ul li a:hover {
        background-color: rgba(0,0,0,0.15);
        color: #000;
    }


.ul-filter {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .ul-filter li {
        width: 100%;
        margin: 0;
        padding: 0;
    }

        .ul-filter li a {
            padding: 2px 2px;
            border-bottom: 1px solid #dadada;
            font-size: 11px;
            width: 100%;
            float: left;
            color: #555;
            cursor: pointer;
            text-decoration: none;
        }

            .ul-filter li a:hover {
                background-color: rgba(0,0,0,0.15);
                color: #000;
            }

@-webkit-keyframes Progresso {
    0% {
        left: 0%;
    }

    100% {
        left: 100%;
    }
}

@keyframes Progresso {
    0% {
        left: 0%;
    }

    100% {
        left: 100%;
    }
}


@-webkit-keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1.0);
    }
}

@keyframes sk-scaleout {
    0% {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
    }

    100% {
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}

.janela {
    position: fixed;
    z-index: 999;
    background: #f9f9f9;
    top: 0px;
    right: 0px;
    min-height: 100%;
    height: 100vh;
    padding: 5px;
    margin-bottom: 10em;
    overflow: hidden;
    overflow-y: auto;
    border: 0;
    outline: 0;
    border-radius: 3px;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    transition: 0.5s ease;
    box-shadow: -2px 1px 1366px 0px rgba(0,0,0,0.50);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}


.toast {
    display: flex;
    align-items: center;
    position: fixed;
    z-index: 9000;
    text-align: left;
    padding: 20px 0;
    background-color: #fff;
    border-radius: 4px;
    top: 40%;
    left: calc(50% - 200px);
    width: 400px;
    -webkit-animation: sk-scaleout 0.25s ease-in;
    -moz-animation: sk-scaleout 0.25s ease-in;
    -o-animation: sk-scaleout 0.25s ease-in;
    animation: sk-scaleout 0.25s ease-in;
    -webkit-box-shadow: 0px 0px 27px -10px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 27px -10px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 27px -10px rgba(0,0,0,0.75);
}

.toast__icon {
    position: absolute;
    top: 50%;
    left: 22px;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    padding: 2px;
    border-radius: 50%;
    display: inline-block;
}

.toast__container {
    display: table-cell;
    vertical-align: middle;
}

.toast__cell {
    display: inline-block;
}

.toast__type {
    color: #555;
    font-size: 16px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 8px;
}

.toast__message {
    font-size: 14px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 0;
    color: #878787;
}

.toast__content {
    padding-left: 70px;
    padding-right: 60px;
}

.toast__close {
    position: absolute;
    font-size: 28px;
    right: 10px;
    top: 10px;
    width: 14px;
    cursor: pointer;
    height: 14px;
    color: #878787;
    transform: translateY(-50%);
}

.toast--green {
    border: 1px solid green;
    background: #F9FBE7;
}

    .toast--green:before {
        background-color: #2BDE3F;
    }

    .toast--green .toast__icon {
        background-color: #2BDE3F;
    }

.toast--red {
    border: 1px solid #d9534f;
    background: #fed1d0;
}

    .toast--red:before {
        background-color: #d9534f;
    }

    .toast--red .toast__icon {
        background-color: #d9534f;
    }

.toast--yellow {
    border: 1px solid #FFC007;
    background: #fbf2d8;
}

    .toast--yellow:before {
        background-color: #FFC007;
    }

    .toast--yellow .toast__icon {
        background-color: #FFC007;
    }

.dropbtn {
    color: #04AA6D;
    padding: 5px;
    border: none;
    cursor: pointer;
}

.dropdown {
    position: relative;
    display: inline-block;
    padding:5px;
    border:1px solid #dadada;
    margin-top:5px;
    width: 100%;
}

.dropdown-content {
    display: none;
    position: relative;
    background-color: #f1f1f1;
    width: 100%;
    height:100%;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

        .dropdown-content a:hover {
            background-color: #ddd;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    color: royalblue;
}


.tooltip {
    display: none;
    position: absolute;
    z-index: 99999;
    padding: 10px;
    background: #3AB9AE;
    border: 1px solid #A2ADBC;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    margin: 0px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(164, 164, 164, 1);
    box-shadow: 0px 0px 5px 0px rgba(164, 164, 164, 1);
}

.form-control {
    background-color: #f9f9f9;
    color: #000;
    height: auto !important;
    min-height: 28px;
    outline: none;
    box-shadow: none;
    border: 1px solid transparent;
    outline: 1px solid transparent;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
    padding-left: 2px;
    padding-right: 2px;
    font-weight: 300;
    font-size: 100%;
    word-wrap: break-word;
}

    .form-control.password {
        font-family: Webdings;
    }

    .form-control:focus {
        outline: 0;
        border: none;
        border-bottom: 1px solid #0094ff;
        background: rgba(0,148,255,0.10);
        -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075), 0 0 0px rgba(102, 175, 233, 0.6);
        box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075), 0 0 0px rgba(102, 175, 233, 0.6);
    }


    .form-control .pesquisa {
        border-left-color: #f0ad4e;
        border-left-style: solid;
        border-left-width: 2px;
    }

.required {
    border-left: 2px solid orange;
    padding-left: 2px;
}

.btn-add {
    padding-left: 20px;
    background: url(../img/add.svg) no-repeat center left;
    background-size: 16px;
}

.btn-edit {
    padding-left: 20px;
    background: url(../img/edit.svg) no-repeat center left;
    background-size: 16px;
}

.btn-search {
    padding-left: 20px;
    background: url(../img/search.svg) no-repeat center left;
    background-size: 16px;
}

.btn-check {
    padding-left: 20px;
    background: url(../img/check.svg) no-repeat center left;
    background-size: 16px;
}

.btn-remove {
    padding-left: 20px;
    background: url(../img/remove.svg) no-repeat center left;
    background-size: 16px;
}

.btn-cancel {
    padding-left: 20px;
    background: url(../img/cancel.svg) no-repeat left center;
    background-size: 16px;
}

.btn-print {
    padding-left: 20px;
    background: url(../img/print.svg) no-repeat center left;
    background-size: 16px;
}

.btn-upload {
    padding-left: 20px;
    background: url(../img/upload.svg) no-repeat center left;
    background-size: 16px;
}

.btn-download {
    padding-left: 20px;
    background: url(../img/download.svg) no-repeat center left;
    background-size: 16px;
}

.btn-down {
    padding-left: 20px;
    background: url(../img/down.svg) no-repeat center left;
    background-size: 16px;
}

.btn-share {
    padding-left: 20px;
    background: url(../img/share.svg) no-repeat center left;
    background-size: 16px;
}

.btn-folder {
    padding-left: 20px;
    background: url(../img/folder.svg) no-repeat center left;
    background-size: 16px;
}

.btn-phone {
    padding-left: 20px;
    background: url(../img/phone.svg) no-repeat center left;
    background-size: 16px;
}

.btn-location {
    padding-left: 20px;
    background: url(../img/location.svg) no-repeat center left;
    background-size: 16px;
}

.btn-money {
    padding-left: 20px;
    background: url(../img/money.svg) no-repeat center left;
    background-size: 16px;
    text-align: center;
}

.btn-add-top {
    padding-top: 20px;
    background: url(../img/add.svg) no-repeat center top;
    background-size: 16px;
    text-align: center;
}

.btn-edit-top {
    padding-top: 20px;
    background: url(../img/edit.svg) no-repeat center top;
    background-size: 16px;
    text-align: center;
}

.btn-search-top {
    padding-top: 20px;
    background: url(../img/search.svg) no-repeat center top;
    background-size: 16px;
    text-align: center;
}

.btn-check-top {
    padding-top: 20px;
    background: url(../img/check.svg) no-repeat center top;
    background-size: 16px;
    text-align: center;
}

.btn-remove-top {
    padding-top: 20px;
    background: url(../img/remove.svg) no-repeat center top;
    background-size: 16px;
    text-align: center;
}

.btn-cancel-top {
    padding-top: 20px;
    background: url(../img/cancel.svg) no-repeat center top;
    background-size: 16px;
    text-align: center;
}

.btn-print-top {
    padding-top: 20px;
    background: url(../img/print.svg) no-repeat center top;
    background-size: 16px;
    text-align: center;
}

.btn-upload-top {
    padding-top: 20px;
    background: url(../img/upload.svg) no-repeat center top;
    background-size: 16px;
    text-align: center;
}

.btn-download-top {
    padding-top: 20px;
    background: url(../img/download.svg) no-repeat center top;
    background-size: 16px;
    text-align: center;
}

.btn-down-top {
    padding-top: 20px;
    background: url(../img/down.svg) no-repeat center top;
    background-size: 16px;
    text-align: center;
}

.btn-share-top {
    padding-top: 20px;
    background: url(../img/share.svg) no-repeat center top;
    background-size: 16px;
    text-align: center;
}

.btn-folder-top {
    padding-top: 20px;
    background: url(../img/folder.svg) no-repeat center top;
    background-size: 16px;
    text-align: center;
}

.btn-phone-top {
    padding-top: 20px;
    background: url(../img/phone.svg) no-repeat center top;
    background-size: 16px;
    text-align: center;
}

.btn-location-top {
    padding-top: 20px;
    background: url(../img/location.svg) no-repeat center top;
    background-size: 16px;
    text-align: center;
}

.btn-money-top {
    padding-top: 20px;
    background: url(../img/money.svg) no-repeat center top;
    background-size: 16px;
    text-align: center;
}

.btn-back {
    outline: none;
    cursor: pointer;
    min-width: 28px;
    border: 1px solid transparent;
    background: transparent url(../img/back.png) no-repeat right center;
}

.btn-find {
    outline: none;
    cursor: pointer;
    min-width: 32px;
    border: 1px solid transparent;
    background: transparent url(../img/find.svg) no-repeat center center;
}

.btn-find-small {
    outline: none;
    cursor: pointer;
    min-width: 16px;
    border: 1px solid transparent;
    background: transparent url(../img/find.svg) no-repeat center center;
}

.btn-customer {
    outline: none;
    cursor: pointer;
    width: 22px;
    height: 22px;
    border: 1px solid transparent;
    background: transparent url(../img/customer.png) no-repeat center center;
    background-size: 22px;
}

.btn-clone {
    outline: none;
    cursor: pointer;
    width: 22px;
    height: 22px;
    border: 1px solid transparent;
    background: transparent url(../img/clone.png) no-repeat center center;
    background-size: 22px;
}

.btn-money {
    outline: none;
    cursor: pointer;
    min-width: 32px;
    border: 1px solid transparent;
    background: transparent url(../img/money.svg) no-repeat center center;
}

.btn-money-red {
    outline: none;
    cursor: pointer;
    min-width: 32px;
    border: 1px solid transparent;
    background: transparent url(../img/money_red.svg) no-repeat center center;
}

.btn-invoice {
    outline: none;
    cursor: pointer;
    width: 22px;
    height: 22px;
    border: 1px solid transparent;
    background: transparent url(../img/invoice.png) no-repeat center center;
    background-size: 22px;
}

.btn-nfe {
    outline: none;
    cursor: pointer;
    width: 22px;
    height: 22px;
    border: 1px solid transparent;
    background: transparent url(../img/danfe.png) no-repeat right center;
    background-size: 22px;
}

.btn-nfse {
    outline: none;
    cursor: pointer;
    width: 22px;
    height: 22px;
    border: 1px solid transparent;
    background: transparent url(../img/nfse.png) no-repeat center center;
    background-size: 22px;
}

.btn-avatar {
    outline: none;
    cursor: pointer;
    width: 22px;
    height: 22px;
    border: 1px solid transparent;
    background: transparent url(../img/avatar.png) no-repeat center center;
    background-size: 22px;
}

.btn-ocorrencia {
    outline: none;
    cursor: pointer;
    width: 22px;
    height: 22px;
    border: 1px solid transparent;
    background: transparent url(../img/ocorrencia.png) no-repeat center center;
    background-size: 22px;
}


.btn {
    background: transparent;
    /* border: 0px solid transparent; */
    border: 1px solid #999;
    outline: 1px solid transparent;
    /* outline: 0px solid transparent; */
    transition: all .5s;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    font-size: 100%;
    font-weight: 500;
    height: 28px;
    padding: 2px 5px;
}

    .btn:hover {
        transform: translate(0px,-1px);
        transition: background 2s;
        -webkit-transition-duration: 0.4s; /* Safari */
        transition-duration: 0.4s;
    }

    .btn:disabled {
        color: #333;
        background-color: #ccc;
        border: 1px solid transparent;
        outline: 1px solid transparent;
    }

    .btn.aspNetDisabled {
        color: #333;
        background-color: #ccc;
        border: 1px solid transparent;
        outline: 1px solid transparent;
    }

.btn-select {
    border: 1px solid transparent;
    border-bottom: 2px solid #0c3c5f;
    color: black;
    padding-top: 5px;
    padding-bottom: 5px;
}

    .btn-select:hover {
        background-color: rgba(0, 148, 255, 0.25);
    }

.btn-default {
    color: #333;
    border-radius: 5px;
    /*border: 1px solid #ddd;*/
}

.btn-primary {
    color: #428bca;
    border-radius: 5px;
    /*border: 1px solid #428bca;*/
}

.btn-success {
    color: #5cb85c;
    border-radius: 5px;
    /*border: 1px solid #5cb85c;*/
}

.btn-info {
    color: #5bc0de;
    border-radius: 5px;
    /*border: 1px solid #5bc0de;*/
}

.btn-warning {
    color: #f0ad4e;
    border-radius: 5px;
    /*border: 1px solid #f0ad4e;*/
}

.btn-danger {
    color: #d9534f;
    border-radius: 5px;
    /*border: 1px solid #d9534f;*/
}

    .btn-primary:hover,
    .btn-success:hover,
    .btn-info:hover,
    .btn-warning:hover,
    .btn-danger:hover {
        color: #fff;
    }

    .btn-primary:disabled,
    .btn-success:disabled,
    .btn-info:disabled,
    .btn-warning:disabled,
    .btn-danger:disabled {
        color: #333;
        background-color: #ccc;
        border: 1px solid #ccc;
    }




/*Cards*/

.card {
    cursor: pointer;
    outline: 0px;
    padding: 5px;
    margin-bottom: 5px;
    border: 1px solid #e7e6e7;
    border-right: 1px solid #e7e6e7;
    border-bottom: 1px solid #e7e6e7;
    border-radius: 0px;
}


/*Modal*/

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.9);
}


/* Caption of Modal Image */

/* Add Animation */
.modal-content {
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
    width: 100%;
}

.modal-dialog {
    max-width: 100%;
    margin: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100vh;
    display: flex;
    position: fixed;
    z-index: 999999;
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(0)
    }

    to {
        -webkit-transform: scale(1)
    }
}

@keyframes zoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 5px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

    .close:hover,
    .close:focus {
        color: #fff;
        text-decoration: none;
        cursor: pointer;
    }

/* 100% Image Width on Smaller Screens */


@media (max-width: 640px) {

    *, *:before, *:after {
        box-sizing: border-box;
    }

    body {
        min-height: 100vh;
        margin: 0;
        margin-bottom: 10em;
        color: #999;
    }

    .container {
        width: 100%;
        margin: 0 auto;
        padding: 0px;
        padding-left: 0px;
        padding-right: 0px;
    }

    .flex-container {
        display: flex;
        flex-direction: column;
    }

    .btn {
        padding: 3px;
        min-width: 32px;
        height: 28px;
    }

    .table {
        clear: both;
        width: 100%;
        font-size: 12px;
        font-weight: 300;
    }

        .table tbody tr td {
            padding: 2px;
        }

    .form-control {
        font-size: 100%;
        border-radius: 0px;
        height: 28px;
        padding: 3px 6px;
        background-color: rgba(70, 130, 180,0.25);
    }

    .ed_dt {
        font-size: 100%;
        border-radius: 0px;
        height: 28px;
        font-weight: 600;
        line-height: 1;
        padding: 3px 6px;
        background-color: rgba(70, 130, 180,0.25);
    }


    select {
        font-size: 100%;
        border-radius: 0px;
        height: 28px;
        font-weight: 600;
        line-height: 1;
        padding: 3px 6px;
        background-color: rgba(70, 130, 180,0.25);
    }

    .panel {
        background-color: transparent;
    }

    .painel {
        top: 0px;
        left: 0px;
        width: 100%;
        height: 100%;
    }

    .janela {
        width: 100%;
        width: 100vh;
    }

    label {
        font-weight: 600;
    }

    .modal-content {
        width: 100%;
    }

    .table tbody tr:nth-child(odd) {
        border-bottom: 1px solid #ddd;
        background-color: #f9f9f9;
    }

    .table tbody tr:nth-child(even) {
        border-bottom: 1px solid #ddd;
        background-color: rgba(70, 130, 180,0.15);
    }

    .table tbody tr:last-child {
        border-bottom: 1px solid #ddd;
        background-color: #fff;
        border: none;
    }

    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-10 {
        width: 100%;
    }
}


/*@media (prefers-color-scheme: dark) {


    :root {
        --bg-color: #555;
        --fg-color: #f0ece2;
        --link-color: #518409;
        --link-color-hover: #ec5840;
        --tbl-color: #555;
        --th-color: #333;
        --panel-color: #fff;
        --blockquote-bg-color: transparent;
        --blockquote-fg-color: #076590;
        --border-color: #d4d4d4;
    }

    .form-control {
        border-bottom: 1px solid #0094ff;
        background: rgba(0,148,255,0.10);
        color: #eee;
        height: 28px;
        outline: none;
        box-shadow: none;
        border: 1px solid transparent;
        outline: 1px solid transparent;
        border-bottom: 1px solid #ccc;
        border-radius: 0px;
        padding-left: 2px;
        padding-right: 2px;
        font-weight: 300;
        font-size: 100%;
    }

        .form-control:hover {
            background-color: #333;
        }

    label {
        color: #999;
    }

    img {
        filter: brightness(0.9);
    }

    .btn {
        background: rgba(0, 0, 0, 0.85);
        border: 1px solid transparent;
        outline: 1px solid transparent;
        color: inherit;
        transition: all .5s;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        font-size: 100%;
        font-weight: 400;
        height: 28px;
        padding: 2px 5px;
    }

        .btn:hover {
            transform: translate(0px,-1px);
            transition: background 2s;
        }

        .btn:disabled {
            color: #333;
            background-color: #ccc;
            border: 1px solid transparent;
            outline: 1px solid transparent;
        }

        .btn.aspNetDisabled {
            color: #333;
            background-color: #ccc;
            border: 1px solid transparent;
            outline: 1px solid transparent;
        }

    .btn-select {
        border: 1px solid transparent;
        border-bottom: 2px solid #0c3c5f;
        color: black;
        padding-top: 5px;
        padding-bottom: 5px;
    }

        .btn-select:hover {
            background-color: rgba(0, 148, 255, 0.25);
        }

    .btn-default {
        color: #333;
        border-radius: 5px;*/
/*border: 1px solid #ddd;*/
/*}

    .btn-primary {
        color: #428bca;
        border-radius: 5px;*/
/*border: 1px solid #428bca;*/
/*}

    .btn-success {
        color: #5cb85c;
        border-radius: 5px;*/
/*border: 1px solid #5cb85c;*/
/*}

    .btn-info {
        color: #5bc0de;
        border-radius: 5px;*/
/*border: 1px solid #5bc0de;*/
/*}

    .btn-warning {
        color: #f0ad4e;
        border-radius: 5px;*/
/*border: 1px solid #f0ad4e;*/
/*}

    .btn-danger {
        color: #d9534f;
        border-radius: 5px;*/
/*border: 1px solid #d9534f;*/
/*}

        .btn-primary:hover,
        .btn-success:hover,
        .btn-info:hover,
        .btn-warning:hover,
        .btn-danger:hover {
            color: #fff;
        }

        .btn-primary:disabled,
        .btn-success:disabled,
        .btn-info:disabled,
        .btn-warning:disabled,
        .btn-danger:disabled {
            color: #333;
            background-color: #ccc;
            border: 1px solid #ccc;
        }

    .table {
        background-color: transparent;
    }
}*/
