/* 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: #070f16;
	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(90, 101, 124, 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 {
	position: fixed;
	width: 100%;
	min-height: 100vh;
	top: 0;
	left: 0;
	background-color: #070f16;
	z-index: 1000;
}

.spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	height: 100px;
	width: 100px;
	transform: translate(-50%, -50%);
}

[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: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif,
		"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	font-size: 14px;
	color: #d8dee9;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	padding: 0;
	margin: 0;
	min-height: 100%;
	background-color: #070f16;
}

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: #070f16;
	position: fixed;
	z-index: 997;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	opacity: 0.64;
	animation-name: fadeinmask;
	animation-duration: 0.15s;
	opacity: 0.8;
	filter: alpha(opacity=80);
	cursor: pointer;
}

.layout-main {
	margin-left: 60px;
	padding-top: 75px;
	-moz-transition: margin-left 0.15s;
	-o-transition: margin-left 0.15s;
	-webkit-transition: margin-left 0.15s;
	transition: margin-left 0.15s;
	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: 100vh;
	-moz-transition: margin-left 0.2s;
	-o-transition: margin-left 0.2s;
	-webkit-transition: margin-left 0.2s;
	transition: margin-left 0.2s;
}

.layout-footer {
	/* background-color: #20252e; */
	padding: 15px 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: fit-content;
	background-color: #070f16;
	background-image: url("../../images/background/WaveGrad40.png");
	background-repeat: no-repeat;
	background-size: 100%;
}

.layout-footer .logo-text {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	height: 100%;
}

.layout-footer .logo-text img {
	height: auto;
	width: 50px;
	content: url(../../images/logos/logo_arppen_branco.png);
}

.layout-footer .logo-text .text {
	margin-left: 15px;
}

.layout-footer .logo-text .text h1 {
	font-size: 18px;
	color: #d8dee9;
	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;
	-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-transition: transform 0.15s;
	transition: transform 0.15s;
	-webkit-box-shadow: 3px 0 5px 0 rgba(33, 35, 39, 0.3);
	-moz-box-shadow: 3px 0 5px 0 rgba(33, 35, 39, 0.3);
	box-shadow: 3px 0 5px 0 rgba(33, 35, 39, 0.3);
}

.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: auto;
	width: 45px;
	border: 0 none;
	content: url(../../images/logos/logo-axia.png) !important;
}

.layout-sidebar .sidebar-logo .app-name {
	display: none;
	vertical-align: middle;
	font-size: 22.5px;
	margin-left: 4px;
}

.layout-sidebar .layout-menu-container {
	overflow: auto;
	height: calc(100% - 72px);
}

.layout-sidebar .layout-menu-container .layout-menu {
	list-style-type: none;
	margin: 10px 0 0 0;
	padding: 0;
	padding-bottom: 120px;
}

.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);
	margin-top: -1rem;
}

.layout-sidebar .layout-menu-container .layout-menu li > a {
	padding: 10px;
	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;
}

.layout-sidebar .layout-menu-container .layout-menu li > a i {
	width: 22px;
	height: 22px;
	font-size: 17px;
	position: absolute;
	right: 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: 30px;
}

.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;
}

.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;
}

.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 {
	width: 260px;
	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;
}

.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-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;
}

.layout-wrapper-static .layout-sidebar .layout-menu li > a i.layout-submenu-toggler {
	display: inline-block;
}

.layout-wrapper-static .layout-main {
	margin-left: 260px;
}

.layout-wrapper-static .layout-main .layout-topbar {
	width: calc(100% - 240px);
	-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: 75px;
		transform: translate3d(-240px, 0px, 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: 0px;
	}

	.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: #d8dee9;
		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: #d8dee9;
		-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: #20252e;
	}

	.layout-wrapper.layout-sidebar-mobile-active
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-left
		.sidebar-menu-button:hover {
		background-color: #5e81ac;
		-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: #20252e;
	}

	.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: 5px;
		margin-left: 0.5rem;
	}

	.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.active-menuitem
		> a
		i.layout-submenu-toggler {
		margin-top: -5px;
	}

	.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.active-menuitem
		> ul
		li.active-menuitem
		> a
		.layout-submenu-toggler {
		margin-top: -1rem;
	}

	.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-sidebar
		.layout-menu-container
		.layout-menu
		li
		ul
		li
		a
		.layout-submenu-toggler {
		display: block;
		left: auto;
		right: 10px;
		position: absolute;
		top: 50%;
		margin-top: -0.5rem;
	}

	.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: #d8dee9;
		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: #070f16;
}

.layout-menu-light .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #ffffff;
}

.layout-menu-light .layout-sidebar .sidebar-logo .app-name {
	color: #070f16;
}

.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: #5e81ac;
}

.layout-menu-light .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #5e81ac;
}

.layout-menu-light .layout-sidebar .layout-menu > li > a .menuitem-text {
	color: #070f16;
}

.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: #5e81ac;
}

.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: #5e81ac;
}

.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: #070f16;
}

.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: #5e81ac;
}

.layout-menu-light .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #5e81ac;
}

@media (min-width: 992px) {
	.layout-menu-light.layout-horizontal .layout-sidebar {
		background-color: #ffffff;
	}

	.layout-menu-light.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #5e81ac;
	}

	.layout-menu-light.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #5e81ac;
	}

	.layout-menu-light.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #070f16;
	}

	.layout-menu-light.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #4c566a;
	}

	.layout-menu-light.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: #f4f4f4;
	}

	.layout-menu-light.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #5e81ac;
	}

	.layout-menu-light.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #ffffff;
	}

	.layout-menu-light.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #ffffff;
	}

	.layout-menu-light.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #ffffff;
	}

	.layout-menu-light.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #070f16;
	}

	.layout-menu-light.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #4c566a;
	}

	.layout-menu-light.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: #f4f4f4;
	}

	.layout-menu-light.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #5e81ac;
	}

	.layout-menu-light.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
		color: #5e81ac;
	}
}

.layout-menu-dark .layout-sidebar {
	background-color: #070f16;
}

.layout-menu-dark .layout-sidebar .sidebar-logo .sidebar-pin {
	/* background-color: #ffffff; */
	background: -webkit-radial-gradient(#28a8a5, #28a87f);
	background: radial-gradient(#28a8a5, #28a87f);
}

.layout-menu-dark .layout-sidebar .sidebar-logo .sidebar-pin i {
	color: #070f16;
}

.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: #28a8a5;
}

.layout-menu-dark .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
	color: #28a8a5;
}

.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; */
	background: -webkit-linear-gradient(to right, #28a8a599, #28a87f99);
	background: linear-gradient(to right, #28a8a599, #28a87f99);
}

.layout-menu-dark .layout-sidebar .layout-menu > li.active-menuitem > a {
	/* background-color: #5e81ac; */
	background: -webkit-linear-gradient(to right, #28a8a5, #28a87f);
	background: linear-gradient(to right, #28a8a5, #28a87f);
}

.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: #5e81ac; */
	background: -webkit-linear-gradient(to right, #28a8a5, #28a87f);
	background: linear-gradient(to right, #28a8a5, #28a87f);
}

.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; */
	background: -webkit-linear-gradient(to right, #28a8a533, #28a87f33);
	background: linear-gradient(to right, #28a8a533, #28a87f33);
}

.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: #070F16; */
	background: -webkit-linear-gradient(to right, #28a8a599, #28a87f99);
	background: linear-gradient(to right, #28a8a599, #28a87f99);
}

.layout-menu-dark .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
	color: #28a8a5;
}

.layout-menu-dark .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #28a8a5;
}

@media (min-width: 992px) {
	.layout-menu-dark.layout-horizontal .layout-sidebar {
		background-color: #070f16;
	}

	.layout-menu-dark.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #28a8a5;
	}

	.layout-menu-dark.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #28a8a5;
	}

	.layout-menu-dark.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-dark.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-dark.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: #4c566a;
	}

	.layout-menu-dark.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #5e81ac;
	}

	.layout-menu-dark.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #ffffff;
	}

	.layout-menu-dark.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #ffffff;
	}

	.layout-menu-dark.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #4c566a;
	}

	.layout-menu-dark.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-dark.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-dark.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: #070f16;
	}

	.layout-menu-dark.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #28a8a5;
	}

	.layout-menu-dark.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
		color: #28a8a5;
	}
}

.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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-chile .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #88c0d0;
}

@media (min-width: 992px) {
	.layout-menu-chile.layout-horizontal .layout-sidebar {
		background-color: #282d37;
		background-image: url("../../images/menu/chile-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-chile.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #88c0d0;
	}

	.layout-menu-chile.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #88c0d0;
	}

	.layout-menu-chile.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-chile.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-chile.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-chile.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #88c0d0;
	}

	.layout-menu-chile.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-chile.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-chile.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-chile.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-chile.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-chile.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-chile.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #88c0d0;
	}

	.layout-menu-chile.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-naples .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #a3be8c;
}

@media (min-width: 992px) {
	.layout-menu-naples.layout-horizontal .layout-sidebar {
		background-color: #312f3a;
		background-image: url("../../images/menu/naples-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-naples.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #a3be8c;
	}

	.layout-menu-naples.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #a3be8c;
	}

	.layout-menu-naples.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-naples.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-naples.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-naples.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #a3be8c;
	}

	.layout-menu-naples.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-naples.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-naples.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-naples.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-naples.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-naples.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-naples.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #a3be8c;
	}

	.layout-menu-naples.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-georgia .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #ebcb8b;
}

@media (min-width: 992px) {
	.layout-menu-georgia.layout-horizontal .layout-sidebar {
		background-color: #282c36;
		background-image: url("../../images/menu/georgia-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-georgia.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #ebcb8b;
	}

	.layout-menu-georgia.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #ebcb8b;
	}

	.layout-menu-georgia.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-georgia.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-georgia.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-georgia.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #ebcb8b;
	}

	.layout-menu-georgia.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-georgia.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-georgia.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-georgia.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-georgia.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-georgia.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-georgia.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #ebcb8b;
	}

	.layout-menu-georgia.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-infinity .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #88c0d0;
}

@media (min-width: 992px) {
	.layout-menu-infinity.layout-horizontal .layout-sidebar {
		background-color: #202634;
		background-image: url("../../images/menu/infinity-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-infinity.layout-horizontal
		.layout-sidebar
		.layout-menu
		li
		> a.active-menuitem-routerlink
		.menuitem-text {
		color: #88c0d0;
	}

	.layout-menu-infinity.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #88c0d0;
	}

	.layout-menu-infinity.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-infinity.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-infinity.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-infinity.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #88c0d0;
	}

	.layout-menu-infinity.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-infinity.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-infinity.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-infinity.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-infinity.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-infinity.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-infinity.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #88c0d0;
	}

	.layout-menu-infinity.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-chicago .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #ebcb8b;
}

@media (min-width: 992px) {
	.layout-menu-chicago.layout-horizontal .layout-sidebar {
		background-color: #2a2e38;
		background-image: url("../../images/menu/chicago-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-chicago.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #ebcb8b;
	}

	.layout-menu-chicago.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #ebcb8b;
	}

	.layout-menu-chicago.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-chicago.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-chicago.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-chicago.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #ebcb8b;
	}

	.layout-menu-chicago.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-chicago.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-chicago.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-chicago.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-chicago.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-chicago.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-chicago.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #ebcb8b;
	}

	.layout-menu-chicago.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-majesty .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #88c0d0;
}

@media (min-width: 992px) {
	.layout-menu-majesty.layout-horizontal .layout-sidebar {
		background-color: #4c5158;
		background-image: url("../../images/menu/majesty-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-majesty.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #88c0d0;
	}

	.layout-menu-majesty.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #88c0d0;
	}

	.layout-menu-majesty.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-majesty.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-majesty.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-majesty.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #88c0d0;
	}

	.layout-menu-majesty.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-majesty.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-majesty.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-majesty.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-majesty.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-majesty.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-majesty.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #88c0d0;
	}

	.layout-menu-majesty.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-fish .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #b48ead;
}

@media (min-width: 992px) {
	.layout-menu-fish.layout-horizontal .layout-sidebar {
		background-color: #264254;
		background-image: url("../../images/menu/fish-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-fish.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #b48ead;
	}

	.layout-menu-fish.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #b48ead;
	}

	.layout-menu-fish.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-fish.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-fish.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-fish.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #b48ead;
	}

	.layout-menu-fish.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-fish.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-fish.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-fish.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-fish.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-fish.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-fish.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #b48ead;
	}

	.layout-menu-fish.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-dawn .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #ebcb8b;
}

@media (min-width: 992px) {
	.layout-menu-dawn.layout-horizontal .layout-sidebar {
		background-color: #20505d;
		background-image: url("../../images/menu/dawn-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-dawn.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #ebcb8b;
	}

	.layout-menu-dawn.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #ebcb8b;
	}

	.layout-menu-dawn.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-dawn.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-dawn.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-dawn.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #ebcb8b;
	}

	.layout-menu-dawn.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-dawn.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-dawn.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-dawn.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-dawn.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-dawn.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-dawn.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #ebcb8b;
	}

	.layout-menu-dawn.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-record .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #d08770;
}

