@import url('bootstrap.min.css');
@import url('bootstrap-reset.css');
@import url('../fonts/css/font-awesome.min.css');
@import url('custom-ico-fonts.css');

:root {
	--prmColor: #cf1b22;
	--primary: #cf1b22;
	--primaryHvr: #e7282e;
}

html {
	height: 100%;
}

body {
	background-color: #eff0f4;
	font-family: 'Roboto', sans-serif;
	color: #7a7676;
	color: #3a3a3a;
	line-height: 20px;
	overflow-x: hidden;
	font-size: 14px;
	margin: 0;
	height: 100%;
	padding-top: 45px;
}

body * {
	max-width: 100%;
	box-sizing: border-box;
}

input[type="password"],
input[type="text"],
textarea,
select {
	font-family: 'Roboto', sans-serif;
	background-color: rgba(255, 255, 255, 0.5);
	border: 1px solid rgba(0, 0, 0, 0.22);
	border-radius: 6px;
	padding: 10px 14px;
}

input[type="password"]:focus,
input[type="text"]:focus,
textarea:focus,
select:focus {
	background-color: #fff;
	border-color: rgba(0, 0, 0, .5);
}

textarea {
	resize: vertical;
}

.form-inp {
	border: 1px solid #cccccc;
	border-radius: 4px;
	padding: 8px;
}

.form-inp.fluid {
	width: 100%;
}


a,
.a-link {
	color: var(--prmColor);
	cursor: pointer
}

a:focus,
a:active,
a:hover,
.a-link:hover {
	outline: none;
}

.mtop10 {
	margin-top: 10px;
}

hr {
	border-color: #ddd;
}

.cfx::after {
	content: ".";
	display: block;
	clear: both;
	overflow: hidden;
	height: 0px;
}

.clr {
	clear: both;
	display: block;
	float: none;
}

.c {
	float: none;
	overflow: hidden;
}











h1,
h2,
h3,
h4,
h5,
h6,
.heading-1,
.heading-2,
.heading-3,
.heading-4,
.heading-5,
.heading-6 {
	color: #000;
	font-family: Roboto, Arial, Helvetica, sans-serif;
	font-weight: 500
}

h1,
.heading-1 {
	font-size: 24px;
	margin: 0 0 24px;
}

h2,
.heading-2 {
	font-size: 22px;
	margin: 0 0 22px;
}

h3,
.heading-3 {
	font-size: 20px;
	margin: 0 0 20px;
}

h4,
.heading-4 {
	font-size: 18px;
	margin: 0 0 18px;
}

h5,
.heading-5 {
	font-size: 16px;
	margin: 0 0 16px;
}

h6,
.heading-6 {
	font-size: 15px;
	margin: 0 0 14px;
}

.bold-100 {
	font-weight: 100;
}

.bold-200 {
	font-weight: 200;
}

.bold-300 {
	font-weight: 300;
}

.bold-400 {
	font-weight: 400;
}

.bold-500 {
	font-weight: 500;
}

.bold-600 {
	font-weight: 600;
}

.bold-700 {
	font-weight: 700;
}

.bold-800 {
	font-weight: 800;
}

.bold-900 {
	font-weight: 900;
}

.text-input {
	width: 100%;
	border: 1px solid #b5b5b5;
	border-radius: 5px;
	padding: 12px 17px;
}

.pix-btn,
input.pix-btn {
	border: 1px solid #e1e1e1;
	display: inline-block;
	cursor: pointer;
	font-size: 14px;
	padding: 8px 14px;
	color: #666;
	background-color: #fff;
	border-radius: 4px;
}

.pix-btn:hover,
input.pix-btn:hover,
.pix-btn:active,
input.pix-btn:active {
	background-color: #f6f6f6;
	color: #666;
}

.pix-btn.site {
	background-color: var(--prmColor);
	color: #fff;
	border-color: var(--prmColor);
}

.pix-btn.site:hover {
	background-color: var(--primaryHvr);
	border-color: var(--primaryHvr);
	color: #fff;
}

.pix-btn.primary {
	background-color: #333;
	color: #cccccc;
	border-color: #333;
}

.pix-btn.primary:hover {
	background-color: #505050;
	border-color: #505050;
	color: #ccc;
}

.pix-btn.success {
	background-color: #5cab02;
	color: #fff;
	border-color: #5cab02;
}

.pix-btn.success:hover {
	background-color: #95d050;
	border-color: #95d050;
	color: #fff;
}

.pix-btn.warning {
	background-color: #ff6633;
	color: #fff;
	border-color: #ff6633;
}

.pix-btn.warning:hover {
	background-color: #ff7d4a;
	border-color: #ff7d4a;
	color: #fff;
}

.pix-btn.info {
	background-color: #27aff5;
	color: #fff;
	border-color: #27aff5;
}

.pix-btn.info:hover {
	background-color: #4cbcf6;
	border-color: #4cbcf6;
	color: #fff;
}

.pix-btn.danger {
	background-color: #900;
	color: #fff;
	border-color: #900;
}

.pix-btn.danger:hover {
	background-color: #b71e1e;
	border-color: #b71e1e;
	color: #fff;
}

.pix-btn.white {
	background-color: #fff;
	color: #333;
	border-color: #eee;
	outline: none;
}

.pix-btn.white:hover {
	background-color: #fff;
	border-color: #eee;
	color: #999;
}

.pix-btn.gray {
	background-color: #ccc;
	color: #333;
	border-color: #bbb;
	outline: none;
}

.pix-btn.gray:hover {
	background-color: #eee;
	border-color: #bbb;
	color: #333;
}

.pix-btn.xs {
	font-size: 12px;
	padding: 2px 6px;
}

.pix-btn.sm {
	font-size: 13px;
	padding: 4px 7px;
}

.pix-btn.md {
	font-size: 14px;
	padding: 8px 14px;
}

.pix-btn.lg {
	font-size: 16px;
	padding: 10px 25px;
}

.pix-btn.xl {
	font-size: 22px;
	font-weight: 700;
	padding: 14px 24px;
}

.pix-btn.fullwidth {
	display: block;
	text-align: center;
	width: 100%
}

.pix-tabs {
	margin-bottom: 40px;
}

.pix-tabs .tab-item {
	color: #333;
	font-weight: 600;
	font-size: 17px;
	font-family: Roboto;
	display: inline-block;
	vertical-align: top;
}

.pix-tabs .tab-item:hover {
	color: var(--prmColor);
}

.pix-tabs .tab-item.active {
	border-bottom: 2px solid var(--prmColor);
	color: var(--prmColor);
	padding: 0 9px 2px 9px;
	position: relative;
}

.pix-tabs .tab-item.active::before {
	content: '';
	display: block;
	border: 5px solid rgba(0, 0, 0, 0);
	position: absolute;
	border-top-color: var(--prmColor);
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
}

.pix-tabs .tab-item+.tab-item {
	margin-left: 40px;
}

.pix-tabs .main-tab-mob {
	display: none;
}

.pix-check {
	display: inline-block;
	position: relative;
	min-height: 25px;
	cursor: pointer;
	padding: 2px 0 0 35px;
}

.pix-check::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	border: 2px solid var(--prmColor);
	border-radius: 4px;
	width: 25px;
	height: 25px;
}

.pix-check input[type=checkbox] {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	opacity: 0;
	cursor: pointer;
}

.pix-check .pix-check-tik {
	display: none;
	position: absolute;
	top: 6px;
	left: 5px;
	color: var(--prmColor);
}

.pix-check input:checked+.pix-check-tik {
	display: block;
}

.pix-radio {
	display: inline-block;
	cursor: pointer;
	position: relative;
	padding: 2px 0 0 35px;
	min-height: 25px;
}

.pix-radio::before {
	content: '';
	position: absolute;
	border: 2px solid var(--prmColor);
	width: 25px;
	height: 25px;
	border-radius: 50%;
	top: 0;
	left: 0;
}

.pix-radio input {
	left: 0;
	opacity: 0;
	position: absolute;
	top: 0;
	cursor: pointer;
}

.pix-radio .rddot {
	background-color: var(--prmColor);
	border-radius: 50%;
	display: none;
	height: 8px;
	left: 8px;
	position: absolute;
	top: 9px;
	width: 8px;
}

.pix-radio input:checked+.rddot {
	display: block;
}

.pix-spinner {
	width: 40px;
	height: 40px;
	border: 2px solid #000;
	border-right-color: rgba(0, 0, 0, 0);
	border-radius: 50%;
	animation: spinnerAnimation .7s infinite;
	-webkit-animation: spinnerAnimation .7s infinite;
}

.pix-spinner.sm {
	width: 20px;
	height: 20px;
}

.pix-spinner.md {
	width: 30px;
	height: 30px;
}

.pix-spinner.center {
	margin-left: auto;
	margin-right: auto;
}

@keyframes spinnerAnimation {
	0% {
		transform: rotate(-360deg)
	}
}

@-webkit-keyframes spinnerAnimation {
	0% {
		transform: rotate(-360deg)
	}
}

.pix-sticky-btn {
	position: fixed;
	z-index: 10;
	right: 20px;
	bottom: 20px;
}

.pix-sticky-btn .btn-obj {
	background-color: var(--prmColor);
	color: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.46);
	position: relative;
	cursor: pointer;
	transition: border-radius 150ms;
}

.pix-sticky-btn:hover .btn-obj {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	background-color: #ee272e;
}

.pix-sticky-btn .btn-obj .fa {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.pix-sticky-btn .btn-menu {
	background-color: #fff;
	border: 1px solid #dcdcdc;
	border-radius: 5px;
	bottom: -2px;
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.09);
	visibility: hidden;
	position: absolute;
	right: 100%;
	text-align: left;
	white-space: nowrap;
	z-index: 20;
	transition: visibility 150ms, transform 150ms;
	transform: scale(0);
	transform-origin: right bottom 0;
	max-width: none;
}

.pix-sticky-btn:hover .btn-menu {
	visibility: visible;
	transform: scale(1);
}

.pix-sticky-btn .btn-menu::after {
	content: "";
	height: 100%;
	position: absolute;
	right: -51px;
	top: 0;
	width: 51px;
}

.pix-sticky-btn .btn-menu .btn-menu-item {
	display: block;
	padding: 6px 26px 6px 37px;
	position: relative;
	cursor: pointer;
	color: #333
}

.pix-sticky-btn .btn-menu .btn-menu-item.disabled {
	color: #999;
	pointer-events: none;
	cursor: text;
}

.pix-sticky-btn .btn-menu .btn-menu-item:first-child {
	padding-top: 13px;
}

.pix-sticky-btn .btn-menu .btn-menu-item:last-child {
	padding-bottom: 13px;
}

.pix-sticky-btn .btn-menu .btn-menu-item:hover {
	background-color: #ededed;
	color: #000;
}

.pix-sticky-btn .btn-menu .btn-menu-item .m-icon {
	position: absolute;
	margin-top: 3px;
	left: 9px;
	width: 17px;
	text-align: center;
}

.user-notification {
	position: fixed;
	text-align: center;
	width: 100%;
	z-index: 1000;
	pointer-events: none;
}

.user-notification .msg-block {
	display: inline-block;
	background-color: #ee0000;
	color: #fff;
	font-weight: 600;
	overflow: hidden;
	position: relative;
	padding: 8px 83px 8px 20px;
}

.user-notification.success .msg-block {
	background-color: #00b100;
}

.user-notification.warning .msg-block {
	background-color: #ffb300;
}

.user-notification .msg-block .got-it {
	position: absolute;
	right: 3px;
	top: 3px;
	background-color: rgba(0, 0, 0, 0.27);
	padding: 5px 9px;
	border-radius: 4px;
	cursor: pointer;
	pointer-events: initial;
}

.user-notification .msg-block .got-it:hover {
	background-color: rgba(0, 0, 0, 0.40);
}

.popup-frame {
	position: fixed;
	background-color: rgba(255, 255, 255, 0.86);
	top: 0px;
	left: 0px;
	z-index: 1000;
	width: 100%;
	height: 100%;
}

.popup-frame .popbox {
	background-color: #fff;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.43);
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 748px;
	max-width: calc(100% - 40px);
}

.popup-frame .popbox .popup-close-x {
	display: block;
	color: #000;
	font-weight: 800;
	position: absolute;
	right: -13px;
	top: -12px;
	font-size: 17px;
	background-color: #fff;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.37);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	cursor: pointer;
}

.popup-frame .popbox .popup-close-x::before,
.popup-frame .popbox .popup-close-x::after {
	content: '';
	display: block;
	border-left: 3px solid #777;
	height: 12px;
	position: absolute;
	top: 9px;
	left: 14px;
	cursor: pointer;
}

.popup-frame .popbox .popup-close-x::before {
	transform: rotate(45deg);
}

.popup-frame .popbox .popup-close-x::after {
	transform: rotate(-45deg);
}

.popup-frame .popbox .popup-close-x:hover::before,
.popup-frame .popbox .popup-close-x:hover::after {
	border-color: #000;
}

.popup-frame .popbox .popup-heading {
	font-size: 18px;
	font-weight: 600;
	padding: 10px 20px;
}

.popup-frame .popbox .popup-content {
	padding: 0px 20px 18px;
}

.popup-frame .popbox .popup-content .limit-content {
	margin-right: -15px;
}

.popup-frame .popbox .popup-content .limit-content>div {
	padding-right: 15px;
	overflow-x: hidden;
	overflow-y: auto;
	max-height: calc(100vh - 152px);
}

.popup-frame .popbox .popup-content .popup-output {
	text-align: center;
	font-size: 16px;
	color: #777;
}

.popup-frame .popbox .popup-content .popup-output .ppo-icon {
	margin: 40px 0 0;
}

.popup-frame .popbox .popup-content .popup-output .ppo-title {
	color: #000;
	font-size: 26px;
	font-weight: 500;
	padding: 30px 0 10px;
}

.popup-frame .popbox .popup-content .popup-output .ppo-body {
	margin-bottom: 50px;
}

.popup-frame .popbox .popup-content .popup-output .ppo-icon .material-icons {
	font-size: 81px;
}

.popup-frame .popbox .popup-content .popup-output .ppo-button {
	padding-bottom: 30px;
}

.popup-frame .popbox .popup-content .popup-output .ppo-button .pix-btn {
	border-radius: 100px;
}

/* Site Alert */
.site-alert-wp {
	position: fixed;
	top: 50px;
	left: 0;
	width: 100%;
	text-align: center;
	z-index: 2000;
	padding: 0 30px;
}

.site-alert-wp .site-alert {
	background-color: #bb0202;
	color: #fff;
	transform: translateY(-100%) scale(0);
	padding: 15px 60px 15px 60px;
	font-size: 1.1em;
	border-radius: 8px;
	border: 1px solid #7b0000;
	box-shadow: 0 12px 23px rgba(0, 0, 0, 0.20);
	opacity: 0;
	animation: siteAlertInit 5s ease-in-out forwards;
	display: inline-block;
	text-align: left;
}

.site-alert-wp .site-alert.success {
	background-color: #36bd66;
	border-color: #169966;
}

.site-alert-wp .site-alert .al-msg-icon {
	position: absolute;
	background-color: rgba(255, 255, 255, 0.77);
	color: #bb0202;
	position: absolute;
	top: 11px;
	left: 13px;
	width: 33px;
	height: 33px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.site-alert-wp .site-alert.success .al-msg-icon {
	color: #007e50;
}

.site-alert-wp .site-alert .al-msg-close {
	position: absolute;
	position: absolute;
	top: 6px;
	right: 2px;
	padding: 11px;
	cursor: pointer;
	color: rgba(255, 255, 255, .7);
}

.site-alert-wp .site-alert .al-msg-close:hover {
	color: #fff;
}


@keyframes siteAlertInit {
	3% {
		transform: translateY(0) scale(.2);
	}

	6% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}

	96% {
		opacity: 1;
		transform: translateY(0) scale(1);
	}

	100% {
		opacity: 0;
		transform: translateY(-100%) scale(0);
	}
}

.fluid-container {
	margin: 0 60px
}

.fluid-container.main-content {
	padding-top: 50px;
	padding-bottom: 60px;
}

#mobMenu {
	background-color: var(--prmColor);
	color: #ffffff;
	height: 100%;
	left: -280px;
	opacity: 1;
	position: fixed;
	top: 0;
	transition: all 0.3s ease 0s;
	width: 280px;
	z-index: 999999;
}

#mobMenu .mobile_menu {
	height: 100%;
	overflow: auto;
	background-color: var(--prmColor);
}

