@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");

:root {
    --header-height: 3rem;
    --nav-width: 68px;
    --first-color: #4723D9;
    --first-color-light: #AFA5D9;
    --white-color: #F7F6FB;
    --body-font: 'Nunito', sans-serif;
    --normal-font-size: 1rem;
    --z-fixed: 100
}

*,
::before,
::after {
    box-sizing: border-box
}

body {
    position: relative;
    margin: var(--header-height) 0 0 0;
    padding: 0 0.2rem;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: .5s;
    background-color: var(--white-color) !important;
}

a {
    text-decoration: none
}

.header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: #fff;
    z-index: var(--z-fixed);
    transition: .5s;
}

.header_toggle {
    color: var(--first-color);
    font-size: 1.2rem;
    cursor: pointer
}
.header_toggle_mobile {
    display:none;
}

.header-breadcrumbs {
    color: #A7A7A7;
    margin-left: 10px;
    display: flex;
    justify-content: left;
    align-items: baseline;
    border-radius: 5px;
    -moz-box-shadow: 0 0 3px #ccc;
    -webkit-box-shadow: 0 0 3px #ccc;
    box-shadow: 0 0 3px #ccc;
    height: 30px;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 3px;
}

.header-breadcrumbs .bx{
    font-size: 22px;
    padding-top: 1px;
    padding-left: 3px;
    padding-right: 3px;
}

.header .left{
    display: flex;
}

.header .right{
    display: flex;
    width: 40%;
    justify-content: flex-end;
}

.header-icons{
    display: flex;
    justify-content: right;
}
.header_icon {
    color: #A7A7A7;
    font-size: 20px;
    font-weight: 400;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
    border-radius: 15%;
    -moz-box-shadow: 0 0 3px #ccc;
    -webkit-box-shadow: 0 0 3px #ccc;
    box-shadow: 0 0 3px #ccc;
    cursor: pointer;
}

  .header_user {
        color: #A7A7A7;
        font-size: 16px;
        font-weight: 400;
        text-align: center;
        margin: 5px;
        border-radius: 10%;
        -moz-box-shadow: 0 0 3px #ccc;
        -webkit-box-shadow: 0 0 3px #ccc;
        box-shadow: 0 0 3px #ccc;
        display: flex;
        padding-right: 10px;
        padding-left: 5px;
        align-items: center;
        height: 30px;
    }
    .header_user .bx{margin-top:2px;}
    .header_user .name
    {
        font-size: 16px;
        margin-left: 5px;
    }



.l-navbar {
    position: fixed;
    top: 0;
    left: -30%;
    width: var(--nav-width);
    height: 100vh;
    background-color: var(--first-color);
    padding: .5rem 1rem 0 0;
    transition: .5s;
    z-index: var(--z-fixed)
}

.nav {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden
}

.nav_logo,
.nav_link {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    column-gap: 1rem;
    padding: .5rem 0 .5rem 1.5rem;
    text-decoration: none;
}
.nav_link_child {
    margin-left: 25px;
}

.nav_logo {
    margin-bottom: 2rem
}

.nav_logo-icon {
    font-size: 1.25rem;
    color: var(--white-color);
    width: 25px;
}

.nav_logo-name {
    color: var(--white-color);
    font-weight: 700
}

.nav_link {
    position: relative;
    color: var(--first-color-light);
    margin-bottom: 1.5rem;
    transition: .3s;
    text-decoration: none;
}

.bottom-links .not-last{
	margin-bottom:0 !important;
}

.nav_link:hover {
    color: var(--white-color)
}

.nav_icon {
    font-size: 1.25rem
}

.showMenu {
    right: 0
}

.body-pd {
    padding-left: calc(var(--nav-width) + 1rem)
}

.active {
    color: var(--white-color)
}

.active::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 32px;
    background-color: var(--white-color)
}

.height-100 {
    height: 100vh
}

.inner-layout {
    margin-top: 85px;
    margin-left: -15px !important;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 15px !important;
    padding-right: 15px !important;
    border-radius: 5px;
    background-color: #fff;
}

.inner-layout .alert {
    width: 100%;

}

.r-sidebar-title-wrapper {
    display: flex;
    flex-direction: row-reverse;
    background-color: var(--white-color) !important;
}


.btn-r-sidebar-style {
    color: #4723D9;
    margin: 15px;
    display: inline-block;
    font-size: 20px;
    border-radius: 3px;
    width: 30px;
    height: 30px;
    text-align: center;
}


.btn-r-sidebar span {
    color: white;
    font-size: 15px;
    line-height: 36px
}

.sidebar {
    position: fixed;
    width: 350px;
    height: 100%;
    right: -350px;
    background: #fff;
    transition: right 0.4s ease;
    z-index: 9999;
    top: 0;
}

    .sidebar.show-r-sidebar {
        right: 0px
    }

.sidebar .text {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 65px;
    letter-spacing: 1px;
    width: 100%;
    margin-left: 15px;
}

.overlay {
    display: none;
    position: fixed;
    /* full screen */
    width: 100vw;
    height: 100vh;
    /* transparent black */
    background: rgba(0, 0, 0, 0.7);
    /* middle layer, i.e. appears below the sidebar */
    z-index: 998;
    opacity: 0;
    /* animate the transition */
    transition: all 0.5s ease-in-out;
    top: 0;
    left: 0;
}
/* display .overlay when it has the .active class */
.overlay.active {
    display: block;
    opacity: 1;
}

.overlay.active::before {
    width: 0px !important;
}



.loading {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 99999;
}

.loader {
    left: 50%;
    margin-left: -4em;
    font-size: 10px;
    border: .8em solid rgba(218, 219, 223, 1);
    border-left: .8em solid var(--first-color);
    animation: spin 1.1s infinite linear;
}

    .loader, .loader:after {
        border-radius: 50%;
        width: 8em;
        height: 8em;
        display: block;
        position: absolute;
        top: 50%;
        margin-top: -4.05em;
    }

.btn-outline-primary {
    color: var(--first-color) !important;
    border-color: var(--first-color) !important;
}

.btn-check:active + .btn-outline-primary, .btn-check:checked + .btn-outline-primary, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show, .btn-outline-primary:active {
    color: #fff !important;
    background-color: var(--first-color) !important;
    border-color: var(--first-color) !important;
}

.page-options{
	display: flex;
    justify-content: flex-end;
}
.options-wrapper {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
}
.page-options .options-title{
	width:50%;
}

.wisdom-button-option-text , .wisdom-button-option-notext{
	background-color: var(--first-color) !important;
    border-color: var(--first-color) !important;
	margin-left:5px;
	margin-right:5px;
}

@keyframes spin {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}




