/* Add your variable customizations of layout here */
/* Utils */
.clearfix:after {
	content: ' ';
	display: block;
	clear: both;
}

.card {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background: #ffffff;
	padding: 18px;
	margin-bottom: 2rem;
}
.card:last-child {
	margin-bottom: 0;
}
.card .card-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.card .card-subtitle {
	color: #9199a9;
	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;
}

@-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);
	}
}
@keyframes rippleOn {
	0% {
		opacity: 0.5;
	}
	100% {
		opacity: 0;
		transform: scale(13, 13);
	}
}
@-webkit-keyframes spin {
	from {
		-webkit-transform: rotate(0deg);
	}
	to {
		-webkit-transform: rotate(359deg);
	}
}
@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(359deg);
	}
}
@keyframes rippleOff {
	0% {
		opacity: 0.5;
	}
	100% {
		opacity: 0;
		transform: scale(13, 13);
	}
}
.fadeInDown {
	-webkit-animation: fadeInDown 0.5s;
	/* Safari 4.0 - 8.0 */
	animation: fadeInDown 0.5s;
}

.fadeOutUp {
	-webkit-animation: fadeOutUp 0.15s;
	/* Safari 4.0 - 8.0 */
	animation: fadeOutUp 0.15s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 1.5rem 0 1rem 0;
	font-family: inherit;
	font-weight: 600;
	line-height: 1.2;
	color: inherit;
}
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
	margin-top: 0;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.75rem;
}

h4 {
	font-size: 1.5rem;
}

h5 {
	font-size: 1.25rem;
}

h6 {
	font-size: 1rem;
}

mark {
	background: #fff8e1;
	padding: 0.25rem 0.4rem;
	border-radius: 4px;
	font-family: monospace;
}

blockquote {
	margin: 1rem 0;
	padding: 0 2rem;
	border-left: 4px solid #90a4ae;
}

hr {
	border-top: solid rgba(145, 153, 169, 0.3);
	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;
}

.splash-screen {
	width: 100%;
	min-height: 100vh;
	background-color: #f4f7f7;
}

.spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	height: 40px;
	width: 40px;
	transform: translate(-50%, -50%);
}

.custom-spinner .spinner {
	height: 150px;
	width: 150px;
}
.custom-spinner .loading-text {
	top: 50% !important;
}

[class^='ball-'] {
	position: absolute;
	display: block;
	left: 30px;
	width: 12px;
	height: 12px;
	border-radius: 6px;
	transition: all 0.5s;
	animation: circleRotate 4s both infinite;
	transform-origin: 0 250% 0;
}

@keyframes circleRotate {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(1440deg);
	}
}
.ball-1 {
	z-index: -1;
	background-color: #5e81ac;
	animation-timing-function: cubic-bezier(0.5, 0.3, 0.9, 0.9);
}

.ball-2 {
	z-index: -2;
	background-color: #81a1c1;
	animation-timing-function: cubic-bezier(0.5, 0.6, 0.9, 0.9);
}

.ball-3 {
	z-index: -3;
	background-color: #88c0d0;
	animation-timing-function: cubic-bezier(0.5, 0.9, 0.9, 0.9);
}

.ball-4 {
	z-index: -4;
	background-color: #8fbcbb;
	animation-timing-function: cubic-bezier(0.5, 1.2, 0.9, 0.9);
}

.ball-5 {
	z-index: -5;
	background-color: #d08770;
	animation-timing-function: cubic-bezier(0.5, 1.5, 0.9, 0.9);
}

.ball-6 {
	z-index: -6;
	background-color: #ebcb8b;
	animation-timing-function: cubic-bezier(0.5, 1.8, 0.9, 0.9);
}

.ball-7 {
	z-index: -7;
	background-color: #a3be8c;
	animation-timing-function: cubic-bezier(0.5, 2.1, 0.9, 0.9);
}

.ball-8 {
	z-index: -8;
	background-color: #b48ead;
	animation-timing-function: cubic-bezier(0.5, 2.4, 0.9, 0.9);
}

* {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

html {
	height: 100%;
	font-size: 14px;
}

body {
	font-family: Roboto, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif,
		'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
	font-size: 16px;
	color: #333333;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	padding: 0;
	margin: 0;
	min-height: 100%;
	background-color: #eceff4;
}
body .ajax-loader {
	font-size: 32px;
}
body.hidden-overflow {
	overflow: hidden;
}

a {
	text-decoration: none;
	color: #9199a9;
	color: var(--primary-color);
}

.layout-main-mask {
	display: none;
	background-color: #2e3440;
	position: fixed;
	z-index: 997;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	animation-name: fadeinmask;
	animation-duration: 0.15s;
	opacity: 0.8;
	filter: alpha(opacity=80);
	cursor: pointer;
}

.layout-main {
	margin-left: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 22vh;
	-moz-transition: margin-left 0.2s;
	-o-transition: margin-left 0.2s;
	-webkit-transition: margin-left 0.2s;
	transition: margin-left 0.2s;
	min-width: 700px;
}

.layout-footer {
	background-color: #ffffff;
	padding: 10px 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 65px;
}
.layout-footer .logo-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	height: 100%;
}
.layout-footer .logo-text img {
	height: 50px;
	width: 50px;
}
.layout-footer .logo-text .text {
	margin-left: 15px;
}
.layout-footer .logo-text .text h1 {
	font-size: 18px;
	color: #4c566a;
	font-weight: normal;
	margin: 0;
}
.layout-footer .logo-text .text span {
	color: #9199a9;
	font-size: 12px;
}
.layout-footer .icons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	font-size: 24px;
	color: #9199a9;
	height: 100%;
}
.layout-footer .icons i {
	margin-left: 20px;
	cursor: pointer;
	font-size: 28px;
}
.layout-footer .icons i:hover {
	color: #5e81ac;
}

.layout-sidebar {
	width: 240px;
	height: 100%;
	position: fixed;
	top: 0;
	background-color: #6b46d2;
	-webkit-transition: transform 0.15s;
	transition: transform 0.15s;
	-webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
	z-index: 999;
	transform: translate3d(-180px, 0px, 0px);
	-moz-transition: transform 0.15s;
	-o-transition: transform 0.15s;
	-webkit-box-shadow: 3px 0 5px 0 rgba(33, 35, 39, 0.15);
	-moz-box-shadow: 3px 0 5px 0 rgba(33, 35, 39, 0.15);
	box-shadow: 3px 0 5px 0 rgba(33, 35, 39, 0.15);
}
.layout-sidebar .mr-0_1 {
	margin-right: 0.1rem !important;
}
.layout-sidebar .sidebar-logo {
	height: 76px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding: 0 8px;
}
.layout-sidebar .sidebar-logo .sidebar-pin {
	display: none;
	width: 30px;
	height: 30px;
	line-height: 29px;
	text-align: center;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-moz-transition: all 0.15s;
	-o-transition: all 0.15s;
	-webkit-transition: all 0.15s;
	transition: all 0.15s;
}
.layout-sidebar .sidebar-logo .sidebar-pin i {
	line-height: inherit;
	font-size: 18px;
}
.layout-sidebar .sidebar-logo img {
	vertical-align: middle;
	height: 40px;
	width: 45px;
	border: 0 none;
}
.layout-sidebar .sidebar-logo .app-name {
	display: none;
	vertical-align: middle;
	font-size: 20px;
	margin-left: 4px;
	color: white;
}
.layout-sidebar .layout-menu-container {
	overflow: auto;
	height: calc(100% - 245px);
	min-height: 200px;
	margin: 40px 0;
}
.layout-sidebar .layout-menu-container .layout-menu {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.layout-sidebar .layout-menu-container .layout-menu li {
	padding: 4px 10px;
}
.layout-sidebar .layout-menu-container .layout-menu li.active-menuitem > a i.layout-submenu-toggler {
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.layout-sidebar .layout-menu-container .layout-menu li > a {
	padding: 10px 10px 10px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	-moz-transition: all 0.15s;
	-o-transition: all 0.15s;
	-webkit-transition: all 0.15s;
	transition: all 0.15s;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

.bi::before,
[class^='bi-']::before,
[class*=' bi-']::before {
	width: 22px;
}
.layout-sidebar .layout-menu-container .layout-menu li > a i {
	width: 22px;
	height: 18px;
	font-size: 17px;
	position: absolute;
	left: 10px;
	top: 50%;
	margin-top: -0.5em;
}
.layout-sidebar .layout-menu-container .layout-menu li > a i.layout-submenu-toggler {
	-moz-transition: all 0.15s;
	-o-transition: all 0.15s;
	-webkit-transition: all 0.15s;
	transition: all 0.15s;
	display: none;
	margin-right: 4px;
	right: 10px;
}
.layout-sidebar .layout-menu-container .layout-menu li > a.rotated-icon .layout-menuitem-icon {
	transform: rotate(90deg);
}
.layout-sidebar .layout-menu-container .layout-menu li > a.rotated-icon .layout-menuitem-icon.pi-mobile {
	margin-right: 2px;
}
.layout-sidebar .layout-menu-container .layout-menu li > a .menuitem-badge {
	display: none;
	margin-left: auto;
}
.layout-sidebar .layout-menu-container .layout-menu li ul {
	overflow: hidden;
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.layout-sidebar .layout-menu-container .layout-menu li ul li {
	padding: 4px 0;
}
.layout-sidebar .layout-menu-container .layout-menu li ul li a {
	padding-left: 20px;
}
.layout-sidebar .layout-menu-container .layout-menu li ul li ul li a {
	padding-left: 30px;
}
.layout-sidebar .layout-menu-container .layout-menu li ul li ul li ul li a {
	padding-left: 40px;
}
.layout-sidebar .layout-menu-container .layout-menu li ul li ul li ul ul li a {
	padding-left: 50px;
}
.layout-sidebar .layout-menu-container .layout-menu li ul li ul li ul ul ul li a {
	padding-left: 60px;
}
.layout-sidebar .layout-menu-container .layout-menu li ul li ul li ul ul ul ul li a {
	padding-left: 70px;
}
.layout-sidebar .layout-menu-container .layout-menu li ul li ul li ul ul ul ul ul li a {
	padding-left: 80px;
}
.layout-sidebar .layout-menu-container .layout-menu > li > a {
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	color: #b5a2e8;
}

.inactive-bar-wrapper {
	width: 35px;
	height: 16px;
	left: 6px;
	position: relative;
}
.layout-sidebar .layout-menu-container .layout-menu > li.active-menuitem > a {
	-moz-border-radius: 6px;
	-webkit-border-radius: 6px;
	border-radius: 6px;
	-moz-border-radius-bottomleft: 0;
	-webkit-border-bottom-left-radius: 0;
	border-bottom-left-radius: 0;
	-moz-border-radius-bottomright: 0;
	-webkit-border-bottom-right-radius: 0;
	border-bottom-right-radius: 0;
	color: #ffffff;
}
.cylindrical-border-left {
	height: 16px;
	width: 4px;
	background: white;
	border-radius: 2px;
	visibility: hidden;
}
.layout-sidebar
	.layout-menu-container
	.layout-menu
	> li.active-menuitem
	> a
	> .inactive-bar-wrapper
	> .cylindrical-border-left {
	height: 16px;
	width: 4px;
	background: white;
	border-radius: 2px;
	visibility: visible;
}
.active-bar-wrapper {
	display: flex;
}
.active-bar-wrapper > .menuitem-text {
	font-size: 14px;
	margin-left: 1rem;
}
.layout-sidebar
	.layout-menu-container
	.layout-menu
	> li.active-menuitem
	> a
	> .active-bar-wrapper
	> .cylindrical-border-left {
	height: 20px;
	width: 4px;
	background: white;
	border-radius: 2px;
	visibility: visible;
}
.layout-sidebar .layout-menu-container .layout-menu > li.active-menuitem > ul {
	-moz-border-radius-bottomleft: 6px;
	-webkit-border-bottom-left-radius: 6px;
	border-bottom-left-radius: 6px;
	-moz-border-radius-bottomright: 6px;
	-webkit-border-bottom-right-radius: 6px;
	border-bottom-right-radius: 6px;
}
.layout-sidebar .layout-menu-container .layout-menu .menuitem-badge {
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 6px;
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	line-height: 16px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.layout-sidebar.layout-sidebar-active {
	transform: translate3d(0px, 0px, 0px);
}
.layout-sidebar.layout-sidebar-active .sidebar-logo {
	flex-flow: row-reverse;
	justify-content: space-between;
	padding: 0 14px;
}
.layout-sidebar.layout-sidebar-active .sidebar-logo img {
	display: inline;
}
.layout-sidebar.layout-sidebar-active .sidebar-logo .app-name {
	display: inline;
}
.layout-sidebar.layout-sidebar-active .sidebar-logo .sidebar-pin {
	display: inline-block;
	color: white;
}
.layout-sidebar.layout-sidebar-active .layout-menu li a i.layout-submenu-toggler {
	display: inline-block;
}
.layout-sidebar.layout-sidebar-active .layout-menu li a .menuitem-badge {
	display: inline-block;
}

.layout-wrapper-static .layout-sidebar {
	transform: translate3d(0px, 0px, 0px);
}
.layout-wrapper-static {
	.layout-topbar .tenant-name {
		transform: translate3d(0px, 0px, 0px);
	}
}
.layout-wrapper-static .layout-sidebar .sidebar-logo {
	flex-flow: row-reverse;
	justify-content: space-between;
	padding: 0 14px;
}
.layout-wrapper-static .layout-sidebar .sidebar-logo img {
	display: inline;
}
.layout-wrapper-static .layout-sidebar .sidebar-logo .app-name {
	display: inline;
}
.layout-wrapper-static .layout-sidebar .sidebar-logo .sidebar-pin {
	display: block;
	color: white;
}
.layout-wrapper-static .layout-sidebar .layout-menu li > a i.layout-submenu-toggler {
	display: inline-block;
}
.layout-wrapper-static .layout-main {
	margin-left: 240px;
}
.layout-wrapper-static .layout-main .layout-topbar {
	-moz-transition: width 0.15s;
	-o-transition: width 0.15s;
	-webkit-transition: width 0.15s;
	transition: width 0.15s;
}

.layout-wrapper-static-restore .layout-sidebar {
	-moz-transition: none;
	-o-transition: none;
	-webkit-transition: none;
	transition: none;
	transform: translate3d(0px, 0px, 0px);
}
.layout-wrapper-static-restore .layout-main {
	-moz-transition: none;
	-o-transition: none;
	-webkit-transition: none;
	transition: none;
	margin-left: 240px;
}

@media (max-width: 991px) {
	.layout-wrapper .layout-sidebar {
		width: 240px;
		top: 0px;
		-webkit-box-shadow: 3px 0 5px 0 rgba(33, 35, 39, 0.15);
		-moz-box-shadow: 3px 0 5px 0 rgba(33, 35, 39, 0.15);
		box-shadow: 3px 0 5px 0 rgba(33, 35, 39, 0.15);
	}
	.layout-wrapper .layout-sidebar .sidebar-logo {
		display: none;
	}
	.layout-wrapper.layout-wrapper-static .layout-main .layout-topbar {
		width: 100%;
	}
	.layout-wrapper.layout-wrapper-static-restore .layout-sidebar {
		-moz-transition: transform 0.15s;
		-o-transition: transform 0.15s;
		-webkit-transition: transform 0.15s;
		transition: transform 0.15s;
	}
	.layout-wrapper .layout-main {
		margin-left: 60px;
	}
	.layout-wrapper .layout-topbar {
		width: 100%;
	}
	.layout-wrapper .layout-topbar .topbar-logo {
		margin-top: -10px;
		margin-right: 20px;
		display: block;
	}
	.layout-wrapper .layout-topbar .topbar-logo a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.layout-wrapper .layout-topbar .topbar-logo a .app-name {
		margin-left: 10px;
		color: #4c566a;
		font-size: 18px;
	}
	.layout-wrapper.layout-sidebar-mobile-active .layout-sidebar {
		transform: translate3d(0px, 0px, 0px);
	}
	.layout-wrapper.layout-sidebar-mobile-active .layout-sidebar .layout-menu li a i.layout-submenu-toggler {
		display: inline-block;
	}
	.layout-wrapper.layout-sidebar-mobile-active .layout-sidebar .layout-menu li a .menuitem-badge {
		display: inline-block;
	}
	.layout-wrapper.layout-sidebar-mobile-active
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-left
		.sidebar-menu-button {
		background-color: #4c566a;
		-moz-transition: background-color 0.15s;
		-o-transition: background-color 0.15s;
		-webkit-transition: background-color 0.15s;
		transition: background-color 0.15s;
	}
	.layout-wrapper.layout-sidebar-mobile-active
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-left
		.sidebar-menu-button
		i {
		color: #ffffff;
	}
	.layout-wrapper.layout-sidebar-mobile-active
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-left
		.sidebar-menu-button:hover {
		background-color: #1b74c5;
		-moz-transition: background-color 0.15s;
		-o-transition: background-color 0.15s;
		-webkit-transition: background-color 0.15s;
		transition: background-color 0.15s;
	}
	.layout-wrapper.layout-sidebar-mobile-active
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-left
		.sidebar-menu-button:hover
		i {
		color: #ffffff;
	}
	.layout-wrapper.layout-sidebar-mobile-active .layout-main-mask {
		display: block;
	}
}
@media (min-width: 992px) {
	.layout-wrapper.layout-horizontal .layout-sidebar {
		width: 100%;
		height: 50px;
		top: 75px;
		left: 0;
		z-index: 99;
		transform: none;
		box-shadow: 3px 0 5px 0 rgba(33, 35, 39, 0.15);
	}
	.layout-wrapper.layout-horizontal .layout-sidebar .sidebar-logo {
		display: none;
	}
	.layout-wrapper.layout-horizontal .layout-sidebar .layout-menu-container {
		overflow: visible;
		height: 100%;
	}
	.layout-wrapper.layout-horizontal .layout-sidebar .layout-menu-container .layout-menu {
		margin: 0px 15px;
		padding-bottom: 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.layout-wrapper.layout-horizontal .layout-sidebar .layout-menu-container .layout-menu > li {
		width: auto;
		padding: 0;
		position: relative;
	}
	.layout-wrapper.layout-horizontal .layout-sidebar .layout-menu-container .layout-menu > li > a {
		height: 35px;
		margin: 8px 3px;
		padding: 7px 12px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		align-items: center;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
		border-radius: 0;
		-moz-border-radius-topleft: 3px;
		-webkit-border-top-left-radius: 3px;
		border-top-left-radius: 3px;
		-moz-border-radius-topright: 3px;
		-webkit-border-top-right-radius: 3px;
		border-top-right-radius: 3px;
		justify-content: space-between;
	}
	.layout-wrapper.layout-horizontal .layout-sidebar .layout-menu-container .layout-menu > li > a .menuitem-text {
		vertical-align: middle;
		margin-left: 8px;
		order: 2;
	}
	.layout-wrapper.layout-horizontal .layout-sidebar .layout-menu-container .layout-menu > li > a i {
		position: static;
		vertical-align: middle;
		margin-top: 0;
		top: auto;
		right: auto;
		margin-right: 5px;
		order: 1;
	}
	.layout-wrapper.layout-horizontal
		.layout-sidebar
		.layout-menu-container
		.layout-menu
		> li
		> a
		i.layout-submenu-toggler {
		order: 3;
		display: inline-block;
		margin-top: 2px;
	}
	.layout-wrapper.layout-horizontal .layout-sidebar .layout-menu-container .layout-menu > li > ul {
		top: 41px;
		left: 3px;
		width: 230px;
		position: absolute;
		padding: 0;
		margin: 0;
		z-index: 100;
		overflow: auto;
		max-height: 450px;
		-webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
		-moz-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
		box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
	}
	.layout-wrapper.layout-horizontal .layout-sidebar .layout-menu-container .layout-menu > li > ul li a {
		padding-top: 5px;
		padding-bottom: 5px;
		flex-flow: row-reverse;
		justify-content: flex-end;
	}
	.layout-wrapper.layout-horizontal .layout-sidebar .layout-menu-container .layout-menu > li > ul li a .menuitem-text {
		vertical-align: middle;
		margin-left: 8px;
	}
	.layout-wrapper.layout-horizontal .layout-sidebar .layout-menu-container .layout-menu > li > ul li a i {
		position: relative;
		right: 0;
		left: 0;
		top: 2px;
		margin-top: 0;
	}
	.layout-wrapper.layout-horizontal
		.layout-sidebar
		.layout-menu-container
		.layout-menu
		> li
		> ul
		li
		a
		.layout-submenu-toggler {
		display: block;
		left: auto;
		right: 10px;
		position: absolute;
	}
	.layout-wrapper.layout-horizontal .layout-sidebar .layout-menu-container .layout-menu > li.active-menuitem > ul {
		-moz-border-radius-bottomleft: 3px;
		-webkit-border-bottom-left-radius: 3px;
		border-bottom-left-radius: 3px;
		-moz-border-radius-bottomright: 3px;
		-webkit-border-bottom-right-radius: 3px;
		border-bottom-right-radius: 3px;
		box-shadow: 0 2px 6px 0 rgba(29, 29, 33, 0.22);
	}
	.layout-wrapper.layout-horizontal .layout-sidebar .layout-menu-container .layout-menu li ul li a {
		padding-left: 12px;
	}
	.layout-wrapper.layout-horizontal .layout-sidebar .layout-menu-container .layout-menu li ul li ul li a {
		padding-left: 24px;
	}
	.layout-wrapper.layout-horizontal .layout-sidebar .layout-menu-container .layout-menu li ul li ul li ul li a {
		padding-left: 36px;
	}
	.layout-wrapper.layout-horizontal .layout-sidebar .layout-menu-container .layout-menu li ul li ul li ul ul li a {
		padding-left: 48px;
	}
	.layout-wrapper.layout-horizontal .layout-sidebar .layout-menu-container .layout-menu li ul li ul li ul ul ul li a {
		padding-left: 60px;
	}
	.layout-wrapper.layout-horizontal
		.layout-sidebar
		.layout-menu-container
		.layout-menu
		li
		ul
		li
		ul
		li
		ul
		ul
		ul
		ul
		li
		a {
		padding-left: 72px;
	}
	.layout-wrapper.layout-horizontal
		.layout-sidebar
		.layout-menu-container
		.layout-menu
		li
		ul
		li
		ul
		li
		ul
		ul
		ul
		ul
		ul
		li
		a {
		padding-left: 84px;
	}
	.layout-wrapper.layout-horizontal .layout-sidebar .layout-menu-container .layout-menu li a .menuitem-badge {
		left: 18px;
		top: 15px;
		display: block;
	}
	.layout-wrapper.layout-horizontal .layout-main {
		margin-left: 0px;
		padding-top: 125px;
	}
	.layout-wrapper.layout-horizontal .layout-topbar {
		width: 100%;
		box-shadow: none;
		-webkit-box-shadow: none;
		-moz-box-shadow: none;
	}
	.layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-logo-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-right: 8%;
	}
	.layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-logo-wrapper .layout-topbar-logo {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-logo-wrapper .layout-topbar-logo .app-name {
		font-size: 22.5px;
		color: #4c566a;
		margin: 0 10px;
	}
	.layout-wrapper.layout-horizontal .layout-topbar .layout-topbar-logo-wrapper .layout-topbar-logo img {
		height: 45px;
		width: 45px;
	}
}
.layout-menu-light .layout-sidebar {
	background-color: #ffffff;
}
.layout-menu-light .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #2e3440;
}
.layout-menu-light .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #ffffff;
}
.layout-menu-light .layout-sidebar .sidebar-logo .app-name {
	color: #2e3440;
}
.layout-menu-light .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-light .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #1b74c5;
}
.layout-menu-light .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #1b74c5;
}
.layout-menu-light .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #2e3440;
}
.layout-menu-light .layout-sidebar .layout-menu > li > a i {
	color: #4c566a;
}
.layout-menu-light .layout-sidebar .layout-menu > li > a:hover {
	background-color: #f4f4f4;
}
.layout-menu-light .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #1b74c5;
}
.layout-menu-light .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #ffffff;
}
.layout-menu-light .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #ffffff;
}
.layout-menu-light .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #1b74c5;
}
.layout-menu-light .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #ffffff;
}
.layout-menu-light .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #ffffff;
}
.layout-menu-light .layout-sidebar .layout-menu > li ul {
	background-color: #e8e8e8;
}
.layout-menu-light .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #2e3440;
}
.layout-menu-light .layout-sidebar .layout-menu > li ul li a i {
	color: #4c566a;
}
.layout-menu-light .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: #f4f4f4;
}
.layout-menu-light .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #1b74c5;
	font-weight: 600;
}
.layout-menu-light .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #1b74c5;
}

