﻿/*CSS padrao WorkBank v2*/
:root {
    --text-blue-purple: #487ff9;
    --text-gren: #15cd89;
    --text-cyan: #00dbff;
    --text-blue-green: #50b5b2;
    --text-gold: #febe27;
    --text-gray-ligth: #8d98a3;
    --text-dark-blue: #020079;
    --text-dark-pink: #f2176e;
    --text-dark-green: #109c30;
    --text-dark-danger: #dc3545;
    --text-wb: #001bdc;
    --text-maroon-ligth: #e1759c;
    --text-indigo-ligth: #906acd;
}

.blur-text {
    color: transparent !important;
    text-shadow: 0 0 4px rgba(0, 0, 0, 0.5) !important;
}

.SMA-Direct-input {
    position: absolute;
    top: 50%;
    z-index: 999990;
    right: 0;
}

    .SMA-Direct-input input {
        border: none !important;
        outline: none !important;
    }

    .SMA-Direct-input .col-md-6 {
        background-color: #ffffff;
        border: solid 1px #001bdc;
    }

.text-wb {
    color: var(--text-wb) !important;
}

.input-group-text {
    cursor: pointer;
}

.bg-danger {
    background: var(--text-dark-danger);
    color: #fff !important;
}

.bg-blue-purple {
    background: var(--text-blue-purple);
    color: #fff !important;
}

.bg-gold {
    background: var(--text-gold);
}

    .bg-gold * {
        color: #000 !important;
    }

.bg-gray-ligth {
    background: var(--text-gray-ligth);
}

    .bg-gray-ligth * {
        color: #000 !important;
    }


.bg-blue-green {
    background: var(--text-blue-green);
}

    .bg-blue-green * {
        color: #000 !important;
    }

.bg-gren {
    background: var(--text-gren);
}

.bg-cyan {
    background: var(--text-cyan);
}

.bg-maroon-ligth {
    background: var(--text-maroon-ligth);
}

.bg-indigo-ligth {
    background: var(--text-indigo-ligth);
}

.bg-dark-blue {
    background: var(--text-dark-blue);
    color: #fff !important;
}

.bg-dark-pink {
    background: var(--text-dark-pink);
    color: #fff !important;
}

.bg-dark-green {
    background: var(--text-dark-green);
    color: #fff !important;
}

.bg-orange * {
    color: #fff !important;
}



.card-maroon-ligth.card-outline {
    border-top: 3px solid var(--text-maroon-ligth);
}

.card-indigo-ligth.card-outline {
    border-top: 3px solid var(--text-indigo-ligth);
}

.se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url(../../images/loading.gif) center no-repeat #fff;
}

/*CSS padrao WorkBank v3*/
.wait-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    margin-top: -60px; /*set to a negative number 1/2 of your height*/
    margin-left: -60px; /*set to a negative number 1/2 of your width*/
    border: 1px solid #59ebfe;
    background: url(../../images/loading.gif) center no-repeat #fff;
    z-index: 9999;
    border-radius: 60px;
}

.wait-loading-bar {
    background-color: green;
    height: 2px !important;
    background-size: 300% 100%;
    /*background-image: linear-gradient( to left, rgba(59,173,227,1) 0%, rgba(87,111,230,1) 25%, rgba(152,68,183,1) 51%, rgba(255,53,127,1) 100%);*/
    background-image: linear-gradient( to left, rgba(59,173,227,1) 0%, rgba(87,111,230,1) 25%, rgba(224, 220, 220,1) 51%, rgba(87,111,230,1) 75%, rgba(2, 58, 82,1) 100%);
    -webkit-animation: AnimateBGGradient 4s ease infinite;
    -moz-animation: AnimateBGGradient 4s ease infinite;
    -o-animation: AnimateBGGradient 4s ease infinite;
    animation: AnimateBGGradient 4s ease infinite;
    /*animation: AnimateBGGradient 3s ease infinite;*/
}

