/* checkbox */
.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
}
.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}
.slider-boton {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider-boton:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .slider-boton {
  background-color: #2196F3;
}

input:focus + .slider-boton {
  box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider-boton:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}
/* Rounded slider-botons */
.slider-boton.round {
  border-radius: 17px;
}
.slider-boton.round:before {
  border-radius: 50%;
}
/* checkbox */


#barraaceptacion {
display:none;
position: fixed;
margin:auto;
top: 0px;
padding: 25px;

/* height: 30%; */
background-color: rgba(0, 0, 0, 0.8);
color:#fff;
z-index: 99999;
border-style: solid;
border-color: #ffffff;
border-width: 1px;
}
.inner {
width:98%;
margin-left: 1%;
margin-right: 1%;
font-family:verdana;
font-size:12px;
text-decoration:none;
text-align:center;
}

.justify{
  width:  95%;
  text-align: justify;
}
#aviso_01{
color: #000;
}

.boton-acepto { border-style: solid; border-color: #e6e6e6;display:inline-block;padding: 3px;}
.inner a.ok {padding:4px;color: #e6e6e6;text-decoration:none;}
.inner a.info {padding-left:5px;text-decoration:none;color: #e6e6e6;}
.boton-acepto{color: #8a8a8a!important;}

@media (max-width: 480px) {
.inner {font-size:12px;}
#barraaceptacion {height: 100%;width:100%;}
}

