.loader-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	background-color: rgba(0, 0, 0, 0.5);
	display: flex;
	justify-content: center;
	align-items: center;
}
/* loader style */
.loader {
	border: 6px solid #f3f3f3;
	border-radius: 50%;
	border-top: 6px solid #ff0000;
	width: 60px;
	height: 60px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
}	
/* loader animation */
@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}


label{
	font-weight: 600;
}
.form-group{
	margin-bottom: 20px;
}
.form-control{
	appearance: auto;
	-webkit-appearance: auto;
}
.vertical-menu{
	overflow-y: auto;
}

.vertical-menu::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: #F5F5F5;
}

.vertical-menu::-webkit-scrollbar
{
	width: 3px;
	background-color: #F5F5F5;
}

.vertical-menu::-webkit-scrollbar-thumb
{
	background-color: #2a3042;
	border: 2px solid #555555;
}
