body, html, #root, #wrapper {
	overflow: hidden;
	height: 100%;
	width: 100%;
}

*:not(input) {
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: -moz-none;
    -o-user-select: none;
    user-select: none;
}

.btn:focus,.btn:active {
   outline: none !important;
   box-shadow: none;
}

#content {
	background: white;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
}

#content-wrapper {
	color: #333;
	height: 100%;
}

#pages-wrapper {
	height: 100%;
	overflow: auto;
}

label {
	font-weight: 500;
	font-size: 13px;
	display: block;
	cursor: pointer;
}

input.disabled {
	background: #eaecf4;
}

#offline {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	font-size: 25px;
	color: black;
	text-align: center;
	padding: 20px;
	background: white;
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 9999;
}

#loader {
	display: none;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	font-size: 25px;
	color: black;
	text-align: center;
	padding: 20px;
	background: rgba(255,255,255, 0.2);
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 9999999;
}

#loader img {
	width: 80px;
}

#loader span {
	font-size: 22px;
	text-align: center;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.modal .error {
	color: #cc0000;
	font-size: 14px;
	width: 100%;
	margin-top: 5px;
}

/**
 * Btn default
 */
.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}
.btn-default:focus {
    color: #333;
    background-color: #e6e6e6;
    border-color: #8c8c8c;
}
.btn-default:hover {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}
.btn-default:active {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad;
}


/**
 * SIdebar
 */

.sidebar {
	background: #f8f8f8;
	border-right: 1px solid lightgrey;
}

.sidebar .sidebar-brand {
	height: 70px;
	padding: 10px;
	font-size: 15px;
	color: #333;
	border-bottom: 1px solid lightgrey;
	outline: 1px solid #f8f8f8;
	text-transform: none !important;
}

.sidebar .sidebar-brand img {
	width: 40px;
}

.sidebar .nav-item {
	border-bottom: 1px solid lightgrey;
}

.sidebar .nav-item .nav-link {
	padding: 10px 10px;
	color: #333 !important;
}

.sidebar .nav-item .nav-link span {
	font-size: 20px;
}


/**
 * Topbar
 */
.topbar {
	background: #F8F8F8 !important;
	border-bottom: 1px solid lightgrey;
	height: 70px;
}

.topbar.navbar-light .navbar-nav .nav-item .nav-link {
	color: #333;
}

.topbar.navbar-light .navbar-nav .nav-item .nav-link:hover {
	color: black;
}

.topbar.navbar-light .navbar-nav .nav-item.time .nav-link {
	color: #333 !important;
	cursor: default;
}