/**
* boot.css
* version: 1.0.0 - 2022
*
* Copyright 2022 Rafael D. Ferreira
* File responsible for reset styling
*/
/* FONTS*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap");

@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700");

/*RESET*/
* {
    margin: 0;
    padding: 0;

    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

/*VARIABLES*/
:root {
    --font-x-small: 0.625rem; /* 10px */
    --font-min: 0.75rem; /* 12px */
    --font-small: 0.875rem; /* 14px */
    --font-normal: 1rem; /* 16px */
    --font-medium: 1.125rem; /* 18px */
    --font-large: 1.25rem; /* 20px */
    --font-x-large: 1.375rem; /* 22px */
    --font-max: 1.5rem; /* 24px */

    /** colors defulta of the site*/
    --primary-color: #0C128C;
    --secondary-color: #0C12A8;

    --color-default: #555555;
    --color-green: #32d290;
    --color-blue: #003399;
    --color-light-blue: #2a8be1;
    --color-yellow: #f5cf45;
    --color-orange: #e66a2b;
    --color-red: #D70313;
    --color-fsphp: #1D2025;
    --color-gray: #BFBFBF;

    --weight-light: 300;
    --weight-normal: 400;
    --weight-strong: 600;
    --weight-bold: 700;
    --weight-black: 900;

    --hover-color-green: #61DDBC;
    --hover-color-blue: #375CA2;
    --hover-color-yellow: #F5B946;
    --hover-color-orange: #cd652b;
    --hover-color-red: #F76C82;
    --hover-color-gray: #9A9A9A;
    --hover-duration: 0.3s;

    --gradient-green: linear-gradient(to bottom, #41E37C 0%, #40E484 50%, #37ECB9 100%);
    --gradient-blue-top: linear-gradient(to bottom, #005DA5 1%, #375CA2 100%);
    --gradient-blue-bottom: linear-gradient(to bottom, #375CA2 0%, #005DA5 100%);
    --gradient-red: linear-gradient(to right, #622744 0%, #C53364 50%, #622744 100%);
    --gradient-yellow: linear-gradient(to right, #FCE38A 0%, #F38181 50%, #FCE38A 100%);
    --gradient-default: linear-gradient(to bottom, #375CA2 0%, #4c84e7);
    --gradient-default-hover: linear-gradient(to top, #375CA2 0%, #4c84e7);

    --radius-normal: 5px;
    --radius-medium: 10px;
    --radius-large: 20px;
    --radius-round: 50%;

    --index-back: -1;
    --index-fold: 2;
    --index-menu: 3;
    --index-modal: 4;
}

/*ELEMENTS*/
img {
    max-width: 100%;
}

img a {
    border: none;
}

.hover-zoom {
    overflow: hidden;
}

.hover-zoom:hover img {
    transition: all 0.8s ease;
    transform: scale(1.1);
    z-index: -1;
}

ul,
ol {
    list-style: none;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 0;
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

a:hover {
    color: var(--secondary-color);
}

a:-webkit-any-link,
a:any-link,
a:-moz-any-link {
    color: var(--primary-color);
}

embed,
video,
iframe,
iframe[style] {
    max-width: 100%;
    height: auto;
}

.embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}

.embed iframe, .embed object, .embed embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.strike {
    text-decoration: line-through;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
    -webkit-text-fill-color: #555555 !important;
}

/*ICONS NORMALIZE*/
[class^="icon-"]:before,
[class*=" icon-"]:before {
    position: relative !important;
    top: .125em !Important;
    margin-right: .4em !Important;
}

.icon-notext:before {
    top: 0;
    margin-right: 0 !important;;
}

/*SEARCH FORM*/
.search_icon {
    position: absolute;
    color: #FFF;
    top: 0.25rem;
    right: 0.75rem;
    font-size: 1.25rem;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-content: center;
    transition: 0.4s;
    cursor: pointer;
    text-decoration: none;
}

.app_search_form {
    position: relative;
    background: var(--primary-color);
    height: 2.5rem;
    width: 2.5rem;
    border-radius: 2.5rem;
    padding-top: 0.45rem;
    padding-bottom: 0.45rem;
}

.app_search_form > input.search_active,
.app_search_form:hover > input,
.app_search_form > input:focus,
.app_search_form > input:valid {
    position: absolute;
    right: 0;
    top: 0;
    width: 18rem;
    height: 2.5rem;
    padding: 1rem;
    border-radius: 2.5rem;
    background: var(--primary-color);
    transition: 0.5s ease;
}

.app_search_form:hover > .search_icon {
    background: var(--primary-color);
    color: var(--color-gray);
}

.app_search_form input {
    width: 0;
    border: none;
    outline: 0;
    background: none;
    font-size: var(--font-normal);
    transition: 0.5s ease;
    color: #FFFFFF;
    font-weight: bold;
}

.app_search_form input::placeholder {
    color: var(--color-gray);
    font-weight: normal;
}

.app_search_form input:-webkit-autofill {
    background: var(--primary-color) !important;
    color: var(--color-gray) !important;
}

@media (max-width: 840px) and (min-width: 540px) {
    .app_search_form > input.search_active,
    .app_search_form:hover > input,
    .app_search_form > input:focus,
    .app_search_form > input:valid {
        width: 10rem;
        padding: 0 0.5rem;
        border: 1px solid blue;
    }
}

@media (max-width: 540px) {
    .app_search_form {
        margin-top: 1rem;
    }
}

/** SEARCH FILES*/
/*content search*/
.dash_content_search {
    display: none;
    font-size: var(--font-min);
    margin: 1em 0;
    padding: 1rem;
    width: 100%;
    background: #EFEFEF;
    border: 1px solid #666666;
    border-radius: 5px;
    box-shadow: 2px 2px 8px #666666;
    color: #000000;
}

.dash_content_search_buttons {
    margin: 0 auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dash_content_search_buttons .btn {
    font-size: var(--font-small) !important;
    padding: .5rem 1rem !important;
}

.dash_content_search_buttons button {
    margin-right: 5px;
}

.table_publication_search {
    font-size: var(--font-min);
    margin: 0.5em 0 0.75em;
    padding: 10px;
    width: 100%;
    background: #EFEFEF;
    border: 1px solid #666666;
    border-radius: 5px;
    color: #000000;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

.table_publication_search > div {
    display: flex;
}

.table_publication_search .dash_content_search_btn {
    display: block;
    padding: .5rem .75rem;
    font-size: var(--font-medium);
}

.table_publication_search > div .date_ui_range_select {
    padding-bottom: 10px;
    padding-top: 10px;
}

/** AJAX LOAD*/
.ajax_load {
    display: none;
    justify-content: center;
    align-items: center;
    margin: auto;
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1044 !important;
}

.loader {
    width: 30rem;
    height: 7.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: center;
    gap: 2rem 3rem;
}

.loader span {
    font-size: var(--font-small);
    color: #FFF;
    font-weight: var(--weight-bold);
    text-transform: uppercase;
    margin: auto;
    text-shadow: 5px 5px 10px #333;
}

.load-ball {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background-color: #FFF;
    animation: bounce .5s alternate infinite;
    box-shadow: 5px 5px 10px #333;
}

.load-ball:nth-child(2) {
    animation-delay: .16s;
}

.load-ball:nth-child(3) {
    animation-delay: .32s;
}

@keyframes bounce {
    from {
        transform: scaleX(1.25);
    }
    to {
        transform: translateY(-5rem) scaleX(1);
    }
}

/*DEFAULT MODALS*/
.files_modal {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: none;
    overflow-y: auto;
}

.files_modal_box {
    display: none;
    flex-wrap: wrap;
    margin: auto;
    width: 750px;
    max-width: 94%;
    padding: 15px;
    background: #FFFFFF;
    min-height: 535px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}

.files_modal_small {
    width: 350px;
}

.files_modal_medium {
    width: 500px;
}

.files_modal_large {
    width: 900px;
}

.modal_content_reportdata {
    display: flex;
    justify-content: center;
}

.modal_content_reportdata img {
    height: 50%;
    text-align: center;
}

.files_modal_box_admin {
    min-height: 0;
}

.files_modal_box_admin .form_admin_buttons {
    display: flex;
    flex-basis: 100%;
    justify-content: flex-end;
}

.files_modal_box_admin .form_admin_buttons button {
    margin: 0 5px;
}

.form_admin_footer {
    margin-top: 15px;
    text-align: center;
    font-size: var(--font-min);
    font-weight: 300;
}

.form_admin_footer > .btn {
    margin-bottom: 5px;
    margin-left: 5px;
}

.form_admin_footer > p {
    margin-bottom: 5px !important;
}

.form_admin_footer > h2 {
    font-size: var(--font-medium);
    color: var(--primary-color);
    margin-bottom: 7px;
}

/** socialshare*/
.form_admin_footer > .main_content_socialshare {
    margin-bottom: 0;
    background-color: #FFF;
    padding: 0;
}

.files_modal_box .modal_title {
    font-size: var(--font-medium);
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
    padding-bottom: 10px;
    text-align: center;
    flex-basis: 100%;
    border-bottom: 1px solid #EEEEEE;
}

.files_modal_box .modal_description {
    font-size: var(--font-normal);
    font-weight: var(--weight-strong);
    color: var(--primary-color);
    margin-bottom: 10px;
    padding-bottom: 10px;
    text-align: center;
    flex-basis: 100%;
}

.files_modal_box .modal_title i {
    color: #FF0000;
}

.files_modal_box .modal_title .modal_close {
    text-align: right;
    right: 10px;
    float: right;
    color: #FF0000;
}

.files_modal_box .modal_title .modal_close:hover {
    cursor: pointer;
    color: rgba(255, 0, 0, 0.66);
    -webkit-animation: spin 1.2s linear;
    -o-animation: spin 1.2s linear;
    animation: spin 1.2s linear;
}

.files_modal_box p {
    margin: 0 0 15px 0;
    font-size: var(--font-min);
}

.modal_content_body_details {
    width: 100%;
    flex-basis: 100%;
}

.modal_content_body_details p {
    margin-bottom: 15px;
    color: #666;
    font-size: var(--font-small);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: center;
    text-align: justify;
}

.report_data_admin_update {
    flex-wrap: wrap;
}

.report_data_admin_update p {
    flex-basis: 100%;
    font-size: var(--font-normal);
    text-align: justify;
}

.report_data_admin_update img {
    width: 40%;
}

.modal_content_body_details p.box100 {
    flex-basis: 100%;
    width: 99%;
}

.modal_content_body_details p b {
    flex-basis: 100%;
}

.modal_content_body_details p span b {
    display: block;
    width: 100%;
    padding: 5px 0;
}

.modal_content_body_details > .message {
    margin-bottom: 20px;
}

/*signature*/
.main_modal_signature {
    background: rgba(0, 0, 0, 0.05);
    padding: 5px 10px;
    border-radius: 5px;
}

.main_modal_signature > ul {
    list-style: initial;
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    padding-inline-start: 20px;
}

.main_modal_signature > ul li {
    margin-bottom: 10px;
}

.main_modal_signature > ul li ul {
    list-style: circle;
    margin-left: 20px;
}

/*APP MODAL*/
.app_modal {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    padding: var(--area-box) 0;
    background: rgba(97, 148, 160, 0.5);
    z-index: var(--index-modal);
    display: none;
    overflow-y: auto;
}

.app_modal .message {
    text-align: center;
    margin-bottom: var(--area-normal);
}

.app_modal_box {
    display: none;
    margin: auto;
    width: 500px;
    max-width: 94%;
    padding: var(--area-box);
    background: #ffffff;

    -webkit-border-radius: var(--radius-normal);
    -moz-border-radius: var(--radius-normal);
    border-radius: var(--radius-normal);
}

.app_modal_box_button {
    margin: 20px 0;
    width: 100%;
    display: flex;
    justify-content: center;
}


.app_modal_box_small {
    width: 500px;
}

.app_modal_box_medium {
    width: 750px;
}

.app_modal_box_large {
    width: 900px;
}

.app_modal_box .title {
    font-size: var(--font-medium);
    font-weight: var(--weight-light);
    color: var(--color-default);
    margin-bottom: var(--area-normal);
    padding-bottom: var(--area-normal);
    border-bottom: 1px solid #EEEEEE;
    text-align: center;
    position: relative;
}

.app_modal_box .modal_close {
    color: #eb0000;
    font-size: var(--font-large);
    position: absolute;
    cursor: pointer;
    right: -10px;
    top: -10px;
}

.app_modal_box .modal_close:hover {
    color: #FF0000;
    font-size: var(--font-x-large);
    transition: 0.3s;
}

.app_modal_box h4 {
    margin-bottom: 10px;
    width: 100%;
    border-bottom: 1px solid #999;
}

.app_modal_box p:not(.title) {
    margin: 0 0 15px 0;
    display: flex;
    flex-basis: 50%;
}

.app_modal_ombudsmans .app_modal_box p {
    display: block;
}

.app_modal_box p span:not(.modal_close) {
    display: block;
    width: 100%;
    margin-right: 15px;
}

.app_modal_box .label_check {
    display: flex;
    align-items: center;
    margin-right: 20px;
    font-weight: bold;
}

.app_modal_box .dash_content_app_box p b {
    display: block;
    word-break: break-all;
}

.app_modal_box .details_content {
    margin: 2rem 0;
}

.app_modal_box .details_content .btn {
    margin: 0 .25rem 1rem;
}

.app_modal .details_content_winner {
    justify-content: flex-start;
}

/* TABS MODAL*/
.modal_tabs_content {
    display: flex;
    flex-wrap: wrap;
    background: #dddddd;
    height: 100%;
}

.modal_tabs_content_menu {
    flex-basis: 100%;
}

.modal_tabs_content_menu ul {
    display: flex;
    flex-basis: 100%;
    align-content: center;
    background: #F5F5F5;
}

.modal_tabs_content_menu > ul > li {
    margin-bottom: -1px;
    position: relative;
    display: block;
}

.modal_tabs_content_menu > ul > li > a {
    color: #333333;
    margin-right: 2px;
    border-radius: 4px 4px 0 0;
    position: relative;
    display: block;
    padding: 10px 15px;
    font-weight: bold;
}

.modal_tabs_content_menu > ul > li.active_tabs > a {
    border-top: 3px solid var(--primary-color);
    background: #dddddd;
}

.modal_tabs_content_body {
    display: none;
    flex-wrap: wrap;
    align-content: flex-start;
    min-height: 500px;
    padding: 2rem 1rem;
}

.tabs_content_body_all {
    flex-basis: 100%;
}

.tabs_content_body_all.attachments {
    flex-wrap: nowrap;
}

.tabs_content_body_all.attachments > .modal_content_body_details {
    width: 100%;
    flex-basis: 100%;
}

.modal_first_tab {
    display: flex;
}

.modal_tabs_content_body_details {
    display: flex;
    flex-wrap: wrap;
}

.modal_tabs_content_body_details a {
    flex-basis: 25%;
    display: flex;
    justify-content: center;
    align-content: flex-start;
    flex-wrap: wrap;
    text-align: center;
    color: #FFFFFF;
    padding: 10px 6px;
    line-height: 1.5em;
    font-size: var(--font-small);
}

.modal_tabs_content_body_details a:nth-child(4n +0) {
    margin-right: 0;
}

.modal_tabs_content_body_details a:hover {
    background: var(--secondary-color);
}

.modal_tabs_content_body_details a i {
    flex-basis: 100%;
    font-size: 4.5em;
    text-align: center;
    margin-bottom: 10px;
}

/* SWEEP ALERT*/
.swal2-actions {
    gap: .5rem;
}

/*DEFAULT PAGINATOR*/
.paginator {
    display: flex;
    flex-basis: 100%;
    align-items: center;
    justify-content: center;
    margin: 30px auto;
}

.paginator a, .paginator span {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #cccccc;
    border-right: 0;
    color: #555555;
    font-weight: var(--weight-bold);
    text-decoration: none;
    transition-duration: 0.2s;
    line-height: 25px;
    margin-bottom: 0 !important;
}

.paginator a:first-of-type {
    -webkit-border-radius: var(--radius-normal) 0 0 var(--radius-normal);
    -moz-border-radius: var(--radius-normal) 0 0 var(--radius-normal);
    border-radius: var(--radius-normal) 0 0 var(--radius-normal);
}

.paginator a:last-of-type {
    border-right: 1px solid #cccccc;
    -webkit-border-radius: 0 var(--radius-normal) var(--radius-normal) 0;
    -moz-border-radius: 0 var(--radius-normal) var(--radius-normal) 0;
    border-radius: 0 var(--radius-normal) var(--radius-normal) 0;
}

.paginator a:hover {
    background: var(--primary-color);
    background-size: 200%;
    color: #FFF !important;
    transition-duration: 0.5s;
    text-decoration: none !important;
}

.paginator .paginator_active {
    background: var(--primary-color);
    background-size: 200%;
    color: #FFF;
}

.paginator span {
    background: #cccccc;
}

/*DEFAULT BREADCRUMB*/
[aria-label="breadcrumb"] .wrapper {
    display: flex;
    grid-template-columns: initial !important;
    grid-template-areas: initial !important;
}

.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    border: 1px solid #e9ecef;
    border-top: none;
    border-left: none;
    border-radius: .25rem;
    box-shadow: 2px 3px 5px #e9ecef;
}

.breadcrumb a {
    color: var(--primary-color);
    font-weight: var(--weight-bold);
    font-size: var(--font-small);
}

.breadcrumb a:hover {
    color: var(--hover-color-blue);
    text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: .5rem;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: none;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    color: var(--secondary-color);
    content: "/";
}

@media (max-width: 30em) {
    .breadcrumb {
        display: flex;
        align-content: center;
        flex-wrap: wrap;
        margin-top: 5px;
    }

    .breadcrumb li {
        flex-basis: 100%;
        margin-bottom: 10px;
        text-align: center;
    }

    .breadcrumb-item + .breadcrumb-item {
        padding-left: 0;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        content: "";
        padding-right: 0;
    }
}

/*DEFAULT FORM*/
.forms label {
    display: block;
    width: 100%;
    margin-bottom: 20px;
}

.forms .field {
    display: block;
    margin-bottom: 5px;
    font-size: var(--font-small);
    color: #888888;
}

.forms .legend {
    display: block;
    margin-bottom: 10px;
    font-size: var(--font-normal);
    font-weight: var(--weight-strong);
    color: #888888;
    text-align: left;
}

.forms textarea,
.forms select,
.forms input {
    display: block;
    width: 100%;
    color: #000000;
    font-size: var(--font-normal);
    padding: 10px;
    background: #ffffff;
    border: 1px solid #cccccc;
    resize: none;
    -webkit-border-radius: 0 var(--radius-normal) var(--radius-normal) var(--radius-normal);
    -moz-border-radius: 0 var(--radius-normal) var(--radius-normal) var(--radius-normal);
    border-radius: 0 var(--radius-normal) var(--radius-normal) var(--radius-normal);
}

.forms textarea {
    resize: vertical;
}

.forms input[type="date"] {
    -webkit-appearance: none;
    font-size: 1em !important;
    font-family: "Open Sans", serif !important;
    padding: 7px 10px !important;
    font-weight: var(--font-normal);
    color: #888888;
}

.forms .label_group {
    display: flex;
    width: 100%;
}

.forms .label_group label {
    flex-basis: calc(50% - var(--area-small));
}

.forms .label_group label:first-child {
    margin-right: var(--area-normal);
}

.forms .label_check label {
    display: inline-block;
    margin-left: var(--area-normal);
    font-size: var(--font-small);
    margin-top: 5px;
    color: #888888;
}

.forms .label_check label input {
    display: none;
}

.forms .label_check label:before {
    content: "✓";
    font-weight: var(--weight-black);
    color: #ffffff;
    text-align: center;
    display: inline-block;
    width: 12px;
    height: 12px;
    padding: 2px;
    background: #ffffff;
    border: 2px solid #cccccc;
    margin-right: 5px;
    vertical-align: middle;
    margin-top: -3px;
    font-size: 1.1em;
    line-height: 0.9;
    -webkit-border-radius: var(--radius-normal);
    -moz-border-radius: var(--radius-normal);
    border-radius: var(--radius-normal);
}

.forms .label_check label.check:before {
    background: var(--color-blue);
    border-color: var(--color-blue);
}

.forms .label_check label:first-of-type {
    margin-left: 0;
}

/* input password*/
.forms .label_g3 .label_input {
    flex-basis: calc(90% - 10px);
    margin: 0 10px 20px 0;
}

.forms .label_g3 .label_button {
    flex-basis: calc(10% - 10px);
}

.forms .label_g3 .label_button .btn {
    margin-top: 1.25rem;
}

.label_input_password {
    position: relative;
}

.input_password_show {
    position: relative;
}

.icon_password_show {
    position: absolute;
    right: 5px;
    top: 35px;
    font-size: var(--font-x-large);
    transition: 500ms;
    color: #999999;
    cursor: pointer;
    z-index: 1000;
}

/**
    672w
 */
@media (min-width: 42em) {
    .forms .label_g2 {
        display: flex;
    }

    .forms .label_g2 .label {
        flex-basis: calc(50% - 10px);
    }

    .forms .label_g2 .label:first-child {
        margin-right: 20px;
    }

    .forms .label_g3 {
        display: flex;
    }

    .forms .label_g3 .label {
        flex-basis: calc(33% - 10px);
        margin-right: 20px;
    }

    .forms .label_g3 .label:last-child {
        margin-right: 0;
    }

    .forms .label_g4 {
        display: flex;
    }

    .forms .label_g4 .label {
        flex-basis: calc(25% - 10px);
        margin-right: 20px;
    }

    .forms .label_g3 .label,
    .forms .label_g3 .label_min {
        flex-basis: calc(33.33% - 10px);
        margin: 0 20px 20px 0;
    }

    .forms .label_g3 .label_max {
        flex-basis: calc(66.6% - 20px);
        margin: 0 20px 20px 0;
    }

    .forms .label_g4 .label:last-child {
        margin-right: 0;
    }
}

/*DEFAULT TABLES*/
table {
    border: 1px solid #CCCCCC;
    border-collapse: separate;
    margin: 0 0 .75rem 0;
    padding: 0;
    width: 100%;
    table-layout: fixed;
}

table thead tr {
    background: #333 !important;
    color: #FFFFFF;
    text-transform: uppercase;
}

table tbody tr {
    background: rgba(0, 0, 0, .02);
    border: 1px solid #ddd;
    /*padding: .35em;*/
}

table tbody tr:nth-child(2n + 0) {
    background: rgba(0, 0, 0, .1);
}

table tbody tr:hover {
    background: rgba(0, 0, 0, .08);
}

table tbody tr:nth-child(2n + 0):hover {
    background: rgba(0, 0, 0, .15);
}

table th,
table td {
    padding: 0.625em;
    text-align: left;
}

table th {
    font-size: 0.7em;
    letter-spacing: 0.1em;
}

table tbody th {
    font-size: 0.7em;
    font-weight: var(--weight-normal);
}

/*align*/
table .left {
    text-align: left;
}

table .justify {
    text-align: justify;
}

table .right {
    text-align: right;
}

table .center {
    text-align: center;
}

table .actions {
    justify-content: center;
    column-gap: .5rem;
    font-size: var(--font-medium);
}


table .actions a {
    display: inline-block;
    line-height: initial;
    margin-bottom: 0 !important;
    align-self: center;
}

table .actions a:hover {
    text-decoration: none;
}

table .actions .btn {
    margin-bottom: .5rem !important;
}

/*width*/
table .box5 {
    width: 5%
}

table .box10 {
    width: 10%
}

table .box15 {
    width: 15%
}

table .box20 {
    width: 20%
}

table .box25 {
    width: 25%
}

table .box30 {
    width: 30%
}

table .box35 {
    width: 35%
}

table .box40 {
    width: 40%
}

table .box50 {
    width: 50%
}

table .box60 {
    width: 60%
}

table .box70 {
    width: 70%
}

@media (max-width: 48rem) {
    table th.actions .btn {
        margin-bottom: .5rem !important;
    }
}

@media (max-width: 30em) {
    table th,
    table td {
        padding-right: 0.3em;
        padding-left: 0.3em;
    }
}

/*DEFAULT MESSSAGES*/
.message {
    color: #ffffff;
    font-size: var(--font-min);
    font-weight: var(--weight-strong);

    display: block;
    width: 100%;
    padding: 1rem;
    border: 2px solid #cccccc !important;
    margin-top: var(--area-small);
    margin-bottom: var(--area-small);

    -webkit-border-radius: var(--radius-normal);
    -moz-border-radius: var(--radius-normal);
    border-radius: var(--radius-normal);

    position: relative;
    line-height: 1.5rem;
}

.message_declaration {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-direction: column;
}

.message_declaration i{
    font-size: 3rem;
    margin-bottom: 1rem;
}

.message_declaration > p {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: var(--font-small) !important;
    text-align: center;
}

.message_declaration > p > span {
    display: flex;
    text-align: center;
    justify-content: center;
    align-content: center;
    align-items: center;
    flex-basis: 100%;
}

.message_declaration > p > span:last-child {
    text-align: center;
}

.button_declaration {
    display: flex;
    color: #FFFFFF;
    border: 1px solid #cccccc;
    padding: .5rem 1rem !important;
    border-radius: .5rem;
    margin-bottom: 0 !important;
    font-size: var(--font-small) !important;
    line-height: normal !important;
    font-weight: bold;
}

.button_declaration:hover {
    color: #FFFFFF !important;
    text-decoration: none !important;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
}

.message.success {
    --color: var(--color-green);
    background: var(--color);
}

.message.info {
    --color: var(--color-light-blue);
    background: var(--color);
}

.message.warning {
    --color: var(--color-yellow);
    background: var(--color);
    color: #000000;
}

.message.error {
    --color: var(--color-red);
    background: var(--color);
}

.message .icon-message-close {
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
}

.message_btn {
    display: inline-block;
    padding: 5px 10px;
    color: #ffffff;
    background-color: var(--color);
    -webkit-border-radius: var(--radius-normal);
    -moz-border-radius: var(--radius-normal);
    border-radius: var(--radius-normal);
    cursor: pointer;
    opacity: 0.8;
    transition-duration: 0.2s;
}

.message_btn:hover {
    opacity: 1;
}

/*AJAX RESPONSES MESSAGES*/
.ajax_response {
    position: fixed;
    padding: 20px 20px 0 0;
    z-index: 1002;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 100%;
}

.ajax_response .message {
    color: #ffffff;
    font-size: var(--font-min);
    font-weight: var(--weight-normal);
    overflow: hidden;
    border: none;

    display: flex;
    align-items: center;
    width: 100%;
    padding: 15px 15px 20px 15px;
    background: #333333;
    margin-bottom: 15px;
    position: relative;

    -webkit-border-radius: var(--radius-normal);
    -moz-border-radius: var(--radius-normal);
    border-radius: var(--radius-normal);

    cursor: pointer;
    z-index: 1006;
}

.ajax_response .message:before {
    flex-basis: 0;
    margin: -5px 15px 0 0 !important;
    font-size: calc(var(--font-max) * 1.2);
    color: rgba(0, 0, 0, 0.5);
}

.ajax_response .message_time {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 4%;
    height: 5px;
    background: rgba(0, 0, 0, 0.5);
}

.ajax_response .message.success {
    background: var(--color-green);
}

.ajax_response .message.info {
    background: var(--color-light-blue);
    color: #FFFFFF;
}

.ajax_response .message.warning {
    background: var(--color-yellow);
    color: #000000;
}

.ajax_response .message.error {
    background: var(--color-red);
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*EFFECTS*/
.transition {
    transition-duration: var(--hover-duration);
}

.radius {
    -webkit-border-radius: var(--radius-normal);
    -moz-border-radius: var(--radius-normal);
    border-radius: var(--radius-normal);
}

.rounded {
    -webkit-border-radius: var(--radius-round);
    -moz-border-radius: var(--radius-round);
    border-radius: var(--radius-round);
}

.box-shadow {
    -webkit-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.3);
}

/*ALIGN*/
.al-center {
    text-align: center !important;
}

.al-left {
    text-align: left !important;
}

.al-right {
    text-align: right !important;
}

/*DISPLAY*/
.ds-block {
    display: block !important;
}

.ds-flex {
    display: flex !important;
}

.ds-inblock {
    display: inline-block !important;
}

.ds-inline {
    display: inline !important;
}

.ds-none {
    display: none !important;
}

.clearfix::after {
    display: block;
    clear: both;
    content: ""
}

/*FONT COLORS*/
.text-primary {
    color: var(--primary-color) !important;
}

.text-primary-hover:hover {
    color: var(--secondary-color) !important;
}

.color-blue {
    color: var(--color-blue) !important;
}

.color-blue-hover:hover {
    color: var(--hover-color-blue) !important;
}

.color-green {
    color: var(--color-green) !important;
}

.color-green-hover:hover {
    color: var(--hover-color-green) !important;
}

.color-red {
    color: var(--color-red) !important;
}

.color-red-hover:hover {
    color: var(--secondary-color) !important;
}

.color-yellow {
    color: var(--color-yellow) !important;
}

.color-yellow-hover:hover {
    color: var(--hover-color-yellow) !important;
}

.color-orange {
    color: var(--color-orange) !important;
}

.color-orange-hover:hover {
    color: var(--hover-color-orange) !important;
}

.color-gray {
    color: var(--color-gray) !important;
}

.color-gray-hover:hover {
    color: var(--hover-color-gray) !important;
}

/*GRADIENTS*/
.gradient {
    background-size: 200% auto;
    transition-duration: 0.5s;
}

.gradient-green {
    background-image: var(--gradient-green);
}

.gradient-green:hover {
    background-position: right center;
}

.gradient-blue-top {
    background-image: var(--gradient-blue-top);
}

.gradient-blue-bottom {
    background-image: var(--gradient-blue-bottom);
}

.gradient-yellow {
    background-image: var(--gradient-yellow);
}

.gradient-yellow:hover {
    background-position: right center;
}

.gradient-red {
    background-image: var(--gradient-red);
}

.gradient-red:hover {
    background-position: right center;
}

.gradient-default {
    background-image: var(--gradient-default);
}

.gradient-hover:hover {
    background-image: var(--gradient-default-hover);
    text-decoration: none;
    color: #FFFFFF;
}

/* SPECIALS*/
.fontzero {
    font-size: 0 !important;
    width: 0 !important;
    height: 0 !important;
    padding: 0;
    margin: 0;
    border: 0;
}

.font-bold {
    font-weight: bold;
}

.none {
    display: none !important;
}

.lot_none {
    display: none;
}

.text-uppercase {
    text-transform: uppercase;
}

.none-resize {
    resize: none;
}

/*INPUT*/
.form_control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 1%;
    white-space: nowrap;
    vertical-align: middle;
    margin: 0;
    display: table-cell;
    transition: color .15s ease-in-out, background-color .15s ease-in-out,
    border-color .15s ease-in-out,
    box-shadow .15s ease-in-out;
}

.input-group-addon:first-child {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    -moz-border-top-right-radius: 0;
    -moz-border-bottom-right-radius: 0;
    border-right: 0;
}

.input-group-addon:last-child {
    -webkit-border-top-left-radius: 0;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-top-left-radius: 0;
    -moz-border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-left: 0;
}

.input-group .form-control:not(:first-child):not(:last-child),
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child) {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

/***********************************
######### CUSTON BUTTONS ###########
***********************************/
.btn {
    display: inline-block;
    padding: 5px 10px;
    border: none;
    cursor: pointer;

    color: #ffffff !important;
    font-size: 0.9em;
    font-weight: var(--weight-strong);
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);

    -webkit-border-radius: var(--radius-normal);
    -moz-border-radius: var(--radius-normal);
    border-radius: var(--radius-normal);
    transition-duration: var(--hover-duration);
}

.btn:hover {
    background: var(--primary-color);
    text-decoration: none;
}

.btn-sm {
    padding: 4px 7px !important;
    font-size: 0.75em !important;
    border-radius: 4px !important;
}

.btn-min {
    padding: 3px 5px !important;
    font-size: 0.5em !important;
    border-radius: 4px !important;
    margin-bottom: 2px !important;
}

.btn-primary {
    background-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-gray {
    background-color: var(--color-gray);
    color: #000000 !important;
    text-shadow: none;
}

.btn-gray:hover {
    background-color: var(--hover-color-gray);
}

.btn-blue {
    color: #fff;
    background-color: var(--color-blue);
    border-color: #005DA5;
    cursor: pointer;
}

.btn-blue:hover {
    background-color: var(--hover-color-blue);
    color: #FFFFFF !important;
}

.btn-green {
    background-color: #419641;
    border-color: #3e8f3e;
    color: #FFF;
}

.btn-green:hover {
    background-color: #5cb85c;
    cursor: pointer;
    color: #FFFFFF !important;
}

.btn-whatsapp {
    background-color: #128C7E;
    color: #FFFFFF;
}

.btn-whatsapp:hover {
    background-color: #139e90;
    color: #FFFFFF !important;
}

.btn-yellow {
    background-color: #FDCE06;
    color: #000 !important;
}

.btn-yellow:hover {
    background-color: #d6a906;
    cursor: pointer;
}

.btn-red {
    color: #FFFFFF;
    background-color: #d9534f;
    border-color: #b92c28;
}

.btn-red:hover {
    background-color: #c12e2a;
    cursor: pointer;
    color: #FFFFFF !important;
}

.btn-lightgray {
    background-color: #bfbfbf;
    color: #333 !important;
}

.btn-lightgray:hover {
    background-color: #e8e8e8;
}

.btn-gray {
    background-color: #ccc;
    color: #333;
}

.btn-gray:hover {
    background-color: #b2b2b2;
}

.btn_opaco,
.btn_opaco:hover {
    background: #CCC;
    color: #999;
    cursor: auto;
}

/********************************
 #### CUSTON INPUT CHECKBOX #####
 *******************************/
/* switch checkbox */
.switch {
    display: inline-block;
    width: 2.8rem;
    height: 1.5rem;
    position: relative;
    margin-right: 5px;
}

.switch input {
    display: none;
}

.switch-slider {
    background-color: var(--secondary-color);
    cursor: pointer;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    transition: .4s;
}

.switch-slider:before {
    content: '';
    background-color: #FFFFFF;
    bottom: 2px;
    left: 3px;
    height: 1.25rem;
    width: 1.25rem;
    position: absolute;
    transition: .4s;
}

.switch input:checked + .switch-slider {
    background-color: var(--primary-color);
}

.switch input:checked + .switch-slider:before {
    transform: translateX(1.3rem);
}

.switch .switch-round {
    border-radius: 1.25rem;
}

.switch .switch-round:before {
    border-radius: 50%;
}

.actions_checkbox {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

/***********************************
############ BOX MODEL #############
***********************************/
.box {
    display: inline-block;
    vertical-align: top;
    margin-left: -4px;
    padding: 10px;
}

.box10 {
    width: 10%;
}

.box15 {
    width: 15%;
}

.box20 {
    width: 19.5%;
}

.box25 {
    width: 25%;
}

.box30 {
    width: 30%;
}

.box33 {
    width: 32.5%;
}

.box35 {
    width: 35.3%;
}

.box40 {
    width: 40%;
}

.box50 {
    width: 50%;
}

.box60 {
    width: 60%;
}

.box66 {
    width: 66.66666%;
}

.box70 {
    width: 70%;
}

.box75 {
    width: 75%;
}

.box80 {
    width: 80%;
}

.box85 {
    width: 85%;
}

.box90 {
    width: 90%;
}

@media (max-width: 30em) {
    .app_modal_box p:not(.title) {
        flex-basis: 100%;
        display: block;
    }

    .box10,
    .box15,
    .box20,
    .box25,
    .box30,
    .box33,
    .box35,
    .box40,
    .box50,
    .box60,
    .box66,
    .box70,
    .box75,
    .box80,
    .box85,
    .box90 {
        width: 100%;
        margin-bottom: 10px;
    }
}


/***********************************
########## COOKIE POLICY ###########
***********************************/
#cookieConsent {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: calc(var(--index-modal) * 2);
    background-color: #EFEFEF;
    box-shadow: inset 3px 3px 10px #CCCCCC;
}

#cookieConsent .container {
    padding: 30px 0;
}

#cookieConsent p {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333333;
    font-size: var(--font-small);
    line-height: 16px;
}

#cookieConsent p a {
    color: #00aced;
    margin-top: 15px;
    font-size: var(--font-normal);
    font-weight: var(--weight-bold);
}

#cookieConsent p a:hover {
    color: #0087c6;
}

#cookieConsent .btn {
    color: #000000 !important;
}

/***********************************
########### EXPORT DATA ############
***********************************/
.btn-export {
    float: right;
}

/*****************************************
############## SELECT RANGE ##############
*****************************************/
.date_ui_range {
    margin-right: 10px;
    display: flex;
}

.date_ui_range > i {
    color: #000000;
    font-size: var(--font-normal);
    padding: 5px 10px;
    background: #dfdfdf;
    border: 1px solid #cccccc;
    resize: none;
    cursor: pointer;
}

.date_ui_range > i:hover {
    background: #d7d7d7;
}

.date_ui_range > .date_ui_range_left {
    -webkit-border-radius: var(--radius-normal) 0 0 var(--radius-normal);
    -moz-border-radius: var(--radius-normal) 0 0 var(--radius-normal);
    border-radius: var(--radius-normal) 0 0 var(--radius-normal);
}

.date_ui_range > .date_ui_range_right {
    -webkit-border-radius: 0 var(--radius-normal) var(--radius-normal) 0;
    -moz-border-radius: 0 var(--radius-normal) var(--radius-normal) var(--radius-normal);
    border-radius: 0 var(--radius-normal) var(--radius-normal) 0;
}

.date_ui_range_select {
    color: #000000;
    font-size: var(--font-normal);
    padding: 13px 10px;
    border: 1px solid #cccccc;
    resize: none;
    margin: 0;
    border-left: none;
    border-right: none;
    background-image: initial !important;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/************************************
 ########## MEDIAS QUERY ############
 ***********************************/
@media (max-width: 48em) {
    .btn-export {
        margin-top: 20px;
        margin-bottom: 0;
        padding-bottom: 0;
    }

}

@media (max-width: 30em) {
    .btn-export {
        float: initial;
    }
}

@media (max-width: 20em) {
    .box10,
    .box90 {
        padding: 10px 5px;
    }

    .btn-export {
        padding: 0;
    }

    .input-group-addon {
        padding: 6px;
    }
}