/**
 * Employees
 * =========================================== */
.employees__list {
	position: relative;
	margin: -15px -16px;
	padding: 15px 0;
	background: #f1f1f1;
}
.employees__item {
	border: 1px solid #e3e4e8;
	font-size: 13px;
	background-color: #fff;
	position: relative;
	border-radius: 2px;
	padding: 15px 20px 15px 15px;
}
.employees__item-inner {
	padding-right: 50px;
}
.employees__info {
	margin-top: 3px;
}
.employees__name {
	color: #333;
	font-weight: 500;
	line-height: 1;
}
.employees__name:hover {
	color: #00b9eb;
	text-decoration: none;
}
.employees__info-separator {
	margin: 0 5px;
}
.employees__email {
	color: #0073aa;
}
.employees__status {
	display: inline-block;
	width: 10px;
}
.employees__status.active {
	color: #00bd9b;
}
.employees__status.disabled {
	color: #dc3232;
}
.employees__table-acces {
	width: 100%;
	font-size: 13px;
}
.employees__table-acces th {
	background-color: #e3e4e8;
	padding: 5px 10px;
}
.employees__table-acces tr > th:nth-child(2),
.employees__table-acces tr > th:nth-child(3) {
	width: 130px;
	text-align: center;
}
.employees__table-acces tr > td {
	padding: 5px 10px;
}
.employees__table-acces tr > td:nth-child(2),
.employees__table-acces tr > td:nth-child(3) {
	text-align: center;
}
.employees__table-acces tbody tr {
	border-bottom: 1px solid #e3e4e8;
}
.employees__table-acces tbody tr:hover {
	background-color: #f1f1f1;
}
.employees__table-acces .form-control-checkbox {
	display: inline-block;
	padding: 0;
}
