:root {
    --primary: #F24464;
    --primary-hover: #BD354E;
    --primary-focus: #BD354E;
    --primary-darker: #a72c42;
    --secondary: #113E6C;
    --secondary-hover: #195ea3;
    --secondary-focus: #195ea3;
    --secondary-darker: #0d2f52;
    --dark-gray: #4e4e4e;
    --subtitle: #525252;
    --almost-black: #312f2f;
    --almost-black-darker: #242222;
    --normal-color: #3a3a3a;
    --link: #1d46bd;
    --link-auxiliar: #0d6efd;
    --page-header: #252525;
    --badge-destaque: #00a0ff;
    --aviso-fundo: #f3f3f3;
}

a {
    text-decoration: none;
    color: var(--link);
}

a:focus,
a:hover {
    text-decoration: none;
    color: var(--primary);
}

p {
    font-size: 14px;
}

.form-control {
    font-size: 14px;
}

body {
    font-size: 0.875em;
    color: var(--normal-color);
    font-family: 'Roboto', sans-serif;
    min-height: 100vh;
}

ul {
    padding-left: 0;
    list-style-type: none;
    margin-bottom: 0;
}

/* General */
.card {
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
    box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
    border: none;
    margin-bottom: 30px;
}

.card-block {
    padding: 1.25rem;
}

.sub-title {
    border-bottom: 1px solid rgba(204, 204, 204, 0.35);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 400;
    color: #2c3e50;
}

.tx-link {
    color: #337ab7;
}

/*cores*/

.bg-purple {
    background: #563d7c;
}

/*table e datatable*/
.table {
    color: var(--almost-black);
}

.table-hover tbody tr:hover {
    color: var(--almost-black);
    background-color: rgba(0, 0, 0, 0.075);
}

.table>thead>tr>th {
    background-color: #fff;
    border-bottom-color: #ccc;
    font-weight: 600;
    color: var(--normal-color);
}

table.dataTable {
    border-spacing: 0;
}

.dataTable thead th {
    border-bottom: 2px solid #dee2e6;
    border-top: none;
}

.dataTable .table-bordered th {
    border: 1px solid #dee2e6;
    border-bottom-width: 2px;
}

.dataTable .btn {
    font-size: 11px;
    margin-right: 5px;
}

.dataTable .btn:last-child {
    margin-right: 0;
}

.table.table-striped.table-bordered .badge,
.dataTable .badge {
    padding: 5px 10px;
}

table.table.table-striped.table-bordered tbody tr td a {
    margin-top: 2px;
    margin-bottom: 2px;
    margin-right: 2px;
}

table.table.table-striped.table-bordered tbody tr td a:last-child {
    margin-right: 0;
}

/* Nav bar */
.bg-gradient-primary {
    background: rgb(12, 80, 119);
    background: linear-gradient(180deg, rgba(12, 80, 119, 1) 0%, rgba(14, 88, 130, 1) 75%, rgba(10, 62, 92, 1) 100%);
}

.topbar .dropdown-list .dropdown-header {
    background-color: var(--primary);
    border: 1px solid var(--primary);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #fff;
}

.btn-link {
    color: var(--primary);
}

.btn-link:hover {
    color: var(--primary);
}

.page-link {
    color: var(--almost-black-darker);
}

.page-link:hover {
    color: var(--primary);
}

