@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

@import '../../../../shared/fonts/icofont/icofont.min.css';


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* theme blue */
   /* --theme-color: #37A0EA;
    --theme-hover: #60BBFB;
    --bg-color: #F3F6F9;

    --font-color: #19496A;
    --text-color: #19496A;
    --mute-color: #A7C1D4;
    --primary-color: #37A0EA;
    --text-primary: #3f85b8;
    --theme-wave: url('../img/wave-bluesky.png');

    --theme-color: #295E84;
    --theme-hover: #60BBFB;
    --bg-color: #F3F6F9;

    --font-color: #19496A;
    --mute-color: #A7C1D4;
    --primary-color: #295E84;
    --text-primary: #24455e;
    --theme-wave: url('../img/wave-darkblue.png');*/

    /*theme green*/
    /*--theme-color: #179076;
    --theme-hover: #38c28b;
    --bg-color: #F6F6Fb;
    --bg-color: #f3f2f1;
    --font-color: #19496A;
    --text-color: #19496A;
    --mute-color: #A7C1D4;
    --primary-color: #179076;
    --text-primary: #287e6b;
    --theme-wave: url('../img/wave-green.png');


    /*theme red*/
    /*    --theme-color: #f87661;
    --theme-hover: #fa806d;
    --bg-color: #F3F6F9;
     --bg-color: #f1f5f7;
     --font-color: #19496A;
    --mute-color: #A7C1D4;
    --primary-color: #f87661;
    --text-primary: #d66756;
    --theme-wave: url('../img/wave-red.png');


    /*theme grey*/
    /*  --theme-color: #6C84B8;
    --theme-hover: #8099ce;
    --bg-color: #F3F6F9;
    --font-color: #19496A;
    --mute-color: #A7C1D4;
    --primary-color: #6C84B8;
    --text-primary: #556da1;
    --theme-wave: url('../img/wave-purple.png');

    /* theme yellow*/
    /*   --theme-color: #E9B45A;
    --theme-hover: #FFAF4D;
    --bg-color: #F3F6F9;
    --font-color: #19496A;
    --mute-color: #A7C1D4;
    --primary-color: #E9B45A;
    --text-primary: #eba817;
    --theme-wave: url('../img/wave-yellow.png');
    */

    --font-color: #19496A;
    --mute-color: #A7C1D4;
    --mute-color: #8095AA;
    --mute-color: #E8EBF1;
    --light-grey: #e6e6e6;

    --success-color: #5EDC98;
    --danger-color: #F96363;
    --warning-color: #FFAE55;
    --info-color: #76DEFC;
    --info-color: #3fd3fc;
    --secondary-color: #EFF7FD;
    --secondary-color: #f3f2f1;
    --white-color: #fff;
    --overlay: rgba(0, 0, 0, 0.1);

}

body {
    background-color: var(--bg-color);
    font-family: 'Montserrat', sans-serif;
    color: var(--font-color);
    overflow-y: scroll;
    overflow-x: none;    

}

body::-webkit-scrollbar {
    display: none;
}

input,
button,
select,
textarea {
    font-family: 'Montserrat', sans-serif;
    outline: none;
}

.main {
    width: 100%;
    display: flex;
}

.sidebar {
    width: 300px;
    min-height: 100vh;
    display: flex;
    position: fixed;
    z-index: 3;
}

.sidebar-main {
    width: 60px;
    min-height: 100vh;
    background-color: var(--theme-color);
    /* padding: 25px 15px;*/
    align-items: center;
    z-index: 1;
}

.brand {
    width: 100%;
    height: 100px;
    padding: 25px 10px;
}


.logo {
    width: 100%;
}

.main-menu {
    width: 100%;
    height: calc(100vh - 180px);
    display: flex;
    flex-direction: column;
    align-items: center;
    /**justify-content: center;*/
    gap: 20px;
}

.logoff {
    width: 100%; 
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    
}