@keyframes AnimateBGGradient {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 50% 50%
    }

    100% {
        background-position: -100% 0;
    }
    /*  0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }*/
}

/*LOGING BORDER*/
.brand-image-bottom {
    float: left;
    line-height: .8;
    max-height: 34px;
    width: auto;
    margin-left: 0;
    margin-right: 0.5rem;
    margin-top: -3px;
}

.progress-timer > .progress {
    height: 2px !important;
}

.progress-timer .progress-bar {
    background-color: orangered !important;
}

@-webkit-keyframes rotate {
    100% {
        transform: rotate(1turn);
    }
}

@keyframes rotate {
    100% {
        transform: rotate(1turn);
    }
}

.custom-table-detail {
    overflow-x: hidden !important;
    display: unset !important;
}

.rainbow {
    position: relative;
    z-index: 0;
    width: 400px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    padding: 2rem;
}

    .rainbow::before {
        content: "";
        position: absolute;
        z-index: -2;
        left: -50%;
        top: -50%;
        width: 200%;
        height: 200%;
        background-color: #399953;
        background-repeat: no-repeat;
        background-size: 50% 50%, 50% 50%;
        background-position: 0 0, 100% 0, 100% 100%, 0 100%;
        background-image: linear-gradient(#399953, #399953), linear-gradient(#fbb300, #fbb300), linear-gradient(#d53e33, #d53e33), linear-gradient(#377af5, #377af5);
        -webkit-animation: rotate 4s linear infinite;
        animation: rotate 4s linear infinite;
    }

    .rainbow::after {
        content: "";
        position: absolute;
        z-index: -1;
        left: 6px;
        top: 6px;
        width: calc(100% - 12px);
        height: calc(100% - 12px);
        background: white;
        border-radius: 5px;
    }
/*LOGING BORDER*/

.SMA-numbers-wait {
    font-style: normal !important;
    font-weight: bold;
}

.SMA-notification-top-bar {
    cursor: pointer;
    display: none;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    text-align: center;
    vertical-align: middle;
    background-color: #dc3545;
    color: #fff;
    z-index: 999999;
}

div.datepicker {
    z-index: 9999 !important;
}

.datepicker table tbody tr:hover td {
    background-color: #eee;
    border-radius: 0;
}

    .datepicker table tbody tr:hover td:first-child {
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px
    }

    .datepicker table tbody tr:hover td:last-child {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
    }

.datepicker table tbody tr td.active {
    border-radius: 0;
}

    .datepicker table tbody tr td.active:first-child {
        border-top-left-radius: 4px;
        border-bottom-left-radius: 4px
    }

    .datepicker table tbody tr td.active:last-child {
        border-top-right-radius: 4px;
        border-bottom-right-radius: 4px;
    }

.pageTour {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 99999;
    background-color: #ffff;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.btn-pageTour {
    position: absolute;
    right: 12px;
    top: 60px;
    z-index: auto;
    cursor: pointer;
}

.mw-300px {
    min-width: 300px !important;
}

.wrapword {
    white-space: pre-wrap !important;
    word-wrap: break-word !important;
    word-break: break-all !important;
    white-space: normal !important;
    min-width: 220px;
}

.bg-iframe-inside {
    background-color: transparent !important;
}

.lkd {
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

.autocomplete {
}

.autocomplete-container > .dropdown-menu {
    top: unset !important;
    left: unset !important;
    z-index: 999999 !important;
    background-clip: red;
}

.autocomplete-suggestions {
    overflow-y: auto !important;
}

.autocomplete-no-suggestion {
    padding: 2px;
    background-color: lavenderblush;
}

.autocomplete-suggestion {
    position: relative !important;
    padding: .5rem 1rem;
    cursor: pointer !important;
    display: block;
    width: 100%;
    padding: .25rem 1rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    background-color: transparent;
    border: 0;
    top: unset !important;
    left: unset !important;
}

.autocomplete-selected {
    background-color: #f5f5f5;
}

.SMA-detail-exception {
    cursor: pointer;
}

    .SMA-detail-exception:before {
        font-family: "FontAwesome";
        content: "\f071";
        display: inline-block;
        padding-right: 3px;
        vertical-align: middle;
        font-weight: 900;
    }

.multiselect {
    background: #fff !important;
    color: #000 !important;
}

.multiselect-search {
    background-color: #f3dfc4 !important;
}

    .multiselect-search::placeholder {
        color: black !important;
    }

label:not(.form-check-label):not(.custom-file-label) {
    font-weight: unset !important;
}

span.multiselect-native-select > div.btn-group {
    min-width: 100% !important;
}

button.multiselect.dropdown-toggle {
    min-width: 100% !important;
    /*min-height: 38px;*/
}

.card-label-purple > label {
    background-color: var(--purple) !important;
    color: #fff !important;
}

.card-label-info > label {
    background-color: var(--info) !important;
    color: #fff !important;
}

.card-label-orange > label {
    background-color: var(--orange) !important;
    color: #fff !important;
}

.card-label-danger > label {
    background-color: var(--danger) !important;
    color: #fff !important;
}

.card-label-success > label {
    background-color: var(--success) !important;
    color: #fff !important;
}

.card-label-primary > label {
    background-color: var(--primary) !important;
    color: #fff !important;
}

.card-label-warning > label {
    background-color: var(--warning) !important;
    color: #000 !important;
}

.card > label {
    position: absolute;
    top: -13px;
    border-radius: 4px !important;
    font-size: 15px !important;
    padding-left: 4px !important;
    padding-right: 4px !important;
    box-shadow: 0 0 1px rgb(0 0 0 / 13%), 0 1px 3px rgb(0 0 0 / 20%);
}

    .card > label:not(.float-right) {
        left: 6px;
    }

    .card > label.float-right {
        right: 6px;
    }

.form-group {
    padding: 0px;
    border: 2px solid #ced4da;
    margin-top: 10px;
    border-radius: 5px;
}

    .form-group > .form-group-custom {
        padding-left: 1.5rem !important;
    }

    .form-group * > .form-group-custom-label::before {
        left: -1.90rem !important;
        width: 0.9rem !important;
        height: 0.9rem !important;
    }

    .form-group * > .form-group-custom-label::after {
        left: -1.90rem !important;
        width: 0.9rem !important;
        height: 0.9rem !important;
    }

    .form-group > .form-group-custom {
        position: absolute;
        top: 0px;
        left: 15px;
        background-color: white;
        border: none !important;
        border-radius: 8px !important;
        font-size: 12px !important;
        min-height: unset !important;
    }

        .form-group > .form-group-custom::before {
            content: "\00a0 ";
            left: -1.5rem !important;
        }

        .form-group > .form-group-custom::after {
            content: "\00a0\00a0 ";
        }

    .form-group > label, .form-group > span.label {
        position: absolute;
        top: 0px;
        left: 15px;
        background-color: white;
        border: none !important;
        border-radius: 8px !important;
        font-size: 12px !important;
    }

        .form-group > label::before {
            content: "\00a0 ";
        }

        .form-group > label::after {
            content: "\00a0\00a0 ";
        }

    .form-group * > input {
        border: none !important;
    }

    .form-group > input {
        border: none !important;
    }

    .form-group * > select {
        border: none !important;
    }

    .form-group * > button {
        border: none !important;
        background-color: transparent !important;
    }

    .form-group * > .input-group-append {
        margin-left: 0px !important;
    }

    .form-group * > .form-control:not(.disabled):not(.bg-light-disabled):not(.multiselect-search) {
        background-color: transparent !important;
    }

    .form-group * > .form-control:not(.disabled) {
        border: none !important;
    }

    .form-group > .form-control {
        border: none !important;
    }

    .form-group > select {
        border: none !important;
    }

.multiselect-native-select {
    width: 100%
}


.form-control-time {
    width: 64px !important;
}

.form-control-upper {
    text-transform: uppercase;
}

/*mascaras de input*/
.form-control-pfj, .form-control-pf, .form-control-pj,
.form-control-cep, .form-control-phone,
.form-control-phone-short, .form-control-phone-ddd,
.form-control-money, .form-control-percent,
.form-control-integer, .form-control-mail, .form-control-custom,
.form-control-multi, .form-control-multi-custom, .form-control-ip,
.form-control-date, .form-control-month, .form-control-week, .form-control-matrix {
}

.SMA-switch {
    display: inline-block;
    position: relative;
}

    /* remove espaçamento lateral padrão */
    .SMA-switch .custom-control-label {
        padding-left: 0;
        margin: 0;
    }

    /* trilho */
    .SMA-switch.switch-md .custom-control-label::before {
        width: 77px;
        height: 25px;
    }

    .SMA-switch.switch-lg .custom-control-label::before {
        width: 90px;
        height: 38px;
    }

    .SMA-switch .custom-control-label::before {
        content: attr(data-off);
        position: absolute;
        display: flex;
        border-radius: 38px;
        align-items: center;
        justify-content: flex-end;
        padding-right: 14px;
        color: #fff;
        font-weight: bold;
        font-size: 1rem;
        background-color: #dc3545;
        border: 1px solid #dc3545;
        transition: all 0.3s ease;
    }

    /* botão redondo */
    .SMA-switch.switch-md .custom-control-label::after {
        width: 21px;
        height: 21px;
    }

    .SMA-switch.switch-lg .custom-control-label::after {
        width: 34px;
        height: 34px;
    }

    .SMA-switch .custom-control-label::after {
        content: "";
        border-radius: 50%;
        position: absolute;
        background-color: #fff;
        box-shadow: 0 0 2px rgba(0,0,0,0.5);
        transition: all 0.3s ease;
    }

    /* estado ligado */
    .SMA-switch .custom-control-input:checked ~ .custom-control-label::before {
        content: attr(data-on);
        background-color: #28a745;
        border-color: #28a745;
        justify-content: flex-start;
        padding-left: 14px;
    }

    .SMA-switch.switch-md .custom-control-input:checked ~ .custom-control-label::after {
        transform: translateX(52px);
    }

    .SMA-switch.switch-lg .custom-control-input:checked ~ .custom-control-label::after {
        transform: translateX(52px);
    }

.chart-label, .char-value {
}

.custom-label {
    display: inline-block;
    padding: 8px 8px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    margin-bottom: 0 !important;
    border-top: 1px solid rgba(0,0,0,.125);
    border-right: 1px solid rgba(0,0,0,.125);
    border-left: 1px solid rgba(0,0,0,.125);
    border-bottom: none;
}

input[type="color"] {
    border-radius: 5px;
    border: 1px solid black;
    width: 40px;
    height: 40px;
    box-shadow: 1px 1px 1px 1px #adb5bd;
    outline: none;
    border: none;
    cursor: pointer;
}

.inputColor {
    display: flex;
}

.form-input-group-sm {
    height: calc(1.8125rem + 2px) !important;
    padding: .25rem .5rem !important;
    font-size: .875rem !important;
    line-height: 1.5 !important;
    border-radius: .2rem !important;
}

.card-fullscreen {
    position: fixed !important;
    top: 0px !important;
    left: 0px !important;
    width: 100% !important;
    height: 100% !important;
    overflow: auto;
    z-index: 1059;
}

.frame-info {
    /*min-height: 800px;*/
}

.modal-header-floating {
    position: fixed;
    top: 0;
    background-color: white;
    width: 100%;
    z-index: 99949;
    left: 0;
}


    .modal-header-floating + .content {
        /*padding-top: 80px;*/
    }

.modal-full {
    min-width: 95%;
    min-height: 95%;
}

.outer-wrapper {
    display: table;
    width: 100%;
    height: 100%;
}

.inner-wrapper {
    display: table-cell;
    vertical-align: middle;
    padding: 15px;
}

.border-3 {
    border-width: 3px !important;
}

.btn-orange {
    background-color: darkorange !important;
    color: #fff !important;
}

.btn-border-left-success {
    border-left: 3px #28a745 !important;
}

.btn-border-left-info {
    border-left: 3px #17a2b8 !important;
}

.btn-border-left-primary {
    border-left: 3px #007bff !important;
}

.bg-light-green {
    background-color: #4afa87 !important;
    /*background-color: #e5ffe5 !important;*/
}

.bg-light-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.bg-light-disabled {
    background-color: #e9ecef !important;
}

select.is-invalid {
    background-position: 92% !important;
}

.btn.dropdown-toggle.button-toggle.collapsed::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}

.btn.dropdown-toggle.button-toggle::after {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-bottom: .3em solid;
    border-right: .3em solid transparent;
    border-top: 0;
    border-left: .3em solid transparent;
}

@media print {
    .h5-permissao, .h5-permissao * {
        display: block !important;
    }
}

.rotate-180 {
    transform: rotate(-180deg);
}

.dropdown-submenu {
    position: relative;
}

    /*   .dropdown-submenu a::after {
        transform: rotate(-90deg);
        position: absolute;
        right: 6px;
        top: .8em;
    }*/

    .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-left: .1rem;
        margin-right: .1rem;
    }

