/*Badge*/
/* RouteBar */
/* Add your variable customizations of layout here */
.splash-screen {
    min-height: 100%;
}
.splash-screen:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #122e51;
}
.splash-screen .splash-screen-bars {
    width: 135px;
    height: 140px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -60px;
    margin-left: -40px;
    background: url("../../../assets/layout/images/bars.svg");
}

/* source-sans-pro-300 - latin-ext_latin */
@font-face {
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: 300;
    src: url("../fonts/source-sans-pro-v11-latin-ext_latin-300.eot");
    /* IE9 Compat Modes */
    src: local("Source Sans Pro Light"), local("SourceSansPro-Light"),
        url("../fonts/source-sans-pro-v11-latin-ext_latin-300.eot#iefix")
            format("embedded-opentype"),
        url("../fonts/source-sans-pro-v11-latin-ext_latin-300.woff2")
            format("woff2"),
        url("../fonts/source-sans-pro-v11-latin-ext_latin-300.woff")
            format("woff"),
        url("../fonts/source-sans-pro-v11-latin-ext_latin-300.ttf")
            format("truetype"),
        url("../fonts/source-sans-pro-v11-latin-ext_latin-300.svg#SourceSansPro")
            format("svg");
    /* Legacy iOS */
}
/* source-sans-pro-regular - latin-ext_latin */
@font-face {
    font-family: "Source Sans Pro";
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/source-sans-pro-v11-latin-ext_latin-regular.eot");
    /* IE9 Compat Modes */
    src: local("Source Sans Pro Regular"), local("SourceSansPro-Regular"),
        url("../fonts/source-sans-pro-v11-latin-ext_latin-regular.eot#iefix")
            format("embedded-opentype"),
        url("../../../assets/layout/fonts/source-sans-pro-v11-latin-ext_latin-regular.woff2")
            format("woff2"),
        url("../../../assets/layout/fonts/source-sans-pro-v11-latin-ext_latin-regular.woff")
            format("woff"),
        url("../../../assets/layout/fonts/source-sans-pro-v11-latin-ext_latin-regular.ttf")
            format("truetype"),
        url("../fonts/source-sans-pro-v11-latin-ext_latin-regular.svg#SourceSansPro")
            format("svg");
    /* Legacy iOS */
}
/* source-sans-pro-italic - latin-ext_latin */
@font-face {
    font-family: "Source Sans Pro";
    font-style: italic;
    font-weight: 400;
    src: url("../fonts/source-sans-pro-v11-latin-ext_latin-italic.eot");
    /* IE9 Compat Modes */
    src: local("Source Sans Pro Italic"), local("SourceSansPro-Italic"),
        url("../fonts/source-sans-pro-v11-latin-ext_latin-italic.eot#iefix")
            format("embedded-opentype"),
        url("../fonts/source-sans-pro-v11-latin-ext_latin-italic.woff2")
            format("woff2"),
        url("../fonts/source-sans-pro-v11-latin-ext_latin-italic.woff")
            format("woff"),
        url("../fonts/source-sans-pro-v11-latin-ext_latin-italic.ttf")
            format("truetype"),
        url("../fonts/source-sans-pro-v11-latin-ext_latin-italic.svg#SourceSansPro")
            format("svg");
    /* Legacy iOS */
}
/* source-sans-pro-700 - latin-ext_latin */
@font-face {
    font-family: "Source Sans Pro";
    font-style: bold;
    font-weight: 700;
    src: url("../fonts/source-sans-pro-v11-latin-ext_latin-700.eot");
    /* IE9 Compat Modes */
    src: local("Source Sans Pro Bold"), local("SourceSansPro-Bold"),
        url("../fonts/source-sans-pro-v11-latin-ext_latin-700.eot#iefix")
            format("embedded-opentype"),
        url("../fonts/source-sans-pro-v11-latin-ext_latin-700.woff2")
            format("woff2"),
        url("../fonts/source-sans-pro-v11-latin-ext_latin-700.woff")
            format("woff"),
        url("../fonts/source-sans-pro-v11-latin-ext_latin-700.ttf")
            format("truetype"),
        url("../fonts/source-sans-pro-v11-latin-ext_latin-700.svg#SourceSansPro")
            format("svg");
    /* Legacy iOS */
}
/* Utils */
.clearfix:after {
    content: " ";
    display: block;
    clear: both;
}

.card {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    padding: 16px;
    box-sizing: border-box;
    margin-bottom: 16px;
}
.card:last-child {
    margin-bottom: 0;
}
.card .card-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.card .card-subtitle {
    color: #797979;
    font-weight: 600;
    margin: -1rem 0 1rem 0;
}

.p-toast.p-toast-top-right,
.p-toast.p-toast-top-left,
.p-toast.p-toast-top-center {
    top: 70px;
}

.fadeInDown {
    -webkit-animation: fadeInDown 0.2s;
    animation: fadeInDown 0.2s;
}

.fadeOutUp {
    -webkit-animation: fadeOutUp 0.2s;
    animation: fadeOutUp 0.2s;
}

