body {
	color: #464457;
	font-weight: 400;
	font-size: 13px;
	padding-top: 50px;
    background-color: #fff;
	font-family: 'Inter', Helvetica, Arial, sans-serif;
}

img {
	object-fit: cover
}

body ::selection {
    /* background-color: #d7bde2; */
    /* background-color: #bd93f9; */
    /* background-color: #dabfff; */
	background-color: #c3c8ff;
    color: #000;
}

#root {
	width: 100%;
	overflow-x: hidden;
}

#nav {
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	z-index: 1000;
	position: fixed;
	background-color: #fff;
	box-shadow: 0 -5px 10px 1px rgba(0, 0, 0, 0.5);
}

#sidebar {
	left: 0;
	top: 60px;
	width: 250px;
	height: 1000px;
	z-index: 1010;
	position: fixed;
	background-color: #fff;
	transition: all 0.2s;  /* TOGGLE SIDEBAR */
}

#sidebar::before {
	top: 0;
	left: 250px;
	width: 5px;
	height: 1000px;
	z-index: 900;
	content: " ";
	position: fixed;
	transition: all 0.2s;  /* TOGGLE SIDEBAR */
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 10%, rgba(0,0,0,0) 100%); 
}

#container {
	float: left;
	width: calc(100% - 250px);
	min-height: 1000px;
	min-height: calc(100vh - 50px);
	margin-left: 250px;
	padding: 30px;
	background-color: #f0f3f7;
	transition: all 0.2s;  /* TOGGLE SIDEBAR */
}

@media (max-width: 1400px), (max-height: 750px) {
	body {
		padding-top: 40px;
		font-size: 12px;
	}

	#nav {
		height: 40px;
	}

	#sidebar {
		width: 220px;
	}

	#sidebar::before {
		left: 220px;
	}

	#container {
		padding: 20px;
		margin-left: 220px;
		width: calc(100% - 220px);
		min-height: calc(100vh - 40px);
	}
}

/*
---------------------------------------------------------------
---------------------------- LOGIN ----------------------------
---------------------------------------------------------------
*/

.bg-login {
	min-height: 100vh;
	background-color: #f0f3f7;
	background: url(../svg/bg-login.svg) bottom/cover no-repeat #f0f3f7;
}

.login-card {
    width: 400px;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid #ccc;
	margin: calc(50vh - 257px) auto 50px;
}

.login-card .card-body {
	padding: 20px 25px 25px 25px;
}

.login-logo-icon {
	width: 50px;
	height: 50px;
	fill: #6772E5;
	float: left;
	margin: 40px 0 20px 105px;
}

.login-logo {
	width: 160px;
	height: 50px;
	float: left;
	text-align: center;
	font-size: 30px;
	margin: 45px 0 20px 0;
	font-family: 'Ropa Sans';
	letter-spacing: -0.5px;
	color: #6772E5;
}

.login-logo::selection {
	background-color: inherit;
}

.bg-login .center {
	margin: 0 auto;
	display: block;
}

.login-pin-link {
	right: 20px;
	bottom: 20px;
	position: fixed;
	color: #fff;
	line-height: 34px;
	border-radius: 18px;
	padding: 0 10px;
	height: 38px;
	font-weight: 500;
	cursor: pointer;
	text-transform: uppercase;
	border: 2px solid #fff;
}

.login-pin-link.is-chat-active {
	bottom: 75px;
}

.login-pin-link:hover {
	color: #fff;
	background-color: #59a4fa;
}

.login-mobile {
	left: 20px;
	bottom: 20px;
	position: fixed;
}

.login-mobile-text {
	color: #fff;
	font-size: 14px;
	margin-bottom: 5px;
}

.login-mobile-ios,
.login-mobile-android {
	width: 140px;
	height: 42px;
	float: left;
	cursor: pointer;
	display: block;
	margin-top: 10px;
	background-size: contain;
	background-repeat: no-repeat;
}

.login-mobile-ios {
	margin-right: 15px;
	background-image: url(../svg/ios-white.svg);
}

.login-mobile-android {
	background-image: url(../svg/android-white.svg);
}

.show-on-mobile,
.login-logo-mobile {
	display: none;
}

@media (max-width: 600px) {
	.show-on-mobile {
		display: block;
	}

	.login-card {
		display: none;
	}

	.login-logo-mobile {
		top: 22px;
		left: 50%;
		width: 220px;
		margin-left: -110px;
		height: 30px;
		position: fixed;
	}

	.login-logo-mobile .login-logo-icon {
		margin: 0;
	}

	.login-logo-mobile .login-logo {
		margin: 5px 0 0 0;
	}

	.login-mobile {
		top: calc(5% + 60px);
		left: 5%;
		bottom: auto;
		width: 90%;
		padding: 15px;
		text-align: center;
		margin: 0 auto;
		background-color: #fff;
		border-radius: 10px;
		box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.3);
	}

	.login-mobile-text {
		color: #464457;
	}

	.login-mobile-ios,
	.login-mobile-android {
		height: 40px;
		float: none;
		margin: 20px auto;
		background-size: contain;
		background-position: center;
		box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
	}

	.login-mobile-ios{
		background-image: url(../img/app-store.gif);
	}

	.login-mobile-android {
		background-image: url(../img/google-play.gif);
	}
}

/*
---------------------------------------------------------------
-------------------- Bootstrap overrides ----------------------
---------------------------------------------------------------
*/

