/* @import url('http://fonts.googleapis.com/css?family=Product+Sans'); */
/* Css RESET */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	font-family: 'Arial', Arial, sans-serif;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	background-color:#212121;
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Styling the main wrapper */
#main-wrapper {
	background-image: url("bguslq.png");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	width: 100%;
	height: auto;
	top: 4rem;
	bottom: 4rem;

   	position: absolute; 
	overflow: hidden;
	overflow-y: auto;

	/*animation: fadeIn ease 1s;
	-webkit-animation: fadeIn ease 1s;
}

@media only screen and (min-zoom : 100%)

@keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}

@-moz-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}

@-webkit-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}

@-o-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}
}

@-ms-keyframes fadeIn {
0% {opacity:0;}
100% {opacity:1;}*/
}

/* Styling the login wrapper */
#sub-wrapper {
	margin: 0 0;
	width: 12rem;
	height: 34rem;
	/* background-color:#313131; */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#top-bar {
	width: 32rem;
	height: 32rem;
	margin: 0 0;
	position: absolute;
	/* background-color:#313131; */
	left: 50%;
	transform: translateX(-50%);
}

/* Form height, margin, padding */
form ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

form ul li {
    margin: 0.8rem 0 0 0;
    padding: 0;
}

form * {
    line-height: 1rem;
}

#myLabel, #myButtons {
	padding-top: 0.4rem;
	padding-bottom: 0.4rem;

	text-align: left;
	font-size: 0.9rem;
	color: #808080;
	
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	/*filter:blur(0.2px);*/
-webkit-user-select: none; /* Safari */        
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
}

#myButtons {
	height: 2.0rem;
	text-align: center;
	top: 0.6rem;
	margin: 0.0rem;
	padding: 0.0rem;
}

input, textarea {
  -webkit-appearance: none;
  border-radius: 0.3rem;
}

input {
    font-size: 0.9rem;
    text-align: center;
    border:1px solid #808080;
    outline: none;
    spellcheck="false"
}

input:-webkit-autofill,
input:-webkit-autofill::first-line,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #212121 inset !important;
  -webkit-text-fill-color: #808080 !important;
      spellcheck="false";
      font-size: 0.9rem;
      caret-color: #808080;
}

input[type="text"], input[type="password"] {
	width: 12rem;
	height: 2.0rem;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	background-color: #21212100 !important;
	/*filter:blur(0.2px);*/
	color: #808080;
}

input[type="text"]:focus, input[type="password"]:focus {
	border:1px solid deepskyblue;
}

input[type="submit"], input[type="button"] {
	display:inline-block;
	float:left;
	width: 5.9rem;
	height: 2.8rem;
	margin: -0.1rem;
	background-color: #212121cc;
	/*filter:blur(0.2px);*/
	color: #808080;
	border:1px solid #808080;
	position: relative;
	left: 50%;
	transform: translateX(-100%);
}

input[type="submit"]:hover, input[type="submit"]:active, input[type="button"]:hover, input[type="button"]:active {
	background-color: #4169e1cc;
	color: deepskyblue;
	border:1px solid deepskyblue;
}

.one {
    opacity: 0;
    -webkit-animation: dot 1.3s infinite;
    -webkit-animation-delay: 0.0s;
    animation: dot 1.3s infinite;
    animation-delay: 0.0s;
}

.two {
    opacity: 0;
    -webkit-animation: dot 1.3s infinite;
    -webkit-animation-delay: 0.2s;
    animation: dot 1.3s infinite;
    animation-delay: 0.2s;
}

.three {
    opacity: 0;
    -webkit-animation: dot 1.3s infinite;
    -webkit-animation-delay: 0.3s;
    animation: dot 1.3s infinite;
    animation-delay: 0.3s;
}

@-webkit-keyframes dot {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes dot {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.black_overlay{
	display: none;
	position: absolute;
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	background-color: #212121;
	z-index:10;
	-moz-opacity: 0.0;
	opacity:.0;
	filter: alpha(opacity=0);
}

.white_content {
	display: none;
	position: absolute;
	width: 20rem;
	height: 20rem;
	background-color: #808080;
	z-index:11;
	overflow: auto;
	
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -65%);
}

::selection {
  color: royalblue;
  background-color: deepskyblue; /* WebKit/Blink Browsers */
}
::-moz-selection {
  color: royalblue;
  background-color: deepskyblue; /* Gecko Browsers */
}

input::-ms-clear, input::-ms-reveal{
    display:none;
}