:root {
    --brandSecondary: #8ac543;
    --brandPrimary: #094ea0;
    --brandError: #a04040;
    --text-main: #525b75;
    --top-nav-height: 3.5rem;
    --top-nav-width: calc(100% - 1.5rem*2);
    --alx-menu-border: #cbd0bd;
    --alx-menu-hover-color: #d6ecfa;
    --alx-menu-bg-color: #ffffff;
    --alx-menu-width: 19.25rem;
    --alx-menu-min: 4.5rem;
    --main-bg-color: #edf2f9;
    --card-color: #ffffff;
    --card-header-color: #5d596c;
    --card-body-color: #5d596c;
    --bs-font-sans-serif: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    --bs-font-monospace: "SFMono-Regular", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;

}
html{
    font-size: 12px;
}

body{
    background-color: #ececec;
}
* {
    font-family: var(--bs-font-sans-serif);
    font-weight: normal;
}

.layout-container {
    min-height: 100dvh;
    width: 100%;
    flex: 1 1 auto;
    align-items: stretch;
    background-color: var(--main-bg-color);
}

.layout-navbar {
    margin-top: 1rem;
    left: calc(var(--alx-menu-width) + 1.5rem);
    display: flex;
    position: absolute;
    padding: 0 20px;
    max-height: var(--top-nav-height);
    width: var(--top-nav-width);
    transition: .3s;


}

.layout-navbar.close{
    /*width: calc(var(--top-nav-width) + var(--alx-menu-width) - var(--alx-menu-min));*/
    left: 0;
    transition: .3s;
}

#header-bar {
    z-index: 500;
    width: 100%;
    display: flex;
    justify-content: space-between;
    max-height: inherit;

}

#header-left {
    z-index: inherit;
    background-color: var(--brandPrimary);
    width: 65%;
    border-bottom: 1px solid var(--alx-menu-border);
    border-top-left-radius: calc(0% + 0.25rem);
    border-bottom-left-radius: calc(0% + 0.25rem);
    -webkit-clip-path: polygon(0 0%, 100% 0%, calc(100% - 40px) 100%, 0% 100%);
    clip-path: polygon(0 0%, 100% 0%, calc(100% - 40px) 100%, 0% 100%);
}

#header-right {
    z-index: inherit;
    width: 35%;

}

#right-clip{
    z-index: 200;
    background-color: var(--brandSecondary);
    position: absolute;
    top: 0;
    width: 35%;
    height: 100%;
    right: 1.2rem;
    border-top-right-radius: calc(0% + 0.25rem);
    border-bottom-right-radius: calc(0% + 0.25rem);
    -webkit-clip-path: polygon(calc(0% + 40px) 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(calc(0% + 40px) 0%, 100% 0%, 100% 100%, 0% 100%);
}

.header-right-wrapper {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: .3rem 0 0 0;
    list-style: none;
    height: 100%;
}

.profile-circle{
    text-decoration: none;
}
.profile-dropdown{
    min-width: 280px;
    padding: 0;
}

.profile-avatar .avatar-circle{
    width: 42px;
    height: 42px;
    background-color: #099bdd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: #fff;
}
.profile-circle div{
    background-color: #099bdd;
    margin-bottom: .5rem;
    color: #fff;
    border-radius: 100%;
    height: 2.375em;
    width: 2.375em;
    /*box-shadow: 2px 0.15rem 0.125rem 1px rgb(28 28 28 / 30%);*/
    display:flex;
    align-items: center;
    justify-content: center;
    text-decoration: none!important;
}

.profile-dropdown .dropdown-item {
    padding: 0.5rem 1rem;
}

.profile-dropdown .dropdown-item:hover {
    background-color: #f8f9fa;
}

.profile-dropdown .btn-danger {
    padding: 0.5rem 1rem;
}

.profile-circle div span{
    font-size:1.25rem;
}
[data-initials]:before{
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    content: attr(data-initials);
  }

.bell-icon i {
    font-size: 1.7rem;
    color: #fff;
}

#notification-window, #profile-window{
    z-index: 1000;
}
#notification-window{
    right:10%;
}
#profile-window{
    min-width: 15rem;
    right: 5%;
}
.dropdown-menu{
    display: block;
    position: absolute;
    top: 100%;
    left: auto;
    right: 0%;
    min-width: 22rem;
    background-color: #fff;
    box-shadow: 0 0.25rem 1rem rgba(165, 163, 174, .45);
}

