* {
    box-sizing: border-box;
}

ul,
li {
    margin: unset;
    padding: unset;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #ECF0F5;
    position: relative;
    min-height: 100vh;
    /* Establece la altura mínima del body al 100% del viewport height */
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
}

p {
    margin: 8px 0;
}

.flex {
    display: flex;
}

.flex-center {
    align-items: center;
}

.wrap {
    flex-wrap: wrap;
}

.reverse {
    flex-wrap: wrap-reverse;
}

.column-direction {
    flex-direction: column;
}

.flex-fill {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

.spaced-between {
    justify-content: space-between;
}

.spaced-evenly {
    justify-content: space-evenly;
}

.spaced-around {
    justify-content: space-around;
}

.end-align {
    justify-content: flex-end;
}

.center-item {
    justify-content: center;
}

.pointer {
    cursor: pointer;
}

.cursor-default {
    cursor: default;
}

/* .error {
    margin-top: 8px;
} */

.error-bar {
    background-color: red;
}

.green-text {
    color: green;
}

.success-bar {
    background-color: green;
}

.bar {
    color: white;
    font-weight: 700;
    font-size: 16px;
    padding: 15px 20px;
    margin: 5px 0;
}

.redText {
    color: red;
}

.redText.asterisk {
    height: 10px;
}

.hidden {
    display: none;
}

.show {
    display: block !important;
}

.invert {
    filter: invert(1);
}

.container-overlay {
    width: 100%;
    height: 100%;
    background: #939393a6;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: none;
}

header {
    background-color: #000;
    height: 50px;
    align-items: center;
    padding: 5px 20px 5px 6px;
}

header .header-logo {
    height: 40px;
}

.header-open-menu {
    filter: invert(1);
    margin: 0 10px;
}

.relative {
    position: relative
}

.notification-icon-container {
    position: relative;
    display: inline-block;
}

.notification-badge {
    position: absolute;
    top: 2px;
    right: -5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.notifications-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    background: white;
    z-index: 3;
    height: 100%;
    border-left: solid 3px #e3e3e3;
    display: none;
}

.notifications-panel::after {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #fff;
    top: -9px;
    content: '';
    right: 102px;
    position: absolute;
}

.notification {
    border-bottom: solid 1px #e3e3e3;
    border-top: solid 1px #e3e3e3;
    padding: 5px 10px;
}

.right-header a {
    color: white;
    padding-left: 20px;
}

.right-header #name-container {
    color: white;
    padding-left: 20px;
}

/* SIDEBAR */
.sidebar {
    background-color: #6a9b7c;
}

/* Styles for viewport width greater than 50vw */
/* @media (max-width: 800px) {
    .sidebar {
        min-width: unset;
        width: unset;
    }
} */

/* FRONT MENU  */
.menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu.collapsed {
    width: 250px;
    min-width: 250px;
    max-width: 250px;
}

.menu img {
    filter: invert(1);
}

.menu li a {
    padding: 20px 20px;
    text-decoration: none;
    color: white;
}

.li-active {
    background-color: #44855b;
}

.menu.collapsed li a {
    padding: 20px 10px;
}

.menu li a:hover {
    background-color: #6aa57f;
    color: #fff;
}

.submenu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

.submenu li {
    margin: 10px 0;
}

.menu li a span {
    display: none;
}

.menu.collapsed li a span {
    display: block;
    margin: 0 20px;
    font-size: 15px;
    line-height: 18px;
}

header span {
    display: none;
}

header.collapsed span {
    display: flex;
}

.submenu li a {
    display: block;
    padding: 10px;
    background-color: #ffc107;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.submenu .submenu li a {
    background: #dc3545;
}

.f-right {
    float: right;
}

/* END FRONT MENU */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.container-content {
    padding: 0 30px 84px 30px;
    position: relative;
    max-height: calc(100vh - 56px);
    overflow-y: scroll;
    /* for tables */
    /* max-width: calc(100vw - 310px);
    overflow-x: scroll; */
}

h1 {
    text-align: center;
    margin-top: 50px;
    color: #5c5c5c;
}

.body-title {
    text-align: center;
    color: #5c5c5c;
}

.row {
    column-gap: 30px;
}

.small-gap {
    column-gap: 10px;
}

.gap-4 {
    gap: 4px;
}

.gap-8 {
    gap: 8px;
}

.gap-16 {
    gap: 16px;
}

.gap-32 {
    gap: 32px;
}

.col {
    flex: 1;
    padding: 5px 20px;
    box-sizing: border-box;
}

form {
    padding: 40px;
    background-color: #fff;
    border-radius: 15px;
}

