

/* basic */


body{
	background: #292929;
	font-family: 'Source Sans Pro','Arial' !important;
	font-weight: 400;
	color: #fff;

	margin: 0;
	padding: 0;
	border: 0;
}


a{
	color: #fff;
	text-decoration: none;
	outline: none;
}



div {

	outline: none;
}


li{
	list-style-type: none;
}


.navi{
	top: 35px !important;
}


.view{
	position: relative;
	display: block;
	width: 90%;
	margin: 100px auto 50px auto;
}






/* box model */


*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}





/* system bar */


.bar{
	position: fixed;
	width: 100%;
	height: 35px;
	top: 0;
	left: 0;

	z-index: 1000;
	padding: 0 5%;
	padding-top: 5px;

	background-color: #444;
	border-bottom: 1px solid #555;
}


.bar,
.bar a,
.wording{
	font-size: 0.95em;
	font-weight: 300;
	line-height: 2;
	color: #aaa !important;
}


.bar a{
	transition: all 0.15s ease-out;
	margin-left: 20px;
}


.bar a:hover{
	color: #fff !important;
}


.material-icons{
	vertical-align: middle;
}


.material-icons:before{
	display: inline-block;
	font-size: 0.65em;
	margin-top: -5px;
	margin-right: 5px;
}


.wording i:before{
	content: 'dashboard';
}


.overview i:before{
	content: 'apps';
}


.logout i:before{
	content: 'lock';
}






/* login form */


.view.login{
	width: 100%;
	max-width: 250px;
	background: transparent;
}


.login input,
.login button,
.login .headline{
	position: relative;
	display: inline-block;
	width: 100%;
	border: 0;
}


.headline{
	text-align: center;
	font-size: 1.75em;
	font-weight: 200;
	text-transform: uppercase;
	padding-bottom: 35px;
}


.headline .logo:before{
	content: 'dashboard';
	font-size: 1.5em;
}


.login hr{
	border: 0;
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #fff;

	opacity: 0.35;
	transition: all 0.15s ease-in-out;
}


.login input,
.login button{
	position: relative;
	display: inline-block;
	background: transparent;

	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	padding: 10px 0;

	font-family: 'Source Sans Pro','Arial' !important;
	font-weight: 200;
	font-size: 1.0em;
	color: #fff;

	opacity: 0.35;
	transition: all 0.15s ease-in-out;
}


.login input{
	width: 69%;
	text-align: left;
}


.login button{
	width: 29%;
	text-align: right;
	cursor: pointer;
}


.login input:hover,
.login button:hover,
.login input:focus,
.login button:focus,
.login input:hover ~ hr,
.login button:hover ~ hr,
.login input:focus ~ hr,
.login button:focus ~ hr,
.login .filled,
.login .filled ~ hr{
	opacity: 1;
}


.message{
	width: 100%;
	text-align: center;
	font-size: 1.0em;
	font-weight: 200;
}





/* movie listig */


.movies li{
	position: relative;
	display: inline-block;
	width: 15%;
	min-width: 150px;
	margin-right: 20px;
	margin-bottom: 20px;
}


.movies li img{
	width: 100%;
	transition: all 0.15s ease-out;
}


.movies:hover img{
	opacity: 0.65;
}


.movies li:hover img{
	opacity: 1;
	transform: translateY(-10px);
	-webkit-transform: translateY(-10px);
}


.shadow{
	position: absolute;
	display: block;
	bottom: 5px;

	background: transparent;
	width: 90%;
	left: 5%;

	-webkit-box-shadow: 0 0 10px 5px #000;
	-moz-box-shadow: 0 0 10px 5px #000;
	box-shadow: 0 0 10px 5px #000;

	opacity: 0;
	transition: all 0.15s ease-out;
}


.movies li:hover .shadow{
	opacity: 0.2;
}