@-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);
    }
}
/*Overview*/
/*Stats*/
/*Weekly Tasks*/
/*Resolution Center*/
/*Team*/
/*Chat*/
/*Daily Sales*/
/*Timeline*/
/* Profile */
.dashboard .overview-box {
    color: #ffffff;
    min-height: 120px;
    position: relative;
}
.dashboard .overview-box i {
    float: right;
    font-size: 21px;
    position: absolute;
    top: 10px;
    right: 10px;
}
.dashboard .overview-box img {
    position: absolute;
    right: 0;
    width: 90px;
    bottom: 0;
}
.dashboard .overview-box .overview-title {
    line-height: 20px;
    font-size: 16px;
    letter-spacing: 0.8px;
    text-align: left;
    margin-bottom: 5px;
}
.dashboard .overview-box .overview-numbers {
    line-height: 31px;
    font-size: 24px;
    text-align: left;
    margin-bottom: 8px;
}
.dashboard .overview-box .overview-ratios {
    line-height: 18px;
    font-size: 14px;
    text-align: left;
    opacity: 0.95;
}
.dashboard .overview-box.monthly-sales {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    padding: 10px 10px 10px 20px;
    background: #ff7295;
    /* Old browsers */
    background: -moz-linear-gradient(240deg, #ff7295 0%, #fe875d 100%);
    background: -webkit-linear-gradient(240deg, #ff7295 0%, #fe875d 100%);
    background: linear-gradient(240deg, #ff7295 0%, #fe875d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ff7295", endColorstr="#fe875d",GradientType=1 );
}
.dashboard .overview-box.monthly-views {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    padding: 10px 10px 10px 20px;
    background: #00aadf;
    /* Old browsers */
    background: -moz-linear-gradient(240deg, #00aadf 0%, #0071bc 100%);
    background: -webkit-linear-gradient(240deg, #00aadf 0%, #0071bc 100%);
    background: linear-gradient(240deg, #00aadf 0%, #0071bc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00aadf", endColorstr="#0071bc",GradientType=1 );
}
.dashboard .overview-box.monthly-users {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    padding: 10px 10px 10px 20px;
    background: #4b7ecf;
    /* Old browsers */
    background: -moz-linear-gradient(240deg, #4b7ecf 0%, #8e70ee 100%);
    background: -webkit-linear-gradient(240deg, #4b7ecf 0%, #8e70ee 100%);
    background: linear-gradient(240deg, #4b7ecf 0%, #8e70ee 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4b7ecf", endColorstr="#8e70ee",GradientType=1 );
}
.dashboard .stats {
    background-color: #ffffff;
    min-height: 120px;
    position: relative;
    margin-top: 29px;
    border-top: 7px solid #4b6cb7;
    border-bottom: solid 1px #d6d7d9;
    border-right: solid 1px #d6d7d9;
    border-left: solid 1px #d6d7d9;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.dashboard .stats .stats-icon {
    display: inline-block;
    position: relative;
    top: -7px;
    background: #ffffff;
    padding: 0 5px;
    height: 7px;
}
.dashboard .stats .stats-icon img {
    position: relative;
    top: -10px;
    margin-bottom: -10px;
}
.dashboard .stats .message-icon {
    height: 34px;
    width: 44px;
}
.dashboard .stats .doc-icon {
    height: 34px;
    width: 25px;
}
.dashboard .stats .mark-icon {
    height: 34px;
    width: 25px;
}
.dashboard .stats img.profile-icon {
    /*top: -15px;
      margin-bottom: -5px;*/
    height: 34px;
    width: 34px;
}
.dashboard .stats .stats-numbers {
    line-height: 25px;
    font-size: 20px;
    font-weight: bold;
}
.dashboard .stats .stats-title {
    line-height: 21px;
    font-size: 17px;
}
.dashboard .stats .stats-subtitle {
    line-height: 18px;
    font-size: 14px;
    color: #aeb0b5;
}
.dashboard .stats .stats-subtitle span {
    color: #00bfe7;
}
.dashboard .p-panel .p-panel-title {
    margin: 0;
}
.dashboard .p-panel .p-panel-content {
    padding: 17px;
}
.dashboard .weekly-tasks ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.dashboard .weekly-tasks ul li {
    padding: 8px 0;
}
.dashboard .weekly-tasks ul li:first-child {
    padding-top: 0;
}
.dashboard .weekly-tasks ul li:last-child {
    padding-bottom: 0;
}
.dashboard .weekly-tasks ul li .p-checkbox {
    vertical-align: middle;
    margin-right: 6px;
}
.dashboard .weekly-tasks ul li > span {
    vertical-align: middle;
}
.dashboard .weekly-tasks ul li .weekly-task-status {
    float: right;
}
.dashboard .weekly-tasks ul li .weekly-task-status i {
    font-size: 13px;
    color: #797979;
    margin-left: 6px;
    width: 16px;
}
.dashboard .weekly-tasks ul li .weekly-task-status .day {
    color: #303134;
    background-color: #e4e2e0;
    text-align: center;
    min-width: 60px;
    display: inline-block;
}
.dashboard .resolution-center {
    padding-bottom: 8px;
}
.dashboard .resolution-center .p-inputtext {
    display: block;
}
.dashboard .resolution-center .p-outputlabel {
    vertical-align: middle;
}
.dashboard .resolution-center .p-button {
    margin-top: 5px;
    display: block;
}
.dashboard .team .p-panel-content {
    padding: 0;
}
.dashboard .team ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.dashboard .team ul li {
    padding: 16px;
    border-left: 3px solid rgba(0, 0, 0, 0);
}
.dashboard .team ul li:after {
    content: "";
    display: table;
    clear: both;
}
.dashboard .team ul li:hover {
    background-color: #f2f3f3;
    border-color: #4b6cb7;
}
.dashboard .team ul li .team-box {
    display: inline-block;
    vertical-align: middle;
}
.dashboard .team ul li .team-member {
    text-align: left;
    display: block;
    font-weight: 600;
    color: #212121;
}
.dashboard .team ul li img {
    width: 35px;
    height: 35px;
    vertical-align: middle;
    display: inline-block;
    margin-right: 6px;
}
.dashboard .team ul li a {
    display: block;
    float: right;
    background-color: #0872b9;
    border-radius: 100%;
    height: 30px;
    width: 30px;
    line-height: 30px;
    margin-left: 6px;
    text-align: center;
    margin-top: 4px;
}
.dashboard .team ul li a i {
    line-height: inherit;
    font-size: 22px;
    color: #ffffff;
}
.dashboard .chart .p-panel-content {
    overflow: auto;
}
.dashboard .chat {
    margin-top: 20px;
}
.dashboard .chat .p-panel-content {
    padding: 0;
}
.dashboard .chat ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.dashboard .chat ul li {
    padding: 16px 0;
    font-size: 0;
}
.dashboard .chat ul li:after {
    content: "";
    display: table;
    clear: both;
}
.dashboard .chat ul li .message-meta {
    font-size: 14px;
    width: 160px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    padding: 8px;
    text-align: left;
}
.dashboard .chat ul li .message-meta img {
    width: 48px;
    height: 48px;
    display: block;
}
.dashboard .chat ul li .message-meta .name {
    font-weight: 600;
}
.dashboard .chat ul li .message-meta .time {
    color: #aeb0b5;
    display: block;
}
.dashboard .chat ul li .message {
    font-size: 14px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: calc(100% - 160px);
    padding: 12px;
    background-color: #f4f4f4;
    display: inline-block;
    vertical-align: top;
}
.dashboard .chat ul li.message-from .message-meta {
    border-left: 4px solid #4aa564;
}
.dashboard .chat ul li.message-from .message-meta img {
    float: left;
    margin-right: 8px;
}
.dashboard .chat ul li.message-own .message-meta {
    border-right: 4px solid #e31c3d;
}
.dashboard .chat ul li.message-own .message-meta img {
    float: right;
    margin-left: 8px;
}
.dashboard .chat .write-message {
    border-top: 1px solid #d6d7d9;
    margin-top: 10px;
    position: relative;
}
.dashboard .chat .write-message i {
    font-size: 24px;
    color: #d6d7d9;
    position: absolute;
    left: 8px;
    top: 50%;
    margin-top: -14px;
}
.dashboard .chat .write-message input {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 0 none;
    width: 100%;
    height: 40px;
    font-size: 14px;
    padding-left: 36px;
}
.dashboard .chat .write-message input:focus {
    outline: 0 none;
}
.dashboard .daily-sales {
    margin-top: 20px;
}
.dashboard .daily-sales table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}
.dashboard .daily-sales thead {
    text-align: right;
    background-color: #ffffff;
}
.dashboard .daily-sales thead th {
    padding: 8px 16px;
}
.dashboard .daily-sales tbody tr:nth-child(even) {
    background: #ffffff;
}
.dashboard .daily-sales tbody tr:nth-child(odd) {
    background: #f1f1f1;
}
.dashboard .daily-sales tbody td {
    border-color: transparent;
    padding: 8px 16px;
}
.dashboard .daily-sales tr th {
    font-weight: 600;
    color: #424242;
}
.dashboard .daily-sales td {
    color: #212121;
    text-align: right;
}
.dashboard .daily-sales td:first-child {
    text-align: left;
}
.dashboard .daily-sales td:last-child button:first-child {
    margin-right: 4px;
}
.dashboard .daily-sales td img {
    width: 26px;
    height: 26px;
    padding: 8px;
    vertical-align: middle;
}
.dashboard .daily-sales td .pi-angle-up {
    color: #4caf50;
    font-size: 22px;
    padding-left: 10px;
}
.dashboard .daily-sales td .pi-angle-down {
    color: #f44336;
    font-size: 22px;
    padding-left: 10px;
}
.dashboard .schedule {
    margin-top: 20px;
}
.dashboard .timeline.p-panel .p-panel-content {
    position: relative;
}
.dashboard .timeline.p-panel .p-panel-content .timeline-line {
    position: absolute;
    left: 50%;
    width: 1px;
    height: 100%;
    margin-left: -1px;
    background: #dddddd;
    top: 0;
}
.dashboard .timeline ul {
    list-style-type: none;
    padding: 0;
    position: relative;
}
.dashboard .timeline ul li {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}
.dashboard .timeline ul li .timeline-message {
    width: 45%;
    overflow: hidden;
    position: relative;
}
.dashboard .timeline ul li .timeline-message img {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 0;
}
.dashboard .timeline ul li .timeline-message span {
    position: relative;
    z-index: 10;
    display: block;
    padding: 15px;
}
.dashboard .timeline ul li .timeline-message span.love {
    color: #cd2026;
    background-color: #f8dede;
    font-weight: 600;
    text-align: right;
}
.dashboard .timeline ul li .timeline-message span.checked {
    font-weight: 600;
    color: #00a6d2;
    background-color: #e1f3f8;
}
.dashboard .timeline ul li .timeline-message span.event {
    color: #f39f19;
    font-weight: 600;
    background-color: #fff1d2;
}
.dashboard .timeline ul li .timeline-icon {
    z-index: 100;
    line-height: 30px;
}
.dashboard .timeline ul li .timeline-icon img {
    width: 30px;
    height: 30px;
}
.dashboard .timeline ul li .timeline-icon span {
    font-weight: 600;
    color: #5b616b;
}
.dashboard .timeline ul li.odd .timeline-icon {
    position: absolute;
    left: 50%;
    margin-left: -16px;
}
.dashboard .timeline ul li.odd .timeline-icon span {
    float: right;
}
.dashboard .timeline ul li.odd .timeline-icon img {
    float: left;
    margin-right: 15px;
}
.dashboard .timeline ul li.odd .timeline-message {
    float: left;
}
.dashboard .timeline ul li.odd .timeline-message span {
    padding: 15px;
    text-align: right;
}
.dashboard .timeline ul li.even .timeline-icon {
    position: absolute;
    right: 50%;
    margin-right: -16px;
    text-align: right;
}
.dashboard .timeline ul li.even .timeline-icon span {
    float: left;
}
.dashboard .timeline ul li.even .timeline-icon img {
    float: right;
    margin-left: 15px;
}
.dashboard .timeline ul li.even .timeline-message {
    float: right;
}
.dashboard .timeline ul li.even .timeline-message span {
    padding: 15px;
}
.dashboard .inventory-list .p-panel-content {
    padding: 0;
}
.dashboard .profile-details .p-panel-content {
    padding: 0;
    text-align: center;
}
.dashboard .profile-details img {
    width: 100%;
}
.dashboard .profile-details .profile-avatar {
    width: 120px;
    height: 120px;
    top: -60px;
    position: relative;
}
.dashboard .profile-details .profile-name {
    font-weight: 600;
    color: #212121;
    text-align: center;
    display: block;
    margin-top: -75px;
}
.dashboard .profile-details .profile-role {
    color: #212121;
    text-align: center;
    display: block;
}
.dashboard .profile-details .p-button {
    margin-top: 16px;
}
.dashboard .profile-details .profile-statistics-panel {
    text-align: center;
    display: inline-block;
    position: relative;
}
.dashboard .profile-details .profile-statistics-panel .profile-statistics {
    font-weight: 600;
    font-size: 16px;
    display: block;
}
.dashboard .profile-details .profile-statistics-panel .statistics-title {
    border-bottom: 4px solid transparent;
    padding-bottom: 10px;
}
.dashboard .product-badge {
    border-radius: 2px;
    padding: 0.25em 0.5rem;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.3px;
}
.dashboard .product-badge.status-instock {
    background: #c8e6c9;
    color: #256029;
}
.dashboard .product-badge.status-outofstock {
    background: #ffcdd2;
    color: #c63737;
}
.dashboard .product-badge.status-lowstock {
    background: #feedaf;
    color: #8a5340;
}
.exception-body .exception-topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 60px;
    background: #4b6cb7;
    /* Old browsers */
    background: -moz-linear-gradient(-206deg, #4b6cb7 5%, #182848 100%);
    background: -webkit-linear-gradient(-206deg, #4b6cb7 5%, #182848 100%);
    background: linear-gradient(-206deg, #4b6cb7 5%, #182848 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4b6cb7", endColorstr="#182848",GradientType=1 );
}
.exception-body .exception-topbar .logo {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 230px;
    padding: 10px 100px;
    display: inline-block;
    text-align: center;
}
.exception-body .exception-topbar .logo img {
    height: 40px;
}
.exception-body .exception-image {
    position: absolute;
    top: 60px;
    width: 100%;
}
.exception-body .exception-panel {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 24% 0 0 100px;
    width: 500px;
}
.exception-body .exception-panel .exception-icon {
    max-width: 75px;
    max-height: 75px;
}

@media screen and (max-width: 640px) {
    .exception-body .exception-panel {
        padding: 200px 25px 0 25px;
        width: 100%;
        text-align: center;
    }
}

html {
    height: 100%;
    font-size: 14px;
}

body {
    font-family: mreavesxl, Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: #212121;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding: 0;
    margin: 0;
    min-height: 100%;
    background-color: #f2f5fa;
}
body a {
    text-decoration: none;
    color: #4b6cb7;
}

.layout-wrapper .layout-topbar {
    /* position: fixed;
    top: 0;
    left: 0; */
    width: 100%;
    z-index: 998;
    height: 60px;
    background: #ffffff;
    border-bottom: 2px solid #dee2e6;
    /* Old browsers */
    /* background: -moz-linear-gradient(-206deg, #4b6cb7 5%, #182848 100%);
    background: -webkit-linear-gradient(-206deg, #4b6cb7 5%, #182848 100%);
    background: linear-gradient(-206deg, #4b6cb7 5%, #182848 100%); */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4b6cb7", endColorstr="#182848",GradientType=1 );
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -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-topbar .logo {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 170px;
    padding: 10px 0;
    text-align: center;
}
.layout-wrapper .layout-topbar .logo img {
    height: 40px;
}
.layout-wrapper .layout-topbar .usermenu a {
    position: relative;
}
.layout-wrapper .layout-topbar .usermenu a .layout-menuitem-toggler {
    position: absolute;
    right: 12px;
    top: 11px;
}
.layout-wrapper .layout-topbar .usermenu > li.menuitem-active > a i {
    color: #ffffff;
}
.layout-wrapper .layout-topbar .usermenu > li.menuitem-active > a span {
    color: #ffffff;
}
.layout-wrapper .layout-topbar #menu-button {
    position: absolute;
    left: 0px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 30px;
    color: #ffffff;
    text-align: center;
    -moz-transition: background-color 0.2s;
    -o-transition: background-color 0.2s;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
}
.layout-wrapper .layout-topbar #menu-button:hover {
    background-color: #23252a;
}
.layout-wrapper .layout-topbar #menu-button i {
    line-height: inherit;
    font-size: 28px;
}
.layout-wrapper .layout-topbar #right-sidebar-button {
    display: inline-block;
    position: absolute;
    right: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 30px;
    color: #ffffff;
    text-align: center;
    -moz-transition: background-color 0.2s;
    -o-transition: background-color 0.2s;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
}
.layout-wrapper .layout-topbar #right-sidebar-button:hover {
    background-color: #dee2e6;
}
.layout-wrapper .layout-topbar #right-sidebar-button i {
    line-height: inherit;
    font-size: 28px;
}
.layout-wrapper .layout-topbar #topbar-menu-button {
    display: block;
    position: absolute;
    right: 80px;
    top: 10px;
    height: 40px;
    color: #ffffff;
}
.layout-wrapper .layout-topbar #topbar-menu-button img {
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 40px;
}
.layout-wrapper .layout-topbar #topbar-menu-button span {
    display: inline-block;
    vertical-align: middle;
}
.layout-wrapper .layout-topbar #topbar-menu-button span:hover {
    text-decoration: underline;
}
@media screen and (max-width: 1024px) {
    .layout-wrapper .layout-topbar .logo {
        margin-left: 60px;
    }
    .layout-wrapper .layout-topbar #menu-button {
        left: 0;
    }
    .layout-wrapper .layout-topbar #topbar-menu-button {
        right: 65px;
    }
    .layout-wrapper .layout-topbar #topbar-menu-button span {
        display: none;
    }
    .layout-wrapper .layout-topbar #right-sidebar-button {
        right: 0;
    }
}
@media screen and (max-width: 512px) {
    .layout-wrapper .layout-topbar #right-sidebar-button {
        width: 48px;
    }
    .layout-wrapper .layout-topbar #topbar-menu-button {
        right: 48px;
    }
}

