html{
    height: 100%;
}
.body {
	width: 100%;
	height: 100%;
	background-color: #eee;
}
.inner{
    height:100%;
}
.logo {
	display: block;
	margin: 0 auto;
	width: 12%;
	height: 12%;
}
.loginPanel {
	width: 350px;
	margin: 0 auto;
	border-color: #cd2626;
}
.loginPanel > .panel-heading {
	position: relative;
	background-image: none;
	background-color: #cd2626;
	color: white;
	text-align: center;
}
.options {
	position: absolute;
	top: 0;
	right: 0;
}
.optionsBtn {
	background-color: Transparent;
	background-repeat: no-repeat;
	border: none;
	overflow: hidden;
	outline: none;
}
.loginInput {
	padding-bottom: 20px;
}
.messages {
	display: block;
	margin: 0 auto;
	max-width: 350px;
	padding-top: 10px;
	text-align: left; 
}
.messages > span {
	display: block;
	color: red;
}
.glyphicon.spinning {
	animation: spin 1s infinite linear;
	-webkit-animation: spin2 1s infinite linear;
}
@keyframes spin {
	from { transform: scale(1) rotate(0deg); }
	to { transform: scale(1) rotate(360deg); }
}
@-webkit-keyframes spin2 {
	from { -webkit-transform: rotate(0deg); }
	to { -webkit-transform: rotate(360deg); }
}
.flash {
	-moz-animation: flash 1s ease-out;
	-moz-animation-iteration-count: 1;

	-webkit-animation: flash 1s ease-out;
	-webkit-animation-iteration-count: 1;

	-ms-animation: flash 1s ease-out;
	-ms-animation-iteration-count: 1;
}
@-webkit-keyframes flash {
	0% { background-color: transparent; }
	100% { background-color:#228b22; }
}
@-moz-keyframes flash {
	0% { background-color: transparent; }
	100% { background-color: #228b22; }
}
@-ms-keyframes flash {
	0% { background-color: transparent; }
	100% { background-color:#228b22; }
}
#dashboardPanel {
  border-radius: 10px;
  width: 70%;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  overflow: auto;
  position: relative;
  top:5%;
  display: none;
}
.img_container {
    border-radius: 10px;
    background-color: white;
    display: inline-block;
    width: calc(25.0% - 30px);
    margin: 10px;
    border:1px solid black;
}
.img_container:hover {
    
    border:2px solid red;
    
}
img{
    width: 90%;
    margin: 10px;
}
.label{
    font-family: 'Carrois Gothic SC', sans-serif;
    background-color: white;
    color: black;
    padding: 0px;
}
.label:hover{
    /*color:red;*/
    /*border:1px solid black;*/
}
a:hover{
    text-decoration: none;
}
.mobile_device{
    position: relative;
    display: block;
    width: 150px;
    margin: 10px auto;
}
#dashboardRender{
    width:100%;
}
#loginForm{
    width:350px;
    position: absolute;
}
a:focus{
    outline:0;
}
