.footer {
	font-size: 10px;
  color: white;
  background: #2e3033;
  text-align: center;
  position: fixed;
  padding: 3px 0 5px;
  display: block;
  width: 100%;
  bottom: 0;
  border-top: 1px solid #ddd;
  margin-top:4%;

}
.modal-contenido{
    margin: auto;
	width: 30%;
	height:20%;
	background: white;
	border-radius: 10px;
}
.modallogin{
  background-color: rgba(0,0,0,.8);
  position:fixed;
  top:0;
  right:0;
  bottom:0;
  left:0;
  opacity:0;
  display: flex;
  pointer-events:none;
  transition: all 0s;

}
#miModal:target{
  opacity:1;
  pointer-events:auto;
}

.ventana {

	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0.8);
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
    animation: ventana 2s 1s forwards;
    visibility: hidden;
    opacity: 0;
    z-index: 1000;
}
.botones {
	width: 100px !important;
	color: white !important;
}
.contenido {
	margin: auto;
	width: 40%;
	background: white;
	border-radius: 10px;
}

@keyframes ventana {
	100% {
		visibility: visible;
		opacity: 1;
	}
}

@media screen and (max-width:768px) {

.contenido {
	margin: auto;
	width: 90%;
	background: white;
	border-radius: 10px;
}

.botones {
	width: 50px;
	margin: 3%;
	color: white !important;
}


}
@media only screen and (max-height: 736px) {
  .footer {
    position:relative
  }
}

.contenido input[type=checkbox]
{
 zoom: 1.5
}

/* Might want to wrap a span around your checkbox text */
.checkboxtext
{
    /* Checkbox text */
    font-size: 110%;
    display: inline;
}