.layout-menu-dark .layout-sidebar {
	background-color: #2e3440;
}
.layout-menu-dark .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-dark .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-dark .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-dark .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-dark .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #809bbd;
}
.layout-menu-dark .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #809bbd;
}
.layout-menu-dark .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-dark .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-dark .layout-sidebar .layout-menu > li > a:hover {
	background-color: #4c566a;
}
.layout-menu-dark .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #1b74c5;
}
.layout-menu-dark .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #ffffff;
}
.layout-menu-dark .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #ffffff;
}
.layout-menu-dark .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #1b74c5;
}
.layout-menu-dark .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #ffffff;
}
.layout-menu-dark .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #ffffff;
}
.layout-menu-dark .layout-sidebar .layout-menu > li ul {
	background-color: #4c566a;
}
.layout-menu-dark .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-dark .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-dark .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: #2e3440;
}
.layout-menu-dark .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #809bbd;
	font-weight: 600;
}
.layout-menu-dark .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #809bbd;
}

.layout-menu-chile .layout-sidebar {
	background-color: #282d37;
	background-image: url('../../images/menu/chile.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-chile .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-chile .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-chile .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-chile .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-chile .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #88c0d0;
}
.layout-menu-chile .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #88c0d0;
}
.layout-menu-chile .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-chile .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-chile .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-chile .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #88c0d0;
}
.layout-menu-chile .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-chile .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-chile .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #88c0d0;
}
.layout-menu-chile .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-chile .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-chile .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-chile .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-chile .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-chile .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-chile .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #88c0d0;
	font-weight: 600;
}
.layout-menu-chile .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #88c0d0;
}

.layout-menu-naples .layout-sidebar {
	background-color: #312f3a;
	background-image: url('../../images/menu/naples.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-naples .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-naples .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-naples .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-naples .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-naples .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #a3be8c;
}
.layout-menu-naples .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #a3be8c;
}
.layout-menu-naples .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-naples .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-naples .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-naples .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #a3be8c;
}
.layout-menu-naples .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-naples .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-naples .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #a3be8c;
}
.layout-menu-naples .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-naples .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-naples .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-naples .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-naples .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-naples .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-naples .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #a3be8c;
	font-weight: 600;
}
.layout-menu-naples .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #a3be8c;
}

.layout-menu-georgia .layout-sidebar {
	background-color: #282c36;
	background-image: url('../../images/menu/georgia.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-georgia .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-georgia .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-georgia .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-georgia .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-georgia .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #ebcb8b;
}
.layout-menu-georgia .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #ebcb8b;
}
.layout-menu-georgia .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-georgia .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-georgia .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-georgia .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #ebcb8b;
}
.layout-menu-georgia .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-georgia .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-georgia .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #ebcb8b;
}
.layout-menu-georgia .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-georgia .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-georgia .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-georgia .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-georgia .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-georgia .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-georgia .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #ebcb8b;
	font-weight: 600;
}
.layout-menu-georgia .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #ebcb8b;
}

.layout-menu-infinity .layout-sidebar {
	background-color: #202634;
	background-image: url('../../images/menu/infinity.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-infinity .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-infinity .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-infinity .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-infinity .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-infinity .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #88c0d0;
}
.layout-menu-infinity .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #88c0d0;
}
.layout-menu-infinity .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-infinity .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-infinity .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-infinity .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #88c0d0;
}
.layout-menu-infinity .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-infinity .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-infinity .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #88c0d0;
}
.layout-menu-infinity .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-infinity .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-infinity .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-infinity .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-infinity .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-infinity .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-infinity .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #88c0d0;
	font-weight: 600;
}
.layout-menu-infinity .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #88c0d0;
}

.layout-menu-chicago .layout-sidebar {
	background-color: #2a2e38;
	background-image: url('../../images/menu/chicago.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-chicago .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-chicago .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-chicago .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-chicago .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-chicago .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #ebcb8b;
}
.layout-menu-chicago .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #ebcb8b;
}
.layout-menu-chicago .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-chicago .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-chicago .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-chicago .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #ebcb8b;
}
.layout-menu-chicago .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-chicago .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-chicago .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #ebcb8b;
}
.layout-menu-chicago .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-chicago .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-chicago .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-chicago .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-chicago .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-chicago .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-chicago .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #ebcb8b;
	font-weight: 600;
}
.layout-menu-chicago .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #ebcb8b;
}

.layout-menu-majesty .layout-sidebar {
	background-color: #4c5158;
	background-image: url('../../images/menu/majesty.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-majesty .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-majesty .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-majesty .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-majesty .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-majesty .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #88c0d0;
}
.layout-menu-majesty .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #88c0d0;
}
.layout-menu-majesty .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-majesty .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-majesty .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-majesty .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #88c0d0;
}
.layout-menu-majesty .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-majesty .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-majesty .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #88c0d0;
}
.layout-menu-majesty .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-majesty .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-majesty .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-majesty .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-majesty .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-majesty .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-majesty .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #88c0d0;
	font-weight: 600;
}
.layout-menu-majesty .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #88c0d0;
}

.layout-menu-fish .layout-sidebar {
	background-color: #264254;
	background-image: url('../../images/menu/fish.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-fish .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-fish .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-fish .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-fish .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-fish .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #b48ead;
}
.layout-menu-fish .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #b48ead;
}
.layout-menu-fish .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-fish .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-fish .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-fish .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #b48ead;
}
.layout-menu-fish .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-fish .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-fish .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #b48ead;
}
.layout-menu-fish .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-fish .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-fish .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-fish .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-fish .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-fish .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-fish .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #b48ead;
	font-weight: 600;
}
.layout-menu-fish .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #b48ead;
}

.layout-menu-dawn .layout-sidebar {
	background-color: #20505d;
	background-image: url('../../images/menu/dawn.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-dawn .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-dawn .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-dawn .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-dawn .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-dawn .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #ebcb8b;
}
.layout-menu-dawn .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #ebcb8b;
}
.layout-menu-dawn .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-dawn .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-dawn .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-dawn .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #ebcb8b;
}
.layout-menu-dawn .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-dawn .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-dawn .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #ebcb8b;
}
.layout-menu-dawn .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-dawn .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-dawn .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-dawn .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-dawn .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-dawn .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-dawn .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #ebcb8b;
	font-weight: 600;
}
.layout-menu-dawn .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #ebcb8b;
}

.layout-menu-record .layout-sidebar {
	background-color: #202928;
	background-image: url('../../images/menu/record.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-record .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-record .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-record .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-record .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-record .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #d08770;
}
.layout-menu-record .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #d08770;
}
.layout-menu-record .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-record .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-record .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-record .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #d08770;
}
.layout-menu-record .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-record .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-record .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #d08770;
}
.layout-menu-record .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-record .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-record .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-record .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-record .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-record .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.42);
}
.layout-menu-record .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #d08770;
	font-weight: 600;
}
.layout-menu-record .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #d08770;
}

.layout-menu-pool .layout-sidebar {
	background-color: #475a62;
	background-image: url('../../images/menu/pool.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-pool .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-pool .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-pool .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-pool .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-pool .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #a3be8c;
}
.layout-menu-pool .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #a3be8c;
}
.layout-menu-pool .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-pool .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-pool .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-pool .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #a3be8c;
}
.layout-menu-pool .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-pool .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-pool .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #a3be8c;
}
.layout-menu-pool .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-pool .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-pool .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-pool .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-pool .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-pool .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-pool .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #a3be8c;
	font-weight: 600;
}
.layout-menu-pool .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #a3be8c;
}

.layout-menu-metal .layout-sidebar {
	background-color: #262a33;
	background-image: url('../../images/menu/metal.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-metal .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-metal .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-metal .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-metal .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-metal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #ebcb8b;
}
.layout-menu-metal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #ebcb8b;
}
.layout-menu-metal .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-metal .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-metal .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-metal .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #ebcb8b;
}
.layout-menu-metal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-metal .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-metal .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #ebcb8b;
}
.layout-menu-metal .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-metal .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-metal .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-metal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-metal .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-metal .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-metal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #ebcb8b;
	font-weight: 600;
}
.layout-menu-metal .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #ebcb8b;
}

.layout-menu-china .layout-sidebar {
	background-color: #1e2a31;
	background-image: url('../../images/menu/china.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-china .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-china .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-china .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-china .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-china .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #bf616a;
}
.layout-menu-china .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #bf616a;
}
.layout-menu-china .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-china .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-china .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-china .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #bf616a;
}
.layout-menu-china .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-china .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-china .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #bf616a;
}
.layout-menu-china .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-china .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-china .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-china .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-china .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-china .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.32);
}
.layout-menu-china .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #bf616a;
	font-weight: 600;
}
.layout-menu-china .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #bf616a;
}

.layout-menu-table .layout-sidebar {
	background-color: #4f5259;
	background-image: url('../../images/menu/table.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-table .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-table .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-table .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-table .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-table .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #ebcb8b;
}
.layout-menu-table .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #ebcb8b;
}
.layout-menu-table .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-table .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-table .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-table .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #ebcb8b;
}
.layout-menu-table .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-table .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-table .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #ebcb8b;
}
.layout-menu-table .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-table .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-table .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-table .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-table .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-table .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-table .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #ebcb8b;
	font-weight: 600;
}
.layout-menu-table .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #ebcb8b;
}

.layout-menu-panorama .layout-sidebar {
	background-color: #252e38;
	background-image: url('../../images/menu/panorama.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-panorama .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-panorama .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-panorama .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-panorama .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-panorama .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #88c0d0;
}
.layout-menu-panorama .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #88c0d0;
}
.layout-menu-panorama .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-panorama .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-panorama .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-panorama .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #88c0d0;
}
.layout-menu-panorama .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-panorama .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-panorama .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #88c0d0;
}
.layout-menu-panorama .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-panorama .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-panorama .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-panorama .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-panorama .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-panorama .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.32);
}
.layout-menu-panorama .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #88c0d0;
	font-weight: 600;
}
.layout-menu-panorama .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #88c0d0;
}

.layout-menu-barcelona .layout-sidebar {
	background-color: #222932;
	background-image: url('../../images/menu/barcelona.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-barcelona .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-barcelona .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-barcelona .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-barcelona .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-barcelona .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #ebcb8b;
}
.layout-menu-barcelona .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #ebcb8b;
}
.layout-menu-barcelona .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-barcelona .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-barcelona .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-barcelona .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #ebcb8b;
}
.layout-menu-barcelona .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-barcelona .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-barcelona .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #ebcb8b;
}
.layout-menu-barcelona .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-barcelona .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-barcelona .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-barcelona .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-barcelona .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-barcelona .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.42);
}
.layout-menu-barcelona .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #ebcb8b;
	font-weight: 600;
}
.layout-menu-barcelona .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #ebcb8b;
}

.layout-menu-underwater .layout-sidebar {
	background-color: #202631;
	background-image: url('../../images/menu/underwater.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-underwater .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-underwater .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-underwater .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-underwater .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-underwater .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #8fbcbb;
}
.layout-menu-underwater .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #8fbcbb;
}
.layout-menu-underwater .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-underwater .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-underwater .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-underwater .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #8fbcbb;
}
.layout-menu-underwater .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-underwater .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-underwater .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #8fbcbb;
}
.layout-menu-underwater
	.layout-sidebar
	.layout-menu
	> li.active-menuitem
	> a.active-menuitem-routerlink
	.menuitem-text {
	color: #3b4252;
}
.layout-menu-underwater .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-underwater .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-underwater .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-underwater .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-underwater .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.42);
}
.layout-menu-underwater .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #8fbcbb;
	font-weight: 600;
}
.layout-menu-underwater .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #8fbcbb;
}

.layout-menu-symmetry .layout-sidebar {
	background-color: #545a65;
	background-image: url('../../images/menu/symmetry.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-symmetry .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-symmetry .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-symmetry .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-symmetry .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-symmetry .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #8fbcbb;
}
.layout-menu-symmetry .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #8fbcbb;
}
.layout-menu-symmetry .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-symmetry .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-symmetry .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-symmetry .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #8fbcbb;
}
.layout-menu-symmetry .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-symmetry .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-symmetry .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #8fbcbb;
}
.layout-menu-symmetry .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-symmetry .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-symmetry .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-symmetry .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-symmetry .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-symmetry .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.42);
}
.layout-menu-symmetry .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #8fbcbb;
	font-weight: 600;
}
.layout-menu-symmetry .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #8fbcbb;
}

.layout-menu-rain .layout-sidebar {
	background-color: #35414f;
	background-image: url('../../images/menu/rain.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-rain .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-rain .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-rain .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-rain .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-rain .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #d08770;
}
.layout-menu-rain .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #d08770;
}
.layout-menu-rain .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-rain .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-rain .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-rain .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #d08770;
}
.layout-menu-rain .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-rain .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-rain .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #d08770;
}
.layout-menu-rain .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-rain .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-rain .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-rain .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-rain .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-rain .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-rain .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #d08770;
	font-weight: 600;
}
.layout-menu-rain .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #d08770;
}

.layout-menu-utah .layout-sidebar {
	background-color: #3d2e34;
	background-image: url('../../images/menu/utah.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-utah .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-utah .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-utah .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-utah .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-utah .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #ebcb8b;
}
.layout-menu-utah .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #ebcb8b;
}
.layout-menu-utah .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-utah .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-utah .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-utah .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #ebcb8b;
}
.layout-menu-utah .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-utah .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-utah .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #ebcb8b;
}
.layout-menu-utah .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-utah .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-utah .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-utah .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-utah .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-utah .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-utah .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #ebcb8b;
	font-weight: 600;
}
.layout-menu-utah .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #ebcb8b;
}

.layout-menu-wave .layout-sidebar {
	background-color: #1a2b39;
	background-image: url('../../images/menu/wave.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-wave .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-wave .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-wave .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-wave .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-wave .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #81a1c1;
}
.layout-menu-wave .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #81a1c1;
}
.layout-menu-wave .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-wave .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-wave .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-wave .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #81a1c1;
}
.layout-menu-wave .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-wave .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-wave .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #81a1c1;
}
.layout-menu-wave .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-wave .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-wave .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-wave .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-wave .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-wave .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-wave .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #81a1c1;
	font-weight: 600;
}
.layout-menu-wave .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #81a1c1;
}

.layout-menu-flora .layout-sidebar {
	background-color: #202422;
	background-image: url('../../images/menu/flora.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-flora .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-flora .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-flora .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-flora .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-flora .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #ebcb8b;
}
.layout-menu-flora .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #ebcb8b;
}
.layout-menu-flora .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-flora .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-flora .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-flora .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #ebcb8b;
}
.layout-menu-flora .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-flora .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-flora .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #ebcb8b;
}
.layout-menu-flora .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-flora .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-flora .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-flora .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-flora .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-flora .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.42);
}
.layout-menu-flora .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #ebcb8b;
	font-weight: 600;
}
.layout-menu-flora .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #ebcb8b;
}

.layout-menu-speed .layout-sidebar {
	background-color: #272634;
	background-image: url('../../images/menu/speed.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-speed .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-speed .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-speed .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-speed .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-speed .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #ebcb8b;
}
.layout-menu-speed .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #ebcb8b;
}
.layout-menu-speed .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-speed .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-speed .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-speed .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #ebcb8b;
}
.layout-menu-speed .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-speed .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-speed .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #ebcb8b;
}
.layout-menu-speed .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-speed .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-speed .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-speed .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-speed .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-speed .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.32);
}
.layout-menu-speed .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #ebcb8b;
	font-weight: 600;
}
.layout-menu-speed .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #ebcb8b;
}

.layout-menu-canopy .layout-sidebar {
	background-color: #22272f;
	background-image: url('../../images/menu/canopy.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-canopy .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-canopy .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-canopy .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-canopy .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-canopy .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #a3be8c;
}
.layout-menu-canopy .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #a3be8c;
}
.layout-menu-canopy .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-canopy .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-canopy .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-canopy .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #a3be8c;
}
.layout-menu-canopy .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-canopy .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-canopy .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #a3be8c;
}
.layout-menu-canopy .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-canopy .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-canopy .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-canopy .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-canopy .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-canopy .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-canopy .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #a3be8c;
	font-weight: 600;
}
.layout-menu-canopy .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #a3be8c;
}