form h2 {
    margin-top: 0;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    margin-bottom: 5px;
    min-width: 160px;
}

.column-filters .form-group label {
    display: inline-block;
    text-align: end;
    min-width: 180px;
}

.form-group input,
.form-group textarea,
.form-group input,
.form-group select {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    flex: 1;
}

.form-group textarea {
    display: inline-block;
    vertical-align: middle;
    min-height: 150px;
    /* altura deseada */
}

.form-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 20px auto;
    display: flex;
    width: 230px;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 700;
}

.form-container {
    display: flex;
    flex-direction: column;
}

#login-form {
    flex-basis: 0;
    /*flex-grow: 1;*/
}

/* TABLES */
.table-layout1 {
    width: 100% !important;
    margin: 30px 0;
    padding-top: 8px;
}

.table-layout1 th {
    background-color: #6a9b7c;
    color: white;
    font-weight: 700;
    padding: 10px;
    text-align: center;
}

.table-layout1 td {
    text-align: center;
    padding: 10px 0;
}

/* Efecto de stripes */
.table-layout1 tr:nth-child(even) td {
    background-color: #f2f2f2;
}

.table-layout1 tr:nth-child(odd) td {
    background-color: #ffffff;
}

/* password recovery */
.close-notice-btn {
    border: solid 1px #383333;
    padding: 4px 7px;
    background: lightgray;
    color: #383333;
    border-radius: 3px;
}

.max-width-input {
    max-width: 181px;
}

/* bubble chat */
.chat-bubble-container {
    position: fixed;
    bottom: 90px;
    right: 20px;
}

/* bubble chat refresh */
.chat-bubble-refresh-container {
    position: fixed;
    right: 20px;
    left: 86%;
    bottom: 13%;
}

.chat-bubble {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #6a9b7c;
    transition: all 0.2s ease-in-out;
}

.chat-bubble:hover {
    background-color: #6aa57f;
}

/* end bubble chat */
/* Filter box section */
.progress-bar {
    width: 180px;
    height: 30px;
    background-color: #b8b5b5;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    line-height: 30px;
}

.progress {
    height: 100%;
    background-color: #6a9b7c;
    position: absolute;
    top: 0;
    left: 0;
}

.level-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
}

.title-box-public {
    background-color: #fff;
    margin-bottom: 8px;
    padding: 0 20px;
    border-radius: 4px;
}

.outdated-contracts {
    background: red;
    color: white;
    font-weight: 700;
    font-size: 14px;
    border-radius: 50%;
    margin-right: 5px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-box {
    padding: 16px;
    background-color: white;
    border-radius: 4px;
}

.column-filters .form-group {
    padding: 20px 0;
    margin: 0;
    text-align: center;
}

.column-filters .form-group input,
.column-filters .form-group textarea,
.column-filters .form-group select {
    min-width: 200px;
    margin: 0 10px;
}

.tooltip {
    padding: 2px 6px;
    color: white;
    background-color: #6a9b7c;
    border-radius: 50%;
}

.tooltip-text {
    position: absolute;
    background: white;
    padding: 10px;
    border: 1px solid;
    border-radius: 10px;
    display: none;
    /*opacity: 0;*/
    z-index: 1;
    /*left: 30%;*/
}

.filter-box-search-btn {
    padding: 5px 20px;
    background-color: rgb(0, 123, 255);
    border-radius: 10px;
    color: white;
}

footer {
    background-color: #000;
    color: #fff;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 5;
    position: fixed;
    bottom: 0;
}

footer p {
    margin: 0;
}

footer .right {
    display: flex;
    align-items: center;
}

footer img {
    margin-left: 10px;
}

/* Media queries */
/*Especial para el footer*/
@media (max-height: 900px) {
    footer {
        margin-bottom: -68px;
    }
}

.pointerleft {
    position: relative;
    left: -20%;
}

.btn-ver {
    background-color: #6a9b7c;
    color: white;
}

.btn-oculto {
    background-color: #888;
}

.centrar {
    margin: 0 auto;
    width: min-content;
}

.row-red {
    color: red !important
}

/*loading*/

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
}

#lista_monitoreados thead,
#lista_monitoreados th {
    text-align: center !important;
}

.align-center {
    text-align: center !important;
}

.align-center button {
    margin: auto;
}

/* height */
.h-full {
    height: 100%;
}

.h-32 {
    height: 32px;
}

/* width */
.w-full {
    width: 100% !important;
}

/* display */
.grid {
    display: grid !important
}

/* font size */
.text-xs {
    font-size: 12px;
}

.text-sm {
    font-size: 14px;
}

.text-base {
    font-size: 16px;
}