.page-item.active .page-link {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* JQuery UI */
.ui-accordion .ui-state-active {
    border: 1px solid var(--secondary);
    background: var(--secondary);
}

/* Theme loader */
.theme-loader {
    z-index: 99999;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    border: 10px solid #f3f3f3;
    /* Light grey */
    border-top: 10px solid var(--primary);
    border-bottom: 10px solid var(--primary);
    border-right: 10px solid var(--primary);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Jquery UI date picker */
.ui-datepicker-header {
    border: 1px solid var(--secondary);
    background: var(--secondary);
    color: #fff;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border: 1px solid var(--secondary);
    background-color: var(--secondary);
    color: #fff;
}


/* sweetalert2 */
.swal2-actions .swal2-confirm {
    background-color: var(--primary) !important;
}

/* jquery.steps */
.wizard>.steps .current a {
    background-color: var(--primary) !important;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--primary-darker);
}

/* login */
.login-block {
    padding: 30px 0;
    margin: 0 auto;
    /*
    background: url(../images/auth/bg.jpg) no-repeat;
    background-size: cover;*/
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

/* btn */
.btn {
    border-radius: 2px;
}

.btn.btn-square {
    border-radius: 0;
}

.btn-primary,
.sweet-alert button.confirm,
.wizard>.actions a {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
    cursor: pointer;
    -webkit-transition: all ease-in 0.3s;
    transition: all ease-in 0.3s
}

.btn-primary:hover,
.sweet-alert button.confirm:hover,
.wizard>.actions a:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.btn-primary:active,
.sweet-alert button.confirm:active,
.wizard>.actions a:active {
    background-color: var(--primary-focus) !important;
    border-color: var(--primary-focus);
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff
}

.btn-primary:focus,
.sweet-alert button.confirm:focus,
.wizard>.actions a:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    background-color: var(--primary-darker);
    border-color: var(--primary-darker);
}

.btn-primary.disabled,
.sweet-alert button.disabled.confirm,
.wizard>.actions a.disabled {
    background-color: rgba(1, 169, 172, 0.5);
    border-color: rgba(1, 169, 172, 0.5)
}

.btn-secondary,
.sweet-alert button.confirm,
.wizard>.actions a {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #fff;
    cursor: pointer;
    -webkit-transition: all ease-in 0.3s;
    transition: all ease-in 0.3s
}

.btn-secondary:hover,
.sweet-alert button.confirm:hover,
.wizard>.actions a:hover {
    background-color: var(--secondary-hover);
    border-color: var(--secondary-hover);
}

.btn-secondary:active,
.sweet-alert button.confirm:active,
.wizard>.actions a:active {
    background-color: var(--secondary-focus) !important;
    border-color: var(--secondary-focus);
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff
}

.btn-secondary:focus,
.sweet-alert button.confirm:focus,
.wizard>.actions a:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    background-color: var(--secondary-darker);
    border-color: var(--secondary-darker);
}

.btn-secondary.disabled,
.sweet-alert button.disabled.confirm,
.wizard>.actions a.disabled {
    background-color: rgba(1, 169, 172, 0.5);
    border-color: rgba(1, 169, 172, 0.5)
}

.btn-warning {
    background-color: #efaf28;
    border-color: #efaf28;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all ease-in 0.3s;
    transition: all ease-in 0.3s
}

.btn-warning:hover {
    background-color: #fdc247;
    border-color: #fdc247;
    color: #fff
}

.btn-warning:active {
    background-color: #fe6828 !important;
    border-color: #fe6828;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff
}

.btn-warning:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    background-color: #feb798
}

.btn-warning.disabled {
    background-color: rgba(254, 147, 101, 0.5);
    border-color: rgba(254, 147, 101, 0.5)
}

.btn-danger {
    background-color: #fe5d70;
    border-color: #fe5d70;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all ease-in 0.3s;
    transition: all ease-in 0.3s
}

.btn-danger:hover {
    background-color: #fe909d;
    border-color: #fe909d
}

.btn-danger:active {
    background-color: #fe203a !important;
    border-color: #fe203a;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff
}

.btn-danger:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    background-color: #fe909d
}

.btn-danger.disabled {
    background-color: rgba(254, 93, 112, 0.5);
    border-color: rgba(254, 93, 112, 0.5)
}

.btn-success {
    background-color: #0ac282;
    border-color: #0ac282;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all ease-in 0.3s;
    transition: all ease-in 0.3s
}

.btn-success:hover {
    background-color: #0df3a3;
    border-color: #0df3a3
}

.btn-success:active {
    background-color: #07885b !important;
    border-color: #07885b;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff
}

.btn-success:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    background-color: #0df3a3
}

.btn-success.disabled {
    background-color: rgba(10, 194, 130, 0.5);
    border-color: rgba(10, 194, 130, 0.5)
}

.btn-inverse {
    background-color: #3d3d3d;
    border-color: #3d3d3d;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all ease-in 0.3s;
    transition: all ease-in 0.3s
}

.btn-inverse:hover {
    background-color: #546686;
    border-color: #546686
}

.btn-inverse:active {
    background-color: #293141 !important;
    border-color: #293141;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff
}

.btn-inverse:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    background-color: #546686
}

.btn-inverse.disabled {
    background-color: rgba(64, 78, 103, 0.5);
    border-color: rgba(64, 78, 103, 0.5)
}

.btn-purple {
    background-color: #8E44AD;
    border-color: #8E44AD;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all ease-in 0.3s;
    transition: all ease-in 0.3s
}

.btn-purple:hover {
    background-color: #b86bd8;
    border-color: #b86bd8;
    color: #fff
}

.btn-purple:active {
    background-color: #b86bd8 !important;
    border-color: #b86bd8;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff
}

.btn-purple:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    background-color: #b86bd8
}