.wb-nav-link, .wb-nav-item {
    font-size: small !important;
    white-space: nowrap;
}

.wb-menu-item {
}

.dropdown-menu-lg {
    max-width: unset !important;
}

hr {
    border-top: 1px solid lightgrey !important;
}

/*.table td {
    padding: .2rem !important;
}*/
.table td, .table th {
    border: 1px solid #dee2e6 !important;
}

tbody tr.selected {
    color: white;
    background-image: linear-gradient(135deg, rgba(180,227,145,0.9) 0%,rgba(97,196,25,0.7) 50%,rgba(180,227,145,1) 100%) !important;
}

    tbody tr.selected:hover, tbody tr.selected:active {
        background-color: #28a745
    }

table.dataTable tbody td.select-checkbox:before, table.dataTable tbody th.select-checkbox:before {
    content: ' ';
    margin-top: 0px;
    margin-left: -10px;
    border: 2px solid #bbb;
    border-radius: 3px;
}

table.dataTable tr.selected td.select-checkbox:after, table.dataTable tr.selected th.select-checkbox:after {
    content: '\2714';
    margin-top: 0px;
    margin-left: -10px;
    text-align: center;
    text-shadow: 1px 1px #b0bed9, -1px -1px #b0bed9, 1px -1px #b0bed9, -1px 1px #b0bed9;
}