.border-test {
    border: 1px solid;
}

/* text color */
.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

/* margin */

.mt-1 {
    margin-top: 1px;
}

.m-8 {
    margin: 8px;
}

.ml-8 {
    margin-left: 8px;
}

.mr-8 {
    margin-right: 8px;
}


.mt-8 {
    margin-top: 8px;
}

.mb-8 {
    margin-bottom: 8px;
}

.mx-8 {
    margin-top: 8px;
    margin-bottom: 8px;
}

.my-8 {
    margin-left: 8px;
    margin-right: 8px;
}

.m-16 {
    margin: 16px;
}

.ml-16 {
    margin-left: 16px;
}

.mr-16 {
    margin-right: 16px;
}

.mt-16 {
    margin-top: 16px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mx-16 {
    margin-top: 16px;
    margin-bottom: 16px;
}

.my-16 {
    margin-left: 16px;
    margin-right: 16px;
}

.mt-24 {
    margin-top: 24px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mx-24 {
    margin-top: 24px;
    margin-bottom: 24px;
}

.my-24 {
    margin-left: 24px;
    margin-right: 24px;
}

/* padding */
.p-0 {
    padding: 0px;
}
.p-8 {
    padding: 8px;
}

.pl-8 {
    padding-left: 8px;
}

.pr-8 {
    padding-right: 8px;
}


.pt-8 {
    padding-top: 8px;
}

.pb-8 {
    padding-bottom: 8px;
}

.px-8 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.py-8 {
    padding-left: 8px;
    padding-right: 8px;
}

.p-16 {
    padding: 16px !important;
}

.pl-16 {
    padding-left: 16px;
}

.pr-16 {
    padding-right: 16px;
}


.pt-16 {
    padding-top: 16px;
}

.pb-16 {
    padding-bottom: 16px;
}

.px-16 {
    padding-top: 16px;
    padding-bottom: 16px;
}

.py-16 {
    padding-left: 16px;
    padding-right: 16px;
}



/* scroll */
::-webkit-scrollbar {
    width: 13px;
}

::-webkit-scrollbar-track {
    background: '#F5F5F5';
}

::-webkit-scrollbar-thumb {
    border: 4px solid transparent;
    background: #8B8D8E;
    border-radius: 16px;
    background-clip: content-box;
}

/* line height */
.lh-20 {
    line-height: 20px;
}

/* Modal */
.modal {
    max-width: 50% !important;
}

.modal.confirmation {
    width: 600px !important;
    max-width: 98% !important;
}

.modal.addArea {
    width: 300px;
    max-width: 95% !important;
}

/* Add the pseudo-element for the sort icon */

.table-class tr th:not(.static) {
    position: relative;
    cursor: pointer;
    padding-right: 26px !important;
}

.table-class tr th:not(.static)::after,
.table-class tr th:not(.static)::before {
    position: absolute;
    display: block;
    opacity: .125;
    right: 10px;
    line-height: 9px;
    font-size: .8em;

}

.table-class tr th:not(.static)::after {
    content: "▼";
    content: "▼" /"";
    top: 50% !important;
}

.table-class tr th:not(.static)::before {
    content: "▲";
    content: "▲" /"";
    bottom: 50% !important
}

.table-class tr th.selectedHeaderSorting.asc:not(.static)::before {
    opacity: 0.6;
}

.table-class tr th.selectedHeaderSorting.desc:not(.static)::after {
    opacity: 0.6;
}

/* loader */
.loading-container {
    display: none;
    /* position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    /* display: flex; */
    /*justify-content: center;
    align-items: center; */
}

.loading-spinner {
    font-size: 48px;
    color: #ffffff;
    animation: spin 1s infinite linear;
}

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

    100% {
        transform: rotate(360deg);
    }
}

#circle2 {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 50px;
    width: 50px;
    margin: -25px 0 0 -25px;
    border: 4px rgba(0, 0, 0, 0.25) solid;
    border-top: 4px #6a9b7c solid;
    border-radius: 50%;
    -webkit-animation: spin2 1s infinite linear;
    animation: spin2 1s infinite linear;
}

@-webkit-keyframes spin2 {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes spin2 {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

/* end loader */

/* snackbar */
#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: left;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 6;
    right: 30px;
    bottom: 90px;
    border-radius: 4px
}

#snackbar.success {
    background-color: #4CAF50;
}

#snackbar.error {
    background-color: #F44336;
}

#snackbar.warning {
    background-color: #fff3cd;
    color: #856404;
}

#snackbar.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 90px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 90px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 90px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 90px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

/* end snackbar */