.btn-menu:hover,
.menu-active {
    /* background-color: var(--theme-hover);*/
    background-color: rgba(255, 255, 255, 0.3);
}

.btn-default {
    background-color: var(--secondary-color);
    color: var(--mute-color);
}



.widget-active {
    background-color: var(--secondary-color);
}

.widget-active span,
.btn-widget:hover span {
    background-color: var(--white-color);
}

.hidden-submit {
    border: none;
    width: 0;
    height: 0;
    overflow: hidden;
}


.nav-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-height: calc(100vh - 280px);
    gap: 20px;
}


.sidebar-content {
    width: 240px;
    min-height: 100vh;
    background-color: var(--white-color);
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /*justify-content: flex-start;*/
    gap: 10px;
    position: absolute;
    top: 0;
    left: 60px;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.05);
    z-index: 1;
}


.sidebar-header {
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    /* padding: 10px 0;*/
    margin-bottom: 40px;
}



#sidebar-toggle i,
#activity-toggle {
    background-color: var(--white-color) !important;
    margin: 10px 30px 0 0;
}

.on #sidebar-toggle {
    display: none;
}

.off #sidebar-toggle {
    display: flex;
}

.show #activity-toggle {
    display: none;
}

.hide #activity-toggle {
    display: flex;
}


.sidebar-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    /*margin-top: 20px;*/


}

.side-action {
    width: 100%;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.side-action a {
    text-decoration: none;
}

.side-menu {
    width: 100%;
    padding: 20px 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.side-menu-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--mute-color);
}

.side-menu-item:hover {
    color: var(--font-color);
}

.side-menu-item i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.activity-bar {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 300px;
    min-height: 100vh;
    background-color: var(--white-color);
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.05);
}

.main-container {
    width: calc(100% - 600px);
    display: flex;
    flex-direction: column;
    margin-left: 300px;

}

.off .main-container {
    width: calc(100% - 240px);
    margin-left: 60px;
}

.off .sidebar {
    width: 60px;
}

.off .sidebar-content {
    display: none;
}

.show {
    margin-right: 300px;
}

.hide {
    width: calc(100% - 300px);
}

.hide .activity-bar {
    display: none;
}

.off>.hide.main-container {
    width: 100%;
}
.off>.show.main-container {
    width: calc(100% - 60px);
}

.main-header {
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 30px;
}