table.dataTable tbody td.select-checkbox:before, table.dataTable tbody td.select-checkbox:after, table.dataTable tbody th.select-checkbox:before, table.dataTable tbody th.select-checkbox:after {
    display: block;
    position: absolute;
    top: 1.2em;
    left: 50%;
    width: 12px;
    height: 12px;
    box-sizing: border-box;
}


.dataTables_wrapper .dataTables_length select {
    width: 75px !important;
    display: inline-block !important;
}

div.dataTables_wrapper div.dataTables_filter input {
    margin-left: 0.5em !important;
    display: inline-block !important;
    width: auto !important;
}

tr.odd td.sorting_1, tr.odd td.sorting_2, tr.odd td.sorting_3,
tr.even td.sorting_1, tr.even td.sorting_2, tr.even td.sorting_3 {
    background-color: transparent !important;
}

div.dt-button-collection {
    width: unset !important;
}

.dataTables_wrapper, .headings {
    font-size: 10px !important;
    /*overflow-x: auto !important;*/
    /*font-family: 'Segoe UI';*/
}

    .headings > table {
        width: 100% !important;
    }

.SMA-table th {
    padding-left: 3px !important;
    padding-right: 3px !important;
    margin: 3px !important;
}

.SMA-table tbody td:first-child {
    padding: 3px !important;
}