@media (min-width: 992px) {
	.layout-menu-record.layout-horizontal .layout-sidebar {
		background-color: #202928;
		background-image: url("../../images/menu/record-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-record.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #d08770;
	}

	.layout-menu-record.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #d08770;
	}

	.layout-menu-record.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-record.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-record.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-record.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #d08770;
	}

	.layout-menu-record.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-record.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-record.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-record.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-record.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-record.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.42);
	}

	.layout-menu-record.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #d08770;
	}

	.layout-menu-record.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-pool .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #a3be8c;
}

@media (min-width: 992px) {
	.layout-menu-pool.layout-horizontal .layout-sidebar {
		background-color: #475a62;
		background-image: url("../../images/menu/pool-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-pool.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #a3be8c;
	}

	.layout-menu-pool.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #a3be8c;
	}

	.layout-menu-pool.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-pool.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-pool.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-pool.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #a3be8c;
	}

	.layout-menu-pool.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-pool.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-pool.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-pool.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-pool.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-pool.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-pool.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #a3be8c;
	}

	.layout-menu-pool.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-metal .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #ebcb8b;
}

@media (min-width: 992px) {
	.layout-menu-metal.layout-horizontal .layout-sidebar {
		background-color: #262a33;
		background-image: url("../../images/menu/metal-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-metal.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #ebcb8b;
	}

	.layout-menu-metal.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #ebcb8b;
	}

	.layout-menu-metal.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-metal.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-metal.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-metal.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #ebcb8b;
	}

	.layout-menu-metal.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-metal.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-metal.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-metal.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-metal.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-metal.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-metal.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #ebcb8b;
	}

	.layout-menu-metal.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-china .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #bf616a;
}

@media (min-width: 992px) {
	.layout-menu-china.layout-horizontal .layout-sidebar {
		background-color: #1e2a31;
		background-image: url("../../images/menu/china-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-china.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #bf616a;
	}

	.layout-menu-china.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #bf616a;
	}

	.layout-menu-china.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-china.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-china.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-china.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #bf616a;
	}

	.layout-menu-china.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-china.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-china.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-china.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-china.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-china.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.32);
	}

	.layout-menu-china.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #bf616a;
	}

	.layout-menu-china.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-table .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #ebcb8b;
}

@media (min-width: 992px) {
	.layout-menu-table.layout-horizontal .layout-sidebar {
		background-color: #4f5259;
		background-image: url("../../images/menu/table-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-table.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #ebcb8b;
	}

	.layout-menu-table.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #ebcb8b;
	}

	.layout-menu-table.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-table.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-table.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-table.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #ebcb8b;
	}

	.layout-menu-table.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-table.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-table.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-table.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-table.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-table.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-table.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #ebcb8b;
	}

	.layout-menu-table.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-panorama .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #88c0d0;
}

@media (min-width: 992px) {
	.layout-menu-panorama.layout-horizontal .layout-sidebar {
		background-color: #252e38;
		background-image: url("../../images/menu/panorama-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-panorama.layout-horizontal
		.layout-sidebar
		.layout-menu
		li
		> a.active-menuitem-routerlink
		.menuitem-text {
		color: #88c0d0;
	}

	.layout-menu-panorama.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #88c0d0;
	}

	.layout-menu-panorama.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-panorama.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-panorama.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-panorama.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #88c0d0;
	}

	.layout-menu-panorama.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-panorama.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-panorama.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-panorama.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-panorama.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-panorama.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.32);
	}

	.layout-menu-panorama.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #88c0d0;
	}

	.layout-menu-panorama.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-barcelona .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #ebcb8b;
}

@media (min-width: 992px) {
	.layout-menu-barcelona.layout-horizontal .layout-sidebar {
		background-color: #222932;
		background-image: url("../../images/menu/barcelona-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-barcelona.layout-horizontal
		.layout-sidebar
		.layout-menu
		li
		> a.active-menuitem-routerlink
		.menuitem-text {
		color: #ebcb8b;
	}

	.layout-menu-barcelona.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #ebcb8b;
	}

	.layout-menu-barcelona.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-barcelona.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-barcelona.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-barcelona.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #ebcb8b;
	}

	.layout-menu-barcelona.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-barcelona.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-barcelona.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-barcelona.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-barcelona.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-barcelona.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.42);
	}

	.layout-menu-barcelona.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #ebcb8b;
	}

	.layout-menu-barcelona.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-underwater .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #8fbcbb;
}

@media (min-width: 992px) {
	.layout-menu-underwater.layout-horizontal .layout-sidebar {
		background-color: #202631;
		background-image: url("../../images/menu/underwater-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-underwater.layout-horizontal
		.layout-sidebar
		.layout-menu
		li
		> a.active-menuitem-routerlink
		.menuitem-text {
		color: #8fbcbb;
	}

	.layout-menu-underwater.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #8fbcbb;
	}

	.layout-menu-underwater.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-underwater.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-underwater.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-underwater.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #8fbcbb;
	}

	.layout-menu-underwater.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-underwater.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-underwater.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-underwater.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-underwater.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-underwater.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.42);
	}

	.layout-menu-underwater.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #8fbcbb;
	}

	.layout-menu-underwater.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-symmetry .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #8fbcbb;
}

@media (min-width: 992px) {
	.layout-menu-symmetry.layout-horizontal .layout-sidebar {
		background-color: #545a65;
		background-image: url("../../images/menu/symmetry-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-symmetry.layout-horizontal
		.layout-sidebar
		.layout-menu
		li
		> a.active-menuitem-routerlink
		.menuitem-text {
		color: #8fbcbb;
	}

	.layout-menu-symmetry.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #8fbcbb;
	}

	.layout-menu-symmetry.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-symmetry.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-symmetry.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-symmetry.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #8fbcbb;
	}

	.layout-menu-symmetry.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-symmetry.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-symmetry.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-symmetry.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-symmetry.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-symmetry.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.42);
	}

	.layout-menu-symmetry.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #8fbcbb;
	}

	.layout-menu-symmetry.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-rain .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #d08770;
}

@media (min-width: 992px) {
	.layout-menu-rain.layout-horizontal .layout-sidebar {
		background-color: #35414f;
		background-image: url("../../images/menu/rain-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-rain.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #d08770;
	}

	.layout-menu-rain.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #d08770;
	}

	.layout-menu-rain.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-rain.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-rain.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-rain.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #d08770;
	}

	.layout-menu-rain.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-rain.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-rain.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-rain.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-rain.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-rain.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-rain.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #d08770;
	}

	.layout-menu-rain.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-utah .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #ebcb8b;
}

@media (min-width: 992px) {
	.layout-menu-utah.layout-horizontal .layout-sidebar {
		background-color: #3d2e34;
		background-image: url("../../images/menu/utah-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-utah.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #ebcb8b;
	}

	.layout-menu-utah.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #ebcb8b;
	}

	.layout-menu-utah.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-utah.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-utah.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-utah.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #ebcb8b;
	}

	.layout-menu-utah.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-utah.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-utah.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-utah.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-utah.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-utah.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-utah.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #ebcb8b;
	}

	.layout-menu-utah.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-wave .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #81a1c1;
}

@media (min-width: 992px) {
	.layout-menu-wave.layout-horizontal .layout-sidebar {
		background-color: #1a2b39;
		background-image: url("../../images/menu/wave-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-wave.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #81a1c1;
	}

	.layout-menu-wave.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #81a1c1;
	}

	.layout-menu-wave.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-wave.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-wave.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-wave.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #81a1c1;
	}

	.layout-menu-wave.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-wave.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-wave.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-wave.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-wave.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-wave.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-wave.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #81a1c1;
	}

	.layout-menu-wave.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-flora .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #ebcb8b;
}

@media (min-width: 992px) {
	.layout-menu-flora.layout-horizontal .layout-sidebar {
		background-color: #202422;
		background-image: url("../../images/menu/flora-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-flora.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #ebcb8b;
	}

	.layout-menu-flora.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #ebcb8b;
	}

	.layout-menu-flora.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-flora.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-flora.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-flora.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #ebcb8b;
	}

	.layout-menu-flora.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-flora.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-flora.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-flora.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-flora.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-flora.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.42);
	}

	.layout-menu-flora.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #ebcb8b;
	}

	.layout-menu-flora.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-speed .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #ebcb8b;
}

@media (min-width: 992px) {
	.layout-menu-speed.layout-horizontal .layout-sidebar {
		background-color: #272634;
		background-image: url("../../images/menu/speed-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #ebcb8b;
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #ebcb8b;
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #ebcb8b;
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.32);
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #ebcb8b;
	}

	.layout-menu-speed.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-speed .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #ebcb8b;
}

@media (min-width: 992px) {
	.layout-menu-speed.layout-horizontal .layout-sidebar {
		background-color: #272634;
		background-image: url("../../images/menu/speed-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #ebcb8b;
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #ebcb8b;
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #ebcb8b;
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.32);
	}

	.layout-menu-speed.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #ebcb8b;
	}

	.layout-menu-speed.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-canopy .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #a3be8c;
}

@media (min-width: 992px) {
	.layout-menu-canopy.layout-horizontal .layout-sidebar {
		background-color: #22272f;
		background-image: url("../../images/menu/canopy-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-canopy.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #a3be8c;
	}

	.layout-menu-canopy.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #a3be8c;
	}

	.layout-menu-canopy.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-canopy.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-canopy.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-canopy.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #a3be8c;
	}

	.layout-menu-canopy.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-canopy.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-canopy.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-canopy.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-canopy.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-canopy.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-canopy.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #a3be8c;
	}

	.layout-menu-canopy.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-sanpaolo .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #8fbcbb;
}

@media (min-width: 992px) {
	.layout-menu-sanpaolo.layout-horizontal .layout-sidebar {
		background-color: #252a32;
		background-image: url("../../images/menu/sanpaolo-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-sanpaolo.layout-horizontal
		.layout-sidebar
		.layout-menu
		li
		> a.active-menuitem-routerlink
		.menuitem-text {
		color: #8fbcbb;
	}

	.layout-menu-sanpaolo.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #8fbcbb;
	}

	.layout-menu-sanpaolo.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-sanpaolo.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-sanpaolo.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-sanpaolo.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #8fbcbb;
	}

	.layout-menu-sanpaolo.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-sanpaolo.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-sanpaolo.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-sanpaolo.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-sanpaolo.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-sanpaolo.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.32);
	}

	.layout-menu-sanpaolo.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #8fbcbb;
	}

	.layout-menu-sanpaolo.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-basketball .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #d08770;
}

@media (min-width: 992px) {
	.layout-menu-basketball.layout-horizontal .layout-sidebar {
		background-color: #293531;
		background-image: url("../../images/menu/basketball-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-basketball.layout-horizontal
		.layout-sidebar
		.layout-menu
		li
		> a.active-menuitem-routerlink
		.menuitem-text {
		color: #d08770;
	}

	.layout-menu-basketball.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #d08770;
	}

	.layout-menu-basketball.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-basketball.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-basketball.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-basketball.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #d08770;
	}

	.layout-menu-basketball.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-basketball.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-basketball.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-basketball.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-basketball.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-basketball.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.42);
	}

	.layout-menu-basketball.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #d08770;
	}

	.layout-menu-basketball.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-misty .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #d08770;
}

@media (min-width: 992px) {
	.layout-menu-misty.layout-horizontal .layout-sidebar {
		background-color: #202734;
		background-image: url("../../images/menu/misty-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-misty.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #d08770;
	}

	.layout-menu-misty.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #d08770;
	}

	.layout-menu-misty.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-misty.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-misty.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-misty.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #d08770;
	}

	.layout-menu-misty.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-misty.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-misty.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-misty.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-misty.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-misty.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-misty.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #d08770;
	}

	.layout-menu-misty.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-summit .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #88c0d0;
}

@media (min-width: 992px) {
	.layout-menu-summit.layout-horizontal .layout-sidebar {
		background-color: #212733;
		background-image: url("../../images/menu/summit-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-summit.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #88c0d0;
	}

	.layout-menu-summit.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #88c0d0;
	}

	.layout-menu-summit.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-summit.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-summit.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-summit.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #88c0d0;
	}

	.layout-menu-summit.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-summit.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-summit.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-summit.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-summit.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-summit.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-summit.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #88c0d0;
	}

	.layout-menu-summit.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-snow .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #81a1c1;
}

@media (min-width: 992px) {
	.layout-menu-snow.layout-horizontal .layout-sidebar {
		background-color: #414a55;
		background-image: url("../../images/menu/snow-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-snow.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #81a1c1;
	}

	.layout-menu-snow.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #81a1c1;
	}

	.layout-menu-snow.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-snow.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-snow.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-snow.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #81a1c1;
	}

	.layout-menu-snow.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-snow.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-snow.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-snow.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-snow.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-snow.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-snow.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #81a1c1;
	}

	.layout-menu-snow.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-wall .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #81a1c1;
}

@media (min-width: 992px) {
	.layout-menu-wall.layout-horizontal .layout-sidebar {
		background-color: #50555f;
		background-image: url("../../images/menu/wall-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-wall.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #81a1c1;
	}

	.layout-menu-wall.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #81a1c1;
	}

	.layout-menu-wall.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-wall.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-wall.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-wall.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #81a1c1;
	}

	.layout-menu-wall.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-wall.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-wall.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-wall.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-wall.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-wall.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.42);
	}

	.layout-menu-wall.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #81a1c1;
	}

	.layout-menu-wall.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-ferris .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #a3be8c;
}