#mobMenu .close_btn {
	background: var(--prmColor) none repeat scroll 0 0;
}

#mobMenu.show_menu #close::before {
	background-color: rgb(0, 0, 0);
	content: "";
	height: 100%;
	opacity: 0.5;
	position: absolute;
	right: -1000px;
	width: 10000px;
	z-index: -1;
}

#mobMenu.show_menu {
	left: 0px;
}

#mobMenu .close_btn a {
	color: #fff;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	padding: 4px;
}

#mobMenu ul,
#mobMenu ul li {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

#mobMenu ul li {
	display: block;
}

#mobMenu ul li.login {
	display: none;
}

#mobMenu ul li a,
#mobMenu ul li .menu-link {
	color: #fff;
	display: block;
	font-size: 16px;
	font-weight: 500;
	padding: 7px 15px;
}

#mobMenu ul li+li {
	border-top: 1px solid rgba(255, 255, 255, .3)
}

#mobMenu ul li a.sub-link {
	font-size: 13px;
	padding: 3px 0 4px 30px;
}

#mobMenu ul li a.sub-link:last-child {
	padding-bottom: 20px;
}

#mobMenu .mobile_menu .mb_menu_box .option-list li .pl-btn {
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	cursor: pointer;
	display: block;
	padding: 7px 16px 9px;
	font-weight: 500;
	font-size: 16px;
}

#mobMenu .mobile_menu .mb_menu_box .option-list li ul {
	margin-left: 20px;
}

#mobMenu .mobile_menu .mb_menu_box .option-list li ul li a {
	font-weight: 300;
}

.container-head {
	margin: 0px 60px;
}

.pg-header {
	background-color: var(--prmColor);
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}

.navigation {
	display: flex;
	justify-content: space-between;
	line-height: 24px;
}

.navigation .logo {
	width: 40px;
	padding: 5px 0px;
}

.navigation .login-box {
	text-align: right;
	position: relative;
	margin: 5px 0 5px auto;
	padding-right: 30px;
}

.navigation .login-box .box-links {
	background-color: #fff;
	border-radius: 4px;
	box-shadow: 0 0 2px rgba(0, 0, 0, 0.4);
	display: none;
	list-style: outside none none;
	padding: 5px 0;
	position: absolute;
	right: -12px;
	text-align: left;
	top: 34px;
	width: 190px;
	z-index: 1000;
	max-width: none;
}

.navigation .login-box .box-links a+a {
	border-top: 1px solid #d1d1d1;
}

.navigation .login-box .box-links i {
	padding-right: 15px;
}

.navigation .login-box .user-name {
	color: #fff;
	display: inline-block;
	margin-left: 5px;
	vertical-align: middle;
	padding-top: 6px;
}

.navigation .login-box::after {
	color: #fff;
	content: "\f0dd";
	font-family: fontawesome;
	position: absolute;
	right: 14px;
	top: 4px;
}

.navigation .login-box:hover>.box-links {
	display: block;
}

.navigation .login-box .box-links a {
	color: #888;
	display: block;
	padding: 7px 10px;
}

.navigation .login-box .box-links::after {
	color: #fff;
	content: "";
	font-family: fontawesome;
	font-size: 40px;
	position: absolute;
	right: 19px;
	top: -3px;
}

.navigation .login-box .box-links a:hover {
	color: #333;
}

.navigation .menu {
	padding: 0 10px 0 0;
	margin-top: 5px;
}

.navigation .menu .option-list {
	list-style: none;
	display: block;
	margin: 0px;
	padding: 0;
}

.navigation .menu .option-list>li {
	display: inline-block;
	position: relative;
}

.navigation .menu .option-list>li>a,
.navigation .menu .option-list>li>.pl-btn {
	padding: 7px 16px 9px;
	display: block;
	color: #fff;
	cursor: pointer;
}

.navigation .menu .mobile-menu-btn {
	background-color: #ac1318;
	color: #fff;
	padding: 9px 15px;
	border-radius: 3px;
	cursor: pointer;
	display: none;
}

.navigation .menu .option-list>li:hover>a,
.navigation .menu .option-list>li>a.active,
.navigation .menu .option-list>li:hover>.pl-btn,
.navigation .menu .option-list>li>.pl-btn.active {
	border-bottom: 2px solid #fff;
	padding-bottom: 7px;
}

.navigation .menu .option-list li {
	position: relative;
}

.navigation .menu .option-list li ul {
	display: none;
	position: absolute;
	background-color: #fff;
	list-style: none;
	margin: 0;
	padding: 0;
	top: -6px;
	left: 100%;
	box-shadow: 0 0 7px rgba(0, 0, 0, 0.12);
	border: 1px solid #f6f6f6;
	border-radius: 5px;
	white-space: nowrap;
}

.navigation .menu .option-list>li>ul {
	top: 100%;
	left: 0;
	min-width: 100%;
}

.navigation .menu .option-list li ul li {
	display: block;
}

.navigation .menu .option-list li ul li:first-child>a {
	padding-top: 7px;
}

.navigation .menu .option-list li ul li:last-child>a {
	padding-bottom: 7px;
}

.navigation .menu .option-list li ul li a,
.navigation .menu .option-list li ul li .dmsb-menu {
	color: #555555;
	display: block;
	padding: 1px 15px;
	cursor: pointer;
}

.navigation .menu .option-list li ul li:hover>a,
.navigation .menu .option-list li ul li:hover>.dmsb-menu {
	color: #0af;
}

.navigation .menu .option-list li:hover>ul {
	display: block;
}

.navigation .logo.mob-logo {
	display: none;
}

.breadcrumbs {
	font-size: 13px;
	margin: -28px 0 45px 0;
	line-height: 2.5em;
}

.breadcrumbs .cm-item {
	color: #b3b3b3;
}

.breadcrumbs .cm-item .material-symbols-outlined {
	font-size: 1.4em;
	vertical-align: -4px;
}

.breadcrumbs .cm-item:not(:last-child):hover {
	color: var(--primary);
	text-decoration: underline;
}

.breadcrumbs .cm-item+.cm-item::before {
	content: '/';
	display: inline-block;
	margin: 0 13px 0 10px;
	color: #b3b3b3;
	pointer-events: none;
}

.breadcrumbs .cm-item:last-child {
	color: var(--primary);
}

/* Pagination */
.pagination {
	text-align: center;
}

.pagination.text-left {
	text-align: left;
}

.pagination .separator {
	color: #000;
	margin: 0 10px;
	vertical-align: bottom;
	display: inline-block;
}

.pagination a {
	align-items: center;
	background-color: #fff;
	border: 1px solid #eaeaea;
	border-radius: 50%;
	color: #666;
	display: inline-flex;
	font-weight: 500;
	height: 50px;
	justify-content: center;
	margin: 3px;
	width: 50px;
}

.pagination a:hover {
	background-color: #f9f9f9;
}

.pagination a.active {
	background-color: var(--primary);
	border-color: var(--primary);
	color: #fff;
}

/* page head */
.page-head {
	overflow: hidden;
	margin-bottom: 40px;
}

.login-body {
	background: #65cea7 url("../images/login-bg.jpg") no-repeat fixed;
	background: #e5e5e5;
	background-size: cover;
	width: 100%;
	height: 100%;
}

.form-signin {
	max-width: 330px;
	margin: 100px auto;
	background: #fff;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 1px solid #cecece;
}

.form-signin .form-signin-heading {
	margin: 0;
	padding: 25px 15px;
	text-align: center;
	color: #fff;
	position: relative;
}

.sign-title {
	font-size: 22px;
	color: #ec2a31;
	position: absolute;
	top: -60px;
	left: 0;
	text-align: center;
	width: 100%;
	text-transform: uppercase;
	text-shadow: 1px 1px 0px #f8f8f8;
	letter-spacing: 2px;
}

.form-signin .checkbox {
	margin-bottom: 14px;
	font-size: 13px;
}

.form-signin .checkbox {
	font-weight: normal;
	color: #3a3a3a;
	font-weight: normal;
	position: absolute;
	bottom: -50px;
	width: 100%;
	left: 0;
}

.form-signin .checkbox a,
.form-signin .checkbox a:hover {
	color: #3a3a3a;
}

.form-signin .checkbox a:hover {
	text-decoration: underline;
	color: #cc161d;
}

