/* Predefined Colors */
/* Add your variable customizations of layout here */
/* Utils */
.clearfix:after {
    content: ' ';
    display: block;
    clear: both;
}

.card {
    border-radius: 4px;
    background: var(--surface-card-color) !important;
    padding: 16px;
    box-sizing: border-box;
    margin-bottom: 16px;
}
.card.card-w-title {
    padding-bottom: 16px;
}
.card.no-gutter {
    margin-bottom: 0;
}
.card:last-child {
    margin-bottom: 0;
}

.nopad {
    padding: 0;
}
.nopad .ui-panel-content {
    padding: 0;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -20px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
}
@keyframes fadeOutUp {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0);
    }
}
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@media (max-width: 1024px) {
}

@media (min-width: 1025px) and (max-width: 1250px) {
}
.login-body {
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    height: 100vh;
}
.login-body .login-image {
    height: calc(100% - 380px);
    background: url('../../layout/images/pages/login/bg-login.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}
.login-body .login-panel {
    width: 100%;
    height: 380px;
    position: absolute;
    margin-bottom: 0;
    border-radius: 0;
    bottom: 0;
    text-align: center;
    background-color: #292b2c !important;
}
.login-body .login-panel .login-panel-content {
    width: 400px;
    position: relative;
    margin-left: -200px;
    top: 30px;
    left: 50%;
    color: #ffffff;
}
.login-body .login-panel .login-panel-content .login-label {
    color: #cccccc;
    margin-bottom: 5px;
}
.login-body .login-panel .login-panel-content .login-input {
    margin-top: 5px;
}
.login-body .login-panel .login-panel-content .guest-sign-in {
    color: #999999;
    font-size: 12px;
}
.login-body .login-panel .login-panel-content .welcome-text {
    margin-bottom: 0;
}
.login-body .login-panel .login-panel-content .link-pane {
    padding-top: 24px;
}
.login-body .login-panel .login-panel-content .link-pane button {
    color: #cccccc;
}
.login-body .login-panel .login-panel-content .button-pane {
    padding-top: 16px;
}

@media (max-width: 640px) {
    .login-body .login-panel .login-panel-content {
        padding: 0 50px;
    }
}
@-webkit-keyframes rotate-forever {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-moz-keyframes rotate-forever {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes rotate-forever {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
.splash-screen {
    background-color: #6f5499;
    height: 100%;
    width: 100%;
    position: fixed;
}
.splash-screen .splash-loader {
    animation-duration: 0.75s;
    animation-iteration-count: infinite;
    animation-name: rotate-forever;
    animation-timing-function: linear;
    height: 30px;
    width: 30px;
    border: 4px solid #ffffff;
    border-right-color: transparent;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    bottom: 0;
    left: 50%;
    margin: -15px 0 -15px;
}

.exception-body {
    height: 100vh;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}
.exception-body.error {
    background: url('../../layout/images/exception/bg-error.png') no-repeat;
    background-size: cover;
    background-position: center;
}
.exception-body.access {
    background: url('../../layout/images/exception/bg-access.png') no-repeat;
    background-size: cover;
    background-position: center;
}
.exception-body .notfound {
    background: url('../../layout/images/pages/login/bg-login.jpg') no-repeat;
    background-size: cover;
    background-position: center;
}
.exception-body .exception-text {
    text-align: center;
    font-size: 36px;
    padding-top: 30px;
    font-weight: bold;
    color: #ffffff;
}
.exception-body .exception-text .exception-box {
    display: inline-block;
    padding: 2px 8px;
    color: #292b2c;
    background-color: #ffffff;
}
.exception-body .exception-text .notfound-box {
    display: inline-block;
    padding: 2px 8px;
    color: #ffffff;
    background-color: #292b2c;
}
.exception-body .exception-text .notfound-text {
    color: #292b2c;
}
.exception-body .exception-image {
    width: 100%;
    position: absolute;
    top: -36px;
    text-align: center;
    z-index: 1;
}
.exception-body .exception-panel {
    width: 100%;
    height: 200px;
    position: absolute;
    bottom: 0;
    text-align: center;
    background-color: #292b2c;
}
.exception-body .exception-panel .exception-panel-content {
    width: 400px;
    position: relative;
    margin-left: -200px;
    top: 30px;
    left: 50%;
    color: #ffffff;
}
.exception-body .exception-panel .exception-panel-content span.secondary {
    margin: 0;
    font-size: 90px;
    font-weight: 300;
    margin-left: 110px;
    position: relative;
    top: -25px;
}
.exception-body .exception-panel .exception-panel-content .information-text {
    padding: 15px;
}
.exception-body .exception-panel .exception-panel-content .information-text h3 {
    margin: 0;
    margin-bottom: 7px;
}
.exception-body .exception-panel .exception-panel-content .information-text p {
    margin: 0;
}
.exception-body .exception-panel .exception-panel-content p {
    font-weight: 400;
    margin: 0;
}

@media (max-width: 1200px) {
}
@media (max-width: 720px) {
}
* {
    box-sizing: border-box;
}

html {
    height: 100%;
    font-size: 14px;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    font-size: 14px;
    color: #212529;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0;
    margin: 0;
    min-height: 100%;
    background-color: var(--ground-color) !important;
}
body a {
    text-decoration: none;
    color: #2c9cec;
}

.layout-mask {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #424242;
    opacity: 0.7;
    top: 0;
    left: 0;
    z-index: 999999997;
}

.layout-wrapper .layout-wrapper-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}
.layout-wrapper .topbar {
    position: fixed;
    z-index: 100;
    width: 100%;
    height: 60px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
}
.layout-wrapper .topbar .topbar-left {
    padding: 10px 15px;
    height: 60px;
    width: 235px;
    float: left;
    background-color: var(--bar-color);
    background-image: -webkit-gradient(linear, left top, right top, from(var(--bar-color)), to(var(--bar-color)));
    background-image: -webkit-linear-gradient(to right, var(--bar-color), var(--bar-color));
    background-image: -moz-linear-gradient(to right, var(--bar-color), var(--bar-color));
    background-image: -ms-linear-gradient(to right, var(--bar-color), var(--bar-color));
    background-image: -o-linear-gradient(to right, var(--bar-color), var(--bar-color));
    background-image: linear-gradient(to right, var(--bar-color), var(--bar-color));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr="#146fd7", endColorStr="#146fd7", gradientType="1");
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}
.layout-wrapper .topbar .topbar-left .topbar-logo {
    height: 40px;
}
.layout-wrapper .topbar .topbar-right {
    padding: 15px;
    height: 60px;
    background-color: var(--bar-color);
    background-image: -webkit-gradient(linear, left top, right top, from(var(--bar-color)), to(var(--bar-color)));
    background-image: -webkit-linear-gradient(to right, var(--bar-color), var(--bar-color));
    background-image: -moz-linear-gradient(to right, var(--bar-color), var(--bar-color));
    background-image: -ms-linear-gradient(to right, var(--bar-color), var(--bar-color));
    background-image: -o-linear-gradient(to right, var(--bar-color), var(--bar-color));
    background-image: linear-gradient(to right, var(--bar-color));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr="#146fd7", endColorStr="#146fd7", gradientType="1");
}
.layout-wrapper .topbar .topbar-right #menu-button {
    color: #b1cd3f;
    display: inline-block;
    vertical-align: middle;
    width: 32px;
    height: 32px;
    position: absolute;
    left: 219px;
    text-align: center;
    background-color: #ffffff;
    cursor: pointer;
    border-radius: 4px;
}
.layout-wrapper .topbar .topbar-right #menu-button:hover {
    background-color: #f4f4f4;
}
.layout-wrapper .topbar .topbar-right #menu-button i {
    transition: all 0.3s;
    font-size: 32px;
}
.layout-wrapper .topbar .topbar-right #menu-button.menu-button-rotate i {
    transform: rotate(180deg);
}
.layout-wrapper .topbar .topbar-right #topbar-menu-button {
    display: none;
    color: var(--bar-icon-color);
    vertical-align: middle;
    height: 36px;
    position: absolute;
    top: 12px;
    right: 25px;
    cursor: pointer;
    transition: all 0.3s;
}
.layout-wrapper .topbar .topbar-right #topbar-menu-button i {
    transition: color 0.5s;
    font-size: 30px;
}
.layout-wrapper .topbar .topbar-right .topbar-items .search-item .topbar-search {
    position: relative;
    top: -2px;
}
.layout-wrapper .topbar .topbar-right .topbar-items .search-item .topbar-search input {
    position: relative;
    font-size: 14px;
    background-color: #ffffff;
    padding: 5px 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    transition: box-shadow 0.3s, border-color 0.3s;
    width: 200px;
}
.layout-wrapper .topbar .topbar-right .topbar-items .search-item .topbar-search input:focus {
    outline: 0 none;
    border: 1px solid #b1cd3f;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 3px 0 #b1cd3f;
}
.layout-wrapper .topbar .topbar-right .topbar-items .search-item .topbar-search i {
    position: absolute;
    color: #6c757d;
    top: 5px;
    right: 10px;
    font-size: 18px;
}
.layout-wrapper .layout-menu-container,
.layout-wrapper.menu-layout-horizontal .layout-menu-container {
    overflow: visible;
    position: fixed;
    width: 100%;
    z-index: 99;
    top: 60px;
    height: auto;
    background-color: #ffffff;
    background-image: -webkit-gradient(linear, left top, right top, from(#ffffff), to(#ffffff));
    background-image: -webkit-linear-gradient(to right, #ffffff, #ffffff);
    background-image: -moz-linear-gradient(to right, #ffffff, #ffffff);
    background-image: -ms-linear-gradient(to right, #ffffff, #ffffff);
    background-image: -o-linear-gradient(to right, #ffffff, #ffffff);
    background-image: linear-gradient(to right, #ffffff, #ffffff);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr="#ffffff", endColorStr="#ffffff", gradientType="1");
    transition: margin-left 0.3s;
}
.layout-wrapper .layout-menu-container .profile {
    padding: 15px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15);
}
.layout-wrapper .layout-menu-container .profile:after {
    content: '';
    display: table;
    clear: both;
}
.layout-wrapper .layout-menu-container .profile > button {
    cursor: pointer;
    width: 100%;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
}
.layout-wrapper .layout-menu-container .profile > button:focus {
    outline: 0;
}
.layout-wrapper .layout-menu-container .profile > button .profile-image {
    width: 45px;
    height: 45px;
    float: right;
    margin-left: 4px;
}
.layout-wrapper .layout-menu-container .profile > button .profile-name {
    display: block;
    color: #212529;
    vertical-align: middle;
    font-size: 16px;
    font-weight: bold;
    text-align: right;
    margin-top: 4px;
}
.layout-wrapper .layout-menu-container .profile > button .profile-role {
    display: block;
    min-width: 100px;
    text-align: right;
    font-size: 12px;
    float: right;
    color: #6c757d;
}
.layout-wrapper .layout-menu-container .profile > button i {
    float: right;
    color: #6c757d;
    font-size: 12px;
    line-height: 18px;
    transition: transform 0.3s;
}
.layout-wrapper .layout-menu-container .profile.profile-expanded i {
    transform: rotate(-180deg);
}
.layout-wrapper .layout-menu-container .profile-menu {
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    border-bottom: 1px solid #d6d5d5;
}
.layout-wrapper .layout-menu-container .profile-menu.layout-profile-menu-enter-from,
.layout-wrapper .layout-menu-container .profile-menu.layout-profile-menu-leave-to {
    max-height: 0;
}
.layout-wrapper .layout-menu-container .profile-menu.layout-profile-menu-enter-to,
.layout-wrapper .layout-menu-container .profile-menu.layout-profile-menu-leave-from {
    max-height: 1000px;
}
.layout-wrapper .layout-menu-container .profile-menu.layout-profile-menu-leave-active {
    overflow: hidden;
    transition: max-height 400ms cubic-bezier(0.86, 0, 0.07, 1);
}
.layout-wrapper .layout-menu-container .profile-menu.layout-profile-menu-enter-active {
    overflow: hidden;
    transition: max-height 1s ease-in-out;
}
.layout-wrapper .layout-menu-container .profile-menu li:first-child {
    margin-top: 16px;
}
.layout-wrapper .layout-menu-container .profile-menu li:last-child {
    margin-bottom: 16px;
}
.layout-wrapper .layout-menu-container .profile-menu button {
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
    cursor: pointer;
}
.layout-wrapper .layout-menu-container .profile-menu a {
    padding: 10px 20px;
}
.layout-wrapper .layout-menu-container .layout-menu .layout-root-menuitem > a {
    display: none;
}
.layout-wrapper .layout-menu-container .layout-menu .p-menu-separator {
    margin: 1rem 0;
}
.topbar .layout-menu .p-menu-separator {
    margin: .5rem 0;
    border-top: 1px solid #e3e3e3;
}
.topbar .layout-menu.submenu {
    margin-left: 2rem;
}
.layout-wrapper .layout-menu-container .layout-menu > li a.active-route {
    font-weight: 700;
}
.layout-wrapper .layout-menu-container .layout-menu li ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.layout-wrapper .layout-menu-container .layout-menu li ul li a {
    padding: 10px 20px 10px 15px;
}
.layout-wrapper .layout-menu-container .layout-menu li ul li a i:first-child {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
.layout-wrapper .layout-menu-container .layout-menu li ul li ul li a {
    padding-left: 30px;
}
.layout-wrapper .layout-menu-container .layout-menu li ul li ul ul li a {
    padding-left: 45px;
}
.layout-wrapper .layout-menu-container .layout-menu li ul li ul ul ul li a {
    padding-left: 60px;
}
.layout-wrapper .layout-menu-container .layout-menu li ul li ul ul ul ul li a {
    padding-left: 75px;
}
.layout-wrapper .layout-menu-container .layout-menu li.active-menuitem > a .layout-menuitem-icon,
.layout-wrapper .layout-menu-container .layout-menu li.active-menuitem > a .layout-submenu-toggler,
.layout-wrapper .layout-menu-container .layout-menu li.active-menuitem > button .layout-menuitem-icon,
.layout-wrapper .layout-menu-container .layout-menu li.active-menuitem > button .layout-submenu-toggler {
    color: #2c9cec;
}
.layout-wrapper .layout-menu-container .layout-menu li > a.router-link-active,
.layout-wrapper .layout-menu-container .layout-menu li > button.router-link-active {
    background-color: #e8e8e8;
    border-left-color: #2c9cec;
}
.layout-wrapper .layout-menu-container .layout-menu li > a.router-link-active .layout-menuitem-text,
.layout-wrapper .layout-menu-container .layout-menu li > button.router-link-active .layout-menuitem-text {
    color: #2c9cec;
}
.layout-wrapper .layout-menu-container .layout-menu li > a.router-link-active .layout-menuitem-icon,
.layout-wrapper .layout-menu-container .layout-menu li > a.router-link-active .layout-submenu-toggler,
.layout-wrapper .layout-menu-container .layout-menu li > button.router-link-active .layout-menuitem-icon,
.layout-wrapper .layout-menu-container .layout-menu li > button.router-link-active .layout-submenu-toggler {
    color: #2c9cec;
}
.layout-wrapper .layout-menu-container.layout-menu-dark {
    background-color: #363a41;
    background-image: -webkit-gradient(linear, left top, right top, from(#363a41), to(#363a41));
    background-image: -webkit-linear-gradient(to right, #363a41, #363a41);
    background-image: -moz-linear-gradient(to right, #363a41, #363a41);
    background-image: -ms-linear-gradient(to right, #363a41, #363a41);
    background-image: -o-linear-gradient(to right, #363a41, #363a41);
    background-image: linear-gradient(to right, #363a41, #363a41);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr="#363a41", endColorStr="#363a41", gradientType="1");
}
.layout-wrapper .layout-menu-container.layout-menu-dark .profile .profile-name,
.layout-wrapper .layout-menu-container.layout-menu-dark .profile .profile-role {
    color: #ffffff;
}
.layout-wrapper .layout-menu-container.layout-menu-dark .profile i {
    color: #ffffff;
}
.layout-wrapper .layout-menu-container.layout-menu-dark .profile-menu {
    border-bottom: 1px solid #4a4d54;
}
.layout-wrapper .layout-menu-container.layout-menu-dark ul.layout-menu li.layout-root-menuitem > .layout-menuitem-root-text {
    color: rgba(255, 255, 255, 0.65);
}
.layout-wrapper .layout-menu-container.layout-menu-dark ul.layout-menu li a,
.layout-wrapper .layout-menu-container.layout-menu-dark ul.layout-menu li button {
    color: #ffffff;
}
.layout-wrapper .layout-menu-container.layout-menu-dark ul.layout-menu li a i,
.layout-wrapper .layout-menu-container.layout-menu-dark ul.layout-menu li button i {
    color: #ffffff;
}
.layout-wrapper .layout-menu-container.layout-menu-dark ul.layout-menu li a:hover,
.layout-wrapper .layout-menu-container.layout-menu-dark ul.layout-menu li button:hover {
    background-color: #4a4d54;
}
.layout-wrapper .layout-menu-container.layout-menu-dark ul.layout-menu li a.router-link-active,
.layout-wrapper .layout-menu-container.layout-menu-dark ul.layout-menu li button.router-link-active {
    color: #6aa5d8;
    border-left-color: #6aa5d8;
    background-color: #282b30;
}
.layout-wrapper .layout-menu-container.layout-menu-dark ul.layout-menu li a.router-link-active i:first-child,
.layout-wrapper .layout-menu-container.layout-menu-dark ul.layout-menu li a.router-link-active span,
.layout-wrapper .layout-menu-container.layout-menu-dark ul.layout-menu li button.router-link-active i:first-child,
.layout-wrapper .layout-menu-container.layout-menu-dark ul.layout-menu li button.router-link-active span {
    color: #6aa5d8;
}
.layout-wrapper .layout-menu-container.layout-menu-dark ul.layout-menu li.active-menuitem > a,
.layout-wrapper .layout-menu-container.layout-menu-dark ul.layout-menu li.active-menuitem > button {
    border-left-color: #6aa5d8;
    color: #428dcd;
    background-color: #282b30;
}
.layout-wrapper .layout-menu-container.layout-menu-dark ul.layout-menu li.active-menuitem > a i,
.layout-wrapper .layout-menu-container.layout-menu-dark ul.layout-menu li.active-menuitem > button i {
    color: #6aa5d8;
}
.layout-wrapper.menu-layout-overlay .layout-menu-container {
    width: 235px;
    transition: transform 0.3s;
}
.layout-wrapper.menu-layout-overlay .layout-menu-container.layout-menu-container-enter-from,
.layout-wrapper.menu-layout-overlay .layout-menu-container.layout-menu-container-leave-to {
    transform: translateX(-100%);
}
.layout-wrapper.menu-layout-overlay .layout-main,
.layout-wrapper.menu-layout-overlay .layout-footer {
    margin-left: 0;
}
.layout-wrapper.menu-layout-overlay.layout-menu-overlay-active .layout-menu-container {
    z-index: 999999999;
}
.layout-wrapper.menu-layout-overlay.layout-menu-overlay-active .layout-mask {
    display: block;
}
.layout-wrapper.menu-layout-overlay.layout-menu-overlay-active .topbar .topbar-right #menu-button i {
    transform: rotate(0deg);
}
.layout-wrapper.menu-layout-overlay .topbar {
    z-index: 999999998;
}
.layout-wrapper.menu-layout-overlay .topbar .topbar-right #menu-button i {
    transform: rotate(180deg);
}
.layout-wrapper .layout-main {
    padding: 120px 15px 15px 15px;
    transition: margin-left 0.3s;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 120px);
    -moz-transition: margin-left 0.2s;
    -o-transition: margin-left 0.2s;
    -webkit-transition: margin-left 0.2s;
    transition: margin-left 0.2s;
}
.layout-wrapper .layout-mask {
    display: none;
}
.layout-wrapper .layout-footer {
    transition: margin-left 0.3s;
    background: #3e3e3e;
}
.layout-wrapper .layout-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}
.layout-wrapper .layout-menu.layout-main-menu {
    padding-bottom: 120px;
}
.layout-wrapper .layout-menu li.layout-root-menuitem > ul.layout-submenu-container-enter-from,
.layout-wrapper .layout-menu li.layout-root-menuitem > ul.layout-submenu-container-leave-to {
    max-height: 0;
}
.layout-wrapper .layout-menu li.layout-root-menuitem > ul.layout-submenu-container-enter-to,
.layout-wrapper .layout-menu li.layout-root-menuitem > ul.layout-submenu-container-leave-from {
    max-height: 1000px;
}
.layout-wrapper .layout-menu li.layout-root-menuitem > ul.layout-submenu-container-leave-active {
    overflow: hidden;
    transition: none;
}
.layout-wrapper .layout-menu li.layout-root-menuitem > ul.layout-submenu-container-enter-active {
    overflow: hidden;
    transition: none;
}
.layout-wrapper .layout-menu li > .layout-menuitem-root-text {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 1.5rem 0 0.5rem 1.25rem;
    color: #6c757d;
}
.layout-wrapper .layout-menu li > a {
    display: none;
}
.layout-wrapper .layout-menu li a,
.layout-wrapper .layout-menu li button {
    display: flex;
    padding: 10px 15px;
    color: var(--text-color);
    width: 100%;
    transition: background-color 0.3s, border-left-color 0.3s;
    overflow: hidden;
    border-left: 4px solid transparent;
    outline: none;
    cursor: pointer;
    user-select: none;
}
.layout-wrapper .layout-menu li a i,
.layout-wrapper .layout-menu li button i {
    color: #6c757d;
}
.layout-wrapper .layout-menu li a i:first-child,
.layout-wrapper .layout-menu li button i:first-child {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    font-size: 16px;
}
.layout-wrapper .layout-menu li a i.menuitem-toggle-icon,
.layout-wrapper .layout-menu li button i.menuitem-toggle-icon {
    float: right;
    font-size: 16px;
    margin-top: 2px;
    margin-right: -3px;
    transition: transform 0.3s;
}
.layout-wrapper .layout-menu li a:hover,
.layout-wrapper .layout-menu li button:hover {
    background-color: var(--surface-card-color-hover);
}
.layout-wrapper .layout-menu li a span,
.layout-wrapper .layout-menu li button span {
    display: inline-block;
    vertical-align: middle;
}
.layout-wrapper .layout-menu li a .menuitem-badge,
.layout-wrapper .layout-menu li button .menuitem-badge {
    float: right;
    width: 16px;
    height: 16px;
    margin-right: 2px;
    text-align: center;
    background-color: #faa633;
    color: #282b30;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    border-radius: 50%;
    margin-top: 2px;
}
.layout-wrapper .layout-menu li a.active-menuitem-routerlink,
.layout-wrapper .layout-menu li button.active-menuitem-routerlink {
    color: #2c9cec;
}
.layout-wrapper .layout-menu li a.active-menuitem-routerlink i:first-child,
.layout-wrapper .layout-menu li button.active-menuitem-routerlink i:first-child {
    color: #2c9cec;
}
.layout-wrapper .layout-menu li.active-menuitem > a,
.layout-wrapper .layout-menu li.active-menuitem > button {
    color: #2c9cec;
    background-color: #e8e8e8;
    border-left-color: #2c9cec;
}
.layout-wrapper .layout-menu li.active-menuitem > a i:first-child,
.layout-wrapper .layout-menu li.active-menuitem > button i:first-child {
    color: #2c9cec;
}
.layout-wrapper .layout-menu li.active-menuitem > a i.menuitem-toggle-icon,
.layout-wrapper .layout-menu li.active-menuitem > button i.menuitem-toggle-icon {
    transform: rotate(-180deg);
}
.layout-wrapper .layout-menu li.active-menuitem > ul {
    max-height: 1000px;
}
.layout-wrapper .layout-menu li > a.rotated-icon .layout-menuitem-icon {
    transform: rotate(90deg);
}
.layout-wrapper .layout-menu li ul.layout-submenu-container-enter-from,
.layout-wrapper .layout-menu li ul.layout-submenu-container-leave-to {
    max-height: 0;
}
.layout-wrapper .layout-menu li ul.layout-submenu-container-enter-to,
.layout-wrapper .layout-menu li ul.layout-submenu-container-leave-from {
    max-height: 1000px;
}
.layout-wrapper .layout-menu li ul.layout-submenu-container-leave-active {
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.86, 0, 0.07, 1);
}
.layout-wrapper .layout-menu li ul.layout-submenu-container-enter-active {
    overflow: hidden;
    transition: max-height 1s ease-in-out;
}
.layout-wrapper .layout-menu .layout-menu-tooltip {
    display: none;
    padding: 0 5px;
    position: absolute;
    left: 76px;
    top: 5px;
    z-index: 101;
    line-height: 1;
}
.layout-wrapper .layout-menu .layout-menu-tooltip .layout-menu-tooltip-text {
    padding: 6px 8px;
    font-weight: 700;
    background-color: #4d535d;
    color: #ffffff;
    min-width: 75px;
    white-space: nowrap;
    text-align: center;
    border-radius: 4px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.layout-wrapper .layout-menu .layout-menu-tooltip .layout-menu-tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #4d535d;
}
.layout-wrapper .layout-footer {
    padding: 15px 20px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}
.layout-wrapper .layout-footer i {
    font-size: 1em;
    vertical-align: middle;
}
.layout-wrapper .layout-footer .footer-text-left img {
    /* height: 25px; */
    max-height: 50px;
    margin-top: -10px;
    margin-bottom: -10px;
}
.layout-wrapper .layout-footer .footer-text-right {
    color: #ffffff;
    float: right;
}
.layout-wrapper .layout-footer .footer-text-right button {
    cursor: pointer;
    margin-left: 15px;
    color: var(--topbar-color-text);
    font-size: 24px;
}

.ajax-loader {
    font-size: 32px;
    color: #2c9cec;
}

@media (min-width: 1061px) {
    .layout-wrapper .topbar-items {
        -webkit-animation-name: none;
        animation-name: none;
        float: right;
        margin: 5px 0 0 0;
        padding: 0;
        list-style-type: none;
    }
    .layout-wrapper .topbar-items > li {
        float: right;
        position: relative;
        margin-left: 14px;
    }
    .layout-wrapper .topbar-items > li > a,
    .layout-wrapper .topbar-items > li > button {
        cursor: pointer;
        position: relative;
        display: block;
    }
    .layout-wrapper .topbar-items > li > a:focus,
    .layout-wrapper .topbar-items > li > button:focus {
        outline: 0;
    }
    /* va changer */
    .layout-wrapper .topbar-items > li > a .topbar-item-name,
    .layout-wrapper .topbar-items > li > button .topbar-item-name {
        /* display: none; */
        display: inline-block;
        padding: 0 0 0 0.25rem;
        vertical-align: super;
        color: var(--bar-icon-color);
        font-weight: 500;
    }
    .layout-wrapper .topbar-items > li > a .topbar-badge,
    .layout-wrapper .topbar-items > li > button .topbar-badge {
        position: absolute;
        right: -6px;
        top: -6px;
        background-color: #faa633;
        color: #282b30;
        border-radius: 50%;
        padding: 2px 4px;
        display: block;
        font-size: 12px;
        line-height: 12px;
    }
    .layout-wrapper .topbar-items > li .topbar-icon {
        font-size: 24px;
        color: var(--bar-icon-color);
        transition: color 0.3s;
    }
    .layout-wrapper .topbar-items > li .topbar-icon:hover {
        color: #cccccc;
    }
    .layout-wrapper .topbar-items > li.profile-item button {
        transition: color 0.3s;
        top: -3px;
        min-width: 12rem;
    }
    .layout-wrapper .topbar-items > li.profile-item button:after {
        content: '';
        display: table;
        clear: both;
    }
    .layout-wrapper .topbar-items > li.profile-item button .profile-image {
        width: 36px;
        height: 36px;
        margin-top: -4px;
        float: right;
        margin-left: 12px;
    }
    .layout-wrapper .topbar-items > li.profile-item button .topbar-item-name {
        display: block;
        float: left;
        color: var(--bar-icon-color);
    }
    .layout-wrapper .topbar-items > li.profile-item button .topbar-item-role {
        display: block;
        font-size: 12px;
        color: var(--bar-icon-color);
    }
    .layout-wrapper .topbar-items > li.profile-item .topbar-item-button {
        padding: 10px 15px;
    }
    .layout-wrapper .topbar-items > li > ul {
        position: absolute;
        top: 50px;
        right: 5px;
        width: 250px;
        background-color: var(--surface-card-color);
        border-top: 4px solid var(--p-primary-500);
        box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 8px 17px 0 rgba(0, 0, 0, 0.2);
        animation-duration: 0.5s;
    }
    .layout-wrapper .topbar-items > li > ul:before {
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 15px solid var(--p-primary-500);
        content: ' ';
        position: absolute;
        top: -15px;
        left: 232px;
    }
    .layout-wrapper .topbar-items > li > ul.layout-submenu-container-enter-from,
    .layout-wrapper .topbar-items > li > ul.layout-submenu-container-leave-to {
        max-height: 0;
        display: none;
    }
    .layout-wrapper .topbar-items > li > ul.layout-submenu-container-enter-to,
    .layout-wrapper .topbar-items > li > ul.layout-submenu-container-leave-from {
        max-height: 500px;
    }
    .layout-wrapper .topbar-items > li .topbar-message img {
        display: inline-block;
        vertical-align: middle;
        margin-right: 12px;
    }
    .layout-wrapper.menu-layout-static .layout-menu-container {
        transition: transform 0.3s;
    }
    .layout-wrapper.menu-layout-static .layout-menu-container.layout-menu-container-enter-from,
    .layout-wrapper.menu-layout-static .layout-menu-container.layout-menu-container-leave-to {
        transform: translateX(-100%);
    }
    .layout-wrapper.menu-layout-static .layout-main,
    .layout-wrapper.menu-layout-static .layout-footer {
        margin-left: 235px;
        transition: margin-left 0.3s;
    }
    .layout-wrapper.menu-layout-static.layout-menu-static-inactive .layout-menu-container {
        transform: translateX(-100%);
    }
    .layout-wrapper.menu-layout-static.layout-menu-static-inactive .layout-main,
    .layout-wrapper.menu-layout-static.layout-menu-static-inactive .layout-footer {
        margin-left: 0px;
    }
    .layout-wrapper.menu-layout-static.layout-menu-static-inactive .topbar .topbar-right #menu-button i {
        transform: rotate(180deg);
    }
    .layout-wrapper.menu-layout-static .layout-mask {
        display: none;
    }
    .layout-wrapper.menu-layout-horizontal .topbar {
        box-shadow: none;
    }
    .layout-wrapper.menu-layout-horizontal .topbar .topbar-left {
        background: var(--bar-color);
        box-shadow: none;
    }
    .layout-wrapper.menu-layout-horizontal .topbar .topbar-right {
        background: var(--bar-color);
    }
    .layout-wrapper.menu-layout-horizontal .layout-main {
        margin-left: 0px;
    }
    .layout-wrapper.menu-layout-horizontal .layout-footer {
        margin-left: 0px;
    }
    .layout-wrapper.menu-layout-horizontal .layout-mask {
        display: none;
    }
    .layout-wrapper.menu-layout-slim .topbar {
        left: 75px;
        width: calc(100% - 75px);
    }
    .layout-wrapper.menu-layout-slim .topbar .topbar-left {
        background: transparent;
        box-shadow: none;
    }
    .layout-wrapper.menu-layout-slim .topbar .topbar-right #menu-button {
        display: none;
    }
    .layout-wrapper.menu-layout-slim .layout-menu-container {
        width: 75px;
        overflow: visible;
        z-index: 100;
        top: 0;
    }
    .layout-wrapper.menu-layout-slim .layout-menu-container .profile {
        height: 60px;
        padding-top: 7px;
    }
    .layout-wrapper.menu-layout-slim .layout-menu-container .profile > button .profile-name,
    .layout-wrapper.menu-layout-slim .layout-menu-container .profile > button .profile-role,
    .layout-wrapper.menu-layout-slim .layout-menu-container .profile > button i {
        display: none;
    }
    .layout-wrapper.menu-layout-slim .layout-menu-container .layout-menu {
        padding: 0;
    }
    .layout-wrapper.menu-layout-slim .layout-menu-container .layout-menu > li {
        position: relative;
    }
    .layout-wrapper.menu-layout-slim .layout-menu-container .layout-menu > li > a,
    .layout-wrapper.menu-layout-slim .layout-menu-container .layout-menu > li > button {
        text-align: center;
        padding: 15px;
        padding-left: 20px;
    }
    .layout-wrapper.menu-layout-slim .layout-menu-container .layout-menu > li > a i:first-child,
    .layout-wrapper.menu-layout-slim .layout-menu-container .layout-menu > li > button i:first-child {
        font-size: 19px;
    }
    .layout-wrapper.menu-layout-slim .layout-menu-container .layout-menu > li > a span,
    .layout-wrapper.menu-layout-slim .layout-menu-container .layout-menu > li > a i.menuitem-toggle-icon,
    .layout-wrapper.menu-layout-slim .layout-menu-container .layout-menu > li > button span,
    .layout-wrapper.menu-layout-slim .layout-menu-container .layout-menu > li > button i.menuitem-toggle-icon {
        display: none;
    }
    .layout-wrapper.menu-layout-slim .layout-menu-container .layout-menu > li > a:hover + .layout-menu-tooltip,
    .layout-wrapper.menu-layout-slim .layout-menu-container .layout-menu > li > button:hover + .layout-menu-tooltip {
        display: block;
    }
    .layout-wrapper.menu-layout-slim .layout-menu-container .layout-menu > li > ul {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
        border: 1px solid #cccccc;
        background-color: #ffffff;
        position: absolute;
        top: 0;
        left: 73px;
        min-width: 200px;
        max-height: none;
        display: none;
    }
    .layout-wrapper.menu-layout-slim .layout-menu-container .layout-menu > li > ul li a {
        padding-left: 16px;
    }
    .layout-wrapper.menu-layout-slim .layout-menu-container .layout-menu > li > ul li ul li a {
        padding-left: 32px;
    }
    .layout-wrapper.menu-layout-slim .layout-menu-container .layout-menu > li > ul li ul ul li a {
        padding-left: 48px;
    }
    .layout-wrapper.menu-layout-slim .layout-menu-container .layout-menu > li > ul li ul ul ul li a {
        padding-left: 64px;
    }
    .layout-wrapper.menu-layout-slim .layout-menu-container .layout-menu > li > ul li ul ul ul ul li a {
        padding: 80px;
    }
    .layout-wrapper.menu-layout-slim .layout-menu-container .layout-menu > li > ul li ul ul ul ul ul li a {
        padding: 96px;
    }
    .layout-wrapper.menu-layout-slim .layout-menu-container .layout-menu > li.active-menuitem > a:hover + .layout-menu-tooltip {
        display: none;
    }
    .layout-wrapper.menu-layout-slim .layout-menu-container .layout-menu > li.active-menuitem > ul {
        display: block;
    }
    .layout-wrapper.menu-layout-slim .layout-menu-container .layout-menu .layout-root-menuitem > a {
        display: inline-block;
    }
    .layout-wrapper.menu-layout-slim .layout-menu-container .layout-menu .layout-root-menuitem > .layout-menuitem-root-text {
        display: none;
    }
    .layout-wrapper.menu-layout-slim .layout-menu-container.layout-menu-dark {
        border: none;
    }
    .layout-wrapper.menu-layout-slim .layout-menu-container.layout-menu-dark .layout-menu > li > ul {
        border: none;
        background-color: #363a41;
        background-image: -webkit-gradient(linear, left top, right top, from(#363a41), to(#363a41));
        background-image: -webkit-linear-gradient(to right, #363a41, #363a41);
        background-image: -moz-linear-gradient(to right, #363a41, #363a41);
        background-image: -ms-linear-gradient(to right, #363a41, #363a41);
        background-image: -o-linear-gradient(to right, #363a41, #363a41);
        background-image: linear-gradient(to right, #363a41, #363a41);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorStr="#363a41", endColorStr="#363a41", gradientType="1");
    }
    .layout-wrapper.menu-layout-slim .layout-main {
        margin-left: 75px;
    }
    .layout-wrapper.menu-layout-slim .layout-footer {
        margin-left: 75px;
    }
}
@media (max-width: 1060px) {
    .layout-wrapper.menu-layout-static .layout-menu-container.layout-menu-container-enter-from {
        transform: translateX(0) !important;
    }
    .layout-wrapper.menu-layout-static .layout-main,
    .layout-wrapper.menu-layout-static .layout-footer {
        margin-left: 0px;
    }
    .layout-wrapper.menu-layout-static.layout-menu-static-active .layout-menu-container {
        z-index: 999999999;
        transform: translateX(0);
    }
    .layout-wrapper.menu-layout-static.layout-menu-static-active .topbar {
        z-index: 999999998;
    }
    .layout-wrapper.menu-layout-static.layout-menu-static-active .topbar .topbar-right #menu-button i {
        transform: rotate(0deg);
    }
    .layout-wrapper.menu-layout-static.layout-menu-static-active .layout-main,
    .layout-wrapper.menu-layout-static.layout-menu-static-active .layout-footer {
        margin-left: 0;
    }
    .layout-wrapper.menu-layout-static.layout-menu-static-active .layout-mask {
        display: block;
    }
    .layout-wrapper.menu-layout-static.layout-menu-static-inactive .topbar .topbar-right #menu-button.menu-button-rotate i {
        transform: rotate(180deg);
    }
    .layout-wrapper .topbar .topbar-right #topbar-menu-button {
        display: block;
    }
    .layout-wrapper .topbar .topbar-right .topbar-items {
        position: absolute;
        top: 75px;
        right: 15px;
        width: 275px;
        animation-duration: 0.5s;
        display: none;
        background-color:var(--surface-card-color);
        border-top: 4px solid var(--p-primary-500);
        box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.19), 0 8px 17px 0 rgba(0, 0, 0, 0.2);
        list-style-type: none;
        margin: 0;
        padding: 0;
    }
    .layout-wrapper .topbar .topbar-right .topbar-items:before {
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 15px solid var(--p-primary-500);
        content: ' ';
        position: absolute;
        top: -15px;
        left: 242px;
    }
    .layout-wrapper .topbar .topbar-right .topbar-items > li > a,
    .layout-wrapper .topbar .topbar-right .topbar-items > li > button, 
    .layout-wrapper .topbar .topbar-right .topbar-items > li > a > button {
        width: 100%;
        display: block;
        font-size: 16px;
        padding: 10px 15px;
        color: var(--text-color);
        position: relative;
    }
    .layout-wrapper .topbar .topbar-right .topbar-items > li > a i,
    .layout-wrapper .topbar .topbar-right .topbar-items > li > button i {
        display: inline-block;
        vertical-align: middle;
        margin-right: 12px;
        font-size: 16px;
    }
    .layout-wrapper .topbar .topbar-right .topbar-items > li > a:hover,
    .layout-wrapper .topbar .topbar-right .topbar-items > li > button:hover {
        background-color: var(--surface-card-color-hover);
    }
    .layout-wrapper .topbar .topbar-right .topbar-items > li > a .topbar-item-name,
    .layout-wrapper .topbar .topbar-right .topbar-items > li > button .topbar-item-name {
        display: inline-block;
        vertical-align: middle;
    }
    .layout-wrapper .topbar .topbar-right .topbar-items > li > a .topbar-badge,
    .layout-wrapper .topbar .topbar-right .topbar-items > li > button .topbar-badge {
        position: absolute;
        left: 30px;
        top: 5px;
        background-color: #faa633;
        color: #282b30;
        border-radius: 50%;
        padding: 2px 4px;
        display: block;
        font-size: 12px;
        line-height: 12px;
    }
    .layout-wrapper .topbar .topbar-right .topbar-items > li > ul li a span,
    .layout-wrapper .topbar .topbar-right .topbar-items > li > ul li a img,
    .layout-wrapper .topbar .topbar-right .topbar-items > li > ul li a i,
    .layout-wrapper .topbar .topbar-right .topbar-items > li > ul li button span,
    .layout-wrapper .topbar .topbar-right .topbar-items > li > ul li button img,
    .layout-wrapper .topbar .topbar-right .topbar-items > li > ul li button i {
        margin-left: 10px;
        display: inline-block;
        vertical-align: middle;
    }
    .layout-wrapper .topbar .topbar-right .topbar-items > li.active-top-menu > a,
    .layout-wrapper .topbar .topbar-right .topbar-items > li.active-top-menu > button {
        color: var(--p-primary-500);
    }
    .layout-wrapper .topbar .topbar-right .topbar-items > li.active-top-menu > ul li a,
    .layout-wrapper .topbar .topbar-right .topbar-items > li.active-top-menu > ul li button {
        padding-left: 32px;
    }
    .layout-wrapper .topbar .topbar-right .topbar-items > li.search-item {
        width: 100%;
        display: block;
        font-size: 16px;
        position: relative;
        padding: 10px 15px;
    }
    .layout-wrapper .topbar .topbar-right .topbar-items > li.search-item .topbar-search input {
        top: 0;
        width: 100%;
        padding-right: 28px;
        border-color: #dee2e6;
        color: #212529;
    }
    .layout-wrapper .topbar .topbar-right .topbar-items > li.search-item .topbar-search input:focus {
        border-color: #dee2e6;
    }
    .layout-wrapper .topbar .topbar-right .topbar-items > li.search-item .topbar-search label {
        top: 1px;
        color: #212529;
    }
    .layout-wrapper .topbar .topbar-right .topbar-items > li.search-item .topbar-search i {
        position: absolute;
        right: 10px;
        top: 5px;
    }
    .layout-wrapper .topbar .topbar-right .topbar-items > li.profile-item .profile-image {
        display: inline-block;
        vertical-align: middle;
        width: 24px;
        height: 24px;
        background-size: 24px 24px;
        margin-right: 14px;
    }
    .layout-wrapper .topbar .topbar-right .topbar-items > li.profile-item span {
        vertical-align: middle;
        display: inline-block;
    }
    .layout-wrapper .topbar .topbar-right .topbar-items > li.profile-item span.topbar-item-role {
        font-size: 14px;
        padding-top: 2px;
    }
    .layout-wrapper .topbar .topbar-right .topbar-items > li.profile-item span.topbar-item-role:before {
        content: "(";
    }
    .layout-wrapper .topbar .topbar-right .topbar-items > li.profile-item span.topbar-item-role:after {
        content: ")";
    }
    .layout-wrapper .topbar .topbar-right .topbar-items.topbar-items-visible {
        display: block;
    }
}
@media (max-width: 399px) {
    .layout-wrapper .topbar .topbar-right #topbar-menu-button {
        right: 10px;
    }
    .layout-wrapper.layout-rtl .topbar .topbar-right #topbar-menu-button {
        left: 10px;
    }
}
.layout-config {
    position: fixed;
    padding: 0;
    top: 60px;
    display: block;
    right: 0;
    width: 20em;
    z-index: 996;
    height: calc(100% - 60px);
    transform: translate3d(20em, 0px, 0px);
    transition: transform 0.3s;
    background-color: #ffffff;
    backface-visibility: hidden;
    box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 5px 22px 4px rgba(0, 0, 0, 0.12), 0 12px 17px 2px rgba(0, 0, 0, 0.14);
}
.layout-config.layout-config-active {
    transform: translate3d(0px, 0px, 0px);
}
.layout-config.layout-config-active .layout-config-button {
    opacity: 0;
    visibility: hidden;
}
.layout-config .layout-config-button {
    display: block;
    position: absolute;
    width: 52px;
    height: 52px;
    line-height: 52px;
    background-color: #fafafa;
    text-align: center;
    top: 230px;
    left: -51px;
    z-index: -1;
    overflow: hidden;
    cursor: pointer;
    opacity: 1;
    color: #146fd7;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    transition: background-color 0.3s, opacity 0.3s;
    transition-delay: 0.2s;
    box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 5px 22px 4px rgba(0, 0, 0, 0.12), 0 12px 17px 2px rgba(0, 0, 0, 0.14);
}
.layout-config .layout-config-button i {
    font-size: 32px;
    font-weight: bold;
    line-height: inherit;
    cursor: pointer;
    transition: transform 1s;
}
.layout-config .layout-config-button:hover {
    color: #4996ee;
}
.layout-config .layout-config-close {
    position: absolute;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    right: 20px;
    top: 10px;
    z-index: 999;
    background-color: #e0284f;
    border-radius: 50%;
    transition: background-color 0.3s;
}
.layout-config .layout-config-close i {
    color: #ffffff;
    line-height: inherit;
    font-size: 12px;
}
.layout-config .layout-config-close:hover {
    background-color: #d44d69;
}
.layout-config .layout-config-content {
    position: relative;
    height: 100%;
    padding: 1em;
    overflow: auto;
}
.layout-config .layout-config-content .layout-themes {
    display: flex;
    flex-wrap: wrap;
}
.layout-config .layout-config-content .layout-themes > div {
    padding: 0.25rem;
}
.layout-config .layout-config-content .layout-themes a {
    width: 2rem;
    height: 2rem;
    border-radius: 4px;
    display: block;
    position: relative;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.layout-config .layout-config-content .layout-themes a i {
    font-size: 1rem;
    position: absolute;
    color: #ffffff;
    top: 50%;
    left: 50%;
    margin-left: -0.5rem;
    margin-top: -0.5rem;
}
.layout-config .layout-config-content .layout-themes a:hover {
    transform: scale(1.1);
}
.layout-config .col {
    text-align: center;
}
.layout-config p {
    line-height: 1.5;
    margin-top: 0;
    color: #6c757d;
}

.blocked-scroll-config {
    overflow: hidden;
}

@media screen and (max-width: 1024px) {
    .layout-config {
        transform: translate3d(20em, 0px, 0px);
    }
    .layout-config.layout-config-active {
        transform: translate3d(0px, 0px, 0px);
    }
    .layout-config .layout-config-close {
        right: 29px;
    }
}
.help-page p {
    margin: 0;
}
.help-page .help-search {
    background: url('../../layout/images/pages/bg-help.png') repeat;
    padding: 0;
    text-align: center;
}
.help-page .help-search .help-search-content {
    padding: 5rem 12rem;
}
.help-page .help-search .search-container {
    font-size: 1.5rem;
    padding: 1rem;
    position: relative;
}
.help-page .help-search .search-container input {
    appearance: none;
    font-size: 1.5rem;
    text-indent: 2.5rem;
    padding: 0.5rem;
    width: 100%;
}
.help-page .help-search .search-container i {
    color: #212529;
    position: absolute;
    margin-left: 1rem;
    top: 50%;
    margin-top: -0.5rem;
}
.help-page .status-bars {
    margin-top: 1rem;
    display: flex;
}
.help-page .status-bars .status-bar {
    flex: 1 1 0;
    background: #8bc34a;
    height: 50px;
    margin-right: 0.25rem;
    transition: transform 0.3s;
}
.help-page .status-bars .status-bar:last-child {
    margin-right: 0;
}
.help-page .status-bars .status-bar.status-bar-failure {
    background: #ec407a;
}
.help-page .status-bars .status-bar:hover {
    transform: scale(1.1);
}
.help-page .status-bar-footer {
    padding: 1rem 0 0 0;
    display: flex;
    justify-content: space-between;
}
.help-page .blog-post {
    height: 150px;
    border-radius: 4px;
    margin: 3rem 2rem;
    position: relative;
    box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.help-page .blog-post:last-child {
    margin-bottom: 1rem;
}
.help-page .blog-post img {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.help-page .blog-post .blog-text {
    position: absolute;
    left: 20px;
    top: 30px;
}
.help-page .blog-post .blog-text h1 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}
.help-page .blog-post .blog-text span {
    color: #ffffff;
    font-weight: 600;
}
.help-page .blog-post .blog-profile {
    position: absolute;
    top: -25px;
    left: -25px;
}
.help-page .blog-post .blog-profile img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.help-page .blog-post:nth-child(1) {
    background-image: url('../../layout/images/pages/help/blog1.jpg');
}
.help-page .blog-post:nth-child(2) {
    background-image: url('../../layout/images/pages/help/blog2.jpg');
}
.help-page .blog-post:nth-child(3) {
    background-image: url('../../layout/images/pages/help/blog3.jpg');
}

@media screen and (max-width: 991px) {
    .help-page .help-search .help-search-content {
        padding: 6rem 2rem;
    }
}

@media print {
    body * {
        visibility: hidden;
    }
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 1.5rem 0 1rem 0;
    font-family: inherit;
    font-weight: 600;
    line-height: 1.2;
    color: inherit;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
    margin-top: 0;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

mark {
    background: #fff8e1;
    padding: 0.25rem 0.4rem;
    border-radius: 4px;
    font-family: monospace;
}

blockquote {
    margin: 1rem 0;
    padding: 0 2rem;
    border-left: 4px solid #90a4ae;
}

hr {
    border-top: solid #dee2e6;
    border-width: 1px 0 0 0;
    margin: 1rem 0;
}

p {
    margin: 0 0 1rem 0;
    line-height: 1.5;
}
p:last-child {
    margin-bottom: 0;
}

.widget-overview {
    padding: 15px;
    color: #ffffff;
    min-height: 100px;
    border-radius: 4px;
    margin: 0 !important;
}
.widget-overview .overview-box-title {
    font-weight: bold;
    width: 100%;
}
.widget-overview .overview-box-title i {
    vertical-align: middle;
    font-size: 20px;
}
.widget-overview .overview-box-title span {
    margin-left: 0.5em;
    vertical-align: middle;
}
.widget-overview .overview-box-count {
    color: #ffffff;
    font-size: 24px;
    width: 100%;
    display: block;
    padding: 5px 0;
}
.widget-overview.overview-box-1 {
    background-color: #2c9cec;
    border: solid 1px #2c9cec;
    color: #ffffff;
}
.widget-overview.overview-box-2 {
    background-color: #28a745;
    border: solid 1px #28a745;
    color: #ffffff;
}
.widget-overview.overview-box-3 {
    background-color: #fd7e14;
    border: solid 1px #fd7e14;
    color: #ffffff;
}
.widget-overview.overview-box-4 {
    background-color: #6f42c1;
    border: solid 1px #6f42c1;
    color: #ffffff;
}

.widget-sale-table table {
    width: 100%;
    border-collapse: collapse;
}
.widget-sale-table table th {
    font-weight: 700;
    text-align: left;
    padding: 10px 15px;
}
.widget-sale-table table tbody tr:nth-child(odd) {
    background: #f9f9f9;
}
.widget-sale-table table tbody tr img {
    width: 36px;
    height: 36px;
}
.widget-sale-table table tbody tr td {
    padding: 10px 15px;
}
.widget-sale-table table tbody tr td:nth-child(1) {
    font-weight: 700;
    text-align: center;
}
.widget-sale-table table tbody tr td:nth-child(3) {
    font-weight: 700;
}

.widget-statistics .p-panel-titlebar i {
    margin-right: 5px;
}
.widget-statistics .p-panel-content {
    min-height: 291px;
    overflow: auto;
}
.widget-statistics table {
    width: 100%;
    border-collapse: collapse;
}
.widget-statistics table td {
    padding: 10px 15px;
}
.widget-statistics table td.col-overview {
    max-width: 48px;
}
.widget-statistics table td.col-overview div {
    width: 45px;
    height: 45px;
    line-height: 45px;
    color: #ffffff;
    text-align: center;
    font-size: 24px;
    border-radius: 50%;
}
.widget-statistics table td.col-overview.col-wait div {
    background-color: #a94442;
}
.widget-statistics table td.col-overview.col-success div {
    background-color: #3c763d;
}
.widget-statistics table td.col-overview.col-delay div {
    background-color: #8a6d3b;
}
.widget-statistics table td.col-overview.col-preorder div {
    background-color: #31708f;
}
.widget-statistics table td.col-status .status-time {
    display: block;
    width: 100%;
    color: #6c757d;
}
.widget-statistics table td.col-status .status-text {
    font-weight: bold;
}
.widget-statistics table td.col-numbers {
    font-weight: bold;
}
.widget-statistics table td.col-numbers span {
    margin-left: 10px;
    color: #6c757d;
}

.widget-graph {
    background-color: #ffffff;
    border: solid 1px #dddddd;
    padding: 15px;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}
.widget-graph .graph-title {
    display: block;
    font-size: 16px;
    color: #6c757d;
}
.widget-graph .graph-value {
    display: block;
    margin: 10px 0;
    font-size: 24px;
    font-weight: bold;
}
.widget-graph .graph-change {
    color: #6c757d;
}
.widget-graph img {
    width: 100%;
}

.widget-task-list {
    overflow: hidden;
}
.widget-task-list ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.widget-task-list ul li {
    padding: 10px 15px;
    border-bottom: 1px solid #dee2e6;
}
.widget-task-list ul li:last-child {
    border-bottom: 0 none;
}
.widget-task-list ul .p-checkbox {
    vertical-align: middle;
    margin-right: 5px;
}
.widget-task-list ul .task-name {
    vertical-align: middle;
}
.widget-task-list ul i {
    color: #6c757d;
    float: right;
    font-size: 16px;
}

.widget-contact-form {
    overflow: hidden;
}
.widget-contact-form .col-12 {
    padding: 10px 15px;
}
.widget-contact-form .col-12:last-child {
    padding-bottom: 0;
}

.widget-contacts {
    overflow: hidden;
}
.widget-contacts ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
.widget-contacts ul li {
    border-bottom: 1px solid #dee2e6;
    padding: 10px 15px;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    position: relative;
    display: block;
    border-radius: 2px;
    transition: background-color 0.2s;
}
.widget-contacts ul li img {
    float: left;
    margin-right: 8px;
}
.widget-contacts ul li .contact-info {
    float: left;
}
.widget-contacts ul li .contact-info .name {
    display: block;
    margin-top: 4px;
    font-size: 14px;
}
.widget-contacts ul li .contact-info .location {
    margin-top: 4px;
    display: block;
    font-size: 12px;
    color: #6c757d;
}
.widget-contacts ul li .contact-actions {
    float: right;
    padding-top: 12px;
}
.widget-contacts ul li .contact-actions .connection-status {
    color: #ffffff;
    padding: 2px 3px;
    border-radius: 4px;
}
.widget-contacts ul li .contact-actions .connection-status.online {
    background-color: #3c763d;
}
.widget-contacts ul li .contact-actions .connection-status.offline {
    background-color: #a94442;
}
.widget-contacts ul li .contact-actions i {
    color: #6c757d;
    margin-left: 5px;
    font-size: 1.25em;
}
.widget-contacts ul li:last-child {
    border: 0;
}

.widget-timeline {
    height: 100%;
    box-sizing: border-box;
}
.widget-timeline > .grid .col-3 {
    font-size: 14px;
    position: relative;
    border-right: 1px solid #dee2e6;
}
.widget-timeline > .grid .col-3 i {
    background-color: #ffffff;
    font-size: 24px;
    position: absolute;
    top: 6px;
    right: -12px;
}
.widget-timeline > .grid .col-9 {
    padding-left: 1.5em;
}
.widget-timeline > .grid .col-9 .event-text {
    color: #6c757d;
    font-size: 14px;
    display: block;
    padding-bottom: 20px;
}
.widget-timeline > .grid .col-9 .event-content img {
    width: 100%;
}

.widget-chat .p-panel.no-pad .p-panel-content {
    padding: 0 !important;
}
.widget-chat .p-panel:last-child {
    margin-top: 15px;
}
.widget-chat ul {
    padding: 12px;
    margin: 0;
    list-style-type: none;
}
.widget-chat ul li {
    padding: 6px 0;
}
.widget-chat ul li img {
    width: 36px;
    float: left;
}
.widget-chat ul li span {
    padding: 6px 12px;
    float: left;
    display: inline-block;
    margin: 4px 0;
    border-radius: 4px;
}
.widget-chat ul li.message-from img,
.widget-chat ul li.message-from span {
    float: left;
}
.widget-chat ul li.message-from img {
    margin-right: 8px;
}
.widget-chat ul li.message-from span {
    background-color: #dff0d8;
    border: solid 1px #d6e9c6;
}
.widget-chat ul li.message-own img,
.widget-chat ul li.message-own span {
    float: right;
}
.widget-chat ul li.message-own img {
    margin-left: 8px;
}
.widget-chat ul li.message-own span {
    background-color: #d9edf7;
    border: solid 1px #bce8f1;
}
.widget-chat .new-message {
    height: 40px;
    border-top: 1px solid #dee2e6;
    color: #afafc0;
}
.widget-chat .new-message .message-attachment {
    display: inline-block;
    border-right: 1px solid #dee2e6;
    width: 40px;
    line-height: 40px;
    height: 100%;
    text-align: center;
}
.widget-chat .new-message .message-attachment i {
    line-height: inherit;
    font-size: 24px;
}
.widget-chat .new-message .message-input {
    position: relative;
    top: -4px;
    width: calc(100% - 100px);
    display: inline-block;
}
.widget-chat .new-message .message-input input {
    border: 0 none;
    font-size: 14px;
    width: 100%;
    background-color: transparent;
    outline: 0 none;
    padding-left: 8px;
    box-shadow: none;
}

.widget-messages .message {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 5px;
}
.widget-messages .messager {
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}
.widget-messages .messager-img {
    margin-top: 4px;
    margin-right: 10px;
    margin-bottom: 4px;
    border-left: 3px solid rgba(0, 0, 0, 0);
}
.widget-messages .message-body {
    float: left;
    width: auto;
    width: 80%;
    max-width: 80%;
}
.widget-messages .message-text {
    font-size: 14px;
    line-height: 20px;
    padding-right: 50px;
    text-align: left;
    color: #6c757d;
}
.widget-messages .messager-img,
.widget-messages .message {
    position: relative;
    display: inline-block;
    float: left;
}
.widget-messages .message-box {
    padding-right: 15px;
}
.widget-messages .message-box:hover {
    cursor: pointer;
}
.widget-messages .message-box:hover .messager-img {
    margin-left: -15px;
    padding-left: 15px;
    border-left: 3px solid #337ab7;
}
.widget-messages .online {
    margin-left: 5px;
    color: #8ad88a;
}
.widget-messages .offline {
    margin-left: 5px;
    color: #de7470;
}
.widget-messages .date {
    font-weight: 500;
    color: #ccc;
}

@media (max-width: 640px) {
}

/* Add your customizations of layout here */

.p-datatable .p-datatable-header,
.p-treetable .p-treetable-header {
    border: 1px solid var(--surface-border-color);
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}

.p-datatable .p-datatable-table,
.p-treetable .p-treetable-wrapper table {
    border: 1px solid var(--surface-border-color);
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}