﻿/* TOP BAR LOGIN */
#popup {
   visibility: hidden;
   opacity: 0;
}
#popup:target {
   visibility:visible;
   opacity: 1;
   background-color: rgba(0,0,0,0.8);
   position: fixed;
   top:0;
   left:0;
   right:0;
   bottom:0;
   margin:0;
   z-index: 999;
   transition:all 1s;
}
#popup .popup-contenedor {
  width: 310px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -184px 0px 0px -155px;
  background: rgba(30,144,255,0.9);
  padding: 20px 30px;
  border-radius: 5px;
  box-shadow: 0px 1px 0px rgba(0,0,0,0.3),inset 0px 1px 0px rgba(255,255,255,0.07)
}
#popup a.popup-cerrar {
   position: absolute;
   top:3px;
   right:3px;
   background-color: transparent;
   padding:7px 10px;
   font-size: 20px;
   text-decoration: none;
   line-height: 1;
   color:#fff;
}
#popup a.popup-cerrar:hover {
   position: absolute;
   top:3px;
   right:3px;
   background-color: #E60026;
   padding:7px 10px;
   font-size: 20px;
   text-decoration: none;
   line-height: 1;
   color:#fff;
}

#popup input[type="text"], input[type="password"] {
  width: 250px;
  padding: 25px 0px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  outline: none;
  color: #000;
  font-size: 12px;
}
#popup .input-check{
  display: none;
}
#popup h1{
	color: rgb(255,255,255);
    line-height: 20px;
	margin: 0px, 0px, 20px, 30px;
	font-size: 30px;
	font-weight: 400;
	text-transform: uppercase;
	padding-bottom: 10px;
}

#popup label {
  display: block;
  position: absolute;
  margin-right: 10px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  content: "";
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border: 3px solid #46485c;
  color: #fff;
}

#remember:checked ~ label[for=remember] {
  background: #b5cd60;
}

#popup .input-submit {
  background: #b5cd60;
  border: 0;
  width: 250px;
  height: 40px;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}
#popup .input-submit:hover {
  background: #16aa56;
}


#popup .forgot {
  margin-top: 30px;
  display: block;
  font-size: 11px;
  text-align: center;
  font-weight: bold;
}
#popup .forgot:hover {
  margin-top: 30px;
  display: block;
  font-size: 11px;
  text-align: center;
  font-weight: bold;
  color: #6d7781;
}

.remember {
  padding-top: 20px;
  padding-bottom: 40px;
  font-size: 20px;
  text-indent: 25px;
  line-height: 15px;
}

::-webkit-input-placeholder {
  color: #46485c;
}

[placeholder]:focus::-webkit-input-placeholder {
  transition: all 0.2s linear;
  transform: translate(10px, 0);
  opacity: 0;
}

/* TOP BAR LOGOUT */
#topbar_login { /*float: right; position: relative;*/
    margin-top: 10px; }
#topbar_login.not_logged_in a.topbar_login {
    background: #009846;
    height: 50px;
    width: 50px;
    z-index:0; 
    font-size: 16px;
	padding: 10px;

    -webkit-background-size: 32px 32px;
    background-size: 32px 32px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
#topbar_login a.topbar_login:hover { color: #009CE3 }
#fast-login {  
    position: fixed;
	/*right:1px;*/
	margin-top:10px; 
	display:none; 
	z-index:100; 
	background: rgb(0, 152, 70); background: rgba(0, 152, 70,.89); 
	padding: 0 13px 10px;
	color: #fff;
	
	-moz-border-radius: 10px 0 10px 10px;
	-webkit-border-radius: 10px 0 10px 10px;
	border-radius: 10px 0 10px 10px;
}
#fast-login label{ font-size: 12px; color: #fff; }
#fast-login a { font-size: 14px; color: #fff }
#fast-login a:hover { color: #f40 }

.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../../Images/loading.gif') 50% 50% no-repeat rgb(249,249,249);
    opacity: .8;
}