.form-signin .form-control {
	position: relative;
	font-size: 16px;
	height: auto;
	padding: 8px 10px 8px 58px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.form-signin .form-control:focus {
	z-index: 2;
}

.form-signin input[type="text"],
.form-signin input[type="password"] {
	margin-bottom: 15px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 1px solid #dadada;
	background: #eaeaec;
	box-shadow: none;
	font-size: 12px;
	background: url(../images/login_email.jpg) no-repeat left center;
}

.form-signin input[type="password"] {
	background: url(../images/login_pass.jpg) no-repeat left center;
}

.form-signin .btn-login {
	background: #dd1c24;
	color: #fff;
	text-transform: uppercase;
	font-weight: normal;
	margin: 20px 0 5px;
	padding: 5px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	font-size: 30px;
}

.form-signin .btn-login:hover {
	background: #e4494f;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.form-signin p {
	text-align: left;
	color: #b6b6b6;
	font-size: 16px;
	font-weight: normal;
}

.form-signin a,
.form-signin a:hover {
	color: #dd1c24;
}

.form-signin .site_link {
	display: inline-block;
	margin-top: 13px;
	text-align: center;
}

.form-signin .a_center {
	text-align: center;
}

.form-signin a:hover {
	text-decoration: underline;
}

.login-wrap {
	padding: 20px;
	position: relative;
}

.registration {
	color: #c7c7c7;
	text-align: center;
	margin-top: 15px;
}

.left-side {
	width: 240px;
	position: absolute;
	top: 0;
	left: 0;
}

.sticky-left-side {
	position: fixed;
	height: 100%;
	overflow-y: auto;
	z-index: 100;
}

.sticky-left-side .custom-nav {
	margin-top: 50px;
}

.left-side-collapsed .sticky-left-side {
	overflow-y: visible;
}

.logo {
	padding-top: 0px;
}

.logo a {
	font-size: 28px;
	color: #fff;
	margin: 0 0 0 20px;
	margin: 0px;
	text-decoration: none;
	display: inline-block;
}

.logo-icon {
	display: none;
}

.left-side-collapsed .logo-icon {
	height: 45px;
	margin-top: -52px;
	display: block !important;
}

.left-side-inner {
	padding: 0px;
	margin-bottom: 50px;
}

.left-side .searchform {
	display: none;
}

.left-side .searchform::after {
	content: '';
	display: block;
	clear: both;
}

.left-side .searchform input {
	padding: 10px;
	width: 90%;
	margin: 0 0 20px 12px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	border: none;
}

.left-side .logged-user {
	padding: 0 0 15px 12px;
	margin: 0 0 15px 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	display: none;
}

.left-side .logged-user .media-object {
	width: 45px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	float: left;
}

.left-side .logged-user .media-body {
	margin-left: 60px;
	color: #d7d7d7;
}

.left-side .logged-user .media-body h4 {
	font-size: 15px;
	margin: 5px 0 0 0;
}

.left-side .logged-user .media-body h4 a {
	color: #fff;
}

.left-side .logged-user .media-body span {
	font-style: italic;
	font-size: 11px;
	opacity: 0.5;
}

.custom-nav {
	margin-bottom: 10px;
}

.custom-nav>li>a {
	color: #fff;
	padding: 12px 20px;
	border-radius: 0;
	-webkit-border-radius: 0;
}

.custom-nav>li>a:hover,
.custom-nav>li>a:active {
	background-color: #fbfbfb;
	color: #3a3a3a;
	border-radius: 0;
	-webkit-border-radius: 0;
}

.custom-nav>li.menu-list>a {
	background: transparent url(../images/plus-white.png) no-repeat 93% center;
}

.custom-nav>li.menu-list>a:hover {
	background-color: #fbfbfb;
	background-image: url(../images/plus.png);
}

.custom-nav>li.nav-active>a {
	background-color: #fbfbfb;
	background-image: url(../images/minus.png);
	color: #3a3a3a;
}

.custom-nav>li.nav-active>ul {
	display: block;
}

.custom-nav>li.nav-active>a:hover {
	background-image: url(../images/minus.png);
}

.custom-nav>li.active>a,
.custom-nav>li.active>a:hover,
.custom-nav>li.active>a:focus {
	background-color: #fbfbfb;
	color: #3a3a3a;
}

.custom-nav>li.menu-list.active>a {
	background-image: url(../images/plus.png);
}

.custom-nav>li.nav-active.active>a {
	background-image: url(../images/minus.png);
}

.custom-nav>li.nav-active.active>a:hover {
	background-image: url(../images/minus.png);
}

.custom-nav li .fa {
	font-size: 16px;
	vertical-align: middle;
	margin-right: 10px;
	width: 16px;
	text-align: center;
}

.custom-nav .sub-menu-list {
	list-style: none;
	display: none;
	margin: 0;
	padding: 0;
	background: #353f4f;
	background: #454545;
}

.custom-nav .sub-menu-list>li>a {
	color: #fff;
	font-size: 13px;
	display: block;
	padding: 10px 5px 10px 50px;
	-moz-transition: all 0.2s ease-out 0s;
	-webkit-transition: all 0.2s ease-out 0s;
	transition: all 0.2s ease-out 0s;
}

.custom-nav .sub-menu-list>li>a:hover,
.custom-nav .sub-menu-list>li>a:active,
.custom-nav .sub-menu-list>li>a:focus {
	text-decoration: none;
	color: #3a3a3a;
	background: #fbfbfb;
}

.custom-nav .sub-menu-list>li .fa {
	font-size: 12px;
	opacity: 0.5;
	margin-right: 5px;
	text-align: left;
	width: auto;
	vertical-align: baseline;
}

.custom-nav .sub-menu-list>li.active>a {
	color: #fff;
	background-color: #2A323F;
	background-color: #252525;
}

.custom-nav .sub-menu-list>li:hover>a {
	color: #fff;
	background-color: #2A323F;
	background-color: #252525;
}

.custom-nav .sub-menu-list ul {
	margin-left: 12px;
	border: 0;
}

.custom-nav .menu-list.active ul {
	display: block;
}

.left-side-collapsed .logo {
	display: none;
}

.left-side-collapsed .header-section {
	margin-left: 0px;
}

.left-side-collapsed .left-side {
	width: 52px;
	top: 52px;
}

.left-side-collapsed .left-side-inner {
	padding: 0;
}

h5.left-nav-title {
	margin-left: 10px;
	color: #fff;
}

.left-side-collapsed .custom-nav {
	margin: 2px 0 20px 0;
}

.left-side-collapsed .custom-nav li a {
	text-align: center;
	padding: 10px;
	position: relative;
}

.left-side-collapsed .custom-nav>li.menu-list>a {
	background-image: none;
}

.left-side-collapsed .custom-nav li a span {
	position: absolute;
	background: #cb161d;
	padding: 10px;
	left: 52px;
	top: 0;
	min-width: 173px;
	text-align: left;
	z-index: 100;
	display: none;
}

.left-side-collapsed .custom-nav li a span:after {
	right: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(0, 0, 0, 0);
	border-right-color: #cb161d;
	border-width: 6px;
	margin-top: -6px;
}

.left-side-collapsed .custom-nav li.active a span {
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
}

.left-side-collapsed .custom-nav ul,
.left-side-collapsed .custom-nav .menu-list.nav-active ul {
	display: none;
}

.left-side-collapsed .custom-nav .menu-list.nav-hover ul {
	display: block;
}

.left-side-collapsed .custom-nav>li.nav-hover>a,
.left-side-collapsed .custom-nav>li.nav-hover.active>a {
	background: #fff;
	color: #424F63;
}

.left-side-collapsed .custom-nav li.nav-hover a span {
	display: block;
	color: #fff;
}

.left-side-collapsed .custom-nav li.nav-hover.active a span {
	background: #65CEA7;
	color: #fff;
}

.left-side-collapsed .custom-nav li.nav-hover ul {
	display: block;
	position: absolute;
	top: 40px;
	left: 53px;
	margin: 0;
	min-width: 172px;
	background: #3a3a3a;
	z-index: 100;
	-moz-border-radius: 0 0 2px 0;
	-webkit-border-radius: 0 0 2px 0;
	border-radius: 0 0 2px 0;
}

.left-side-collapsed .custom-nav ul a {
	text-align: left;
	padding: 6px 10px;
	padding-left: 10px;
}

.left-side-collapsed .custom-nav ul a:hover {
	background: #252525;
}

.left-side-collapsed .custom-nav li a i {
	margin-right: 0;
}

.left-side-collapsed .left-side {
	overflow: visible !important;
}

.header-section {
	background: #fff;
	border-bottom: 1px solid #eff0f4;
}

.header-section::after {
	clear: both;
	display: block;
	content: '';
}

.toggle-btn {
	width: 52px;
	height: 70px;
	font-size: 20px;
	padding: 22px 17px;
	cursor: pointer;
	float: left;
	color: #212121;
	border-right: 1px solid #e7e7e7;
	-moz-transition: all 0.2s ease-out 0s;
	-webkit-transition: all 0.2s ease-out 0s;
	transition: all 0.2s ease-out 0s;
}

.toggle-btn:hover {
	background: #cb161d;
	color: #fff;
	border-right-color: #ba0b12;
}

.searchform input {
	box-shadow: none;
	float: left;
	font-size: 14px;
	height: 35px;
	margin: 7px 0 0 10px;
	padding: 10px;
	width: 220px;
}

.searchform input:focus {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-color: #ddd;
}

.menu-right {
	float: right;
	margin-right: 15px;
}

.notification-menu {
	list-style: none;
	margin-bottom: 0px;
}

.notification-menu>li {
	display: block;
	float: left;
	margin: 0 4px;
	position: relative;
	width: calc(16.66% - 8px);
}

.notification-menu>li>a>i {
	margin-top: 6px;
}

.notification-menu .dropdown-toggle {
	padding: 12px 10px;
	border-color: #fff;
	background: #fff;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	border-radius: 0;
	border: none;
}

.notification-menu .dropdown-toggle:hover,
.notification-menu .dropdown-toggle:focus,
.notification-menu .dropdown-toggle:active,
.notification-menu .dropdown-toggle.active,
.notification-menu .open .dropdown-toggle.dropdown-toggle {
	background: #3a3a3a;
	color: #fff;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.notification-menu .dropdown-toggle img {
	vertical-align: middle;
	margin-right: 5px;
	width: 26px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
}

.notification-menu .dropdown-toggle .caret {
	margin-left: 5px;
}

.notification-menu .dropdown-menu {
	border: 0;
	margin-top: 0px;
	-moz-border-radius: 2px 0 2px 2px;
	-webkit-border-radius: 2px 0 2px 2px;
	border-radius: 2px 0 2px 2px;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 5px;
}

.notification-menu .dropdown-menu:after {
	border-bottom: 6px solid #ca161d;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	content: "";
	display: inline-block;
	right: 10px;
	position: absolute;
	top: -6px;
}

.notification-menu .dropdown-menu li {
	display: block;
	margin: 0;
	float: none;
	background: none;
	padding: 15px;
}

.notification-menu .dropdown-menu-usermenu li {
	padding: 0;
}

.notification-menu .dropdown-menu li a {
	color: #fff;
	font-size: 13px;
	padding: 7px 10px;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-moz-transition: all 0.2s ease-out 0s;
	-webkit-transition: all 0.2s ease-out 0s;
	transition: all 0.2s ease-out 0s;
}

.notification-menu .dropdown-menu li a:hover {
	background: #fff;
	color: #3a3a3a;
}

.notification-menu .dropdown-menu li i {
	font-size: 11px;
	margin-right: 5px;
}

.notification-menu .dropdown-menu-head {
	padding: 0;
	min-width: 300px;
}

.notification-menu .info-number {
	padding: 22px 15px;
	height: 70px;
	font-size: 16px;
	background: #fff;
	color: #333;
	border-color: #fff;
	-moz-transition: all 0.2s ease-out 0s;
	-webkit-transition: all 0.2s ease-out 0s;
	transition: all 0.2s ease-out 0s;
}

.notification-menu .dropdown-menu-usermenu {
	background: #ca161d;
	min-width: 200px;
}

.notification-menu .dropdown-menu-head ul {
	border: 1px solid #ddd;
	border-top: 0;
	padding: 0;
}

.notification-menu .dropdown-menu-head li a {
	color: #333;
	padding: 0;
	opacity: 1;
}

.notification-menu .dropdown-menu-head li a:hover {
	background: none;
	color: #ca161d !important;
	text-decoration: none;
}

.notification-menu .btn-group {
	margin-bottom: 0;
}

.dropdown-list li {
	padding: 15px;
	overflow: hidden;
	border-bottom: 1px solid #eee;
}

.dropdown-list li:last-child {
	border-bottom: 0;
}

.dropdown-list .thumb {
	width: 36px;
	float: left;
}

.dropdown-list .thumb img {
	width: 100%;
	display: block;
}

.dropdown-list .desc {
	margin-left: 45px;
	display: block;
}

.dropdown-list .desc h5 {
	font-size: 13px;
	margin-top: 7px;
}

.dropdown-list li:last-child {
	padding: 10px 15px;
}

.dropdown-list li .badge {
	float: right;
}

.user-list {
	width: 300px;
}

.user-list .progress {
	margin-bottom: 0;
}

.normal-list li a .label i {
	margin-right: 0;
}

.normal-list li a span.label {
	float: left;
	margin-right: 10px;
	padding: 5px;
	width: 20px;
}

.normal-list li a:hover {
	color: #65CEA7 !important;
	text-decoration: none;
}

.normal-list li .name {
	font-size: 13px;
	font-family: 'Arial' Helvetica, sans-serif;
	line-height: 21px;
}

.normal-list li .msg {
	font-size: 12px;
	line-height: normal;
	color: #999;
	display: block;
}

.info-number .badge {
	background: #ca161d;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	font-size: 10px;
	font-weight: normal;
	line-height: 13px;
	padding: 2px 5px;
	position: absolute;
	right: 4px;
	top: 18px;
}

.sticky-header .logo {
	position: fixed;
	top: 0;
	left: 0;
	width: 240px;
	z-index: 100;
	background: #424f63;
	background: #3a3a3a;
}

.sticky-header .header-section {
	position: fixed;
	top: 0;
	left: 240px;
	width: 100%;
	z-index: 100;
}

.sticky-header .menu-right {
	margin-right: 255px;
}

.sticky-header.left-side-collapsed .header-section {
	left: 52px;
}

.sticky-header.left-side-collapsed .menu-right {
	margin-right: 67px;
}

.dropdown-menu-head {
	background: #fff;
}

.dropdown-menu-head .title {
	background: #ca161d;
	color: #fff;
	padding: 15px;
	text-transform: uppercase;
	font-size: 12px;
	margin: 0;
}

.page-heading {
	padding: 15px;
	position: relative;
}

.page-heading h3 {
	color: #49586e;
	font-size: 25px;
	font-weight: normal;
	margin: 10px 0;
}

.page-heading .breadcrumb {
	padding: 0;
	margin: 0;
	background: none;
}

.page-heading .breadcrumb a {
	color: #999999;
}

.page-heading .breadcrumb li.active {
	color: #65CEA7;
	color: #ca161d;
}

.wrapper {
	padding: 15px;
}

.wrapper::after {
	clear: both;
	display: block;
	content: '';
	margin-bottom: 30px;
}

.boxed-view {
	background: #b6b7ba;
}

.boxed-view .container {
	position: relative;
	background: #424f63;
	padding: 0;
}

.horizontal-menu-page {
	background: #EFF0F4;
}

.horizontal-menu-page .navbar {
	margin-bottom: 0;
}

.horizontal-menu-page .navbar-brand {
	padding: 5px 15px;
	min-height: 50px;
}

.horizontal-menu-page .navbar-default {
	background: #424F63;
	border: none;
	border-radius: 0;
}

.horizontal-menu-page .navbar-default .navbar-nav>.active>a,
.horizontal-menu-page .navbar-default .navbar-nav>.active>a:hover,
.horizontal-menu-page .navbar-default .navbar-nav>.active>a:focus,
.horizontal-menu-page .navbar-default .navbar-nav>.open>a,
.horizontal-menu-page .navbar-default .navbar-nav>.open>a:hover,
.horizontal-menu-page .navbar-default .navbar-nav>.open>a:focus,
.horizontal-menu-page .navbar-default .navbar-nav>li>a:hover,
.horizontal-menu-page .navbar-default .navbar-nav>li>a:focus {
	background-color: #353F4F;
	color: #FFFFFF;
}

.horizontal-menu-page .navbar-default .navbar-nav>li>a {
	color: #FFFFFF;
	font-size: 13px;
}

.horizontal-menu-page .form-control {
	box-shadow: none;
	float: left;
}

.horizontal-menu-page .dropdown-menu {
	background-color: #353F4F;
	color: #fff;
	box-shadow: none;
	border: none;
}

.horizontal-menu-page .dropdown-menu>li>a {
	color: #fff;
	padding: 10px 20px;
	font-size: 12px;
}

.horizontal-menu-page .dropdown-menu>li>a:hover,
.horizontal-menu-page .dropdown-menu>li>a:focus,
.horizontal-menu-page .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover {
	background-color: #2A323F;
	color: #65CEA7;
	text-decoration: none;
}

.horizontal-menu-page .navbar-default .navbar-nav .open .dropdown-menu>li>a {
	color: #fff;
}

.horizontal-menu-page .navbar-default .navbar-toggle {
	border-color: #2A323F;
}

.horizontal-menu-page .navbar-default .navbar-toggle .icon-bar {
	background-color: #2A323F;
}

.horizontal-menu-page .navbar-default .navbar-toggle:hover,
.horizontal-menu-page .navbar-default .navbar-toggle:focus {
	background-color: #FFFFFF;
	border-color: #FFFFFF !important;
}

.horizontal-menu-page .navbar-default .navbar-collapse,
.horizontal-menu-page .navbar-default .navbar-form {
	border-color: #2A323F;
}

.horizontal-menu-page .dropdown-toggle img {
	border-radius: 2px;
	-webkit-border-radius: 2px;
	margin-right: 5px;
	vertical-align: middle;
	width: 18px;
}

.tools {
	margin: -7px -5px;
}

.tools a {
	background: #E3E4E8;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	color: #858582;
	float: left;
	margin-left: 3px;
	padding: 10px;
	text-decoration: none;
}

.tools a:hover {
	background: #ca161d;
	color: #fff;
}

footer {
	background: #fff;
	padding: 15px;
	color: #7A7676;
	font-size: 12px;
	position: static;
	bottom: 0;
	border-top: 1px solid #eff0f4;
	margin-left: 15px;
	margin-right: 15px;
}

footer.sticky-footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	z-index: 99;
}

.container footer {
	width: 79.5%;
	position: absolute;
	bottom: 0;
}

.state-info .panel .panel-body {
	padding: 22px 15px
}

.state-info .panel .summary {
	float: left;
	margin-right: 20px;
}

.state-info .panel .summary span {
	color: #49586e;
	font-size: 13px;
	font-weight: normal;
	text-transform: uppercase;
}

.state-info .panel .summary h3 {
	font-size: 20px;
	font-weight: bold;
	line-height: 20px;
	margin: 0;
}

.state-info .panel .summary h3.green-txt {
	color: #65cea7;
}

.state-info .panel .summary h3.red-txt {
	color: #fc8675;
}

.chart-bar {
	float: right;
	margin-top: 5px;
}

.state-overview {
	color: #fff;
}

.state-overview .panel {
	padding: 35px 20px;
}

.state-overview .purple {
	background: #6a8abe;
	box-shadow: 0 5px 0 #5f7cab;
}

.state-overview .red {
	background: #fc8675;
	box-shadow: 0 5px 0 #e27869;
}

.state-overview .blue {
	background: #5ab6df;
	box-shadow: 0 5px 0 #51a3c8;
}

.state-overview .green {
	background: #4acacb;
	box-shadow: 0 5px 0 #42b5b6;
}

.state-overview .symbol,
.state-overview .state-value {
	display: inline-block;
}

.state-overview .symbol {
	width: 35%;
}

.state-overview .symbol i {
	font-size: 40px;
}

.state-overview .state-value {
	width: 62%;
}

.state-overview .state-value .value {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 5px;
}

.state-overview .state-value .title {
	font-size: 14px;
}

.panel.deep-purple-box {
	background: #49586e;
	box-shadow: 0 5px 0 #424f63;
	color: #fff;
}

ul.bar-legend {
	list-style-type: none;
	margin-top: 55px;
	padding-left: 0px;
}

ul.bar-legend li {
	display: block;
	margin-bottom: 10px;
}

ul.bar-legend li span {
	float: left;
	margin-right: 10px;
	width: 20px;
	height: 20px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
}

ul.bar-legend li span.blue {
	background: #5ab6df;
}

ul.bar-legend li span.green {
	background: #4bcacc;
}

ul.bar-legend li span.purple {
	background: #6a8bbe;
}

ul.bar-legend li span.red {
	background: #fb8575;
}

.revenue-states h4 {
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	color: #49586e;
}

.revenue-states .icheck .single-row {
	float: left;
	width: auto;
}

.revenue-states .icheck .checkbox {
	padding-left: 0;
	margin-top: 0;
}

.revenue-states .icheck .checkbox label {
	font-size: 12px;
}

ul.revenue-nav {
	list-style-type: none;
	float: right;
	margin-top: 20px;
	padding: 0;
}

ul.revenue-nav li {
	display: inline-block;
	margin-left: 5px;
}

ul.revenue-nav li a {
	background: #4a596f;
	color: #fff;
	padding: 5px 10px;
	text-decoration: none;
	border-radius: 3px;
	text-transform: uppercase;
	font-size: 12px;
}

ul.revenue-nav li a:hover,
ul.revenue-nav li a:focus,
ul.revenue-nav li.active a {
	background: #65cea7;
	color: #fff;
}

.revenue-chart {
	width: 100%;
	height: 300px;
	text-align: center;
	margin: 12px auto;
}

ul.revenue-short-info {
	list-style-type: none;
	padding: 0;
}

ul.revenue-short-info li {
	float: left;
	width: 25%;
}

ul.revenue-short-info li h1 {
	font-size: 18px;
	font-weight: lighter;
	margin-bottom: 0;
}

ul.revenue-short-info li p {
	font-size: 12px;
	color: #bdbdbd;
}

ul.revenue-short-info .red {
	color: #fb8575;
}

ul.revenue-short-info .blue {
	color: #3bcddd;
}

ul.revenue-short-info .green {
	color: #65cea7;
}

ul.revenue-short-info .purple {
	color: #7ea8e1;
}

ul.goal-progress {
	list-style-type: none;
	padding: 0;
}

ul.goal-progress li {
	display: inline-block;
	width: 100%;
	border-bottom: 1px dashed #dcdcdc;
	margin-bottom: 15px;
	padding-bottom: 15px;
}

ul.goal-progress li .prog-avatar {
	width: 40px;
	height: 40px;
	float: left;
}

ul.goal-progress li .prog-avatar img {
	width: 100%;
	border-radius: 50%;
	-webkit-border-radius: 50%;
}

ul.goal-progress li .details {
	margin-left: 55px;
}

ul.goal-progress li .title {
	margin-bottom: 10px;
}

ul.goal-progress li .title a {
	color: #6a8abe;
}

ul.goal-progress li .title a:hover {
	color: #65cea7;
}

ul.goal-progress li .progress {
	margin-bottom: 0px;
}

ul.goal-progress li .time-n-line {
	display: none
}

.pros-title {
	font-size: 14px;
	color: #535351;
	text-transform: uppercase;
	font-weight: bold;
	margin: 0 0 20px 0;
}

.pros-title span {
	color: #dddddd;
}

ul.pros-chart {
	list-style-type: none;
	padding: 0;
	display: inline-block;
	width: 100%;
	margin-top: 15px;
}

ul.pros-chart li {
	float: left;
	margin-right: 14%;
}

ul.pros-chart li:last-child {
	margin-right: 0;
}

.p-chart-title {
	font-size: 12px;
	margin: 5px 0 0 0;
}

.v-title {
	font-size: 12px;
}

.v-value {
	font-size: 18px;
	color: #343434;
	margin-bottom: 5px;
}

.v-info {
	font-size: 12px;
	margin-top: 5px;
}

.green-box {
	background: none repeat scroll 0 0 #65cea7;
	box-shadow: 0 5px 0 #5bb996;
	color: #fff;
}

.knob {
	text-align: center;
}

.percent {
	color: rgba(255, 255, 255, 0.7);
	display: inline-block;
	font-size: 25px;
	z-index: 2;
	position: absolute;
	width: 90px;
	padding-top: 35px;
}

.percent .sm {
	font-size: 11px;
	display: block;
	padding-top: 32px;
}