.dropdown-notification-list li:hover{
    background-color:var(--alx-menu-hover-color);
}

.dropdown-window-header{
    display: flex;
    height: fit-content;
}


.hide {
    display: none!important;
}


#nav-toggle {
    background-color: transparent;
    border: none;
    color: #ffffff;
    font-size: 2em;
    margin-left: .5rem;
}

#layout-alx-menu {
    font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    display:block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    width: var(--alx-menu-width);
    background-color: var(--alx-menu-bg-color);
    border: 1px solid var(--alx-menu-border);
    box-shadow: 0 1rem 0.125rem 1px rgba(165, 163, 174, .3);
    z-index: 999;
    transition: 0.3s;
}

#layout-alx-menu.close {
    width: var(--alx-menu-min);
    display: none;
    transition: 0.3s;
}

#layout-alx-menu.close .menu-items a{
    display: flex;
    flex-direction: column;
}

#layout-alx-menu.close .menu-items a span{
    font-size: .8rem;
    padding-left: 0;
}



.menu-logo img {
    height: 2.2rem;
    margin: 1rem 0;
}

.menu-logo-min img {
    width: 4rem;
}


.alx-menu a {
    padding: 0 1rem;
    font-size: 1.6rem;
    color: var(--text-main)
}

.perfscroll {
    position: relative;
    overflow: hidden !important;
    overflow-anchor: none;
    -ms-overflow-style: none;
    touch-action: auto;
    -ms-touch-action: auto;
}

.alx-menu span {
    padding-left: .6rem;
}

.menu-items a,
.sub-menu-items a {
    display: flex;
    align-items: center;
}

.sub-menu-items {
    display: none;
   
}

.sub-menu-items.show {
    display: block;
    transition: 0.4s
}

.sub-menu-items a {
    font-size: 1rem;
}

.sub-menu-items i {
    font-size: .4rem;
}

.sub-menu-items li {
    margin-left: 1rem;
}

.menu-items,
.sub-menu-items {
    list-style: none;
    padding-left: 0;
}

.menu-items a,
.sub-menu-items a {
    text-decoration: none;
    width: 100%;
    border-radius: .25rem;
    padding: .3rem .5rem;
   
}

.menu-items a:hover {
    background-color: #d5eeb6;
    background: linear-gradient(45deg, hsla(87, 53%, 52%, 1) 39%, hsla(88, 59%, 76%, 1) 100%);
    box-shadow: 0px 2px 6px 0px rgba(115,103,240,.48);
    color: white;
}

.menu-items li {
    padding: .5rem 0;
}

.expand {
    cursor: pointer;
}

.logo {
    width: 13rem;
    margin-left: 1rem;
}

.layout-page {
    position: relative;
    left: 0;
    margin-top: calculate(var(--top-nav-height) + 4rem);
    padding-right: 3rem;
    padding-left: .5rem;
    padding-top: calc(var(--top-nav-height) + 2rem);
    transition: .3s;
}


.layout-content {
    padding: 1rem;

}
.prime-blue-text{
    color: var(--brandPrimary);
}

.prime-green-text{
    color: var(--brandSecondary);
}

.date_updated {
    font-size: 1rem;
    color: #808080;
    font-style: italic;
}

.table-bold th{
    background-color: var(--brandSecondary);
    color: #fff;
}

.pt-md-6 {
    padding-top: 0 !important;
}

.error-msg {
    color: var(--text-main);
    text-align: center;
}

.error-msg h1 {
    font-size: 7rem;
    color: var(--brandSecondary);
}

.error-msg h2 {
    font-size: 3rem;
}

.error-msg a {
    color: inherit;
    text-decoration: underline;
}

.error-msg a:hover {
    color: var(--brandSecondary);
}

small{
    font-size:0.8125rem;
}
.text-muted{
    color:#bdbac7 !important;
}
.text-sm{
    font-size:.8rem;
  }
  .flex-col{
    flex-direction: column;
  }

.noti_icon {
    font-size: 22px;
    color: #fff;
    padding-right: 30px;
    transform-origin: top center;
}

.file_password_popup{
    background-color:#fff;
    position: absolute !important;
    top: 150px;
    left: 250px;
    display:block;
}

