* {
	padding: 0;
	margin: 0;
}

@import url('https://fonts.googleapis.com/css?family=Titillium+Web');

html, body {
	height: 100%;
	font-family: 'Open Sans', sans-serif !important;
	background: #f5f5f5;
}

#root {
	min-height: 100%;
	position: relative;
}
/* HEADER STYLES */

header {
	/*background: #fda0dc;*/
	color: #fff;
	box-shadow: 1px;
	padding-top: 25px;
	padding-bottom: 25px;
}

header h1, header h3 {
	margin: 0;
}

header h3 {
	font-size: 1.2em;
}

h1, h2, h3 {
	font-weight: 700;
}

/* HEADER STYLES END */


/*NAVIGATION STYLES */
nav {
	background: white;
	border-top: 2px solid #a183ff;
	border-bottom: 2px solid #a183ff;
}

nav ul {
	list-style: none;
	margin-bottom: 0;
	margin-top: 0;
}

nav ul li {
	color: #737373;
	text-decoration: none;
	padding-left: 30px;
	padding-right: 30px;
	font-size: 0.875em;
	/*border-left: 1px solid black;*/
	line-height: 70px;
	font-weight: 700;
	border-right: 1px solid #ebebeb;
	display: inline-block;
	position: relative;

	transition: all 0.15s ease-in-out;
}

nav ul li.active {
	color: #fff;
	background: #a183ff;
	/*border-bottom: 4px solid #ff63b1;*/
}

nav ul li:hover {
	color: #fff;
	background: #a183ff;
	/*border-bottom: 4px solid #ff63b1;*/
}
/*
nav ul li:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 3px;
	bottom: 0;
	left: 0;
	background-color: #ff63b1;
	visibility: hidden;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
}

nav ul li:hover:before, nav ul li.active:before {
	visibility: visible;
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}*/

/*nav ul li:first-child {
	color: #000;
	text-decoration: none;
	padding-left: 0;
	font-size: 17.5px;
	font-weight: 400;
	border: none;
}*/

/*nav ul li:last-child {
	float: right;
}
*/

/*nav div.identity {
	padding-top:14px;
}*/

nav div.identity h1 {
	font-size: 28px;
	margin: 0;
}
nav div.identity h3 {
	font-size: 22px;
	margin:0;
}

/* NAVIGATION STYLES END */

main {
	height: 100%;
	margin-top:20px;
	padding-bottom: 130px;
}

/* GENERAL STYLES */

.title-color {
	color: #a183ff;
}

.left {
	float: left;
}

span.button {
	display: block;
	margin: 0 0 10px;
}

span.button a{
	background: #a183ff;
	border: 1px solid grey;
	border-radius: 5px;
	padding: 5px 20px;
	display: inline-block;
	text-decoration: none;
	color: #f3f3f3;
}

img {
	width: 100%;
}

/* GENERAL STYLES END */

footer {
	clear: both;
	position: absolute;
	bottom: 0;
	height: 100px;
	background: #a183ff;
	color: #fff;
	width: 100%;
}

footer .copyright {
	color: #fff;
	line-height: 100px;
	margin: 0;
}


/*---------- 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;
}

.dialogContentContainer .dialog-head {
	padding: 20px;
	background: #a183ff;
	color: white;
}

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


/*---------- BLOG CATEGORIES STYLES ----------*/

.blogCategoriesContainer {
	box-shadow: 0px 0px 5px black;
	background: rgba(0, 0, 0, 0.8);
	height: 50px;
	width: 300px;
	border-radius: 15px;
	text-align: center;
	cursor: pointer;
}

.blogCategoriesContainer h4 {
	line-height: 50px;
	font-size: 25px;
	font-weight: 700;
}

/*---------- BLOG CATEGORIES STYLES END ----------*/