/* flags */
.custom-select {
    position: relative;
    width: 70px;
    z-index: 2;
}

.selected-item {
    cursor: pointer;
    border-radius: 4px;
    height: 32px;
    background-color: #FFF;
}

.options {
    display: none;
    position: absolute;
    top: 101%;
    left: 0;
    width: 100%;
    border: 1px solid #ccc;
    background-color: #fff;
    max-height: 500px;
    overflow: scroll;
}

.option {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.option:hover {
    background-color: #f1f1f1;
}

/* border radius */
.rounded {
    border-radius: 4px;
}

/* multiselect roles dropdown  */
.popupAddUserRolesSelect,
.popupEditUserRolesSelect {
    position: relative;
    display: inline-block;
    height: 34px;
}

.popupAddUserRolesSelect .dropdown-btn,
.popupEditUserRolesSelect .dropdown-btn {
    border: 1px solid #ccc;
}

.popupAddUserRolesSelect .dropdown-content,
.popupEditUserRolesSelect .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    width: 100%;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    height: 170px;
    overflow-y: scroll;
}

.popupAddUserRolesSelect .dropdown-content label:hover,
.popupEditUserRolesSelect .dropdown-content label:hover {
    background-color: #f1f1f1;
}


/* Letter spacing */
.tracking-tighter {
    letter-spacing: -0.05em
}

.tracking-tight {
    letter-spacing: -0.025em
}

.tracking-normal {
    letter-spacing: 0em
}

.tracking-wide {
    letter-spacing: 0.025em
}

.tracking-wider {
    letter-spacing: 0.05em
}

.tracking-widest {
    letter-spacing: 0.1em
}

.suffix-icon {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
}

.toast.show.success {
    background: #4CAF50 !important;
}

.close-toast {
    position: relative !important;
    padding: 5px !important;
}

.top-menu-toggle {
    display: none;
}

@media (min-width: 768px) {
    .top-menu {
        display: flex !important;
    }
}

@media (max-width: 767px) {
    .modal {
        max-width: 90% !important;
    }

    .top-menu-toggle {
        display: block;
    }

    .top-menu {
        display: none;
        position: fixed;
        right: 0;
        top: 48px;
        background: #000;
        flex-direction: column;
        width: 200px;
        z-index: 99;
        align-content: flex-start;
    }

    .top-menu a,
    .top-menu div {
        padding: 10px 20px;
        text-align: left;
        width: 100%;
        gap: 0;
    }
}

@media (max-width: 640px) {

    div#custom-pagination {
        margin-bottom: 20px;
    }
}



/* line 17, ../src/please-wait.scss */
body.pg-loading {
    overflow: hidden;
}

/* line 21, ../src/please-wait.scss */
.pg-loading-screen {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000000;
    opacity: 1;
    background-color: #FFF;
    -webkit-transition: background-color 0.4s ease-in-out 0s;
    -moz-transition: background-color 0.4s ease-in-out 0s;
    -ms-transition: background-color 0.4s ease-in-out 0s;
    -o-transition: background-color 0.4s ease-in-out 0s;
    transition: background-color 0.4s ease-in-out 0s;
}

/* line 32, ../src/please-wait.scss */
.pg-loading-screen.pg-loaded {
    opacity: 0;
    -webkit-animation: pgAnimLoaded 0.5s cubic-bezier(0.7, 0, 0.3, 1) both;
    -moz-animation: pgAnimLoaded 0.5s cubic-bezier(0.7, 0, 0.3, 1) both;
    -ms-animation: pgAnimLoaded 0.5s cubic-bezier(0.7, 0, 0.3, 1) both;
    -o-animation: pgAnimLoaded 0.5s cubic-bezier(0.7, 0, 0.3, 1) both;
    animation: pgAnimLoaded 0.5s cubic-bezier(0.7, 0, 0.3, 1) both;
}

/* line 38, ../src/please-wait.scss */
.pg-loading-screen.pg-loading .pg-loading-logo-header,
.pg-loading-screen.pg-loading .pg-loading-html {
    opacity: 1;
}

/* line 42, ../src/please-wait.scss */
.pg-loading-screen.pg-loading .pg-loading-logo-header,
.pg-loading-screen.pg-loading .pg-loading-html:not(.pg-loaded) {
    -webkit-animation: pgAnimLoading 1s cubic-bezier(0.7, 0, 0.3, 1) both;
    -moz-animation: pgAnimLoading 1s cubic-bezier(0.7, 0, 0.3, 1) both;
    -ms-animation: pgAnimLoading 1s cubic-bezier(0.7, 0, 0.3, 1) both;
    -o-animation: pgAnimLoading 1s cubic-bezier(0.7, 0, 0.3, 1) both;
    animation: pgAnimLoading 1s cubic-bezier(0.7, 0, 0.3, 1) both;
}