.extra-pad {
	padding: 25px 15px;
}

.panel.blue-box {
	background: none repeat scroll 0 0 #5ab5de;
	box-shadow: 0 5px 0 #51a3c7;
	color: #fff;
}

.twt-info h3 {
	font-size: 16px;
	font-weight: bold;
	margin: 10px 0 30px 0;
	text-align: center;
}

.twt-info p {
	font-size: 18px;
	line-height: 25px;
	font-style: italic;
	margin: 0 0 20px 0;
	text-align: center;
}

.twt-info p a {
	color: #98fdf4;
}

.custom-trq-footer {
	background: none repeat scroll 0 0 #4eb6b7;
	box-shadow: 0 5px 0 #46a3a4;
	color: #fff;
	border-top: none;
}

ul.user-states {
	list-style-type: none;
	padding: 20px 0;
}

ul.user-states li {
	text-align: center;
	float: left;
	width: 33%;
	font-size: 18px;
}

.usr-info .thumb {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
}

.media.usr-info>.pull-left {
	margin-right: 20px;
	margin-top: 10px;
}

.usr-info h4 {
	color: #658585;
	margin-bottom: 0;
}

.usr-info .media-body span {
	color: #ea755c;
	font-size: 12px;
	margin-bottom: 20px;
	display: inline-block;
}

.usr-info .media-body p {
	color: #b6bcbc;
}

.todo-title {
	margin-right: 25px;
	padding-top: 5px;
}

.to-do-list {
	padding-left: 0;
	margin-top: -10px;
	font-size: 12px;
}

.to-do-list li {
	padding: 17px 0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	position: relative;
	cursor: move;
	list-style: none;
	font-size: 12px;
	background: #fff;
	border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
}

.to-do-list li p {
	margin-bottom: 0px;
}

.todo-actionlist {
	position: absolute;
	right: -5px;
	top: 22px;
}

.todo-actionlist a {
	height: 24px;
	width: 24px;
	display: block;
	float: left;
}

.todo-actionlist a i {
	height: 24px;
	width: 24px;
	display: inline-block;
	text-align: center;
	line-height: 24px;
	color: #ccc;
}

.todo-actionlist a:hover i {
	color: #666;
}

.todo-done i {
	font-size: 14px;
}

.todo-remove i {
	font-size: 10px;
}

.line-through {
	text-decoration: line-through;
}

.todo-action-bar {
	margin-top: 20px;
}

.drag-marker {
	height: 17px;
	display: block;
	float: left;
	width: 7px;
	position: relative;
	top: 6px;
}

.drag-marker i {
	height: 2px;
	width: 2px;
	display: block;
	background: #ccc;
	box-shadow: 5px 0 0 0px #ccc, 0px 5px 0 0px #ccc, 5px 5px 0 0px #ccc, 0px 10px 0 0px #ccc, 5px 10px 0 0px #ccc, 0px 15px 0 0px #ccc, 5px 15px 0 0px #ccc;
	-webkit-box-shadow: 5px 0 0 0px #ccc, 0px 5px 0 0px #ccc, 5px 5px 0 0px #ccc, 0px 10px 0 0px #ccc, 5px 10px 0 0px #ccc, 0px 15px 0 0px #ccc, 5px 15px 0 0px #ccc;
	-moz-box-shadow: 5px 0 0 0px #ccc, 0px 5px 0 0px #ccc, 5px 5px 0 0px #ccc, 0px 10px 0 0px #ccc, 5px 10px 0 0px #ccc, 0px 15px 0 0px #ccc, 5px 15px 0 0px #ccc;
}

.to-do-list li .todo-check input[type=checkbox] {
	visibility: hidden;
}

.todo-check {
	width: 20px;
	position: relative;
	margin-right: 10px;
	margin-left: 10px;
	margin-top: 5px;
}

.todo-check label {
	cursor: pointer;
	position: absolute;
	width: 20px;
	height: 20px;
	top: 0;
	left: 0px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	border: #ccc 1px solid;
}

.todo-check label:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	opacity: 0;
	content: '';
	position: absolute;
	width: 13px;
	height: 8px;
	background: transparent;
	top: 3px;
	left: 3px;
	border: 3px solid #cfcfcf;
	border-top: none;
	border-right: none;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.todo-checklabel:hover::after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)";
	filter: alpha(opacity=30);
	opacity: 0.3;
}

.todo-check input[type=checkbox]:checked+label:after {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	opacity: 1;
}

.todo-entry {
	float: left;
	width: 85%;
}

.badge.badge-primary {
	background: #8075c4;
}

.badge.badge-success {
	background: #a9d86e;
}

.badge.badge-warning {
	background: #FCB322;
}

.badge.badge-important {
	background: #ff6c60;
}

.badge.badge-info {
	background: #41cac0;
}

.badge.badge-inverse {
	background: #2A3542;
}

.carousel-indicators li {
	background: rgba(0, 0, 0, 0.2);
	border: none;
	transition: background-color 0.25s ease 0s;
	-moz-transition: background-color 0.25s ease 0s;
	-webkit-transition: background-color 0.25s ease 0s;
}

.carousel-indicators .active {
	background: #333;
	height: 10px;
	margin: 1px;
	width: 10px;
}

.carousel-indicators.out {
	bottom: -5px;
}

.carousel-indicators.out {
	bottom: -5px;
}

.carousel-control {
	color: #999999;
	text-shadow: none;
	width: 45px;
}

.carousel-control i {
	display: inline-block;
	height: 25px;
	left: 50%;
	margin-left: -10px;
	margin-top: -10px;
	position: absolute;
	top: 50%;
	width: 20px;
	z-index: 5;
}

.carousel-control.left,
.carousel-control.right {
	background: none;
	filter: none;
}

.carousel-control:hover,
.carousel-control:focus {
	color: #CCCCCC;
	opacity: 0.9;
	text-decoration: none;
}

.carousel-inner h3 {
	font-weight: 300;
	font-size: 16px;
	margin: 0;
}

.carousel-inner {
	margin-bottom: 15px;
}

.highlight pre code {
	color: #333333;
	font-size: inherit;
}

.nt {
	color: #2F6F9F;
}

.na {
	color: #4F9FCF;
}

.s {
	color: #D44950;
}

.c {
	color: #999999;
}

.btn-block {
	padding: 6px 12px;
}

.btn-gap .btn {
	float: left;
	margin-right: 5px;
}

.rating {
	unicode-bidi: bidi-override;
	direction: rtl;
	font-size: 30px;
}

.rating span.star,
.rating span.star {
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	display: inline-block;
}

.rating span.star:hover,
.rating span.star:hover {
	cursor: pointer;
}

.rating span.star:before,
.rating span.star:before {
	content: "\f006";
	padding-right: 5px;
	color: #BEC3C7;
}

.rating span.star:hover:before,
.rating span.star:hover:before,
.rating span.star:hover~span.star:before,
.rating span.star:hover~span.star:before {
	content: "\f005";
	color: #65CEA7;
}

.slider-table tr td {
	padding: 30px 0 !important;
	border: none !important;
}

.panel-heading .nav {
	border: medium none;
	font-size: 13px;
	margin: -15px -15px -15px;
}

.panel-heading.custom-tab {
	padding: 8px 15px;
}

.custom-tab ul>li>a {
	display: block;
	padding: 20px 15px !important;
}

.custom-tab {
	background: #e0e1e7 !important;
	border-radius: 5px 5px 0 0;
	-webkit-border-radius: 5px 5px 0 0;
	border-bottom: none;
}

.custom-tab.dark-tab {
	background: #424F63 !important;
}

.custom-tab.turquoise-tab {
	background: #65CEA7 !important;
}

.custom-tab.blue-tab {
	background: #5BC0DE !important;
}

.custom-tab.yellow-tab {
	background: #F0AD4E !important;
}

.custom-tab.dark-tab li a,
.custom-tab.turquoise-tab li a,
.custom-tab.blue-tab li a,
.custom-tab.yellow-tab li a {
	color: #fff !important;
}

.custom-tab.dark-tab li.active a,
.custom-tab.dark-tab li a:hover {
	color: #424F63 !important;
}

.custom-tab.turquoise-tab li a:hover,
.custom-tab.turquoise-tab li.active a {
	color: #65CEA7 !important;
}

.custom-tab.blue-tab li a:hover,
.custom-tab.blue-tab li.active a {
	color: #5BC0DE !important;
}

.custom-tab.yellow-tab li a:hover,
.custom-tab.yellow-tab li.active a {
	color: #F0AD4E !important;
}

.custom-tab li a:hover,
.custom-tab li.active a {
	border-radius: 0 !important;
	background: #fff !important;
	color: #65CEA7 !important;
}

.panel-heading .nav>li>a,
.panel-heading .nav>li.active>a,
.panel-heading .nav>li.active>a:hover,
.panel-heading .nav>li.active>a:focus {
	border-width: 0;
	border-radius: 0;
}

.panel-heading .nav>li>a {
	color: #898989;
}

.panel-heading .nav>li.active>a,
.panel-heading .nav>li>a:hover {
	color: #65CEA7;
	background: #fff;
}

.panel-heading .nav>li:first-child.active>a,
.panel-heading .nav>li:first-child>a:hover {
	border-radius: 4px 0 0 0 !important;
	-webkit-border-radius: 4px 0 0 0 !important;
}

.tab-right {
	height: 45px;
}

.panel-heading.tab-right .nav>li:first-child.active>a,
.tab-right.panel-heading .nav>li:first-child>a:hover {
	border-radius: 0 !important;
	-webkit-border-radius: 0 !important;
}

.panel-heading.tab-right .nav>li:last-child.active>a,
.tab-right.panel-heading .nav>li:last-child>a:hover {
	border-radius: 0 4px 0 0 !important;
	-webkit-border-radius: 0 4px 0 0 !important;
}

.panel-heading.tab-right .nav-tabs>li>a {
	margin-left: 1px;
	margin-right: 0px;
}

.panel-heading.dark {
	background: #353F4F;
	color: #fff;
}

.panel-heading.dark a:hover,
.panel-heading.dark a:focus {
	color: #fff;
}

.has-toolbar.fc {
	margin-top: 50px;
}

.fc-header-title {
	display: inline-block;
	margin-top: -45px;
	vertical-align: top;
}

.fc-header-center {
	text-align: left;
}

.fc-header-left {
	text-align: left;
	width: 18%;
}

.fc-view {
	margin-top: -50px;
	overflow: hidden;
	width: 100%;
}

.fc-state-default,
.fc-state-default .fc-button-inner {
	background: #fff !important;
	border-color: #DDDDDD;
	border-style: none solid;
	color: #646464;
}

.fc-state-active,
.fc-state-active .fc-button-inner,
.fc-state-active,
.fc-button-today .fc-button-inner,
.fc-state-hover,
.fc-state-hover .fc-button-inner {
	background: #65CEA7 !important;
	color: #fff !important;
}

.fc-event-skin {
	background-color: #5d708c !important;
	border-color: #5d708c !important;
	color: #FFFFFF !important;
}

.fc-grid th {
	height: 45px;
	line-height: 45px;
	text-align: center;
	background: #65CEA7 !important;
	color: #fff;
	text-transform: uppercase;
}

.fc-widget-header {
	border-color: #62c6a0;
}

.fc-widget-content {
	border-color: #ebebeb;
	background: #fff;
}

.fc-header-title h2 {
	font-size: 18px !important;
	color: #474752;
	font-weight: 300;
	padding: 0 10px;
}

.external-event {
	cursor: move;
	display: inline-block !important;
	margin-bottom: 6px !important;
	margin-right: 6px !important;
	padding: 8px;
}

#external-events p input[type="checkbox"] {
	margin: 0;
}

#external-events .external-event {
	font-size: 11px;
	font-family: 'Arial';
	font-weight: normal;
}

.drg-event-title {
	font-weight: 300;
	margin-top: 0;
	margin-bottom: 15px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 10px;
}

.fc-content .fc-event {
	border-radius: 4px;
	-webkit-border-radius: 4px;
	padding: 4px 6px;
}

.drp-rmv {
	padding-top: 10px;
	margin-top: 10px;
}

.fontawesome-icon-list {
	margin-top: -20px;
}

.fontawesome-icon-list,
.fontawesome-icon-list a {
	color: #7a7676;
}

.fontawesome-icon-list a:hover {
	color: #49586E;
}

.fontawesome-icon-list a {
	margin-bottom: 10px;
	display: block;
}

.fontawesome-icon-list a i {
	padding-right: 10px;
}

.fontawesome-icon-list .page-header {
	margin: 15px 0 20px 0;
	font-size: 22px;
	color: #49586E;
}

.general-table a {
	color: #49586E;
}

.table-advance tr td {
	vertical-align: middle !important;
}

.no-border {
	border-bottom: none;
}

.dataTables_length,
.dataTables_filter {
	padding: 15px 0;
}

.dataTables_info {
	padding: 15px 0 0 !important;
}

.dataTables_filter {
	float: right;
}

.dataTables_length select {
	width: 65px;
	padding: 5px 8px;
}

.dataTables_length label,
.dataTables_filter label {
	font-weight: 300;
}

.dataTables_filter label {
	width: 100%;
}

.dataTables_filter label input {
	width: 78%;
}

.border-top {
	border-top: 1px solid #ddd;
}

.dataTables_paginate.paging_bootstrap.pagination li {
	float: left;
	margin: 0 1px;
	border: 1px solid #ddd;
	list-style: none;
}

.dataTables_paginate.paging_bootstrap.pagination li.disabled a {
	color: #c7c7c7;
}

.dataTables_paginate.paging_bootstrap.pagination li a {
	color: #797979;
	padding: 5px 10px;
	display: inline-block;
}

.dataTables_paginate.paging_bootstrap.pagination li:hover a,
.dataTables_paginate.paging_bootstrap.pagination li.active a {
	color: #fff;
	background: #65cea7;
	text-decoration: none;
}

.dataTables_paginate.paging_bootstrap.pagination li:hover,
.dataTables_paginate.paging_bootstrap.pagination li.active {
	border-color: #65cea7;
}

.dataTables_paginate.paging_bootstrap.pagination li.disabled:hover,
.dataTables_paginate.paging_bootstrap.pagination li.disabled:hover a {
	color: #C7C7C7;
	background: #fff;
	border-color: #DDDDDD;
	cursor: no-drop;
}

.dataTables_paginate.paging_bootstrap.pagination {
	float: right;
	margin-bottom: 15px;
}

.dataTable tr:last-child {
	border-bottom: 1px solid #ddd;
}

.general-table .progress {
	margin-bottom: 0;
}

.adv-table table tr td {
	padding: 10px;
}

.adv-table table.display thead th {
	border-bottom: 1px solid #DDDDDD;
	padding: 10px;
}

.dataTable tr.odd.gradeA td.sorting_1,
.dataTable tr.odd td.sorting_1,
.dataTable tr.even.gradeA td.sorting_1 {
	background: none;
}

.dataTable td.details {
	background-color: #424F63;
	color: #fff;
}

.dataTable td.details table tr td,
.dataTable tr:last-child {
	border: none;
}

.adv-table table.display tr.odd.gradeA {
	background-color: #F9F9F9;
}

.adv-table table.display tr.even.gradeA {
	background-color: #FFFFFF;
}

.adv-table .dataTables_filter label input {
	float: right;
	margin-left: 10px;
	width: 78%;
}

.adv-table .dataTables_filter label {
	line-height: 33px;
	width: 100%;
}

.adv-table .dataTables_length select {
	display: inline-block;
	margin: 0 10px 0 0;
	padding: 5px 8px;
	width: 65px;
}

.adv-table .dataTables_info,
.dataTables_paginate {
	padding: 15px 0;
}

.adv-table .dataTables_length,
.adv-table .dataTables_filter {
	padding: 15px 0;
}

.cke_chrome {
	border: none !important;
}

.editable-table .dataTables_filter {
	width: 80%;
}

.dataTable tr.odd.gradeX td.sorting_1,
.dataTable tr.even.gradeX td.sorting_1,
table.display tr.even.gradeX,
table.display tr.gradeX,
tr.even.gradeU td.sorting_1,
tr.even td.sorting_1,
table.display tr.even.gradeC,
table.display tr.gradeC,
tr.odd.gradeC td.sorting_1,
table.display tr.even.gradeU,
table.display tr.gradeU,
tr.odd.gradeU td.sorting_1 {
	background: none !important;
}

.editable-table table input {
	width: 95% !important;
}

.editable-table table td a {
	color: #49586E;
}