.layout-menu-sanpaolo .layout-sidebar {
	background-color: #252a32;
	background-image: url('../../images/menu/sanpaolo.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-sanpaolo .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-sanpaolo .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-sanpaolo .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-sanpaolo .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-sanpaolo .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #8fbcbb;
}
.layout-menu-sanpaolo .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #8fbcbb;
}
.layout-menu-sanpaolo .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-sanpaolo .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-sanpaolo .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-sanpaolo .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #8fbcbb;
}
.layout-menu-sanpaolo .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-sanpaolo .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-sanpaolo .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #8fbcbb;
}
.layout-menu-sanpaolo .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-sanpaolo .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-sanpaolo .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-sanpaolo .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-sanpaolo .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-sanpaolo .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.32);
}
.layout-menu-sanpaolo .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #8fbcbb;
	font-weight: 600;
}
.layout-menu-sanpaolo .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #8fbcbb;
}

.layout-menu-basketball .layout-sidebar {
	background-color: #293531;
	background-image: url('../../images/menu/basketball.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-basketball .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-basketball .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-basketball .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-basketball .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-basketball .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #d08770;
}
.layout-menu-basketball .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #d08770;
}
.layout-menu-basketball .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-basketball .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-basketball .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-basketball .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #d08770;
}
.layout-menu-basketball .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-basketball .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-basketball .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #d08770;
}
.layout-menu-basketball
	.layout-sidebar
	.layout-menu
	> li.active-menuitem
	> a.active-menuitem-routerlink
	.menuitem-text {
	color: #3b4252;
}
.layout-menu-basketball .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-basketball .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-basketball .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-basketball .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-basketball .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.42);
}
.layout-menu-basketball .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #d08770;
	font-weight: 600;
}
.layout-menu-basketball .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #d08770;
}

.layout-menu-misty .layout-sidebar {
	background-color: #202734;
	background-image: url('../../images/menu/misty.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-misty .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-misty .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-misty .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-misty .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-misty .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #d08770;
}
.layout-menu-misty .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #d08770;
}
.layout-menu-misty .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-misty .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-misty .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-misty .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #d08770;
}
.layout-menu-misty .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-misty .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-misty .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #d08770;
}
.layout-menu-misty .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-misty .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-misty .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-misty .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-misty .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-misty .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-misty .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #d08770;
	font-weight: 600;
}
.layout-menu-misty .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #d08770;
}

.layout-menu-summit .layout-sidebar {
	background-color: #212733;
	background-image: url('../../images/menu/summit.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-summit .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-summit .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-summit .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-summit .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-summit .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #88c0d0;
}
.layout-menu-summit .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #88c0d0;
}
.layout-menu-summit .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-summit .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-summit .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-summit .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #88c0d0;
}
.layout-menu-summit .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-summit .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-summit .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #88c0d0;
}
.layout-menu-summit .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-summit .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-summit .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-summit .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-summit .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-summit .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-summit .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #88c0d0;
	font-weight: 600;
}
.layout-menu-summit .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #88c0d0;
}

.layout-menu-snow .layout-sidebar {
	background-color: #414a55;
	background-image: url('../../images/menu/snow.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-snow .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-snow .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-snow .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-snow .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-snow .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #81a1c1;
}
.layout-menu-snow .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #81a1c1;
}
.layout-menu-snow .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-snow .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-snow .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-snow .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #81a1c1;
}
.layout-menu-snow .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-snow .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-snow .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #81a1c1;
}
.layout-menu-snow .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-snow .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-snow .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-snow .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-snow .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-snow .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-snow .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #81a1c1;
	font-weight: 600;
}
.layout-menu-snow .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #81a1c1;
}

.layout-menu-wall .layout-sidebar {
	background-color: #50555f;
	background-image: url('../../images/menu/wall.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-wall .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-wall .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-wall .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-wall .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-wall .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #81a1c1;
}
.layout-menu-wall .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #81a1c1;
}
.layout-menu-wall .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-wall .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-wall .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-wall .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #81a1c1;
}
.layout-menu-wall .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-wall .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-wall .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #81a1c1;
}
.layout-menu-wall .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-wall .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-wall .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-wall .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-wall .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-wall .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.42);
}
.layout-menu-wall .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #81a1c1;
	font-weight: 600;
}
.layout-menu-wall .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #81a1c1;
}

.layout-menu-ferris .layout-sidebar {
	background-color: #262b33;
	background-image: url('../../images/menu/ferris.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-ferris .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-ferris .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-ferris .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-ferris .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-ferris .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #a3be8c;
}
.layout-menu-ferris .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #a3be8c;
}
.layout-menu-ferris .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-ferris .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-ferris .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-ferris .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #a3be8c;
}
.layout-menu-ferris .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-ferris .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-ferris .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #a3be8c;
}
.layout-menu-ferris .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-ferris .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-ferris .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-ferris .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-ferris .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-ferris .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.32);
}
.layout-menu-ferris .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #a3be8c;
	font-weight: 600;
}
.layout-menu-ferris .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #a3be8c;
}

.layout-menu-ship .layout-sidebar {
	background-color: #262b35;
	background-image: url('../../images/menu/ship.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-ship .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-ship .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-ship .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-ship .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-ship .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #ebcb8b;
}
.layout-menu-ship .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #ebcb8b;
}
.layout-menu-ship .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-ship .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-ship .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-ship .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #ebcb8b;
}
.layout-menu-ship .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-ship .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-ship .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #ebcb8b;
}
.layout-menu-ship .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-ship .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-ship .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-ship .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-ship .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-ship .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.42);
}
.layout-menu-ship .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #ebcb8b;
	font-weight: 600;
}
.layout-menu-ship .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #ebcb8b;
}

.layout-menu-ny .layout-sidebar {
	background-color: #585d67;
	background-image: url('../../images/menu/ny.jpg');
	background-size: 240px 100%;
	background-repeat: no-repeat;
}
.layout-menu-ny .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-ny .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-ny .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-ny .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-ny .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #8fbcbb;
}
.layout-menu-ny .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #8fbcbb;
}
.layout-menu-ny .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #eceff4;
}
.layout-menu-ny .layout-sidebar .layout-menu > li > a i {
	color: #eceff4;
}
.layout-menu-ny .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-ny .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #8fbcbb;
}
.layout-menu-ny .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #3b4252;
}
.layout-menu-ny .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #2e3440;
}
.layout-menu-ny .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #8fbcbb;
}
.layout-menu-ny .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #3b4252;
}
.layout-menu-ny .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #2e3440;
}
.layout-menu-ny .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-ny .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #eceff4;
}
.layout-menu-ny .layout-sidebar .layout-menu > li ul li a i {
	color: #eceff4;
}
.layout-menu-ny .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-ny .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #8fbcbb;
	font-weight: 600;
}
.layout-menu-ny .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #8fbcbb;
}

.layout-menu-cyan .layout-sidebar {
	background-color: #3c5259;
}
.layout-menu-cyan .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-cyan .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-cyan .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-cyan .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-cyan .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #d08770;
}
.layout-menu-cyan .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #d08770;
}
.layout-menu-cyan .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #ffffff;
}
.layout-menu-cyan .layout-sidebar .layout-menu > li > a i {
	color: #ffffff;
}
.layout-menu-cyan .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-cyan .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #d08770;
}
.layout-menu-cyan .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #343a40;
}
.layout-menu-cyan .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #343a40;
}
.layout-menu-cyan .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #d08770;
}
.layout-menu-cyan .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #343a40;
}
.layout-menu-cyan .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #343a40;
}
.layout-menu-cyan .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-cyan .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #ffffff;
}
.layout-menu-cyan .layout-sidebar .layout-menu > li ul li a i {
	color: #ffffff;
}
.layout-menu-cyan .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-cyan .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #d08770;
	font-weight: 600;
}
.layout-menu-cyan .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #d08770;
}

.layout-menu-violet .layout-sidebar {
	background-color: #4a4358;
}
.layout-menu-violet .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-violet .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-violet .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-violet .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-violet .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #f8c869;
}
.layout-menu-violet .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #f8c869;
}
.layout-menu-violet .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #ffffff;
}
.layout-menu-violet .layout-sidebar .layout-menu > li > a i {
	color: #ffffff;
}
.layout-menu-violet .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-violet .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #f8c869;
}
.layout-menu-violet .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #343a40;
}
.layout-menu-violet .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #343a40;
}
.layout-menu-violet .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #f8c869;
}
.layout-menu-violet .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #343a40;
}
.layout-menu-violet .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #343a40;
}
.layout-menu-violet .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-violet .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #ffffff;
}
.layout-menu-violet .layout-sidebar .layout-menu > li ul li a i {
	color: #ffffff;
}
.layout-menu-violet .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-violet .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #f8c869;
	font-weight: 600;
}
.layout-menu-violet .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #f8c869;
}

.layout-menu-red .layout-sidebar {
	background-color: #5e4346;
}
.layout-menu-red .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-red .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-red .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-red .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-red .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #8fbcbb;
}
.layout-menu-red .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #8fbcbb;
}
.layout-menu-red .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #ffffff;
}
.layout-menu-red .layout-sidebar .layout-menu > li > a i {
	color: #ffffff;
}
.layout-menu-red .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-red .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #8fbcbb;
}
.layout-menu-red .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #343a40;
}
.layout-menu-red .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #343a40;
}
.layout-menu-red .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #8fbcbb;
}
.layout-menu-red .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #343a40;
}
.layout-menu-red .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #343a40;
}
.layout-menu-red .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-red .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #ffffff;
}
.layout-menu-red .layout-sidebar .layout-menu > li ul li a i {
	color: #ffffff;
}
.layout-menu-red .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-red .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #8fbcbb;
	font-weight: 600;
}
.layout-menu-red .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #8fbcbb;
}

.layout-menu-blue .layout-sidebar {
	background-color: #354563;
}
.layout-menu-blue .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-blue .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-blue .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-blue .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-blue .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #f8c869;
}
.layout-menu-blue .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #f8c869;
}
.layout-menu-blue .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #ffffff;
}
.layout-menu-blue .layout-sidebar .layout-menu > li > a i {
	color: #ffffff;
}
.layout-menu-blue .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-blue .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #f8c869;
}
.layout-menu-blue .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #343a40;
}
.layout-menu-blue .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #343a40;
}
.layout-menu-blue .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #f8c869;
}
.layout-menu-blue .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #343a40;
}
.layout-menu-blue .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #343a40;
}
.layout-menu-blue .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-blue .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #ffffff;
}
.layout-menu-blue .layout-sidebar .layout-menu > li ul li a i {
	color: #ffffff;
}
.layout-menu-blue .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-blue .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #f8c869;
	font-weight: 600;
}
.layout-menu-blue .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #f8c869;
}

.layout-menu-porsuk .layout-sidebar {
	background-color: #21596e;
}
.layout-menu-porsuk .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-porsuk .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-porsuk .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-porsuk .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-porsuk .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #a3be8c;
}
.layout-menu-porsuk .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #a3be8c;
}
.layout-menu-porsuk .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #ffffff;
}
.layout-menu-porsuk .layout-sidebar .layout-menu > li > a i {
	color: #ffffff;
}
.layout-menu-porsuk .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-porsuk .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #a3be8c;
}
.layout-menu-porsuk .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #343a40;
}
.layout-menu-porsuk .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #343a40;
}
.layout-menu-porsuk .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #a3be8c;
}
.layout-menu-porsuk .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #343a40;
}
.layout-menu-porsuk .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #343a40;
}
.layout-menu-porsuk .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-porsuk .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #ffffff;
}
.layout-menu-porsuk .layout-sidebar .layout-menu > li ul li a i {
	color: #ffffff;
}
.layout-menu-porsuk .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-porsuk .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #a3be8c;
	font-weight: 600;
}
.layout-menu-porsuk .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #a3be8c;
}

.layout-menu-pink .layout-sidebar {
	background-color: #8c515e;
}
.layout-menu-pink .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-pink .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-pink .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-pink .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-pink .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #f8c869;
}
.layout-menu-pink .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #f8c869;
}
.layout-menu-pink .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #ffffff;
}
.layout-menu-pink .layout-sidebar .layout-menu > li > a i {
	color: #ffffff;
}
.layout-menu-pink .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-pink .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #f8c869;
}
.layout-menu-pink .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #343a40;
}
.layout-menu-pink .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #343a40;
}
.layout-menu-pink .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #f8c869;
}
.layout-menu-pink .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #343a40;
}
.layout-menu-pink .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #343a40;
}
.layout-menu-pink .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-pink .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #ffffff;
}
.layout-menu-pink .layout-sidebar .layout-menu > li ul li a i {
	color: #ffffff;
}
.layout-menu-pink .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-pink .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #f8c869;
	font-weight: 600;
}
.layout-menu-pink .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #f8c869;
}

.layout-menu-purple .layout-sidebar {
	background-color: #60476f;
}
.layout-menu-purple .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-purple .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-purple .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-purple .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-purple .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #f8c869;
}
.layout-menu-purple .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #f8c869;
}
.layout-menu-purple .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #ffffff;
}
.layout-menu-purple .layout-sidebar .layout-menu > li > a i {
	color: #ffffff;
}
.layout-menu-purple .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-purple .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #f8c869;
}
.layout-menu-purple .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #343a40;
}
.layout-menu-purple .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #343a40;
}
.layout-menu-purple .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #f8c869;
}
.layout-menu-purple .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #343a40;
}
.layout-menu-purple .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #343a40;
}
.layout-menu-purple .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-purple .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #ffffff;
}
.layout-menu-purple .layout-sidebar .layout-menu > li ul li a i {
	color: #ffffff;
}
.layout-menu-purple .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-purple .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #f8c869;
	font-weight: 600;
}
.layout-menu-purple .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #f8c869;
}

.layout-menu-orange .layout-sidebar {
	background-color: #9b6f61;
}
.layout-menu-orange .layout-sidebar .sidebar-logo .sidebar-pin {
	background-color: #ffffff;
}
.layout-menu-orange .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #2e3440;
}
.layout-menu-orange .layout-sidebar .sidebar-logo .app-name {
	color: #ffffff;
}
.layout-menu-orange .layout-sidebar .layout-menu li > a {
	cursor: pointer;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
	outline: none;
}
.layout-menu-orange .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
	color: #88c0d0;
}
.layout-menu-orange .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #88c0d0;
}
.layout-menu-orange .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #ffffff;
}
.layout-menu-orange .layout-sidebar .layout-menu > li > a i {
	color: #ffffff;
}
.layout-menu-orange .layout-sidebar .layout-menu > li > a:hover {
	background-color: rgba(255, 255, 255, 0.24);
}
.layout-menu-orange .layout-sidebar .layout-menu > li.active-menuitem > a {
	background-color: #88c0d0;
}
.layout-menu-orange .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
	color: #343a40;
}
.layout-menu-orange .layout-sidebar .layout-menu > li.active-menuitem > a i {
	color: #343a40;
}
.layout-menu-orange .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink {
	background-color: #88c0d0;
}
.layout-menu-orange .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink .menuitem-text {
	color: #343a40;
}
.layout-menu-orange .layout-sidebar .layout-menu > li.active-menuitem > a.active-menuitem-routerlink i {
	color: #343a40;
}
.layout-menu-orange .layout-sidebar .layout-menu > li ul {
	background-color: rgba(255, 255, 255, 0.12);
}
.layout-menu-orange .layout-sidebar .layout-menu > li ul li a .menuitem-text {
	color: #ffffff;
}
.layout-menu-orange .layout-sidebar .layout-menu > li ul li a i {
	color: #ffffff;
}
.layout-menu-orange .layout-sidebar .layout-menu > li ul li a:hover {
	background-color: rgba(0, 0, 0, 0.36);
}
.layout-menu-orange .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #88c0d0;
	font-weight: 600;
}
.layout-menu-orange .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #88c0d0;
}

.layout-topbar {
	background-color: white;
	width: 100%;
	-moz-transition: width 0.15s;
	-o-transition: width 0.15s;
	-webkit-transition: width 0.15s;
	transition: width 0.15s;
}
.layout-topbar .p-divider.p-divider-horizontal {
	margin: 0;
}
.layout-topbar .layout-topbar-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row-reverse;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	height: 45px;
	padding: 0 2em;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-left .sidebar-menu-button,