@media (min-width: 992px) {
	.layout-menu-ferris.layout-horizontal .layout-sidebar {
		background-color: #262b33;
		background-image: url("../../images/menu/ferris-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-ferris.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #a3be8c;
	}

	.layout-menu-ferris.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #a3be8c;
	}

	.layout-menu-ferris.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-ferris.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-ferris.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-ferris.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #a3be8c;
	}

	.layout-menu-ferris.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-ferris.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-ferris.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-ferris.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-ferris.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-ferris.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.32);
	}

	.layout-menu-ferris.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #a3be8c;
	}

	.layout-menu-ferris.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-ship .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #ebcb8b;
}

@media (min-width: 992px) {
	.layout-menu-ship.layout-horizontal .layout-sidebar {
		background-color: #262b35;
		background-image: url("../../images/menu/ship-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-ship.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #ebcb8b;
	}

	.layout-menu-ship.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #ebcb8b;
	}

	.layout-menu-ship.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-ship.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-ship.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-ship.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #ebcb8b;
	}

	.layout-menu-ship.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-ship.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-ship.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-ship.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-ship.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-ship.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.42);
	}

	.layout-menu-ship.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #ebcb8b;
	}

	.layout-menu-ship.layout-horizontal .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: #070f16;
}

.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: #070f16;
}

.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: #070f16;
}

.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;
}

.layout-menu-ny .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #8fbcbb;
}

@media (min-width: 992px) {
	.layout-menu-ny.layout-horizontal .layout-sidebar {
		background-color: #585d67;
		background-image: url("../../images/menu/ny-horizontal.jpg");
		background-size: auto 100%;
		background-repeat: no-repeat;
	}

	.layout-menu-ny.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #8fbcbb;
	}

	.layout-menu-ny.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #8fbcbb;
	}

	.layout-menu-ny.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-ny.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #eceff4;
	}

	.layout-menu-ny.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-ny.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #8fbcbb;
	}

	.layout-menu-ny.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #3b4252;
	}

	.layout-menu-ny.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #070f16;
	}

	.layout-menu-ny.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-ny.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #eceff4;
	}

	.layout-menu-ny.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #eceff4;
	}

	.layout-menu-ny.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-ny.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #8fbcbb;
	}

	.layout-menu-ny.layout-horizontal .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: #070f16;
}

.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;
}

.layout-menu-cyan .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #d08770;
}

@media (min-width: 992px) {
	.layout-menu-cyan.layout-horizontal .layout-sidebar {
		background-color: #3c5259;
	}

	.layout-menu-cyan.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #d08770;
	}

	.layout-menu-cyan.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #d08770;
	}

	.layout-menu-cyan.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #ffffff;
	}

	.layout-menu-cyan.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #ffffff;
	}

	.layout-menu-cyan.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-cyan.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #d08770;
	}

	.layout-menu-cyan.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #343a40;
	}

	.layout-menu-cyan.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #343a40;
	}

	.layout-menu-cyan.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-cyan.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #ffffff;
	}

	.layout-menu-cyan.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #ffffff;
	}

	.layout-menu-cyan.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-cyan.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #d08770;
	}

	.layout-menu-cyan.layout-horizontal .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: #070f16;
}

.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;
}

.layout-menu-violet .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #f8c869;
}

@media (min-width: 992px) {
	.layout-menu-violet.layout-horizontal .layout-sidebar {
		background-color: #4a4358;
	}

	.layout-menu-violet.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #f8c869;
	}

	.layout-menu-violet.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #f8c869;
	}

	.layout-menu-violet.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #ffffff;
	}

	.layout-menu-violet.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #ffffff;
	}

	.layout-menu-violet.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-violet.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #f8c869;
	}

	.layout-menu-violet.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #343a40;
	}

	.layout-menu-violet.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #343a40;
	}

	.layout-menu-violet.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-violet.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #ffffff;
	}

	.layout-menu-violet.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #ffffff;
	}

	.layout-menu-violet.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-violet.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #f8c869;
	}

	.layout-menu-violet.layout-horizontal .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: #070f16;
}

.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;
}

.layout-menu-red .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #8fbcbb;
}

@media (min-width: 992px) {
	.layout-menu-red.layout-horizontal .layout-sidebar {
		background-color: #5e4346;
	}

	.layout-menu-red.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #8fbcbb;
	}

	.layout-menu-red.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #8fbcbb;
	}

	.layout-menu-red.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #ffffff;
	}

	.layout-menu-red.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #ffffff;
	}

	.layout-menu-red.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-red.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #8fbcbb;
	}

	.layout-menu-red.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #343a40;
	}

	.layout-menu-red.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #343a40;
	}

	.layout-menu-red.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-red.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #ffffff;
	}

	.layout-menu-red.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #ffffff;
	}

	.layout-menu-red.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-red.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #8fbcbb;
	}

	.layout-menu-red.layout-horizontal .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: #070f16;
}

.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;
}

.layout-menu-blue .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #f8c869;
}

@media (min-width: 992px) {
	.layout-menu-blue.layout-horizontal .layout-sidebar {
		background-color: #354563;
	}

	.layout-menu-blue.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #f8c869;
	}

	.layout-menu-blue.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #f8c869;
	}

	.layout-menu-blue.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #ffffff;
	}

	.layout-menu-blue.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #ffffff;
	}

	.layout-menu-blue.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-blue.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #f8c869;
	}

	.layout-menu-blue.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #343a40;
	}

	.layout-menu-blue.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #343a40;
	}

	.layout-menu-blue.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-blue.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #ffffff;
	}

	.layout-menu-blue.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #ffffff;
	}

	.layout-menu-blue.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-blue.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #f8c869;
	}

	.layout-menu-blue.layout-horizontal .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: #070f16;
}

.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;
}

.layout-menu-porsuk .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #a3be8c;
}

@media (min-width: 992px) {
	.layout-menu-porsuk.layout-horizontal .layout-sidebar {
		background-color: #21596e;
	}

	.layout-menu-porsuk.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #a3be8c;
	}

	.layout-menu-porsuk.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #a3be8c;
	}

	.layout-menu-porsuk.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #ffffff;
	}

	.layout-menu-porsuk.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #ffffff;
	}

	.layout-menu-porsuk.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-porsuk.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #a3be8c;
	}

	.layout-menu-porsuk.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #343a40;
	}

	.layout-menu-porsuk.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #343a40;
	}

	.layout-menu-porsuk.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-porsuk.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #ffffff;
	}

	.layout-menu-porsuk.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #ffffff;
	}

	.layout-menu-porsuk.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-porsuk.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #a3be8c;
	}

	.layout-menu-porsuk.layout-horizontal .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: #070f16;
}

.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;
}

.layout-menu-pink .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #f8c869;
}

@media (min-width: 992px) {
	.layout-menu-pink.layout-horizontal .layout-sidebar {
		background-color: #8c515e;
	}

	.layout-menu-pink.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #f8c869;
	}

	.layout-menu-pink.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #f8c869;
	}

	.layout-menu-pink.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #ffffff;
	}

	.layout-menu-pink.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #ffffff;
	}

	.layout-menu-pink.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-pink.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #f8c869;
	}

	.layout-menu-pink.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #343a40;
	}

	.layout-menu-pink.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #343a40;
	}

	.layout-menu-pink.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-pink.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #ffffff;
	}

	.layout-menu-pink.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #ffffff;
	}

	.layout-menu-pink.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-pink.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #f8c869;
	}

	.layout-menu-pink.layout-horizontal .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: #070f16;
}

.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;
}

.layout-menu-purple .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #f8c869;
}

@media (min-width: 992px) {
	.layout-menu-purple.layout-horizontal .layout-sidebar {
		background-color: #60476f;
	}

	.layout-menu-purple.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #f8c869;
	}

	.layout-menu-purple.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #f8c869;
	}

	.layout-menu-purple.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #ffffff;
	}

	.layout-menu-purple.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #ffffff;
	}

	.layout-menu-purple.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-purple.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #f8c869;
	}

	.layout-menu-purple.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #343a40;
	}

	.layout-menu-purple.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #343a40;
	}

	.layout-menu-purple.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-purple.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #ffffff;
	}

	.layout-menu-purple.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #ffffff;
	}

	.layout-menu-purple.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-purple.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #f8c869;
	}

	.layout-menu-purple.layout-horizontal .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: #070f16;
}

.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;
}

.layout-menu-orange .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
	color: #88c0d0;
}

@media (min-width: 992px) {
	.layout-menu-orange.layout-horizontal .layout-sidebar {
		background-color: #9b6f61;
	}

	.layout-menu-orange.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink .menuitem-text {
		color: #88c0d0;
	}

	.layout-menu-orange.layout-horizontal .layout-sidebar .layout-menu li > a.active-menuitem-routerlink i {
		color: #88c0d0;
	}

	.layout-menu-orange.layout-horizontal .layout-sidebar .layout-menu > li > a .menuitem-text {
		color: #ffffff;
	}

	.layout-menu-orange.layout-horizontal .layout-sidebar .layout-menu > li > a i {
		color: #ffffff;
	}

	.layout-menu-orange.layout-horizontal .layout-sidebar .layout-menu > li > a:hover {
		background-color: rgba(255, 255, 255, 0.24);
	}

	.layout-menu-orange.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a {
		background-color: #88c0d0;
	}

	.layout-menu-orange.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a .menuitem-text {
		color: #343a40;
	}

	.layout-menu-orange.layout-horizontal .layout-sidebar .layout-menu > li.active-menuitem > a i {
		color: #343a40;
	}

	.layout-menu-orange.layout-horizontal .layout-sidebar .layout-menu > li ul {
		background-color: #070f16;
	}

	.layout-menu-orange.layout-horizontal .layout-sidebar .layout-menu > li ul li a .menuitem-text {
		color: #ffffff;
	}

	.layout-menu-orange.layout-horizontal .layout-sidebar .layout-menu > li ul li a i {
		color: #ffffff;
	}

	.layout-menu-orange.layout-horizontal .layout-sidebar .layout-menu > li ul li a:hover {
		background-color: rgba(0, 0, 0, 0.36);
	}

	.layout-menu-orange.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a .menuitem-text {
		color: #88c0d0;
	}

	.layout-menu-orange.layout-horizontal .layout-sidebar .layout-menu > li ul li.active-menuitem > a i {
		color: #88c0d0;
	}
}

.layout-topbar {
	background-color: #070f16;
	position: fixed;
	top: 0;
	z-index: 998;
	width: calc(100% - 60px);
	-moz-transition: width 0.15s;
	-o-transition: width 0.15s;
	-webkit-transition: width 0.15s;
	transition: width 0.15s;
	-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-topbar .layout-topbar-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	height: 75px;
	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;
	flex-grow: 1;
}

.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: #20252e;
	color: #d8dee9;
	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: #5e81ac;
	color: #ffffff;
}

.layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu {
	position: absolute;
	padding: 12px 18px;
	padding-bottom: 24px;
	background-color: #20252e;
	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: #5e81ac;
	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: #d8dee9;
	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: #d8dee9;
	padding-right: 10px;
}

.layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu > li > ul > li > span h5 {
	color: #d8dee9;
	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: #5e81ac;
}

.layout-topbar .layout-topbar-wrapper .layout-topbar-left .layout-megamenu > li > ul > li:hover > span h5 {
	color: #5e81ac;
	-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;
	height: 100%;
}

.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a {
	width: 100%;
	padding: 0.7em;
	margin: 0 0.5em;
}

.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a.layout-rightpanel-button i {
	font-size: 22px;
	font-weight: bold;
}

.layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > a i {
	color: #d8dee9;
	font-size: 22px;
}

.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: #5e81ac;
	-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 {
	-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: 75px;
	left: 5px;
	list-style-type: none;
	margin: 0;
	padding: 0;
	z-index: 1000;
	min-width: 250px;
	background-color: #20252e;
	-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-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions > li > ul:before {
	width: 50px;
	height: 6px;
	background-color: #5e81ac;
	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-right .layout-topbar-actions > li > ul .layout-submenu-header {
	background-color: #5e81ac;
	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: #d8dee9;
	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: #d8dee9;
}

.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: #070f16;
	-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: #d8dee9;
}

.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: #20252e;
	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: #d8dee9;
}

.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(90, 101, 124, 0.3);
	border-right: 0.5px solid rgba(90, 101, 124, 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: #070f16;
	-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: #d8dee9;
}

.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;
}

.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 {
	padding: 10px 40px 10px 10px;
	width: 180px;
	border: none;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	background-color: #20252e;
	color: #d8dee9;
	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
	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.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;
}

.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 img {
	height: 45px;
	width: 45px;
	border: 0 none;
}

.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item > a .profile-info-wrapper {
	margin-left: 15px;
}

.layout-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item > a .profile-info-wrapper h3 {
	font-size: 16px;
	font-weight: 500;
	color: #d8dee9;
	margin: 0;
}

.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: #20252e;
	-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-topbar .layout-topbar-wrapper .layout-topbar-right .profile-item > ul:before {
	width: 54px;
	height: 6px;
	background-color: #5e81ac;
	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-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: #d8dee9;
	cursor: pointer;
}

