.overlay2 {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;z-index: 5000;
}
.overlay2:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 100px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 35%;
  position: relative;
  transition: all 5s ease-in-out;
}

.popup h2 {
  margin-top: 0;
  margin-bottom: 6px;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #3366FF;
}
.popup .content {
  max-height: 30%;
  overflow: hidden;
}
.popup .continuar {
  transition: all 200ms;
  font-size: 18px;
  font-weight: normal;
  text-decoration: none;
  color: #000;
  background-color: #E6E6E6;
  border-radius: 6px;
  padding:4px;
  margin: 0;
}
.popup .continuar:hover {
  color: #000;
  background-color: #C0C0C0;
}
.popup .salir {
  transition: all 200ms;
  font-size: 18px;
  font-weight: normal;
  text-decoration: none;
  color: #fff;
  background-color: #FA6442;
  border-radius: 6px;
  padding:4px;
}
.popup .salir:hover {
 color: #000;
 background-color: #FF0000;
}
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
    font-size:30px;
	box-shadow: 2px 2px 3px #999;
    z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #FFF;
    background-color:#1ab152;
    animation: shake 1s;
    animation-iteration-count: infinite;
}
.my-float{
	margin-top:16px;
}

.zoom {
  transition: transform .2s; /* Animation */
  margin: 0;
  z-index: 50;
}

.zoom:hover {
  transform: scale(2.0); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
  z-index: 50;
}
.input_user {
color:#000000;
width:150px;
height:32px;
text-align: center;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
font-size: 14px;
font-weight:bold;
background-color: white;
background-image: url('usuario.png');
background-position: 4px 4px; 
background-repeat: no-repeat;
padding: 6px 6px 6px 16px;
margin: 2px;
}
.input_user:hover{ border: 2px solid #FF9900; }

.input_pass {
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
font-size:12px;
font-family:Verdana,Helvetica;
font-weight:bold;
color:#000000;
background:white;
width:150px;
height:32px;
text-align: center;
background-image: url('pass.png');
background-position: 4px 4px; 
background-repeat: no-repeat;
padding: 6px 6px 6px 16px;
margin: 2px;
}
.input_pass:hover{ border: 2px solid #FF9900; }

.submit{
background-color:#ffffff;
border:1px solid #000;
cursor:pointer;
color:#000;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
width:72px;
height:28px;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
margin-right: 4px;
}
.submit:hover{
background-color:#FF6600;
border:1px solid #000;
color:#FFF;
}
.submit_off{
background-color:#ffffff;
border:1px solid #666666;
cursor:pointer;
color:#000;
font-family:Arial, Helvetica, sans-serif;
font-size:12px;
width:72px;
height:28px;
box-sizing: border-box;
border: 2px solid #ccc;
border-radius: 4px;
margin-right: 4px;
}
.submit_off:hover{
background-color:#969696;
border:1px solid #000;
color:#FFF;
}
.acceso2 {
 	width: 100%;
	FONT-SIZE: 14px; COLOR:#000 ; FONT-STYLE: normal;
    background-color: #FFF;
    text-shadow: 2px 2px 2px #C0C0C0;
    margin:4px;
    border-spacing: 10px;
}
.myForm {
  display: none;
  position: fixed;
  top: 32px;
  right: 25px;
  border: 2px solid #000; /*01BCFF*/
  z-index: 5000;
  padding: 20px;
  background-color: white;
  border-radius: 0 0 8px 8px;
  width: 200px;
   -webkit-box-shadow: 4px 4px 10px 0px rgba(0,0,0,0.75);-moz-box-shadow: 4px 4px 10px 0px rgba(0,0,0,0.75);box-shadow: 4px 4px 10px 0px rgba(0,0,0,0.75);
}
@keyframes pulse-animation {
  0% {
   box-shadow 0 0 0 0px #25d36657; rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow 0 0 0 20px rgba(0, 0, 0, 0);
  }
}

@keyframes shake {
   0% { transform translateX(0) }
 25% { transform translateX(5px) }
 50% { transform translateX(-5px) }
 75% { transform translateX(5px) }
 100% { transform translateX(0) }
}