.layout-topbar .layout-topbar-wrapper .layout-topbar-left .megamenu-mobile-button,
.layout-topbar .layout-topbar-wrapper .layout-topbar-left .topbar-menu-mobile-button,
.layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo {
	display: none;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu-button {
	padding: 8px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	font-size: 13px;
	border: none;
	cursor: pointer;
	height: 35px;
	background-color: #ffffff;
	color: #4c566a;
	margin-top: 2px;
	-moz-transition: background-color 0.15s;
	-o-transition: background-color 0.15s;
	-webkit-transition: background-color 0.15s;
	transition: background-color 0.15s;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu-button i {
	font-size: 20px;
	vertical-align: middle;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu-button:hover,
.layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu-button:focus {
	background-color: #1b74c5;
	color: #ffffff;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu {
	position: absolute;
	padding: 12px 18px;
	padding-bottom: 24px;
	background-color: #ffffff;
	top: 60px;
	display: none;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	list-style-type: none;
	-webkit-box-shadow: 0 3px 5px 0 rgba(33, 35, 39, 0.15);
	-moz-box-shadow: 0 3px 5px 0 rgba(33, 35, 39, 0.15);
	box-shadow: 0 3px 5px 0 rgba(33, 35, 39, 0.15);
	z-index: 1000;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu:before {
	width: 100%;
	height: 6px;
	background-color: #1b74c5;
	content: ' ';
	-moz-border-radius-topleft: 2px;
	-webkit-border-top-left-radius: 2px;
	border-top-left-radius: 2px;
	-moz-border-radius-topright: 2px;
	-webkit-border-top-right-radius: 2px;
	border-top-right-radius: 2px;
	position: absolute;
	top: -5px;
	left: 0px;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu > li {
	min-width: 200px;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu > li > a {
	font-size: 12px;
	color: #4c566a;
	padding-bottom: 6px;
	border-bottom: 1px solid rgba(195, 204, 221, 0.5);
	width: 90%;
	display: block;
	cursor: default;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu > li > a i {
	display: none;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu > li > ul {
	padding: 0;
	margin-top: 15px;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu > li > ul > li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	cursor: pointer;
	margin-top: 12px;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu > li > ul > li i {
	font-size: 10px;
	color: #4c566a;
	padding-right: 10px;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu > li > ul > li > span h5 {
	color: #4c566a;
	font-weight: 500;
	margin: 0;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu > li > ul > li > span span {
	color: #9199a9;
	font-size: 12px;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu > li > ul > li.active-row i {
	color: #a3be8c;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu > li > ul > li:hover i {
	color: #1b74c5;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu > li > ul > li:hover > span h5 {
	color: #1b74c5;
	-moz-transition: color 0.15s;
	-o-transition: color 0.15s;
	-webkit-transition: color 0.15s;
	transition: color 0.15s;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu.layout-megamenu-active {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	list-style-type: none;
	margin: 0;
	padding: 0;
	height: 100%;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a {
	width: 100%;
	padding: 0.7em 0.2em 0.7em 0.2em;
	margin: 0;
}

.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a i {
	color: #4c566a;
	font-size: 15px;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a:hover i,
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a:focus i {
	color: #1b74c5;
	-moz-transition: color 0.15s;
	-o-transition: color 0.15s;
	-webkit-transition: color 0.15s;
	transition: color 0.15s;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a.layout-rightpanel-button i {
	font-size: 15px;
	font-weight: bold;
	-moz-transition: transform 0.15s;
	-o-transition: transform 0.15s;
	-webkit-transition: transform 0.15s;
	transition: transform 0.15s;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul {
	display: none;
	position: absolute;
	top: 37px;
	left: 23px;
	list-style-type: none;
	margin: 0;
	padding: 0;
	z-index: 1000;
	min-width: 150px;
	background-color: #ffffff;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .layout-submenu-header {
	background-color: #1b74c5;
	padding: 18px;
	display: block;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul .layout-submenu-header h1 {
	font-size: 16px;
	font-weight: normal;
	margin: 0;
	color: #ffffff;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.layout-topbar-actions
	> li
	> ul
	.layout-submenu-header
	span {
	font-size: 13px;
	color: #f0f4ec;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li {
	padding: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	color: #4c566a;
	cursor: pointer;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li img {
	margin-right: 8px;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li i {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	flex-grow: 1;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li .menu-text p {
	margin: 0;
	color: #1b74c5;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li .menu-text span {
	color: #9199a9;
	font-size: 12px;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.layout-topbar-actions
	> li
	> ul
	> li.layout-submenu-item:hover {
	background-color: #f9fafb;
	-moz-transition: background-color 0.15s;
	-o-transition: background-color 0.15s;
	-webkit-transition: background-color 0.15s;
	transition: background-color 0.15s;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.layout-topbar-actions
	> li
	> ul
	> li.layout-submenu-item:hover
	i {
	color: #4c566a;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li.calendar {
	padding: 0;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li.calendar p-calendar,
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li.calendar .p-calendar {
	width: 100%;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.layout-topbar-actions
	> li
	> ul
	> li.calendar
	.p-datepicker-inline {
	background-color: #ffffff;
	border: none;
	width: 100%;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.layout-topbar-actions
	> li
	> ul
	> li.calendar
	.p-datepicker-inline
	.p-datepicker-next,
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.layout-topbar-actions
	> li
	> ul
	> li.calendar
	.p-datepicker-inline
	.p-datepicker-prev {
	display: none;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.layout-topbar-actions
	> li
	> ul
	> li.calendar
	.p-datepicker-inline
	.p-datepicker-calendar
	th {
	color: #9199a9;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.layout-topbar-actions
	> li
	> ul
	> li.calendar
	.p-datepicker-inline
	.p-datepicker-calendar
	td {
	color: #4c566a;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li.deals {
	padding: 0;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li.deals > ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	list-style-type: none;
	padding: 0;
	margin: 0;
	width: 100%;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li.deals > ul > li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	border-bottom: 0.5px solid rgba(145, 153, 169, 0.3);
	border-right: 0.5px solid rgba(145, 153, 169, 0.3);
	padding: 15px 5px;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li.deals > ul > li:hover {
	background-color: #f9fafb;
	-moz-transition: background-color 0.15s;
	-o-transition: background-color 0.15s;
	-webkit-transition: background-color 0.15s;
	transition: background-color 0.15s;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.layout-topbar-actions
	> li
	> ul
	> li.deals
	> ul
	> li:hover
	i {
	color: #4c566a;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul.search-item-submenu {
	display: block;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	position: static;
	min-width: auto;
	margin-right: 0.5em;
	list-style-type: none;
	background: none;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul.search-item-submenu:before {
	display: none;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul.search-item-submenu > li {
	padding: 0;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.layout-topbar-actions
	> li
	> ul.search-item-submenu
	> li
	.search-input-wrapper {
	position: relative;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.layout-topbar-actions
	> li
	> ul.search-item-submenu
	> li
	.search-input-wrapper
	input {
	box-shadow: 0px 4px 8px rgba(143, 143, 143, 0.05);
	padding: 10px 40px 10px 10px;
	background: #ffffff;
	width: 300px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background-color: #ffffff;
	color: #4c566a;
	font-size: 13px;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.layout-topbar-actions
	> li
	> ul.search-item-submenu
	> li
	.search-input-wrapper
	input::placeholder {
	color: #c9ccd2;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.layout-topbar-actions
	> li
	> ul.search-item-submenu
	> li
	.search-input-wrapper
	input:focus {
	outline: 0 none;
	outline-offset: 0;
	box-shadow: 0 0 0 0.1rem #1b74c5;
	border-color: #1b74c5;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.layout-topbar-actions
	> li
	> ul.search-item-submenu
	> li
	.search-input-wrapper
	i {
	position: absolute;
	right: 12px;
	top: 50%;
	margin-top: -10px;
	color: #d8dee9;
	font-size: 20px;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.layout-topbar-actions
	> li
	> ul.search-item-submenu
	> li
	.search-input-wrapper
	.p-autocomplete-panel {
	background: #eceff4 !important;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.layout-topbar-actions
	> li
	> ul.search-item-submenu
	> li
	.search-input-wrapper
	.p-autocomplete-panel
	.p-autocomplete-items
	.p-autocomplete-item {
	padding: 0.5rem 1rem;
	border-bottom: 1px solid #dee2e6;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.layout-topbar-actions
	> li
	> ul.search-item-submenu
	> li
	.search-input-wrapper
	.p-autocomplete-panel
	.p-autocomplete-items
	.p-autocomplete-item:hover {
	color: #1b74c5;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.layout-topbar-actions
	> li
	> ul.search-item-submenu
	> li
	.search-input-wrapper
	.p-autocomplete-panel
	.p-autocomplete-items
	.p-autocomplete-item
	a {
	color: inherit;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.layout-topbar-actions
	> li
	> ul.search-item-submenu
	> li
	.search-input-wrapper
	.p-autocomplete-panel
	.p-autocomplete-items
	.p-autocomplete-item
	a
	.search-item {
	color: inherit;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.layout-topbar-actions
	> li
	> ul.search-item-submenu
	> li
	.search-input-wrapper
	.p-autocomplete-panel
	.p-autocomplete-items
	.p-autocomplete-item
	a
	.search-item
	.search-heading-font {
	font-size: 11px;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.layout-topbar-actions
	> li
	> ul.search-item-submenu
	> li
	.search-input-wrapper
	.p-autocomplete-panel
	.p-autocomplete-items
	.p-autocomplete-item
	a
	.search-item
	.search-sub-heading-font {
	font-size: 14px;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.layout-topbar-actions
	> li
	> ul.search-item-submenu
	> li
	.search-input-wrapper
	.p-autocomplete-panel
	.p-autocomplete-items
	.p-autocomplete-item
	.p-ink {
	display: none !important;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.active-topmenuitem > ul {
	display: block;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li.search-item > a {
	display: none;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item {
	position: relative;
	background: #fff;
	height: 37px;
	border: 1px solid #1b74c5;
	border-radius: 5px;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item .profile-item-submenu {
	width: 14rem;
	top: 2.8rem;
	border: 1px solid #1b74c5;
	border-radius: 5px;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item > a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	width: 100%;
	height: 100%;
	padding: 0.5em;
	margin: 0 0.5em;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item > a .profile-image-wrapper {
	height: 30px;
	width: 30px;
	border: 1px solid #eceff4;
	border-radius: 2px;
	font-size: 15px;
	background: #eceff4;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item > a .profile-info-wrapper {
	padding: 12px 4px 0px 4px;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item > a .profile-info-wrapper h3 {
	font-size: 18px;
	font-weight: 500;
	color: #4c566a;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item > a .profile-info-wrapper span {
	font-size: 13px;
	font-weight: 500;
	color: #9199a9;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item > ul {
	display: none;
	position: absolute;
	list-style-type: none;
	margin: 0;
	padding: 0;
	z-index: 1000;
	min-width: 250px;
	background-color: #ffffff;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item > ul > li {
	border-bottom: 1px solid rgba(195, 204, 221, 0.3);
	border-top: none;
	cursor: pointer;
	padding: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	color: #4c566a;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item > ul > li i {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	flex-grow: 1;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item > ul > li:first-child {
	border-bottom: none;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item > ul > li.profile-submenu-header {
	padding: 12px 18px 0 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	background-image: url('../../images/topbar/bg-profilemenu@2x.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item > ul > li.profile-submenu-header .performance {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.profile-item
	> ul
	> li.profile-submenu-header
	.performance
	span {
	margin-bottom: 12px;
	font-size: 11px;
	color: #c3ccdd;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item > ul > li.profile-submenu-header .profile {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	text-align: right;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item > ul > li.profile-submenu-header .profile img {
	margin: 0;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item > ul > li.profile-submenu-header .profile h1 {
	color: #eceff4;
	margin: 0;
	font-size: 16px;
	font-weight: normal;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.profile-item
	> ul
	> li.profile-submenu-header
	.profile
	span {
	color: #c3ccdd;
	font-size: 13px;
	margin-bottom: 10px;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item > ul > li .icon {
	flex-grow: 0;
	font-size: 18px;
	margin-right: 10px;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item > ul > li .icon.icon-1 {
	color: #d08770;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item > ul > li .icon.icon-2 {
	color: #81a1c1;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item > ul > li .icon.icon-3 {
	color: #a3be8c;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item > ul > li.layout-submenu-footer {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item > ul > li.layout-submenu-footer button {
	padding: 6px 12px;
	border: none;
	background-color: transparent;
	cursor: pointer;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.profile-item
	> ul
	> li.layout-submenu-footer
	button.signout-button {
	color: #434c5e;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background-color: #d8dee9;
}
.layout-topbar
	.layout-topbar-wrapper
	.layout-topbar-right
	.profile-item
	> ul
	> li.layout-submenu-footer
	button.buy-mirage-button {
	color: #5e81ac;
	text-decoration: underline;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item.active-topmenuitem > ul {
	display: block;
	left: auto;
	right: 0;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item.active-topmenuitem > ul::before {
	left: auto;
	right: 0;
}
.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-mobile-wrapper {
	display: none;
}

@media (min-width: 992px) {
	.layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu > li > ul {
		display: block !important;
	}
}
@media (max-width: 991px) {
	.layout-wrapper .layout-topbar .layout-topbar-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		height: auto;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left {
		padding: 0 1em;
		height: 57px;
		-webkit-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.1);
		-moz-box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.1);
		box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.1);
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left .sidebar-menu-button,
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left .megamenu-mobile-button,
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left .topbar-menu-mobile-button {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		width: 40px;
		height: 40px;
		margin-left: 10px;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		border-radius: 50%;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left .sidebar-menu-button i,
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left .megamenu-mobile-button i,
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left .topbar-menu-mobile-button i {
		color: #4c566a;
		font-size: 26px;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left .sidebar-menu-button:hover i,
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left .megamenu-mobile-button:hover i,
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left .topbar-menu-mobile-button:hover i {
		color: #1b74c5;
		font-size: 26px;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-topbar-logo-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-grow: 1;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-left
		.layout-topbar-logo-wrapper
		.layout-topbar-logo {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-left
		.layout-topbar-logo-wrapper
		.layout-topbar-logo
		.app-name {
		font-size: 22.5px;
		color: #4c566a;
		margin-left: 10px;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-left
		.layout-topbar-logo-wrapper
		.layout-topbar-logo
		img {
		height: 45px;
		width: 45px;
		border: 0 none;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu-button {
		display: none;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu {
		display: block;
		position: fixed;
		top: 75px;
		left: 0;
		width: 240px;
		height: calc(100% - 75px);
		transform: translate3d(-240px, 0px, 0px);
		-moz-transition: transform 0.15s;
		-o-transition: transform 0.15s;
		-webkit-transition: transform 0.15s;
		transition: transform 0.15s;
		margin-top: 0;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu::before {
		display: none;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu > li {
		margin-bottom: 10px;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu > li > a {
		border: none;
		font-size: 14px;
		color: #4c566a;
		padding: 10px;
		width: 100%;
		-moz-border-radius: 6px;
		-webkit-border-radius: 6px;
		border-radius: 6px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		cursor: pointer;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu > li > a i {
		display: block;
		-moz-transition: all 0.15s;
		-o-transition: all 0.15s;
		-webkit-transition: all 0.15s;
		transition: all 0.15s;
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu > li > a:hover {
		background-color: #f9fafb;
		-moz-transition: background-color 0.15s;
		-o-transition: background-color 0.15s;
		-webkit-transition: background-color 0.15s;
		transition: background-color 0.15s;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu > li > ul {
		max-height: 0;
		overflow: hidden;
		background-color: #f9fafb;
		margin-top: 0;
		-moz-transition: 400ms cubic-bezier(0.86, 0, 0.07, 1);
		-o-transition: 400ms cubic-bezier(0.86, 0, 0.07, 1);
		-webkit-transition: 400ms cubic-bezier(0.86, 0, 0.07, 1);
		transition: 400ms cubic-bezier(0.86, 0, 0.07, 1);
		-moz-border-radius-bottomleft: 6px;
		-webkit-border-bottom-left-radius: 6px;
		border-bottom-left-radius: 6px;
		-moz-border-radius-bottomright: 6px;
		-webkit-border-bottom-right-radius: 6px;
		border-bottom-right-radius: 6px;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu > li > ul > li {
		padding: 10px;
		padding-left: 20px;
		margin: 0;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
		-moz-border-radius: 6px;
		-webkit-border-radius: 6px;
		border-radius: 6px;
		flex-direction: row-reverse;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu > li > ul > li i {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-grow: 1;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu > li > ul > li > span h5 {
		font-size: 14px;
		font-weight: normal;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-left
		.layout-megamenu
		> li
		> ul
		> li
		> span
		> span {
		display: none;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu > li > ul > li:hover {
		background-color: #ffffff;
		-moz-transition: background-color 0.15s;
		-o-transition: background-color 0.15s;
		-webkit-transition: background-color 0.15s;
		transition: background-color 0.15s;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-left
		.layout-megamenu
		> li.active-topmenuitem
		> a {
		background-color: #1b74c5;
		-moz-transition: background-color 0.15s;
		-o-transition: background-color 0.15s;
		-webkit-transition: background-color 0.15s;
		transition: background-color 0.15s;
		color: #ffffff;
		border-radius: 0;
		-moz-border-radius-topleft: 4px;
		-webkit-border-top-left-radius: 4px;
		border-top-left-radius: 4px;
		-moz-border-radius-topright: 4px;
		-webkit-border-top-right-radius: 4px;
		border-top-right-radius: 4px;
		-webkit-box-shadow: 0 2px 4px 0 rgba(29, 29, 33, 0.24);
		-moz-box-shadow: 0 2px 4px 0 rgba(29, 29, 33, 0.24);
		box-shadow: 0 2px 4px 0 rgba(29, 29, 33, 0.24);
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-left
		.layout-megamenu
		> li.active-topmenuitem
		> a
		i {
		-webkit-transform: rotate(-180deg);
		-moz-transform: rotate(-180deg);
		-o-transform: rotate(-180deg);
		-ms-transform: rotate(-180deg);
		transform: rotate(-180deg);
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-left
		.layout-megamenu
		> li.active-topmenuitem
		> ul {
		max-height: 450px;
		-webkit-box-shadow: 3px 0 5px 0 rgba(33, 35, 39, 0.15);
		-moz-box-shadow: 3px 0 5px 0 rgba(33, 35, 39, 0.15);
		box-shadow: 3px 0 5px 0 rgba(33, 35, 39, 0.15);
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-right {
	
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions {
		padding: 0;
		height: 50%;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-right
		.layout-topbar-actions
		> li
		> a
		.topbar-icon {
		font-size: 26px;
		color: #4c566a;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a:hover i,
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a:focus i {
		color: #1b74c5;
		-moz-transition: color 0.15s;
		-o-transition: color 0.15s;
		-webkit-transition: color 0.15s;
		transition: color 0.15s;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-right
		.layout-topbar-actions
		> li
		> a.layout-rightpanel-button
		i {
		-moz-transition: transform 0.15s;
		-o-transition: transform 0.15s;
		-webkit-transition: transform 0.15s;
		transition: transform 0.15s;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li::after {
		display: none;
		width: 100%;
		height: 6px;
		background-color: #1b74c5;
		content: ' ';
		-moz-border-radius-topleft: 2px;
		-webkit-border-top-left-radius: 2px;
		border-top-left-radius: 2px;
		-moz-border-radius-topright: 2px;
		-webkit-border-top-right-radius: 2px;
		border-top-right-radius: 2px;
		position: absolute;
		bottom: -1px;
		left: 0px;
		-webkit-animation: fadeInDown 0.5s;
		/* Safari 4.0 - 8.0 */
		animation: fadeInDown 0.5s;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul {
		position: fixed;
		top: 150px;
		left: 1em;
		right: 1em;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul::before {
		display: none;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul > li {
		padding: 18px;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-right
		.layout-topbar-actions
		> li
		> ul
		> li.seach-item {
		padding: 10px;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-right
		.layout-topbar-actions
		> li
		> ul
		> li.seach-item
		> ul {
		padding: 0;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-right
		.layout-topbar-actions
		> li
		> ul
		> li.calendar {
		padding: 0;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-right
		.layout-topbar-actions
		> li
		> ul
		> li.deals {
		padding: 0;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-right
		.layout-topbar-actions
		> li
		> ul
		> li.deals
		> ul {
		padding: 0;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-right
		.layout-topbar-actions
		> li
		> ul
		> li.deals
		> ul
		> li {
		padding: 18px;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-right
		.layout-topbar-actions
		> li.search-item
		> a {
		display: block;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-right
		.layout-topbar-actions
		> li.search-item
		> .search-item-submenu {
		display: none;
		position: fixed;
		list-style-type: none;
		margin: 0;
		top: 150px;
		left: 1em;
		right: 1em;
		z-index: 1000;
		min-width: 250px;
		background-color: #ffffff;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-right
		.layout-topbar-actions
		> li.search-item
		> .search-item-submenu
		span {
		width: 100%;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-right
		.layout-topbar-actions
		> li.search-item
		> .search-item-submenu
		span
		input {
		width: 100%;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-right
		.layout-topbar-actions
		> li.search-item::after {
		left: 14px;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-right
		.layout-topbar-actions
		> li.search-item.active-topmenuitem
		.search-item-submenu {
		display: block;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-right
		.layout-topbar-actions
		> li.active-topmenuitem::after {
		display: block;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions .profile-item {
		display: none;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-mobile-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		list-style-type: none;
		margin: 0;
		padding: 0 1em;
		height: 50%;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-mobile-wrapper > li {
		width: 100%;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-mobile-wrapper > li > a {
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		padding: 0;
		margin: 0;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-right
		.profile-mobile-wrapper
		> li
		> a
		.profile-image-wrapper
		img {
		width: 48px;
		height: 48px;
		border: 0 none;
	}
	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-mobile-wrapper > li > ul {
		display: none;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-right
		.profile-mobile-wrapper
		> li
		> ul
		.menu-text
		> p {
		margin: 3px;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-right
		.profile-mobile-wrapper
		> li
		> ul
		> li:not(.layout-submenu-footer):hover {
		background-color: #f9fafb;
		-moz-transition: background-color 0.15s;
		-o-transition: background-color 0.15s;
		-webkit-transition: background-color 0.15s;
		transition: background-color 0.15s;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-right
		.profile-mobile-wrapper
		> li
		> ul
		> li:not(.layout-submenu-footer):hover
		i {
		color: #4c566a;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-right
		.profile-mobile-wrapper
		> li.active-topmenuitem
		> ul {
		display: block;
		left: auto;
		right: 0;
		width: 100%;
		top: 62px;
	}
	.layout-wrapper
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-right
		.profile-mobile-wrapper
		> li.active-topmenuitem
		> ul::before {
		left: auto;
		right: 0;
		width: 100%;
	}
	.layout-wrapper.layout-topbar-mobile-active
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-left
		.topbar-menu-mobile-button {
		background-color: #4c566a;
		-moz-transition: background-color 0.15s;
		-o-transition: background-color 0.15s;
		-webkit-transition: background-color 0.15s;
		transition: background-color 0.15s;
	}
	.layout-wrapper.layout-topbar-mobile-active
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-left
		.topbar-menu-mobile-button
		i {
		color: #ffffff;
	}
	.layout-wrapper.layout-topbar-mobile-active
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-left
		.topbar-menu-mobile-button:hover {
		background-color: #1b74c5;
		-moz-transition: background-color 0.15s;
		-o-transition: background-color 0.15s;
		-webkit-transition: background-color 0.15s;
		transition: background-color 0.15s;
	}
	.layout-wrapper.layout-topbar-mobile-active
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-left
		.layout-megamenu {
		top: 225px;
		height: calc(100% - 225px);
	}
	.layout-wrapper.layout-topbar-mobile-active .layout-topbar .layout-topbar-wrapper .layout-topbar-right {
		display: block;
	}
	.layout-wrapper.layout-topbar-mobile-active .layout-rightpanel {
		top: 225px;
		height: calc(100% - 225px);
	}
	.layout-wrapper.layout-topbar-mobile-active .layout-sidebar {
		top: 225px;
	}
	.layout-wrapper.layout-topbar-mobile-active .layout-sidebar .layout-menu-container {
		height: calc(100% - 225px);
	}
	.layout-wrapper.layout-megamenu-mobile-active
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-left
		.megamenu-mobile-button {
		background-color: #4c566a;
		-moz-transition: background-color 0.15s;
		-o-transition: background-color 0.15s;
		-webkit-transition: background-color 0.15s;
		transition: background-color 0.15s;
	}
	.layout-wrapper.layout-megamenu-mobile-active
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-left
		.megamenu-mobile-button
		i {
		color: #ffffff;
	}
	.layout-wrapper.layout-megamenu-mobile-active
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-left
		.megamenu-mobile-button:hover {
		background-color: #1b74c5;
		-moz-transition: background-color 0.15s;
		-o-transition: background-color 0.15s;
		-webkit-transition: background-color 0.15s;
		transition: background-color 0.15s;
	}
	.layout-wrapper.layout-megamenu-mobile-active
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-left
		.layout-megamenu {
		transform: translate3d(0px, 0px, 0px);
	}
	.layout-wrapper.layout-megamenu-mobile-active .layout-main-mask {
		display: block;
	}
}
.layout-rightpanel {
	position: fixed;
	z-index: 999;
	right: 0;
	top: 75px;
	background-color: #ffffff;
	height: calc(100% - 75px);
	padding: 0;
	min-width: 285px;
	box-shadow: -3px 0 5px 0 rgba(33, 35, 39, 0.15);
	overflow: auto;
	transform: translate3d(400px, 0px, 0px);
	-moz-transition: transform 0.15s;
	-o-transition: transform 0.15s;
	-webkit-transition: transform 0.15s;
	transition: transform 0.15s;
}
.layout-rightpanel .right-panel-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	background-color: #20252e;
	padding: 24px 18px;
}
.layout-rightpanel .right-panel-header .title span {
	font-size: 14px;
	padding: 2px 6px;
	color: #ffffff;
	border-radius: 4px;
	background-color: #5e81ac;
}
.layout-rightpanel .right-panel-header .title h1 {
	color: #ffffff;
	font-size: 16px;
	margin: 0;
	margin-top: 12px;
	font-weight: normal;
}
.layout-rightpanel .right-panel-header .rightpanel-exit-button:hover i {
	color: #9199a9;
	-moz-transition: color 0.15s;
	-o-transition: color 0.15s;
	-webkit-transition: color 0.15s;
	transition: color 0.15s;
}
.layout-rightpanel .right-panel-header .rightpanel-exit-button i {
	font-size: 20px;
	color: #eceff4;
}
.layout-rightpanel .right-panel-content {
	padding-bottom: 60px;
}
.layout-rightpanel .right-panel-content .right-panel-content-row {
	border-bottom: 1px solid rgba(145, 153, 169, 0.3);
	padding: 24px 0;
}
.layout-rightpanel .right-panel-content .right-panel-content-row:last-child {
	border-bottom: none;
}
.layout-rightpanel .right-panel-content .right-panel-content-row h1 {
	font-size: 18px;
	margin: 0;
	margin-bottom: 18px;
	color: #4c566a;
	font-weight: normal;
}
.layout-rightpanel .right-panel-content .right-panel-content-row .tasks {
	padding: 0;
}
.layout-rightpanel .right-panel-content .right-panel-content-row .tasks .tasks-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 18px;
	margin-bottom: 18px;
}
.layout-rightpanel .right-panel-content .right-panel-content-row .tasks .tasks-header .title h1 {
	margin-bottom: 0px;
}
.layout-rightpanel .right-panel-content .right-panel-content-row .tasks .tasks-header .tasks-info span {
	font-size: 12px;
	color: #4c566a;
}
.layout-rightpanel .right-panel-content .right-panel-content-row .tasks .tasks-header .tasks-info span.highlighted {
	color: #4c566a;
	font-weight: 500;
}
.layout-rightpanel .right-panel-content .right-panel-content-row .tasks .tasks-list {
	list-style: none;
	padding: 0;
}
.layout-rightpanel .right-panel-content .right-panel-content-row .tasks .tasks-list .tasks-list-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 18px;
}
.layout-rightpanel .right-panel-content .right-panel-content-row .tasks .tasks-list .tasks-list-item:nth-child(even) {
	background-color: #f9fafb;
}
.layout-rightpanel .right-panel-content .right-panel-content-row .tasks .tasks-list .tasks-list-item .checkbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}
.layout-rightpanel .right-panel-content .right-panel-content-row .tasks .tasks-list .tasks-list-item .checkbox p {
	margin: 0;
	color: #4c566a;
	margin-left: 10px;
}
.layout-rightpanel .right-panel-content .right-panel-content-row .tasks .tasks-list .tasks-list-item .tasks-day .time {
	border-radius: 2px;
	background-color: #88c0d0;
	color: #ffffff;
	font-size: 12px;
	padding: 3px 10px;
	text-align: center;
	min-width: 55px;
}
.layout-rightpanel
	.right-panel-content
	.right-panel-content-row
	.tasks
	.tasks-list
	.tasks-list-item
	.tasks-day
	.time.later {
	background-color: #9199a9;
}
.layout-rightpanel .right-panel-content .right-panel-content-row .calendar {
	padding: 18px;
}
.layout-rightpanel .right-panel-content .right-panel-content-row .calendar .p-datepicker-inline {
	background-color: #ffffff;
	border: none;
}
.layout-rightpanel .right-panel-content .right-panel-content-row .calendar .p-datepicker-inline .p-datepicker-header {
	font-size: 13px;
	color: #4c566a;
}
.layout-rightpanel
	.right-panel-content
	.right-panel-content-row
	.calendar
	.p-datepicker-inline
	.p-datepicker-header
	.p-datepicker-title
	span {
	color: #4c566a;
}
.layout-rightpanel
	.right-panel-content
	.right-panel-content-row
	.calendar
	.p-datepicker-inline
	.p-datepicker-calendar
	th {
	color: #9199a9;
}
.layout-rightpanel
	.right-panel-content
	.right-panel-content-row
	.calendar
	.p-datepicker-inline
	.p-datepicker-calendar
	td
	a {
	color: #4c566a;
}
.layout-rightpanel .right-panel-content .right-panel-content-row .weather {
	padding: 0;
}
.layout-rightpanel .right-panel-content .right-panel-content-row .weather h1 {
	padding-left: 18px;
}
.layout-rightpanel .right-panel-content .right-panel-content-row .weather .weather-list {
	list-style: none;
	padding: 0;
}
.layout-rightpanel .right-panel-content .right-panel-content-row .weather .weather-list .weather-list-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 8px 18px;
}
.layout-rightpanel
	.right-panel-content
	.right-panel-content-row
	.weather
	.weather-list
	.weather-list-item:nth-child(even) {
	background-color: #f9fafb;
}
.layout-rightpanel
	.right-panel-content
	.right-panel-content-row
	.weather
	.weather-list
	.weather-list-item
	.time-location
	span {
	font-size: 12px;
	color: #9199a9;
}
.layout-rightpanel
	.right-panel-content
	.right-panel-content-row
	.weather
	.weather-list
	.weather-list-item
	.time-location
	p {
	font-weight: 500;
	margin: 0;
	margin-top: 6px;
	color: #4c566a;
}
.layout-rightpanel
	.right-panel-content
	.right-panel-content-row
	.weather
	.weather-list
	.weather-list-item
	.weather-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	width: 75px;
	justify-content: flex-start;
}
.layout-rightpanel
	.right-panel-content
	.right-panel-content-row
	.weather
	.weather-list
	.weather-list-item
	.weather-info
	.weather-icon {
	height: 36px;
	width: 36px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
}
.layout-rightpanel
	.right-panel-content
	.right-panel-content-row
	.weather
	.weather-list
	.weather-list-item
	.weather-info
	.weather-icon.icon-1 {
	background-color: #ebcb8b;
}
.layout-rightpanel
	.right-panel-content
	.right-panel-content-row
	.weather
	.weather-list
	.weather-list-item
	.weather-info
	.weather-icon.icon-2 {
	background-color: #88c0d0;
}
.layout-rightpanel
	.right-panel-content
	.right-panel-content-row
	.weather
	.weather-list
	.weather-list-item
	.weather-info
	.weather-icon.icon-3 {
	background-color: #5e81ac;
}
.layout-rightpanel
	.right-panel-content
	.right-panel-content-row
	.weather
	.weather-list
	.weather-list-item
	.weather-info
	.weather-icon.icon-4 {
	background-color: #d08770;
}
.layout-rightpanel
	.right-panel-content
	.right-panel-content-row
	.weather
	.weather-list
	.weather-list-item
	.weather-info
	.weather-value {
	font-size: 18px;
	color: #4c566a;
}

.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-rightpanel-button i {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);
	-moz-transition: transform 0.15s;
	-o-transition: transform 0.15s;
	-webkit-transition: transform 0.15s;
	transition: transform 0.15s;
}
.layout-wrapper.layout-rightpanel-active .layout-topbar .layout-topbar-wrapper .layout-rightpanel-button i {
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
	-moz-transition: transform 0.15s;
	-o-transition: transform 0.15s;
	-webkit-transition: transform 0.15s;
	transition: transform 0.15s;
}
.layout-wrapper.layout-rightpanel-active .layout-rightpanel {
	transform: translate3d(0px, 0px, 0px);
}

@media (max-width: 991px) {
	.layout-rightpanel-active .layout-rightpanel {
		transform: translate3d(0px, 0px, 0px);
	}
	.layout-rightpanel-active .layout-main-mask {
		display: block;
	}
}
.layout-breadcrumb {
	z-index: 2;
	background-color: #ffffff;
	padding: 9px 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 20px 0;
	width: 100%;
}
.layout-breadcrumb .breadcrumb .route-bar-breadcrumb {
	list-style: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 0;
}
.layout-breadcrumb .breadcrumb .route-bar-breadcrumb li {
	padding: 0 5px;
	font-size: 1.1rem;
	color: #1b74c5;
	margin-left: 0px;
	margin-right: 0px;
}
.layout-breadcrumb .breadcrumb .route-bar-breadcrumb li:first-child {
	padding-left: 0;
}
.layout-breadcrumb .breadcrumb .route-bar-breadcrumb li label {
	color: #343638;
	font-weight: bold;
}
.layout-breadcrumb .breadcrumb .route-bar-breadcrumb li i {
	font-weight: bold;
	font-size: 10px;
}

@media (max-width: 991px) {
	.layout-breadcrumb {
		flex-flow: column;
		align-items: center;
		justify-content: center;
		padding: 10px 0;
	}
	.layout-breadcrumb .breadcrumb {
		width: 100%;
		border-bottom: 1px solid rgba(145, 153, 169, 0.3);
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		justify-content: center;
	}
	.layout-breadcrumb .notification {
		padding: 0 30px;
		padding-top: 10px;
		text-align: center;
	}
}
.layout-content {
	flex: 1 0 auto;
	padding: 3em;
}

.layout-dashboard {
	background: #f6f8fc;
	box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.25);
	border-radius: 20px;
	margin: auto;
	width: 75%;
	padding: 10px;
	margin-top: 1%;
}
.layout-dashboard .showcase-item .showcase-item-content {
	margin: 0.3rem;
	text-align: center;
	padding: 2rem 0;
}
.layout-dashboard .showcase-item .showcase-description {
	color: #1b74c5;
}
.layout-dashboard .p-carousel .p-carousel-content .p-carousel-prev,
.layout-dashboard .p-carousel .p-carousel-content .p-carousel-next {
	border: 1px solid #1b74c5;
	color: #1b74c5;
}
.layout-dashboard .p-carousel .p-carousel-content .p-carousel-prev:enabled:hover,
.layout-dashboard .p-carousel .p-carousel-content .p-carousel-next:enabled:hover {
	color: #ffffff;
	border-color: #1b74c5;
	background: #1b74c5;
}
.layout-dashboard .p-carousel .p-carousel-indicators .p-carousel-indicator button {
	background-color: #c4c4c4;
}
.layout-dashboard .p-carousel .p-carousel-indicators .p-carousel-indicator.p-highlight button {
	background: #1b74c5;
}

.login-page {
	background-color: #f4f8fc;
}
.login-page .branding-container {
	width: 60vw;
	background-image: url('/assets/layout/images/login/login-branding.svg');
	background-position: center;
	background-repeat: no-repeat;
}
.login-page .login-container {
	width: 40vw;
}
.login-page .login-container-layout {
	padding: 35px 20px 0px 60px;
	height: 95vh;
}
.login-page .login-button-text {
	font-family: 'Source Sans 3', sans-serif;
}
.login-page input:placeholder-shown {
	font-size: 13px;
}
.login-page .short-org-logo {
	max-height: 50px;
}
.login-page .sign-in-text {
	font-size: 25px;
	font-weight: 600;
	padding-top: 30px;
	font-family: 'Playfair Display', serif;
}
.login-page .sign-in-button button {
	font-size: 15px;
}
.login-page .info-text {
	color: #a1a1a1;
	font-size: 15px;
}
.login-page .p-inputtext.ng-touched.ng-invalid {
	border: 1px solid #dc3545;
}
.login-page .social-link-buttons {
	height: 36px;
	width: 36px;
}
.login-page .branding-logo {
	min-height: 85px;
	max-height: 95px;
	min-width: 455px;
	max-width: 480px;
}
.login-page .contact-support img {
	height: 1.6em;
}
.login-page .p-divider-content {
	z-index: 0;
}
@media screen and (max-width: 576px) {
	.login-page .branding-container {
		display: none !important;
	}
	.login-page .login-container {
		width: 100vw;
	}
}

.sso-overlay {
	background-color: #f4f8fc;
}

.exception-body::after {
	content: ' ';
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0.7;
}
.exception-body .exception-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
}
.exception-body .exception-content .moon {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}
.exception-body .exception-content .exception-panel {
	height: 100vh;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid;
	border-top: none;
	width: 50%;
}
.exception-body .exception-content .exception-panel .exception-panel-content {
	z-index: 100;
	height: 50%;
	width: 50%;
}
.exception-body .exception-content .exception-panel .exception-panel-content h1 {
	font-size: 42px;
	font-weight: 100;
	letter-spacing: 1px;
	margin: 20px 0;
}
.exception-body .exception-content .exception-panel .exception-panel-content .seperator {
	width: 99px;
	height: 1px;
	background-color: #9199a9;
}
.exception-body .exception-content .exception-panel .exception-panel-content .tag {
	font-size: 14px;
	font-weight: 500;
	border-radius: 4px;
	padding: 3px 6px;
	margin-bottom: 20px;
}
.exception-body .exception-content .exception-panel .exception-panel-content p {
	margin-top: 25px;
	font-size: 16px;
}
.exception-body .exception-content .exception-panel .exception-panel-content button {
	margin-top: 30px;
	background-color: #5e81ac;
	border: none;
}
.exception-body .exception-content .desert {
	width: 100%;
	height: 30vh;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	bottom: 0;
	left: 0;
}
.exception-body.notfound {
	background-color: #20252e;
}
.exception-body.notfound::after {
	background-color: #444c5b -9%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#444c5b -9%), to(#20252e));
	background-image: -webkit-linear-gradient(bottom, #444c5b -9%, #20252e);
	background-image: -moz-linear-gradient(bottom, #444c5b -9%, #20252e);
	background-image: -ms-linear-gradient(bottom, #444c5b -9%, #20252e);
	background-image: -o-linear-gradient(bottom, #444c5b -9%, #20252e);
	background-image: linear-gradient(to bottom, #444c5b -9%, #20252e);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#444c5b -9%", endColorstr="#20252e");
}
.exception-body.notfound .exception-content .exception-panel {
	border-color: rgba(76, 86, 106, 0.3);
	background-color: rgba(0, 0, 0, 0.3);
}
.exception-body.notfound .exception-content .exception-panel .exception-panel-content h1 {
	color: #9199a9;
}
.exception-body.notfound .exception-content .exception-panel .exception-panel-content .tag {
	background-color: #eceff4;
}
.exception-body.notfound .exception-content .exception-panel .exception-panel-content p {
	color: #c3ccdd;
}
.exception-body.notfound .exception-content .desert {
	background-image: url('../../images/pages/asset-desert-night.svg');
}
.exception-body.error {
	background-color: #d07b70;
}
.exception-body.error::after {
	background-color: #5b4444 -9%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#5b4444 -9%), to(#20262e));
	background-image: -webkit-linear-gradient(bottom, #5b4444 -9%, #20262e);
	background-image: -moz-linear-gradient(bottom, #5b4444 -9%, #20262e);
	background-image: -ms-linear-gradient(bottom, #5b4444 -9%, #20262e);
	background-image: -o-linear-gradient(bottom, #5b4444 -9%, #20262e);
	background-image: linear-gradient(to bottom, #5b4444 -9%, #20262e);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5b4444 -9%", endColorstr="#20262e");
}
.exception-body.error .exception-content .exception-panel {
	border-color: rgba(195, 204, 221, 0.3);
	background-color: rgba(255, 255, 255, 0.3);
}
.exception-body.error .exception-content .exception-panel .exception-panel-content h1 {
	color: #c3ccdd;
}
.exception-body.error .exception-content .exception-panel .exception-panel-content .tag {
	background-color: #bf616a;
	color: #ffffff;
}
.exception-body.error .exception-content .exception-panel .exception-panel-content p {
	color: #c3ccdd;
}
.exception-body.error .exception-content .desert {
	background-image: url('../../images/pages/asset-desert-error.svg');
}
.exception-body.access {
	background-color: #d08770;
}
.exception-body.access::after {
	background-color: #5b5544 -9%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#5b5544 -9%), to(#20262e));
	background-image: -webkit-linear-gradient(bottom, #5b5544 -9%, #20262e);
	background-image: -moz-linear-gradient(bottom, #5b5544 -9%, #20262e);
	background-image: -ms-linear-gradient(bottom, #5b5544 -9%, #20262e);
	background-image: -o-linear-gradient(bottom, #5b5544 -9%, #20262e);
	background-image: linear-gradient(to bottom, #5b5544 -9%, #20262e);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#5b5544 -9%", endColorstr="#20262e");
}
.exception-body.access .exception-content .exception-panel {
	border-color: rgba(76, 86, 106, 0.3);
	background-color: rgba(255, 255, 255, 0.3);
}
.exception-body.access .exception-content .exception-panel .exception-panel-content h1 {
	color: #c3ccdd;
}
.exception-body.access .exception-content .exception-panel .exception-panel-content .tag {
	background-color: #ebcb8b;
}
.exception-body.access .exception-content .exception-panel .exception-panel-content p {
	color: #c3ccdd;
}
.exception-body.access .exception-content .desert {
	background-image: url('../../images/pages/asset-desert-night-orange.svg');
}

@media (max-width: 740px) {
	.exception-body .exception-content .exception-panel {
		width: 100%;
	}
	.exception-body .exception-content .exception-panel .exception-panel-content {
		width: 90%;
	}
	.exception-body .exception-content .desert {
		background-position: right;
		height: 50vh;
	}
}
.landing-body {
	display: flex;
	flex-flow: column;
	background-color: #ffffff;
}
.landing-body h1 {
	font-size: 42px;
	letter-spacing: 1px;
	color: #20252e;
	margin: 0;
	font-weight: 100;
}
.landing-body .landing-nav-menu {
	width: 100%;
	height: 72px;
	background-color: #eceff4;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
	padding: 0 10%;
}
.landing-body .landing-nav-menu .logo {
	width: 155px;
}
.landing-body .landing-nav-menu .logo a {
	display: flex;
	align-items: center;
}
.landing-body .landing-nav-menu .logo .app-name {
	font-size: 22.5px;
	color: #2e3440;
	margin-left: 10px;
}
.landing-body .landing-nav-menu .logo img {
	width: 50px;
}
.landing-body .landing-nav-menu .nav-menu-wrapper ul {
	display: flex;
	align-items: center;
	justify-content: space-around;
	list-style: none;
	padding: 0;
}
.landing-body .landing-nav-menu .nav-menu-wrapper ul li {
	padding: 15px;
}
.landing-body .landing-nav-menu .nav-menu-wrapper ul li a {
	color: #5a657c;
	font-size: 16px;
	font-weight: 500;
}
.landing-body .landing-nav-menu .nav-menu-wrapper ul li a:hover {
	color: #8292b3;
	-moz-transition: color 0.15s;
	-o-transition: color 0.15s;
	-webkit-transition: color 0.15s;
	transition: color 0.15s;
}
.landing-body .landing-nav-menu .buy-button {
	width: 155px;
}
.landing-body .landing-nav-menu .buy-button button {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background-color: #d08770;
	border: none;
	padding: 15px 20px;
}
.landing-body .landing-nav-menu .buy-button button:hover {
	background-color: #ea987c;
	-moz-transition: background-color 0.15s;
	-o-transition: background-color 0.15s;
	-webkit-transition: background-color 0.15s;
	transition: background-color 0.15s;
}
.landing-body .landing-nav-menu .buy-button button a {
	color: #ffffff;
	font-size: 14px;
}
.landing-body .landing-nav-menu .menu-button {
	display: none;
}
.landing-body .landing-nav-menu .menu-button .landing-menu-button {
	width: 36px;
	height: 36px;
	justify-content: center;
	align-items: center;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	color: #2e3440;
	font-size: 22px;
}
.landing-body .landing-nav-menu .menu-button .landing-menu-button .landing-menu-button-icon {
	background: url('../../images/landing/icon-mainmenu-black.svg');
	background-repeat: no-repeat;
	background-size: 18px 23px;
	width: 18px;
	height: 24px;
	text-align: center;
}
.landing-body .landing-header-wrapper {
	height: 600px;
	position: relative;
	background-color: #20252e;
}
.landing-body .landing-header-wrapper .sun {
	display: flex;
	justify-content: flex-end;
	height: 100%;
	align-items: flex-start;
	position: absolute;
	top: 0px;
	z-index: 999;
	width: 100%;
}
.landing-body .landing-header-wrapper .sun img {
	height: 100%;
}
.landing-body .landing-header-wrapper .landing-header-content {
	height: 100%;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	top: 0;
	position: absolute;
	width: 100%;
	z-index: 999;
}
.landing-body .landing-header-wrapper .landing-header-content h1 {
	color: #c3ccdd;
}
.landing-body .landing-header-wrapper .landing-header-content p {
	font-size: 24px;
	color: #c3ccdd;
	margin: 1.5rem 0 1.5rem 0;
}
.landing-body .landing-header-wrapper .landing-header-content .video-button button {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background-color: #d08770;
	padding: 15px 20px;
	color: #ffffff;
	font-size: 14px;
	border: none;
	cursor: pointer;
}
.landing-body .landing-header-wrapper .landing-header-content .video-button button:hover {
	background-color: #ea987c;
	-moz-transition: background-color 0.15s;
	-o-transition: background-color 0.15s;
	-webkit-transition: background-color 0.15s;
	transition: background-color 0.15s;
}
.landing-body .landing-header-wrapper .tree {
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	height: 100%;
}
.landing-body .section .section-title {
	text-align: center;
}
.landing-body .section .section-title p {
	font-size: 16px;
	color: #4c566a;
	margin: 0;
	margin-top: 8px;
}
.landing-body .section#meet-mirage {
	background-color: #eceff4;
	padding: 24px 10% 170px;
	position: relative;
}
.landing-body .section#meet-mirage .feature-cards {
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding-top: 65px;
	flex-flow: wrap;
}
.landing-body .section#meet-mirage .feature-cards .feature-card {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background-color: #ffffff;
	text-align: center;
	margin-bottom: 32px;
}
.landing-body .section#meet-mirage .feature-cards .feature-card .feature-card-img {
	margin-bottom: 16px;
}
.landing-body .section#meet-mirage .feature-cards .feature-card .feature-card-img img {
	width: 250px;
	height: auto;
}
.landing-body .section#meet-mirage .feature-cards .feature-card .feature-card-title {
	color: #20252e;
	font-size: 16px;
	font-weight: 500;
}
.landing-body .section#meet-mirage .feature-cards .feature-card .feature-card-content {
	color: #5a657c;
	padding: 12px 18px 25px;
	width: 300px;
}
.landing-body .section#meet-mirage .buy-mirage-promo-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: -50%;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 998;
}
.landing-body .section#meet-mirage .buy-mirage-promo-wrapper .buy-mirage-promo {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background-color: #2e3440;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 18px 40px;
	flex-flow: wrap;
}
.landing-body .section#meet-mirage .buy-mirage-promo-wrapper .buy-mirage-promo .promo-content {
	width: 70%;
}
.landing-body .section#meet-mirage .buy-mirage-promo-wrapper .buy-mirage-promo .promo-content h1 {
	color: #c3ccdd;
}
.landing-body .section#meet-mirage .buy-mirage-promo-wrapper .buy-mirage-promo .promo-content p {
	color: #ffffff;
	font-size: 16px;
}
.landing-body .section#meet-mirage .buy-mirage-promo-wrapper .buy-mirage-promo .promo-button button {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background-color: #d08770;
	padding: 15px 20px;
	color: #ffffff;
	font-size: 14px;
	border: none;
	cursor: pointer;
}
.landing-body .section#meet-mirage .buy-mirage-promo-wrapper .buy-mirage-promo .promo-button button:hover {
	background-color: #ea987c;
	-moz-transition: background-color 0.15s;
	-o-transition: background-color 0.15s;
	-webkit-transition: background-color 0.15s;
	transition: background-color 0.15s;
}
.landing-body .section#features {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 140px 10% 60px;
	position: relative;
	flex-flow: wrap;
}
.landing-body .section#features .features-img {
	z-index: 998;
	margin-bottom: 24px;
}
.landing-body .section#features .features-img img {
	height: 400px;
	width: auto;
}
.landing-body .section#features .features-rows {
	display: flex;
	flex-flow: column;
	z-index: 998;
}
.landing-body .section#features .features-rows .features-row {
	display: flex;
	align-items: center;
	justify-content: space-around;
	z-index: 998;
	padding: 24px;
}
.landing-body .section#features .features-rows .features-row .features-row-icon {
	background-color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 70px;
	height: 70px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}
.landing-body .section#features .features-rows .features-row .features-row-icon .feature {
	width: 32px;
	height: 32px;
	text-align: center;
}
.landing-body .section#features .features-rows .features-row .features-row-icon .feature.first {
	background: url('../../images/landing/icon-feature-1.svg');
	background-repeat: no-repeat;
	background-size: 32px 32px;
}
.landing-body .section#features .features-rows .features-row .features-row-icon .feature.second {
	background: url('../../images/landing/icon-feature-2.svg');
	background-repeat: no-repeat;
	background-size: 32px 32px;
}
.landing-body .section#features .features-rows .features-row .features-row-icon .feature.third {
	background: url('../../images/landing/icon-feature-3.svg');
	background-repeat: no-repeat;
	background-size: 32px 32px;
}
.landing-body .section#features .features-rows .features-row .features-row-content {
	margin-left: 24px;
	width: 80%;
}
.landing-body .section#features .features-rows .features-row .features-row-content h3 {
	color: #20252e;
	font-size: 16px;
	font-weight: 500;
	margin: 0;
}
.landing-body .section#features .features-rows .features-row .features-row-content span {
	color: #5a657c;
	font-size: 14px;
}
.landing-body .section#features .features-rows .features-row:hover {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	box-shadow: 0 1px 30px 3px rgba(0, 0, 0, 0.07);
	background-color: #ffffff;
}
.landing-body .section#features .features-rows .features-row:hover .features-row-icon .feature {
	width: 70px;
	height: 70px;
}
.landing-body .section#features .features-rows .features-row:hover .features-row-icon .feature.first {
	background: url('../../images/landing/icon-feature-1-hover.svg');
	background-repeat: no-repeat;
	background-size: 70px 70px;
}
.landing-body .section#features .features-rows .features-row:hover .features-row-icon .feature.second {
	background: url('../../images/landing/icon-feature-2-hover.svg');
	background-repeat: no-repeat;
	background-size: 70px 70px;
}
.landing-body .section#features .features-rows .features-row:hover .features-row-icon .feature.third {
	background: url('../../images/landing/icon-feature-3-hover.svg');
	background-repeat: no-repeat;
	background-size: 70px 70px;
}
.landing-body .section#features .effect-feature {
	position: absolute;
	bottom: 0px;
	left: 0;
	width: 100%;
	max-height: 350px;
	z-index: 997;
}
.landing-body .section#pricing {
	background-color: #eceff4;
	padding: 36px 10% 60px;
}
.landing-body .section#pricing .pricing-cards {
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding-top: 35px;
	flex-flow: wrap;
}
.landing-body .section#pricing .pricing-cards .pricing-card {
	position: relative;
	display: flex;
	flex-flow: column;
	-moz-border-radius: 4.4px;
	-webkit-border-radius: 4.4px;
	border-radius: 4.4px;
	box-shadow: 0 1px 30px 3px rgba(0, 0, 0, 0.07);
	background-color: #ffffff;
	padding: 40px 60px 23px;
	text-align: center;
	min-height: 400px;
	margin-bottom: 36px;
}
.landing-body .section#pricing .pricing-cards .pricing-card .pricing-card-title h2 {
	color: #2e3440;
	font-size: 20px;
	margin: 0;
}
.landing-body .section#pricing .pricing-cards .pricing-card .pricing-card-title p {
	color: #5a657c;
	font-size: 18px;
	margin: 0px;
}
.landing-body .section#pricing .pricing-cards .pricing-card .pricing-card-price {
	color: #5e81ac;
	font-weight: bold;
	font-size: 32px;
	padding: 24px 0;
}
.landing-body .section#pricing .pricing-cards .pricing-card .pricing-license-rows .pricing-license-row {
	color: #5a657c;
	font-size: 14px;
	font-weight: 500;
	padding: 4px 0;
}
.landing-body .section#pricing .pricing-cards .pricing-card .pricing-license-rows .pricing-license-row.disabled {
	color: #c3ccdd;
}
.landing-body .section#pricing .pricing-cards .pricing-card .pricing-license-button {
	padding-top: 24px;
}
.landing-body .section#pricing .pricing-cards .pricing-card .pricing-license-button button {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background-color: #88c0d0;
	padding: 15px 0;
	text-align: center;
	color: #ffffff;
	font-size: 14px;
	border: none;
	width: 160px;
	cursor: pointer;
}
.landing-body .section#pricing .pricing-cards .pricing-card .pricing-license-button button:hover {
	background-color: #97d9ec;
	-moz-transition: background-color 0.15s;
	-o-transition: background-color 0.15s;
	-webkit-transition: background-color 0.15s;
	transition: background-color 0.15s;
}
.landing-body .section#pricing .pricing-cards .pricing-card::before {
	display: none;
	width: 100%;
	height: 13px;
	background-color: #1b74c5;
	content: ' ';
	-moz-border-radius-topleft: 4px;
	-webkit-border-top-left-radius: 4px;
	border-top-left-radius: 4px;
	-moz-border-radius-topright: 4px;
	-webkit-border-top-right-radius: 4px;
	border-top-right-radius: 4px;
	position: absolute;
	top: 0px;
	left: 0px;
}
.landing-body .section#pricing .pricing-cards .pricing-card.premium {
	padding: 53px 75px 25px;
	box-shadow: 0 1px 33px 3px rgba(0, 0, 0, 0.07);
}
.landing-body .section#pricing .pricing-cards .pricing-card.premium:before {
	display: block;
}
.landing-body .section#multimedia {
	padding: 35px 10% 60px;
	position: relative;
}
.landing-body .section#multimedia .multimedia-video-wrapper {
	display: flex;
	justify-content: center;
	padding-top: 35px;
	z-index: 998;
	position: relative;
}
.landing-body .section#multimedia .multimedia-video-wrapper iframe {
	width: 570px;
	height: 300px;
}
.landing-body .section .effect img {
	position: absolute;
	bottom: 0px;
	width: 100%;
	left: 0;
	max-height: 350px;
	z-index: 997;
}
.landing-body .footer {
	background-color: #20252e;
	padding: 10px 10%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 120px;
}
.landing-body .footer .logo-text {
	display: flex;
	align-items: center;
	height: 100%;
}
.landing-body .footer .logo-text img {
	height: 50px;
	width: 50px;
}
.landing-body .footer .logo-text .text {
	margin-left: 15px;
}
.landing-body .footer .logo-text .text h1 {
	font-size: 18px;
	color: #c3ccdd;
	font-weight: normal;
	margin: 0;
}
.landing-body .footer .logo-text .text span {
	color: #9199a9;
	font-size: 12px;
}
.landing-body .footer .icons {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	font-size: 18px;
	color: #9199a9;
	height: 100%;
}
.landing-body .footer .icons .icon:first-child img {
	margin-left: 0;
}
.landing-body .footer .icons .icon img {
	margin-left: 20px;
	cursor: pointer;
}
.landing-body .landing-mask {
	display: none;
	background-color: #2e3440;
	position: fixed;
	z-index: 1000;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	animation-name: fadeinmask;
	animation-duration: 0.15s;
	opacity: 0.8;
	filter: alpha(opacity=80);
	cursor: pointer;
}

@media (max-width: 991px) {
	.landing-body .landing-nav-menu {
		z-index: 10001;
	}
	.landing-body .landing-nav-menu .nav-menu-wrapper {
		position: absolute;
		width: 100%;
		top: 50px;
		left: 0;
	}
	.landing-body .landing-nav-menu .nav-menu-wrapper ul {
		flex-flow: column;
		background-color: #f9fafb;
		max-height: 0;
		overflow: auto;
		-moz-transition: max-height 0.4s;
		-o-transition: max-height 0.4s;
		-webkit-transition: max-height 0.4s;
		transition: max-height 0.4s;
	}
	.landing-body .landing-nav-menu .nav-menu-wrapper ul li {
		width: 100%;
		text-align: center;
	}
	.landing-body .landing-nav-menu .nav-menu-wrapper ul li:hover {
		background-color: #d8dee9;
		-moz-transition: background-color 0.3s;
		-o-transition: background-color 0.3s;
		-webkit-transition: background-color 0.3s;
		transition: background-color 0.3s;
	}
	.landing-body .landing-nav-menu .nav-menu-wrapper ul li.active-link {
		background-color: #26282e;
	}
	.landing-body .landing-nav-menu .nav-menu-wrapper ul li.active-link a {
		color: #ffffff;
	}
	.landing-body .landing-nav-menu .buy-button {
		display: none;
	}
	.landing-body .landing-nav-menu .menu-button {
		display: block;
	}
	.landing-body .landing-nav-menu .menu-button .landing-menu-button {
		display: flex;
	}
	.landing-body .landing-nav-menu .menu-button .landing-menu-button:hover {
		background-color: #6c7a96;
		-moz-transition: background-color 0.15s;
		-o-transition: background-color 0.15s;
		-webkit-transition: background-color 0.15s;
		transition: background-color 0.15s;
	}
	.landing-body .landing-nav-menu .landing-menu-button.landing-menu-active {
		background-color: #2e3440;
		-moz-transition: background-color 0.15s;
		-o-transition: background-color 0.15s;
		-webkit-transition: background-color 0.15s;
		transition: background-color 0.15s;
		color: #ffffff;
	}
	.landing-body .landing-nav-menu .landing-menu-button.landing-menu-active .landing-menu-button-icon {
		background: url('../../images/landing/icon-mainmenu-white.svg');
		background-repeat: no-repeat;
		background-size: 18px 23px;
	}
	.landing-body .landing-nav-menu .nav-menu-wrapper ul.landing-menu-active {
		max-height: 300px;
		overflow: hidden;
	}
	.landing-body .landing-mask.landing-menu-active {
		display: block;
	}
	.landing-body .landing-header-wrapper .landing-header-content {
		text-align: center;
	}
	.landing-body .landing-header-wrapper .sun {
		display: none;
	}
	.landing-body .section#meet-mirage {
		padding: 24px 10% 260px;
	}
	.landing-body .section#meet-mirage .buy-mirage-promo-wrapper .buy-mirage-promo .promo-content {
		width: 100%;
	}
	.landing-body .section#meet-mirage .buy-mirage-promo-wrapper .buy-mirage-promo .promo-button {
		width: 100%;
	}
	.landing-body .section#features {
		padding: 260px 10% 60px;
	}
	.landing-body .section#features .features-img img {
		height: 300px;
	}
	.landing-body .section#features .features-rows .features-row {
		padding: 17px 12px;
	}
	.landing-body .section#features .features-rows .features-row .features-row-icon {
		width: 46px;
		height: 46px;
	}
	.landing-body .section#features .features-rows .features-row .features-row-icon .feature {
		background-repeat: no-repeat;
		background-size: 20px 20px;
		width: 20px;
		height: 20px;
	}
	.landing-body .section#features .features-rows .features-row .features-row-icon .feature.first {
		background-repeat: no-repeat;
		background-size: 20px 20px;
	}
	.landing-body .section#features .features-rows .features-row .features-row-icon .feature.second {
		background-repeat: no-repeat;
		background-size: 20px 20px;
	}
	.landing-body .section#features .features-rows .features-row .features-row-icon .feature.third {
		background-repeat: no-repeat;
		background-size: 20px 20px;
	}
	.landing-body .section#features .features-rows .features-row:hover .features-row-icon .feature {
		width: 46px;
		height: 46px;
	}
	.landing-body .section#features .features-rows .features-row:hover .features-row-icon .feature.first {
		background: url('../../images/landing/icon-feature-1-hover.svg');
		background-repeat: no-repeat;
		background-size: 46px 46px;
	}
	.landing-body .section#features .features-rows .features-row:hover .features-row-icon .feature.second {
		background: url('../../images/landing/icon-feature-2-hover.svg');
		background-repeat: no-repeat;
		background-size: 46px 46px;
	}
	.landing-body .section#features .features-rows .features-row:hover .features-row-icon .feature.third {
		background: url('../../images/landing/icon-feature-3-hover.svg');
		background-repeat: no-repeat;
		background-size: 46px 46px;
	}
	.landing-body .section#features .features-rows .features-row .features-row-content {
		margin-left: 12px;
	}
	.landing-body .footer {
		height: 100%;
		flex-flow: column;
	}
	.landing-body .footer .logo-text {
		flex-flow: column;
		text-align: center;
		margin-bottom: 10px;
	}
	.landing-body .footer .logo-text .text {
		margin-top: 10px;
		margin-left: 0;
	}
}
.layout-config-button {
	display: block;
	position: fixed;
	width: 52px;
	height: 52px;
	line-height: 52px;
	background-color: #fafafa;
	text-align: center;
	top: 230px;
	right: 0;
	z-index: 1000000;
	cursor: pointer;
	-moz-border-radius-topleft: 4px;
	-webkit-border-top-left-radius: 4px;
	border-top-left-radius: 4px;
	-moz-border-radius-bottomleft: 4px;
	-webkit-border-bottom-left-radius: 4px;
	border-bottom-left-radius: 4px;
	-moz-transition: background-color 0.15s;
	-o-transition: background-color 0.15s;
	-webkit-transition: background-color 0.15s;
	transition: background-color 0.15s;
	-webkit-box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 5px 22px 4px rgba(0, 0, 0, 0.12),
		0 12px 17px 2px rgba(0, 0, 0, 0.14);
	-moz-box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 5px 22px 4px rgba(0, 0, 0, 0.12),
		0 12px 17px 2px rgba(0, 0, 0, 0.14);
	box-shadow: 0 7px 8px -4px rgba(0, 0, 0, 0.2), 0 5px 22px 4px rgba(0, 0, 0, 0.12), 0 12px 17px 2px rgba(0, 0, 0, 0.14);
}
.layout-config-button i {
	font-size: 40px;
	font-weight: bold;
	color: #155a98;
	line-height: inherit;
	cursor: pointer;
}
.layout-config-button:hover i {
	color: #1867af;
}

.layout-config {
	z-index: 1000002;
	position: fixed;
	padding: 0;
	display: none;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: 52vw;
	height: 70%;
}
.layout-config .layout-config-content {
	position: relative;
	height: 100%;
}
.layout-config .layout-config-content > form {
	height: 100%;
}
.layout-config .layout-config-close {
	position: absolute;
	width: 36px;
	height: 36px;
	line-height: 36px;
	text-align: center;
	right: -18px;
	top: -18px;
	z-index: 1;
	background-color: #e91e63;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-moz-transition: background-color 0.15s;
	-o-transition: background-color 0.15s;
	-webkit-transition: background-color 0.15s;
	transition: background-color 0.15s;
}
.layout-config .layout-config-close i {
	color: #ffffff;
	line-height: inherit;
	font-size: 24px;
}
.layout-config .layout-config-close:hover {
	background-color: #d81b60;
}
.layout-config.layout-config-enter {
	display: block;
	opacity: 0;
	transform: translateX(-50%) translateY(-50%) scale(0.7);
}
.layout-config.layout-config-enter-active {
	opacity: 1;
	transform: translateX(-50%) translateY(-50%) scale(1);
	transition: all 150ms cubic-bezier(0, 0, 0.2, 1);
}
.layout-config.layout-config-enter-done {
	display: block;
}
.layout-config.layout-config-exit {
	opacity: 1;
	display: block;
}
.layout-config.layout-config-exit-active {
	opacity: 0;
	transform: translateX(-50%) translateY(-50%);
	transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.layout-config.layout-config-exit-done {
	display: none;
}
.layout-config .layout-config-option {
	overflow: hidden;
	text-align: center;
	display: inline-block;
	position: relative;
	border-radius: 4px;
	border: solid 1px #d8dee9;
	background-color: transparent;
	-moz-transition: transform 0.15s;
	-o-transition: transform 0.15s;
	-webkit-transition: transform 0.15s;
	transition: transform 0.15s;
}
.layout-config .layout-config-option i {
	line-height: inherit;
	font-size: 28px;
	font-weight: bold;
	color: #a3be8c;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -23px;
	margin-top: -40px;
	padding: 0.35em;
	box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.25);
	background-color: #ffffff;
	border-radius: 50%;
	width: 47px;
	height: 47px;
}
.layout-config .layout-config-option:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
.layout-config .layout-config-option .layout-config-option-text {
	display: block;
	padding: 0.5em;
	text-align: center;
	color: var(--text-color);
	font-weight: 500;
	text-transform: capitalize;
}
.layout-config .layout-config-option.layout-config-option-theme {
	border: 0 none;
	height: 84px;
	width: 84px;
}
.layout-config .layout-config-option.layout-config-option-theme i {
	line-height: inherit;
	font-size: 28px;
	color: #a3be8c;
	font-weight: bold;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-left: -23px;
	margin-top: -23px;
	box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.25);
	background-color: #ffffff;
	border-radius: 50%;
	width: 47px;
	height: 47px;
}
.layout-config .layout-config-option img {
	border: 0 none;
	width: 100%;
}
.layout-config .p-col {
	text-align: center;
}
.layout-config .p-tabview {
	border: 0 none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
}
.layout-config .p-tabview .p-tabview-nav {
	background: var(--surface-a);
}
.layout-config .p-tabview .p-tabview-nav li {
	vertical-align: bottom;
	top: auto;
	margin: 0 0.125em 0px 0;
	border: 0 none;
	-moz-transition: border-color 0.15s;
	-o-transition: border-color 0.15s;
	-webkit-transition: border-color 0.15s;
	transition: border-color 0.15s;
	border-radius: 0;
}
.layout-config .p-tabview .p-tabview-panels {
	height: 100%;
	overflow: auto;
}
.layout-config .p-tabview .p-tabview-panels .p-tabview-panel {
	padding: 15px 20px 15px 20px;
	height: 100%;
}
.layout-config .layout-config-subtitle {
	font-size: 18px;
	letter-spacing: 0.2px;
	margin: 0.75em 0;
}
.layout-config .layout-config-subtitle:first-child {
	margin-top: 0;
}
.layout-config p {
	line-height: 1.5;
	margin-top: 0;
	text-align: center;
	margin-bottom: 2em;
}
.layout-config h1 {
	text-align: center;
	font-size: 42px;
	font-weight: 100;
	margin: 0.3em;
}

.layout-config-mask {
	background-color: #20252e;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000001;
	width: 100%;
	height: 100%;
	opacity: 0.7;
	animation-name: fadeInMask;
	animation-duration: 0.15s;
}

.blocked-scroll-config {
	overflow: hidden;
}

@media (max-width: 991px) {
	.layout-config {
		width: calc(100% - 40px);
	}
}
.widget-overview-box {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	width: 100%;
	min-height: 90px;
	padding: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
}
.widget-overview-box .overview-box-icon img {
	height: 50px;
	width: 50px;
}
.widget-overview-box .overview-box-text h5 {
	color: #ffffff;
	font-size: 16px;
	font-weight: 500;
	margin: 0;
}
.widget-overview-box .overview-box-text span {
	color: #dcf2f9;
	font-size: 13px;
	font-weight: 500;
	margin: 0;
}
.widget-overview-box .overview-box-status {
	color: #ffffff;
	font-weight: 500;
	font-size: 16px;
	width: 43px;
	height: 22px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
}
.widget-overview-box.overview-box-1 {
	background: -moz-linear-gradient(256deg, #65afc4 0%, #88c0d0 100%);
	/* ff3.6+ */
	background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #65afc4), color-stop(100%, #88c0d0));
	/* safari4+,chrome */
	background: -webkit-linear-gradient(256deg, #65afc4 0%, #88c0d0 100%);
	/* safari5.1+,chrome10+ */
	background: -o-linear-gradient(256deg, #65afc4 0%, #88c0d0 100%);
	/* opera 11.10+ */
	background: -ms-linear-gradient(256deg, #65afc4 0%, #88c0d0 100%);
	/* ie10+ */
	background: linear-gradient(256deg, #65afc4 0%, #88c0d0 100%);
	/* w3c */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#65afc4", endColorstr="#88c0d0",GradientType=1 );
	/* ie6-9 */
}
.widget-overview-box.overview-box-1 .overview-box-text span {
	color: #dcf2f9;
}
.widget-overview-box.overview-box-1 .overview-box-status {
	background-color: #d08770;
}
.widget-overview-box.overview-box-2 {
	background: -moz-linear-gradient(256deg, #f2c260 0%, #ebcb8b 100%);
	/* ff3.6+ */
	background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #f2c260), color-stop(100%, #ebcb8b));
	/* safari4+,chrome */
	background: -webkit-linear-gradient(256deg, #f2c260 0%, #ebcb8b 100%);
	/* safari5.1+,chrome10+ */
	background: -o-linear-gradient(256deg, #f2c260 0%, #ebcb8b 100%);
	/* opera 11.10+ */
	background: -ms-linear-gradient(256deg, #f2c260 0%, #ebcb8b 100%);
	/* ie10+ */
	background: linear-gradient(256deg, #f2c260 0%, #ebcb8b 100%);
	/* w3c */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f2c260", endColorstr="#ebcb8b",GradientType=1 );
	/* ie6-9 */
}
.widget-overview-box.overview-box-2 .overview-box-text span {
	color: #fcf5e8;
}
.widget-overview-box.overview-box-2 .overview-box-status {
	background-color: #b48ead;
}
.widget-overview-box.overview-box-3 {
	background: -moz-linear-gradient(256deg, #8fb56f 0%, #a3be8c 100%);
	/* ff3.6+ */
	background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #8fb56f), color-stop(100%, #a3be8c));
	/* safari4+,chrome */
	background: -webkit-linear-gradient(256deg, #8fb56f 0%, #a3be8c 100%);
	/* safari5.1+,chrome10+ */
	background: -o-linear-gradient(256deg, #8fb56f 0%, #a3be8c 100%);
	/* opera 11.10+ */
	background: -ms-linear-gradient(256deg, #8fb56f 0%, #a3be8c 100%);
	/* ie10+ */
	background: linear-gradient(256deg, #8fb56f 0%, #a3be8c 100%);
	/* w3c */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#8fb56f", endColorstr="#a3be8c",GradientType=1 );
	/* ie6-9 */
}
.widget-overview-box.overview-box-3 .overview-box-text span {
	color: #f0f4ec;
}
.widget-overview-box.overview-box-3 .overview-box-status {
	background-color: #ebcb8b;
	color: #3b4252;
}
.widget-overview-box.overview-box-4 {
	background: -moz-linear-gradient(256deg, #a4719b 0%, #b48ead 100%);
	/* ff3.6+ */
	background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #a4719b), color-stop(100%, #b48ead));
	/* safari4+,chrome */
	background: -webkit-linear-gradient(256deg, #a4719b 0%, #b48ead 100%);
	/* safari5.1+,chrome10+ */
	background: -o-linear-gradient(256deg, #a4719b 0%, #b48ead 100%);
	/* opera 11.10+ */
	background: -ms-linear-gradient(256deg, #a4719b 0%, #b48ead 100%);
	/* ie10+ */
	background: linear-gradient(256deg, #a4719b 0%, #b48ead 100%);
	/* w3c */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#a4719b", endColorstr="#b48ead",GradientType=1 );
	/* ie6-9 */
}
.widget-overview-box.overview-box-4 .overview-box-text span {
	color: #f3ecf2;
}
.widget-overview-box.overview-box-4 .overview-box-status {
	background-color: #a3be8c;
	color: #3b4252;
}

.widget-statistics {
	overflow: auto;
}
.widget-statistics #dashboard-chart canvas {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff 4%), to(#71b5c8 214%));
	background-image: -webkit-linear-gradient(bottom, #ffffff 4%, #71b5c8 214%);
	background-image: -moz-linear-gradient(bottom, #ffffff 4%, #71b5c8 214%);
	background-image: -ms-linear-gradient(bottom, #ffffff 4%, #71b5c8 214%);
	background-image: -o-linear-gradient(bottom, #ffffff 4%, #71b5c8 214%);
	background-image: linear-gradient(to bottom, #ffffff 4%, #71b5c8 214%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff 4%", endColorstr="#71b5c8 214%");
	background-color: #ffffff;
}
.widget-statistics .dropdown {
	text-align: right;
	padding: 0;
}
.widget-statistics .dropdown .p-dropdown {
	border: none;
	min-width: auto;
}
.widget-statistics .dropdown .p-dropdown .p-dropdown-label {
	text-align: right;
}

.widget-news {
	overflow: hidden;
	position: relative;
	margin: 1em 0;
	padding: 0;
	border-radius: 4px;
}
.widget-news .news-row {
	padding-bottom: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: row;
	transition: transform 500ms ease 0s;
}
.widget-news .news-row .news {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	padding-top: 80px;
	padding-bottom: 35px;
	z-index: -1;
	flex: 1 0 100%;
	-moz-transition: transform 500ms ease 0s;
	-o-transition: transform 500ms ease 0s;
	-webkit-transition: transform 500ms ease 0s;
	transition: transform 500ms ease 0s;
	overflow: hidden;
	margin: 0;
}
.widget-news .news-row .news.news-1 {
	background-image: url('../../images/dashboard/news-1.png');
}
.widget-news .news-row .news.news-1 .news-title {
	background: -moz-linear-gradient(246deg, #f2c260 0%, #ebcb8b 100%);
	/* ff3.6+ */
	background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #f2c260), color-stop(100%, #ebcb8b));
	/* safari4+,chrome */
	background: -webkit-linear-gradient(246deg, #f2c260 0%, #ebcb8b 100%);
	/* safari5.1+,chrome10+ */
	background: -o-linear-gradient(246deg, #f2c260 0%, #ebcb8b 100%);
	/* opera 11.10+ */
	background: -ms-linear-gradient(246deg, #f2c260 0%, #ebcb8b 100%);
	/* ie10+ */
	background: linear-gradient(246deg, #f2c260 0%, #ebcb8b 100%);
	/* w3c */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f2c260", endColorstr="#ebcb8b",GradientType=1 );
	/* ie6-9 */
}
.widget-news .news-row .news.news-1 .link a {
	color: #ebcb8b;
}
.widget-news .news-row .news.news-2 {
	background-image: url('../../images/dashboard/news-2.png');
}
.widget-news .news-row .news.news-2 .news-title {
	background: -moz-linear-gradient(246deg, #8fb56f 0%, #a3be8c 100%);
	/* ff3.6+ */
	background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #8fb56f), color-stop(100%, #a3be8c));
	/* safari4+,chrome */
	background: -webkit-linear-gradient(246deg, #8fb56f 0%, #a3be8c 100%);
	/* safari5.1+,chrome10+ */
	background: -o-linear-gradient(246deg, #8fb56f 0%, #a3be8c 100%);
	/* opera 11.10+ */
	background: -ms-linear-gradient(246deg, #8fb56f 0%, #a3be8c 100%);
	/* ie10+ */
	background: linear-gradient(246deg, #8fb56f 0%, #a3be8c 100%);
	/* w3c */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#8fb56f", endColorstr="#a3be8c",GradientType=1 );
	/* ie6-9 */
}
.widget-news .news-row .news.news-2 .link a {
	color: #a3be8c;
}
.widget-news .news-row .news.news-3 {
	background-image: url('../../images/dashboard/news-3.png');
}
.widget-news .news-row .news.news-3 .news-title {
	background-color: #45b0d5;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#45b0d5), to(#59c7ed 99%));
	background-image: -webkit-linear-gradient(bottom, #45b0d5, #59c7ed 99%);
	background-image: -moz-linear-gradient(bottom, #45b0d5, #59c7ed 99%);
	background-image: -ms-linear-gradient(bottom, #45b0d5, #59c7ed 99%);
	background-image: -o-linear-gradient(bottom, #45b0d5, #59c7ed 99%);
	background-image: linear-gradient(to bottom, #45b0d5, #59c7ed 99%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#45b0d5", endColorstr="#59c7ed 99%");
}
.widget-news .news-row .news.news-3 .link a {
	color: #88c0d0;
}
.widget-news .news-row .news .news-title {
	width: 55px;
	height: 25px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.16);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
}
.widget-news .news-row .news .news-title h5 {
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	color: #434c5e;
	margin: 0;
}
.widget-news .news-row .news h6 {
	font-size: 16px;
	font-weight: 500;
	color: #ffffff;
}
.widget-news .news-row .news p {
	color: #ffffff;
	opacity: 0.6;
	margin-bottom: 20px;
}
.widget-news .news-row .news .link {
	position: absolute;
	width: 95%;
	bottom: 20px;
}
.widget-news .news-row .news .link a {
	cursor: pointer;
}
.widget-news .news-row .news .link a i {
	margin-left: 5px;
}
.widget-news .link-points {
	position: absolute;
	width: 95%;
	bottom: 20px;
}
.widget-news .link-points .points {
	justify-content: flex-end;
	padding-top: 10px;
}
.widget-news .link-points .points .point {
	width: 10px;
	height: 10px;
	background-color: #eceff4;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin: 3px;
	cursor: pointer;
}
.widget-news .link-points .points .point.active-point.point-1 {
	background-color: #ebcb8b;
}
.widget-news .link-points .points .point.active-point.point-2 {
	background-color: #a3be8c;
}
.widget-news .link-points .points .point.active-point.point-3 {
	background-color: #88c0d0;
}

.widget-timeline .timeline-row {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	border: solid 1px #e5e9f0;
	background-color: #f9fafb;
	padding: 15px;
	width: 100%;
	margin: 12px 0;
}
.widget-timeline .timeline-row > .p-grid > .p-col-1 {
	width: 40px;
}
.widget-timeline .timeline-row > .p-grid > .p-col-11 {
	width: calc(100% - 40px);
	padding-left: 1em;
}
.widget-timeline .timeline-row .timeline-icon {
	width: 36px;
	height: 36px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #ffffff;
	font-size: 16px;
	margin-bottom: 10px;
}
.widget-timeline .timeline-row .timeline-icon.camera-icon {
	background: -moz-linear-gradient(225deg, #65afc4 0%, #88c0d0 100%);
	/* ff3.6+ */
	background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #65afc4), color-stop(100%, #88c0d0));
	/* safari4+,chrome */
	background: -webkit-linear-gradient(225deg, #65afc4 0%, #88c0d0 100%);
	/* safari5.1+,chrome10+ */
	background: -o-linear-gradient(225deg, #65afc4 0%, #88c0d0 100%);
	/* opera 11.10+ */
	background: -ms-linear-gradient(225deg, #65afc4 0%, #88c0d0 100%);
	/* ie10+ */
	background: linear-gradient(225deg, #65afc4 0%, #88c0d0 100%);
	/* w3c */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#65afc4", endColorstr="#88c0d0",GradientType=1 );
	/* ie6-9 */
}
.widget-timeline .timeline-row .timeline-icon.comment-icon {
	background: -moz-linear-gradient(225deg, #f2c260 0%, #ebcb8b 100%);
	/* ff3.6+ */
	background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #f2c260), color-stop(100%, #ebcb8b));
	/* safari4+,chrome */
	background: -webkit-linear-gradient(225deg, #f2c260 0%, #ebcb8b 100%);
	/* safari5.1+,chrome10+ */
	background: -o-linear-gradient(225deg, #f2c260 0%, #ebcb8b 100%);
	/* opera 11.10+ */
	background: -ms-linear-gradient(225deg, #f2c260 0%, #ebcb8b 100%);
	/* ie10+ */
	background: linear-gradient(225deg, #f2c260 0%, #ebcb8b 100%);
	/* w3c */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f2c260", endColorstr="#ebcb8b",GradientType=1 );
	/* ie6-9 */
}
.widget-timeline .timeline-row .timeline-icon.chart-icon {
	background: -moz-linear-gradient(225deg, #a4719b 0%, #b48ead 100%);
	/* ff3.6+ */
	background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #a4719b), color-stop(100%, #b48ead));
	/* safari4+,chrome */
	background: -webkit-linear-gradient(225deg, #a4719b 0%, #b48ead 100%);
	/* safari5.1+,chrome10+ */
	background: -o-linear-gradient(225deg, #a4719b 0%, #b48ead 100%);
	/* opera 11.10+ */
	background: -ms-linear-gradient(225deg, #a4719b 0%, #b48ead 100%);
	/* ie10+ */
	background: linear-gradient(225deg, #a4719b 0%, #b48ead 100%);
	/* w3c */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#a4719b", endColorstr="#b48ead",GradientType=1 );
	/* ie6-9 */
}
.widget-timeline .timeline-row h6 {
	margin-top: 0;
	margin-bottom: 6px;
}
.widget-timeline .timeline-row .timeline-time {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-end;
	color: #9199a9;
}
.widget-timeline .timeline-row .timeline-images {
	margin-top: 15px;
	position: relative;
}
.widget-timeline .timeline-row .timeline-images img {
	width: 100%;
}
.widget-timeline .timeline-row .timeline-images .new {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background-color: #434c5e;
	color: #d8dee9;
	font-size: 12px;
	position: absolute;
	top: -8px;
	right: -8px;
	padding: 3px 6px;
	text-align: center;
}

.widget-tasks {
	padding: 0;
	padding-top: 18px;
}
.widget-tasks .card-header {
	padding: 0 18px;
}
.widget-tasks .task-info {
	text-align: right;
}
.widget-tasks .task-info span {
	font-size: 12px;
	color: #9199a9;
}
.widget-tasks .task-info span.highlighted {
	color: #4c566a;
	font-weight: 500;
}
.widget-tasks .checkboxes {
	list-style: none;
	padding: 0;
	margin: 0;
	color: #4c566a;
}
.widget-tasks .checkboxes .checkbox-row {
	padding: 6px 18px;
}
.widget-tasks .checkboxes .checkbox-row:nth-child(odd) {
	background-color: #f9fafb;
}
.widget-tasks .checkboxes .checkbox-row .checkbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}
.widget-tasks .checkboxes .checkbox-row .checkbox p {
	margin-left: 12px;
}
.widget-tasks .checkboxes .checkbox-row .checkbox-row-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.widget-tasks .checkboxes .checkbox-row .checkbox-row-info .time {
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	background-color: #88c0d0;
	color: #ffffff;
	font-size: 12px;
	padding: 3px 10px;
	text-align: center;
	min-width: 55px;
	margin-right: 4px;
}
.widget-tasks .checkboxes .checkbox-row .checkbox-row-info .time.later {
	background-color: #9199a9;
}
.widget-tasks .checkboxes .checkbox-row .checkbox-row-info i {
	color: #9199a9;
	margin-left: 12px;
	cursor: pointer;
}
.widget-tasks .checkboxes .checkbox-row .checkbox-row-info i:hover {
	color: #88c0d0;
	-moz-transition: color 0.15s;
	-o-transition: color 0.15s;
	-webkit-transition: color 0.15s;
	transition: color 0.15s;
}

.widget-support-request {
	position: relative;
}
.widget-support-request .support-info {
	text-align: right;
}
.widget-support-request .support-info p {
	font-size: 12px;
	color: #9199a9;
	margin: 0;
}
.widget-support-request .support-info .highlited {
	color: #4c566a;
	font-weight: 500;
}
.widget-support-request label {
	display: block;
	margin-bottom: 8px;
}
.widget-support-request .p-inputtext {
	margin-bottom: 16px;
	width: 100%;
	color: #9199a9;
}
.widget-support-request .p-inputtextarea {
	width: 100%;
	margin-bottom: 16px;
	color: #9199a9;
}
.widget-support-request .resolution-button-bar {
	text-align: left;
}
.widget-support-request .resolution-button-bar .p-button {
	width: auto;
	margin-right: 15px;
	min-width: 125px;
	margin-bottom: 15px;
}
.widget-support-request .resolution-button-bar .p-button.secondary-button {
	padding: 0;
	background-color: transparent;
	color: #9199a9;
}

.widget-team {
	padding: 0;
	padding-top: 18px;
	position: relative;
}
.widget-team h5 {
	padding-left: 18px;
}
.widget-team ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
}
.widget-team ul li {
	padding: 12px 18px;
	border-top: 1px solid rgba(145, 153, 169, 0.3);
}
.widget-team ul li:last-child {
	border-bottom: 1px solid rgba(145, 153, 169, 0.3);
}
.widget-team ul li:nth-child(odd) {
	background-color: #f9fafb;
}
.widget-team ul li .member {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}
.widget-team ul li .member .team-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}
.widget-team ul li .member .team-box .profile-image {
	margin-right: 10px;
}
.widget-team ul li .member .team-box .profile-image img {
	width: 40px;
	height: 40px;
}
.widget-team ul li .member .team-box h6 {
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	color: #4c566a;
}
.widget-team ul li .member .team-box span {
	font-size: 12px;
	color: #9199a9;
}
.widget-team ul li .member .icons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.widget-team ul li .member .icons .icon {
	height: 24px;
	width: 24px;
	background-color: #eceff4;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	margin: 3px;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
}
.widget-team ul li .member .icons .icon i {
	color: #ffffff;
}
.widget-team ul li .member .icons .icon.icon-hastag {
	background-color: #d08770;
}
.widget-team ul li .member .icons .icon.icon-hastag:hover {
	background-color: #a76a57;
	-moz-transition: background-color 0.15s;
	-o-transition: background-color 0.15s;
	-webkit-transition: background-color 0.15s;
	transition: background-color 0.15s;
}
.widget-team ul li .member .icons .icon.icon-twitter {
	background-color: #5e81ac;
}
.widget-team ul li .member .icons .icon.icon-twitter:hover {
	background-color: #456184;
	-moz-transition: background-color 0.15s;
	-o-transition: background-color 0.15s;
	-webkit-transition: background-color 0.15s;
	transition: background-color 0.15s;
}
.widget-team ul li .member .icons .icon.icon-prime {
	background-color: #bf616a;
}
.widget-team ul li .member .icons .icon.icon-prime:hover {
	background-color: #9c4a52;
	-moz-transition: background-color 0.15s;
	-o-transition: background-color 0.15s;
	-webkit-transition: background-color 0.15s;
	transition: background-color 0.15s;
}

.widget-card-graph {
	padding: 0;
	text-align: center;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	min-height: 225px;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border-radius: 7px;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.widget-card-graph .graph-header {
	width: 100%;
	-moz-border-radius-topleft: 7px;
	-webkit-border-top-left-radius: 7px;
	border-top-left-radius: 7px;
	-moz-border-radius-topright: 7px;
	-webkit-border-top-right-radius: 7px;
	border-top-right-radius: 7px;
	height: 124px;
}
.widget-card-graph .graph-header h5 {
	padding-top: 18px;
	font-size: 18px;
	color: #4c566a;
}
.widget-card-graph .graph-header .graph {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 50px;
	left: 50%;
	margin-left: -75px;
}
.widget-card-graph .graph-header .graph .graph-center {
	width: 125px;
	height: 125px;
	background-color: #2e3440;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#2e3440), to(#eceff4));
	background-image: -webkit-linear-gradient(bottom, #2e3440, #eceff4);
	background-image: -moz-linear-gradient(bottom, #2e3440, #eceff4);
	background-image: -ms-linear-gradient(bottom, #2e3440, #eceff4);
	background-image: -o-linear-gradient(bottom, #2e3440, #eceff4);
	background-image: linear-gradient(to bottom, #2e3440, #eceff4);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2e3440", endColorstr="#eceff4");
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	position: absolute;
}
.widget-card-graph .graph-header .graph .graph-border {
	width: 150px;
	height: 150px;
	background-color: #f2c260;
	background-image: -webkit-gradient(linear, right top, left top, from(#f2c260), to(#ebcb8b));
	background-image: -webkit-linear-gradient(left, #f2c260, #ebcb8b);
	background-image: -moz-linear-gradient(left, #f2c260, #ebcb8b);
	background-image: -ms-linear-gradient(left, #f2c260, #ebcb8b);
	background-image: -o-linear-gradient(left, #f2c260, #ebcb8b);
	background-image: linear-gradient(to left, #f2c260, #ebcb8b);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f2c260", endColorstr="#ebcb8b", gradientType="1");
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	position: relative;
}
.widget-card-graph .graph-header .graph .graph-border .graph-block {
	position: absolute;
	right: 0;
	bottom: 0;
	height: 150px;
	width: 64px;
	background-color: #ffffff;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	-moz-border-radius-topright: 50%;
	-webkit-border-top-right-radius: 50%;
	border-top-right-radius: 50%;
	-moz-border-radius-bottomright: 50%;
	-webkit-border-bottom-right-radius: 50%;
	border-bottom-right-radius: 50%;
}
.widget-card-graph .graph-content {
	padding: 18px;
	color: #9199a9;
	border-top: solid 1px rgba(145, 153, 169, 0.3);
	background-color: #ffffff;
	position: relative;
	-moz-border-radius-bottomleft: 7px;
	-webkit-border-bottom-left-radius: 7px;
	border-bottom-left-radius: 7px;
	-moz-border-radius-bottomright: 7px;
	-webkit-border-bottom-right-radius: 7px;
	border-bottom-right-radius: 7px;
	width: 100%;
	z-index: 10;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.widget-card-graph .graph-content h5 {
	margin-top: 10px;
	color: #4c566a;
	margin-bottom: 6px;
}
.widget-card-graph .graph-content hr {
	width: 42px;
	height: 1px;
	background-color: rgba(145, 153, 169, 0.2);
	border: none;
}
.widget-card-graph .graph-content .graph-icon {
	width: 30px;
	height: 30px;
	box-shadow: inset 0 2px 0 0 rgba(208, 135, 112, 0.11);
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
	top: -15px;
	left: 50%;
	margin-left: -15px;
}
.widget-card-graph .graph-content .jun {
	position: absolute;
	right: 15%;
	top: 0;
}
.widget-card-graph.graph-1 .graph-header .graph .graph-center {
	background-color: #eceff4;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#eceff4), to(#ffffff));
	background-image: -webkit-linear-gradient(bottom, #eceff4, #ffffff);
	background-image: -moz-linear-gradient(bottom, #eceff4, #ffffff);
	background-image: -ms-linear-gradient(bottom, #eceff4, #ffffff);
	background-image: -o-linear-gradient(bottom, #eceff4, #ffffff);
	background-image: linear-gradient(to bottom, #eceff4, #ffffff);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eceff4", endColorstr="#ffffff");
}
.widget-card-graph.graph-1 .graph-content .graph-icon {
	background: -moz-linear-gradient(225deg, #f2c260 0%, #ebcb8b 100%);
	/* ff3.6+ */
	background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #f2c260), color-stop(100%, #ebcb8b));
	/* safari4+,chrome */
	background: -webkit-linear-gradient(225deg, #f2c260 0%, #ebcb8b 100%);
	/* safari5.1+,chrome10+ */
	background: -o-linear-gradient(225deg, #f2c260 0%, #ebcb8b 100%);
	/* opera 11.10+ */
	background: -ms-linear-gradient(225deg, #f2c260 0%, #ebcb8b 100%);
	/* ie10+ */
	background: linear-gradient(225deg, #f2c260 0%, #ebcb8b 100%);
	/* w3c */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f2c260", endColorstr="#ebcb8b",GradientType=1 );
	/* ie6-9 */
}
.widget-card-graph.graph-2 .graph-header {
	background-image: url('../../images/dashboard/bg-box-1.jpg');
	background-size: cover;
}
.widget-card-graph.graph-2 .graph-header .graph .graph-border {
	background-color: #4c566a;
	background-image: -webkit-gradient(linear, left top, right top, from(#4c566a), to(#2e3440));
	background-image: -webkit-linear-gradient(right, #4c566a, #2e3440);
	background-image: -moz-linear-gradient(right, #4c566a, #2e3440);
	background-image: -ms-linear-gradient(right, #4c566a, #2e3440);
	background-image: -o-linear-gradient(right, #4c566a, #2e3440);
	background-image: linear-gradient(to right, #4c566a, #2e3440);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4c566a", endColorstr="#2e3440", gradientType="1");
}
.widget-card-graph.graph-2 .graph-content {
	background-color: #2e3440;
}
.widget-card-graph.graph-2 .graph-content h5 {
	color: #eceff4;
}
.widget-card-graph.graph-2 .graph-content .graph-icon {
	background-color: #2e3440;
}
.widget-card-graph.graph-3 .graph-header {
	background-image: url('../../images/dashboard/bg-box.jpg');
	background-size: cover;
}
.widget-card-graph.graph-3 .graph-header h5 {
	color: #ffffff;
}
.widget-card-graph.graph-3 .graph-header .graph .graph-center {
	background-color: #eceff4;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#eceff4), to(#ffffff));
	background-image: -webkit-linear-gradient(bottom, #eceff4, #ffffff);
	background-image: -moz-linear-gradient(bottom, #eceff4, #ffffff);
	background-image: -ms-linear-gradient(bottom, #eceff4, #ffffff);
	background-image: -o-linear-gradient(bottom, #eceff4, #ffffff);
	background-image: linear-gradient(to bottom, #eceff4, #ffffff);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eceff4", endColorstr="#ffffff");
}
.widget-card-graph.graph-3 .graph-content .graph-icon {
	background: -moz-linear-gradient(225deg, #f2c260 0%, #ebcb8b 100%);
	/* ff3.6+ */
	background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #f2c260), color-stop(100%, #ebcb8b));
	/* safari4+,chrome */
	background: -webkit-linear-gradient(225deg, #f2c260 0%, #ebcb8b 100%);
	/* safari5.1+,chrome10+ */
	background: -o-linear-gradient(225deg, #f2c260 0%, #ebcb8b 100%);
	/* opera 11.10+ */
	background: -ms-linear-gradient(225deg, #f2c260 0%, #ebcb8b 100%);
	/* ie10+ */
	background: linear-gradient(225deg, #f2c260 0%, #ebcb8b 100%);
	/* w3c */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#f2c260", endColorstr="#ebcb8b",GradientType=1 );
	/* ie6-9 */
}
.widget-card-graph.graph-4 .graph-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.widget-card-graph.graph-4 .graph-header .title-tag {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background-color: #434c5e;
	color: #d8dee9;
	font-size: 12px;
	position: absolute;
	top: -8px;
	left: -8px;
	padding: 3px 6px;
	text-align: center;
}
.widget-card-graph.graph-4 .graph-header img {
	display: block;
	width: 100%;
	max-height: 120px;
}
.widget-card-graph.graph-4 .graph-content .graph-icon {
	background-color: #45b0d5;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#45b0d5), to(#59c7ed));
	background-image: -webkit-linear-gradient(bottom, #45b0d5, #59c7ed);
	background-image: -moz-linear-gradient(bottom, #45b0d5, #59c7ed);
	background-image: -ms-linear-gradient(bottom, #45b0d5, #59c7ed);
	background-image: -o-linear-gradient(bottom, #45b0d5, #59c7ed);
	background-image: linear-gradient(to bottom, #45b0d5, #59c7ed);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#45b0d5", endColorstr="#59c7ed");
}

.widget-store-items {
	position: relative;
}
.widget-store-items .store-info {
	text-align: right;
}
.widget-store-items .store-info .info-item {
	display: inline-block;
	margin-left: 15px;
	color: #9199a9;
	cursor: pointer;
}
.widget-store-items .store-info .info-item:hover {
	color: #4c566a;
	-moz-transition: color 0.15s;
	-o-transition: color 0.15s;
	-webkit-transition: color 0.15s;
	transition: color 0.15s;
}
.widget-store-items .store-cards-container .store-cards {
	max-height: 489px;
	overflow: auto;
}
.widget-store-items .store-cards-container .store-cards .store-card {
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	border: solid 1px #e5e9f0;
	background-color: #f9fafb;
	height: 100%;
}
.widget-store-items .store-cards-container .store-cards .store-card .store-card-icons {
	text-align: center;
	padding: 6px;
	border-bottom: solid 1px #d8dee9;
}
.widget-store-items .store-cards-container .store-cards .store-card .store-card-icons i {
	color: #9199a9;
	cursor: pointer;
	font-size: 20px;
}
.widget-store-items .store-cards-container .store-cards .store-card .store-card-icons i:hover {
	color: #4c566a;
	-moz-transition: color 0.15s;
	-o-transition: color 0.15s;
	-webkit-transition: color 0.15s;
	transition: color 0.15s;
}
.widget-store-items .store-cards-container .store-cards .store-card .store-card-image img {
	width: 100%;
}
.widget-store-items .store-cards-container .store-cards .store-card .store-card-content {
	text-align: center;
	padding-bottom: 12px;
}
.widget-store-items .store-cards-container .store-cards .store-card .store-card-content h5 {
	margin: 6px;
	font-weight: 500;
	color: #4c566a;
}
.widget-store-items .store-cards-container .store-cards .store-card .store-card-content span {
	font-size: 12px;
	color: #9199a9;
}

.widget-download-files {
	padding: 0;
	padding-top: 18px;
	position: relative;
}
.widget-download-files .title {
	padding-left: 18px;
}
.widget-download-files .files-info {
	text-align: right;
	padding-right: 18px;
}
.widget-download-files .files-info span {
	font-size: 12px;
	color: #9199a9;
	cursor: pointer;
	display: block;
	margin-bottom: 1rem;
}
.widget-download-files .files-info span:hover {
	color: #4c566a;
	-moz-transition: color 0.15s;
	-o-transition: color 0.15s;
	-webkit-transition: color 0.15s;
	transition: color 0.15s;
}
.widget-download-files ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	max-height: 500px;
	overflow: auto;
}
.widget-download-files ul li {
	padding: 15px;
	border-top: 1px solid rgba(145, 153, 169, 0.3);
}
.widget-download-files ul li:last-child {
	border-bottom: 1px solid rgba(145, 153, 169, 0.3);
}
.widget-download-files ul li .list-item {
	align-items: center;
	cursor: pointer;
}
.widget-download-files ul li .list-item:hover .file-name h6 {
	color: #9199a9;
	-moz-transition: color 0.15s;
	-o-transition: color 0.15s;
	-webkit-transition: color 0.15s;
	transition: color 0.15s;
}
.widget-download-files ul li .list-item .file-name {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
}
.widget-download-files ul li .list-item .file-name h6 {
	font-size: 14px;
	font-weight: 500;
	margin: 0;
	color: #4c566a;
}
.widget-download-files ul li .list-item .icon {
	text-align: center;
}
.widget-download-files ul li .list-item .new {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-end;
}
.widget-download-files ul li .list-item .new .new-tag {
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	height: 20px;
	background-color: #434c5e;
	color: #d8dee9;
	font-size: 12px;
	width: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ngx-spinner-overlay {
	background-color: rgba(255, 255, 255, 0.45) !important;
}

/* Add your customizations of layout here */

.sweetalert-image-animation {
	margin: 1em auto 1em !important;
	animation: sweetalert-image-animation-popup 0.7s !important;
}
@keyframes sweetalert-image-animation-popup {
	0% {
		transform: scale(0);
	}
	50% {
		transform: scale(0.1);
	}
	60% {
		transform: scale(0.2);
	}
	70% {
		transform: scale(0.4);
	}
	80% {
		transform: scale(0.8);
	}
	90% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}
.swal2-title {
	padding: 0 1em 0 !important;
}

/* guider tour */

.highLightOnlyText.shepherd-target-click-disabled.shepherd-enabled.shepherd-target {
	background-color: rgba(0, 0, 0, 0.5);
	color: #fff;
}
.shepherd-modal-overlay-container.shepherd-modal-is-visible {
	height: 100% !important;
	width: 100% !important;
	opacity: 0.5;
	transform: translateZ(0);
	transition: all 0.3s ease-out, height 0s 0s, opacity 0.3s 0s;
}

.shepherd-has-title .shepherd-content .shepherd-header {
	background: #fff !important;
	padding: 8px !important;
}

.shepherd-arrow:before {
	background: #fff;
	content: '';
	transform: rotate(45deg);
}
.shepherd-arrow,
.shepherd-arrow:before {
	height: 16px;
	position: absolute;
	width: 16px;
	z-index: -1;
}

.shepherd-image-wrapper{
	background-color: #f1f1f1;
	padding: 0 10px;
	padding-top: 10px;
	text-align: center;
}

.shepherd-image{
	width: 100%;
	height: 100px;
}


.shepherd-info-text{
	padding: 10px;
}
.shepherd-element[data-popper-placement^='top-start'] > .shepherd-arrow {
	transform: translate(100%, 0px) !important;
}

.shepherd-element[data-popper-placement^='top-end'] > .shepherd-arrow {
	transform: translate(1650%, 0px) !important;
}

.shepherd-element[data-popper-placement^='bottom-end'] > .shepherd-arrow {
	transform: translate(1650%, 0px) !important;
}

.shepherd-element[data-popper-placement^='bottom-start'] > .shepherd-arrow {
	transform: translate(120%, 0px) !important;
}

.shepherd-element[data-popper-placement^='right-start'] > .shepherd-arrow {
	transform: translate(0px, 50%) !important;
}

.shepherd-element[data-popper-placement^='right-end'] > .shepherd-arrow {
	transform: translate(0px, 850%) !important;
}

.shepherd-element[data-popper-placement^='left-start'] > .shepherd-arrow {
	transform: translate(0px, 10px) !important;
}

.shepherd-element[data-popper-placement^='left-end'] > .shepherd-arrow {
	transform: translate(0px, 135px) !important;
}
.shepherd-element,
.shepherd-element *,
.shepherd-element :after,
.shepherd-element :before {
	box-sizing: border-box !important;
}
.shepherd-has-title .shepherd-content .shepherd-cancel-icon {
	color: hsla(0, 88%, 50%, 0.75) !important;
}

.shepherd-skip {
	background-color: transparent;
	border: none;
	color: #6b46d2;
	cursor: pointer;
	margin-right: 5px;
}

.shepherd-cancel-icon {
	border: none;
	cursor: pointer !important;
	font-size: 1em !important;
	font-weight: 400 !important;
	margin: 0;
	color: rgba(240, 15, 15, 0.75) !important;
	padding: 0 5px !important;
	background-color: rgba(240, 15, 15, 0.21) !important;
	transition: color 0.5s ease !important;
	border-radius: 50%;
}

.shepherd-text-bold {
    font-size: 13px;
    font-weight: 400;
	color: #333333;
}
.shepherd-button {
	background: white !important;
	border: 1px solid #6b46d2 !important;
	border-radius: 3px !important;
	font-size: 13px !important;
	color: #6b46d2 !important;
	cursor: pointer !important;
	margin-right: 0.5rem !important;
	padding: 0.4rem 12px !important;
	width: 80px;
	transition: all 0.5s ease;
}

.shepherd-footer .shepherd-button:last-child {
	margin-right: 0 !important;
	color: white !important;
	background-color: #6b46d2 !important;
}

.shepherd-button:not(:disabled):hover {
	background: #e9e3f8 !important;
	color: #6b46d2 !important;
}

.shepherd-button:last-child:not(:disabled):hover {
	background: #5225cf;
	color: white;
}

.shepherd-element {
	background: #fff !important;
	border-radius: 5px !important;
	box-shadow: 0 1px 4px rgb(0 0 0 / 20%) !important;
	padding: 0.15em !important;
	max-width: 300px !important;
	outline: none !important ;
	transition: opacity 0.3s, visibility 0.3s !important;
	width: 100% !important;
	z-index: 9999 !important;
}

.shepherd-footer {
	align-items: center;
	border-bottom-left-radius: 5px !important;
	border-bottom-right-radius: 5px !important;
	display: flex !important;
	justify-content: space-between !important;
	padding: 0.75rem 0.75rem !important;
}

.shepherd-footer .shepherd-progress {
	font-size: 0.8rem;
}
.shepherd-title {
	color: #6b46d2;
	display: flex;
	flex: 1 0 auto;
	font-weight: 600 !important;
	font-size: 17px;
	margin: 0;
	padding: 0;
}

.shepherd-text {
	color: black;
}
.shepherd-element.shepherd-has-title[data-popper-placement^='bottom'] > .shepherd-arrow:before {
	background-color: #ffffff !important;
}

.shepherd-footer .complete.shepherd-button:last-child{
	background-color: #46d246 !important;
	border: 1px solid #46d246 !important;
}

.complete.shepherd-button:last-child:focus, .complete.shepherd-button:last-child:hover{
	background-color: #46d246 !important;
	border: 1px solid #46d246 !important;
	color:#ffffff !important;
}

.dropdown-footer {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-top: 1px solid #6b46d230;
	cursor: pointer;
}
.dropdown-footer:hover{
	background-color: #e9e3f8;
}

.p-calendar-clear-icon{
	right:40px;
}