.editable-table table td a:hover {
	color: #65CEA7;
}

.media-filter {
	float: left;
	margin: 10px 0;
	padding-left: 0;
}

.media-filter li {
	float: left;
	margin-right: 2px;
	list-style: none;
}

.media-filter li a {
	background: #65CEA7;
	border-color: #65CEA7;
	color: #fff;
	padding: 5px 10px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
	text-decoration: none;
	font-size: 12px;
}

.media-filter li a:hover,
.media-filter li a:focus {
	background: #4c9b7e;
	border-color: #4c9b7e;
	color: #fff;
}

.media-gal {
	float: left;
	width: 100%;
	margin-top: 20px;
}

.media-gal .item {
	float: left;
}

.media-gal .item {
	margin-bottom: 1%;
	margin-right: 1%;
	width: 233px;
	background: #EFF0F4;
	color: #7A7676;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.media-gal .item:hover {
	background: #65CEA7;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	color: #fff;
}

.media-gal .item:hover img {
	opacity: .3;
}

.media-gal .item p {
	margin-bottom: 10px;
	margin-top: 10px;
	text-align: center;
}

.media-gal .item img {
	height: 200px;
	width: 100%;
}

.img-modal img {
	width: 100%;
	margin-bottom: 10px;
}

.isotope-item {
	z-index: 2;
}

.isotope-hidden.isotope-item {
	pointer-events: none;
	z-index: 1;
}

.isotope,
.isotope .isotope-item {
	-webkit-transition-duration: 0.8s;
	-moz-transition-duration: 0.8s;
	-ms-transition-duration: 0.8s;
	-o-transition-duration: 0.8s;
	transition-duration: 0.8s;
}

.isotope {
	-webkit-transition-property: height, width;
	-moz-transition-property: height, width;
	-ms-transition-property: height, width;
	-o-transition-property: height, width;
	transition-property: height, width;
}

.isotope .isotope-item {
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform, opacity;
	-ms-transition-property: -ms-transform, opacity;
	-o-transition-property: -o-transform, opacity;
	transition-property: transform, opacity;
}

.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
	-webkit-transition-duration: 0s;
	-moz-transition-duration: 0s;
	-ms-transition-duration: 0s;
	-o-transition-duration: 0s;
	transition-duration: 0s;
}

.isotope.infinite-scrolling {
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
	transition: none;
}

.sm-input {
	width: 170px !important;
}

.form-horizontal.adminex-form .form-group {
	border-bottom: 1px solid #eff2f7;
	padding-bottom: 15px;
	margin-bottom: 15px;
}

.form-horizontal.adminex-form .form-group:last-child {
	border-bottom: none;
	padding-bottom: 0px;
	margin-bottom: 0px;
}

.form-horizontal.adminex-form .form-group .help-block {
	margin-bottom: 0;
}

.round-input {
	border-radius: 500px;
	-webkit-border-radius: 500px;
}

.m-bot15 {
	margin-bottom: 15px;
}

.form-horizontal.adminex-form .checkbox-inline>input {
	margin-top: 1px;
	border: none;
}

.iconic-input {
	position: relative;
}

.iconic-input i {
	color: #CCCCCC;
	display: block;
	font-size: 16px;
	height: 16px;
	margin: 8px 5px 8px 10px;
	position: absolute;
	text-align: center;
	width: 16px;
}

.iconic-input input {
	padding-left: 30px !important;
}

.iconic-input.right input {
	padding-left: 10px !important;
	padding-right: 30px !important;
}

.iconic-input.right i {
	float: right;
	right: 5px;
}

input.spinner[type="text"],
input.spinner[type="password"],
input.spinner[type="datetime"],
input.spinner[type="datetime-local"],
input.spinner[type="date"],
input.spinner[type="month"],
input.spinner[type="time"],
input.spinner[type="week"],
input.spinner[type="number"],
input.spinner[type="email"],
input.spinner[type="url"],
input.spinner[type="search"],
input.spinner[type="tel"],
input.spinner[type="color"] {
	background: url("../images/input-spinner.gif") right no-repeat !important;
}

.cke_chrome {
	box-shadow: 0 0 1px #c5c6ca !important;
}

.cke_top,
.cke_bottom {
	background: #EFF0F4 !important;
	box-shadow: none !important;
	border-top: none !important;
	border-bottom: none !important;
}

.cmxform .form-group label.error {
	display: inline;
	margin: 5px 0;
	color: #FF6C60;
	font-weight: 400;
}

input:focus:invalid:focus,
textarea:focus:invalid:focus,
select:focus:invalid:focus,
.cmxform .form-group input.error,
.cmxform .form-group textarea.error {
	border-color: #FF6C60 !important;
}

#signupForm label.error {
	display: inline;
	margin: 5px 0px;
	width: auto;
	color: #FF6C60;
}

.checkbox,
.checkbox:hover,
.checkbox:focus {
	border: none;
}

.widget-container .stepy-tab ul,
.block-tabby ul.stepy-titles {
	border-bottom: none;
	padding: 0;
}

.fw-title {
	color: #424F63;
	margin-bottom: 30px;
}

.block-tabby ul.stepy-titles {
	margin-bottom: 10px;
}

.widget-container .stepy-tab ul li.current-step,
.block-tabby ul li.current-step {
	border: none;
	background: #65CEA7 !important;
	color: #fff;
}

.widget-container .stepy-titles li,
.stepy-titles li {
	background: #fff;
	margin-right: 15px;
	margin-bottom: 15px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
}

.widget-container .stepy-titles li span {
	font-size: 12px;
}

.widget-container .step {
	margin-bottom: 50px;
	border-bottom: 1px solid #ddd;
	padding-bottom: 50px;
}

.widget-container .step legend {
	color: #65CEA7;
	font-size: 16px;
	border-bottom: 1px dotted #ddd;
	padding-bottom: 10px;
}

.widget-container input.form-control {
	padding: 0 10px;
}

.stepy-error {
	position: absolute;
	bottom: 105px;
}

.stepy-error label.error {
	font-size: 12px;
	font-weight: normal;
}

.step input,
.step textarea,
.step select,
.widget-content label.checkbox,
.widget-content label.radio {
	margin-left: 0 !important;
	padding-left: 0;
}

.widget-content label.checkbox input,
.widget-content label.radio input {
	margin-right: 10px;
}

.icheck div,
.icheck .disabled {
	float: left;
}

.icheck div {
	margin-right: 10px;
}

.icheck label {
	font-weight: normal;
}

.icheck .checkbox,
.icheck .radio {
	margin-bottom: 10px;
}

.icheck .single-row {
	display: inline-block;
	width: 100%;
}

.ms-container .ms-selectable li.ms-hover,
.ms-container .ms-selection li.ms-hover {
	background-color: #65CEA7;
	color: #FFFFFF;
	cursor: pointer;
	text-decoration: none;
}

.ms-container .ms-list,
.ms-container .ms-list.ms-focus {
	box-shadow: none !important;
}

.ms-container .ms-list.ms-focus {
	border: 1px solid #65CEA7;
}

.ms-selectable .search-input,
.ms-selection .search-input {
	margin-bottom: 10px;
}

.spinner-buttons.input-group-btn {
	width: 20%;
}

.spinner-buttons.input-group-btn .btn-xs {
	line-height: 1.16;
}

.spinner-buttons.btn-group-vertical>.btn:last-child:not(:first-child) {
	border-radius: 0 0 4px 0;
	-webkit-border-radius: 0 0 4px 0;
}

.spinner-buttons.btn-group-vertical>.btn:first-child:not(:last-child) {
	border-radius: 0 4px 0 0;
	-webkit-border-radius: 0 4px 0 0;
}

.fileupload .btn {
	margin-left: 0;
}

div.tagsinput span.tag {
	background: #65CEA7 !important;
	border-color: #65CEA7;
	color: #fff;
	border-radius: 15px;
	-webkit-border-radius: 15px;
	padding: 2px 10px;
}

div.tagsinput span.tag a {
	color: #43886e;
}

.slide-toggle div {
	float: left;
	margin-right: 20px;
}

.add-on {
	float: right;
	margin-top: -37px;
	padding: 3px;
	text-align: center;
}

.add-on .btn {
	padding: 9px;
}

.colorpicker.dropdown-menu {
	min-width: 130px;
	padding: 5px;
}

.datepicker.dropdown-menu {
	z-index: 1060;
	padding: 5px;
}

.custom-date-range .input-group-addon {
	border-left: 1px solid #EEEEEE;
	border-right: 1px solid #EEEEEE;
}

.gmaps {
	height: 350px;
	width: 100%;
}

.vmaps {
	width: 100%;
	height: 400px;
}

.lock-screen {
	background: #6fc4a5 url("../images/lockscreen-bg.jpg") no-repeat fixed;
	background-size: cover;
	width: 100%;
	height: 100%;
}

.lock-wrapper {
	margin: 18% auto;
	max-width: 400px;
}

.lock-box {
	padding: 20px;
	position: relative;
	width: 100%;
	display: inline-block;
}

.lock-wrapper img {
	position: absolute;
	left: 36%;
	top: -80px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	border: 6px solid #fff;
}

.lock-wrapper h1 {
	text-align: center;
	color: #6bc5a4;
	font-size: 18px;
	text-transform: uppercase;
	padding: 10px 0 10px;
}

.lock-wrapper .locked {
	position: absolute;
	width: 50px;
	height: 50px;
	line-height: 36px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	display: inline-block;
	color: #fff;
	text-align: center;
	background: #6bc5a4;
	top: -25px;
	right: 125px;
	border: 4px solid #fff;
	font-size: 22px;
}

.lock-wrapper input,
.lock-wrapper input:focus {
	background: #eaeaec;
	border-color: #eaeaec;
	width: 86% !important;
	height: 40px;
	float: left;
}

