* {
	margin: 0px;
	padding: 0px;
}

@font-face {
	font-family: 'Poppins';
	src: url("/inc/fonts/Poppins-Regular.ttf") format("opentype");
}

@font-face {
	font-family: 'Poppins-SemiBold';
	src: url("/inc/fonts/Poppins-SemiBold.ttf") format("opentype");
}

@keyframes dropdown-menu-fade-in {
	from {opacity: 0;}
	to {opacity: 1;}
}

@keyframes dropdown-menu-move-down {
	from {margin-top: -10px; }
	to {margin-top: 0; }
}

@keyframes dropdown-menu-move-up {
	from {margin-top: 10px;}
	to {margin-top: 0;}
}

@keyframes notification-slide-in {
	from {right: -375px;}
	to {right: 0;}
}

@keyframes notification-slide-out {
	from {right: 0;}
	to {right: -375px;}
}

body {
	font-family: 'Poppins';
	font-size: 13px;
	color: #4d5067;
	background-color: #f1f1f7;
}

img {
	vertical-align: middle;
}

a {
	text-decoration: none;
}

input, select {
	padding: 8px 15px;
	color: #495057;
	background-color: #fff;
	border: 1px solid #e2e5ec;
	border-radius: 4px;
}

input[type="radio"] {
	margin-right: 5px;
}

tr:nth-child(even) {
	background-color: #f2f2f2;
}

textarea {
	padding: 10px;
	color: #495057;
	background-color: #fff;
	border: 1px solid #e2e5ec;
	border-radius: 4px;
}

button {
	padding: 10px 20px;
	cursor: pointer;
	font-size: 14px;
	color: #fff;
	border: none;
	border-radius: 4px;
	background-color: #5867dd;
}

button:hover {
	background-color: #384ad7;
}

button.secondary {
	color: #6c7293;
	border: 1px solid #e2e5ec;
	background-color: #fff;
}

button.secondary:hover {
	background-color: #f4f5f8;
}

button.highlight {
	padding: 10px 15px;
	color: #6c7293;
	background-color: #ebe9f2;
}

button.highlight:hover {
	color: #fff;
	background-color: #5867dd;
}

#panelLogin {
	margin: auto;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 300px;
	height: 340px;
	position: absolute;
}

#panelLeft {
	width: 250px;
	height: 100vh;
	float: left;
	background-color: #1e1e2d;
	position: fixed;
}

#panelRight {
	left: 250px;
	width: calc(100% - 250px);
	height: 100vh;
	float: left;
	position: relative;
}

#panelNotifications {
	top: 0;
	bottom: 0;
	right: -375px;
	width: 350px;
	background-color: #fff;
	box-shadow: 0px 1px 9px -3px rgba(0, 0, 0, 0.75);
	position: fixed;
	z-index: 100;
}

#panelLogo {
	height: 60px;
	line-height: 60px;
	color: #fff;
	font-size: 24px;
	text-align: center;
}

#panelHeader {
	width: calc(100% - 250px);
	height: 60px;
	font-size: 14px;
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	position: fixed;
	z-index: 5;
}

#panelHeaderNotifications {
	height: 59px;
	font-size: 12px;
	color: #a7b7d8;
	border-bottom: 3px solid #eef1ff;
}

#panelNotificationsB {
	width: 100%;
	padding-top: 25px;
	overflow: hidden;
}

#panelContent {
	padding-top: 60px;
}

#panelUser {
	margin-top: 10px;
	margin-right: 25px;
	padding: 3px;
	padding-left: 10px;
	cursor: pointer;
	border-radius: 5px;
	position: relative;
}

#panelUser:hover {
	background-color: #f5f5f9;
}

#panelPass {
	margin-top: 12px;
	margin-right: 15px;
	padding: 0 20px;
	height: 35px;
	line-height: 35px;
	font-size: 12px;
	cursor: pointer;
	border: 1px solid #5d78ff;
	border-radius: 5px;
	position: relative;
}

#panelPass:hover {
	background-color: #f5f5f9;
}

#userBadge {
	margin-left: 10px;
	width: 35px;
	height: 35px;
	line-height: 35px;
	font-size: 18px;
	color: #0abb87;
	text-align: center;
	background-color: #e6f8f3;
	border-radius: 5px;
}

#badgeNotification {
	width: 37px;
	height: 37px;
	line-height: 37px;
	font-size: 18px;
	color: #5d78ff;
	cursor: pointer;
	text-align: center;
	border-radius: 5px;
}

#badgeNotification:hover {
	background-color: #f5f5f9;
}

#menuLeft {
	height: calc(100vh - 85px);
	padding-top: 25px;
	color: #a2a3b7;
	overflow: hidden;
}

.menuLeftBand {
	padding-left: 20px;
	padding-top: 10px;
	padding-bottom: 10px;
	cursor: pointer;
}

.menuLeftBandSubParent {
	display: none;
}

.menuLeftBandSub {
	padding-left: 35px;
	padding-top: 6px;
	padding-bottom: 6px;
	cursor: pointer;
}