.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:last-child {
	/* cursor: initial; */
	border: 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 .icon.icon-4 {
	color: #90ee90;
}

.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;
		padding: 0;
		-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);
	}

	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-left {
		padding: 0 1em;
		height: 75px;
		-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: #d8dee9;
		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: #5e81ac;
		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: #d8dee9;
		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: #d8dee9;
		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: #070f16;
		-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: #070f16;
		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: #20252e;
		-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: #5e81ac;
		-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 {
		height: 150px;
		display: none;
	}

	.layout-wrapper .layout-topbar .layout-topbar-wrapper .layout-topbar-right .layout-topbar-actions {
		padding: 0;
		height: 50%;
		border-bottom: 1px solid rgba(90, 101, 124, 0.3);
		-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: #d8dee9;
	}

	.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: #5e81ac;
		-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: #5e81ac;
		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: #20252e;
		-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-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: #070f16;
		-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: #d8dee9;
	}

	.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: #d8dee9;
		-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: #20252e;
	}

	.layout-wrapper.layout-topbar-mobile-active
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-left
		.topbar-menu-mobile-button:hover {
		background-color: #5e81ac;
		-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: #d8dee9;
		-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: #20252e;
	}

	.layout-wrapper.layout-megamenu-mobile-active
		.layout-topbar
		.layout-topbar-wrapper
		.layout-topbar-left
		.megamenu-mobile-button:hover {
		background-color: #5e81ac;
		-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: #20252e;
	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(90, 101, 124, 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: #d8dee9;
	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: #d8dee9;
}

.layout-rightpanel .right-panel-content .right-panel-content-row .tasks .tasks-header .tasks-info span.highlighted {
	color: #d8dee9;
	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: #070f16;
}

.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: #d8dee9;
	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: #20252e;
	border: none;
}

.layout-rightpanel .right-panel-content .right-panel-content-row .calendar .p-datepicker-inline .p-datepicker-header {
	font-size: 13px;
	color: #d8dee9;
}

.layout-rightpanel
	.right-panel-content
	.right-panel-content-row
	.calendar
	.p-datepicker-inline
	.p-datepicker-header
	.p-datepicker-title
	span {
	color: #d8dee9;
}

.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: #d8dee9;
}

.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: #070f16;
}

.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: #d8dee9;
}

.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: #d8dee9;
}

.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 {
	background-color: #20252e;
	padding: 10px 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.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: 13px;
	color: #9199a9;
}

.layout-breadcrumb .breadcrumb .route-bar-breadcrumb li:first-child {
	padding-left: 0;
}

.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(90, 101, 124, 0.3);
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		justify-content: center;
		padding: 0 30px;
		padding-bottom: 10px;
	}

	.layout-breadcrumb .notification {
		padding: 0 30px;
		padding-top: 10px;
		text-align: center;
	}
}

.layout-content {
	flex: 1 0 auto;
	padding: 2em;
}

@media (max-width: 740px) {
	.layout-content {
		flex: 1 0 auto;
		padding: 0.5rem;
		margin-bottom: 60px;
		/* margin-top: 1rem; */
	}
}

