* {
	margin: 0;
	padding: 0;
}

body{
	background:#30373e;
}

/*---------- MENU STYLES ----------*/

.menu-wrapper {
	background:#30373e;
	color: #fff;
}

.menu-wrapper ul li{
	list-style: none;
}

.menu-wrapper ul li a{
	color: #999 !important;
	padding: 8px 12px;
	display: block;
	border-radius: 3px;
}

.menu-wrapper ul li a:hover{
	color: #67d1fe !important;
}

.menu-wrapper ul li a.active{
	background: linear-gradient(45deg, #67d1fe, #479ef5);
	color: white !important;
}

/*---------- MENU STYLES END ----------*/

/*---------- HEADER STYLES ----------*/

.header {
	background:#30373e;
	color: #fff;
}

.header h1{
	font-size: 26px;
	margin: 18px 12px;
}

/*---------- HEADER STYLES END ----------*/

/*---------- DIALOG STYLES ----------*/

.dialogContainer{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow-y: auto;
}

.dialogModal{
	background: #000;
	opacity: 0.5;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 500;
}

.dialogContentContainer{
	margin: 50px auto;
	width: 800px;
	background: #f8f9f9;
	z-index: 501;
	position: relative;
	border-radius: 5px;
}

.dialogContent{
	margin: 20px;
	margin-top: 30px;
}

.dialogButtons{
	overflow: hidden;
	border-top: 1px solid black;
}

.dialogButtons .dialogButtonItem{
	padding: 10px 25px 10px 25px;
	margin: 5px 5px;
	border: 1px solid black;
	border-radius: 3px;
	float: right;
}

/*---------- DIALOG STYLES END ----------*/

/*---------- MAIN STYLES ----------*/

.main-content{
	background:#f8f9f9 !important;
	border-radius: 10px;
}

.main-content .main-header{
	color: #3d4c5a;
	font-size: 20px;
	font-weight: 600;
}

/*---------- MAIN STYLES END ----------*/

/*---------- VALIDATION STYLES ----------*/

.validation-container {
	position: absolute;
	bottom: 20px;
	right: 20px;
	width: 250px;
	background: #f8f9f9;
	min-height:  75px;
	padding: 10px;
	border-radius: 10px;
	z-index: 6000;
	border: 1px solid #30373e;

}

.validation-container.validation-success .checkmark {
	color: green;
}

/*---------- VALIDATION STYLES END ----------*/

/*---------- VALIDATION STYLES ----------*/

.login {
	max-width: 300px;
	margin: 20px auto;
}

.login .login-label{
	display: block;
	font-weight: 600;
}

.login .login-input{
	width: 300px;
	border-radius: 5px;
	border: 1px solid grey;
	height: 30px;
}

.login .login-button{
	width: 300px;
	height: 30px;
	border-radius: 5px;
	border: 1px solid grey;
	font-weight: 600;
	color: white;
	background: linear-gradient(45deg, #67d1fe, #479ef5);
}

/*---------- VALIDATION STYLES END ----------*/