.btn-lock {
	background: #6bc5a4;
	color: #fff;
	height: 40px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.btn-lock:hover {
	background: #688ac2;
	color: #fff;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.price-head {
	padding: 10px 0 50px;
}

.price-head h1 {
	font-size: 32px;
	font-weight: normal;
	color: #49586e;
}

.pricing-table {
	background: #fff;
	text-align: center;
	padding: 0 0 25px 0;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 0 5px 0 #e5e5e5;
	width: 110%;
	margin-left: -10px;
}

.pricing-table.most-popular {
	position: relative;
}

.most-popular {
	background: #6bc5a4;
	color: #fff;
	box-shadow: 0 5px 0 #60b193;
}

.most-popular .pricing-head {
	position: relative;
	height: 170px;
}

.most-popular .pricing-head h1 {
	color: #fff;
}

.most-popular .pricing-quote,
.most-popular ul li i {
	color: #6bc5a4;
}

.most-popular .price-actions .btn {
	background: #60b193 !important;
	cursor: pointer;
	color: #fff !important;
}

.most-popular .pricing-quote {
	background: #fff;
}

.pricing-table .price-actions .btn {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	background: #eff0f4;
	color: #a4a4a4;
	border: none;
	box-shadow: none;
	text-shadow: none;
	padding: 10px 20px;
	cursor: pointer;
	text-transform: uppercase;
}

.pricing-table .price-actions .btn:hover,
.most-popular.pricing-table .price-actions .btn:hover {
	background: #49586e !important;
	color: #fff;
}

.pricing-head {
	position: relative;
	height: 170px;
	color: #2a323f;
}

.pricing-head h1 {
	font-size: 24px;
	font-weight: 300;
	padding-top: 30px;
	color: #2a323f;
	text-transform: uppercase;
}

.pricing-quote {
	background: #eff0f4;
	padding: 50px 0;
	color: #49586e;
	font-size: 45px;
	font-weight: bold;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	margin: -85px auto;
	position: relative;
}

.pricing-table ul {
	margin: 120px 0 50px;
	padding: 0;
}

.pricing-table ul li {
	margin: 0 2em;
	padding: 1em 0;
	text-align: center;
	font-weight: 300;
}

.pricing-quote span.note {
	display: inline;
	font-size: 18px;
	line-height: 0.8em;
	position: relative;
	top: -18px;
}

.pricing-quote p {
	font-size: 12px;
	text-transform: uppercase;
	color: #a4a4a4;
	padding-top: 10px;
	font-weight: normal;
}

.pricing-quotation,
.team-info {
	background: #EEEEEE;
	padding: 20px 20px 35px 20px;
	margin-bottom: 100px;
	display: inline-block;
	width: 100%;
	text-align: center;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}

.pricing-quotation h3,
.team-info h3 {
	font-weight: 300;
}

.pricing-quotation p,
.team-info p {
	margin-bottom: 0px;
}

.pricing-plan,
.team-info-wrap {
	position: relative;
}

.invoice-title {
	color: #6bc5a4;
	font-size: 48px;
	text-transform: uppercase;
	margin-top: 30px;
}

.invoice {
	color: #a4a4a4;
}

.inv-logo {
	margin-bottom: 10px;
}

.invoice-address {
	background: #f7f7f9;
	padding: 20px;
	margin-top: 10px;
	margin-left: -15px;
	margin-right: -15px;
}

.inv-col {
	margin-bottom: 5px;
}

.inv-col span {
	color: #6bc5a4;
}

.t-due,
.inv-label {
	font-size: 22px;
	color: #6bc5a4;
}

.inv-label {
	font-style: italic;
}

.amnt-value {
	color: #a4a4a4;
	font-size: 24px;
	margin-top: 10px;
	font-weight: bold;
}

.inv-to {
	text-transform: uppercase;
	font-size: 14px;
}

.corporate-id {
	font-weight: bold;
	font-size: 16px;
	color: #2a323f;
	margin-top: 5px;
	text-transform: uppercase;
}

.table-invoice {
	border-top: none !important;
	margin-top: -15px;
}

.table-invoice thead {
	background: #2a323f;
	color: #fff;
}

.table-invoice th {
	border-bottom: none !important;
	padding: 20px 10px !important;
	border-color: #2a323f !important;
}

.table-invoice th:first-child,
.table-invoice td:first-child {
	text-align: center;
}

.table-invoice td {
	vertical-align: middle !important;
}

.table-invoice h4 {
	color: #2a323f;
	font-size: 14px;
	font-weight: bold;
	margin: 0 0 5px 0;
}

.table-invoice strong {
	color: #2a323f;
}

.payment-method p {
	margin-bottom: 0;
}

.print-body {
	background: #eff0f4;
}

.error-page {
	background: #6bc5a4;
}

.error-wrapper {
	margin-top: 15%;
}

.error-wrapper h2 {
	font-size: 64px;
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
}

.error-wrapper h3 {
	font-size: 32px;
	color: #474747;
	text-transform: uppercase;
	font-weight: bold;
	line-height: 30px;
	margin-top: 0;
}

.error-wrapper .nrml-txt {
	font-size: 18px;
	color: #474747;
	font-weight: normal;
	line-height: 30px;
}

.error-wrapper .nrml-txt a {
	color: #a7ffdf;
}

.error-wrapper .back-btn {
	color: #fff;
	border: 1px solid #fff;
	padding: 15px 30px;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	text-decoration: none;
	display: inline-block;
	margin-bottom: 20px;
	margin-top: 50px;
}

.error-wrapper .back-btn:hover {
	background: #fff;
	color: #6bc5a4;
	border-color: #fff;
}

.timeline {
	border-collapse: collapse;
	border-spacing: 0;
	display: table;
	position: relative;
	table-layout: fixed;
	width: 100%;
	margin-bottom: 50px;
}

.timeline .time-show {
	margin-right: -75px;
	margin-top: 30px;
	position: relative;
	margin-bottom: 30px;
}

.time-show .btn {
	width: 150px;
}

.timeline .time-show a {
	color: #fff;
}

.timeline:before {
	background-color: #d8d9df;
	bottom: 0px;
	content: "";
	left: 50%;
	position: absolute;
	top: 30px;
	width: 1px;
	z-index: 0;
}

h3.timeline-title {
	margin: 0;
	color: #C8CCD7;
	font-size: 20px;
	font-weight: 400;
	margin: 0 0 5px;
	text-transform: uppercase;
}

.t-info {
	color: #C8CCD7;
}

.timeline-item:before,
.timeline-item.alt:after {
	content: "";
	display: block;
	width: 50%;
}

.timeline-item {
	display: table-row;
}

.timeline-desk {
	display: table-cell;
	vertical-align: top;
	width: 50%;
}

.timeline-desk h1 {
	font-size: 16px;
	font-weight: 300;
	margin: 0 0 5px;
}

.timeline-desk .panel {
	display: block;
	margin-left: 45px;
	position: relative;
	text-align: left;
	background: #fff;
}

.timeline-item .timeline-desk .arrow {
	border-bottom: 8px solid transparent;
	border-top: 8px solid transparent;
	display: block;
	height: 0;
	left: -7px;
	position: absolute;
	top: 50%;
	margin-top: -10px;
	width: 0;
}

.timeline-item .timeline-desk .arrow {
	border-right: 8px solid #fff !important;
}

.timeline-item.alt .timeline-desk .arrow-alt {
	border-bottom: 8px solid transparent;
	border-top: 8px solid transparent;
	display: block;
	height: 0;
	right: -7px;
	position: absolute;
	top: 50%;
	margin-top: -10px;
	width: 0;
	left: auto;
}

.timeline-item.alt .timeline-desk .arrow-alt {
	border-left: 8px solid #fff !important;
}

.timeline .timeline-icon {
	left: -54px;
	position: absolute;
	top: 50%;
	margin-top: -10px;
}

.timeline .timeline-icon {
	background: #fff;
	border: 1px solid #D8D9DF
}

.timeline-desk span a {
	text-transform: uppercase;
}

.timeline-desk h1.red,
.timeline-desk span a.red {
	color: #EF6F66;
}

.timeline-desk h1.green,
.timeline-desk span a.green {
	color: #39B6AE;
}

.timeline-desk h1.blue,
.timeline-desk span a.blue {
	color: #56C9F5;
}

.timeline-desk h1.purple,
.timeline-desk span a.purple {
	color: #8074C6;
}

.timeline-desk h1.light-green,
.timeline-desk span a.light-green {
	color: #A8D76F;
}

.timeline-desk h1.yellow,
.timeline-desk span a.yellow {
	color: #fed65a;
}

.timeline .timeline-icon {
	border-radius: 50%;
	-webkit-border-radius: 50%;
	display: block;
	height: 20px;
	width: 20px;
	text-align: center;
	color: #fff;
}

.timeline .timeline-icon i {
	margin-top: 9px;
}

.timeline-item.alt .timeline-icon {
	left: auto;
	right: -56px;
}

.timeline .time-icon:before {
	font-size: 16px;
	margin-top: 5px;
}

.timeline .timeline-date {
	left: -245px;
	position: absolute;
	text-align: right;
	top: 12px;
	width: 150px;
	display: none;
}

.timeline-item.alt .timeline-date {
	left: auto;
	right: -245px;
	text-align: left;
	display: none;
}

.timeline-desk h5 span {
	color: #999999;
	display: block;
	font-size: 12px;
	margin-bottom: 4px;
}

.timeline-item.alt:before {
	display: none;
}

.timeline-item:before,
.timeline-item.alt:after {
	content: "";
	display: block;
	width: 50%;
}

.timeline-desk p {
	font-size: 14px;
	margin-bottom: 0;
	color: #999;
}

.timeline-desk a {
	color: #1fb5ad;
}

.timeline-desk .panel {
	margin-bottom: 5px;
}

.timeline-desk .album {
	margin-top: 20px;
}

.timeline-item.alt .timeline-desk .album {
	margin-top: 20px;
	float: right;
}

.timeline-desk .album a {
	margin-right: 5px;
	float: left;
}

.timeline-item.alt .timeline-desk .album a {
	margin-left: 5px;
	float: right;
}

.timeline-desk .notification {
	background: none repeat scroll 0 0 #FFFFFF;
	margin-top: 20px;
	padding: 8px;
}

.timeline-item.alt .panel {
	margin-left: 0;
	margin-right: 45px;
}

.mbot30 {
	margin-bottom: 30px;
}

.timeline-item.alt h1,
.timeline-item.alt p {
	text-align: right;
}

.profile-pic img {
	border: 5px solid #F1F2F7;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	height: 150px;
	margin: 10px 0;
	width: 150px;
}

.profile-desk h1 {
	color: #49586e;
	font-size: 24px;
	font-weight: bold;
	margin: 0 0 5px 0;
	text-transform: uppercase;
}

.profile-desk .designation {
	color: #49586e;
	font-size: 14px;
	text-transform: uppercase;
	margin-bottom: 30px;
	display: inline-block;
}

.profile-desk p {
	line-height: 25px;
	margin-bottom: 40px;
}

.p-follow-btn {
	background: #eff0f4;
	color: #a4a4a4
}

.p-follow-btn:hover,
.btn-post {
	background: #ca161d;
	color: #fff
}

.btn-post:hover {
	background: #2a323f;
	color: #fff
}

ul.p-social-link {
	list-style-type: none;
}

ul.p-social-link li {
	display: inline-block;
}

ul.p-social-link li a {
	background: #eff0f4;
	color: #bfbfc1;
	width: 30px;
	height: 30px;
	line-height: 30px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	display: inline-block;
	text-align: center;
}

ul.p-social-link li a:hover,
ul.p-social-link li.active a {
	color: #ca161d;
}

.p-text-area,
.p-text-area:focus {
	border: medium none;
	box-shadow: none;
	color: #C3C3C3;
	font-size: 16px;
	font-weight: 300;
}

.p-option li a {
	color: #adadad;
	font-size: 15px;
}

.p-option li a:hover {
	background: #ca161d;
	color: #fff;
}

ul.p-info {
	list-style-type: none;
	padding: 0;
	margin-bottom: 0;
}

ul.p-info li {
	display: inline-block;
	width: 100%;
	margin-bottom: 10px;
}

ul.p-info li:last-child {
	margin-bottom: 0;
}

ul.p-info .title,
ul.p-info .desk {
	float: left;
}

ul.p-info .title {
	width: 40%;
}

ul.p-info .desk {
	width: 60%;
	color: #ca161d;
}

.p-states h4 {
	color: #535351;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	margin: 0;
}

.p-states h4 span {
	color: #bfbfbf;
}

.p-states h3 {
	color: #2a323f;
	font-size: 25px;
	margin: 10px 0 0 0;
}

.p-states .chart-bar {
	margin-top: 20px;
}

.p-states.green-box {
	background: #6bc5a4;
	color: #fff;
	border-radius: 4px;
	-webkit-border-radius: 4px;
}

.p-states.green-box h4,
.p-states.green-box h4 span,
.p-states.green-box h3 {
	color: #fff;
}

ul.activity-list {
	list-style-type: none;
	padding: 0;
}

ul.activity-list li {
	display: inline-block;
	width: 100%;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eff0f4;
}

ul.activity-list .avatar img {
	float: left;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
}

ul.activity-list .activity-desk {
	margin-left: 70px;
}

ul.activity-list .activity-desk h5 {
	color: #2a323f;
}

ul.activity-list .activity-desk h5 a {
	font-weight: bold;
}

.activity-desk .album a {
	float: left;
	margin-right: 10px;
	width: 170px;
	height: 110px;
	overflow: hidden;
	margin-bottom: 10px;
}

.activity-desk .album a img {
	width: 100%;
}

#map-canvas {
	height: 200px;
	width: 100%;
}

.revenue-graph {
	height: 220px;
}

.event-calendar {
	background: #1fb5ac;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
	min-height: 474px;
}

.calendar-block {
	float: right !important;
	-webkit-border-radius: 0 5px 5px 0px;
	-moz-border-radius: 0 5px 5px 0px;
	border-radius: 0 5px 5px 0px;
	background: #fff;
	z-index: 1000;
}

.event-list-block {
	-webkit-border-radius: 5px 0px 0px 5px;
	-moz-border-radius: 5px 0px 0px 5px;
	border-radius: 5px 0px 0px 5px;
}

.calendar-block .day-contents {
	width: 30px;
	margin: auto;
}

.today .day-contents {
	width: 30px;
	background: #1fb0ab;
	cursor: pointer;
	color: #fff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.calendar-block .day-contents:hover {
	width: 30px;
	background: #1fb0ab;
	cursor: pointer;
	color: #fff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.cal1 .clndr .clndr-controls {
	-webkit-border-radius: 5px 5px 0px 0px;
	-moz-border-radius: 5px 5px 0px 0px;
	border-radius: 5px 5px 0px 0px;
	display: block !important;
	position: relative;
	margin-bottom: 10px;
	text-align: center;
	background: #51d4cc;
	margin-left: -15px;
	margin-right: -15px;
	margin-top: -15px;
	padding: 56px 20px;
	width: auto !important;
	color: #fff;
}

.cal1 .clndr .clndr-controls .month span {
	display: block;
	font-size: 30px;
	padding: 0px 10px;
	margin-bottom: 10px;
}

.cal1 .clndr .clndr-controls .month {
	color: #fff;
}

.cal1 .clndr .clndr-controls .clndr-control-button .clndr-next-button,
.cal1 .clndr .clndr-controls .clndr-control-button .clndr-previous-button {
	color: #fff;
}

.cal1 .clndr .clndr-controls .clndr-control-button .clndr-next-button:hover,
.cal1 .clndr .clndr-controls .clndr-control-button .clndr-previous-button:hover {
	background: #f4f4f4;
	padding: 5px 10px;
	color: #1fb0ab;
}

.clndr-previous-button {
	position: relative;
	top: -30px;
}

.clndr-next-button {
	position: relative;
	top: -30px;
}

#flotTip {
	background: rgba(000, 000, 000, .7);
	padding: 5px 10px;
	color: #fff;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

#main-chart-legend {
	padding: 2px 0px;
}

#main-chart-legend td {
	padding-right: 10px;
}

.main-chart {
	width: 100%;
	height: 300px;
	text-align: center;
	margin: 0 auto;
}

.mail-box {
	border-spacing: 0;
	display: table;
	table-layout: fixed;
	width: 100%;
	height: 100%;
}

.mail-box>aside,
.mail-box>section {
	display: table-cell;
	float: none;
	height: 100%;
	vertical-align: top;
}

.mail-nav {
	display: table-cell;
	float: none;
	height: 100%;
	vertical-align: top;
	width: 240px;
}

.mail-nav-bg-color {
	background: #d1d5e1;
	background: #454545;
}

.mail-box-info {
	background: #fff;
	padding: 15px;
}

.mail-nav h4 {
	margin: 0;
	padding: 15px;
	background: #cb161d;
	color: #fff;
}

.mail-nav-body {
	padding: 15px;
}

.mail-nav footer {
	background: #4c4c4c;
	border-top: none;
	margin-top: 20px;
}

.mail-nav footer .btn {
	border: none;
}

a.btn-compose {
	background: #65CEA7;
	color: #fff;
	width: 100%;
	margin: 10px 0;
}

a:hover.btn-compose {
	background: #52a888;
	color: #fff;
}

.mail-navigation {
	margin-top: 15px;
}

.mail-navigation li a i {
	padding-right: 10px;
}

.mail-navigation li a {
	color: #5c6e8a;
	color: #fff;
}

.mail-navigation li a:hover {
	color: #fff;
}

.mail-navigation>li.active>a,
.mail-navigation>li.active>a:hover,
.mail-navigation>li.active>a:focus {
	background: #fff;
	color: #3a3a3a;
}

ul.labels-info li h5 {
	color: #fff;
	background: #292929;
	font-size: 15px;
	margin: 10px -15px;
	padding: 15px;
	text-transform: uppercase;
}

ul.labels-info li a {
	border-radius: 0;
	color: #fbfbfb;
	padding-left: 0;
	padding-right: 0;
}

ul.labels-info li a i {
	padding-right: 10px;
}

.nav.nav-pills.nav-stacked.labels-info p {
	color: #ccc;
	font-size: 11px;
	margin-bottom: 0;
	padding: 0 22px;
}

ul.labels-info li a:hover,
ul.labels-info li a:focus {
	background: rgba(0, 0, 0, 0);
	color: #cb161d !important;
}

.mail-box-info {
	position: relative;
}

.mail-box-info .header {
	background: #4c4c4c;
	margin: -15px;
	padding: 10px 15px;
	color: #fff;
}

.mail-box-info .mail-list {
	margin-top: 30px;
}

.mail-box-info .mail-list li a {
	font-size: 13px;
	color: #535351;
	text-decoration: none;
}

.mail-box-info .mail-list li a:hover {
	color: #1b2128;
}

.mail-box-info .mail-list li a.thumb {
	width: 22px;
	margin-right: 10px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
}

.mail-box-info .mail-list li a.thumb img {
	height: auto;
	max-width: 100%;
}

.mail-box-info .mail-list li .chk {
	margin-right: 15px;
}

.mail-list {
	overflow-x: hidden;
	overflow-y: auto;
	height: 657px;
}

.mail-list .list-group-item {
	border-radius: 0;
	-webkit-border-radius: 0;
}

.mail-box-info header h4 {
	margin: 5px 0;
	color: #fff;
}

.compose-mail {
	width: 100%;
	display: inline-block;
	position: relative;
}

.compose-mail .compose-options {
	color: #979797;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
	position: absolute;
	right: 10px;
	top: 7px;
}

.compose-options a {
	color: #5C6E8A;
}

.compose-mail input,
.compose-mail input:focus {
	border: none;
	padding: 0;
	width: 80%;
	float: left;
}

.compose-mail .form-group {
	border: 1px solid #eaebee;
	display: inline-block;
	width: 100%;
	margin-bottom: 0;
}

.compose-mail .form-group label {
	line-height: 34px;
	width: 10%;
	float: left;
	padding-left: 10px;
	margin-bottom: 0;
	background: #eaebee;
	margin-right: 10px;
}

.compose-editor input {
	margin-top: 15px;
}

.compose-editor {
	margin-top: 35px;
	margin-bottom: 15px;
	display: inline-block;
	width: 100%;
}

.compose-btn {
	float: left;
}

.compose-editor textarea {
	border-color: #eaebee;
}

.mail-sender,
.attachment-mail {
	width: 100%;
	display: inline-block;
	margin: 0 0 20px 0;
	border-bottom: 1px solid #EFF2F7;
	padding: 10px 0;
}

.attachment-mail ul li .links a {
	font-size: 11px;
}

.mail-sender img {
	width: 30px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
}

.mail-sender .date {
	line-height: 30px;
	margin-bottom: 0;
	text-align: right;
}

.view-mail a,
.attachment-mail a:hover {
	color: #65CEA7;
}

.attachment-mail a {
	color: #5C6E8A;
}

.attachment-mail ul li {
	float: left;
	width: 100px;
	margin-right: 15px;
	margin-top: 15px;
	list-style: none;
}

.attachment-mail ul li a.atch-thumb img {
	width: 100px;
	height: auto;
	margin-bottom: 10px;
}

.attachment-mail ul li a.name span {
	float: right;
	color: #5C6E8A;
	font-size: 11px;
}

.blog h1 {
	font-size: 18px;
	text-transform: uppercase;
	color: #424242;
	font-weight: 400;
	margin: 0px 0 10px 0;
	line-height: 30px;
}

.blog h1 a {
	color: #424242;
}

.blog h1 a:hover,
.blog h1 a:focus,
.auth-row a:hover,
.auth-row a:hover {
	color: #65CEA7;
}

.blog .auth-row {
	color: #c8c8c8;
	font-weight: 300;
	padding-bottom: 20px;
	font-size: 14px;
}

.auth-row a {
	color: #C8C8C8;
}

.blog .blog-img-wide img {
	width: 100%;
	height: 350px;
	padding-bottom: 25px;
}

.blog-img-sm img {
	width: 100%;
	padding-bottom: 0;
}

.blog p {
	padding-bottom: 15px;
	font-size: 14px;
}

.blog a.more {
	margin-bottom: 10px;
	display: inline-block;
}

.blog .fa-quote-left {
	font-size: 20px;
	padding: 40px 0;
	color: #d3d3d3;
}

.blog-search,
.blog-search:focus {
	float: left;
	margin-right: 10px;
	background: #f1f1f1;
	border: none;
	height: 35px;
	box-shadow: none;
}

.btn-search,
.btn-search:hover,
.btn-search:focus {
	background: #65CEA7;
	color: #fff;
}

.blog-post h3 {
	font-size: 16px;
	text-transform: uppercase;
	color: #424242;
	font-weight: bold;
	padding-top: 0px;
	margin-top: 0;
}

.blog-post h5 a {
	color: #424242;
	text-transform: uppercase;
}

.blog-post h5 a:hover,
.blog-post h5 a:focus,
.blog-post ul li a:hover,
.blog-post ul li a:focus {
	color: #65CEA7;
}

.blog-post p {
	padding-bottom: 0;
}

.blog-post ul {
	padding-left: 0;
	margin-bottom: 0;
	list-style-type: none;
}