.btn-purple.disabled {
    background-color: rgba(64, 78, 103, 0.5);
    border-color: rgba(64, 78, 103, 0.5)
}

.btn-info {
    background-color: #5578eb;
    border-color: #5578eb;
    color: #fff;
    cursor: pointer;
    -webkit-transition: all ease-in 0.3s;
    transition: all ease-in 0.3s
}

.btn-info:hover {
    background-color: var(--primary-darker);
    border-color: var(--primary-darker)
}

.btn-info:active {
    background-color: var(--primary) !important;
    border-color: var(--primary);
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff
}

.btn-info:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    background-color: var(--primary-darker)
}

.btn-info.disabled {
    background-color: rgba(45, 206, 227, 0.5);
    border-color: rgba(45, 206, 227, 0.5)
}

.btn-disabled {
    background-color: rgba(135, 144, 159, 0.5);
    border-color: rgba(135, 144, 159, 0.5);
    color: #fff;
    cursor: pointer;
    -webkit-transition: all ease-in 0.3s;
    transition: all ease-in 0.3s
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
    background-color: #fff;
    background-color: transparent
}

.btn-outline-warning {
    color: #fe6828;
    background-color: #fff;
    background-color: transparent
}

.btn-outline-danger {
    color: #C00000;
    background-color: #fff;
    background-color: transparent;
    border-color: #C00000;
}

.btn-outline-success {
    color: #07885b;
    background-color: #fff;
    background-color: transparent
}

.btn-outline-inverse {
    color: #293141;
    background-color: #fff;
    background-color: transparent
}

.btn-outline-inverse:hover {
    color: #fff
}

.btn-outline-warning {
    color: #fe6828;
    background-color: #fff;
    background-color: transparent
}

.btn-outline-info {
    color: var(--primary);
    background-color: #fff;
    background-color: transparent
}

.btn-outline-disabled {
    color: #677181;
    background-color: #fff
}

.btn-grd-danger,
.btn-grd-disabled,
.btn-grd-info,
.btn-grd-inverse,
.btn-grd-primary,
.btn-grd-success,
.btn-grd-warning,
.btn-grd-warning {
    background-size: 200% auto;
    -webkit-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    color: #fff
}

.btn-grd-danger:hover,
.btn-grd-disabled:hover,
.btn-grd-info:hover,
.btn-grd-inverse:hover,
.btn-grd-primary:hover,
.btn-grd-success:hover,
.btn-grd-warning:hover,
.btn-grd-warning:hover {
    background-position: right center
}

.btn-grd-danger.hor-grd,
.btn-grd-disabled.hor-grd,
.btn-grd-info.hor-grd,
.btn-grd-inverse.hor-grd,
.btn-grd-primary.hor-grd,
.btn-grd-success.hor-grd,
.btn-grd-warning.hor-grd,
.btn-grd-warning.hor-grd {
    background-size: auto 200%
}

.btn-grd-danger.hor-grd:hover,
.btn-grd-disabled.hor-grd:hover,
.btn-grd-info.hor-grd:hover,
.btn-grd-inverse.hor-grd:hover,
.btn-grd-primary.hor-grd:hover,
.btn-grd-success.hor-grd:hover,
.btn-grd-warning.hor-grd:hover,
.btn-grd-warning.hor-grd:hover {
    background-position: bottom center
}


.badge-lg {
    padding: 5px 9px;
    font-size: 14px;
}

.topbar {
    font-size: 15px;
}

.sidebar .nav-item.active .nav-link {
    background: var(--primary);
    color: #fff;
    font-weight: 500;
}

.sidebar-dark .nav-item .nav-link i {
    color: #fff;
}

footer.bg-white {
    background: #252323 !important;
    color: gray;
}

footer.sticky-footer {
    position: relative;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    clear: left;
    padding: 1rem 0;
}

.login-block .auth-box {
    margin: 20px auto 0 auto;
    max-width: 350px;
}

a.bg-default:focus,
a.bg-default:hover {
    background-color: #fafafa !important;
    color: #fff
}

a.bg-primary:focus,
a.bg-primary:hover {
    background-color: #425469 !important;
    color: #fff
}

a.bg-success:focus,
a.bg-success:hover {
    background-color: #0df3a3 !important;
    color: #fff
}

a.bg-info:focus,
a.bg-info:hover {
    background-color: var(--primary-darker) !important;
    color: #fff
}

.bg-warning {
    background-color: #f9c962 !important;
    color: #5c4005;
}

a.bg-warning:focus,
a.bg-warning:hover {
    background-color: #feb798 !important;
    color: #fff
}