.layout-dashboard .list-effect {
	height: 80px;
	width: 100%;
	background-color: transparent;
	background-image: -webkit-gradient(linear, left bottom, left top, from(#20252e), to(transparent));
	background-image: -webkit-linear-gradient(to top, #20252e, transparent);
	background-image: -moz-linear-gradient(to top, #20252e, transparent);
	background-image: -ms-linear-gradient(to top, #20252e, transparent);
	background-image: -o-linear-gradient(to top, #20252e, transparent);
	background-image: linear-gradient(to top, #20252e, transparent);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#20252e", endColorstr="transparent");
	position: absolute;
	bottom: 0;
	left: 0;
}

.layout-dashboard .map {
	padding: 0;
}

.layout-dashboard .map .map-image {
	position: relative;
}

.layout-dashboard .map .map-image img {
	width: 100%;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.layout-dashboard .map .map-info {
	padding: 12px;
}

.layout-dashboard .map .map-info .map-info-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
}

.layout-dashboard .map .map-info .map-info-header h6 {
	color: #d8dee9;
	font-size: 14px;
	margin: 0;
}

.layout-dashboard .map .map-info .map-info-header .location-change {
	text-align: right;
	cursor: pointer;
}

.layout-dashboard .map .map-info .map-info-header .location-change span,
.layout-dashboard .map .map-info .map-info-header .location-change i {
	color: #9199a9;
	font-size: 12px;
}

.layout-dashboard .map .map-info .map-info-header .location-change:hover span,
.layout-dashboard .map .map-info .map-info-header .location-change:hover i {
	color: #d8dee9;
	-moz-transition: color 0.15s;
	-o-transition: color 0.15s;
	-webkit-transition: color 0.15s;
	transition: color 0.15s;
}

.layout-dashboard .map .map-info .map-info-bar {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
}

.layout-dashboard .map .map-info .map-info-bar .info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-top: 1em;
	cursor: pointer;
}

.layout-dashboard .map .map-info .map-info-bar .info:hover span {
	color: #9199a9;
	-moz-transition: color 0.15s;
	-o-transition: color 0.15s;
	-webkit-transition: color 0.15s;
	transition: color 0.15s;
}

.layout-dashboard .map .map-info .map-info-bar .info:last-child {
	border-right: none;
}

.layout-dashboard .map .map-info .map-info-bar .info .location-point {
	height: 18px;
	width: 18px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	cursor: pointer;
	margin-right: 5px;
}

.layout-dashboard .map .map-info .map-info-bar .info .location-point.point-1 {
	background-color: #bf616a;
}

.layout-dashboard .map .map-info .map-info-bar .info .location-point.point-2 {
	background-color: #b48ead;
}

.layout-dashboard .map .map-info .map-info-bar .info .location-point.point-3 {
	background-color: #d08770;
}

.layout-dashboard .map .map-info .map-info-bar .info a {
	text-decoration: underline;
	color: #5e81ac;
}

.login-body .login-content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.login-body .login-content .night-switch {
	position: absolute;
	right: 20px;
	top: 10px;
}

.login-body .login-content .night-switch .p-button {
	background-color: transparent;
	border-color: transparent;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	width: 60px;
	height: 60px;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	position: relative;
	outline: none;
	z-index: 101;
}

.login-body .login-content .night-switch .p-button .pi {
	width: 32px;
	height: 32px;
	font-size: 32px;
	font-weight: bold;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-top: -16px;
	margin-left: -16px;
}

.login-body .login-content .night-switch .p-button .p-button-label {
	display: none;
}

.login-body .login-content .night-switch .p-button:enabled:hover {
	border: none;
	opacity: 0.7;
	-moz-transition: opacity 0.15s;
	-o-transition: opacity 0.15s;
	-webkit-transition: opacity 0.15s;
	transition: opacity 0.15s;
}

.login-body .login-content .login-panel {
	width: 40%;
	height: 100vh;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.login-body .login-content .login-panel .login-panel-content {
	z-index: 100;
	width: 80%;
	padding: 0 6%;
	text-align: center;
}

.login-body .login-content .login-panel .login-panel-content .logo {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.login-body .login-content .login-panel .login-panel-content .logo img {
	width: 100px;
	/* content: url(/assets/layout/images/logos/logo_com_texto_arppen_branco.png) !important; */
}

.login-body .login-content .login-panel .login-panel-content h1 {
	font-size: 42px;
	font-weight: 100;
	letter-spacing: 1px;
	margin: 20px 0;
	color: #ffffff;
}

.login-body .login-content .login-panel .login-panel-content p {
	margin-top: 10px;
	font-size: 16px;
	color: #d8dee9;
}

.login-body .login-content .login-panel .login-panel-content .forms {
	margin-top: 30px;
	text-align: left;
}

.login-body .login-content .login-panel .login-panel-content .forms .login-input-wrapper {
	position: relative;
	margin-bottom: 24px;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

.login-body .login-content .login-panel .login-panel-content .forms .login-input-wrapper input {
	width: 100%;
	padding-right: 16px;
	background-color: transparent;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
	border: solid 1px #c3ccdd;
	color: #d8dee9;
	margin-top: 6px;
}

.login-body .login-content .login-panel .login-panel-content .forms .login-input-wrapper i {
	position: absolute;
	color: #d8dee9;
	font-size: 16px;
	top: 50%;
	right: 0.429em;
	margin-top: 3px;
}

.login-body .login-content .login-panel .login-panel-content .forms .p-checkbox.p-component {
	margin-left: -6px;
}

.login-body .login-content .login-panel .login-panel-content .forms label {
	color: #c3ccdd;
}

.login-body .login-content .login-panel .login-panel-content .buttons {
	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;
}

.login-body .login-content .login-panel .login-panel-content .buttons .p-button {
	margin-top: 15px;
	background-color: #bd69ae;
	border: none;
	min-width: 100px;
}

.login-body .login-content .login-panel .login-panel-content .buttons a.secondary-button {
	background-color: transparent;
	border: none;
	color: #c3ccdd;
	padding: 2px 0;
	text-decoration: underline;
}

.login-body .login-content .desert {
	width: 100%;
	height: 30vh;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	bottom: 0;
	background-image: url("../../images/pages/asset-desert.svg");
}

.login-body.layout-light {
	background-color: #eceff4;
}

.login-body.layout-light .login-content .night-switch .p-button {
	color: #5a657c;
	border: none;
}

.login-body.layout-light .login-content .night-switch .p-button.light-switch {
	display: none;
}

.login-body.layout-light .login-content .night-switch .p-button.dark-switch {
	display: block;
}

.login-body.layout-light .login-content .login-panel {
	background-color: rgba(216, 222, 233, 0.3);
}

.login-body.layout-light .login-content .login-panel .login-panel-content h1 {
	color: #070f16;
}

.login-body.layout-light .login-content .login-panel .login-panel-content p {
	color: #5a657c;
}

.login-body.layout-light .login-content .login-panel .login-panel-content .forms .login-input-wrapper input {
	border: solid 1px #cccccc;
	background-color: #ffffff;
	color: #9199a9;
}

.login-body.layout-light .login-content .login-panel .login-panel-content .forms .login-input-wrapper i {
	color: #9199a9;
}

.login-body.layout-light .login-content .login-panel .login-panel-content .forms label {
	color: #4c566a;
}

.login-body.layout-light .login-content .login-panel .login-panel-content .buttons button,
.login-body.layout-light .login-content .login-panel .login-panel-content .buttons a {
	background-color: #5e81ac;
}

.login-body.layout-light .login-content .login-panel .login-panel-content .buttons button.secondary-button,
.login-body.layout-light .login-content .login-panel .login-panel-content .buttons a.secondary-button {
	background-color: transparent;
	color: #9199a9;
}

.login-body.layout-light
	.login-content
	.login-panel
	.login-panel-content
	.buttons
	button.secondary-button:enabled:hover,
.login-body.layout-light .login-content .login-panel .login-panel-content .buttons a.secondary-button:enabled:hover {
	background-color: transparent;
	color: #636975;
	-moz-transition: color 0.15s;
	-o-transition: color 0.15s;
	-webkit-transition: color 0.15s;
	transition: color 0.15s;
}

.login-body.layout-light .login-content .login-panel .login-panel-content .buttons button:enabled:hover,
.login-body.layout-light .login-content .login-panel .login-panel-content .buttons a:enabled:hover {
	background-color: #76a1d6;
	-moz-transition: background-color 0.15s;
	-o-transition: background-color 0.15s;
	-webkit-transition: background-color 0.15s;
	transition: background-color 0.15s;
}

.login-body.layout-light .login-content .desert {
	display: block;
}

.login-body.layout-dark {
	background-color: #070f16;
	background-image: url("../../images/background/WaveGrad40.png");
	background-repeat: no-repeat;
	background-size: 100%;
	/* background-position: top; */
}

.login-body.layout-dark .login-content .night-switch .p-button {
	color: #ffffff;
}

.login-body.layout-dark .login-content .night-switch .p-button.dark-switch {
	display: none;
}

.login-body.layout-dark .login-content .night-switch .p-button.light-switch {
	display: block;
}

.login-body.layout-dark .login-content .login-panel {
	background-color: rgba(32, 37, 46, 0.3);
}

.login-body.layout-dark .login-content .login-panel .login-panel-content h1 {
	color: #ffffff;
}

.login-body.layout-dark .login-content .login-panel .login-panel-content p {
	color: #d8dee9;
}

.login-body.layout-dark .login-content .login-panel .login-panel-content .forms .login-input-wrapper input {
	border: solid 1px #c3ccdd;
	color: #d8dee9;
}

.login-body.layout-dark .login-content .login-panel .login-panel-content .forms .login-input-wrapper i {
	color: #d8dee9;
}

.login-body.layout-dark .login-content .login-panel .login-panel-content .forms label {
	color: #c3ccdd;
}

.login-body.layout-dark .login-content .login-panel .login-panel-content .buttons button,
.login-body.layout-dark .login-content .login-panel .login-panel-content .buttons a {
	background-color: #bd69ae;
}

.login-body.layout-dark .login-content .login-panel .login-panel-content .buttons button.secondary-button,
.login-body.layout-dark .login-content .login-panel .login-panel-content .buttons a.secondary-button {
	background-color: transparent;
	color: #c3ccdd;
}

.login-body.layout-dark .login-content .login-panel .login-panel-content .buttons button.secondary-button:enabled:hover,
.login-body.layout-dark .login-content .login-panel .login-panel-content .buttons a.secondary-button:enabled:hover {
	background-color: transparent;
	color: #ffffff;
	-moz-transition: color 0.15s;
	-o-transition: color 0.15s;
	-webkit-transition: color 0.15s;
	transition: color 0.15s;
}

.login-body.layout-dark .login-content .login-panel .login-panel-content .buttons button:enabled:hover,
.login-body.layout-dark .login-content .login-panel .login-panel-content .buttons a:enabled:hover {
	background-color: #e27dd0;
	-moz-transition: background-color 0.15s;
	-o-transition: background-color 0.15s;
	-webkit-transition: background-color 0.15s;
	transition: background-color 0.15s;
}

.login-body.layout-dark .login-content .desert {
	display: none;
}

@media (max-width: 740px) {
	.login-body .login-content .login-panel {
		width: 100%;
	}

	.login-body .login-content .login-panel .login-panel-content {
		width: 85%;
		padding: 20px 15px 50px;
	}

	.login-body .login-content .login-panel .login-panel-content h1 {
		font-size: 18px;
	}

	.login-body .login-content .login-panel .login-panel-content P {
		font-size: 16px;
	}

	.login-body .login-content .desert {
		background-position: right;
	}
}

.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(to bottom, #444c5b -9%, #20252e);
	background-image: -moz-linear-gradient(to bottom, #444c5b -9%, #20252e);
	background-image: -ms-linear-gradient(to bottom, #444c5b -9%, #20252e);
	background-image: -o-linear-gradient(to 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(to bottom, #5b4444 -9%, #20262e);
	background-image: -moz-linear-gradient(to bottom, #5b4444 -9%, #20262e);
	background-image: -ms-linear-gradient(to bottom, #5b4444 -9%, #20262e);
	background-image: -o-linear-gradient(to 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(to bottom, #5b5544 -9%, #20262e);
	background-image: -moz-linear-gradient(to bottom, #5b5544 -9%, #20262e);
	background-image: -ms-linear-gradient(to bottom, #5b5544 -9%, #20262e);
	background-image: -o-linear-gradient(to 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: 60px;
	background-color: #bbbbbb;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
	padding: 0 1%;
}

.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: #070f16;
	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;
	padding: 6px 12px;
	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: #070f16;
	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: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	background-color: #ffffff;
	text-align: center;
	margin-bottom: 32px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
	cursor: pointer;
	height: 290px;
}

.landing-body .section#meet-mirage .feature-cards .feature-card .feature-card-img {
	margin-top: 16px;
	margin-bottom: 16px;
}

.landing-body .section#meet-mirage .feature-cards .feature-card .feature-card-img img {
	width: 250px;
	height: 180px;
	border-radius: 50%;
}

.landing-body .section#meet-mirage .feature-cards .feature-card .feature-card-title {
	color: #20252e;
	font-size: 16px;
	font-weight: 500;
	padding: 12px 18px 25px;
	width: 300px;
}

.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: #070f16;
	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: #070f16;
	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: #5e81ac;
	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: 2%;
	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: auto;
	width: 50px;
	content: url(../../images/logos/logo_arppen_branco.png) !important;
}

.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: #070f16;
	position: fixed;
	z-index: 1000;
	height: 100%;
	width: 100%;
	left: 0;
	top: 0;
	opacity: 0.64;
	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: #070f16;
		-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: -webkit-radial-gradient(#28a8a5, #28a87f);
	background: radial-gradient(#28a8a5, #28a87f);
	text-align: center;
	font-size: 25px;
	bottom: 15px;
	right: 10px;
	z-index: 1000000;
	cursor: pointer;
	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;
	-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);
}

@media screen and (max-width: 767px) {
	.layout-config-button {
		display: block;
		position: fixed;
		width: 52px;
		height: 52px;
		line-height: 52px;
		background: -webkit-radial-gradient(#28a8a5, #28a87f);
		background: radial-gradient(#28a8a5, #28a87f);
		text-align: center;
		font-size: 25px;
		bottom: 80px;
		right: 10px;
		z-index: 1000000;
		cursor: pointer;
		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;
		-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: #fff;
	line-height: inherit;
	cursor: pointer;
}

.layout-config-button:hover {
	background: -webkit-radial-gradient(#28a8a599, #28a87f99);
	background: radial-gradient(#28a8a599, #28a87f99);
}

.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 .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); */
	background: #070f16;
}

.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-color: #20252e 4%;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#20252e 4%), to(#71b5c8 214%));
	background-image: -webkit-linear-gradient(to bottom, #20252e 4%, #71b5c8 214%);
	background-image: -moz-linear-gradient(to bottom, #20252e 4%, #71b5c8 214%);
	background-image: -ms-linear-gradient(to bottom, #20252e 4%, #71b5c8 214%);
	background-image: -o-linear-gradient(to bottom, #20252e 4%, #71b5c8 214%);
	background-image: linear-gradient(to bottom, #20252e 4%, #71b5c8 214%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#20252e 4%", endColorstr="#71B5C8 214%");
	background-color: #20252e;
}

.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: visibility 0.8s;
	-o-transition: visibility 0.8s;
	-webkit-transition: visibility 0.8s;
	transition: visibility 0.8s;
	-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(to bottom, #45b0d5, #59c7ed 99%);
	background-image: -moz-linear-gradient(to bottom, #45b0d5, #59c7ed 99%);
	background-image: -ms-linear-gradient(to bottom, #45b0d5, #59c7ed 99%);
	background-image: -o-linear-gradient(to 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 #434c5e;
	background-color: #070f16;
	padding: 15px;
	width: 100%;
	margin: 12px 0;
}

.widget-timeline .timeline-row > .grid > .col-1 {
	width: 40px;
}

.widget-timeline .timeline-row > .grid > .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: #20252e;
	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: #d8dee9;
	font-weight: 500;
}

.widget-tasks .checkboxes {
	list-style: none;
	padding: 0;
	margin: 0;
	color: #d8dee9;
}

.widget-tasks .checkboxes .checkbox-row {
	padding: 6px 18px;
}

.widget-tasks .checkboxes .checkbox-row:nth-child(odd) {
	background-color: #070f16;
}

.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(90, 101, 124, 0.3);
}

.widget-team ul li:last-child {
	border-bottom: 1px solid rgba(90, 101, 124, 0.3);
}

.widget-team ul li:nth-child(odd) {
	background-color: #070f16;
}

.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: #d8dee9;
}

.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;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-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;
	position: absolute;
	top: 50px;
	left: 50%;
	margin-left: -75px;
}

.widget-card-graph .graph-header .graph .graph-center {
	width: 125px;
	height: 125px;
	background-color: #070f16;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#070f16), to(#eceff4));
	background-image: -webkit-linear-gradient(to bottom, #070f16, #eceff4);
	background-image: -moz-linear-gradient(to bottom, #070f16, #eceff4);
	background-image: -ms-linear-gradient(to bottom, #070f16, #eceff4);
	background-image: -o-linear-gradient(to bottom, #070f16, #eceff4);
	background-image: linear-gradient(to bottom, #070f16, #eceff4);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#070F16", 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(to left, #f2c260, #ebcb8b);
	background-image: -moz-linear-gradient(to left, #f2c260, #ebcb8b);
	background-image: -ms-linear-gradient(to left, #f2c260, #ebcb8b);
	background-image: -o-linear-gradient(to 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: #20252e;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	height: 115px;
	-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: #20252e;
	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;
	justify-content: center;
	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: 100px;
	height: 100px;
	font-size: 32pt;
	color: #fff;
	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: -50px;
	left: 50%;
	margin-left: -50px;
}

.widget-card-graph .graph-content .jun {
	position: absolute;
	right: 15%;
	top: 0;
}

.widget-card-graph .graph-content .graph-content-text {
	position: relative;
	margin-top: 50px;
}

.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(to bottom, #eceff4, #ffffff);
	background-image: -moz-linear-gradient(to bottom, #eceff4, #ffffff);
	background-image: -ms-linear-gradient(to bottom, #eceff4, #ffffff);
	background-image: -o-linear-gradient(to 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, #38ef7d 0%, #11998e 100%);
	/* ff3.6+ */
	background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #38ef7d), color-stop(100%, #11998e));
	/* safari4+,chrome */
	background: -webkit-linear-gradient(225deg, #38ef7d 0%, #11998e 100%);
	/* safari5.1+,chrome10+ */
	background: -o-linear-gradient(225deg, #38ef7d 0%, #11998e 100%);
	/* opera 11.10+ */
	background: -ms-linear-gradient(225deg, #38ef7d 0%, #11998e 100%);
	/* ie10+ */
	background: linear-gradient(225deg, #38ef7d 0%, #11998e 100%);
	/* w3c */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#38ef7d", endColorstr="#11998e", GradientType=1);
	/* ie6-9 */
}

.widget-card-graph.graph-1 .graph-header {
	background-image: url("../../images/dashboard/bg-passagens.jpg");
	background-size: cover;
	background-position: 0px -180px;
	background-repeat: no-repeat;
}

.widget-card-graph.graph-1 .graph-header .graph .graph-border {
	background-color: #38ef7d;
	background-image: -webkit-gradient(linear, left top, right top, from(#38ef7d), to(#11998e));
	background-image: -webkit-linear-gradient(to right, #38ef7d, #11998e);
	background-image: -moz-linear-gradient(to right, #38ef7d, #11998e);
	background-image: -ms-linear-gradient(to right, #38ef7d, #11998e);
	background-image: -o-linear-gradient(to right, #38ef7d, #11998e);
	background-image: linear-gradient(to right, #38ef7d, #11998e);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#38ef7d", endColorstr="#11998e", gradientType="1");
}

.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(#070f16));
	background-image: -webkit-linear-gradient(to right, #4c566a, #070f16);
	background-image: -moz-linear-gradient(to right, #4c566a, #070f16);
	background-image: -ms-linear-gradient(to right, #4c566a, #070f16);
	background-image: -o-linear-gradient(to right, #4c566a, #070f16);
	background-image: linear-gradient(to right, #4c566a, #070f16);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#4c566a", endColorstr="#070F16", gradientType="1");
}

.widget-card-graph.graph-2 .graph-content {
	background-color: #070f16;
}

.widget-card-graph.graph-2 .graph-content h5 {
	color: #eceff4;
}

.widget-card-graph.graph-2 .graph-content .graph-icon {
	background-color: #070f16;
}

.widget-card-graph.graph-3 .graph-header {
	background-image: url("../../images/dashboard/bg-unidades.jpg");
	background-size: cover;
	background-position: 0px -130px;
	background-repeat: no-repeat;
}

.widget-card-graph.graph-3 .graph-header .graph .graph-border {
	background-color: #8e2de2;
	background-image: -webkit-gradient(linear, left top, right top, from(#8e2de2), to(#4a00e0));
	background-image: -webkit-linear-gradient(to right, #8e2de2, #4a00e0);
	background-image: -moz-linear-gradient(to right, #8e2de2, #4a00e0);
	background-image: -ms-linear-gradient(to right, #8e2de2, #4a00e0);
	background-image: -o-linear-gradient(to right, #8e2de2, #4a00e0);
	background-image: linear-gradient(to right, #8e2de2, #4a00e0);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8E2DE2", endColorstr="#4A00E0", gradientType="1");
}

.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(to bottom, #eceff4, #ffffff);
	background-image: -moz-linear-gradient(to bottom, #eceff4, #ffffff);
	background-image: -ms-linear-gradient(to bottom, #eceff4, #ffffff);
	background-image: -o-linear-gradient(to 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, #8e2de2 0%, #4a00e0 100%);
	/* ff3.6+ */
	background: -webkit-gradient(linear, left bottom, right top, color-stop(0%, #8e2de2), color-stop(100%, #4a00e0));
	/* safari4+,chrome */
	background: -webkit-linear-gradient(225deg, #8e2de2 0%, #4a00e0 100%);
	/* safari5.1+,chrome10+ */
	background: -o-linear-gradient(225deg, #8e2de2 0%, #4a00e0 100%);
	/* opera 11.10+ */
	background: -ms-linear-gradient(225deg, #8e2de2 0%, #4a00e0 100%);
	/* ie10+ */
	background: linear-gradient(225deg, #8e2de2 0%, #4a00e0 100%);
	/* w3c */
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8E2DE2", endColorstr="#4A00E0", 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(to bottom, #45b0d5, #59c7ed);
	background-image: -moz-linear-gradient(to bottom, #45b0d5, #59c7ed);
	background-image: -ms-linear-gradient(to bottom, #45b0d5, #59c7ed);
	background-image: -o-linear-gradient(to 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: #d8dee9;
	-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: none;
}

.widget-store-items .store-cards-container .store-cards .store-card {
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 6px;
	/* border: solid 1px #434c5e; */
	background-color: #070f16;
	height: 100%;
}

.shadow-green {
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px,
		inset 6px 0 rgba(67, 209, 166, 1);
}

.shadow-purple {
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px,
		inset 6px 0 rgba(127, 89, 165, 1);
}

.shadow-blue {
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px,
		inset 6px 0 rgba(69, 94, 220, 1);
}

.shadow-orange {
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px,
		inset 6px 0 rgba(246, 132, 51, 1);
}

.widget-store-items .store-cards-container .store-cards .store-card .store-card-icons {
	text-align: center;
	padding: 6px;
	border-bottom: solid 1px #73777f;
}

.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: #d8dee9;
	-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: #d8dee9;
}

.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: #d8dee9;
	-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: #d8dee9;
}

.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;
}

/* Add your customizations of layout here */

/* Dashboard Monitoramento ---------------------------- */

.card-cracha-vazio {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 115px;
	border-radius: 35px;
	border: 4px dotted #b6b6b6;
	background: transparent;
}

.card-sensor-vazio {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;
	width: 100%;
	min-height: 171px;
	border-radius: 35px;
	border: 4px dotted #b6b6b6;
	background: transparent;
}

.imgLogoCliente {
	max-height: 45px !important;
	max-width: 200px;
	width: auto;
	height: auto;
	filter: grayscale(100%) invert(100%);
}

.list-legenda {
	list-style: none;
	padding: 0;
	margin: 0;
	overflow: hidden;
	padding: 10px;
}

.list-legenda li {
	float: left;
	margin: 0px 8px;
}

.list-legenda li fa-icon {
	display: block;
	color: #03a9f4;
	font-size: 14pt;
}

.div-divider {
	width: 100%;
	height: 1px;
	background-color: #222a35;
	margin: 5px 0px;
}

.div-divider-vertical {
	border-left: 1px solid #222a35;
	border-right: 1px solid #222a35;
}

.card-painel {
	position: relative;
	width: fit-content;
	border-radius: 35px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
	/* border: 1px solid #cacaca; */

	background: #161820;
	/* fallback for old browsers */
	background: -webkit-linear-gradient(75deg, #161820, #20222c);
	/* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(75deg, #161820, #20222c);
	/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.panel-content {
	position: relative;
	background-color: #16181f;
	border-radius: 8px;
	padding: 20px;
	z-index: 10px;
}

/* .panel-offline {
  background: #ad3f30;
  background: -webkit-linear-gradient(75deg, #ad3f30, #cf5444);
  background: linear-gradient(75deg, #ad3f30, #cf5444);
} */

.panel-offline .panel-passagens {
	color: #742b21;
}

.panel-offline .panel-passagens .ul-divider {
	font-size: 12pt;
	border-bottom: 1px solid #742b21;
	border-top: 1px solid #742b21;
	padding: 5px 0px;
}

.panel-offline .panel-passagens .ul-dividerfa-icon {
	color: #742b21;
}

.panel-offline .panel-content {
	background-color: #aa4031;
	border-radius: 8px;
	padding: 20px;
}

.panel-offline .panel-content .div-divider {
	background-color: #742b21 !important;
}

.panel-offline .panel-content .div-divider-vertical {
	border-left: 1px solid #742b21;
	border-right: 1px solid #742b21;
}

.panel-offline .panel-icons {
	border: none !important;
}

.panel-offline .panel-icons fa-icon {
	color: #742b21;
}

.panel-offline .panel-icons span {
	color: #742b21;
}

.panel-offline .footer-description {
	background-color: #aa4031;
	color: #742b21;
}

.header-description {
	position: absolute;
	height: 130px;
	width: 60%;
	top: 0;
	right: 0;
	border-radius: 0 35px 0 0;
	/* background: #009FFF;
  background: -webkit-linear-gradient(to right, #ec2f4b00, #009FFF);
  background: linear-gradient(to right, #ec2f4b00, #009FFF); */
	z-index: 0;
}

.header-description .img-card {
	height: 100%;
	border-radius: 0 35px 0 0;
	background-repeat: no-repeat;
	background-position: 60px 0;
}

.panel-icons {
	width: 70px;
	height: 70px;
	position: relative;
	font-size: 18pt;
	text-align: center;
}

.panel-icons fa-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: #9da4be;
}

.panel-icons span {
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	font-size: 10pt;
	margin-bottom: 2px;
	color: #9da4be;
}

.panel-passagens {
	width: 100%;
	position: relative;
	font-size: 12pt;
	color: #9da4be;
	margin-bottom: 15px;
}

.panel-passagens #header-text {
	font-size: 38pt;
}

.panel-passagens .ul-divider {
	font-size: 10pt;
	border-bottom: 1px solid #10538d;
	border-top: 1px solid #10538d;
	padding: 5px 0px;
}

/* .panel-passagens fa-icon {
  color: #183153;
} */

.footer-description {
	width: 100%;
	height: fit-content;
	border-radius: 8px;
	padding: 10px;
	margin-top: 15px;
	color: #9da4be;
	background-color: #16181f;
	font-weight: bold;

	/* box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  background: #218DF4; 
  background: -webkit-linear-gradient(80deg, #249BF5, #165CA2);
  background: linear-gradient(80deg, #249BF5, #165CA2); */
}

.led-box {
	height: 30px;
	width: 30px;
	position: relative;
	float: right;
}

.led-red {
	color: #f44336;
}

.led-red fa-icon {
	color: #f44336;
	-webkit-animation: blinkRed 0.8s infinite;
	-moz-animation: blinkRed 0.8s infinite;
	-ms-animation: blinkRed 0.8s infinite;
	-o-animation: blinkRed 0.8s infinite;
	animation: blinkRed 0.8s infinite;
}

@-webkit-keyframes blinkRed {
	from {
		color: #f44336;
	}

	50% {
		color: #b71c1c;
	}

	to {
		color: #f44336;
	}
}

@-moz-keyframes blinkRed {
	from {
		color: #f44336;
	}

	50% {
		color: #b71c1c;
	}

	to {
		color: #f44336;
	}
}

@-ms-keyframes blinkRed {
	from {
		color: #f44336;
	}

	50% {
		color: #b71c1c;
	}

	to {
		color: #f44336;
	}
}

@-o-keyframes blinkRed {
	from {
		color: #f44336;
	}

	50% {
		color: #b71c1c;
	}

	to {
		color: #f44336;
	}
}

@keyframes blinkRed {
	from {
		color: #f44336;
	}

	50% {
		color: #b71c1c;
	}

	to {
		color: #f44336;
	}
}

.led-yellow {
	background-color: #ffff00;
	/* box-shadow: rgba(0, 0, 0, 0.2) 0 -1px 7px 1px, inset #c5b630 0 -1px 9px, #FFFF00 0 2px 12px; */
	-webkit-animation: blinkYellow 1.5s infinite;
	-moz-animation: blinkYellow 1.5s infinite;
	-ms-animation: blinkYellow 1.5s infinite;
	-o-animation: blinkYellow 1.5s infinite;
	animation: blinkYellow 1.5s infinite;
}

@-webkit-keyframes blinkYellow {
	from {
		background-color: #ffff00;
	}

	50% {
		background-color: #c5b630;
	}

	to {
		background-color: #ffff00;
	}
}

@-moz-keyframes blinkYellow {
	from {
		background-color: #ffff00;
	}

	50% {
		background-color: #c5b630;
	}

	to {
		background-color: #ffff00;
	}
}

@-ms-keyframes blinkYellow {
	from {
		background-color: #ffff00;
	}

	50% {
		background-color: #c5b630;
	}

	to {
		background-color: #ffff00;
	}
}

@-o-keyframes blinkYellow {
	from {
		background-color: #ffff00;
	}

	50% {
		background-color: #c5b630;
	}

	to {
		background-color: #ffff00;
	}
}

@keyframes blinkYellow {
	from {
		background-color: #ffff00;
	}

	50% {
		background-color: #c5b630;
	}

	to {
		background-color: #ffff00;
	}
}

.led-green {
	color: #2b3547;
}

.led-green fa-icon {
	color: #5bca00;

	/* -webkit-animation: blinkGreen 1.5s infinite;
  -moz-animation: blinkGreen 1.5s infinite;
  -ms-animation: blinkGreen 1.5s infinite;
  -o-animation: blinkGreen 1.5s infinite;
  animation: blinkGreen 1.5s infinite; */
}

@-webkit-keyframes blinkGreen {
	from {
		color: #76ff03;
	}

	50% {
		color: #64dd17;
	}

	to {
		color: #76ff03;
	}
}

@-moz-keyframes blinkGreen {
	from {
		color: #76ff03;
	}

	50% {
		color: #64dd17;
	}

	to {
		color: #76ff03;
	}
}

@-ms-keyframes blinkGreen {
	from {
		color: #76ff03;
	}

	50% {
		color: #64dd17;
	}

	to {
		color: #76ff03;
	}
}

@-o-keyframes blinkGreen {
	from {
		color: #76ff03;
	}

	50% {
		color: #64dd17;
	}

	to {
		color: #76ff03;
	}
}

@keyframes blinkGreen {
	from {
		color: #76ff03;
	}

	50% {
		color: #64dd17;
	}

	to {
		color: #76ff03;
	}
}

.led-blue {
	color: #2b3547;
}

.led-blue fa-icon {
	color: #2c73df;

	-webkit-animation: blinkBlue 1.5s infinite;
	-moz-animation: blinkBlue 1.5s infinite;
	-ms-animation: blinkBlue 1.5s infinite;
	-o-animation: blinkBlue 1.5s infinite;
	animation: blinkBlue 1.5s infinite;
}

@-webkit-keyframes blinkBlue {
	from {
		color: #03a9f4;
	}

	50% {
		color: #2c73df;
	}

	to {
		color: #03a9f4;
	}
}

@-moz-keyframes blinkBlue {
	from {
		color: #03a9f4;
	}

	50% {
		color: #2c73df;
	}

	to {
		color: #03a9f4;
	}
}

@-ms-keyframes blinkBlue {
	from {
		color: #03a9f4;
	}

	50% {
		color: #2c73df;
	}

	to {
		color: #03a9f4;
	}
}

@-o-keyframes blinkBlue {
	from {
		color: #03a9f4;
	}

	50% {
		color: #2c73df;
	}

	to {
		color: #03a9f4;
	}
}

@keyframes blinkBlue {
	from {
		color: #03a9f4;
	}

	50% {
		color: #2c73df;
	}

	to {
		color: #03a9f4;
	}
}

.card-dash-laranja {
	position: relative;
	width: 100%;
	height: 134px;
	border-radius: 25px;
	border: 2px solid #00324f;
	/* padding: 7px; */
	background-color: #112738;
	background-image: url("../../../../assets/layout/images/background/WaveGrad40.png");
	background-repeat: no-repeat;
	background-position: right;
	background-size: 100%;

	.header {
		width: 100%;
		display: flex;
		justify-content: space-between;

		.text {
			width: 50%;
			display: flex;
			flex-wrap: wrap;

			.title {
				font-size: 2.5rem;
				width: 100%;
			}

			.subtitle {
				font-size: 1rem;
				width: 100%;

				span {
					color: inherit;
				}
			}
		}

		.imagem {
			width: 25%;
			height: 64px;
			display: flex;
			justify-content: end;

			img {
				max-height: 64px;
			}
		}
	}
}

.container-calendar {
	width: 100%;
	height: 120px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-radius: 20px;
	background-color: #070f16;
	box-shadow: rgb(50, 50, 93, 0.25) 3px 3px 6px 0px inset, rgba(0, 0, 0, 0.3) -3px -3px 6px 1px inset;
	padding: 10px;
}

.content-calendar {
	font-family: "Montserrat", "sans-serif";
	color: #fff;
	font-size: 2.5rem;
	text-transform: uppercase;
	margin: 0px !important;
	/* padding: 5px; */
}

.content-calendar-label {
	font-family: "Montserrat", "sans-serif";
	color: #fff;
	text-transform: uppercase;
	font-size: 0.6rem;
	margin: 0px !important;
}

.card-dash-azul {
	position: relative;
	width: 100%;
	height: fit-content;
	border-radius: 10px;
	padding: 15px;
	background: #5b86e5;
	background: -webkit-linear-gradient(to right, #36d1dc, #5b86e5);
	background: linear-gradient(to right, #36d1dc, #5b86e5);
}

.card-dash-verde {
	position: relative;
	width: 100%;
	height: fit-content;
	border-radius: 10px;
	padding: 15px;
	background: #11caab;
	background: -webkit-linear-gradient(to right, #b5daa1, #11caab);
	background: linear-gradient(to right, #b5daa1, #11caab);
}

.card-dash-roxo {
	position: relative;
	width: 100%;
	height: fit-content;
	border-radius: 10px;
	padding: 15px;
	background: #6e48aa;
	background: -webkit-linear-gradient(to right, #9d50bb, #6e48aa);
	background: linear-gradient(to right, #9d50bb, #6e48aa);
}

.card-dash-vermelho {
	position: relative;
	width: 100%;
	height: fit-content;
	border-radius: 10px;
	padding: 15px;
	background: #e35d5b;
	background: -webkit-linear-gradient(to right, #e35d5b, #e35d5b);
	background: linear-gradient(to right, #e35d5b, #e35d5b);
}

.card-dash-cinza {
	position: relative;
	width: 100%;
	height: fit-content;
	border-radius: 10px;
	padding: 15px;
	background: #d1ccc8;
	background: -webkit-linear-gradient(to right, #f1f0ef, #d1ccc8);
	background: linear-gradient(to right, #f1f0ef, #d1ccc8);
}

.bg-card-img-dash {
	position: absolute;
	width: 98%;
	height: 80%;
	top: 10%;
	left: 0;
	/* background-image: url("../../../assets/layout/images/dashboard/consumo/catraca.png"); */
	background-size: contain;
	background-repeat: no-repeat;
	background-position: right;
	opacity: 0.4;
	z-index: 0;
}

/* Fim Dashboard Monitoramento ---------------------------- */

/* Dashboard Operacao ---------------------------- */

.card-avaliacao {
	border-radius: 10px;
	border: 1px solid #e7e7e7;
	background: #112638;
	/* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #112638, #132d42);
	/* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #112638, #132d42);
	/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

/* Fim Dashboard Operacao ---------------------------- */

.iconeConfig {
	font-size: 18pt;
	color: #ffffff;
}

/* Dashboard Indicadores ---------------------------- */
.mascara-grafico-pizza {
	position: absolute;
	width: 60px;
	height: 30px;
	background-color: #070f16;
	bottom: 0;
	z-index: 1;
}

.cor-brasil {
	color: #fff;
	background-color: transparent;
}

.cor-brasil::before {
	content: "";
	width: 24px;
	height: 24px;
	border-radius: 4px;
	margin-right: 5px;
	background-color: #00bb7e;
}

.cor-norte {
	color: #fff;
	background-color: transparent;
}

.cor-norte::before {
	content: "";
	width: 24px;
	height: 24px;
	border-radius: 4px;
	margin-right: 5px;
	background-color: #85bf43;
}

.cor-nordeste {
	color: #fff;
	background-color: transparent;
}

.cor-nordeste::before {
	content: "";
	width: 24px;
	height: 24px;
	border-radius: 4px;
	margin-right: 5px;
	background-color: #00bdea;
}

.cor-centro-oeste {
	color: #fff;
	background-color: transparent;
}

.cor-centro-oeste::before {
	content: "";
	width: 24px;
	height: 24px;
	border-radius: 4px;
	margin-right: 5px;
	background-color: #ffbd00;
}

.cor-sudeste {
	color: #fff;
	background-color: transparent;
}

.cor-sudeste::before {
	content: "";
	width: 24px;
	height: 24px;
	border-radius: 4px;
	margin-right: 5px;
	background-color: #ff5933;
}

.cor-sul {
	color: #fff;
	background-color: transparent;
}

.cor-sul::before {
	content: "";
	width: 24px;
	height: 24px;
	border-radius: 4px;
	margin-right: 5px;
	background-color: #653ca6;
}

.card-principal .p-dataview .p-dataview-header {
	background: transparent;
	color: none;
	border: none;
	border-width: none;
	padding: 10px 10px 0 10px;
	margin: 0;
	font-weight: 600;
}

.card-table-indicadores-header {
	position: relative;
	width: 100%;
	height: fit-content;
	display: flex;
	flex-wrap: wrap;
	padding: 5px;
	margin-bottom: 10px;
	border: 1px solid #363b43;
	border-radius: 10px;
	background: #292e36;
	color: #fff;
	/* background: -webkit-linear-gradient(to right, #f0f0f0, #ECE9E6);
  background: linear-gradient(to right, #f0f0f0, #ECE9E6); */
}

.card-table-indicadores {
	position: relative;
	width: 100%;
	height: fit-content;
	display: flex;
	flex-wrap: wrap;
	padding: 5px;
	margin: 10px;
	border: 1px solid #e7e7e7;
	border-radius: 10px;
	background: #132d42;
	cursor: pointer;
}

.card-table-indicadores:hover {
	background: #132d4266;
}

.div-btn-logo {
	min-width: 120px;
	height: 50px;
	margin: 0;
	/* background-color: #D0D0D0; */
	/* border-right: 1px solid #707070; */
	text-align: center;
	display: inline-flex;
	cursor: pointer;
	-webkit-user-select: none;
	user-select: none;
	align-items: center;
	vertical-align: bottom;
	text-align: center;
	overflow: hidden;
	/* position: relative; */
	/* top: calc(50% - 25px); */
	transition: 0.3ms ease-in-out;
}

.div-btn-logo img {
	position: relative;
	max-height: 22px;
	max-width: 110px;
	width: auto;
	height: auto;
	left: 0;
	/* transform: translateX(-50%); */
	filter: invert(1);
}

.col-frozen {
	background-color: #112738 !important;
}

.ul-dia-semana {
	list-style: none;
	padding: 0;
	margin: 0;
	font-weight: bold;
	text-align: center;
	border: 1px solid #3f4b5b;
	background-color: #070f16;
}

.ul-dia-semana li {
	width: 74px;
	height: 67px;
	border-top: 0.5px solid #3f4b5b;
	/* padding-top: 28%; */
}

.ul-dia-semana li:nth-child(1) {
	height: 48px;
}

.ul-dia-semana li:nth-child(2) {
	height: 67.5px;
}

/* Fim Dashboard Indicadores ---------------------------- */

/* Dashboard Planejado Realizado ---------------------------- */
.container-card-mes {
	width: 100%;
	height: 100%;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border-radius: 10px;
}

.content-card-mes {
	font-family: "Montserrat", "sans-serif";
	font-weight: 700;
	color: #d2d3d5;
	font-size: 5rem;
	text-transform: uppercase;
	margin-bottom: 0px !important;
	padding: 0px;
}

.content-card-mes-label {
	font-family: "Montserrat", "sans-serif";
	color: #d2d3d5;
	text-transform: uppercase;
	font-size: 1.5rem;
	margin: 0;
	/* line-height: 0; */
}

/* Fim Dashboard Planejado Realizado ---------------------------- */

/* Cards especiais --------------------- */

.card-principal {
	border: 0.5px solid #00324f;
	border-radius: 25px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.card-vazio {
	border: 2px dashed #00324f;
	border-radius: 25px;
	background-color: transparent;
}

.card-titulo {
	width: fit-content;
	padding: 0.75rem;
	background-color: #112738;
	border-radius: 25px;
	border: 0.5px solid #00324f;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: center;
	gap: 0.5rem;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
		rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
	cursor: pointer;
	position: relative;
}

.background-dark-light {
	background-color: #070f16;
}

.card-titulo img {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border-radius: 25px;
	filter: invert(1);
	transform: rotate(180deg);
}

.card-titulo h5 {
	z-index: 2;
	margin: 0px;
}

.card-titulo i {
	font-size: 21px;
	color: #28a8a5;
}

.card-apoio {
	border: 2px solid #00324f;
	border-radius: 25px;
	background-color: #112738;
	/* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
}

.card-botoes-tendencia {
	display: flex;
	justify-content: space-between;
	background-color: #070f16;
	border: 0.5px solid #00324f;
	border-radius: 25px;
	width: fit-content;
}

.table-operacao {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	background-color: #070f16;
	/* border: 0.5px solid #00324F; */

	.descricao {
		width: 60%;
		padding: 7px;
		padding-left: 21px;
		font-size: 1rem;
	}

	.indice {
		width: 20%;
		text-align: center;
		padding: 7px;
		font-size: 1rem;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-content: center;

		img {
			/* width: 21px; */
			height: 21px;
			padding-right: 0.25rem;
		}
	}
}

.bg-padrao {
	background-color: #070f16 !important;
}
.bg-secundario {
	background-color: #112738 !important;
}

.body-table-operacao {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.relacionamento {
	background: #112638;
	/* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #112638, #132d42);
	/* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #112638, #132d42);
	/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.card-secundario {
	position: relative;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	padding: 15px;
	border-radius: 10px;
	border: 1px solid #e7e7e7;
	margin-bottom: 10px;
	background: #112638;
	/* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #112638, #132d42);
	/* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #112638, #132d42);
	/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.card-rounded-kpi {
	position: relative;
	width: 100%;
	left: 50%;
	transform: translateX(-50%);
	padding: 10px;
	text-align: center;
	border: 1px solid #e7e7e7;
	border-radius: 10px;
	background: #112638;
	/* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #112638, #132d42);
	/* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #112638, #132d42);
	/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.card-tree {
	height: 250px;
	/* background-color: #2a323d; */
	overflow: auto;
}

/* .card-lixeira{
  text-align: center;
  color: #ffffff;
  background: #5B86E5; 
  border-radius: 8px;
  height: 40px;
} */

.overlayUnidade {
	width: 60vw;
}

@media (max-width: 991px) {
	.overlayUnidade {
		width: 90%;
	}
}

.title {
	margin-bottom: 0px;
	margin-top: 0px;
	font-size: 18px;
	font-weight: bold;
	height: fit-content;
}

/* Botão Salvar Cadastros --------------------- */

.btn-salvar {
	font-size: 25px;
	color: #ffffff;
	margin-top: 1rem;
}

/* Ferramentas --------------------- */

.search-bar {
	position: relative;
	display: flex;
	align-items: center;
	background-color: #112738;
	border: 1px solid #ced4da;
	border-radius: 30px;
	min-width: 35px;
	height: 35px;
	overflow: hidden;
}

.search-bar input {
	border: 0;
	outline: 0;
	background-color: transparent;
	width: 35px;
	font-size: 1rem;
	transition: width 0.2s ease-in-out;
}

.search-bar input:focus,
.search-bar input:not(:placeholder-shown) {
	width: 260px;
}

.search-bar label {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	right: 0;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background-color: #112738;
	cursor: pointer;
}

/* Telas cadastro --------------------- */

.card-aux {
	background-color: #070f16;
	border: 0.5px solid #a3a3a3;
	text-align: center;
	height: 45px;
	cursor: pointer;

	@media screen and (max-width: 767px) {
		height: 60px;
	}
}

.card-aux:hover {
	background-color: #112638;
}

.ultimo {
	border-right: 0.5px solid #a3a3a3;
}

.selecionado {
	cursor: default;
	background-color: transparent !important;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	border-bottom: transparent;
}

.cronograma {
	width: calc(100% / 7);
	padding: 0.5rem;

	p-badge {
		margin: 0px;
	}
	h5 {
		margin: 0px;
	}

	@media screen and (min-width: 768px) {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-content: center;
	}
	@media screen and (max-width: 767px) {
		text-align: center;
		p-badge {
			margin-top: 7px;
		}
	}
}

.qr-code {
	background: #112638;
	/* fallback for old browsers */
	background: -webkit-linear-gradient(to right, #112638, #132d42);
	/* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to right, #112638, #132d42);
	/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

/* Fim Ferramentas --------------------- */

/* Agenda --------------------- */

.h2-week {
	text-align: center;
	font-weight: 500;
	font-size: 14pt !important;
	white-space: nowrap;
	color: #fff;
	margin: 0 !important;
}

.li-hora {
	position: relative;
	min-height: 20px;
}

.li-hora a::after {
	content: "";
	position: absolute;
	width: 15px;
	height: 2px;
	top: -1px;
	right: 0;
	background-color: #3f4b5b;
}

.li-height-true {
	height: 76px;
}

.li-height-false {
	height: 20px;
}

#ul-postit,
li {
	list-style: none;
}

#ul-postit {
	/* display: flex; */
	flex-wrap: wrap;
	justify-content: left;
}

#ul-postit li {
	position: relative;
	padding: 5px;
	min-height: 20px;
	border: 1px #3f4b5b solid;
}

#ul-postit li a {
	text-decoration: none;
	color: #000;
	display: block;
}

#ul-postit li a h2 {
	padding: 0;
	margin-bottom: 5px;
}

/* Fim Agenda --------------------- */

/* Scrollbar --------------------- */
::-webkit-scrollbar {
	width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
	box-shadow: inset 0 0 2px grey;
	border-radius: 5px;
	background: #11161c;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #797d81;
	border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #505356;
}

/* Fim Scrollbar --------------------- */

/* Tela mobile ----------------------- */

.overlay-unidades {
	position: fixed;
	width: 100%;
	height: auto;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #070f16;
	z-index: 997;
	margin-bottom: 58px;

	-webkit-transition: -webkit-transform 0.5s ease;
	-moz-transition: -moz-transform 0.5s ease;
	-ms-transition: -ms-transform 0.5s ease;
	transition: transform 0.5s ease;
}

.logo-unidade-principal {
	max-width: 25%;
	filter: invert(1);
}

.logos-unidades {
	width: auto;
	height: 100%;
	filter: invert(1);
}

.background-footer {
	background-color: #20252e;
}

.card-aux-mobile {
	background-color: rgba(0, 0, 0, 0.58);
	border: 0px solid #a3a3a3;
	border-radius: 15px;
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;

	.p-dialog-content {
		background: transparent !important;
		padding: 14px;
		margin-top: 0;
	}
}

.img-logout {
	width: 36px;
	height: 36px;
}

.headerPagina {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	padding: 0px;
	margin: 0px !important;
	height: 60px;
	background-color: #070f16 !important;
	z-index: 999;
}

.headerBotoes {
	width: 20%;
}

.headerBotoes i {
	position: absolute;
	top: 0;
	width: calc(100% / 2);
	margin: 0px;
	align-content: center;
	justify-content: center;
}

.btnHeader {
	font-size: 18px;
}

.headerTitulo {
	width: 60%;
}

.headerText {
	width: 100%;
	margin: 0px;
	text-align: center;
	font-size: 22px;
	font-weight: 400;
}

.background-cards-mobile {
	border: 0.5px solid #00324f;
	background-color: #112738;
}

.background-list-mobile {
	border: 0px !important;
}

/* Curva de Desgaste ----------------------- */
.card-curva-desgaste {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	width: 100%;
	border-top: 1px #fff solid;
}

/* Fim Curva de Desgaste ----------------------- */

/* Trafego de Dados ----------------------- */
.card-trafego {
	background-color: #132d42;
	padding: 10px;
	border-radius: 10px;
}

/* Fim Trafego de Dados ----------------------- */

/* Divider ----------------------- */
.horizontal-solid {
	.p-divider.p-divider-horizontal:before {
		border-top: 1px solid #dee2e6;
	}
}
.horizontal-dashed {
	.p-divider.p-divider-horizontal:before {
		border-top: 1px dashed #dee2e6;
	}
}
.horizontal-dotted {
	.p-divider.p-divider-horizontal:before {
		border-top: 1px dotted #dee2e6;
	}
}

.vertical-solid {
	.p-divider.p-divider-vertical:before {
		border-left: 1px solid #dee2e6;
	}
}
.vertical-dashed {
	-divider.p-divider-vertical:before {
		border-left: 1px dashed #dee2e6;
	}
}
.vertical-dotted {
	-divider.p-divider-vertical:before {
		border-left: 1px dotted #dee2e6;
	}
}
/* Fim Divider ----------------------- */

/* Feedback Senha -------------------- */
.password-feedback {
	display: none;
	position: relative;
	border-bottom: 1px solid #3f4b5b;
	border-left: 1px solid #3f4b5b;
	border-right: 1px solid #3f4b5b;
	z-index: 999;
	background-color: #20252e;
	box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
}
/* Fim Feedback Senha -------------------- */

/* Cards Evolução ------------------------ */

.cards {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;

	.unidade {
		position: relative;
		width: 24%;
		height: 195px;
		background-color: #070f16;
		background-image: url("../../../../assets/layout/images/background/WaveGrad40.png");
		background-repeat: no-repeat;
		background-position: right;
		background-size: 100%;
		/* background-color: #112738; */
		/* fallback for old browsers */
		/* background: -webkit-linear-gradient(to right, #112638, #132d42); */
		/* Chrome 10-25, Safari 5.1-6 */
		/* background: linear-gradient(to right, #112638, #132d42); */
		/* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

		.text {
			width: 100%;
			color: #fff;
			margin-top: 0.5rem;
			margin-bottom: 0.5rem;
			font-size: 8pt;
		}

		.icones {
			position: absolute;
			display: flex;
			flex-wrap: wrap;
			align-content: center;
			width: calc(100% - 36px);
			height: 50px;
			border: 1px solid #ececec;
			border-radius: 15px;
			bottom: 60px;
			left: 18px;
			background-color: rgba(255, 255, 255, 0.3);
		}

		.btn {
			box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
			/* background-color: #704bb1; */
			/* border: 1px solid #855acf; */
			width: calc(100% - 32px);
			position: absolute;
			left: 18px;
			bottom: 10px;
			color: #fff;
		}
		/* .btn:hover {
      background-color: #5e3b99;
      border: 1px solid #704bb1;
    } */
	}

	.sem-unidade {
		width: 24%;
		height: 195px;
		background-color: transparent !important;
		border: 2px dashed #dee2e6;
	}
}

.imgLogoClienteAlt {
	/* max-height: 45px !important;
  max-width: 200px; */
	width: 50%;
	aspect-ratio: 5/2;
	object-fit: contain;
	filter: grayscale(100%) invert(100%);
}

/* Fim Cards Evolução ------------------------ */

/* THERMOMETER ――――――――――――――――――――――――― */

.termometer {
	width: 35px;
	background: transparent;
	height: 75px;
	position: relative;
	border: 1.75px solid rgba(255, 255, 255, 0.5);
	border-radius: 10px;
	z-index: 1;

	&:before,
	&:after {
		position: absolute;
		content: "";
		border-radius: 50%;
	}

	/* Border cover */

	&:before {
		width: 100%;
		/* height: 2px; */
		bottom: 2px;
		background: rgba(255, 255, 255, 0.3);
		z-index: -1;
	}

	.graduations {
		height: 60%;
		top: 20%;
		width: 100%;

		.marks {
			list-style: none;
			margin-left: 45px;
			margin-top: -58px;
			font-size: 20px;
			li {
				margin-top: 20px;
			}
		}

		&,
		&:before {
			position: absolute;
			border-top: 1px solid rgba(0, 0, 0, 0.5);
			border-bottom: 1px solid rgba(0, 0, 0, 0.5);
		}

		&:before {
			content: "";
			height: 32%;
			width: 100%;
			top: calc(32% - 0.5px);
		}
	}

	.temperature {
		bottom: 0;
		background: linear-gradient(#f51302, #ff675c, #e7c70d, #479e00) bottom;
		width: 100%;
		background-size: 100% 100px;
		transition: all 0.2s ease-in-out;
		border-radius: 9px;
		&,
		&:before,
		&:after {
			position: absolute;
		}
	}
}

/* pink button */

.p-button-pink {
	background-color: #e60c72 !important;
	border: 1px solid #e60c72 !important;
	color: #fff !important;
}
.p-button-pink:hover {
	background-color: #e60c72d9 !important;
	border: 1px solid #e60c72d9 !important;
	color: #fff !important;
}
.btn-pink-icon {
	color: #e60c72 !important;
}

.p-button-blue {
	background: #2a295c !important;
	background: -webkit-linear-gradient(to right, #2a295c, #29395c) !important;
	background: linear-gradient(to right, #2a295c, #29395c) !important;
	border: 1px solid #2a295c !important;
	color: #fff !important;
}
.p-button-blue:hover {
	background: #2a295cd9 !important;
	background: -webkit-linear-gradient(to right, #2a295cd9, #29395cd9) !important;
	background: linear-gradient(to right, #2a295cd9, #29395cd9) !important;
	border: 1px solid #2a295cd9 !important;
	color: #fff !important;
}

/* diamond button */

.p-button-diamond {
	background: #28a8a5 !important;
	background: -webkit-linear-gradient(to right, #28a8a5, #28a87f) !important;
	background: linear-gradient(to right, #28a8a5, #28a87f) !important;
	border: 1px solid #28a8a5 !important;
	color: #fff !important;
}
.p-button-diamond:hover {
	background: #28a8a5d9 !important;
	background: -webkit-linear-gradient(to right, #28a8a5d9, #28a87fd9) !important;
	background: linear-gradient(to right, #28a8a5d9, #28a87fd9) !important;
	border: 1px solid #28a8a5 !important;
}
.btn-diamond-icon {
	color: #28a8a5 !important;
}

/* spinner logo */
.spinner-logo {
	z-index: -1;
	width: 100%;
	animation: spin 10s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	25% {
		transform: rotate(450deg);
	}
	50% {
		transform: rotate(900deg);
	}
	75% {
		transform: rotate(1350deg);
	}
	100% {
		transform: rotate(1800deg);
	}
}

/* cards avaliação */

.card-votos {
	position: relative;
	width: 100%;
	height: 67.5px;
	border: 1px solid #00324f;
	border-radius: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	background-color: #070f16;

	.div-img {
		height: 57px;
		width: 57px;
		border-top-left-radius: 50%;
		border-bottom-left-radius: 50%;
		overflow: hidden;

		img {
			width: 100%;
			height: 100%;
		}
	}
	.div-escrita {
		margin-right: 15px;
		display: flex;
		flex-wrap: wrap;
		align-content: center;
		text-align: right;

		p {
			width: 100%;
			margin: 0px !important;
			font-size: 10px;
		}

		h5 {
			width: 100%;
			margin: 0px !important;
			font-size: 21.5px;
			font-weight: bold;
		}
	}
}

@media screen and (max-width: 767px) {
	.card-votos {
		margin-bottom: 0.5rem;
		height: 67.5px;
		position: relative;
		width: 100%;
		border: 1px solid #00324f;
		border-radius: 50px;
		display: flex;
		justify-content: space-between;
		background-color: #070f16;

		.div-img {
			height: 57px;
			width: 57px;
			border-top-left-radius: 50%;
			border-bottom-left-radius: 50%;
			overflow: hidden;

			img {
				width: 100%;
				height: 100%;
			}
		}
		.div-escrita {
			display: flex;
			flex-wrap: wrap;
			align-content: center;
			text-align: right;

			p {
				width: 100%;
				margin: 0px !important;
				font-size: 10px;
			}

			h5 {
				width: 100%;
				margin: 0px !important;
				font-size: 21.5px;
				font-weight: bold;
			}
		}
	}
}

.card-icons-dash {
	position: relative;
	width: 35px;
	height: 100%;
	border-radius: 50%;
	border: 0.5px solid #00324f;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 5px 20px -12px inset, rgba(0, 0, 0, 0.7) 0px 8px 15px -10px inset;
	overflow: hidden;
}

.card-icons-dash img {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	/* border-radius: 25px; */
	filter: invert(1);
	transform: rotate(180deg);
}

.card-insumo {
	width: 100%;
	height: 54px;
	border: 1px solid #00324f;
	background-color: #112738;
	border-radius: 25px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 1rem;

	.div-img {
		width: 20%;
		position: relative;

		img {
			position: absolute;
			top: 7px;
			left: 50%;
			height: 40px;
			transform: translateX(-50%);
		}
	}

	.data {
		width: 40%;
		display: flex;
		flex-wrap: wrap;
		align-content: center;
		border-left: 1px solid #00324f;

		h6 {
			font-size: 1.5rem;
			margin-bottom: 0px !important;
			width: 100%;
			text-align: center;
		}

		p {
			margin-bottom: 0px !important;
			width: 100%;
			text-align: center;
		}
	}
}

.card-cracha {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	flex-wrap: wrap;
	width: 100%;
	height: 115px;
	border-radius: 35px;
	padding: 8px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
	border: 1.5px solid #00324f;
	background-color: #112738;
}

.card-sensor {
	position: relative;
	display: flex;
	align-content: space-between;
	justify-content: center;
	/* flex-direction: column; */
	flex-wrap: wrap;
	width: 100%;
	height: 168px;
	height: fit-content;
	border-radius: 35px;
	padding: 8px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
	border: 1.5px solid #00324f;
	background-color: #112738;
}

.panel-header {
	width: 55%;
	padding: 0.25rem;
	/* padding-left: 1rem; */
	background-color: #112738;
	border-radius: 25px;
	border: 0.5px solid #00324f;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
		rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
	position: relative;
	color: #fff;
	text-align: start;
}

.panel-header .glass-panel {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	border-radius: 25px;
	filter: invert(1);
	transform: rotate(180deg);
}

.panel-header .img-passagem {
	position: absolute;
	top: 50%;
	left: 0.5rem;
	transform: translateY(-50%);
	height: 1.5rem;
	filter: invert(1);
}

/* resumos da tela de evolução */
.resumo-card {
	position: relative;
	width: 200px;
	aspect-ratio: 1/1;
	background-color: #070f16;
	border: 1.5px solid #00324f;
	border-radius: 50%;
	background-image: url("../../../../assets/layout/images/background/WaveGrad40.png");
	background-repeat: no-repeat;
	background-position: right;
	background-size: 100%;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

.resumo-card img {
	width: 50px;
	height: 50px;
	position: absolute;
	left: 40px;
	top: 45%;
	transform: translateY(-50%);
}

.resumo-card .variacao {
	font-size: 50px;
	font-weight: bold;
	position: absolute;
	top: 45%;
	transform: translateY(-50%);
}

.right-1 {
	right: 40px;
}
.right-2 {
	right: 20px;
}

.resumo-card .titulo {
	font-size: 1.2rem;
	position: absolute;
	top: 75%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.card-botoes-tendencia .titulo-filtro {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	margin: 0.25rem;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	border-right: 1px solid #00324f;
}

.card-items {
	position: relative;
	width: 100%;
	height: fit-content;
	border-radius: 25px;
	border: 2px solid #00324f;
	padding: 10px;
	background-color: #070f16;
	background-image: url("../../../../assets/layout/images/background/WaveGrad40.png");
	background-repeat: no-repeat;
	background-position: right;
	background-size: 100%;
}

input.bg-input-card {
	background: #070f16 !important;
}

/* .bg-dropdown {
  ::ng-deep .p-dropdown {
    background-color: #070f16;
  }

  ::ng-deep .p-dropdown .p-dropdown-label {
    background-color: #070f16; 
  }
} */

.header-menu-dash {
	background-color: #070f16;
	width: 100%;
	padding: 7px;
	text-align: center;
}

.menu-dash-titulo {
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	border: unset;
	border-bottom: 2px solid #00324f;
	background-color: unset;
}
.bb-2 {
	border-bottom: 2px solid #00324f;
}

.bt-1 {
	border-top: 1px solid #00324f;
}

.invert-filter {
	filter: invert(1);
}

.background-apoio {
	background-color: #112738;
}

.input-search {
	height: 45px;
	font-size: 18px;
	font-weight: 300;
	border-radius: 10px;
}