/* line 46, ../src/please-wait.scss */
.pg-loading-screen.pg-loading .pg-loading-html:not(.pg-loaded) {
    -webkit-animation-delay: 0.3s;
    -moz-animation-delay: 0.3s;
    -ms-animation-delay: 0.3s;
    -o-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

/* line 51, ../src/please-wait.scss */
.pg-loading-screen .pg-loading-inner {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    position: static;
}

/* line 59, ../src/please-wait.scss */
.pg-loading-screen .pg-loading-center-outer {
    width: 100%;
    padding: 0;
    display: table !important;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
}

/* line 70, ../src/please-wait.scss */
.pg-loading-screen .pg-loading-center-middle {
    padding: 0;
    vertical-align: middle;
    display: table-cell !important;
    margin: 0;
    text-align: center;
}

/* line 78, ../src/please-wait.scss */
.pg-loading-screen .pg-loading-logo-header,
.pg-loading-screen .pg-loading-html {
    width: 100%;
    opacity: 0;
}

/* line 83, ../src/please-wait.scss */
.pg-loading-screen .pg-loading-logo-header {
    text-align: center;
}

/* line 86, ../src/please-wait.scss */
.pg-loading-screen .pg-loading-logo-header img {
    display: inline-block !important;
}

/* line 91, ../src/please-wait.scss */
.pg-loading-screen .pg-loading-html {
    margin-top: 90px;
}

/* line 94, ../src/please-wait.scss */
.pg-loading-screen .pg-loading-html.pg-loaded {
    -webkit-transition: opacity 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    -moz-transition: opacity 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    -ms-transition: opacity 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    -o-transition: opacity 0.5s cubic-bezier(0.7, 0, 0.3, 1);
    transition: opacity 0.5s cubic-bezier(0.7, 0, 0.3, 1);
}

/* line 97, ../src/please-wait.scss */
.pg-loading-screen .pg-loading-html.pg-loaded.pg-removing {
    opacity: 0;
}

/* line 101, ../src/please-wait.scss */
.pg-loading-screen .pg-loading-html.pg-loaded.pg-loading {
    opacity: 1;
}

@-webkit-keyframes pgAnimLoading {
    from {
        opacity: 0;
    }
}

@-moz-keyframes pgAnimLoading {
    from {
        opacity: 0;
    }
}

@-o-keyframes pgAnimLoading {
    from {
        opacity: 0;
    }
}

@-ms-keyframes pgAnimLoading {
    from {
        opacity: 0;
    }
}

@keyframes pgAnimLoading {
    from {
        opacity: 0;
    }
}

@-webkit-keyframes pgAnimLoaded {
    from {
        opacity: 1;
    }
}

@-moz-keyframes pgAnimLoaded {
    from {
        opacity: 1;
    }
}

@-o-keyframes pgAnimLoaded {
    from {
        opacity: 1;
    }
}

@-ms-keyframes pgAnimLoaded {
    from {
        opacity: 1;
    }
}

@keyframes pgAnimLoaded {
    from {
        opacity: 1;
    }
}

:root {
    --sk-size: 40px;
    --sk-color: #333
}

.sk-center {
    margin: auto
}

.sk-plane {
    width: var(--sk-size);
    height: var(--sk-size);
    background-color: var(--sk-color);
    animation: sk-plane 1.2s infinite ease-in-out
}

@keyframes sk-plane {
    0% {
        transform: perspective(120px) rotateX(0) rotateY(0)
    }

    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0)
    }

    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg)
    }
}

.sk-chase {
    width: var(--sk-size);
    height: var(--sk-size);
    position: relative;
    animation: sk-chase 2.5s infinite linear both
}

.sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: sk-chase-dot 2.0s infinite ease-in-out both
}

.sk-chase-dot:before {
    content: '';
    display: block;
    width: 25%;
    height: 25%;
    background-color: var(--sk-color);
    border-radius: 100%;
    animation: sk-chase-dot-before 2.0s infinite ease-in-out both
}

.sk-chase-dot:nth-child(1) {
    animation-delay: -1.1s
}

.sk-chase-dot:nth-child(2) {
    animation-delay: -1.0s
}

.sk-chase-dot:nth-child(3) {
    animation-delay: -0.9s
}

.sk-chase-dot:nth-child(4) {
    animation-delay: -0.8s
}

.sk-chase-dot:nth-child(5) {
    animation-delay: -0.7s
}

.sk-chase-dot:nth-child(6) {
    animation-delay: -0.6s
}