a.bg-danger:focus,
a.bg-danger:hover {
    background-color: #fe909d !important;
    color: #fff
}

.alert {
    font-size: 15px;
    margin-bottom: 2rem
}

.alert.icons-alert {
    border-left-width: 48px
}

.alert.icons-alert .alert-icon {
    left: 15px;
    position: relative;
    text-align: center;
    top: 0;
    z-index: 3
}

.alert.icons-alert p {
    line-height: 21px;
    margin-bottom: 0
}

.close {
    font-size: 16px;
    margin-top: 5px
}

.alert-default {
    background-color: #fff;
    border-color: #e0e0e0;
    color: #e0e0e0
}

.alert-primary {
    background-color: #fff;
    border-color: var(--secondary-darker);
    color: var(--secondary-darker)
}

.alert-success {
    background-color: #fff;
    border-color: #0ac282;
    color: #0ac282
}

.alert-success-bs {
    background-color: #0ac282;
    border-color: #0ac282;
    color: #fff
}

.alert-info {
    background-color: transparent;
    border-color: var(--secondary-darker);
    color: var(--secondary-darker);
}

.alert-warning {
    background-color: #fff;
    border-color: #fe9365;
    color: #fe9365
}

.alert-danger {
    background-color: #fff;
    border-color: #fe5d70;
    color: #fe5d70
}

.border-default {
    border-color: transparent;
    border-left: 3px solid #e0e0e0;
    border-radius: 0;
    -webkit-box-shadow: 0 0 1px #999;
    box-shadow: 0 0 1px #999;
    color: #e0e0e0
}

.border-primary {
    border-color: transparent;
    border-left: 3px solid #5e738b;
    border-radius: 0;
    -webkit-box-shadow: 0 0 1px #999;
    box-shadow: 0 0 1px #999;
    color: #5e738b
}

.border-success {
    border-color: transparent;
    border-left: 3px solid #0ac282;
    border-radius: 0;
    -webkit-box-shadow: 0 0 1px #999;
    box-shadow: 0 0 1px #999;
    color: #0ac282
}

.border-info {
    border-color: transparent;
    border-left: 3px solid VAR(--PRIMARY);
    border-radius: 0;
    -webkit-box-shadow: 0 0 1px #999;
    box-shadow: 0 0 1px #999;
    color: VAR(--PRIMARY);
}

.border-warning {
    border-color: transparent;
    border-left: 3px solid #fe9365;
    border-radius: 0;
    -webkit-box-shadow: 0 0 1px #999;
    box-shadow: 0 0 1px #999;
    color: #fe9365
}

.border-danger {
    border-color: transparent;
    border-left: 3px solid #fe5d70;
    border-radius: 0;
    -webkit-box-shadow: 0 0 1px #999;
    box-shadow: 0 0 1px #999;
    color: #fe5d70
}

.background-default {
    background-color: #e0e0e0;
    color: #fff
}

.background-primary {
    background-color: #5e738b;
    color: #fff
}

.background-success {
    background-color: #0ac282;
    color: #fff
}

.background-success-lite {
    background-color: #dff0d8;
    color: #3c763d
}

.background-info {
    background-color: VAR(--PRIMARY);
    color: #fff
}

.background-info-lite {
    background-color: #d9edf7;
    color: #31708f
}

.background-warning {
    background-color: #d8a509;
    color: #343a40
}

.background-warning-lite {
    background-color: #fcf8e3;
    color: #8a6d3b
}

.background-danger {
    background-color: #f99898;
    color: #fff
}

.background-danger-lite {
    background-color: #f2dede;
    color: #a94442
}

.background-default-lite {
    background-color: #f4f4f4;
    color: #000
}

.icons-alert {
    position: relative
}

.icons-alert:before {
    color: #fff;
    content: '\f027';
    font-family: 'IcoFont' !important;
    font-size: 16px;
    left: -30px;
    position: absolute;
    top: 20px
}

@media (min-width: 768px) {
    .sidebar {
        width: 15rem !important;
    }

    .sidebar .nav-item .nav-link span {
        font-size: 14px;
    }

    .sidebar .nav-item .nav-link i {
        font-size: 14px;
    }

    .sidebar .nav-item .nav-link {
        padding: 10px 12px;
        width: 15rem;
    }
}

a.btn>i {
    margin-right: 0.5rem;
}

#alertsDropdown {
    color: var(--normal-color);
}

#alertsDropdown:hover {
    color: var(--primary);
}

