<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
     
.linea {

    width: 80%;
    height: 6px;
    background: #46a2fd;
    border-radius: 6px 0px;
    
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;      

}
    
.modal{
	/*position: fixed;
	align-items: center;
	justify-content: center;
	
	left: 0px;
	background: rgba(0,0,0,0.5);
	transition: all 500ms ease;
	opacity: 0;
	visibility: hidden;
	z-index:5;
	*/
  align-items: center;
  background-color: red;
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all .3s cubic-bezier(0.39, 0.575, 0.565, 1);
  visibility: hidden;
  width: 100%;	
  z-index:5;
	

}

.modal:target {

    opacity: 1;
    pointer-events: auto;
}



#btn-modal:checked ~ .modal{
	opacity: 1;
	visibility: visible;

} 
#btn-modal1:checked ~ .modal{
	opacity: 1;
	visibility: visible;
}

#btn-modal2:checked ~ .modal{
	opacity: 1;
	visibility: visible;
} 

.contenedor{
    width: 60%;
	/*width: 950px;
	height: 580px;*/
	margin: auto;
	background: #fff;
	box-shadow: 1px 7px 25px rgba(0,0,0,0.6);
	transition: all 500ms ease;
	position: relative;
    border-radius: 15px 15px 0 0;	
	transform: translateY(-30%);
	
}
#btn-modal:checked ~ .modal .contenedor {
	transform: translateY(05%);
}
#btn-modal1:checked ~ .modal .contenedor {
	transform: translateY(0%);
}

#btn-modal2:checked ~ .modal .contenedor {
	transform: translateY(0%);
}



.contenedor header {
	padding: 10px;
    background:#202084;
    color:white;	
	/*background: #db8046;
	color: #fff;*/
    margin-top: 0px;	

}

.estilo {
     /*width: 950px;*/
    height: 56px;
    width: 100%;
    /* max-width: 1200px; */
    position: relative;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;  
}    


.map-responsive{

    overflow:hidden;

    padding-bottom:56.25%;

    position:relative;

    height:0;
    width:0;

}


.map-responsive iframe{

    left:0;

    top:0;


    width:100%;
    height:100%;

    position:absolute;

}




.contenedor header label{
	/*padding: 10px;*/
    /*background:#202084;*/
    color:white;
    
    
	/*background: #db8046;
	color: #fff;*/
    margin: 0 auto;

     width: 40px;
     height: 40px;
    border-style: none;     
    
    
    padding-top: 05px; 
    padding-left:05px;
    
/*     -moz-border-radius: 50%;
     -webkit-border-radius: 50%;
     border-radius: 50%;*/

}

.contenedor header label:hover{
    background-image: url(../images/cerrar-balco-azul.png);
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center center;
}   


.contenedor label{
	position: absolute;
	top: 05px;
	right: 05px;
	color: #fff;
	font-size: 15px;
	cursor: pointer;
	/*background: #008ac7;*/

}


.contenido{
	width: 100%;
	height: 570px;
	padding: 10px;
}
.contenido h3{
	margin-bottom: 10px;
	font-size:17px;
	font-weight:bold;
}
.contenido p{
	margin-bottom: 7px;
}

.contenido img{
	margin-bottom: 0px;
	width:100%;
}

#btn-modal{
	display: none;
}

#btn-modal1{
	display: none;
}

#btn-modal2{
	display: none;
}

.lbl-modal{
	/*background: #fff;
	padding: 10px 15px;
	border-radius: 4px;
	cursor: pointer;*/
	
    /*padding: 100px 0px;*/
    font-size: 66px;
    background: none;
    border-style: none;
    border: 1px solid white;
    color: white;
    /*margin-top: 10px;*/
    transition: background 300ms;
    cursor: pointer;
    margin-left: 0px;
    position:relative;
    float:none;	
     /*margin-top: 40px;*/
     border-radius: 6px;

	
	/*
    padding: 10px 20px;
    font-size: 16px;
    background: none;
    border-style: none;
    border: 1px solid white;
    color: white;
    margin-top: 10px;
    transition: background 300ms;
    cursor: pointer;
    margin-left: 0px;
    position:relative;
      float:none;
      */
	
	
}


@media only screen and (min-width:320px) and (max-width:768px){
	.contenedor{
		width: 95%;
	}
	.contenido{
	width: 100%;
	height: 570px;
	padding: 10px;
}
}


</pre></body></html>