.sk-chase-dot:nth-child(1):before {
    animation-delay: -1.1s
}

.sk-chase-dot:nth-child(2):before {
    animation-delay: -1.0s
}

.sk-chase-dot:nth-child(3):before {
    animation-delay: -0.9s
}

.sk-chase-dot:nth-child(4):before {
    animation-delay: -0.8s
}

.sk-chase-dot:nth-child(5):before {
    animation-delay: -0.7s
}

.sk-chase-dot:nth-child(6):before {
    animation-delay: -0.6s
}

@keyframes sk-chase {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes sk-chase-dot {

    80%,
    100% {
        transform: rotate(360deg)
    }
}

@keyframes sk-chase-dot-before {
    50% {
        transform: scale(0.4)
    }

    100%,
    0% {
        transform: scale(1.0)
    }
}

.sk-bounce {
    width: var(--sk-size);
    height: var(--sk-size);
    position: relative
}

.sk-bounce-dot {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--sk-color);
    opacity: .6;
    position: absolute;
    top: 0;
    left: 0;
    animation: sk-bounce 2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955)
}

.sk-bounce-dot:nth-child(2) {
    animation-delay: -1.0s
}

@keyframes sk-bounce {

    0%,
    100% {
        transform: scale(0)
    }

    45%,
    55% {
        transform: scale(1)
    }
}

.sk-wave {
    width: var(--sk-size);
    height: var(--sk-size);
    display: flex;
    justify-content: space-between
}

.sk-wave-rect {
    background-color: var(--sk-color);
    height: 100%;
    width: 15%;
    animation: sk-wave 1.2s infinite ease-in-out
}

.sk-wave-rect:nth-child(1) {
    animation-delay: -1.2s
}

.sk-wave-rect:nth-child(2) {
    animation-delay: -1.1s
}

.sk-wave-rect:nth-child(3) {
    animation-delay: -1.0s
}

.sk-wave-rect:nth-child(4) {
    animation-delay: -0.9s
}

.sk-wave-rect:nth-child(5) {
    animation-delay: -0.8s
}

@keyframes sk-wave {

    0%,
    40%,
    100% {
        transform: scaleY(0.4)
    }

    20% {
        transform: scaleY(1)
    }
}

.sk-pulse {
    width: var(--sk-size);
    height: var(--sk-size);
    background-color: var(--sk-color);
    border-radius: 100%;
    animation: sk-pulse 1.2s infinite cubic-bezier(0.455, 0.03, 0.515, 0.955)
}

@keyframes sk-pulse {
    0% {
        transform: scale(0)
    }

    100% {
        transform: scale(1);
        opacity: 0
    }
}

.sk-flow {
    width: calc(var(--sk-size) * 1.3);
    height: calc(var(--sk-size) * 1.3);
    display: flex;
    justify-content: space-between
}

.sk-flow-dot {
    width: 25%;
    height: 25%;
    background-color: var(--sk-color);
    border-radius: 50%;
    animation: sk-flow 1.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) 0s infinite both
}

.sk-flow-dot:nth-child(1) {
    animation-delay: -0.30s
}

.sk-flow-dot:nth-child(2) {
    animation-delay: -0.15s
}

@keyframes sk-flow {

    0%,
    80%,
    100% {
        transform: scale(0.3)
    }

    40% {
        transform: scale(1)
    }
}

.sk-swing {
    width: var(--sk-size);
    height: var(--sk-size);
    position: relative;
    animation: sk-swing 1.8s infinite linear
}

.sk-swing-dot {
    width: 45%;
    height: 45%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-color: var(--sk-color);
    border-radius: 100%;
    animation: sk-swing-dot 2s infinite ease-in-out
}

.sk-swing-dot:nth-child(2) {
    top: auto;
    bottom: 0;
    animation-delay: -1s
}

@keyframes sk-swing {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes sk-swing-dot {

    0%,
    100% {
        transform: scale(0.2)
    }

    50% {
        transform: scale(1)
    }
}

.sk-circle {
    width: var(--sk-size);
    height: var(--sk-size);
    position: relative
}

.sk-circle-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0
}

.sk-circle-dot:before {
    content: '';
    display: block;
    width: 15%;
    height: 15%;
    background-color: var(--sk-color);
    border-radius: 100%;
    animation: sk-circle 1.2s infinite ease-in-out both
}

.sk-circle-dot:nth-child(1) {
    transform: rotate(30deg)
}

.sk-circle-dot:nth-child(2) {
    transform: rotate(60deg)
}

.sk-circle-dot:nth-child(3) {
    transform: rotate(90deg)
}