@media (max-width: 755px) {
    #toggleMinMaxScreen {
        display: none;
    }

    #sidebarToggleTop {
        display: inline-block;
        color: var(--normal-color) !important;
    }
}

@media (min-width:756px) {
    #sidebarToggleTop {
        display: none;
    }
}

.btn-outline-secondary {
    color: var(--secondary);
    border-color: var(--secondary);
    background-color: transparent;
}

.btn-outline-secondary:hover {
    color: #fff;
    border-color: var(--secondary);
    background-color: var(--secondary);
}

.nav-username {
    color: var(--normal-color);
}

.btn-outline-primary:hover {
    color: #fff;
    border-color: var(--primary-hover);
    background-color: var(--primary-hover);
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    color: var(--primary-hover);
    border-color: var(--primary-hover);
}

.sidebar-dark .nav-item .nav-link:active,
.sidebar-dark .nav-item .nav-link:focus,
.sidebar-dark .nav-item .nav-link:hover {
    background: var(--primary-hover);
}

ul.pagination {
    justify-content: flex-end;
}

form section div.row {
    margin-bottom: 1rem;
}

form section div.row label.form-label {
    font-size: 1.1em;
}

.form-select {
    font-size: 0.875rem;
}

a.btn>i {
    margin-right: 0;
}

.card-accordion:hover {
    background-color: var(--secondary-hover);
    color: #fff;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    background-color: #fff;
    color: #444;
    padding: .375rem .75rem;
    height: calc(1.5em + .75rem);
}

.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 1px solid var(--secondary);
    background: var(--secondary);
    color: #fff;
    font-weight: 700;
}

.ui-icon,
.ui-widget-content .ui-icon {
    background-image: url("images/ui-icons_ffffff_256x240.png");
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
    background-image: url("images/ui-icons_ffffff_256x240.png");
}

.fa,
.fab,
.fad,
.fal,
.far,
.fas {
    line-height: 1.5;
}

div.card-body[aria-expanded='true'] {
    background-color: var(--primary-hover);
    color: #fff;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: var(--secondary-focus);
    color: white;
}

.btn-secondary:not(:disabled):not(.disabled).active,
.btn-secondary:not(:disabled):not(.disabled):active,
.show>.btn-secondary.dropdown-toggle {
    background-color: var(--secondary-darker);
    color: white;
}

.form-switch .form-check-input:checked {
    background-color: #1cc88a;
    color: white;
    border-color: rgba(10, 194, 130, 0.5);
}

.dataTable .btn {
    font-size: 0.9rem;
}

.badge {
    line-height: 1rem;
    background-color: var(--badge-destaque);
}

.dropdown-menu {
    padding: 0;
    color: var(--normal-color);
}

.sidebar-dark .nav-item .nav-link {
    color: #fff;
}

.sidebar .nav-item .collapse .collapse-inner .collapse-header,
.sidebar .nav-item .collapsing .collapse-inner .collapse-header {
    margin: 0;
    white-space: nowrap;
    padding: .5rem 1.5rem;
    text-transform: none;
    font-weight: 700;
    font-size: .85rem;
    color: var(--secondary-darker);
}

.sidebar-filtros {
    background: rgb(197, 197, 197);
}

.sidebar-dark hr.sidebar-divider {
    border-color: white;
}

.lead {
    font-size: 1.05rem;
    color: var(--normal-color);
    font-weight: 500;
}

.topicos-destaque {
    border-top: 4px solid var(--primary);
    min-width: 224px;
    max-width: 255px;
    min-height: 120px;
    overflow: hidden;
}

.topicos-destaque:hover {
    color: white !important;
    background-color: var(--primary-darker);
    box-shadow: 0 .265rem .15rem 0 rgba(58, 59, 69, .2) !important;
    transition: background 0.25s ease-in-out;
}

.resultados {
    border-left: 4px solid var(--primary);
    border-radius: 4px;
    padding: 1rem;
    overflow: hidden;
    transition: border-width 0.2s linear;
}

.resultados h6,
h5,
h4 {
    margin-bottom: 0;
}

.resultados:hover,
.resultados:active {
    color: white !important;
    border-left: 12px solid var(--primary);
    background-color: var(--primary-darker);
    box-shadow: 0 .265rem .15rem 0 rgba(58, 59, 69, .2) !important;
}

.h-primary {
    color: var(--primary-focus);
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
}

.h-secondary {
    color: var(--secondary-focus);
    font-weight: 500;
}

a div.resultados,
a div.topicos,
a div.topicos-destaque {
    color: var(--normal-color);
}

.accordion-button {
    color: var(--normal-color);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    color: white;
    background-color: var(--primary-darker);
}

