/* Backend Login */

html {
	height: 100%;
}
body {
	background: #fff;
	background-size:cover;
	background-position: center;
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: Helvetica, Arial, sans-serif;
}

#loginWrapper {
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.2);
}

.login_popup {
    width: 350px;
    background-color: transparent!important;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 99999;
    box-shadow: 0px 30px 30px rgba(0,0,0,0.12);
    margin-left: -175px;
}

.login_content {
    background-color: #FFFFFF;
    padding: 0 25px;
}

.login_logo {
	height:200px;
}

#restore_password_email,
.login_content_text #email, .login_content #email {
    width: 223px;
    border: 1px solid rgba(23,23,23,0.12);
    padding: 22px 25px 22px 50px;
    margin: 0;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    background: url("https://www.websitebutler.de/images/0/1193347/email-icon.png") no-repeat 23px 24px;
}


#restore_password_password,
.login_content_text #password, .login_content #password {
    width: 223px;
    border: 1px solid rgba(23,23,23,0.12);
    border-top: 0px;
    padding: 22px 25px 22px 50px;
    margin: 0;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 16px;
    background: url("https://www.websitebutler.de/images/0/1193349/password-icon.png") no-repeat 26px 22px;
}

#loginWrapper button[type="submit"],
#loginWrapper input[type="submit"] {
    width: 350px;
    background-color: #a3cc00;
    border: 0px;
    height: 78px;
    color: #FFF;
    text-transform: uppercase;
    font-family: Helvetica, Arial, sans-serif;
    cursor: pointer;
    font-size: 14px;
    line-height: 78px;
    -webkit-appearance: none;
    border-radius: 0;
    margin-left: -25px;
    bottom: 0px;
    margin-top: 20px;
}
#loginWrapper input[type="submit"]:hover {
    background-color: #B2D610;
}
#loginWrapper input:focus {
    outline:0;
}
#forgot_btn, #back_btn {
    float: right;
    font-size: 11px;
    color: #8f8f8f;
    padding: 7px 4px 0 0;
    text-decoration: none;
}

.error_list {
	background: #f00;
	margin: 0;
	padding: 8px 12px;
	list-style: none;
	color: #fff;
}

/* Loading spinner */
#loading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
}
#welcome {
	margin-top: 2em;
	color: #fff;
	font-size: 1.5em;
	text-align: center;
}
.sk-folding-cube {
  margin: 20px auto;
  width: 60px;
  height: 60px;
  position: relative;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1); 
}
.sk-folding-cube .sk-cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
          animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
      -ms-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}
.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
          transform: scale(1.1) rotateZ(90deg);
}
.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
          transform: scale(1.1) rotateZ(180deg);
}
.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
          transform: scale(1.1) rotateZ(270deg);
}
.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s; 
}
.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}
@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0; 
  } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1; 
  } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0; 
  } 
}

@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
            transform: perspective(140px) rotateX(-180deg);
    opacity: 0; 
  } 25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
            transform: perspective(140px) rotateX(0deg);
    opacity: 1; 
  } 90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
            transform: perspective(140px) rotateY(180deg);
    opacity: 0; 
  }
}