.layout-wrapper #layout-megamenu-button {
    position: absolute;
    left: 230px;
    height: 60px;
    width: 140px;
    color: #ffffff;
    text-align: center;
    line-height: 60px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    -moz-transition: background-color 0.2s;
    -o-transition: background-color 0.2s;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
}
.layout-wrapper #layout-megamenu-button:hover {
    background-color: #23252a;
}
.layout-wrapper #layout-megamenu-button i {
    width: 15px;
    height: 15px;
    font-size: 1em;
    text-align: center;
    margin-right: 2px;
    vertical-align: middle;
}
.layout-wrapper .layout-megamenu {
    z-index: 998;
    position: fixed;
    left: 230px;
    top: 60px;
    background-color: #ffffff;
    max-width: 700px;
    list-style-type: none;
    border: solid 1px #d6d7d9;
    padding: 16px;
    padding-bottom: 20px;
    display: none;
    text-align: left;
    text-transform: none;
    letter-spacing: 0;
    font-weight: normal;
}
.layout-wrapper .layout-megamenu .layout-megamenu-submenu {
    padding: 0;
    overflow: hidden;
}
.layout-wrapper .layout-megamenu .layout-megamenu-submenu .content-img {
    padding: 16px;
    position: relative;
    box-sizing: border-box;
}
.layout-wrapper .layout-megamenu .layout-megamenu-submenu .content-img img {
    width: 135px;
}
.layout-wrapper
    .layout-megamenu
    .layout-megamenu-submenu
    .content-img
    .img-header {
    position: absolute;
    top: 20px;
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    line-height: 14px;
    text-shadow: 0px 0px 2px #000000;
}
.layout-wrapper
    .layout-megamenu
    .layout-megamenu-submenu
    .content-img
    .img-subheader {
    color: #ffffff;
    font-size: 12px;
    font-weight: 400;
    line-height: 14px;
    position: absolute;
    top: 40px;
    text-shadow: 0px 0px 2px #000000;
}
.layout-wrapper
    .layout-megamenu
    .layout-megamenu-submenu
    .content-img
    .p-button {
    margin-top: 10px;
    border-radius: 3px;
}
.layout-wrapper
    .layout-megamenu
    .layout-megamenu-submenu
    .content-img
    .p-button
    .p-button-text {
    padding: 4px 16px;
}
.layout-wrapper .layout-megamenu .layout-megamenu-submenu h6 {
    color: #272724;
    font-weight: 700;
    line-height: 20px;
    text-align: left;
    margin: 0 0 5px 14px;
}
.layout-wrapper .layout-megamenu .layout-megamenu-submenu ul {
    padding: 0;
    list-style-type: none;
}
.layout-wrapper .layout-megamenu .layout-megamenu-submenu ul li {
    line-height: 35px;
    border-left: 4px solid transparent;
}
.layout-wrapper .layout-megamenu .layout-megamenu-submenu ul li i {
    color: #5b616a;
    font-size: inherit;
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    margin-left: 10px;
}
.layout-wrapper .layout-megamenu .layout-megamenu-submenu ul li span {
    color: #5b616a;
    display: inline-block;
    vertical-align: middle;
}
.layout-wrapper .layout-megamenu .layout-megamenu-submenu ul li:hover {
    background-color: #f1f1f1;
}
.layout-wrapper .layout-megamenu .layout-megamenu-submenu ul li:active {
    border-left: 4px solid #5b6d99;
    color: #5b6d99;
}
.layout-wrapper .layout-megamenu .layout-megamenu-submenu ul li:active span {
    color: #5b6d99;
}
.layout-wrapper .layout-megamenu .layout-megamenu-submenu ul li:active i {
    color: #5b6d99;
}
.layout-wrapper .layout-megamenu.layout-megamenu-dark {
    background-color: #23252a;
    border: none;
}
.layout-wrapper .layout-megamenu.layout-megamenu-dark h6 {
    color: #ffffff;
}
.layout-wrapper .layout-megamenu.layout-megamenu-dark ul li i {
    color: #ffffff;
}
.layout-wrapper .layout-megamenu.layout-megamenu-dark ul li span {
    color: #ffffff;
}
.layout-wrapper .layout-megamenu.layout-megamenu-dark ul li:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.layout-wrapper .layout-megamenu.layout-megamenu-dark ul li:active {
    border-left: 4px solid #7c91c4;
    color: #7c91c4;
}
.layout-wrapper .layout-megamenu.layout-megamenu-dark ul li:active span {
    color: #7c91c4;
}
.layout-wrapper .layout-megamenu.layout-megamenu-dark ul li:active i {
    color: #7c91c4;
}
.layout-wrapper .layout-megamenu.layout-megamenu-gradient {
    background-image: linear-gradient(to top, #36466c, #23252a);
    border: none;
}
.layout-wrapper .layout-megamenu.layout-megamenu-active {
    display: block;
}

@media screen and (max-width: 1024px) {
    .layout-wrapper #layout-megamenu-button {
        left: 0;
        margin-top: 60px;
        width: 100%;
        text-align: center;
        height: 45px;
        line-height: 45px;
        letter-spacing: 2px;
        text-transform: uppercase;
        background-color: #3f4c6b;
        font-weight: 600;
    }
    .layout-wrapper #layout-megamenu-button:hover {
        background-color: #323f5b;
    }
    .layout-wrapper .layout-megamenu {
        top: 105px;
        left: 0;
        width: 100%;
        max-width: 100%;
        height: calc(100% - 105px);
        overflow: auto;
    }

    body.body-megamenu-active {
        overflow: hidden;
    }
}
.layout-wrapper .layout-sidebar {
    width: 230px;
    background-color: #142b50;
    /* border-right: solid 1px #d6d7d9; */
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    height: 100%;
    overflow: auto;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: left 0.2s;
    -o-transition: left 0.2s;
    -webkit-transition: left 0.2s;
    transition: left 0.2s;
}
.layout-wrapper .layout-sidebar .user-profile {
    text-align: center;
    color: #212121;
}
.layout-wrapper .layout-sidebar .user-profile #sidebar-profile-button {
    padding: 12px 0;
}
.layout-wrapper .layout-sidebar .user-profile #sidebar-profile-button img {
    display: block;
    margin-left: 70px;
}
.layout-wrapper .layout-sidebar .user-profile a {
    color: #212121;
    display: block;
    position: relative;
}
.layout-wrapper .layout-sidebar .user-profile a .sidebar-profile-name {
    display: inline-block;
    font-weight: 700;
}
.layout-wrapper .layout-sidebar .user-profile a .sidebar-profile-role {
    display: block;
    color: #393939;
}
.layout-wrapper .layout-sidebar .user-profile a:hover {
    background-color: #f1f1f1;
}
.layout-wrapper .layout-sidebar .user-profile a .layout-menuitem-toggler {
    position: absolute;
    right: 12px;
    top: 11px;
}
.layout-wrapper .layout-sidebar .layout-menu {
    list-style-type: none;
    padding: 0;
    padding-bottom: 150px;
    margin: 0;
}
.layout-wrapper .layout-sidebar .layout-menu li > a {
    display: block;
    padding: 8px 12px;
    color: #212121;
    position: relative;
    cursor: pointer;
    user-select: none;
    margin: 5px 8px;
    border-radius: 5px;
}
.layout-wrapper .layout-sidebar .layout-menu li > a .menuitem-badge {
    margin-right: 25px;
    float: right;
    color: #ffffff;
    background-color: #4aa564;
    width: 20px;
    height: 20px;
    text-align: center;
    margin-left: 0;
    border-radius: 50px;
}
.layout-wrapper .layout-sidebar .layout-menu li > a .menuitem-badge.text-badge {
    width: 40px;
    margin-right: 22px;
}
.layout-wrapper .layout-sidebar .layout-menu li > a i {
    color: #ffffff;
    vertical-align: middle;
}
.layout-wrapper .layout-sidebar .layout-menu li > a i.layout-menuitem-toggler {
    position: absolute;
    right: 12px;
    top: 11px;
    -moz-transition: transform 0.2s;
    -o-transition: transform 0.2s;
    -webkit-transition: transform 0.2s;
    transition: transform 0.2s;
}
.layout-wrapper
    .layout-sidebar
    .layout-menu
    li
    > a.rotated-icon
    .layout-menuitem-icon {
    transform: rotate(90deg);
}
.layout-wrapper .layout-sidebar .layout-menu li > a span {
    margin-left: 12px;
    vertical-align: middle;
}
.layout-wrapper .layout-sidebar .layout-menu li > a:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}
.layout-wrapper .layout-sidebar .layout-menu li > ul {
    list-style-type: none;
    padding: 0 0 0 0;
    margin: 0;
    overflow: hidden;
}
.layout-wrapper .layout-sidebar .layout-menu li > ul li > a {
    padding: 8px 24px;
    /* border-bottom: 1px solid #e4e2e0; */
}
.layout-wrapper .layout-sidebar .layout-menu li > ul li ul li > a {
    padding: 8px 36px;
}
.layout-wrapper .layout-sidebar .layout-menu li > ul li ul li ul li > a {
    padding: 8px 48px;
}
.layout-wrapper .layout-sidebar .layout-menu li > ul li ul li ul li ul li > a {
    padding: 8px 60px;
}
.layout-wrapper
    .layout-sidebar
    .layout-menu
    li
    > ul
    li
    ul
    li
    ul
    li
    ul
    li
    ul
    li
    > a {
    padding: 8px 72px;
}
.layout-wrapper
    .layout-sidebar
    .layout-menu
    li
    > ul
    li
    ul
    li
    ul
    li
    ul
    li
    ul
    li
    ul
    li
    > a {
    padding: 8px 84px;
}
.layout-wrapper
    .layout-sidebar
    .layout-menu
    li
    > ul
    li
    ul
    li
    ul
    li
    ul
    li
    ul
    li
    ul
    li
    ul
    li
    > a {
    padding: 8px 96px;
}
.layout-wrapper .layout-sidebar .layout-menu li.active-menuitem > a {
    border-left: 4px solid #ffffff;
    padding-left: 20px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1) !important;
}
.layout-wrapper .layout-sidebar .layout-menu li.active-menuitem > a i {
    color: #ffffff;
}
.layout-wrapper
    .layout-sidebar
    .layout-menu
    li.active-menuitem
    > a
    i.layout-menuitem-toggler {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
/* .layout-wrapper .layout-sidebar .layout-menu > li > a {
    border-bottom: 1px solid #e4e2e0;
} */
.layout-wrapper
    .layout-sidebar
    .layout-menu
    li.active-menuitem
    > a.expandable-menu {
    background-color: transparent !important;
    color: #ffffff !important;
    border-left: none;
    padding-left: 12px;
}
.layout-wrapper
    .layout-sidebar
    .layout-menu
    li.active-menuitem
    > a.expandable-menu:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
}
.layout-wrapper .layout-sidebar .layout-menu > li.active-menuitem > a i {
    color: #ffffff;
}
.layout-wrapper .layout-sidebar .layout-menu > li.active-menuitem > ul {
    /* border-bottom: 1px solid #e4e2e0; */
}
.layout-wrapper .layout-sidebar .layout-menu > li:first-child > a {
    /* border-top: 1px solid #e4e2e0 !important; */
}
.layout-wrapper
    .layout-sidebar
    .layout-menu
    > li.ui-menuitem-submenu.active-menuitem
    > a {
    border-bottom-color: transparent;
}
.layout-wrapper .layout-sidebar.layout-sidebar-dark {
    background-color: #23252a;
    border-right-color: #23252a;
}
.layout-wrapper .layout-sidebar.layout-sidebar-dark .user-profile {
    color: #ffffff;
}
.layout-wrapper .layout-sidebar.layout-sidebar-dark .user-profile a {
    color: #ffffff;
}
.layout-wrapper .layout-sidebar.layout-sidebar-dark .user-profile a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.layout-wrapper
    .layout-sidebar.layout-sidebar-dark
    .user-profile
    a
    .sidebar-profile-role {
    color: #ffffff;
}
.layout-wrapper
    .layout-sidebar.layout-sidebar-dark
    .user-profile
    li.menuitem-active
    > a {
    color: #6c8cd5;
}
.layout-wrapper
    .layout-sidebar.layout-sidebar-dark
    .user-profile
    li.menuitem-active
    > a
    i {
    color: #6c8cd5;
}
.layout-wrapper .layout-sidebar.layout-sidebar-dark .layout-menu li > a {
    color: #ffffff;
}
.layout-wrapper .layout-sidebar.layout-sidebar-dark .layout-menu li > a i {
    color: #ffffff;
}
.layout-wrapper .layout-sidebar.layout-sidebar-dark .layout-menu li > a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.layout-wrapper
    .layout-sidebar.layout-sidebar-dark
    .layout-menu
    li.active-menuitem
    > a {
    color: #6c8cd5;
}
.layout-wrapper
    .layout-sidebar.layout-sidebar-dark
    .layout-menu
    li.active-menuitem
    > a
    i {
    color: #6c8cd5;
}
.layout-wrapper .layout-sidebar.layout-sidebar-dark .layout-menu > li > a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}
.layout-wrapper
    .layout-sidebar.layout-sidebar-dark
    .layout-menu
    > li
    > ul
    li
    > a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}