.select2-results__option:hover {
    color: white;
    background-color: var(--primary-darker);
}

/* .input-group .form-control {
    height: calc(1.5em + .75rem + 5px);
} */

.sucesso {
    color: #11823b;
}

.nav-link-secondary {
    display: block;
    padding: 0.5rem 1rem;
    color: #0d6efd;
    text-decoration: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

ul#submenuTab {
    background: #f5f5f5;
}

ul#submenuTab li button.nav-link {
    color: var(--link);
    background-color: transparent;
    border: none;
    padding: 0.6rem 0;
    border-top: 4px solid transparent;
    border-bottom: 0.5px solid #e9e9e9;
    height: 100%;
    flex-grow: 1;
}

ul#submenuTab li button:hover {
    color: white;
    font-weight: 700;
    background-color: var(--link);
    border-top: 4px solid transparent;
    border-bottom: 0.5px solid var(--link);
}

ul#submenuTab li button.active {
    color: var(--link);
    font-weight: 700;
    background-color: white;
    border-top: 4px solid var(--link);
    border-bottom: 0.5px solid white;
}

.form-check-input {
    margin-top: 0.2rem;
}

.form-check-input[type='radio'] {
    margin-top: 0.075rem;
}

.subtitle {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--subtitle);
    margin-bottom: 0.5rem;
}


div.col .linhaTempo-item {
    display: flex;
    position: relative;
}

div.col .linhaTempo-item::before {
    background: #d3d0d0;
    content: "";
    height: 81%;
    left: 16px;
    position: absolute;
    top: 37px;
    width: 1px;
    z-index: 0;
}

div.col .linhaTempo-item:last-child::before {
    background: #d3d0d0;
    content: "";
    height: 81%;
    left: 16px;
    position: absolute;
    top: 37px;
    width: 1px;
    z-index: -1;
}

.linhaTempo-item .linhaTempo-indicador {
    width: 32px;
    height: 32px;
}