.blog-post ul li {
	line-height: 35px;
	color: #837f7e;
}

.blog-post ul li a {
	line-height: 35px;
	color: #837f7e;
}

.blog-post ul li i {
	padding-right: 10px;
}

.carousel-indicators li {
	border: none;
}

.carousel-indicators {
	margin-bottom: 10px;
}

blockquote {
	margin-left: 50px;
	color: #a1a1a1;
	font-style: italic;
}

blockquote p {
	line-height: 30px;
	padding-bottom: 0 !important;
}

.blog-tags {
	border-top: 1px solid #f1f1f1;
	margin: 30px 0 0 0;
	padding-top: 30px;
	display: inline-block;
	width: 100%;
}

.blog-tags a {
	background: #f1f1f1;
	color: #808086;
	padding: 5px 10px;
	margin-left: 8px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
}

.tag-social ul {
	background: #f1f1f1;
	height: 35px;
	padding-left: 0;
	margin-top: -5px;
	border-radius: 3px;
	position: relative;
	padding: 0 10px;
	list-style-type: none;
}

.tag-social ul:after {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(241, 241, 241, 0);
	border-left-color: #f1f1f1;
	border-width: 5px;
	margin-top: -5px;
}

.tag-social ul li {
	float: left;
}

.tag-social ul li a {
	margin-top: 3px;
	display: inline-block;
	margin-left: 0;
}

.tag-social ul li a:hover,
.blog-cmnt .media-heading a:hover,
.blog-tags a:hover {
	color: #65CEA7;
}

.blog-tags a.btn-share {
	background: #65CEA7;
	margin-top: -10px;
	padding: 10px;
	color: #fff;
	text-transform: uppercase;
}

ol.comment-list {
	list-style: none;
	padding-left: 0;
}

.blog-cmnt.media>.pull-left {
	margin-right: 30px;
}

.blog-cmnt .media-heading,
.blog-cmnt .media-heading a {
	color: #414147;
	font-size: 14px;
	text-transform: uppercase;
}

.blog-cmnt .media-object {
	width: 105px;
	height: 102px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
}

.blog-cmnt .media-object-child {
	width: 76px;
	height: 72px;
	border-radius: 3px;
	-webkit-border-radius: 3px;
}

.blog .blog-cmnt p {
	font-size: 15px;
	line-height: 25px;
	padding-top: 5px;
}

.mp-less {
	margin-bottom: 0 !important;
	padding-bottom: 0 !important;
}

.blog-cmnt .media-body span {
	color: #808086;
	padding-bottom: 20px;
	display: inline-block;
}

.bl-status {
	float: left;
	width: 100%;
}

.bl-status .reply {
	background: #f1f1f1;
	color: #808086;
	padding: 5px 10px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	margin-top: -5px;
}

.bl-status .reply:hover {
	background: #65CEA7;
	color: #fff;
}

.media,
.media .media {
	margin-top: 25px;
}

.cmnt-head {
	font-size: 24px !important;
}

.fade-txt {
	color: #adadad;
	font-size: 14px;
}

.leave-cmnt {
	width: 70%;
	margin: 20px auto;
}

.leave-cmnt input,
.leave-cmnt textarea,
.leave-cmnt input:focus,
.leave-cmnt textarea:focus {
	background: #f2f2f2;
	border: none;
	box-shadow: none;
}

.btn-post-cmnt {
	background: #65CEA7;
	color: #fff;
	text-transform: uppercase;
	font-size: 12px;
	padding: 12px 25px;
}

.btn-post-cmnt:hover {
	background: #414147;
	color: #fff;
}

.blog-pagination li a {
	background: #fff;
}

.blog .carousel-indicators.out {
	bottom: 15px;
}

.panel-title-m {
	margin-top: 0px;
}

.directory-list,
.directory-info-row .social-links {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.directory-list li {
	border-left: 1px solid #EFF0F4;
	display: table-cell;
	width: 1%;
}

.directory-list li a {
	display: block;
	padding: 8px 0;
	text-align: center;
	text-transform: uppercase;
	background: #fff;
	color: #7A7676;
	-moz-transition: all 0.2s ease-out 0s;
	-webkit-transition: all 0.2s ease-out 0s;
	transition: all 0.2s ease-out 0s;
	text-decoration: none;
}

.directory-list li a:hover,
.directory-info-row .social-links li a:hover {
	background: #65CEA7;
	color: #fff;
}

.directory-info-row {
	display: inline-block;
	width: 100%;
	margin-top: 20px;
}

.directory-info-row .social-links {
	display: inline-block;
	margin-top: 10px;
}

.directory-info-row .social-links li {
	display: inline-block;
}

.directory-info-row .social-links li a {
	background: #EFF0F4;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	display: inline-block;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	color: #7A7676;
}

.directory-info-row h4,
.directory-info-row a {
	color: #424F63;
}

.directory-info-row .thumb {
	border-radius: 50%;
	-webkit-border-radius: 50%;
	margin-right: 20px;
}

.chats {
	margin: 0;
	padding: 0;
	margin-top: -15px;
	margin-right: 10px;
}

.chats li {
	list-style: none;
	padding: 8px 0 5px;
	margin: 7px auto;
	font-size: 12px;
}

.chats li img.avatar {
	height: 45px;
	width: 45px;
	-webkit-border-radius: 50% !important;
	-moz-border-radius: 50% !important;
	border-radius: 50% !important;
}

.chats li.in img.avatar {
	float: left;
	margin-right: 10px;
	margin-top: 0px;
}

.chats li .name {
	font-size: 13px;
	font-weight: 400;
}

.chats li .datetime {
	color: #adadad;
	font-size: 13px;
	font-weight: 400;
}

.chats li.out img.avatar {
	float: right;
	margin-left: 10px;
	margin-top: 0px;
}

.chats li .message {
	display: block;
	padding: 5px;
	position: relative;
}

.chats li.in .message {
	text-align: left;
	margin-left: 65px;
}

.chats li.in .message .arrow {
	display: block;
	position: absolute;
	top: 15px;
	left: -8px;
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
}

.chats li.out .message .arrow {
	display: block;
	position: absolute;
	top: 15px;
	right: -8px;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 8px solid #EFF0F4;
}

.chats li.out .message {
	border-right: 2px solid #EFF0F4;
	margin-right: 65px;
	text-align: right;
}

.chats li.out .name,
.chats li.out .datetime {
	text-align: right;
}

.chats li .message .body {
	display: block;
}

.chat-form {
	margin-top: 15px;
	padding: 10px;
	background-color: #EFF0F4;
	clear: both;
}

.chat-form .input-cont {
	margin-right: 55px;
}

.chat-form .input-cont input {
	margin-bottom: 0px;
}

.chat-form .input-cont input {
	border: 1px solid #ddd;
	width: 94%;
	margin-top: 0;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}

.chat-form .input-cont input {
	background-color: #fff !important;
}

.normal-chat .message {
	border: 1px solid #EFF0F4;
	border-left: 1px solid #EFF0F4 !important;
	border-right: 1px solid #EFF0F4 !important;
	padding: 10px !important;
	border-radius: 5px;
	-webkit-border-radius: 5px;
}

.normal-chat li img.avatar {
	height: 45px;
	width: 45px;
}

.normal-chat li.in img.avatar,
.normal-chat li.out img.avatar {
	margin-top: 0px;
}

.normal-chat li.in .message .arrow {
	border-right: 8px solid #EFF0F4 !important;
}

.normal-chat li.in .message .arrow {
	border-bottom: 8px solid transparent;
	border-top: 8px solid transparent;
	display: block;
	height: 0;
	left: -8px;
	position: absolute;
	top: 15px;
	width: 0;
}

.normal-chat li.out .message .arrow {
	border-left: 8px solid #EFF0F4 !important;
}

.normal-chat li.out .message .arrow {
	border-bottom: 8px solid transparent;
	border-top: 8px solid transparent;
	display: block;
	position: absolute;
	right: -8px;
	top: 15px;
}

.normal-chat li.in .name {
	color: #65CEA7 !important;
}

.normal-chat li.out .name {
	color: #424F63 !important;
}

.normal-chat li .datetime {
	color: #ADADAD;
	font-size: 11px !important;
	font-weight: 400;
}

.chat-form .form-group {
	width: 83%;
	margin-right: 2%;
	float: left;
}

.chats li.out .name {
	color: #333;
}

.cool-chat li.in .message {
	background: #65CEA7;
	color: #fff;
	border-radius: 5px;
	-webkit-border-radius: 5px;
}

.cool-chat li.in .message .arrow {
	border-right: 8px solid #65CEA7;
}

.cool-chat li.in .message a.name {
	font-weight: bold;
}

.cool-chat li.in .message .datetime {
	opacity: .7;
}

.cool-chat li.in .message a.name,
.cool-chat li.in .message .datetime {
	color: #fff;
}

.cool-chat li.out .message .arrow {
	border-left: 8px solid #EFF0F4;
}

.cool-chat li.out .message {
	background: #EFF0F4;
	border-radius: 5px;
	-webkit-border-radius: 5px;
}

.widgets .panel {
	box-shadow: none;
}

.avatar-img img {
	display: block;
	width: 100%;
	border-radius: 4px 4px 0 0;
	-webkit-border-radius: 4px 4px 0 0;
}

.widget-info-one .inner {
	min-height: 115px;
	padding: 15px 10px 25px 110px;
	position: relative;
}

.widget-info-one .avatar,
.widget_profile .avatar {
	height: 89px;
	left: 15px;
	overflow: hidden;
	padding: 0px;
	position: absolute;
	top: 30px;
	width: 89px;
	border: 1px solid #ddd;
}

.widget-info-one .avatar,
.widget-info-one .avatar img,
.widget_profile .avatar,
.widget_profile .avatar img {
	border-radius: 50%;
	-webkit-border-radius: 50%;
	display: block;
	height: 73px;
	width: 73px;
}

.widget-info-one h5 {
	color: #65CEA7;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

.widget-info-one .subtitle {
	display: block;
}

.widget-info-one .panel-footer {
	background: #65CEA7;
	border: none;
	color: #fff;
	padding: 0;
	box-shadow: none;
	height: 60px;
}

ul.post-view {
	list-style-type: none;
	padding: 0;
	margin: 0;
	display: inline-block;
	width: 100%;
}

ul.post-view li {
	text-align: center;
	padding: 20px;
	width: 33.33%;
	float: left;
}

ul.post-view li:hover,
ul.post-view li.active {
	background: #6ddfb5;
	cursor: pointer;
}

ul.post-view li a i {
	font-size: 18px;
	color: #fff;
	text-decoration: none;
	padding-right: 5px;
}

ul.post-view li a {
	text-decoration: none;
}

.widget-info-twt {
	padding: 30px 20px;
	text-align: center;
}

.widget-info-twt h5 {
	color: #fff;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	margin-bottom: 6px;
	margin-top: 0;
}

.widget-info-twt .subtitle,
.widget-info-twt .followers {
	color: #f2f2f2;
	font-size: 12px;
	font-weight: 400;
	margin-bottom: 30px;
	display: block;
}

.widget-info-twt .followers span {
	padding: 0 5px;
}

.widget-info-twt .avatar img {
	border-radius: 50%;
	-webkit-border-radius: 50%;
	display: inline-block;
	height: 90px;
	width: 90px;
	border: 5px solid rgba(255, 255, 255, 0.3);
	margin-bottom: 30px;
}

.btn-follow {
	background: rgba(255, 255, 255, 0.3);
	color: #fff;
	width: 100%;
}

.btn-follow:hover {
	background: rgba(255, 255, 255, 1);
	color: #5AB5DE;
}

ul.iconic-list {
	padding: 0;
	margin: 0;
	width: 100%;
	float: left;
	background: #3BBEC0;
	list-style-type: none;
}

ul.iconic-list li a {
	width: 25%;
	float: left;
	text-align: center;
}

ul.iconic-list li a {
	padding: 28px;
	font-size: 23px;
	color: #fff;
	border-right: 1px solid #34a8aa;
}

ul.iconic-list li a.last {
	border-right: none;
}

ul.iconic-list li a:hover,
ul.iconic-list li.active a {
	background: #319fa1;
}

.wdgt-profile {
	position: relative;
}

.wdgt-profile .profile img {
	width: 100%;
	height: 380px;
	border-radius: 4px 4px 0 0;
	-webkit-border-radius: 4px 4px 0 0;
}

.wdgt-profile .profile-tab {
	position: absolute;
	right: 0;
	top: 0;
	width: 100px;
	list-style-type: none;
	padding: 0;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	margin: 0;
	border-radius: 0 4px 4px 0;
	-webkit-border-radius: 0 4px 4px 0;
}

.wdgt-profile .profile-tab li {
	text-align: center;
	max-width: 100%;
}

.wdgt-profile .profile-tab li a {
	padding: 20px 0;
	display: block;
	text-decoration: none;
	color: #fff;
}

.wdgt-profile .profile-tab li a:hover,
.wdgt-profile .profile-tab li.active a {
	color: #6ddfb5;
	background: rgba(0, 0, 0, .8);
}

.wdgt-profile .profile-tab li a i {
	display: block;
	font-size: 30px;
	margin-bottom: 5px;
}

.wdgt-profile .profile-info {
	background: #424F63;
	position: relative;
	z-index: 10;
	padding: 10px;
	border-radius: 0 0 4px 4px;
	-webkit-border-radius: 0 0 4px 4px;
}

.wdgt-profile .profile-info h5 {
	margin: 0;
	color: #fff;
	font-size: 15px;
}

.wdgt-profile .profile-info span {
	font-size: 11px;
	color: #fff;
}

.wdgt-profile .profile-social {
	position: absolute;
	left: 20px;
	top: 20px;
}

.wdgt-profile .profile-social a {
	font-size: 20px;
}

.wdgt-profile .profile-social a {
	border: 2px solid #FFFFFF;
	border-radius: 50%;
	color: #FFFFFF;
	display: inline-block;
	font-size: 12px;
	height: 28px;
	line-height: 24px;
	margin: 0 1px;
	text-align: center;
	width: 28px;
}

.wdgt-profile .profile-social a:hover {
	border: 2px solid #6ddfb5;
	color: #6ddfb5;
}

.states-info {
	color: #fff;
}

.states-info .red-bg {
	background: #FC8675;
}

.states-info .blue-bg {
	background: #5AB6DF;
}

.states-info .green-bg {
	background: #65CEA7;
}

.states-info .yellow-bg {
	background: #EBC85E;
}

.states-info i {
	font-size: 50px;
}

.states-info .state-title {
	font-size: 13px;
}

.states-info h4 {
	margin-bottom: 0;
}

.cmnts-box {
	border-collapse: collapse;
	border-spacing: 0;
	display: table;
	table-layout: fixed;
	width: 100%;
}

.aside {
	display: table-cell;
	float: none;
	height: 100%;
	padding: 0;
	vertical-align: top;
}

.cmnt-img-box {
	width: 140px;
	padding: 10px;
	text-align: center;
	float: left;
}

.cmnt-img-box img {
	border-radius: 50%;
	-webkit-border-radius: 50%;
	border: 5px solid rgba(255, 255, 255, 0.3);
	width: 80px;
	height: 80px;
}

.cmnt-img-box {
	position: relative;
	border-radius: 4px 0 0 4px;
	-webkit-border-radius: 4px 0 0 4px;
}

.cmnt-img-box:after {
	left: 100%;
	top: 50%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(31, 181, 173, 0);
	border-left-color: #424F63;
	border-width: 10px;
	margin-top: -10px;
}

.navy-blue-bg {
	background: #424F63;
}

.post-wrap aside {
	display: table-cell;
	float: none;
	height: 100%;
	padding: 0;
	vertical-align: top;
}

.pro-box {
	border-collapse: collapse;
	border-spacing: 0;
	display: table;
	table-layout: fixed;
	width: 100%;
}

.post-info {
	position: relative;
}

.arrow-pro.left:after {
	border-left-color: #8175C7;
	border-right-width: 0;
	top: 70px;
	content: " ";
}

.arrow-pro.left {
	left: -8px;
}

.arrow-pro:after {
	border-width: 10px;
	content: "";
}

.arrow-pro,
.arrow-pro:after {
	border-color: rgba(0, 0, 0, 0);
	border-style: solid;
	display: block;
	height: 0;
	position: absolute;
	width: 0;
	right: -15px;
}

.post-highlight.purple {
	background: #8175C7;
	border-radius: 4px 0px 0px 04px;
	-webkit-border-radius: 4px 0px 0px 04px;
}

.post-info h1 {
	margin: 0;
	font-size: 16px;
	color: #909090;
	font-weight: 300;
}

.post-highlight.purple h2 {
	font-size: 16px;
	color: #fff;
	font-style: italic;
	padding: 0 20px;
	line-height: 22px;
	margin: 0;
	font-weight: 300;
}

.post-highlight.purple h2 span,
.post-highlight.purple h2 a {
	color: #92faf3;
}

.v-align {
	vertical-align: middle !important;
}

.twite h1 {
	margin: 30px 0 15px;
}

.twite i {
	font-size: 70px;
	margin-top: 10px;
	color: #58c9f3;
}

#slide-img .item img {
	display: block;
	width: 100%;
	height: 170px;
}

.owl-buttons {
	left: 0;
	position: absolute;
	top: 50%;
	width: 100%;
	margin-top: -25px;
}

.owl-theme .owl-controls .owl-buttons div {
	border-radius: 0px !important;
	-webkit-border-radius: 0px !important;
	margin: 0 !important;
	padding: 10px !important;
	background: rgba(0, 0, 0, 0.5) !important;
}

.owl-theme .owl-controls .owl-buttons div:hover {
	background: #6ddfb5 !important;
	opacity: .8;
}

.owl-theme .owl-controls .owl-buttons div.owl-prev {
	float: left;
	border-radius: 0 20px 20px 0 !important;
	-webkit-border-radius: 0 20px 20px 0 !important;
}

.owl-theme .owl-controls .owl-buttons div.owl-next {
	float: right;
	border-radius: 20px 0 0 20px !important;
	-webkit-border-radius: 20px 0 0 20px !important;
}

.owl-wrapper .item {
	height: 170px;
}

.owl-pagination {
	position: absolute;
	bottom: 0px;
	width: 100%;
	z-index: 100;
}

.owl-wrapper .item img {
	border-radius: 4px;
	-webkit-border-radius: 4px;
}

.owl-theme .owl-controls .owl-page span {
	background: rgba(255, 255, 255, .5) !important;
}

.turquoise-bg {
	background: #3BBEC0;
}

.white-text {
	color: #fff;
}

.weather-info .panel-body {
	padding: 20px;
}

.weather-info .big-icon {
	font-size: 60px;
}

.weather-info .degree {
	font-size: 30px;
	margin-bottom: 10px;
}

.weather-info .degree:after {
	content: "o";
	font-size: 16px;
	position: relative;
	top: -12px;
}

.weather-info .d-value span:after {
	content: "o";
	font-size: 12px;
	position: relative;
	top: -4px;
}

.weather-location {
	padding: 20px;
}

.top-radius {
	border-radius: 4px 4px 0 0;
	-webkit-border-radius: 4px 4px 0 0;
}

.dark-turquoise-bg {
	background: #32a1a3;
}

.find-loc {
	border: none;
}

.weather-location .form-group {
	margin-bottom: 0;
}

.weather-forecast {
	padding: 0;
	margin: 0 -20px;
	list-style-type: none;
}

.weather-forecast li {
	border-left: 1px solid #ddd;
	width: 14.2857%;
	float: left;
	text-align: center;
}

.weather-forecast li.first {
	border-left: none;
}

.weather-forecast li a {
	text-decoration: none;
	color: #909090;
}

.weather-forecast li a:hover {
	color: #32a1a3;
}

.weather-forecast li a strong,
.weather-forecast li a span {
	display: block;
	margin-bottom: 10px;
}

.weather-forecast li a i {
	font-size: 20px;
}

.weather-forecast li a .d-value:after {
	content: "o";
	font-size: 12px;
	position: relative;
	top: -4px;
}

.state-overview .symbol.s-icon i {
	font-size: 60px;
}

.custom-s-view .panel {
	padding: 17px 20px;
}

.dir-info .avatar img {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
}

.dir-info h5 {
	margin-bottom: 0;
}

.dir-info .dir-like {
	margin-top: 10px;
	display: block;
	text-decoration: none;
	color: #909090;
}

.dir-info .dir-like:hover i {
	color: #6ddfb5;
}

.dir-info .row {
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #e8e8e8;
}

.dir-info .row:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

#ascrail2000,
#ascrail2000-hr,
#ascrail2001,
#ascrail2001-hr {
	background: #3a3a3a !important;
}