.menuLeftBand:hover, .menuLeftBandSub:hover, .menuLeftBandActive {
	color: #fff;
	background-color: #161616;
}

.menuLeftBand i, .menuLeftBandSub i {
	color: #fff;
}

.iconMenuLeft {
	color: #fff;
}

.tabNotifications {
	margin: 10px;
	padding: 10px 0;
	cursor: pointer;
	float: left;
	border-bottom: 3px solid #eef1ff;
}

.tabNotifications:hover, .tabNotificationsActive {
	color: #5d78ff;
	border-bottom: 3px solid #5d78ff;
}

.notificationSlideIn {
	animation: notification-slide-in .3s ease-out forwards;
}

.notificationSlideOut {
	animation: notification-slide-out .3s ease forwards;
}

.notificationLine {
	padding: 10px 25px;
	border-bottom: 1px solid #f7f8fa;
}

.notificationLine:hover, .rowNotify:hover, .rowHighlight:hover, .highlightSeller:hover, .highlightProduct:hover, .highlightBuyer:hover, .highlightQuotation:hover {
	cursor: pointer;
	background-color: #FFFFBF;
}

.rowRoutine {
	padding: 20px 0;
	border-bottom: 3px solid #5d78ff;
}

.badgeSchedule {
	height: 40px;
	line-height: 40px;
	padding: 0px 10px;
	text-align: center;
	border-radius: 5px;
	color: #000;
	background-color: #fff;
	border: 1px solid #ccc;
}

.badge {
	color: #fff;
	padding: 5px 10px;
	text-align: center;
	border-radius: 5px;
	font-size: 11px;
}

.badgeGreen {
	background-color: #0abb87;
}

.badgeRed {
	background-color: #fd397a;
}

.badgeBlue {
	background-color: #5d78ff;
}

.badgeScheduleReps {
	padding: 5px 10px;
	text-align: center;
	border-radius: 5px;
	font-size: 11px;
	background-color: #fff;
	border: 1px solid #0abb87;
}

.widget {
	margin-top: 25px;
	margin-left: 25px;
	margin-bottom: 20px;
	box-shadow: 0px 0px 13px 0px rgba(82, 63, 105, 0.05);
	background-color: #ffffff;
	border-radius: 4px;
}

.widgetTop {
	box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
	background-color: #ffffff;
	border-radius: 4px;
	animation: dropdown-menu-fade-in .3s ease 1, dropdown-menu-move-up .3s ease-out 1;
	z-index: 5;
}

.tableBorder {
	width: 100% !important;
	border-collapse: collapse;
	border-spacing: 0 !important;
	margin: 1rem 0 !important;
}

.tableBorder th {
	padding: 10px;
	font-weight: normal;
	font-size: 14px;
	text-align: left;
	vertical-align: middle;
	color: #212529;
	border: 1px solid #d9dee2;
}

.tableBorder td {
	padding: 10px;
	vertical-align: middle;
	color: #6c7293;
	border: 1px solid #d9dee2;
}

.popup {
	position: relative;
	width: auto;
	max-width: 800px;
	margin: 20px auto;
}

.popupAction {
	width: 100px;
	padding: 8px 20px;
	cursor: pointer;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.25);
}

.popupAction:hover {
	background-color: rgba(255, 255, 255, 0.5);
}

.cursorHand {
	cursor: pointer;
}

.borderMandatory {
	background-color: #fffee8;
	border-color: #9da4dd;
}

.boxDay {
	color: #959cb6;
	cursor: pointer;
}

.boxDay:hover, .boxDayActive {
	color: #000;
}

.txtSemiBold {
	font-family: 'Poppins-SemiBold';
}

.txtUpper {
	text-transform: uppercase;
}

.txtLarge {
	font-size: 32px;
}

.txtMedium {
	font-size: 16px;
}

.txtSmall {
	font-size: 12px;
}

.txtSection {
	font-size: 16px;
	line-height: 60px;
	color: #000;
}

.txtStatus {
	font-size: 12px;
	color: #5d78ff;
}

.txtError {
	font-size: 12px;
	color: #cc0000;
}

.txtBlack {
	color: #000 !important;
}

.txtOrange {
	color: #f5841e !important;
}

.txtGreyLight {
	color: #959cb6;
}

.txtGrey {
	color: #6c7293;
}

.txtBlue {
	color: #5578eb !important;
}

.txtRed {
	color: #cc0000;
}

.txtGreen {
	color: #09c344;
}

.txtWhite {
	color: #fff;
}

.marginTop0 {
	margin-top: 0px;
}

.opacity30 {
	opacity: 0.3
}

.show {
	display: block;
}

.hide {
	display: none;
}

.inline {
	display: inline-block;
}

.centerH {
	margin: 0 auto;
	text-align: center !important;
}

.posREL {
	position: relative;
}

.posABS {
	position: absolute;
}

.fl {
	float: left;
}

.fr {
	float: right;
}

.cleaner {
	clear: both;
	height: 1px;
	font-size: 1px;
	border: none;
	margin: 0;
	padding: 0;
}