.header-box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-box {
    width: 50%;
    height: 100%;
    /*padding: 20px 0 32px 0;*/
    padding: 20px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.search-box input {
    position: relative;
    height: 48px;
    border: none;
    width: 100%;
    border-radius: 6px;
    outline: none;
    padding: 10px 10px 10px 40px;
    font-size: 0.9rem;
    /*left: -10px;*/
}

.search-box input::placeholder {
    font-weight: 400;
    color: var(--mute-color);
}

.search-box i {
    position: relative;
    top: 0;
    left: 30px;
    z-index: 1;
    color: var(--mute-color);
}

.profile-content {
    position: relative;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    padding: 20px 30px 0 0;
    gap: 20px;
}

.user-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

.notify {
    font-size: 1.5rem;
    color: var(--mute-color);
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: var(--font-color);
}

.account-menu {
    position: absolute;
    top: 70px;
    right: 0;
    min-width: 150px;
    background-color: var(--white-color);
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    list-style: none;
    display: none;
    z-index: 2;
}

.account-menu li {
    width: 100%;
    cursor: pointer;
}

.account-menu li a {
    width: 100%;
    min-height: 100%;
    padding: 10px 20px;
    display: flex;
    text-decoration: none;
    font-size: 0.9rem;
    color: var(--mute-color);
    font-weight: 600;
}

.account-menu li:hover {
    background-color: var(--secondary-color);
}

.account-menu li:hover a {
    color: var(--font-color);
}

.main-content {
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card-container {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    overflow-x: scroll;
}

.card-container::-webkit-scrollbar,
.quick-content::-webkit-scrollbar {
    display: none;
}

.card {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    border-radius: 12px;
    background-color: var(--white-color);
    color: var(--mute-color);
    gap: 10px;
}

.card-widget {
    min-width: 280px;
}

.card-widget span {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
}

.card-widget img {
    width: 2rem;
}

.card-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.card-body {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-widget p:nth-child(1) {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--font-color);
}

.progress-bar {
    width: 52px !important;
    height: 52px !important;
}

.card-primary .card-body>.progress-bar div span {
    background-color: var(--primary-color) !important;

}

/* QUICK ACCESS */

.quick-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.quick-content {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 30px;
    overflow-x: scroll;
}

.quick-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    cursor: pointer;

}

.quick-item:hover .quick-icon {
    opacity: 0.8;
}

.quick-icon {
    width: 80px;
    height: 80px;
    background-color: var(--white-color);
    display: grid;
    place-items: center;
    border-radius: 12px;
}

.quick-icon img {
    width: 60%;
    border-radius: 8px;
}

.quick-item p {
    font-weight: 600;
}

.add-item {
    border: 2px dashed var(--mute-color);
    background-color: var(--secondary-color);
    font-size: 1.6rem;
    color: var(--mute-color);
}

.content-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.content-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.content-title p {
    text-align: right;
    font-weight: 700;
}

.content-title p a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.panel {
    width: 100%;
    padding: 20px;
    background-color: var(--white-color);
    border-radius: 12px;
}

.table-container {
    width: 100%;
    overflow-x: scroll;
}

.panel-footer {
    width: 100%;
    /*height: 70px;*/
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.paginator {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.paginator_item {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--font-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
}

.paginator_item:hover {
    background-color: var(--theme-color);
    color: var(--white-color);
    opacity: 0.8;
}

.paginator_item:first-child:before {
    content: "\ea9d";
    font-family: "Icofont";
}

.paginator_item:last-child:before {
    content: "\eaa0";
    font-family: "Icofont";
}


.paginator-light .paginator_item {
    background-color: var(--white-color);
}

.paginator_active, .paginator-light .paginator_active {
    background-color: var(--theme-color);
    color: var(--white-color);
}

table {
    width: 100%;
    border-spacing: 0;

}

tbody {
    display: block;
    width: 100% !important;
    min-width: 100%;

    overflow-y: scroll;
}

tbody::-webkit-scrollbar {
    background-color: var(--bg-color);
    width: 5px;
}

tbody::-webkit-scrollbar-track {
    background-color: var(--bg-color);
    width: 5px;

}

tbody::-webkit-scrollbar-thumb {
    background-color: #DEE6EB;
    width: 5px;
    border-radius: 5px;
}

tbody::-webkit-scrollbar-thumb:hover {
    background-color: var(--mute-color);

}

thead {
    display: block;
}

tr {
    display: flex;
    min-width: 100%;
    width: 100%;
    align-items: center;
    padding: 2px 0;
}

th,
td {
    padding: 10px;
    color: var(--mute-color);
    font-size: 0.9rem;
    font-weight: 500;
    height: 60px;
}

th {
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid var(--bg-color);
}

.active-row td {
    background-color: var(--bg-color);
}

.active-row td:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.active-row td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

tbody tr td,
thead tr th {
    display: flex;
    align-items: center;
    gap: 10px;
}

tbody tr td span:not(.pill), tbody tr td label {
    display: none;
}

tbody tr td:nth-child(1) {
    font-weight: 600;
    color: var(--font-color);
    gap: 20px;

}

.active-row td {
    color: var(--text-primary) !important;
}

.table-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
}

tbody tr:hover td {
    background-color: var(--bg-color);
    cursor: pointer;
}

tbody tr:hover td:first-child {
    border-top-left-radius: 8px !important;
    border-bottom-left-radius: 8px;
}


tbody tr:hover td:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.td-right {justify-content: flex-end;}
.td-left { justify-content: flex-start;}
.td-center { justify-content: center;}

#table-5-row tbody {
    height: 300px;
    max-height: 300px;
}

#table-10-row tbody {
    height: 600px;
    max-height: 600px;
}