.modal-dialog-centered{
    /*tweaks to the bootstrap modal-dialog-centered*/
    min-height: calc(70% - var(--bs-modal-margin) * 2);
}

.progress_container {
    display: inline-block;
    width: 100px;
}

.progress_border {
    display: inline-block;
    border-style: solid;
    border-color: black;
    border-width: medium;
    height: 100%;
    width: 100%;
}

.progress_bar {
    display: inline-block;
    background-color: SteelBlue;
    height: 100%;
}

.code_editor {
    text-align: left;
    margin: 0px;
/*    width: 100%;
    height: 100%;*/
    min-height: 100px;
    min-width: 300px;
    resize: both;
    overflow: auto;
}

textarea {
    resize: both;
}

@keyframes wiggle {
    20% {
        transform: rotate(10deg);
    }

    40% {
        transform: rotate(-10deg);
    }

    60% {
        transform: rotate(10deg);
    }

    80% {
        transform: rotate(-10deg);
    }
}

.noti_icon i:hover {
    animation: wiggle 1s cubic-bezier(.17, .67, .83, .67);
    color: #fff;
}

/*small devices Landscape Phones 576px and up*/
@media (min-width: 576px) {
    #header-left {
        width: 80%;
        -webkit-clip-path: polygon(0 0%, 100% 0%, calc(100% - 45px) 100%, 0% 100%);
        clip-path: polygon(0 0%, 100% 0%, calc(100% - 45px) 100%, 0% 100%);
    }
    #header-right {
        width: 20%;
    }
    #right-clip{
        right: 1.2rem;
        width: 20%;
        -webkit-clip-path: polygon(calc(0% + 45px) 0%, 100% 0%, 100% 100%, 0% 100%);
        clip-path: polygon(calc(0% + 45px) 0%, 100% 0%, 100% 100%, 0% 100%);
    }
}

/*Medium devices and tablets 768px and up*/
@media (min-width: 768px) {
    :root{
        
    }
    .bradius-10 {
        border-radius: 10px;
    }
    .pt-md-6 {
        padding-top: 4rem !important;
    }

}

/* Larger Devices and desktops 992px and up*/
@media (min-width: 992px) {
    :root{
        --top-nav-width: calc(100% - 2rem*2 - 16.25rem);
        --alx-menu-width: 16.25rem;
    }
    .layout-navbar {
        left: calc(var(--alx-menu-width) + 1.5rem);
    }
    .layout-navbar.close{
        width: calc(var(--top-nav-width) + var(--alx-menu-width) - var(--alx-menu-min));
        left: calc(var(--alx-menu-min) + 1.5rem);
        transition: .3s;
    }
    .layout-page {
        left:0;
        margin-left: calc(var(--alx-menu-width) + 1.5rem);
        padding-left: 0;
    }
    .layout-page.close{
        left:0;
        margin-left: calc(var(--alx-menu-min) + 1.5rem);
        transition: .3s;
    } 
    .error-msg h1 {
        font-size: 12rem;
    }

    .bshadow {
        box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 24px, rgba(0, 0, 0, 0.22) 0px 8px 10px;
    }
    #header-left {
        width: 85%;
        -webkit-clip-path: polygon(0 0%, 100% 0%, calc(100% - 50px) 100%, 0% 100%);
        clip-path: polygon(0 0%, 100% 0%, calc(100% - 50px) 100%, 0% 100%);
    }
    #header-right {
        width: 15%;
    }
    #right-clip{
        right: 1.2rem;
        width: 15%;
        -webkit-clip-path: polygon(calc(0% + 50px) 0%, 100% 0%, 100% 100%, 0% 100%);
        clip-path: polygon(calc(0% + 50px) 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    #layout-alx-menu {
        font-family: "Public Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
        display:block;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        width: var(--alx-menu-width);
        background-color: var(--alx-menu-bg-color);
        border: 1px solid var(--alx-menu-border);
        box-shadow: 0 1rem 0.125rem 1px rgba(165, 163, 174, .3);
        transition: .3s;
        z-index: 999;
    }
    #layout-alx-menu.close {
        width: var(--alx-menu-min);
        transition: .3s;
        display: block;
    }
    .alx-menu a {
        font-size: 1.2rem;
    }   
}

/* X-Large devices and Desktops 1200px and up */
@media (min-width: 1200px) {}

/* XX-Large 1440px and up */
@media (min-width: 1400px) {}