.sk-circle-dot:nth-child(4) {
    transform: rotate(120deg)
}

.sk-circle-dot:nth-child(5) {
    transform: rotate(150deg)
}

.sk-circle-dot:nth-child(6) {
    transform: rotate(180deg)
}

.sk-circle-dot:nth-child(7) {
    transform: rotate(210deg)
}

.sk-circle-dot:nth-child(8) {
    transform: rotate(240deg)
}

.sk-circle-dot:nth-child(9) {
    transform: rotate(270deg)
}

.sk-circle-dot:nth-child(10) {
    transform: rotate(300deg)
}

.sk-circle-dot:nth-child(11) {
    transform: rotate(330deg)
}

.sk-circle-dot:nth-child(1):before {
    animation-delay: -1.1s
}

.sk-circle-dot:nth-child(2):before {
    animation-delay: -1s
}

.sk-circle-dot:nth-child(3):before {
    animation-delay: -0.9s
}

.sk-circle-dot:nth-child(4):before {
    animation-delay: -0.8s
}

.sk-circle-dot:nth-child(5):before {
    animation-delay: -0.7s
}

.sk-circle-dot:nth-child(6):before {
    animation-delay: -0.6s
}

.sk-circle-dot:nth-child(7):before {
    animation-delay: -0.5s
}

.sk-circle-dot:nth-child(8):before {
    animation-delay: -0.4s
}

.sk-circle-dot:nth-child(9):before {
    animation-delay: -0.3s
}

.sk-circle-dot:nth-child(10):before {
    animation-delay: -0.2s
}

.sk-circle-dot:nth-child(11):before {
    animation-delay: -0.1s
}

@keyframes sk-circle {

    0%,
    80%,
    100% {
        transform: scale(0)
    }

    40% {
        transform: scale(1)
    }
}

.sk-circle-fade {
    width: var(--sk-size);
    height: var(--sk-size);
    position: relative
}

.sk-circle-fade-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0
}

.sk-circle-fade-dot:before {
    content: '';
    display: block;
    width: 15%;
    height: 15%;
    background-color: var(--sk-color);
    border-radius: 100%;
    animation: sk-circle-fade 1.2s infinite ease-in-out both
}

.sk-circle-fade-dot:nth-child(1) {
    transform: rotate(30deg)
}

.sk-circle-fade-dot:nth-child(2) {
    transform: rotate(60deg)
}

.sk-circle-fade-dot:nth-child(3) {
    transform: rotate(90deg)
}

.sk-circle-fade-dot:nth-child(4) {
    transform: rotate(120deg)
}

.sk-circle-fade-dot:nth-child(5) {
    transform: rotate(150deg)
}

.sk-circle-fade-dot:nth-child(6) {
    transform: rotate(180deg)
}

.sk-circle-fade-dot:nth-child(7) {
    transform: rotate(210deg)
}

.sk-circle-fade-dot:nth-child(8) {
    transform: rotate(240deg)
}

.sk-circle-fade-dot:nth-child(9) {
    transform: rotate(270deg)
}

.sk-circle-fade-dot:nth-child(10) {
    transform: rotate(300deg)
}

.sk-circle-fade-dot:nth-child(11) {
    transform: rotate(330deg)
}

.sk-circle-fade-dot:nth-child(1):before {
    animation-delay: -1.1s
}

.sk-circle-fade-dot:nth-child(2):before {
    animation-delay: -1.0s
}

.sk-circle-fade-dot:nth-child(3):before {
    animation-delay: -0.9s
}

.sk-circle-fade-dot:nth-child(4):before {
    animation-delay: -0.8s
}

.sk-circle-fade-dot:nth-child(5):before {
    animation-delay: -0.7s
}

.sk-circle-fade-dot:nth-child(6):before {
    animation-delay: -0.6s
}

.sk-circle-fade-dot:nth-child(7):before {
    animation-delay: -0.5s
}

.sk-circle-fade-dot:nth-child(8):before {
    animation-delay: -0.4s
}

.sk-circle-fade-dot:nth-child(9):before {
    animation-delay: -0.3s
}

.sk-circle-fade-dot:nth-child(10):before {
    animation-delay: -0.2s
}

.sk-circle-fade-dot:nth-child(11):before {
    animation-delay: -0.1s
}

@keyframes sk-circle-fade {

    0%,
    39%,
    100% {
        opacity: 0;
        transform: scale(0.6)
    }

    40% {
        opacity: 1;
        transform: scale(1)
    }
}

.sk-grid {
    width: var(--sk-size);
    height: var(--sk-size)
}