#ascrail2000 div,
#ascrail2000-hr div,
#ascrail2001 div,
#ascrail2001-hr div {
	background: #ca161d !important;
}

.badge {
	padding: 2px 7px 4px;
}

.header-section .menu_top {
	padding: 12px 15px;
}

.main_links {
	margin-bottom: 20px;
	color: #3a3a3a;
}

.main_links .font {
	font-size: 25px;
	margin-bottom: 10px;
}

.main_links .main_links a {
	color: #fff;
	display: block;
	text-align: center;
}

.notification-menu.dadhboard {
	margin: 0 -4px;
	overflow: hidden;
	padding: 0;
}

.notification-menu.dadhboard li a {
	border-radius: 3px;
	display: block;
	height: 77px;
	margin-bottom: 15px;
	padding: 12px 5px;
	text-align: center;
}

/* sticky button */

.pix-spl-sticky-btn {
	background-color: var(--primary);
	border-radius: 50%;
	bottom: 15px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
	color: #fff;
	cursor: pointer;
	display: block;
	height: 60px;
	margin: 20px 0 0 auto;
	position: fixed;
	right: 15px;
	transition: background-color 0.2s ease 0s;
	width: 60px;
	z-index: 10;
}

.pix-spl-sticky-btn:hover {
	color: #fff;
	background-color: var(--primaryHvr);
}

.pix-spl-sticky-btn .material-symbols-outlined {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

@media only screen and (max-width: 1116px) {
	.notification-menu {
		padding: 0px;
	}

	.notification-menu .info-number {
		height: 58px;
	}
}

@media only screen and (max-width: 500px) {
	.notification-menu .info-number {
		height: auto;
	}
}

.monthly-tracking .state-info {
	position: static;
}

.monthly-tracking .state-info .panel {
	margin-bottom: 0px;
}

.menu-top-section {
	background-color: #fff;
	position: fixed;
	width: 100%;
	z-index: 1000;
}

.menu-top-section .main-area {
	width: 1000px;
	margin: 0px auto;
	padding-left: 15px;
	padding-right: 15px;
	max-width: 100%;
	position: relative
}

.goal-progress.all-review>li {
	display: block;
	float: left;
	width: 50%;
	border-bottom: none;
}















.birthday-ntfcn {
	background-color: rgba(255, 255, 255, 0.83);
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 10000;
}

.birthday-ntfcn .birthday-frame {
	background-color: #fff;
	width: 380px;
	text-align: center;
	position: absolute;
	left: calc(50% - 190px);
	top: calc(50% - 182px);
	box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.29);
	padding: 40px;
}

.birthday-ntfcn.my-bday .birthday-frame {
	top: calc(50% - 226px);
}

.birthday-ntfcn .birthday-frame .avatar {
	margin-bottom: 20px;
}

.birthday-ntfcn .birthday-frame .avatar img {
	border-radius: 140px;
}

.birthday-ntfcn .birthday-frame .bday-message {
	font-size: 21px;
	font-weight: 900;
	line-height: 1.4em;
	margin-bottom: 17px;
	color: #821c73;
}

.birthday-ntfcn .birthday-frame .got-it .gt-btn {
	display: inline-block;
	color: #fff;
	background-color: #821c73;
	font-size: 16px;
	font-weight: 700;
	padding: 14px 26px;
	border-radius: 3px;
	cursor: pointer;
}

.message {
	margin-bottom: 65px;
	background-color: #faa;
	color: #000;
	border-left: 4px solid #900;
	padding: 8px 11px;
	overflow: hidden;
}

.message.success {
	background-color: #afa;
	border-color: #090;
}

.message .icon-set {
	color: #900;
	float: left;
	width: 25px;
}

.message.success .icon-set {
	color: #090;
}

.text-08 {
	font-size: .8em;
}

.text-09 {
	font-size: .9em;
}

.text-11 {
	font-size: 1.1em;
}

.text-12 {
	font-size: 1.2em;
}

.text-13 {
	font-size: 1.3em;
}

.text-14 {
	font-size: 1.4em;
}

.text-15 {
	font-size: 1.5em;
}

.text-16 {
	font-size: 1.6em;
}

.text-17 {
	font-size: 1.7em;
}

.text-18 {
	font-size: 1.8em;
}

.text-19 {
	font-size: 1.9em;
}

.text-20 {
	font-size: 2em;
}

.text-success,
.text-green {
	color: #5cab02;
}

.text-warning {
	color: #ff6633;
}

.text-info {
	color: #27aff5;
}

.text-orange {
	color: #e67a00;
}

.text-yellow {
	color: #ff0;
}

.text-purple {
	color: #8e009b;
}

.text-danger,
.text-red {
	color: #f00;
}

.text-black {
	color: #000;
}

.text-note {
	color: #989898;
}

.text-site {
	color: #f8a147;
}

.mb0 {
	margin-bottom: 0px;
}

.mb5 {
	margin-bottom: 5px;
}

.mb10 {
	margin-bottom: 10px;
}

.mb15 {
	margin-bottom: 15px;
}

.mb20 {
	margin-bottom: 20px;
}

.mb25 {
	margin-bottom: 25px;
}

.mb30 {
	margin-bottom: 30px;
}

.mb35 {
	margin-bottom: 35px;
}

.mb40 {
	margin-bottom: 40px;
}

.mb45 {
	margin-bottom: 45px;
}

.mb50 {
	margin-bottom: 50px;
}

.mt0 {
	margin-top: 0px;
}

.mt5 {
	margin-top: 5px;
}

.mt10 {
	margin-top: 10px;
}

.mt15 {
	margin-top: 15px;
}

.mt20 {
	margin-top: 20px;
}

.mt25 {
	margin-top: 25px;
}

.mt30 {
	margin-top: 30px;
}

.mt35 {
	margin-top: 35px;
}

.mt40 {
	margin-top: 40px;
}

.mt45 {
	margin-top: 45px;
}

.mt50 {
	margin-top: 50px;
}

.pt0 {
	padding-top: 0px;
}

.pt5 {
	padding-top: 5px;
}

.pt10 {
	padding-top: 10px;
}

.pt15 {
	padding-top: 15px;
}

.pt20 {
	padding-top: 20px;
}

.pt25 {
	padding-top: 25px;
}

.pt30 {
	padding-top: 30px;
}

.pt35 {
	padding-top: 35px;
}

.pt40 {
	padding-top: 40px;
}

.pt45 {
	padding-top: 45px;
}

.pt50 {
	padding-top: 50px;
}

.pl0 {
	padding-left: 0px;
}

.pl5 {
	padding-left: 5px;
}

.pl10 {
	padding-left: 10px;
}

.pl15 {
	padding-left: 15px;
}

.pl20 {
	padding-left: 20px;
}

.pl25 {
	padding-left: 25px;
}

.pl30 {
	padding-left: 30px;
}

.pl35 {
	padding-left: 35px;
}

.pl40 {
	padding-left: 40px;
}

.pl45 {
	padding-left: 45px;
}

.pl50 {
	padding-left: 50px;
}

.pr0 {
	padding-right: 0px;
}

.pr5 {
	padding-right: 5px;
}

.pr10 {
	padding-right: 10px;
}

.pr15 {
	padding-right: 15px;
}

.pr20 {
	padding-right: 20px;
}

.pr25 {
	padding-right: 25px;
}

.pr30 {
	padding-right: 30px;
}

.pr35 {
	padding-right: 35px;
}

.pr40 {
	padding-right: 40px;
}

.pr45 {
	padding-right: 45px;
}

.pr50 {
	padding-right: 50px;
}

.mr0 {
	margin-right: 0px;
}

.mr5 {
	margin-right: 5px;
}

.mr10 {
	margin-right: 10px;
}

.mr15 {
	margin-right: 15px;
}

.mr20 {
	margin-right: 20px;
}

.mr25 {
	margin-right: 25px;
}

.mr30 {
	margin-right: 30px;
}

.mr35 {
	margin-right: 35px;
}

.mr40 {
	margin-right: 40px;
}

.mr45 {
	margin-right: 45px;
}

.mr50 {
	margin-right: 50px;
}

.form-row::after {
	content: '';
	display: block;
	clear: both;
}

.form-row:not(:last-child) {
	margin-bottom: 30px;
}

.form-row .row-label {
	float: left;
	width: 150px;
	padding-top: 10px;
	font-weight: 600;
}

.form-row .row-input {
	float: right;
	width: calc(100% - 150px);
	padding-left: 25px;
}

.menu-top-section .notification-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	position: absolute;
	top: 0;
	right: 0;
}

@media only screen and (max-width: 1024px) {
	.fluid-container {
		margin: 0 15px
	}

	.container-head {
		margin: 0 15px;
	}
}

@media all and (min-width:992px) {
	.text-left-desk {
		text-align: left
	}

	.text-center-desk {
		text-align: center
	}

	.text-right-desk {
		text-align: right
	}
}

@media only screen and (max-width: 991px) {
	.navigation .menu .option-list {
		display: none
	}

	.navigation .menu .mobile-menu-btn {
		display: inline-block
	}

	.navigation .logo.mob-logo {
		display: block;
	}

	.navigation .logo {
		display: none;
	}
}

@media all and (min-width:768px) and (max-width:991px) {
	.pix-tabs .tab-item+.tab-item {
		margin-left: 25px;
	}

	.text-left-tab {
		text-align: left
	}

	.text-center-tab {
		text-align: center
	}

	.text-right-tab {
		text-align: right
	}
}

@media all and (max-width:767px) {
	.pix-tabs .tab-item {
		font-size: 15px;
	}

	.menu-top-section .notification-menu .logg-id {
		display: none;
	}

	.text-left-mob {
		text-align: left
	}

	.text-center-mob {
		text-align: center
	}

	.text-right-mob {
		text-align: right
	}

	.goal-progress.all-review>li {
		float: none;
		display: block;
		width: auto;
	}

	ul.goal-progress li .time-n-line {
		display: block
	}

	.form-row .row-label {
		float: none;
		width: auto;
		padding-top: 0;
	}

	.form-row .row-input {
		float: none;
		padding-top: 10px;
		width: auto;
		padding-left: 0;
	}
}

@media all and (min-width: 641px) and (max-width: 767px) {
	.pix-tabs .tab-item+.tab-item {
		margin-left: 11px;
	}
}

@media only screen and (max-width: 640px) {
	.pix-tabs {
		position: relative
	}

	.pix-tabs .cvr {
		content: "";
		display: block;
		height: 44px;
		left: 0;
		position: absolute;
		top: 0;
		z-index: 15;
	}

	.pix-tabs.main-tabs {
		position: relative;
	}

	.pix-tabs .main-tab-mob:hover+.main-tab-res+.cvr {
		display: none;
	}

	.pix-tabs .main-tab-mob+.main-tab-res:hover+.cvr {
		display: none;
	}

	.pix-tabs .tab-item {
		padding: 10px 25px;
	}

	.pix-tabs .tab-item:hover {
		background-color: #f0f0f0;
	}

	.pix-tabs .tab-item+.tab-item {
		margin-left: 0;
	}

	.pix-tabs .tab-item.active {
		border: none;
		padding: 10px 25px;
	}

	.pix-tabs .tab-item.active::before {
		border-width: 0;
	}

	.pix-tabs .main-tab-res {
		position: absolute;
		text-align: left;
		width: 100%;
		background-color: #fff;
		z-index: 10;
		box-shadow: 0 0 7px rgba(0, 0, 0, 0.09);
		border-radius: 5px;
		border: 1px solid #dcdcdc;
	}

	.pix-tabs .main-tab-res a {
		display: none;
	}

	.pix-tabs .main-tab-res a.active {
		color: #2196f3;
		display: block;
	}

	.pix-tabs .main-tab-mob:hover+.main-tab-res a,
	.pix-tabs .main-tab-res:hover a {
		display: block;
	}

	.pix-tabs .main-tab-mob {
		cursor: pointer;
		display: block;
		font-family: "FontAwesome";
		font-size: 20px;
		padding: 8px 0;
		position: absolute;
		right: 0;
		text-align: center;
		top: 0;
		width: 48px;
		z-index: 11;
	}
}

@media all and (min-width:480px) and (max-width:767px) {
	.notification-menu>li {
		width: calc(33.33% - 8px);
	}
}

@media all and (max-width:479px) {
	.notification-menu>li {
		width: calc(50% - 8px);
	}
}