body {
    /* display: flex;
	flex-direction: column;
	margin: 0 auto;
	height:100vh;
	min-height: -webkit-fill-available;
	max-width:100%;
	width: 100%;
    overflow: hidden;
    position: relative; */
}

.app_sreen {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    height: 100vh;
    min-height: -webkit-fill-available;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    position: relative;
    padding-left: 224px;
    transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
}

.app_sreen.large {
    padding-left: 0px;
}

header {
    width: 100%;
    height: 50px;
    background: var(--color1);
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10px;
    color: #fff;
    box-shadow: 0px 0px 5px #00000014;
    z-index: 9;
}

.appmenu {
    color: #ffffff;
    background: transparent;
    font-size: 24px;
    width: 30px;
    height: 29px;
    line-height: 1.4;
}

.logo {
    max-width: 115px;
    height: 49px;
    background: #fff;
    padding: 6px;
    object-fit: contain;
    margin: 0 12px;
}

main {
    width: 100%;
    height: 100vh;
    flex: 1;
    overflow-y: scroll;
    overflow-x: hidden;
    background: var(--color1light);
}

footer {
    width: 100%;
    height: 50px;
    background: #ffffff;
    display: flex;
    /* border-radius: 20px 20px 0 0; */
    overflow: hidden;
    box-shadow: 0px -2px 20px 0px #00000038;
}

.fadeInUp {
    animation: 1.5s fadeInUp;
}

@keyframes fadeInUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

.fadeInLeft {
    animation: 1.5s fadeInLeft;
}

@keyframes fadeInLeft {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

.fadeInRight {
    animation: 1.5s fadeInRight;
}

@keyframes fadeInRight {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0%);
        opacity: 1;
    }
}

app-drawer {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    max-width: 224px;
    width: 70%;
    height: 100vh;
    background: #fff;
    height: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    z-index: 999;
    transform: translateX(0px);
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    box-shadow: 0px 1px 20px #0000001a;
    /* transition: transform .3s cubic-bezier(.17,.67,.68,1.13); */
}

app-drawer.swipe {
    transform: translateX(-300px);
}

.d-header {
    width: 100%;
    height: 50px;
    background: var(--color2);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.navuserimg {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.navusername {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
    max-width: 142px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.d-body {
    flex: 1;
    overflow: auto;
    background: #ffffff;
    padding: 4px 0;
}

.d-footer {
    width: 100%;
    height: 50px;
    background: var(--color1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

#accordian {
    width: 100%;
    margin: 0;
    color: #404040;
    overflow: hidden;
    padding: 0 4px;
}

#accordian h3 {
    background: var(--lightgray);
    position: relative;
    border-radius: 5px;
}

#accordian h3 a {
    padding: 1px 5px 4px;
    font-size: 12px;
    line-height: 32px;
    font-weight: 700;
    display: block;
    color: #404040;
    text-decoration: none;
}

#accordian li>h3 a span,
#accordian ul ul li a span,
#accordian h4 span {
    color: var(--color1);
    width: 18px;
    display: inline-block;
    margin-right: 2px;
}

#accordian h3:hover {
    background: #E7E7EE;
}

#accordian li {
    list-style-type: none;
}

#accordian li.active {
    border-radius: 7px;
    background: #f3f3f3;
}

#accordian li.active h3 {
    background: #E7E7EE;
}

#accordian ul ul li a,
#accordian h4 {
    color: #404040;
    text-decoration: none;
    font-size: 12px;
    line-height: 12px;
    display: block;
    padding: 8px;
    transition: all 0.15s;
    position: relative;
    border-radius: 5px;
    font-weight: 400;
}

#accordian ul ul li a:hover,
#accordian ul ul li.active a {
    background: #DEDEE5;
}

#accordian ul ul li.active ul li a {
    background: transparent;
}

#accordian ul ul li.active ul li a:hover {
    background: #DEDEE5;
}

#accordian ul ul {
    display: none;
    padding: 5px 5px 5px 17px;
}

#accordian li.active>ul {
    display: block;
}

#accordian ul ul ul {
    margin-left: 5px;
    border-left: 1px dotted rgba(0, 0, 0, 0.5);
}

#accordian a:not(:only-child):after {
    content: "\f104";
    font-family: fontawesome;
    position: absolute;
    right: 10px;
    top: 9px;
    font-size: 14px;
    color: #404040;
}

#accordian li h3:not(:only-child):after {
    content: "\f104";
    font-family: fontawesome;
    position: absolute;
    right: 10px;
    top: 13px;
    font-size: 14px;
    color: #404040;
}

#accordian li.active>a:not(:only-child):after,
#accordian li.active h3:not(:only-child):after {
    content: "\f107";
}

@media screen and (max-width: 991px) {
    .fullscreen {
        display: none;
    }
    .backdrop-layout {
        position: fixed;
        background: #0000008c;
        width: 100%;
        height: 100vh;
        z-index: -111;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0;
        transition: all 0.2s;
        -webkit-transition: all 0.2s;
        -moz-transition: all 0.2s;
        transition: all 0.2s;
    }
    .backdrop-layout.open {
        opacity: 1;
        z-index: 99;
    }
    app-drawer {
        max-width: 263px;
        transform: translateX(-300px);
    }
    app-drawer.swipe {
        transform: translateX(0px);
    }
    .app_sreen {
        padding-left: 0;
    }
}

@media screen and (max-width: 490px) {
    header {
        justify-content: space-between;
    }
    header .btn span {
        display: none;
    }
}