/* Color set Amethyst - https://htmlcolorcodes.com/color-chart/flat-design-color-chart/ */

a {
	color: inherit;
}

a.alert-danger:hover {
	color: #721c24;
}

a:hover {
	color: inherit;
	text-decoration: none;
}

input {
	font-family: 'Inter', Helvetica, Arial, sans-serif;
}

input[type="checkbox"] {
	cursor: pointer;
}

strong {
	font-weight: 600;
}

label {
	font-weight: 600;
}

h5, h6 {
	font-size: 16px;
}

.link-bold {
    color: #6772e5;
    font-weight: bold;
}

.link-hover:hover {
    color: #6772e5;
}

.card-header {
	font-weight: 400;
}

.card-header-icon {
	width: 40px;
	height: 30px;
	float: left;
	padding: 3px 0;
	margin-top: -5px;
	margin-bottom: -5px;
	margin-left: -10px;
	margin-right: 10px;
	border-right: 1px solid #ccc;
	padding-right: 10px;
}

@media (max-width: 1400px), (max-height: 750px) {
	.card-header-icon {
		padding-top: 4px;
		padding-bottom: 4px;
	}
}

.card-header .default-thumb-size {
	margin: -12px 3px -8px 5px;
}

.card-header .card-header-toggle {
	float: right;
	height: 26px;
	white-space: nowrap;
	margin-top: -2px;
	margin-bottom: -0.75rem;
}

.card-header .card-header-toggle .onoffswitch-row,
.card-header .card-header-toggle .onoffswitch-row-text {
	margin-top: 0;
	height: 26px;
	line-height: 26px;
}

.card-body {
	padding: 20px;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
	border-color: #dee2e6;
	border-bottom: none;
	background-color: rgba(255,255,255,0.6);
}

.nav-tabs .nav-link.active:focus,
.nav-tabs .nav-link.active:hover {
	border-bottom: 1px solid #fff;
	background-color: #fff;
}

.nav-tabs .nav-link-icon {
	width: 18px;
	height: 18px;
	margin-top: -2px;
	margin-right: 5px;
	margin-left: -5px;
}

.row {
	margin-left: -10px;
	margin-right: -10px;
}

.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
.col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
	padding-left: 10px;
	padding-right: 10px;
}

.col-md-auto {
	width: auto !important;
	flex: 0 0 auto !important;
}

.nav-item {
	cursor: pointer;
}

.tab-pane {
	padding: 20px;
	border: 1px solid #dee2e6;
	border-top: none;
}

.input-group-text {
	font-size: 13px;
}

.form-control {
    height: 36px;
    padding: 7.5px 13px;
    font-size: 13px;
	color: #495057;
    border-color: #e0e2e7;
}

.form-control:hover {
    border-color: #b9bec8;
}

.form-control.disabled,
.form-control:disabled {
	border-color: #e0e2e7;
    background-color: #f7f8fb;
}

.border-danger {
	z-index: 1;
}

.form-control:focus {
	border-color:#6772E5 !important;
	box-shadow: none;
	z-index: 2;
}

.form-control.no-padding {
	padding: 0;
	text-align: center;
}

.card-header .btn {
	margin-top: -5px;
	margin-bottom: -5px;
}

.btn {
	font-size: 13px;
    height: 36px;
    padding: 7px 13px;
	cursor: pointer;
}

.btn.disabled, .btn:disabled {
	color: #888;
	border-color: #888;
	cursor: not-allowed;
}

.btn.disabled:hover {
	color: #888;
	background-color:#fff;
}

.btn-sm {
	font-size: 12px;
    height: 30px;
	line-height: 20px;
    padding: 4px 8px;
	cursor: pointer;
}

.btn-tiny {
	font-size: 11px;
    height: 22px;
    padding: 2px 5px;
}