.sk-grid-cube {
    width: 33.33%;
    height: 33.33%;
    background-color: var(--sk-color);
    float: left;
    animation: sk-grid 1.3s infinite ease-in-out
}

.sk-grid-cube:nth-child(1) {
    animation-delay: .2s
}

.sk-grid-cube:nth-child(2) {
    animation-delay: .3s
}

.sk-grid-cube:nth-child(3) {
    animation-delay: .4s
}

.sk-grid-cube:nth-child(4) {
    animation-delay: .1s
}

.sk-grid-cube:nth-child(5) {
    animation-delay: .2s
}

.sk-grid-cube:nth-child(6) {
    animation-delay: .3s
}

.sk-grid-cube:nth-child(7) {
    animation-delay: 0s
}

.sk-grid-cube:nth-child(8) {
    animation-delay: .1s
}

.sk-grid-cube:nth-child(9) {
    animation-delay: .2s
}

@keyframes sk-grid {

    0%,
    70%,
    100% {
        transform: scale3D(1, 1, 1)
    }

    35% {
        transform: scale3D(0, 0, 1)
    }
}

.sk-fold {
    width: var(--sk-size);
    height: var(--sk-size);
    position: relative;
    transform: rotateZ(45deg)
}

.sk-fold-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    transform: scale(1.1)
}

.sk-fold-cube:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--sk-color);
    animation: sk-fold 2.4s infinite linear both;
    transform-origin: 100% 100%
}

.sk-fold-cube:nth-child(2) {
    transform: scale(1.1) rotateZ(90deg)
}

.sk-fold-cube:nth-child(4) {
    transform: scale(1.1) rotateZ(180deg)
}

.sk-fold-cube:nth-child(3) {
    transform: scale(1.1) rotateZ(270deg)
}

.sk-fold-cube:nth-child(2):before {
    animation-delay: .3s
}

.sk-fold-cube:nth-child(4):before {
    animation-delay: .6s
}

.sk-fold-cube:nth-child(3):before {
    animation-delay: .9s
}

@keyframes sk-fold {

    0%,
    10% {
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0
    }

    25%,
    75% {
        transform: perspective(140px) rotateX(0);
        opacity: 1
    }

    90%,
    100% {
        transform: perspective(140px) rotateY(180deg);
        opacity: 0
    }
}

.sk-wander {
    width: var(--sk-size);
    height: var(--sk-size);
    position: relative
}

.sk-wander-cube {
    background-color: var(--sk-color);
    width: 20%;
    height: 20%;
    position: absolute;
    top: 0;
    left: 0;
    --sk-wander-distance: calc(var(--sk-size) * 0.75);
    animation: sk-wander 2.0s ease-in-out -2.0s infinite both
}

.sk-wander-cube:nth-child(2) {
    animation-delay: -0.5s
}

.sk-wander-cube:nth-child(3) {
    animation-delay: -1.0s
}
.sk-chase {
    margin: 0 auto;
}

.sk-chase-dot:before {
    background-color: #fff;
}


@keyframes sk-wander {
    0% {
        transform: rotate(0)
    }

    25% {
        transform: translateX(var(--sk-wander-distance)) rotate(-90deg) scale(0.6)
    }

    50% {
        transform: translateX(var(--sk-wander-distance)) translateY(var(--sk-wander-distance)) rotate(-179deg)
    }

    50.1% {
        transform: translateX(var(--sk-wander-distance)) translateY(var(--sk-wander-distance)) rotate(-180deg)
    }

    75% {
        transform: translateX(0) translateY(var(--sk-wander-distance)) rotate(-270deg) scale(0.6)
    }

    100% {
        transform: rotate(-360deg)
    }
}

.public-submenu{display: none;}
.public-submenu li a{ padding-top: 0px !important; padding-bottom: 10px !important; padding-left: 20px !important;}
.btn-toggle-menuuu{margin: 0 !important;}
.btn-toggle-menuuu::after {
    /*display: inline-block;*/
    width: 1.25em;
    /* line-height: 0; */
    content: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba%28255,255,255%29' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 14l6-6-6-6'/%3e%3c/svg%3e");
    transition: transform .35s ease;
    transform-origin: 0.5em 50%;
    float: right;
}
.custom-menu-toggel.active .public-submenu{display: block;}
.custom-menu-toggel.active .btn-toggle-menuuu::after {
    transform: rotate(90deg);
}

tr.group>td,
tr.group>td:hover {
    background-color: rgba(106,155,124, 0.60) !important;
    color: white;
}

:root.dark tr.group,
:root.dark tr.group:hover {
    background-color: rgba(0, 0, 0, 0.75) !important;
}

.toggle-password {
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
}