.layout-wrapper
    .layout-sidebar.layout-sidebar-dark
    .layout-menu
    > li.active-menuitem
    > a {
    border-left: 4px solid #6c8cd5;
    padding-left: 8px;
    color: #6c8cd5;
}
.layout-wrapper
    .layout-sidebar.layout-sidebar-dark
    .layout-menu
    > li.active-menuitem
    > a
    i {
    color: #6c8cd5;
}
.layout-wrapper
    .layout-sidebar.layout-sidebar-dark
    .layout-menu
    > li.active-menuitem
    > ul {
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}
.layout-wrapper
    .layout-sidebar.layout-sidebar-dark
    .layout-menu
    > li:first-child
    > a {
    border-top: 1px solid rgba(255, 255, 255, 0.075);
}
.layout-wrapper .layout-sidebar.layout-sidebar-gradient {
    border-right-color: transparent;
    background-color: #23252a;
    background-image: -webkit-gradient(
        linear,
        left top,
        left bottom,
        from(#23252a),
        to(#36466c)
    );
    background-image: -webkit-linear-gradient(to bottom, #23252a, #36466c);
    background-image: -moz-linear-gradient(to bottom, #23252a, #36466c);
    background-image: -ms-linear-gradient(to bottom, #23252a, #36466c);
    background-image: -o-linear-gradient(to bottom, #23252a, #36466c);
    background-image: linear-gradient(to bottom, #23252a, #36466c);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#23252A", endColorStr="#36466C");
    border-right-color: #23252a;
}
.layout-wrapper .layout-sidebar.layout-sidebar-gradient .layout-menu li > a {
    color: #ffffff;
}
.layout-wrapper .layout-sidebar.layout-sidebar-gradient .layout-menu li > a i {
    color: #ffffff;
}
.layout-wrapper
    .layout-sidebar.layout-sidebar-gradient
    .layout-menu
    li
    > a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.layout-wrapper
    .layout-sidebar.layout-sidebar-gradient
    .layout-menu
    li.active-menuitem
    > a {
    color: #6c8cd5;
}
.layout-wrapper
    .layout-sidebar.layout-sidebar-gradient
    .layout-menu
    li.active-menuitem
    > a
    i {
    color: #6c8cd5;
}
.layout-wrapper .layout-sidebar.layout-sidebar-gradient .layout-menu > li > a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}
.layout-wrapper
    .layout-sidebar.layout-sidebar-gradient
    .layout-menu
    > li.active-menuitem
    > a {
    border-left: 4px solid #6c8cd5;
    padding-left: 8px;
    color: #6c8cd5;
}
.layout-wrapper
    .layout-sidebar.layout-sidebar-gradient
    .layout-menu
    > li.active-menuitem
    > a
    i {
    color: #6c8cd5;
}
.layout-wrapper
    .layout-sidebar.layout-sidebar-gradient
    .layout-menu
    > li.active-menuitem
    > ul {
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}
.layout-wrapper
    .layout-sidebar.layout-sidebar-gradient
    .layout-menu
    > li:first-child
    > a {
    border-top: 1px solid rgba(255, 255, 255, 0.075);
}
.layout-wrapper.layout-wrapper-sidebar-inactive .layout-sidebar {
    left: -230px;
}
.layout-wrapper.layout-wrapper-overlay-sidebar .layout-sidebar {
    left: -230px;
}
.layout-wrapper.layout-wrapper-overlay-sidebar.layout-wrapper-overlay-sidebar-active
    .layout-sidebar {
    left: 0;
}

@media screen and (min-width: 1025px) {
    .layout-wrapper.layout-wrapper-slim-sidebar .layout-topbar .logo {
        margin-left: 30px;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar .layout-sidebar {
        width: 50px;
        overflow: visible;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .user-profile
        #sidebar-profile-button {
        text-align: center;
        padding: 11px 4px 11px 3px;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .user-profile
        #sidebar-profile-button
        img {
        width: 30px;
        margin: auto;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .user-profile
        #sidebar-profile-button
        .sidebar-profile-name {
        display: none;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .user-profile
        #sidebar-profile-button
        .sidebar-profile-role {
        display: none;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .user-profile
        .usermenu {
        background-color: #ffffff;
        border: 1px solid #d6d7d9;
        color: #212121;
        position: absolute;
        overflow: auto;
        top: 0;
        left: 54px;
        min-width: 250px;
        max-height: 450px;
        display: none;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        border-radius: 0;
        box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
        -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
        -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .user-profile
        .usermenu
        li {
        border-left: 0 none;
        border-right: 0 none;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .user-profile
        .usermenu
        li:first-child {
        margin: 0;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .user-profile
        .usermenu
        li:last-child {
        margin: 0;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .user-profile
        .usermenu
        li
        a {
        color: #212121;
        -moz-transition: background-color 0.2s;
        -o-transition: background-color 0.2s;
        -webkit-transition: background-color 0.2s;
        transition: background-color 0.2s;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .user-profile
        .usermenu
        li
        a
        i {
        color: #5b616a;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .user-profile
        .usermenu
        li.menuitem-active
        > a {
        color: #212121;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .user-profile
        .usermenu
        li.menuitem-active
        > a
        span {
        color: #5b616a;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .user-profile
        .usermenu
        li.menuitem-active
        > a
        i {
        color: #5b616a;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .user-profile
        .usermenu.usermenu-active {
        display: block;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .layout-menu
        > li {
        position: relative;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .layout-menu
        > li
        > a {
        border-left: 4px solid transparent;
        display: block;
        text-align: center;
        padding: 12px 14px 12px 9px;
        color: #212121;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .layout-menu
        > li
        > a
        i {
        color: #5b616a;
        font-size: 14px;
        margin-right: 0;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .layout-menu
        > li
        > a
        span {
        display: none;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .layout-menu
        > li
        > a
        span.menuitem-badge {
        display: block;
        position: absolute;
        top: 6px;
        right: -20px;
        font-size: 10px;
        width: 13px;
        height: 13px;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .layout-menu
        > li
        > a
        span.menuitem-badge.text-badge {
        display: none;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .layout-menu
        > li
        > a:hover
        + .layout-menu-tooltip {
        display: block;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .layout-menu
        > li
        > a
        .layout-menuitem-toggler {
        display: none;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .layout-menu
        > li
        > ul {
        background-color: #ffffff;
        border: 1px solid #d6d7d9;
        color: #212121;
        position: absolute;
        top: 0;
        left: 54px;
        min-width: 200px;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        border-radius: 0;
        box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.16);
        -webkit-box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.16);
        -moz-box-shadow: 0 0px 10px 0 rgba(0, 0, 0, 0.16);
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .layout-menu
        > li
        > ul
        li
        > a {
        padding: 12px;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .layout-menu
        > li.active-menuitem
        > a {
        border-left: 4px solid #4b6cb7;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .layout-menu
        > li.active-menuitem
        > a
        i {
        color: #4b6cb7;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .layout-menu
        > li.active-menuitem
        > a:hover
        + .layout-menu-tooltip {
        display: none;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .layout-menu
        .layout-menu-tooltip {
        display: none;
        padding: 0 5px;
        position: absolute;
        left: 50px;
        top: 9px;
        line-height: 1;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .layout-menu
        .layout-menu-tooltip
        .layout-menu-tooltip-text {
        padding: 6px 8px;
        font-size: 14px;
        background-color: #212121;
        color: #ffffff;
        min-width: 75px;
        white-space: nowrap;
        text-align: center;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .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: #212121;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-dark
        .user-profile
        .usermenu {
        background-color: #23252a;
        border: #23252a;
        color: #ffffff;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-dark
        .user-profile
        .usermenu
        > li
        a {
        color: #ffffff;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-dark
        .user-profile
        .usermenu
        > li
        a
        i {
        color: #ffffff;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-dark
        .user-profile
        .usermenu
        > li.menuitem-active
        > a {
        color: #ffffff;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-dark
        .user-profile
        .usermenu
        > li.menuitem-active
        > a
        span {
        color: #ffffff;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-dark
        .user-profile
        .usermenu
        > li.menuitem-active
        > a
        i {
        color: #ffffff;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-dark
        .layout-menu
        > li
        > a {
        color: #ffffff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-dark
        .layout-menu
        > li
        > a
        i {
        color: #ffffff;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-dark
        .layout-menu
        > li
        > a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-dark
        .layout-menu
        > li.active-menuitem
        > a {
        border-left: 4px solid #6c8cd5;
        color: #6c8cd5;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-dark
        .layout-menu
        > li.active-menuitem
        > a
        i {
        color: #6c8cd5;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-dark
        .layout-menu
        > li:first-child
        > a {
        border-top: 1px solid rgba(255, 255, 255, 0.075);
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-dark
        .layout-menu
        > li
        > ul {
        background-color: #23252a;
        border-color: #23252a;
        color: #ffffff;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-gradient
        .user-profile
        .usermenu {
        background-color: #23252a;
        background-image: -webkit-gradient(
            linear,
            left top,
            left bottom,
            from(#23252a),
            to(#36466c)
        );
        background-image: -webkit-linear-gradient(to bottom, #23252a, #36466c);
        background-image: -moz-linear-gradient(to bottom, #23252a, #36466c);
        background-image: -ms-linear-gradient(to bottom, #23252a, #36466c);
        background-image: -o-linear-gradient(to bottom, #23252a, #36466c);
        background-image: linear-gradient(to bottom, #23252a, #36466c);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#23252A", endColorStr="#36466C");
        border-color: #23252a;
        color: #ffffff;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-gradient
        .user-profile
        .usermenu
        li
        a {
        color: #ffffff;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-gradient
        .user-profile
        .usermenu
        li
        a
        i {
        color: #ffffff;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-gradient
        .user-profile
        .usermenu
        li.menuitem-active
        > a {
        color: #ffffff;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-gradient
        .user-profile
        .usermenu
        li.menuitem-active
        > a
        span {
        color: #ffffff;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-gradient
        .user-profile
        .usermenu
        li.menuitem-active
        > a
        i {
        color: #ffffff;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-gradient
        .layout-menu
        > li
        > a {
        color: #ffffff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-gradient
        .layout-menu
        > li
        > a
        i {
        color: #ffffff;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-gradient
        .layout-menu
        > li
        > a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-gradient
        .layout-menu
        > li.active-menuitem
        > a {
        border-left: 4px solid #6c8cd5;
        color: #6c8cd5;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-gradient
        .layout-menu
        > li.active-menuitem
        > a
        i {
        color: #6c8cd5;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-gradient
        .layout-menu
        > li:first-child
        > a {
        border-top: 1px solid rgba(255, 255, 255, 0.075);
    }
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar.layout-sidebar-gradient
        .layout-menu
        > li
        > ul {
        background-color: #23252a;
        background-image: -webkit-gradient(
            linear,
            left top,
            left bottom,
            from(#23252a),
            to(#36466c)
        );
        background-image: -webkit-linear-gradient(to bottom, #23252a, #36466c);
        background-image: -moz-linear-gradient(to bottom, #23252a, #36466c);
        background-image: -ms-linear-gradient(to bottom, #23252a, #36466c);
        background-image: -o-linear-gradient(to bottom, #23252a, #36466c);
        background-image: linear-gradient(to bottom, #23252a, #36466c);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#23252A", endColorStr="#36466C");
        border-color: #23252a;
        color: #ffffff;
    }
    .layout-wrapper.layout-wrapper-slim-sidebar .layout-main {
        margin-left: 50px;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-topbar {
        position: static;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-topbar .logo {
        margin-left: 30px;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-sidebar {
        width: 100%;
        min-height: 36px;
        position: static;
        padding: 0;
        overflow: visible;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar
        .layout-menu {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #e4e2e0;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar
        .layout-menu
        > li {
        display: inline-block;
        width: auto;
        padding: 0;
        position: relative;
        border-left: 0 none;
        border-right: 0 none;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar
        .layout-menu
        > li:first-child {
        border-left: 1px solid #e4e2e0;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar
        .layout-menu
        > li:first-child
        > a {
        border-top: 0 none;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar
        .layout-menu
        > li
        > a {
        padding: 9px 12px;
        border-bottom: 0 none;
        border-left: 4px solid transparent;
        border-right: 1px solid #e4e2e0;
        min-height: 38px;
        margin-bottom: -4px;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar
        .layout-menu
        > li
        > a
        i {
        color: #5b616a;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar
        .layout-menu
        > li
        > a
        span {
        margin: 0 8px;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar
        .layout-menu
        > li
        > a
        .menuitem-badge {
        float: none;
        display: inline-block;
        margin-right: 0;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar
        .layout-menu
        > li
        > a
        .layout-menuitem-toggler {
        position: static;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar
        .layout-menu
        > li
        > ul {
        background-color: #ffffff;
        border: 1px solid #d6d7d9;
        color: #212121;
        top: 38px;
        left: -1px;
        min-width: 200px;
        position: absolute;
        margin: 0;
        overflow: auto;
        max-height: 450px;
        z-index: 1;
        box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
        -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
        -moz-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
        border-radius: 0;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar
        .layout-menu
        > li
        > ul
        li
        > a {
        border-left: 4px solid transparent;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar
        .layout-menu
        > li.active-menuitem
        > a {
        border-left-color: transparent;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar
        .layout-menu
        > li.active-menuitem
        > a
        i {
        color: #4b6cb7;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar
        .layout-menu
        > li.active-menuitem
        > a:hover
        + .layout-menu-tooltip {
        display: none;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar.layout-sidebar-dark
        .layout-menu {
        border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar.layout-sidebar-dark
        .layout-menu
        > li:first-child {
        border-left: 1px solid rgba(255, 255, 255, 0.075);
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar.layout-sidebar-dark
        .layout-menu
        > li
        > a {
        padding-left: 12px;
        color: #ffffff;
        border-right: 1px solid rgba(255, 255, 255, 0.075);
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar.layout-sidebar-dark
        .layout-menu
        > li
        > a
        i {
        color: #ffffff;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar.layout-sidebar-dark
        .layout-menu
        > li
        > a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar.layout-sidebar-dark
        .layout-menu
        > li.active-menuitem
        > a {
        border-left: 4px solid transparent;
        color: #6c8cd5;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar.layout-sidebar-dark
        .layout-menu
        > li.active-menuitem
        > a
        i {
        color: #6c8cd5;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar.layout-sidebar-dark
        .layout-menu
        > li
        > ul {
        background-color: #23252a;
        border-color: #23252a;
        color: #ffffff;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar.layout-sidebar-dark
        .layout-menu
        > li
        > ul
        li.active-menuitem
        > a {
        border-left: 4px solid #6c8cd5;
        color: #6c8cd5;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar.layout-sidebar-dark
        .layout-menu
        > li
        > ul
        li.active-menuitem
        > a
        i {
        color: #6c8cd5;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar.layout-sidebar-gradient
        .layout-menu {
        border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar.layout-sidebar-gradient
        .layout-menu
        > li:first-child {
        border-left: 1px solid rgba(255, 255, 255, 0.075);
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar.layout-sidebar-gradient
        .layout-menu
        > li
        > a {
        color: #ffffff;
        border-right: 1px solid rgba(255, 255, 255, 0.075);
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar.layout-sidebar-gradient
        .layout-menu
        > li
        > a
        i {
        color: #ffffff;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar.layout-sidebar-gradient
        .layout-menu
        > li
        > a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar.layout-sidebar-gradient
        .layout-menu
        > li.active-menuitem
        > a {
        border-left: 4px solid transparent;
        color: #6c8cd5;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar.layout-sidebar-gradient
        .layout-menu
        > li.active-menuitem
        > a
        i {
        color: #6c8cd5;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar.layout-sidebar-gradient
        .layout-menu
        > li
        > ul {
        background-color: #23252a;
        background-image: -webkit-gradient(
            linear,
            left top,
            left bottom,
            from(#23252a),
            to(#36466c)
        );
        background-image: -webkit-linear-gradient(to bottom, #23252a, #36466c);
        background-image: -moz-linear-gradient(to bottom, #23252a, #36466c);
        background-image: -ms-linear-gradient(to bottom, #23252a, #36466c);
        background-image: -o-linear-gradient(to bottom, #23252a, #36466c);
        background-image: linear-gradient(to bottom, #23252a, #36466c);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#23252A", endColorStr="#36466C");
        border-color: #23252a;
        color: #ffffff;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar.layout-sidebar-gradient
        .layout-menu
        > li
        > ul
        li.active-menuitem
        > a {
        border-left: 4px solid #6c8cd5;
        color: #6c8cd5;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar.layout-sidebar-gradient
        .layout-menu
        > li
        > ul
        li.active-menuitem
        > a
        i {
        color: #6c8cd5;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar .layout-main {
        padding-top: 0;
        margin-left: 0;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-topbar
        #menu-button,
    .layout-wrapper.layout-wrapper-slim-sidebar .layout-topbar #menu-button {
        display: none;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar
        .layout-menu
        ul
        li
        a,
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .layout-menu
        ul
        li
        a {
        padding-left: 12px;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar
        .layout-menu
        ul
        li
        li
        a,
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .layout-menu
        ul
        li
        li
        a {
        padding-left: 24px;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar
        .layout-menu
        ul
        li
        li
        li
        a,
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .layout-menu
        ul
        li
        li
        li
        a {
        padding-left: 36px;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar
        .layout-menu
        ul
        li
        li
        li
        li
        a,
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .layout-menu
        ul
        li
        li
        li
        li
        a {
        padding-left: 48px;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar
        .layout-menu
        ul
        li
        li
        li
        li
        li
        a,
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .layout-menu
        ul
        li
        li
        li
        li
        li
        a {
        padding-left: 60px;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar
        .layout-menu
        ul
        li
        li
        li
        li
        li
        li
        a,
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .layout-menu
        ul
        li
        li
        li
        li
        li
        li
        a {
        padding-left: 72px;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar
        .layout-menu
        ul
        li
        li
        li
        li
        li
        li
        li
        a,
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .layout-menu
        ul
        li
        li
        li
        li
        li
        li
        li
        a {
        padding-left: 84px;
    }
    .layout-wrapper.layout-wrapper-horizontal-sidebar
        .layout-sidebar
        .layout-menu
        ul
        li
        li
        li
        li
        li
        li
        li
        li
        a,
    .layout-wrapper.layout-wrapper-slim-sidebar
        .layout-sidebar
        .layout-menu
        ul
        li
        li
        li
        li
        li
        li
        li
        li
        a {
        padding-left: 96px;
    }
}
@media screen and (max-width: 1024px) {
    .layout-wrapper .layout-sidebar {
        left: -230px;
        top: 0px;
        box-shadow: 2px 0 1px 0 rgba(0, 0, 0, 0.16);
        -webkit-box-shadow: 2px 0 1px 0 rgba(0, 0, 0, 0.16);
        -moz-box-shadow: 2px 0 1px 0 rgba(0, 0, 0, 0.16);
    }
    .layout-wrapper.layout-wrapper-sidebar-mobile-active .layout-sidebar {
        left: 0;
    }
}
.usermenu {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.usermenu.usermenu-overlay {
    position: fixed;
    background: #182848;
    width: 200px;
    z-index: 999;
    display: none;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.5);
}
.usermenu.usermenu-overlay li a:hover {
    background-color: #23252a;
}
.usermenu.usermenu-active {
    display: block;
    top: 60px;
    right: 0px;
    left: auto;
}
.usermenu li a {
    display: block;
    padding: 6px 12px;
    color: #ffffff;
    text-align: left;
}
.usermenu li a i {
    margin-right: 9px;
    vertical-align: middle;
}
.usermenu li a i.layout-menuitem-toggler {
    -moz-transition: transform 0.2s;
    -o-transition: transform 0.2s;
    -webkit-transition: transform 0.2s;
    transition: transform 0.2s;
}
.usermenu li a span,
.usermenu li a img {
    display: inline-block;
    vertical-align: middle;
}
.usermenu li a:hover {
    background-color: #f1f1f1;
}
.usermenu li ul {
    max-height: 0;
    overflow: hidden;
    list-style: none;
    margin: 0;
    padding: 0;
}
.usermenu li ul a {
    padding-left: 24px;
}
.usermenu li ul a span,
.usermenu li ul a img {
    vertical-align: middle;
}
.usermenu li ul a img {
    margin-right: 8px;
}
.usermenu > li.menuitem-active > a {
    padding-left: 8px;
    border-left: 4px solid #4b6cb7;
    color: #4b6cb7;
}
.usermenu > li.menuitem-active > a i {
    color: #4b6cb7;
}
.usermenu > li.menuitem-active > a span {
    color: #4b6cb7;
}
.usermenu > li.menuitem-active > a i.layout-menuitem-toggler {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.usermenu > li.menuitem-active > ul {
    max-height: 1000px;
}

.layout-wrapper .layout-main {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    -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-main .route-bar {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    min-height: 31px;
    background-color: #ffffff;
    border-bottom: solid 1px #d6d7d9;
}
.layout-wrapper .layout-main .route-bar:after {
    content: "";
    display: table;
    clear: both;
}
.layout-wrapper .layout-main .route-bar .route-bar-breadcrumb {
    padding: 6px 12px;
    display: inline-block;
}
.layout-wrapper .layout-main .route-bar .route-bar-breadcrumb i {
    color: #5b616a;
    font-size: 18px;
    vertical-align: bottom;
}
.layout-wrapper .layout-main .route-bar .route-bar-breadcrumb a {
    color: #212121;
}
.layout-wrapper .layout-main .route-bar .route-bar-menu {
    float: right;
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: 100%;
    margin-right: 12px;
}
.layout-wrapper .layout-main .route-bar .route-bar-menu li {
    height: 100%;
    display: inline-block;
}
.layout-wrapper .layout-main .route-bar .route-bar-menu li i {
    line-height: inherit;
    font-size: 18px;
    color: #5b616a;
}
.layout-wrapper .layout-main .route-bar .route-bar-menu li a {
    width: 36px;
    font-size: 18px;
    display: block;
    height: 100%;
    text-align: center;
    line-height: 30px;
}
.layout-wrapper .layout-main .route-bar .route-bar-menu li a:hover {
    background-color: #f1f1f1;
}
.layout-wrapper .layout-main .route-bar .route-bar-menu li.search-item input {
    margin-right: 9px;
    border: 0 none;
    text-align: left;
    font-size: 14px;
    max-width: 150px;
    outline-offset: 0;
    outline: 0 none;
}
.layout-wrapper .layout-main .route-bar .route-bar-menu li.search-item i {
    line-height: 30px;
    width: 36px;
    text-align: center;
}
.layout-wrapper .layout-main .layout-main-content {
    flex: 1 1 0;
}
.layout-wrapper.layout-wrapper-sidebar-inactive .layout-main {
    margin-left: 0;
}

@media screen and (min-width: 1025px) {
    .layout-wrapper .layout-main {
        margin-left: 230px;
    }
    .layout-wrapper.layout-wrapper-sidebar-inactive .layout-main {
        margin-left: 0;
    }
    .layout-wrapper.layout-wrapper-overlay-sidebar .layout-main {
        margin-left: 0;
    }
    .layout-wrapper .layout-topbar {
        margin-left: 0;
    }
    .layout-wrapper.layout-wrapper-sidebar-inactive .layout-topbar {
        margin-left: 0;
    }
    .layout-wrapper.layout-wrapper-overlay-sidebar .layout-topbar {
        margin-left: 0;
    }
    .layout-wrapper.layout-wrapper-sidebar-inactive .layout-topbar .logo {
        opacity: 100 !important;
        pointer-events: auto !important;
    }
    .layout-wrapper.layout-wrapper-overlay-sidebar .layout-topbar .logo {
        opacity: 100 !important;
        pointer-events: auto !important;
    }
}
@media screen and (max-width: 1024px) {
    .layout-wrapper .layout-main {
        margin-left: 0;
        /* padding-top: 60px; */
    }
}
#layout-right-sidebar {
    width: 230px;
    right: -231px;
    background-color: #ffffff;
    border-left: solid 1px #d6d7d9;
    position: fixed;
    z-index: 999;
    top: 60px;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: auto;
    -moz-transition: right 0.2s;
    -o-transition: right 0.2s;
    -webkit-transition: right 0.2s;
    transition: right 0.2s;
}
#layout-right-sidebar .right-panel-scroll-content {
    padding-bottom: 150px;
}
#layout-right-sidebar.layout-right-sidebar-active {
    right: 0;
    display: block;
}
#layout-right-sidebar .p-tabview {
    padding: 0;
}
#layout-right-sidebar .p-tabview .p-tabview-panels {
    padding: 0;
}
#layout-right-sidebar .p-tabview .p-tabview-nav li {
    padding: 0px 4px;
}
#layout-right-sidebar .p-tabview .p-tabview-nav .p-tabview-left-icon {
    margin-right: 0;
    font-size: 20px;
}
#layout-right-sidebar .submenu-title {
    padding: 4px 0 4px 11px;
    background-color: #f1f1f1;
    border-bottom: 1px solid #d6d7d9;
}
#layout-right-sidebar .submenu-title span {
    color: #212121;
    font-weight: 600;
    line-height: 42px;
    font-size: 16px;
}
#layout-right-sidebar .submenu-content {
    list-style-type: none;
}
#layout-right-sidebar .submenu-content.settings {
    padding: 0 11px;
}
#layout-right-sidebar .submenu-content.settings .p-grid {
    padding: 20px 10px;
}
#layout-right-sidebar .submenu-content.settings .p-grid .p-col-6 {
    margin: 10px;
}
#layout-right-sidebar .submenu-content ul {
    padding: 0;
}
#layout-right-sidebar .submenu-content ul li {
    display: inline-block;
    padding: 11px;
}
#layout-right-sidebar .submenu-content img {
    float: left;
    margin-right: 8px;
    width: 27px;
    height: 27px;
}
#layout-right-sidebar .submenu-content span {
    display: block;
    font-size: 12px;
    color: #212121;
}
#layout-right-sidebar .submenu-content span.messager-name {
    font-weight: 600;
}
#layout-right-sidebar .submenu-content span.message-text {
    width: 83%;
    float: right;
}
#layout-right-sidebar .submenu-content span.time-stamp {
    color: #80848b;
    position: absolute;
    text-align: center;
    margin-top: 30px;
    width: 10%;
}
#layout-right-sidebar .submenu-content .calendar-event-date {
    float: left;
    width: 48px;
    height: 48px;
    text-align: center;
    padding: 6px 0 0 0;
    font-size: 14px;
    font-weight: 600;
    box-sizing: border-box;
    margin-right: 8px;
    background-color: #0071bc;
    display: block;
}
#layout-right-sidebar .submenu-content .calendar-event-date span {
    width: 100%;
    display: inline-block;
}
#layout-right-sidebar .submenu-content .calendar-event-date span.date {
    color: #ffffff;
}
#layout-right-sidebar .submenu-content .calendar-event-detail {
    float: left;
    display: block;
}
#layout-right-sidebar
    .submenu-content
    .calendar-event-detail
    .calendar-event-title {
    font-weight: 600;
    display: block;
}
#layout-right-sidebar .submenu-content .calendar-event-detail i {
    margin-right: 4px;
    margin-top: 2px;
    display: block;
}
#layout-right-sidebar .submenu-content .calendar-event-detail .material-icons {
    font-size: 17px;
    display: inline-block;
    vertical-align: middle;
}
#layout-right-sidebar
    .submenu-content
    .calendar-event-detail
    .calendar-event-location {
    top: -6px;
    left: -4px;
    display: inline-block;
    vertical-align: middle;
}
#layout-right-sidebar .submenu-content .order-settings {
    background-color: #e5f0f8;
    color: #205493;
    text-align: center;
    width: 80px;
    height: 74px;
}
#layout-right-sidebar .submenu-content .order-settings:hover {
    box-shadow: 0 0 8px #aeb0b5;
}
#layout-right-sidebar .submenu-content .order-settings i {
    font-size: 30px;
}
#layout-right-sidebar .submenu-content .order-settings span {
    color: #205493;
    font-weight: 600;
}
#layout-right-sidebar .submenu-content .sales-settings {
    background-color: #d5e6d8;
    color: #2e8540;
    text-align: center;
    width: 80px;
    height: 74px;
}
#layout-right-sidebar .submenu-content .sales-settings:hover {
    box-shadow: 0 0 8px #aeb0b5;
}
#layout-right-sidebar .submenu-content .sales-settings i {
    font-size: 30px;
}
#layout-right-sidebar .submenu-content .sales-settings span {
    color: #2e8540;
    font-weight: 600;
}
#layout-right-sidebar .submenu-content .shipment-settings {
    background-color: #fef0d2;
    color: #e3a51b;
    text-align: center;
    width: 80px;
    height: 74px;
}
#layout-right-sidebar .submenu-content .shipment-settings:hover {
    box-shadow: 0 0 8px #aeb0b5;
}
#layout-right-sidebar .submenu-content .shipment-settings i {
    font-size: 30px;
}
#layout-right-sidebar .submenu-content .shipment-settings span {
    color: #e3a51b;
    font-weight: 600;
}
#layout-right-sidebar .submenu-content .visitors-settings {
    background-color: #fce8eb;
    color: #cd2026;
    text-align: center;
    width: 80px;
    height: 74px;
}
#layout-right-sidebar .submenu-content .visitors-settings:hover {
    box-shadow: 0 0 8px #aeb0b5;
}
#layout-right-sidebar .submenu-content .visitors-settings i {
    font-size: 30px;
}
#layout-right-sidebar .submenu-content .visitors-settings span {
    color: #cd2026;
    font-weight: 600;
}
#layout-right-sidebar .submenu-content .history-settings {
    background-color: #dbd4e9;
    color: #4c2c92;
    text-align: center;
    width: 80px;
    height: 74px;
}
#layout-right-sidebar .submenu-content .history-settings:hover {
    box-shadow: 0 0 8px #aeb0b5;
}
#layout-right-sidebar .submenu-content .history-settings i {
    font-size: 30px;
}
#layout-right-sidebar .submenu-content .history-settings span {
    color: #4c2c92;
    font-weight: 600;
}
#layout-right-sidebar .submenu-content .leads-settings {
    background-color: #dedfe1;
    color: #5b616b;
    text-align: center;
    width: 80px;
    height: 74px;
}
#layout-right-sidebar .submenu-content .leads-settings:hover {
    box-shadow: 0 0 8px #aeb0b5;
}
#layout-right-sidebar .submenu-content .leads-settings i {
    font-size: 30px;
}
#layout-right-sidebar .submenu-content .leads-settings span {
    color: #5b616b;
    font-weight: 600;
}

@media screen and (max-width: 1024px) {
    #layout-right-sidebar {
        top: 105px;
    }
}
.layout-footer {
    background-color: #3e3438;
    padding: 20px 25px;
}
.layout-footer h3 {
    font-size: 24px;
    font-weight: 500;
    text-align: left;
    color: #ffffff;
    margin: 0;
}
.layout-footer p {
    color: #9faebf;
    font-size: 14px;
    display: block;
    opacity: 0.9;
    margin-top: 10px;
    margin-bottom: 0;
}
.layout-footer a {
    color: #9faebf;
}
.layout-footer a i {
    padding: 0;
    font-size: 24px;
    line-height: 24px;
    text-align: right;
    margin-left: 30px;
}
.layout-footer a:hover {
    color: #ffffff;
}
.layout-footer .footer-right {
    padding-top: 25px;
    text-align: right;
}

.layout-config {
    width: 16rem;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    padding: 1rem;
    overflow: auto;
    background: #ffffff;
    z-index: 999;
    border-left: 0 none;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.05, 0.74, 0.2, 0.99);
}
.layout-config.layout-config-active {
    transform: translateX(0);
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2),
        0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}
.layout-config.layout-config-active
    .layout-config-content
    .layout-config-button
    i {
    transform: rotate(360deg);
}
.layout-config p {
    line-height: 1.5rem;
    color: #797979;
}
.layout-config .layout-themes {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.layout-config .layout-themes > div {
    padding: 0.25rem;
}
.layout-config .layout-themes a {
    width: 2rem;
    height: 2rem;
    border-radius: 0;
    display: block;
    position: relative;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: transform 0.2s;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
.layout-config .layout-themes a i {
    font-size: 1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -0.5rem;
    margin-top: -0.5rem;
}
.layout-config .layout-themes a img {
    width: 2rem;
    height: 2rem;
}
.layout-config .layout-themes a:hover {
    transform: scale(1.1);
}

.layout-config-button {
    display: block;
    position: fixed;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    background: #1976d2;
    color: #ffffff;
    text-align: center;
    top: 50%;
    right: 0;
    margin-top: -1.5rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    transition: background-color 0.2s;
    overflow: hidden;
    cursor: pointer;
    z-index: 999;
    box-shadow: -0.25rem 0 1rem rgba(0, 0, 0, 0.15);
}
.layout-config-button i {
    font-size: 2rem;
    line-height: inherit;
    transform: rotate(0deg);
    transition: transform 1s;
}
.layout-config-button:hover {
    background: #2083e4;
}
.invoice {
    padding: 2rem;
}
.invoice .invoice-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.invoice .invoice-company .logo-image {
    width: 75px;
    margin-bottom: 0.5rem;
}
.invoice .invoice-company div {
    margin-bottom: 0.5rem;
}
.invoice .invoice-company .company-name {
    font-weight: 700;
    font-size: 1.5rem;
}
.invoice .invoice-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: right;
}
.invoice .invoice-details {
    width: 15rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.invoice .invoice-details > div {
    width: 50%;
    margin-bottom: 0.5rem;
}
.invoice .invoice-details .invoice-label {
    text-align: left;
    font-weight: 700;
}
.invoice .invoice-details .invoice-value {
    text-align: right;
}
.invoice .invoice-to {
    margin-top: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid #d6d7d9;
}
.invoice .invoice-to .bill-to {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.invoice .invoice-to .invoice-to-info div {
    margin-bottom: 0.5rem;
}
.invoice .invoice-items {
    margin-top: 2rem;
    padding-top: 2rem;
}
.invoice .invoice-items table {
    width: 100%;
    border-collapse: collapse;
}
.invoice .invoice-items table tr {
    border-bottom: 1px solid #d6d7d9;
}
.invoice .invoice-items table th {
    font-weight: 700;
}
.invoice .invoice-items table th,
.invoice .invoice-items table td {
    padding: 1rem;
    text-align: right;
}
.invoice .invoice-items table th:first-child,
.invoice .invoice-items table td:first-child {
    text-align: left;
}
.invoice .invoice-summary {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
}
.invoice .invoice-summary .invoice-value {
    font-weight: 700;
}

@media print {
    body * {
        visibility: hidden;
    }

    #invoice-content * {
        visibility: visible;
    }

    #invoice-content {
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        padding: 0;
        margin: 0;
    }
}
.widget-overview-box {
    color: #ffffff;
    min-height: 120px;
    position: relative;
}
.widget-overview-box i {
    float: right;
    font-size: 21px;
    position: absolute;
    top: 10px;
    right: 10px;
}
.widget-overview-box img {
    position: absolute;
    right: 0;
    width: 90px;
    bottom: 0;
}
.widget-overview-box .overview-title {
    line-height: 20px;
    font-size: 16px;
    letter-spacing: 0.8px;
    text-align: left;
    margin-bottom: 5px;
}
.widget-overview-box .overview-numbers {
    line-height: 31px;
    font-size: 24px;
    text-align: left;
    margin-bottom: 8px;
}
.widget-overview-box .overview-ratios {
    line-height: 18px;
    font-size: 14px;
    text-align: left;
    opacity: 0.95;
}
.widget-overview-box.monthly-sales {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    padding: 10px 10px 10px 20px;
    background: #ff7295;
    /* Old browsers */
    background: -moz-linear-gradient(240deg, #ff7295 0%, #fe875d 100%);
    background: -webkit-linear-gradient(240deg, #ff7295 0%, #fe875d 100%);
    background: linear-gradient(240deg, #ff7295 0%, #fe875d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ff7295", endColorstr="#fe875d",GradientType=1 );
}
.widget-overview-box.monthly-views {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    padding: 10px 10px 10px 20px;
    background: #00aadf;
    /* Old browsers */
    background: -moz-linear-gradient(240deg, #00aadf 0%, #0071bc 100%);
    background: -webkit-linear-gradient(240deg, #00aadf 0%, #0071bc 100%);
    background: linear-gradient(240deg, #00aadf 0%, #0071bc 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00aadf", endColorstr="#0071bc",GradientType=1 );
}
.widget-overview-box.monthly-users {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    padding: 10px 10px 10px 20px;
    background: #4b7ecf;
    /* Old browsers */
    background: -moz-linear-gradient(240deg, #4b7ecf 0%, #8e70ee 100%);
    background: -webkit-linear-gradient(240deg, #4b7ecf 0%, #8e70ee 100%);
    background: linear-gradient(240deg, #4b7ecf 0%, #8e70ee 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4b7ecf", endColorstr="#8e70ee",GradientType=1 );
}

.widget-stats {
    background-color: #ffffff;
    min-height: 120px;
    position: relative;
    margin-top: 29px;
    border-top: 7px solid #4b6cb7;
    border-bottom: solid 1px #d6d7d9;
    border-right: solid 1px #d6d7d9;
    border-left: solid 1px #d6d7d9;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.widget-stats .stats-icon {
    display: inline-block;
    position: relative;
    top: -7px;
    background: #ffffff;
    padding: 0 5px;
    height: 7px;
}
.widget-stats .stats-icon img {
    position: relative;
    top: -10px;
    margin-bottom: -10px;
}
.widget-stats .message-icon {
    height: 34px;
    width: 44px;
}
.widget-stats .doc-icon {
    height: 34px;
    width: 25px;
}
.widget-stats .mark-icon {
    height: 34px;
    width: 25px;
}
.widget-stats img.profile-icon {
    /*top: -15px;
      margin-bottom: -5px;*/
    height: 34px;
    width: 34px;
}
.widget-stats .stats-numbers {
    line-height: 25px;
    font-size: 20px;
    font-weight: bold;
}
.widget-stats .stats-title {
    line-height: 21px;
    font-size: 17px;
}
.widget-stats .stats-subtitle {
    line-height: 18px;
    font-size: 14px;
    color: #aeb0b5;
}
.widget-stats .stats-subtitle span {
    color: #00bfe7;
}

.widget-timeline .timeline-wrapper {
    position: relative;
}
.widget-timeline .timeline-wrapper .timeline-line {
    position: absolute;
    left: 50%;
    width: 1px;
    height: 100%;
    margin-left: -1px;
    background: #dddddd;
    top: 0;
}
.widget-timeline .timeline-wrapper ul {
    list-style-type: none;
    padding: 0;
    position: relative;
}
.widget-timeline .timeline-wrapper ul li {
    display: block;
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}
.widget-timeline .timeline-wrapper ul li .timeline-message {
    width: 45%;
    overflow: hidden;
    position: relative;
}
.widget-timeline .timeline-wrapper ul li .timeline-message img {
    position: absolute;
    width: 100%;
    height: auto;
    z-index: 0;
}
.widget-timeline .timeline-wrapper ul li .timeline-message span {
    position: relative;
    z-index: 10;
    display: block;
    padding: 15px;
}
.widget-timeline .timeline-wrapper ul li .timeline-message span.love {
    color: #cd2026;
    background-color: #f8dede;
    font-weight: 600;
    text-align: right;
}
.widget-timeline .timeline-wrapper ul li .timeline-message span.checked {
    font-weight: 600;
    color: #00a6d2;
    background-color: #e1f3f8;
}
.widget-timeline .timeline-wrapper ul li .timeline-message span.event {
    color: #f39f19;
    font-weight: 600;
    background-color: #fff1d2;
}
.widget-timeline .timeline-wrapper ul li .timeline-icon {
    z-index: 100;
    line-height: 30px;
}
.widget-timeline .timeline-wrapper ul li .timeline-icon img {
    width: 30px;
    height: 30px;
}
.widget-timeline .timeline-wrapper ul li .timeline-icon span {
    font-weight: 600;
    color: #5b616b;
}
.widget-timeline .timeline-wrapper ul li.odd .timeline-icon {
    position: absolute;
    left: 50%;
    margin-left: -16px;
}
.widget-timeline .timeline-wrapper ul li.odd .timeline-icon span {
    float: right;
}
.widget-timeline .timeline-wrapper ul li.odd .timeline-icon img {
    float: left;
    margin-right: 15px;
}
.widget-timeline .timeline-wrapper ul li.odd .timeline-message {
    float: left;
}
.widget-timeline .timeline-wrapper ul li.odd .timeline-message span {
    padding: 15px;
    text-align: right;
}
.widget-timeline .timeline-wrapper ul li.even .timeline-icon {
    position: absolute;
    right: 50%;
    margin-right: -16px;
    text-align: right;
}
.widget-timeline .timeline-wrapper ul li.even .timeline-icon span {
    float: left;
}
.widget-timeline .timeline-wrapper ul li.even .timeline-icon img {
    float: right;
    margin-left: 15px;
}
.widget-timeline .timeline-wrapper ul li.even .timeline-message {
    float: right;
}
.widget-timeline .timeline-wrapper ul li.even .timeline-message span {
    padding: 15px;
}

.widget-chat ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
.widget-chat ul li {
    padding: 16px 0;
    font-size: 0;
}
.widget-chat ul li:after {
    content: "";
    display: table;
    clear: both;
}
.widget-chat ul li .message-meta {
    font-size: 14px;
    width: 160px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: inline-block;
    vertical-align: top;
    padding: 8px;
    text-align: left;
}
.widget-chat ul li .message-meta img {
    width: 48px;
    height: 48px;
    display: block;
}
.widget-chat ul li .message-meta .name {
    font-weight: 600;
}
.widget-chat ul li .message-meta .time {
    color: #aeb0b5;
    display: block;
}
.widget-chat ul li .message {
    font-size: 14px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: calc(100% - 160px);
    padding: 12px;
    background-color: #f4f4f4;
    display: inline-block;
    vertical-align: top;
}
.widget-chat ul li.message-from .message-meta {
    border-left: 4px solid #4aa564;
}
.widget-chat ul li.message-from .message-meta img {
    float: left;
    margin-right: 8px;
}
.widget-chat ul li.message-own .message-meta {
    border-right: 4px solid #e31c3d;
}
.widget-chat ul li.message-own .message-meta img {
    float: right;
    margin-left: 8px;
}
.widget-chat .write-message {
    border-top: 1px solid #d6d7d9;
    margin-top: 10px;
    position: relative;
}
.widget-chat .write-message i {
    font-size: 24px;
    color: #d6d7d9;
    position: absolute;
    left: 8px;
    top: 50%;
    margin-top: -14px;
}
.widget-chat .write-message input {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 0 none;
    width: 100%;
    height: 40px;
    font-size: 14px;
    padding-left: 36px;
}
.widget-chat .write-message input:focus {
    outline: 0 none;
}

.widget-profile .p-panel-content {
    padding: 0;
    text-align: center;
}
.widget-profile img {
    width: 100%;
}
.widget-profile .profile-avatar {
    width: 120px;
    height: 120px;
    top: -60px;
    position: relative;
}
.widget-profile .profile-name {
    font-weight: 600;
    color: #212121;
    text-align: center;
    display: block;
    margin-top: -75px;
}
.widget-profile .profile-role {
    color: #212121;
    text-align: center;
    display: block;
}
.widget-profile .p-button {
    margin-top: 16px;
}
.widget-profile .profile-statistics-panel {
    text-align: center;
    display: inline-block;
    position: relative;
}
.widget-profile .profile-statistics-panel .profile-statistics {
    font-weight: 600;
    font-size: 16px;
    display: block;
}
.widget-profile .profile-statistics-panel .statistics-title {
    border-bottom: 4px solid transparent;
    padding-bottom: 10px;
}

.widget-team ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.widget-team ul li {
    padding: 16px;
    border-left: 3px solid rgba(0, 0, 0, 0);
}
.widget-team ul li:after {
    content: "";
    display: table;
    clear: both;
}
.widget-team ul li:hover {
    background-color: #f2f3f3;
    border-color: #f2f3f3;
}
.widget-team ul li .team-box {
    display: inline-block;
    vertical-align: middle;
}
.widget-team ul li .team-member {
    text-align: left;
    display: block;
    font-weight: 600;
    color: #212121;
}
.widget-team ul li img {
    width: 35px;
    height: 35px;
    vertical-align: middle;
    display: inline-block;
    margin-right: 6px;
}
.widget-team ul li a {
    display: block;
    float: right;
    background-color: #0872b9;
    border-radius: 100%;
    height: 30px;
    width: 30px;
    line-height: 30px;
    margin-left: 6px;
    text-align: center;
    margin-top: 4px;
}
.widget-team ul li a i {
    line-height: inherit;
    font-size: 22px;
    color: #ffffff;
}

.widget-resolution-center {
    padding-bottom: 8px;
}
.widget-resolution-center .p-inputtext {
    display: block;
}
.widget-resolution-center .p-outputlabel {
    vertical-align: middle;
}
.widget-resolution-center .p-button {
    margin-top: 5px;
    display: block;
}

.widget-pricing-box {
    text-align: center;
}
.widget-pricing-box .pricing-header {
    color: #ffffff;
    background-color: #122e51;
    letter-spacing: 2px;
    font-weight: 600;
    padding: 12px 0px;
}
.widget-pricing-box .pricing-subheader {
    background-color: #efefef;
}
.widget-pricing-box .price {
    display: block;
    font-size: 32px;
    font-weight: 600;
    color: #122e51;
}
.widget-pricing-box .duration {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #4773aa;
}
.widget-pricing-box .pricing-content {
    background-color: #ffffff;
    min-height: 250px;
    padding-top: 20px;
}
.widget-pricing-box .pricing-content span {
    text-align: center;
    display: block;
    padding: 2px 0;
}
.widget-pricing-box .p-button {
    position: relative;
    top: -55px;
}
.widget-pricing-box.pricing-basic .pricing-header {
    background-color: #00a6d2;
}
.widget-pricing-box.pricing-basic .price {
    color: #00a6d2;
}
.widget-pricing-box.pricing-basic .duration {
    color: #00a6d2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 1.5rem 0 1rem 0;
    font-family: inherit;
    font-weight: 500;
    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: 0;
    font-family: monospace;
}

blockquote {
    margin: 1rem 0;
    padding: 0 2rem;
    border-left: 4px solid #90a4ae;
}

hr {
    border-top: solid #d6d7d9;
    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;
}

/* Add your customizations of layout here */