#table-15-row tbody {
    height: 900px;
    max-height: 900px;
}

.task-users {
 display: grid;
 grid-template-columns: repeat(4, 28px);
}

.task-users img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid var(--white-color);
}

.pill {
    width: 110px;
    padding: 5px 10px;
    border-radius: 12px;
    text-align: center;
}
.pill-danger { 
    background-color: var(--danger-color); 
    color: var(--white-color);
}
.pill-success { 
    background-color: var(--success-color); 
    color: var(--white-color);
}
.pill-warning { 
    background-color: var(--warning-color); 
    color: var(--white-color);
}
.pill-info { 
    background-color: var(--info-color); 
    color: var(--white-color);
}

.post-container {
 width: 100%;
}
.post-item {
 width: 100%;
 display: flex;
 flex-direction: column;
 gap: 10px;
 padding: 20px 0;
 text-decoration: none;
 color: inherit;
}
.post-item img {
 width: 100%;
 border-radius: 12px;
}
.post-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.post-content span{
    font-size: 0.8rem;
    font-weight: 600;
}
.post-content p {
    font-size: 0.9rem;
    text-overflow: ellipsis;
    max-height: 54px;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.contact-container {
 /*width: calc(100% - 60px);*/
 display: flex;
 align-items: center;
 justify-content: flex-start;
 flex-wrap: wrap;
 gap: 24px;
 margin-bottom: 30px;
}
.contact-card {
 width: 270px;
 padding: 30px;
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 5px;
 background-color: var(--white-color);
 border-radius: 16px;
 cursor: pointer;

}
.contact-card img{
    min-width:120px;
    max-width: 120px;
    border-radius: 50%;
    margin-bottom: 20px;
}
.contact-card span{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 400;
    text-align: left;
}
.contact-card span:nth-child(4) {      
    font-weight: 600 !important;
    color: var(--primary-color);
}
.contact-card p {
    font-size: 0.9rem;
    font-weight: 700 !important;
}


.contact-card:hover {    
    box-shadow: 0 5px 3px 1px rgba(0, 0, 0, 0.1);
    animation: hithere 1s ease;
    z-index: 10;

}

@keyframes hithere {
    30% { transform: scale(1.2); }
    40%, 60% { transform: rotate(-20deg) scale(1.2); }
    50% { transform: rotate(20deg) scale(1.2); }
    70% { transform: rotate(0deg) scale(1.2); }
    100% { transform: scale(1); }
  }

 
/* Buttons */

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    text-decoration: none;
    color: var(--font-color);
    border-radius: 12px;
    padding: 10px;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.btn-primary-out {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-out {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.btn-icon {
    justify-content: flex-start;
    /*padding-right: 30px;*/
}

.btn-icon i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 6px;
    background-color: var(--secondary-color);
    cursor: pointer;
}

.btn-icon i:hover {
    opacity: 0.8;
}

.btn.btn-icon {
    padding-right: 30px;
}

.btn.btn-icon i {
    background-color: rgba(0, 0, 0, 0.06);
}

.btn-primary.btn-icon i {
    background-color: rgba(0, 0, 0, 0.1);
}

.btn-block {
    width: 100% !important;
}

.btn-menu {
    color: var(--white-color);
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0.8;
}


.btn-widget {
    padding: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--font-color);
    font-size: 0.8rem;
}

.btn-widget i {
    font-size: 1.5rem;
}

.btn-widget img {
    width: 1.5rem;
}

.btn-widget span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 6px;
    background-color: var(--secondary-color);
}

.btn-widget p {
    font-weight: 500;
    color: var(--mute-color);
}

.btn-widget p:nth-child(1) {
    font-weight: 600;
    color: var(--font-color);
}