.SMA-table tbody td:not(:nth-last-child(-n+2)) {
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

.SMA-table-container {
    width: 100% !important;
    overflow-x: auto !important;
    min-height: 240px !important;
}

table.table-responsive {
    display: table !important;
    overflow: unset !important;
}

.compact-column {
    white-space: nowrap;
}

    .compact-column > a {
        color: unset !important;
        font-weight: bold;
    }

.tooltip {
    pointer-events: none !important;
}

.c-pointer {
    cursor: pointer !important;
    user-select: none !important;
}

.custom-tools-datatable {
    /*background-color:red;*/
}

.material-icons, .material-icons-round, .material-icons-outlined, .material-icons-sharp, .material-icons-two-tone {
    vertical-align: middle !important;
    display: inline-block;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /*font-size: inherit !important;*/
}

.r-0 {
    right: 0 !important;
}

.l-inherit {
    left: inherit !important;
}

.mi-md {
    font-size: 1.33333333em;
    line-height: 0.75em;
    vertical-align: -15%;
}

.mi-lg {
    font-size: 1.6em !important;
}

.mi-2x {
    font-size: 2.3em !important;
    vertical-align: bottom !important;
}

.mi-3x {
    font-size: 3em !important;
}

.mi-4x {
    font-size: 4em !important;
}

.mi-5x {
    font-size: 5em !important;
}


.fa-a:before {
    font-family: 'Segoe UI'; /* your font family here! */
    font-weight: bold;
    content: 'A';
    font-size: 16px;
}

.fa-a-downcase:before {
    font-family: 'Segoe UI'; /* your font family here! */
    font-weight: bold;
    font-size: 10px;
    content: 'A';
}

@keyframes fa-blink {
    0% {
        opacity: 1;
    }

    25% {
        opacity: 0.25;
    }

    50% {
        opacity: 0.5;
    }

    75% {
        opacity: 0.75;
    }

    100% {
        opacity: 0;
    }
}

.fa-blink-slow {
    -webkit-animation: fa-blink 1s linear infinite;
    -moz-animation: fa-blink 1s linear infinite;
    -ms-animation: fa-blink 1s linear infinite;
    -o-animation: fa-blink 1s linear infinite;
    animation: fa-blink 1s linear infinite;
}

.fa-blink {
    -webkit-animation: fa-blink .55s linear infinite;
    -moz-animation: fa-blink .55s linear infinite;
    -ms-animation: fa-blink .55s linear infinite;
    -o-animation: fa-blink .55s linear infinite;
    animation: fa-blink .55s linear infinite;
}

.shiny-shiny-edge {
    animation: shiny-edge 3s infinite linear;
}

@keyframes shiny-edge {
    0% {
        box-shadow: 0 0 1px red, 0 0 1px red;
    }

    33% {
        box-shadow: 0 0 1px purple, 0 0 1px purple;
    }

    66% {
        box-shadow: 0 0 1px orange, 0 0 1px orange;
    }

    100% {
        box-shadow: 0 0 1px red, 0 0 2px red;
    }
}

.table {
    font-family: 'Helvetica Neue', 'Segoe UI', Arial, Helvetica, sans-serif !important;
}

    .table td {
        vertical-align: middle !important;
    }

    .table.dataTable {
        border-collapse: collapse !important;
    }

.headings {
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%) !important;
}