.linhaTempo-item .linhaTempo-indicador .linhaTempo-icone {
    box-sizing: border-box;
    min-width: 32px;
    min-height: 32px;
    border-radius: 500px;
    vertical-align: middle;
    background: #0A6FC9;
    color: #fff;
    font-size: .75rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.linhaTempo-item .linhaTempo-conteudo {
    flex: 1 1 auto;
    padding: 0 0 0 1rem;
}

.linhaTempo-item .linhaTempo-conteudo .linhaTempo-conteudo-item {
    margin-bottom: 24px !important;
}

.linhaTempo-conteudo-item p {
    font-size: 0.9rem;
    font-weight: 400;
}

.linhaTempo-conteudo-item .dt-light {
    font-size: 0.72rem;
    font-weight: 100;
}

.bg-complementar {
    background-color: var(--primary-darker) !important;
    color: white !important;
}

.fundo-card-consultoria {
    background-color: #0A6FC9;
    color: white;
}

.container-mensagens {
    position: relative;
    width: 100%;
    height: 100vh;
    padding: 1rem;
    overflow-y: auto;
}

.mensagem-nivel {
    position: relative;
    display: flex;
    width: 100%;
    margin: 0.5rem 0;
    justify-content: flex-end;
}

.mensagem-consultor {
    position: relative;
    display: flex;
    width: 100%;
    margin: 0.5rem 0;
    justify-content: flex-start;
}

.mensagem {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mensagem p {
    position: relative;
    right: 0;
    text-align: right;
    max-width: 65%;
    padding: 0.5rem;
    background: white;
    border-radius: 10px;
    font-size: 1rem;
}

.mensagem p::before {
    content: '';
    position: absolute;
    top: 0;
    right: -12px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #fff 0%, #fff 50%, transparent 50%, transparent);
}

.mensagem-nivel {
    justify-content: flex-end;
}

.mensagem-consultor {
    justify-content: flex-start;
}

.mensagem-consultor p {
    background-color: #0A6FC9;
    text-align: left;
    color: white;
}

.mensagem-consultor p::before {
    content: '';
    position: absolute;
    top: 0;
    left: -12px;
    width: 20px;
    height: 20px;
    background: linear-gradient(225deg, #0A6FC9 0%, #0A6FC9 50%, transparent 50%, transparent);
}

.chat-btn:hover {
    background-color: #0A6FC9;
    color: white;
    outline: #07885b;
}

.page-header {
    background-color: var(--page-header);
    color: white;
}

.card-header {
    background-color: white;
}

@media (min-width: 1200px) {
    .scrollspy-max-height {
        max-height: 70vh;
    }
}

@media (max-width: 1199px) {
    .scrollspy-max-height {
        max-height: 80vh;
    }
}

.icon-avaliar {
    opacity: 0.5;
    margin-bottom: 0;
    font-size: 0.875rem;
}

label.btn {
    font-size: 0.875rem;
}

.icon-avaliar:hover {
    opacity: 0.75;
    transition: opacity 0.25s linear;
}

.btn-check:checked+.icon-avaliar {
    opacity: 1;
    transition: opacity 0.25s linear;
    filter: contrast(90%);

}

.btn-check:checked+.icon-avaliar h2 {
    opacity: 1;
    transition: opacity 0.25s linear;
    filter: contrast(70%);
    filter: saturate(150%);
}

.btn-check:checked+.icon-avaliar~span {
    font-weight: 700;
}

.btn-outline-secondary:not(:disabled):not(.disabled).active,
.btn-outline-secondary:not(:disabled):not(.disabled):active,
.show>.btn-outline-secondary.dropdown-toggle {
    background-color: var(--secondary);
    color: #ffffff;
    border-color: var(--secondary);
}

.btn-check:active+.btn-outline-secondary,
.btn-check:checked+.btn-outline-secondary,
.btn-outline-secondary.active,
.btn-outline-secondary.dropdown-toggle.show,
.btn-outline-secondary:active {
    background-color: var(--secondary);
    color: #ffffff;
    border-color: var(--secondary);
}

.background-success {
    background-color: #0ac282 !important;
    color: #fff !important;
}

.background-success-lite {
    /* background-color: #aaf1bf !important; */
    background-color: #c4ecda !important;
    color: #044124 !important;
}

.text-success-lite {
    color: #044124 !important;
}

.background-info {
    background-color: #2DCEE3 !important;
    color: #fff !important;
}

.background-info-lite {
    background-color: #7FD1FA !important;
    color: #002A3F !important;
}

.background-warning {
    background-color: #d8a509 !important;
    color: #343a40 !important;
}


.background-warning-lite {
    background-color: #f8e097 !important;
    color: #313100 !important;
}

.text-warning-lite {
    color: #313100 !important;
}

.background-danger {
    background-color: #fe5d70 !important;
    color: #fff !important;
}

.background-danger-lite {
    background-color: #fbb4b4 !important;
    color: #430000 !important;
}

.text-danger-lite {
    color: #430000 !important;
}

.header-success {
    color: #00925d !important;
}

.header-info {
    color: #008094 !important;
}

.nav-item-inicial {
    min-height: 3rem;
    margin-bottom: 0.5rem;
}

.inicial__action {
    padding: 0.5rem;
    filter: grayscale(50%);
}

.inicial__action:hover,
.inicial__action:active,
.inicial__action:focus {
    filter: saturate(150%);
}

.nav-item-inicial:hover,
.nav-item-inicial:active,
.nav-item-inicial:focus {
    background-color: rgba(215, 215, 215, 0.35);
}

/* Estilos scrollspy */


/* width */
::-webkit-scrollbar {
    width: 12px;

}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 16px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 16px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #555;
    border-radius: 16px;
}

.sidebar .nav-item .nav-link i {
    width: 20px;
    height: 20px;
    text-align: center;
    margin-right: 0.5rem;
}

.text-danger {
    color: #C00000 !important;
}

.btn-outline-danger:hover {
    background-color: #C00000;
    border-color: #C00000;
    color: white;
}

.subtitle-perm {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--subtitle);
    margin-bottom: 0.5rem;
}

.text-align-vertical {
    vertical-align: middle;
}

div.col .linhaTempo-item-fluxo {
    display: flex;
    position: relative;
}

div.col .linhaTempo-item-fluxo::before {
    background: #0A6FC9;
    content: "";
    height: calc(100% - 17px);
    left: 8px;
    position: absolute;
    top: 17px;
    width: 1px;
    z-index: 0;
}

div.col .linhaTempo-item-fluxo:last-child::before {
    background: #d3d0d0;
    content: "";
    height: 60%;
    left: 8px;
    position: absolute;
    top: 17px;
    width: 1px;
    z-index: -1;
}

.linhaTempo-item-fluxo .linhaTempo-indicador-fluxo .linhaTempo-icone-fluxo {
    box-sizing: border-box;
    min-width: 16px;
    min-height: 16px;
    border-radius: 500px;
    vertical-align: middle;
    border: 2px solid #0A6FC9;
    color: #fff;
    font-size: .75rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.linhaTempo-item-fluxo .linhaTempo-indicador-fluxo .linhaTempo-icone-fluxo-active {
    background-color: #07885b;
    box-sizing: border-box;
    min-width: 16px;
    min-height: 16px;
    border-radius: 500px;
    vertical-align: middle;
    border: 2px solid #07885b;
    color: #fff;
    font-size: .75rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.linhaTempo-item-fluxo .linhaTempo-indicador-fluxo .linhaTempo-icone-fluxo-atual {
    background-color: #0A6FC9;
    box-sizing: border-box;
    min-width: 16px;
    min-height: 16px;
    border-radius: 500px;
    vertical-align: middle;
    border: 2px solid #0A6FC9;
    color: #fff;
    font-size: .75rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.linhaTempo-item-fluxo .linhaTempo-indicador-fluxo {
    width: 16px;
    height: 16px;
}

.linhaTempo-item-fluxo .linhaTempo-conteudo-fluxo {
    flex: 1 1 auto;
    padding: 0 0 0 1rem;
}

.linhaTempo-item-fluxo .linhaTempo-conteudo-fluxo .linhaTempo-conteudo-item-fluxo {
    margin-bottom: 24px !important;
}

.linhaTempo-conteudo-item-fluxo p {
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 16px;
}



.float_button {
    background: var(--primary);
    box-sizing: border-box;
    display: flex;
    align-items: center;
    position: fixed;
    top: 114px;
    right: 8px;
    height: 44px;
    border-radius: 32px;
}

.float_button .float_icon {

    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    width: 44px;
    height: 44px;
}

.float_button span {
    width: 0px;
    overflow: hidden;
    color: white;
}

.float_button:hover {
    background-color: var(--primary-darker);
    color: white;
    transition: all 0.15s linear;
}

.float_button:hover span {
    width: 144px;
    margin: 0 0 0 16px;
    transition: 0.06s ease-in;
}


.linhaTempo-conteudo-item .accordion-item {
    border: none;
}

.linhaTempo-conteudo-item .accordion-item .accordion-button {
    padding: 0;
    border: none;
    box-shadow: none;
}

.linhaTempo-conteudo-item .accordion-item .accordion-button:not(.collapsed) {
    background-color: transparent;
}

.linhaTempo-conteudo-item .accordion-item .accordion-body {
    padding: 4px 0;
}

/* Início novos componentes */
.aviso-container-danger {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #f3f3f3;
    border-left: 4px solid #dc3545;
    border-radius: 4px;
    padding: 0.5rem 1rem;
}

.destaque {
    position: relative;
    top: -17px;
    right: -11px;
    width: 8px;
    height: 8px;
    background-color: red;
    border-radius: 50px;
    ;
}

.pre {
    white-space: normal !important;
    max-width: 65ch;
}

.tag-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 4px;
    margin-top: 16px;
}

.tag-item {
    width: auto;
    max-width: 145px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 6px;
    padding: 8px;
    background-color: #b9b9b9;
    border-radius: 32px;
    overflow: hidden;
}

.tooltip-inner {
    max-width: 72ch;
}

.btn-rounded {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 1px solid #c7c7c7;
}

.btn-check:checked+.btn-rounded,
.btn-check:checked+.btn-icone {
    border: 2px solid #444444;
}

.btn-rounded:hover {
    border: 1px solid #b9b9b9;
    opacity: 0.8;
}

.btn-rounded:active {
    border: 1px solid #2c2c2c;
    opacity: 1;
}

.btncor-verde {
    background-color: #96f794 !important;
}

.btncor-vermelho {
    background-color: #f58e8e !important;
}

.btncor-azul {
    background-color: #78bbf5 !important;
}

.btncor-amarelo {
    background-color: #f1d545 !important;
}

.btncor-cinza {
    background-color: #C2C2C2 !important;
}

.btn-rounded i {
    color: #333333;
    font-size: 16px;
    text-align: center;
    line-height: 0;
}

.grid-container {
    display: grid;
    grid-auto-rows: auto;
    gap: 2rem;
}

.grid-section-cards-indicadores {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.grid-section-cards-indicadores2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.grid-section-cards-indicadores3 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
}

.grid-section-cards-graficos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.grid-section-cards-painel {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    gap: 2rem;
}

.grid-section-cards-auto {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.grid-card-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.025), 1px 3px 6px 0px rgba(0, 0, 0, 0.075);
}

.grid-card {
    padding: 1rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-shadow: 1px 1px 2px 0px rgba(0, 0, 0, 0.025), 1px 3px 6px 0px rgba(0, 0, 0, 0.075);
}