.btn-widget div {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.btn-widget:hover {
    background-color: var(--secondary-color);
}

.activity-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.activity-body {
    width: 100%;
}

.tabs-header {
    width: 100%;
    display: flex;
    list-style: none;
    align-items: center;
    /* justify-content: space-between;*/
    gap: 10px;
}

.tab-btn,
.ui-tabs-tab {
    width: 100%;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.tab-btn a,
.ui-tabs-tab a {
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: 600;
    color: var(--mute-color);
}

.ui-tabs-active {
    background-color: var(--secondary-color);
}

.ui-tabs-active a {
    color: var(--text-primary);
}

.tab-content,
.ui-widget-content {
    margin-top: 20px;
}

/* TIMELINE */

.timeline-container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-container::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--secondary-color);
    top: 0;
    bottom: 0;
    left: 0;
    margin-left: -3px;
}

.timeline {
    padding: 0 20px;
    position: relative;
    background-color: inherit;
    width: 100%;
}

.timeline::before {
    font-family: "Icofont";
    content: "\ec77";
    font-size: 5px;
    position: absolute;
    width: 16px;
    height: 16px;
    left: -14px;
    background-color: var(--white-color);
    border: 4px solid var(--secondary-color);
    border-radius: 8px;
    z-index: 1;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline:first-child::before {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.timeline span {
    color: var(--mute-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.timeline:first-child span {
    color: var(--text-primary);
    font-size: 0.9rem;
}

.time-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 35px;
}

.time-thumbs {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;

}

.time-thumbs img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
}

.time-info {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.time-info img {
    width: 18px;
    height: 18px;
    border-radius: 4px;
}

.time-info p {
    font-size: 0.75rem;
}

/* MODAL */


.modal-container {
    width: 100%;
    min-width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-container {
    display: none;
}

.modal {   
    background-color: var(--white-color);
    border-radius: 18px;
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.modal_commitment,
.modal_plan,
.modal_creditor {
    width: 100%;
    max-width: 1180px;
}

.modal_items {
    display: none;
    position: absolute;
    width: 100%;
    max-width: 900px;
    z-index: 200;
}

.modal-header {
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--secondary-color);
    padding: 0 20px;
}

.modal-body {
    width: 100%;
    min-height: calc(100% - 140px);
    padding: 20px;
}

.modal-footer {
    width: 100%;
    /*height: 70px;*/
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}


.w10 {
    width: 10% !important;
}

.w15 {
    width: 15% !important;
}

.w20 {
    width: 20% !important;
}

.w25 {
    width: 25% !important;
}

.w30 {
    width: 30% !important;
}

.w35 {
    width: 35% !important;
}

.w40 {
    width: 40% !important;
}

.w45 {
    width: 45% !important;
}

.w50 {
    width: 50% !important;
}

.w55 {
    width: 55% !important;
}

.w58 {
    width: 58% !important;
}

.w60 {
    width: 60% !important;
}

/* LOGIN */

.login-container {
    width: 100%;
    max-width: 800px;
    height: 600px;
    background-color: var(--white-color);
    display: flex;
    flex-direction: row-reverse;
    align-items: center;


    margin: 150px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 8px 3px rgba(0, 0, 0, 0.2);
}

.splash {
    width: 100%;
    height: 100%;
    display: flex;
    background: url("../../../../shared/img/share.webp") no-repeat;
    background-size: cover;
    background-position: center;
   /* background-position: -80px;*/
}

.splash-content {
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--white-color);
    background-color: var(--theme-color);
    /*background: linear-gradient(150deg, rgba(63,211,252,0.5) 0%, rgba(48,111,156,0.8) 50%, rgba(41,94,132,0.9) 82%, rgba(6,40,65,0.9) 100%);*/
    background: linear-gradient(150deg, rgba(63,211,252,0.3) 0%, rgba(48,111,156,0.5) 50%, rgba(41,94,132,0.7) 82%, rgba(6,40,65,0.9) 100%);
    /*opacity: 0.9;*/
}

.splash-content .btn {
    width: 60%;
    margin-top: 100px;
    justify-content: center;
    padding: 10px 10px 10px 30px;
    padding: 15px;
    display: none;
}

.splash-content img,
.login-content img {
    width: 48px;
}

.login-content img {
    display: none;
}

.splash-content h3,
.login-content h3,
.register h3 {
    font-size: 1.8rem;
}

.splash-content p,
.login-content p,
.register p {
    font-size: 1rem;
    font-weight: 500;
}

.splash-brand h3, .splash-brand p {
    text-shadow: 2px 2px 1px rgba(0,0,0,0.7)
}
.splash-brand img {
    filter: drop-shadow(3px 2px 1px rgba(0,0,0,0.7));
}

.login,
.register {
    width: 100%;
    min-height: 100%;

    background-color: var(--white-color);

}

.login-content .form-control label {
    font-size: 0.8rem;
}

.register {
    background-color: var(--mute-color);
    display: none;
}

.login {
    display: flex;
    flex-direction: column;
    align-items: center;
  /*  justify-content: center;*/
}

.login-content {
    width: 100%;
    /* padding: 30px;*/
    margin: 0 auto;



}

.splash-brand,
.login-brand {
    width: 100%;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;

}

.login-form {
    width: 100%;
    min-height: 415px;
    padding: 30px;
    border-top-right-radius: 40px;
}

.login-form form {
   /* min-height: 400px;*/
}


.login .btn,
.register .btn {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
    gap: 40px;
    border-radius: 6px;
    padding: 15px;

}

.login input,
.register input {
    padding: 10px;
}

.login-content .form-button {
    width: 100%;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.login .checkbox-label2,
.register .checkbox-label2 {
    font-size: 0.8rem;
    text-transform: none;
    font-weight: 400;

}

#pass-toggle {
    position: relative;
    top: -26px;
    left: calc(100% - 30px);
    cursor: pointer;
}

.forget-link {
    padding-left: 5px;
    font-size: 0.8rem;
    /*text-transform: uppercase;*/
    text-decoration: none;
    font-weight: 400;
    color: var(--font-color);

}
.bg-default { background-color: var(--bg-color);}
.bg-error,
.bg-login {
    background: url('../img/bgabs-transparent.webp') no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: var(--bg-color)
    
}

.error-container {
    width: 100%;
    height: 800px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.error-container img {
    width: 80px;
}

.error {
    font-size: 10rem;
    font-weight: 900;
}

.error-container h3 {
    font-size: 2rem;
}

.error-container p {
    font-size: 1.2rem;
}

.error-container .btn-error {

    min-width: 150px;
    border-radius: 6px;
    padding: 15px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
}



/* RESPONSIVE */

@media screen and (max-width: 1440px) {
    
    
}

@media screen and (max-width: 1024px) {

    /* .main-header { width: calc(100% - 60px);}
    .content-container {width: calc(100% - 60px);}
    /*.panel {width: calc(100% - 30px);}*/
    /* .card-container, .quick-content { gap: 20px; width: calc(100% - 60px);}*/
    .off>.hide.main-container {
        width: calc(100% - 60px);

    }
}

@media screen and (max-width: 900px) {
    /* .profile-content {
        width: 50%;
    }

    .search-box {
        width: 50%;
    }*/
}


@media screen and (max-width: 768px) {

    .bg-login,
    .bg-error {
        overflow: hidden;
    }

    .login-container {
        flex-direction: column;
        min-height: 100vh;
        min-width: 100vw;
        height: 100vh;
        margin-top: 0;
        border-radius: 0;
    }

    .splash,
    .login,
    .register {
        min-height: 100vh;
    }

    .splash {
        background-size: cover;
       /* background-position: -200px;*/
      
    }

    #splash-forget, #splash-reset {
        display: none !important;
    }
    #forget-form, #reset-form {
        display: flex;
    }

    .login-content {
        width: 70%;
    }

    .splash-content .btn {
        display: flex;
    }

    .login,
    .register {
        background: url('../img/wave-darkblue.webp') no-repeat;
        background-position: top center;
        background-size: auto 550px;
        background-attachment: fixed;
        display: none;
    }

    .login-brand {
        margin-bottom: 50px;
        color: var(--white-color);

    }

    .login-brand img {
        display: flex;
    }

    .error-container h3 {
        font-size: 1.5rem;
    }

    .error-container p {
        font-size: 1rem;
    }

    /* .main-header { height: 130px;}*/
    .header-box {
        flex-direction: column-reverse
    }


    .profile-content {
        width: 100%;
        padding-right: 30px;
    }

    /* .profile-content {
        display: none;
    }*/
    .content-title {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-box {
        width: calc(100% + 20px);
    }

    .search-box i {
        left: 10px;
    }

    .search-box input {
        width: calc(100% + 40px);
        left: -20px;
    }

    /* #sidebar-toggle i, #activity-toggle {
        margin-top: 50px;
    }*/
    .on .main-container {
        width: calc(100% - 60px);
        margin-left: 60px;
    }

    .modal-container {
        /* min-height: calc(100vh + 150px);*/
        align-items: flex-start;
    }

    .modal-footer {
        flex-wrap: wrap;
    }

    .show.profile-content {
        justify-content: flex-start;
    }
    .hide.profile-content {
        justify-content: flex-end;
    }

    /*.logoff {
        justify-content: flex-start;
        margin-top: 30px;
        height: 100%;
    }*/


    tbody tr {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    thead tr th.w58,
    thead tr th.w15,
    thead tr th.w10,
    thead tr th.w25,
    thead tr th.w45,
    thead tr th.w40,
    tbody tr td.w58,
    tbody tr td.w15,
    tbody tr td.w10,
    tbody tr td.w25,
    tbody tr td.w45,
    tbody tr td.w40 {
        width: 100% !important;
    }

    tbody tr td {
        width: 100%;
        display: flex;
        gap: 20px;
    }

    tbody tr td span, tbody tr td label {
        display: flex !important;
        font-weight: 700;
    }

    thead tr th:not(thead tr th:first-child) {
        display: none;
    }
    tbody tr td:first-child {
        height: 40px;
    }

    tbody tr td:not(tbody tr td:first-child) {
        display: none;
        height: 30px;
    }

    tbody tr:hover>td:not(tbody tr td:first-child) {
        display: flex;
        color: var(--font-color);
        background-color: var(--bg-color);
    }

    tbody tr:hover td:first-child {
        border-bottom-left-radius: 0;
        border-top-right-radius: 8px;
        color: var(--info-color);
    }


    tbody tr:hover td:last-child {
        border-top-right-radius: 0;
        border-bottom-left-radius: 8px;
    }
    .td-right { justify-content: flex-start}


}

@media screen and (max-width: 500px) {
    .main-content {
        padding: 20px;
    }

    .main-header {
        padding-left: 20px;
    }

    #sidebar-toggle i,
    #activity-toggle {
        margin-right: 20px;
    }

    .search-box,
    .search-box input {
        width: 100%;
    }

    .search-box input {
        left: -18px;
    }

    .login-content {
        width: 80%;
    }

    .error {
        font-size: 8rem;
    }

    .error-container h3 {
        font-size: 1.3rem;
    }

    .error-container p {
        font-size: 0.9rem;
    }

    .modal-footer .btn {
        width: 100%;
    }

    .user-profile h3 {
        font-size: 1rem;
        text-overflow: ellipsis;
        max-height: 19px;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

@media screen and (max-width: 425px) {
    .login-content {
        width: 100%;
    }

    .error-container h3 {
        text-align: center;
    }


}

@media screen and (max-width: 425px) {
    .splash-content {
        padding: 0;
    }

    .splash-content .btn {
        width: 70%;
    }


}