td.dataTables_empty {
    height: 50px;
    font-size: 14px;
    text-align: center;
}

.nav-tabs .nav-link.active {
    /*background-color: #17a2b8;*/
}

.text-orange {
    color: darkorange;
}

.text-gray-ligth {
    color: var(--text-gray-ligth);
}

[class^=bg-card] .bg-left {
    background-position: left !important;
}

.bg-card-info {
    background-image: url(../_images/bg-card/info.png);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

.bg-card-success {
    background-image: url(../_images/bg-card/success.png);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

.bg-card-danger {
    background-image: url(../_images/bg-card/danger.png);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

.bg-card-warning {
    background-image: url(../_images/bg-card/warning.png);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}

.bg-card-gray {
    background-image: url(../_images/bg-card/gray.png);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
}


.bg-row-primary {
    background: none !important;
    background-color: #0866c4 !important;
}

.bg-row-danger {
    background: none !important;
    background-color: #ffbaba !important;
}

.bg-row-indigo {
    background: none !important;
    background-color: #6610f2b9 !important
}

.bg-row-teal {
    background: none !important;
    background-color: #20c997bd !important;
}


.bg-row-success {
    background: none !important;
    background-color: #b7ddb0 !important;
}

.bg-row-success-light {
    background: none !important;
    background-color: #c4d3c2 !important;
}

.bg-row-warning {
    background: none !important;
    background-color: #fff9ae !important;
}

.bg-row-purple {
    background: none !important;
    background-color: #bca2eb !important;
}


.bg-row-orange {
    background: none !important;
    background-color: #ffcf9e !important;
}

.bg-row-pastel {
    background: none !important;
    /*background-color: #fff2e5 !important;*/
    background-color: #fff2e5 !important;
}

.bg-row-info {
    background: none !important;
    background-color: #bfe6ff !important;
}

.bg-row-secondary {
    background: none !important;
    background-color: #bfbfbf !important;
}

.bg-row-crossed {
    background: linear-gradient(to top left, rgba(0,0,0,0) 0%, rgba(0,0,0,0) calc(50% - 0.8px), darkgrey 50%, rgba(0,0,0,0) calc(50% + 0.8px), rgba(0,0,0,0) 100%), linear-gradient(to top right, rgba(0,0,0,0) 0%, rgba(0,0,0,0) calc(50% - 0.8px), darkgrey 50%, rgba(0,0,0,0) calc(50% + 0.8px), rgba(0,0,0,0) 100%);
}

.text-checkbox {
    color: rgba(0,0,0,0.9) !important;
    font-size: unset;
    font-weight: normal !important;
}

.row-ignore-graph {
    /*disabilitar selecao da grid*/
}

.row-select-none {
    /*disabilitar selecao da grid*/
}

    .row-select-none > td:last-child.select-checkbox:before {
        content: '' !important;
        /*
        font-family: FontAwesome;
        content: "\F129" !important;
        font-size: 2em !important;
        color: red !important;
            */
        border: unset !important;
    }

.popover {
    max-width: unset;
}


.SMA-close-circle {
    position: absolute;
    right: -8px;
    top: -8px;
    z-index: 999999;
    display: inline-block;
    border-radius: 30px;
    box-shadow: 0px 0px 2px #888;
    padding: 0.5em 0.6em;
    background-color: white;
}

.SMA-close-circle-2 {
    position: absolute;
    right: calc(-32px);
    top: calc(-32px);
    z-index: 999999;
    display: inline-block;
    border-radius: 30px;
    box-shadow: 0px 0px 2px #888;
    padding: 0.5em 0.6em;
    background-color: white;
}


.imgMenu {
    color: #7e7e7e !important;
    text-decoration: none !important;
}

    .imgMenu > i {
        font-size: 1.8rem !important;
    }






#centeredmenu {
    float: left;
    width: 100%;
    background: #fff;
    border-bottom: 4px solid #000;
    overflow: hidden;
    position: relative;
}

    #centeredmenu ul {
        clear: left;
        float: left;
        list-style: none;
        margin: 0;
        padding: 0;
        position: relative;
        left: 50%;
        text-align: center;
    }

        #centeredmenu ul li {
            display: block;
            float: left;
            list-style: none;
            margin: 0;
            padding: 0;
            position: relative;
            right: 50%;
        }

            #centeredmenu ul li a {
                display: block;
                margin: 0 0 0 1px;
                padding: 3px 10px;
                background: #ddd;
                color: #000;
                text-decoration: none;
                line-height: 1.3em;
            }

                #centeredmenu ul li a:hover {
                    background: #369;
                    color: #fff;
                }

                #centeredmenu ul li a.active,
                #centeredmenu ul li a.active:hover {
                    color: #fff;
                    background: #000;
                    font-weight: bold;
                }

