/*AREA DE DE INGRESO A PLATAFORMA*/
/*VENTANA EMERGENTE DE LOG*/
#a-administracion {
    display: block;
    margin-top: 5px;
    text-decoration: none;
}
#a-administracion:hover{
  color: #f66d05;;
  text-decoration: underline;
}
.div-login{
  background: #fff;
  border:1px solid #f0f0f0;
  color: #bdbdbd;
  min-height: 200px;
  padding: 3px;
  position: fixed;
  right:-300px;/*se esconde al mismo ancho*/
  top:1%;
  visibility:visible;
  width: 280px;
  z-index: 20;
  transition: all 0.3s ease 0s;
}
.mover_login {
    background: #fff;
    border: 1px solid #f0f0f0;
    color: #bdbdbd;
    min-height: 200px;
    padding: 3px;
    position: fixed;
    top: 20%;
    right: 50%;
    margin-right: -140px;/*la mitad del ancho del div*/
    visibility: visible;
    width: 280px;
    z-index: 20;
    transition: all 0.3s ease 0s;
    -webkit-box-shadow: 0px 2px 14px 4px rgba(195,195,195,1);
    -moz-box-shadow: 0px 2px 14px 4px rgba(195,195,195,1);
    box-shadow: 0px 2px 14px 4px rgba(195,195,195,1);
}

.mover-der-izq{
  background:#fff;
  border:1px solid #f0f0f0;
  color: #bdbdbd;
  min-height: 180px;
  padding: 3px;
  position:fixed;
  top:20%;
  right:50%;
  margin-right: -130px;
  visibility: visible;
  width: 250px;
  z-index: 20;
  transition: all 0.3s ease 0s;
      /*sombras*/
  -webkit-box-shadow: 0px 2px 14px 4px rgba(195,195,195,1);
-moz-box-shadow: 0px 2px 14px 4px rgba(195,195,195,1);
box-shadow: 0px 2px 14px 4px rgba(195,195,195,1);
}
.div-login a.a-close, .mover_login a.a-close {
    background: #525252;
    border-radius: 3px;
    display: inline-block;
    color: #fff;
    float: right;
    margin-right: 3px;
    margin-top: 3px;
    padding: 0.2em 0.6em;
    text-decoration: none;
}
.div-acceso h3, .mover-der-izq h3{
  text-align: center;
  margin-top: 2em;
  width: 100%;
}
.frm-acceso{
  background: #fff;
  margin: 0 auto;
  padding-bottom: 10px;
  text-align: center;
  width: 95%;
}

.frm-acceso label, .frm-acceso input{
  display: block;
  color: #525252;
  margin: 0 auto;
  width: 95%;
}
.frm-acceso input[type="email"],.frm-acceso input[type="text"],.frm-acceso input[type="password"]{
  border:1px solid #E2E2E2;
  padding: 5px;
}
.frm-acceso textarea {
    border: 1px solid #E2E2E2;
    color: #525252;
    display: block;
    margin: 0 auto;
    resize: none;
    padding: 5px;
    width: 95%;
}
.frm-acceso input[type="button"],.frm-acceso input[type="submit"]{
  background: #f66d05;
  color:#fff;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 5px;
  height: 30px;
  width: 70%;
}
.frm-acceso input[type="button"]:hover,.boton:hover{
  cursor: pointer;
}
.item-blocks {
    display: block;
}
.item-details {
    /*display: inline-block;*/
    border: 1px solid #c3c3c3;
    background-color: #f66d05;
    color: #fff;
    margin-bottom: 8px;
    margin-top: 5px;
    padding: 5px;
}
.item-details:hover{
  background-color: #585858;
  color:#fff;
}
/*FIN DE VENTANA EMERGENTE*/