@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/*************** CUSTOM STYLES ****************/
/********* LOGIN *********/
.login-container {
    height: 100vh;
    background: #eee;
}

.login {
    height: 100%;
    padding: 0 !important;
    overflow: hidden;
    border: 0;
}

.left-side {
    background: #eee;
    z-index: 1;
    position: relative;
    height: 100%
}

.left-side:after {
    content: "";
    clip-path: polygon(0% 100%, 100% 0%, 0% 0%);
    width: 8.75rem;
    height: 100%;
    position: absolute;
    right: -8.75rem;
    z-index: -1;
    top: 0;
    background: #eee;
    box-shadow: 0.125rem 0rem 1.875rem rgba(0, 0, 0, 0.15);
}

.right-side {
    height: 100%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-direction: column;
}

.right-side .content {
    background: var(--white);
}


.logo img {
    width: 375px;
    height: 250px;
}

/********* Session Modal *********/
.session-expired .icon {
    background-color: rgba(230, 230, 230, 0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
}

.session-expired .icon i {
    font-size: 2em;
    color: var(--red-500);
}

.session-expired .text h5 {
    font-size: 0.95em;
}

.session-expired .text p {
    font-size: 0.8em !important;
    margin: 0;
}

.session-expired .modal-footer {
    border:0;
}

/********* HEADER *********/
.header-parent {
    position: absolute;
    top: 0;
    left : var(--left-spaceing);
    height: 4.125rem;
    padding-right: var(--left-spaceing) !important;
    transition: all .3s ease;
}

.header-list-icon {
    background-color: #fff;
    height: 41px;
    width: 41px;
    box-shadow: 0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12) !important;
    -webkit-appearance: button;
    cursor: pointer;
    border-radius: 50%;
    margin: 0 0.575rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-list-icon i {
    color: #999;
    height: 20px;
    font-size: 1.1em;
    width: 20px;
    line-height: 20px;
    text-align: center;
}

.header-parent h5 {
    font-size: 1.1em;
}

.header-parent .header-icons img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: fill;
}

.header-parent .header-icon {
    background-color: #fff;
    height: 42px;
    width: 42px;
    box-shadow: 0 2px 1px -1px rgba(0,0,0,.2),0 1px 1px 0 rgba(0,0,0,.14),0 1px 3px 0 rgba(0,0,0,.12) !important;
    -webkit-appearance: button;
    cursor: pointer;
    border-radius: 0.375rem;

}

.header-parent .header-icon i {
    color: var(--black);
}

/********* Toggle View *********/
.main-toggled .menu-parent {
    transform: translateX(-100%);
}

.main-toggled .header-parent {
    left : 0;
    padding-right: 0 !important;
}

.main-toggled .content-parent {
    padding: 75px 0px 0px 2rem;
}


/********* Sidebar *********/
.menu-parent {
    position: fixed;
    left: 0;
    max-height: 100vh;
    max-width: 250px;
    height: 100vh;
    transition: all .3s ease;
    overflow-x: scroll;
    transform: translateX(0%);
    z-index: 3;
    background-color: var(--white);
    box-shadow: 0 3px 1px -2px rgba(0,0,0,.2),0 2px 2px 0 rgba(0,0,0,.14),0 1px 5px 0 rgba(0,0,0,.12);
}

.header-logo {
    width: 100%;
    height: 175px;
    overflow: hidden;
    padding: 0;
    margin-bottom: .2rem;
    transition: height .2s ease, opacity .2s ease;
}

.menu-parent .logo {
    height: 85%;
    width: 90%
}

.menu-parent ul li a {
    padding: 0.4rem 1.2rem;
    margin: 0px 10px;
    position: relative;
    transition: all 0.5s;
    border-radius: var(--border-radius);
}

.menu-parent ul li a.active {
    background-color: var(--main-color);
}

.menu-parent ul li a:hover .nav-text,
.menu-parent ul li a:hover .menu-icon i {
    transition: all 0.4s ease;
    color: var(--red-600);
}

.menu-parent ul li a.active .nav-text,
.menu-parent ul li a.active .menu-icon i {
    transition: all 0.4s ease;
    color: var(--white);
}


.menu-parent ul {
    padding: 0;
    list-style: none;
}

.menu-parent ul li {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem
}


.menu-parent ul li .has-arrow i:not(.menu-icon i)  {
    color: #888888;
    font-size: 0.6em;
    position: absolute;
    right: 1.8rem;
    top: 0.9rem;
    transition: all 0.4s ease;
}

.menu-parent ul li .has-arrow i.active:not(.menu-icon i) {
    transform: rotate(90deg);
}

.menu-parent ul li a .nav-text {
    font-size: 0.75rem;
    font-weight: 400;
    transition: all 0.4s ease;
    font-family: head, serif;
}

.menu-parent ul li a .toggle-nav-text {
    opacity: 0
}

.menu-parent ul li a .menu-icon {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    height: auto;
    width: auto;
    text-align: center;
    border-radius: 0.125rem;
    line-height: 1;
    margin-right: 0.5em;
}

.menu-parent ul li a .menu-icon i {
    color: #888888;
    font-size: 1.1em;
}

.menu-parent ul li a .menu-icon i:before {
    line-height: 1.5
}

.menu-parent ul li .card-body {
    border: 0;
}

.menu-parent ul li .collapse {
    position: relative;
}

.menu-parent ul li .toggle-card-body {
    position: fixed;
    left: 3rem;
    width: 12rem;
    border: 1px solid var(--gray);
}

.menu-parent ul li .toggle-card-body .nav-text {
    opacity: 1 !important;
    display: block !important;
}

.menu-parent ul li .card-body a {
    position: relative;
}

.menu-parent ul li .card-body a:before {
    content: "";
    position: absolute;
    width: 0.5rem;
    border-bottom: 2px solid var(--red-600);
    left: 0.5rem;
    top: 1.2rem;
    transition: all 0.4s ease;
}

.menu-parent ul li .card-body a:hover {
    padding-left: 2.2rem;
}

.menu-parent ul li .card-body a:hover:before {
    width: 1rem;
}

.toggle-sidebar {
    transform: translateX(-10%);
}
/********* Content *********/
.content-parent {
    transition: all .3s ease;
    padding: 75px 0px 0px calc(var(--left-spaceing) + 2rem);
}

.content {
    margin-right: 2rem;
}

/********* FlatPicker *********/
.flatpickr-months .flatpickr-month {
    height: 52px !important;
}