.truncated-text, .form-group > label, .form-group > .label, .form-group > span {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1; /* limit to 1 line */
}


@-webkit-keyframes rotating /* Safari and Chrome */ {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.rotating {
    -webkit-animation: rotating 2s linear infinite;
    -moz-animation: rotating 2s linear infinite;
    -ms-animation: rotating 2s linear infinite;
    -o-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite;
}


.rotating-balance {
    -webkit-animation: rotating 2s cubic-bezier(1, -0.38, 0.32, 1.62) infinite;
    -moz-animation: rotating 2s cubic-bezier(1, -0.38, 0.32, 1.62) infinite;
    -ms-animation: rotating 2s cubic-bezier(1, -0.38, 0.32, 1.62) infinite;
    -o-animation: rotating 2s cubic-bezier(1, -0.38, 0.32, 1.62) infinite;
    animation: rotating 2s cubic-bezier(1, -0.38, 0.32, 1.62) infinite;
}


.hide {
    display: none !important;
}

/* total width */
::-webkit-scrollbar {
    background-color: transparent;
    width: 16px;
}

/* background of the scrollbar except button or resizer */
::-webkit-scrollbar-track {
    background-color: transparent;
}

/* scrollbar itself */
::-webkit-scrollbar-thumb {
    background-color: #babac0;
    border-radius: 16px;
    border: 4px solid #fff;
}

/* set button(top and bottom of the scrollbar) */
::-webkit-scrollbar-button {
    display: none;
}


.SMA-order-container {
    position: relative;
    display: block;
    padding: 20px 5px 20px 5px;
    margin: 20px;
    width: 220px;
    height: 300px;
}

.SMA-order-item {
    position: relative;
    top: 0;
    display: table;
    margin-bottom: 2px;
    width: 220px;
    height: 30px;
    clear: both;
    user-select: none;
}

    .SMA-order-item:hover {
        cursor: pointer;
    }

    .SMA-order-item.drag {
        z-index: 99;
        color: red;
    }

.BTWB-search-box {
    transition: width 0.6s, border-radius 0.6s, background 0.6s, box-shadow 0.6s;
    width: 30px;
    height: 30px;
    border-radius: 20px;
    border: none;
    cursor: pointer;
    position: relative;
    right: -30px !important;
    background: #ebebeb;
}

    .BTWB-search-box + label .BTWB-search-icon {
        color: black;
    }

    .BTWB-search-box:hover {
        color: white;
        background: #c8c8c8;
        box-shadow: 0 0 0 3px #3d4752;
    }

        .BTWB-search-box:hover + label .BTWB-search-icon {
            color: white;
        }

    .BTWB-search-box:focus {
        transition: width 0.6s cubic-bezier(0, 1.22, 0.66, 1.39), border-radius 0.6s, background 0.6s;
        border: none;
        outline: none;
        box-shadow: none;
        padding-left: 15px;
        cursor: text;
        width: 300px;
        background: #ebebeb;
        color: black;
    }

        .BTWB-search-box:focus + label .BTWB-search-icon {
            color: black;
        }

    .BTWB-search-box:not(:focus) {
        text-indent: -5000px;
    }

.BTWB-search-icon {
    z-index: 9;
    position: relative;
    font-size: 1.37em;
    padding: 3px 0px 0px 3px;
    color: black;
    cursor: pointer;
}