.btn-primary {
	outline: none;
	background-color: #eff3f6;
	border: 1px solid rgba(27,31,35,.2);
	background-image: linear-gradient(-180deg,#fafbfc,#eff3f6 90%);
	color: #24292e;
}

.btn-primary:hover{
	outline: none;
	background-position: -.5em;
	background-color: #e6ebf1 !important;
	background-image: linear-gradient(-180deg,#f0f3f6,#e6ebf1 90%) !important;
	border-color: rgba(27,31,35,.35) !important;
	color: #24292e !important;
}

.btn-primary.active,
.btn-primary:active  {
	color: #24292e !important;
	background-color: #e9ecef !important;
	background-image: none !important;
	border-color: rgba(27,31,35,.35) !important;
	box-shadow: inset 0 .15em .3em rgba(27,31,35,.15) !important;
}

.btn-default {
	color: #6772E5;
	border-color: #6772E5;
}

.btn-default:hover,
.btn-default.active {
	color: #fff;
	background-color: #6772E5;
}

.badge-primary {
	color: #6772E5;
	background-color: #e1e3fa;
}

.table th {
	font-weight: 500;
	vertical-align: middle !important;
}

.table td {
	padding: 8px 10px;
}

.table-vertical-middle td {
	vertical-align: middle;
}

.table-hover tbody tr:hover {
	background-color: #e1e3fa !important;
	color: #6772E5 !important;
}

.table-hover tbody tr:hover td {
	color: #6772E5 !important;
}

.table .deleted-row {
	color: #ccc;
	text-decoration: line-through;
}

.table-actions {
	padding: 8px 5px !important;
}

.table-icon {
	width: 22px;
	height: 22px;
	cursor: pointer;
	margin: 0 2px;
	display: inline-block;
	fill: #6772E5;
}

.table-icon.tiny-icon {
	width: 18px;
	height: 18px;
	margin: -2px 2px;
}

.table-icon.micro-icon {
	width: 14px;
	height: 14px;
	margin-top: -1px;
	transition: all 0.1s;
}

.cpointer:hover .micro-icon {
	transform: scale(1.5);
}

.table-icon.micro-icon.day {
	color: #f7b10c;
}

.cpointer:hover .micro-icon.day {
	color: #f39c12;
}

.table-icon.micro-icon.night {
	color: #4684c2;
}

.table-icon.fill-red {
	fill: #dc3545;
}

.table-icon.fill-gray {
	fill: #bdc3c7;
}

.table-icon.fill-green {
	fill: #2ecc71;
}

.table-icon.fill-yellow {
	fill: #ffc107;
}

.table-icon.fill-black {
	fill: #212529;
}

.table-label {
	color: #6772e5;
	height: 22px;
	padding: 0 8px;
	font-size: 12px;
	line-height: 20px;
	border-radius: 4px;
	border: 1px solid #6772e5;
}

.table-label.green {
	color: #2ecc71;
	border-color: #2ecc71;
}

.table .btn,
.table .default-thumb-size {
	margin-top: -10px;
	margin-bottom: -9px;
}

.default-thumb-size {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	margin-right: 10px;
	border: 1px solid #aaa;
	background-color: #bbc4de;
}

.user-thumb-and-name {
	padding-left: 42px;
	float: left;
}

.user-thumb-and-name img {
	margin-left: -42px;
}

.zindex0 {
	z-index: 0 !important;
}

.zindex1 {
	z-index: 1;
	position: relative;
}

.semibold {
	font-weight: 600;
}

.cpointer {
	cursor: pointer !important;
}

.cdefault {
	cursor: default !important;
}

.dnone {
	display: none !important;
}

.modal {
	background-color: rgba(5,7,15,0.5);
	background-color: rgba(3,6,9,0.5);
}

.modal.gray .modal-body {
	background-color: #f0f3f7;
}

.modal-title {
	font-weight: 400;
	font-size: 16px;
}

.modal-title-icon {
	width: 24px;
	height: 24px;
	float: left;
	margin-left: -2px;
	margin-right: 10px;
}

.modal-body {
	max-height: calc(100vh - 210px);
	overflow-y: auto;
}

.modal-dialog {
	margin-top: 80px;
}

.modal-body,
.modal-dialog,
.modal-content {
	border-radius: 10px;
}

.modal-body {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.close:hover {
	color: #6772E5;
}

.w100px {
	width: 100px;
}

.lh-btn {
	line-height: 30px;
}

.capitalize {
	text-transform: capitalize;
}

.nowrap {
	white-space: nowrap !important;
}

.ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
}

.text-gray {
	color: #95a5a6;
}

.text-darkgreen {
	color: #16a085 !important;
}

.icon-error,
.icon-warning {
	width: 22px;
	height: 22px;
	float: left;
	margin: 0 2px;
	font-size: 18px;
	font-weight: 500;
	line-height: 22px;
	text-align: center;
	border-radius: 50%;
}

.icon-warning {
	color: #f39c12;
	background-color: #fff3cd;
}

.icon-error {
	color: #e74c3c;
	line-height: 19px;
	background-color: #f8d7da;
}

.form-control-date {
	padding-left: 44px !important;
}

.form-group-date .react-datepicker__input-container:before {
	top: 1px;
	left: 1px;
	content: ' ';
	width: 36px;
	opacity: 0.6;
	height: 34px;
	position: absolute;
	background-size: 100% 50%;
	background-color: #f0f1f6;
	background-repeat: no-repeat;
	background-image: url(/assets/svg/calendar.svg);
	background-position: center;
	border-right: 1px solid #ced4da;
	border-radius: .20rem 0 0 .20rem;
}

.react-datepicker__day--highlighted {
	color: #fff !important;
	background-color: #e74c3c !important;
}

.row-loading {
	width: 22px;
	height: 22px;
	float: left;
	background-size: contain;
	background-image: url(../img/loading.gif);
	background-repeat: no-repeat;
	background-position: center;
}

.modal-header {
	padding: 15px;
}

.alert.shadowned {
	box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
}

.alert-default {
	color: #464457;
	border-color: #ddd;
	background-color: #eff3f6;
	background-image: linear-gradient(-180deg,#fafbfc,#eff3f6 90%);
}

.alert-default .alert-message-icon {
	fill: #464457;
}

@media (max-width: 1400px), (max-height: 750px) {
	.card-header {
		padding: 8px 20px;
	}

	.modal-dialog {
		margin: 20px auto;
	}

	.modal-header {
		padding: 10px 15px;
	}

	.modal-title {
		font-size: 16px;
	}

	.modal-body {
		max-height: calc(100vh - 90px);
	}
}

/*
---------------------------------------------------------------
------------------------ Pagination ---------------------------
---------------------------------------------------------------
*/

.page-link,
.page-link:hover {
	color: #555;
	border-color: #dee2e6;
	cursor: pointer;
}

.page-item.active .page-link {
	color: #555;
	font-weight: bold;
	box-shadow: inset 0 .15em .3em rgba(27,31,35,.15);
	background-color: #e9ecef;
	border-color: #dee2e6;
}

.page-link.disabled:hover {
	cursor: default;
	background-color: #fff;
}

.profile-body .pagination {
	margin-top: 0;
	height: 34px;
	border-radius: 0;
	background-color: #f5f5f5;
	border: 1px solid #dee2e6;
	box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
	border-left: none;
	border-top: none;
}

.profile-body .page-link {
	box-shadow: none !important;
	border-top: none !important;
	border-bottom: none !important;
	background-color: transparent !important;
	border-radius: 0 !important;
}

.profile-body .page-item.active .page-link {
	background-color: #fff !important;
}

.profile-pagination-loading {
	width: 100%;
	height: 34px;
	line-height: 32px;
	text-align: center;
	float: left;
	background-color: #f5f5f5;
	border: 1px solid #dee2e6;
	box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
	border-top: none;
}

/*
---------------------------------------------------------------
-------------------- SHADOWNED Overide -----------------------
---------------------------------------------------------------
*/

.shadowned .card {
	box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
	/* 0 2px 8px rgba(0,0,0,.1) Apenas um shadown um pouco mais forte que pode ser usado em algum momento */
}

.shadowned .tab-pane {
	box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
}

.shadowned .timecard-updates-wrapper {
	box-shadow: 0 3px 5px 0 rgba(0,1,1,.1);
}

.shadowned .modal-dialog {
	box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.3);
}

.shadowned .card.login-card {
	box-shadow: 0 12px 18px 2px rgba(34,0,51,.04),0 6px 22px 4px rgba(7,48,114,.12),0 6px 10px -4px rgba(14,13,26,.12);
}

/*
---------------------------------------------------------------
-------------------- Components Overide -----------------------
---------------------------------------------------------------
*/

.swal-title {
	font-size: 18px;
}

.swal-text {
	font-size: 14px;
	text-align: center;
}

.swal-button {
	font-size: 13px;
    height: 38px;
    padding: 8px 13px;
	cursor: pointer;
	outline: none;
	font-weight: normal;
	background-color: #eff3f6;
	border: 1px solid rgba(27,31,35,.2);
	background-image: linear-gradient(-180deg,#fafbfc,#eff3f6 90%);
	color: #24292e;
}

.swal-button:hover {
	outline: none;
	background-position: -.5em;
	background-color: #e6ebf1 !important;
	background-image: linear-gradient(-180deg,#f0f3f6,#e6ebf1 90%) !important;
	border-color: rgba(27,31,35,.35) !important;
	color: #24292e !important;
}

.swal-button.active,
.swal-button:active  {
	outline: none;
	color: #24292e !important;
	background-color: #e9ecef !important;
	background-image: none !important;
	border-color: rgba(27,31,35,.35) !important;
	box-shadow: inset 0 .15em .3em rgba(27,31,35,.15) !important;
}

.swal-footer {
	text-align: center;
}

/*
---------------------------------------------------------------
--------------------------- Nav -------------------------------
---------------------------------------------------------------
*/

.nav-logout {
	float: right;
	cursor: pointer;
	line-height: 50px;
	margin-right: 30px;
	font-size: 12px;
	text-transform: uppercase;
}

.nav-logout:hover {
	color: #6772E5;
}

.nav-logo-icon {
	top: 5px;
	left: 40px;
	width: 36px;
	height: 36px;
	fill: #6772E5;
	position: absolute;
	transition: all 0.2s;  /* TOGGLE SIDEBAR */
}

.nav-logo {
	width: 250px;
	height: 51px;
	padding-left: 77px;
	line-height: 50px;
	font-weight: 100;
	font-size: 20px;
	position: absolute;
	border-bottom: 1px solid #eee;
	font-family: 'Ropa Sans';
	letter-spacing: -0.5px;
	color: #6772E5;
	transition: all 0.2s;  /* TOGGLE SIDEBAR */
}

.nav-search {
	top: 0;
	color: #464457;
	left: 250px;
	width: 300px;
	height: 50px;
	float: left;
	font-size: 16px;
	position: fixed;
	padding-left: 15px;
	background-color: #f5f5f5;
	border: none;
	outline: none;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
}

.nav-search:focus {
	color: #6772E5;
	background-color: #ecedfc;
}

.nav-search:placeholder-shown {
	font-size: 13px;
}

.nav-search-icon {
	fill: #777;
	width: 24px;
	height: 24px;
	top: 14px;
	left: 515px;
	z-index: 1010;
	position: fixed;
	box-shadow: -10px 0px 10px #f5f5f5;
	background-color: #f5f5f5;
}

.nav-search:hover + .nav-search-icon {
	fill: #000;
}

.nav-search:focus + .nav-search-icon {
	fill: #6772E5;
	background-color: #ecedfc;
	box-shadow: -10px 0px 10px #ecedfc;
}

.nav-search-list {
	top: 50px;
	z-index: 1;
	color: #464457;
	left: 250px;
	width: 300px;
	float: left;
	position: fixed;
	background-color: #fff;
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	box-shadow: 0 0 10px 1px rgba(0,1,1,.2);
}

.nav-search-list-item {
	width: 100%;
	height: 34px;
	float: left;
	display: block;
	font-size: 13px;
	line-height: 28px;
	padding: 2px 10px;
	border-bottom: 1px solid #ddd;
}

.nav-search-list-item .user-thumb-and-name {
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	padding-left: 30px;
}

.nav-search-list-item .default-thumb-size {
	width: 28px;
	height: 28px;
	float: left;
	margin-left: -30px;
}

a.nav-search-list-item:hover,
a.nav-search-list-item.selected {
	color: #6772E5;
	background-color: #e1e3fa;
}


@media (max-width: 1400px), (max-height: 750px) {
	.nav-logo {
		width: 220px;
		height: 41px;
		line-height: 40px;
		font-size: 20px;
		padding-left: 73px;
	}

	.nav-logo-icon {
		top: 3px;
		left: 40px;
		width: 30px;
		height: 30px;
	}

	.nav-search {
		left: 220px;
		height: 40px;
		font-size: 14px;
	}

	.nav-search-list {
		top: 40px;
		left: 220px;
	}

	.nav-search-icon {
		width: 22px;
		height: 22px;
		top: 10px;
		left: 490px;
	}

	.nav-logout {
		line-height: 40px;
	}
}

/*
---------------------------------------------------------------
------------------------- Sidebar -----------------------------
---------------------------------------------------------------
*/

.old-sidebar-alert {
	top: 60px;
	right: 10px;
	z-index: 1;
	position: fixed;
	text-align: right;
	box-shadow: 0 3px 5px 0 rgba(0,1,1,.3);
}

/* ------------------------- Hide sidebar START ----------------------------- */

.sidebar-toggle-show {
	width: 22px;
	height: 22px;
	line-height: 20px;
	top: -45px;
	left: 240px;
	color: #6772E5;
	border-radius: 50%;
	position: absolute;
	text-align: center;
	cursor: pointer;
	z-index: 1000;
	transition: all 0.2s;  /* TOGGLE SIDEBAR */
	background-color: #eff3f6;
	border: 1px solid rgba(27,31,35,.2);
	background-image: linear-gradient(-180deg,#fafbfc,#eff3f6 90%);
}

.sidebar-toggle-show:hover {
	color: #fff;
	background-color: #6772E5;
	background-image: none;
}

.hide-sidebar .sidebar-toggle-show {
	left: 48px;
	transform: rotate(-180deg);
}

.hide-sidebar .nav-logo-icon {
	left: 80px;
}

.hide-sidebar .nav-logo {
	padding-left: 117px;
}

.hide-sidebar #sidebar {
	width: 60px;
}

.hide-sidebar #container {
	width: calc(100% - 60px);
	margin-left: 60px;
}

.hide-sidebar #sidebar::before {
	left: 60px;
}

.hide-sidebar .sidebar-user {
	padding-left: 5px;
	width: 60px;
}

.hide-sidebar .sidebar-list {
	width: 60px;
}

.hide-sidebar .sidebar-list-item {
	width: 60px;
	height: 39px;
}

.hide-sidebar .sidebar-list-item.toggle.opened {
	overflow: auto;
	border-left-width: 5px;
	border-left-color: #6772E5;
	max-height: 39px;
}

.hide-sidebar .sidebar-group-subitem {
	display: none;
	z-index: 1000;
	position: absolute;
	left: 60px;
	margin-top: -10px;
	overflow: hidden;
	border-radius: 5px;
	border: 1px solid #ddd;
	box-shadow: 0 0 8px 0 rgba(0,1,1,.1);
}

.hide-sidebar .active .sidebar-group-subitem.opened {
	display: block;
}

.hide-sidebar .sidebar-list-subitem.first {
	margin-top: 0;
	border-top: 0;
}

.hide-sidebar .sidebar-list-subitem {
	margin-left: 0;
}

.hide-sidebar .sidebar-unread-icon {
	margin-top: -14px;
}

.hide-sidebar .hide-on-sidebar,
.hide-sidebar .sidebar-user-name,
.hide-sidebar .sidebar-user-link,
.hide-sidebar .sidebar-list-toggle-icon {
	display: none;
}

@media (max-width: 1400px), (max-height: 750px) {
	.hide-sidebar .sidebar-user {
		padding-left: 10px;
	}

	.hide-sidebar .nav-logo {
		padding-left: 112px
	}

	.hide-sidebar .sidebar-list-item {
		padding-left: 15px;
	}

	.sidebar-toggle-show {
		top: -51px;
		left: 210px;
	}
}

/* ------------------------- Hide sidebar END ----------------------------- */

.sidebar-user {
	width: 250px;
	height: 110px;
	padding: 20px;
	transition: width 0.2s; /* TOGGLE SIDEBAR */
	overflow: hidden; /* TOGGLE SIDEBAR */
	white-space: nowrap; /* TOGGLE SIDEBAR */
}

.sidebar-user-thumb {
	width: 51px;
	height: 51px;
	border-radius: 50%;
	float: left;
	margin-right: 10px;
	border: 1px solid #aaa;
	background-color: #ccc;
}

.sidebar-user-name {
	font-weight: bold;
	line-height: 16px;
	max-height: 34px;
	font-size: 14px;
	overflow: hidden;
	white-space: normal; /* TOGGLE SIDEBAR */
}

.sidebar-user-link {
	font-size: 12px;
}

.sidebar-user-link:hover {
	text-decoration: underline;
}

.sidebar-list {
	width: 100%;
	color: #464457;
	border-top: 1px solid #e0e0e0;
	height: calc(100vh - 170px);
	overflow: auto;
	letter-spacing: 0.2px;
	position: relative;
	z-index: 1;
}

@media (max-width: 1400px), (max-height: 750px) {
	.sidebar-list {
		height: calc(100vh - 140px);
	}
}

.sidebar-list-icon {
	float: left;
	width: 22px;
	height: 22px;
	fill: #000;
	margin-right: 15px;
}

.sidebar-unread-icon {
	float: right;
	width: 20px;
	height: 20px;
	color: #fff;
	text-align: center;
	line-height: 20px;
	margin-top: 2px;
	margin-right: -10px;
	border-radius: 50%;
	background-color: #6772E5;
}

.sidebar-list-alert-ball {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	display: inline-block;
	background-color: #f39c12;
}

.sidebar-list-alert-boleto {
	width: 101px;
	height: 20px;
	border-radius: 5px;
	display: block;
	background-color: #f39c12;
	float: right;
	color: #fff;
	line-height: 20px;
	font-size: 10px;
	text-align: center;
	margin-top: 5px;
	margin-right: 7px;
}

.sidebar-list-toggle-icon {
	float: right;
	width: 16px;
	height: 16px;
	fill: #000;
	margin-top: 2px;
	margin-right: -10px;
	transform: rotate(0deg);
	transition: all ease-out 0.3s;
}

.sidebar-list-item.toggle.opened .sidebar-list-toggle-icon {
	margin-top: 4px;
	fill: #6772E5;
	transform: rotate(180deg);
}

.sidebar-list-item {
	width: 100%;
	float: left;
	outline: 0;
	color: inherit;
	overflow: hidden;  /* TOGGLE SIDEBAR */
	white-space: nowrap;  /* TOGGLE SIDEBAR */
	text-decoration: none;
	line-height: 24px;
	cursor: pointer;
	font-size: 13px;
	padding: 7px 20px 7px 18px;
	background-color: #fff;
	border-bottom: 1px solid #e0e0e0;
	border-left: 5px solid transparent;
	transition: all 0.2s;  /* TOGGLE SIDEBAR */
}

.sidebar-list-item:hover {
	color: inherit;
	text-decoration: none;
	background-color: #f0f1fd;
}

.sidebar-list-item.active {
	color: #6772E5;
	background-color: #e1e3fa;
	border-left: 5px solid #6772E5;
}

.sidebar-list-item.active .sidebar-list-icon  {
	fill: #6772E5;
}

.sidebar-list-item.toggle {
	max-height: 41px;
	max-height: 38px;
	overflow: hidden;
	padding-bottom: 0;
	padding-left: 23px;
	border-left-width: 0;
	transition: max-height 0.5s ease-in-out;
}

.sidebar-list-item.toggle.active {
	border-color: transparent;
}

.sidebar-list-item.toggle.opened {
	max-height: 400px;
}

.sidebar-list-subitem.first {
	margin-top: 8px;
}

.sidebar-list-subitem {
	color: #737281 !important;
	display: block;
	width: 250px;
	float: left;
	outline: 0;
	height: 32px;
	line-height: 30px;
	font-size: 12px;
	border-top: 1px solid #e0e0e0;
	background-color: #f4f6f6;
	text-decoration: none;
	margin-left: -23px;
	padding-left: 20px;
	border-left: 5px solid transparent;
}

.sidebar-list-subitem:hover {
	background-color: #e4e6e6;
}

.sidebar-list-subitem.active {
	color: #464457 !important;
	background-color: #e4e6e6;
	border-left-color: #6772E5;
}

.sidebar-list-subitem-icon {
	float: left;
	width: 16px;
	height: 16px;
	fill: #555;
	margin: 8px 8px 0 -8px;
}

.sidebar-list-subitem.active .sidebar-list-subitem-icon {
	fill: #000;
}

.sidebar-navbar {
	top: 5px;
	right: 80px;
	position: fixed;
	line-height: 30px;
}

.sidebar-navbar-button {
	float: right;
	height: 38px;
	margin-left: 5px;
	cursor: pointer;
	color: #464457;
	border: 1px solid #777;
	border-radius: 20px;
	padding: 3px 15px 3px 8px;
	transition: all 0.2s;  /* TOGGLE SIDEBAR */
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.sidebar-navbar-button.messages,
.sidebar-navbar-button.rest-timecard,
.sidebar-navbar-button.wait-timecard {
	border-radius: 10px;
	padding: 3px 5px 3px 5px;
}

.sidebar-navbar-button.wait-timecard {
	padding-right: 7px;
}

.sidebar-navbar-button:hover,
.sidebar-navbar-button.active {
	color: #6772E5;
	border-color: #6772E5;
	background-color: #e1e3fa;
}

.sidebar-navbar-button-icon {
	fill: #464457;
	width: 30px;
	height: 30px;
	margin-right: 3px;
	float: left;
}

.sidebar-navbar-button:hover .sidebar-navbar-button-icon,
.sidebar-navbar-button.active .sidebar-navbar-button-icon {
	fill: #6772E5;
}

.sidebar-navbar-button.messages .sidebar-navbar-button-icon,
.sidebar-navbar-button.rest-timecard .sidebar-navbar-button-icon,
.sidebar-navbar-button.wait-timecard .sidebar-navbar-button-icon,
.sidebar-navbar-button.checkin-timecard .sidebar-navbar-button-icon {
	width: 24px;
	height: 24px;
	margin-top: 3px;
}

.sidebar-navbar-button.wait-timecard .sidebar-navbar-button-icon {
	width: 20px;
	margin-left: 3px;
	margin-right: 7px;
}

.sidebar-navbar-button.messages .sidebar-navbar-button-icon {
	margin-right: 0;
}

@media (max-width: 1400px), (max-height: 750px) {
	.sidebar-user {
		width: 220px;
		height: 80px;
		padding-top: 0;
	}

	.sidebar-user-name {
		font-size: 13px;
	}

	.sidebar-user-thumb {
		width: 41px;
		height: 41px;
	}

	.sidebar-list-icon {
		width: 20px;
		height: 20px;
		margin-right: 10px;
	}

	.sidebar-list-item {
		line-height: 21px;
		font-size: 12px;
		padding: 6px 20px 6px 10px;
	}

	.sidebar-list-item.toggle {
		max-height: 34px;
		padding-left: 16px;
	}

	.sidebar-list-subitem {
		width: 230px;
	}

	.sidebar-navbar {
		top: 4px;
		line-height: 28px;
	}

	.sidebar-navbar-button {
		height: 32px;
		border-radius: 15px;
		padding-top: 0;
		font-size: 12px;
		padding-bottom: 0;
	}

	.sidebar-navbar-button.rest-timecard,
	.sidebar-navbar-button.wait-timecard {
		padding-top: 0;
		padding-bottom: 0;
	}

	.sidebar-navbar-button-icon {
		width: 28px;
		height: 28px;
	}

	.sidebar-navbar-button.messages .sidebar-navbar-button-icon {
		margin-top: 0;
	}
}

/*
---------------------------------------------------------------
---------------------- Sidebar Messages -----------------------
---------------------------------------------------------------
*/

.sidebar-message-list-arrow {
	top: 52px;
	right: 86px !important;
	width: 0;
	height: 0;
	position: fixed;
	z-index: 100;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	border-bottom: 10px solid #fff;
}

.sidebar-message-list-arrow.has-timecard {
	right: 245px !important;
}

.sidebar-message-list-arrow.has-timecard-pause {
	right: 385px !important;
}

.sidebar-message-list {
	top: 60px;
	right: 10px;
	width: 320px;
	height: auto;
	position: fixed;
	border-radius: 7px;
	overflow-y: auto;
	overflow-x: hidden;
	max-height: 500px;
	border: 1px solid #dee2e6;
	background-color: #fff;
	box-shadow: 0 0 10px 1px rgba(0,1,1,.15);
}

.sidebar-message-list.has-timecard-pause {
	right: 95px;
}

.sidebar-message-list.loading {
	overflow: hidden;
}

.sidebar-message-list-header {
	width: 100%;
	height: 40px;
	padding: 5px 8px;
	border-top: 1px solid #dee2e6;
	background-color: #f7f7f7;
}

.sidebar-message-list-item {
	width: 100%;
	height: 50px;
	cursor: pointer;
	line-height: 18px;
	padding-left: 60px;
	padding: 6px 8px;
	position: relative;
	border-top: 1px solid #dee2e6;
}

.sidebar-message-list-item:hover {
	background-color: #f0f1fd;
}

.sidebar-message-list-item-thumb {
	width: 36px;
	height: 36px;
	float: left;
	border-radius: 50%;
	margin-right: 8px;
	border: 1px solid #aaa;
}

.sidebar-message-list-item-info {
	float: left;
	width: calc(100% - 50px);
}

.sidebar-message-list-item-name {
	font-weight: 500;
	padding-right: 25px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.sidebar-message-list-item-text {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.sidebar-message-list-item.unread .sidebar-message-list-item-text {
	padding-right: 50px;
}

.sidebar-message-list-item-unread {
	top: 24px;
	right: 5px;
	position: absolute;
	color: #6772E5;
	padding: 0 5px;
	background-color: #e1e3fa;
	border-radius: 3px;
}

.sidebar-message-list-item-time {
	top: 4px;
	right: 8px;
	color: #777;
	font-size: 11px;
	position: absolute;
}

.sidebar-message-list-empty {
	width: 200px;
	height: 260px;
	margin: 0 auto;
	padding-top: 140px;
	text-align: center;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center 15px;
	background-image: url(../img/empty-talk.png);
}

.sidebar-message-list-empty-title {
	font-size: 14px;
	font-weight: 500;
}

.sidebar-message-list-empty-subtitle {
	margin-top: 5px;
	margin-bottom: 10px;
	line-height: 18px;
}

@media (max-height: 700px) {
	.sidebar-message-list {
		max-height: calc(100vh - 140px);
	}
}

@media (max-width: 1400px), (max-height: 750px) {
	.sidebar-message-list {
		top: 50px;
	}

	.sidebar-message-list-arrow {
		top: 42px;
		right: 236px;
	}
}

/*
---------------------------------------------------------------
------------------------- Button Icon -----------------------------
---------------------------------------------------------------
*/

.btn-icon {
	width: 18px;
	height: 18px;
}

.btn-icon.with-label {
	margin-left: -5px;
	margin-right: 2px;
}

.btn.active .btn-icon,
.btn-default .btn-icon {
	fill: #6772E5;
}

.btn-default:hover .btn-icon {
	fill: #fff;
	transition: fill .15s ease-in-out;
}

/*
---------------------------------------------------------------
------------------------- Tooltip -----------------------------
---------------------------------------------------------------
*/

.custom-tooltip-parent {
	position: relative;
}

.custom-tooltip {
	position: absolute;
	display: none;
	cursor: pointer;
	width: 110px;
	left: 50%;
	bottom: 19px;
	margin-left: -55px;
}

.custom-tooltip-parent:hover .custom-tooltip {
	display: block;
}

.custom-tooltip-arrow {
	width: 12px;
	height: 12px;
	background-color: #000;
	margin: 0 auto;
	transform: rotate(45deg);
	margin-top: -8px;
}

.custom-tooltip-group {
	width: 110px;
	background-color: #000;
	border-radius: 5px;
	color: #fff;
	padding: 5px 3px;
	text-align: center;
	z-index: 1;
	position: relative;
}

/*
---------------------------------------------------------------
------------------------- Button Loading -----------------------------
---------------------------------------------------------------
*/

.request-button.btn-danger .text,
.request-button.btn-success .text {
	color: #fff;
}

.request-button .icon-spin {
	width: 18px;
	height: 18px;
	margin-top: -1px;
	animation-name: spin;
	animation-duration: 2000ms;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

.request-button.btn-danger .icon-spin,
.request-button.btn-success .icon-spin {
	fill: #fff;
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	} to {
		transform: rotate(-360deg);
	}
}

/*
---------------------------------------------------------------
------------------------- Loading -----------------------------
---------------------------------------------------------------
*/

.small-loading .cssload-wrapper {
	height: 80px;
	transform: scale(0.5);
	margin: 0;
	margin-top: -35px;
}

.cssload-wrapper {
	width: 160px;
	overflow: hidden;
	margin: 0 auto;
}

.cssload-container {
	padding: 11px;
	height: 113px;
	width: 113px;
	margin: 34px 23px;
	position: relative;
	text-align: center;
}

.cssload-loading-center {
	display: inline-block;
	position: absolute;
	background: #6772E5;
	height: 34px;
	width: 34px;
	left: 41px;
	top: 42px;
	transform: rotate(45deg);
	border-radius: 3px;
	animation: pulse 1s ease infinite;
}

.cssload-loading {
	display: inline-block;
	position: relative;
	width: 84px;
	height: 84px;
	margin-top: 3px;
	transform: rotate(45deg);
}
.cssload-loading:after, .cssload-loading:before {
	position: absolute;
	content: '';
	height: 11px;
	width: 11px;
	display: block;
	top: 0;
	background: #e1e3fa;
	border-radius: 3px;
	animation-delay: -.8s;
}
.cssload-loading:after {
	right: 0;
	animation: square-tr 2.8s ease infinite;
	animation-delay: .200s;
}
.cssload-loading:before {
	animation: square-tl 2.8s ease infinite;
	animation-delay: .200s;
}

.cssload-loading.cssload-two {
	position: relative;
	top: -90px;
}
.cssload-loading.cssload-two:after, .cssload-loading.cssload-two:before {
	bottom: 0;
	top: initial;
}
.cssload-loading.cssload-two:after {
	animation: square-br 2.8s ease infinite;
	animation-direction: reverse;
}
.cssload-loading.cssload-two:before {
	animation: square-bl 2.8s ease infinite;
	animation-direction: reverse;
}

@keyframes square-tl {
	0% { transform: translate(0, 0); }
	25% { transform: translate(0, 70.5px); }
	50% { transform: translate(70.5px, 70.5px); }
	75% { transform: translate(70.5px, 0); }
}

@keyframes square-bl {
	0% { transform: translate(0, 0); }
	25% { transform: translate(0, -70.5px); }
	50% { transform: translate(70.5px, -70.5px); }
	75% { transform: translate(70.5px, 0); }
}

@keyframes square-tr {
	0% { transform: translate(0, 0); }
	25% { transform: translate(-70.5px, 0); }
	50% { transform: translate(-70.5px, 70.5px); }
	75% { transform: translate(0, 70.5px); }
}
@keyframes square-br {
	0% { transform: translate(0, 0); }
	25% { transform: translate(-70.5px, 0);}
	50% { transform: translate(-70.5px, -70.5px); }
	75% { transform: translate(0, -70.5px); }
}

@keyframes rotate {
	from { transform: rotate(0deg); }
	to { transform: rotate(360deg); }
}

@keyframes pulse {
	0%, 100% { transform: scale(inherit) rotate(45deg); }
	75% { transform: scale(0.25) rotate(45deg); }
}


/*
---------------------------------------------------------------
----------------------- On Off Switch -------------------------
---------------------------------------------------------------
*/

.onoffswitch {
	position: relative;
	width: 50px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}

.onoffswitch-row {
	margin-top: 5px;
	margin-right: 10px;
}

.onoffswitch-checkbox {
	display: none;
}

.onoffswitch-label {
	display: block;
	overflow: hidden;
	cursor: pointer;
	height: 26px;
	padding: 0;
	margin: 0;
	line-height: 26px;
	border: 2px solid #ccc;
	border-radius: 26px;
	background-color: #d9d9d9;
	transition: background-color 0.1s ease-in;
}

.onoffswitch-label:before {
	content: "";
	display: block;
	width: 26px;
	margin: 0px;
	background: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 23px;
	border: 2px solid #ccc;
	border-radius: 26px;
	transition: all 0.1s ease-in 0s;
}

.onoffswitch-checkbox:checked + .onoffswitch-label {
	background-color: #6772E5;
}

.onoffswitch-checkbox:checked + .onoffswitch-label,
.onoffswitch-checkbox:checked + .onoffswitch-label:before {
	border-color: #6772E5;
}

.onoffswitch-checkbox:checked + .onoffswitch-label:before {
	right: 0px;
}

.onoffswitch-row-text {
	height: 36px;
	line-height: 36px;
}
