/*CSS DE VENTANA MODAL*/
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}
@font-face {
  font-family: 'Proza libre';
  src: url('../fonts/ProzaLibre-Regular.ttf');
   
}

@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/OpenSans-Regular.ttf');
}
.boton-modal{
  padding: 1%;
  background-color: #fff;
  width: 26.5%;
}
.boton-modal label{
  padding: 10px 15px;
  background-color: #5488a3;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  transition: all 400ms ease;
  display: block;
  text-align: center;
}
.boton-modal label:hover{
  background-color: #dad6d6;
  color: black;
}
#btn-modal{
  display: none;
}
.container-modal{
  width: 100%;
  height: 100vh;
  position: fixed;/*FIJO EN LA PANTALLA*/
  top: 0%; left: 0%;
  background-color: rgba(144, 148, 150, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;/*SIRVE PARA QUE ESTÉ POR ARRIBA DE TODOS LOS ELEMENTOS*/
}
/* REALIZA EL CIERRE DE VENTANA MODAL AL APRETAR EL BOTÓN CERRAR */
#btn-modal:checked ~.container-modal{
  display: flex;
}
.content-modal{
  width: 100%;
  max-width: 700px;
  padding: 20px;
  background-color: #fff;
  border-radius: 5px;
}
.content-modal h2{
  margin-bottom: 15px;
}
.content-modal p{
  padding: 15px 0px;
  border-top: 1px solid #dbdbdb;
  border-bottom: 1px solid #dbdbdb;
}
.content-modal .btn-cerrar{
  width: 100%;
  margin-top: 15px;
  display: flex;
  justify-content: flex-end;
}
.content-modal .btn-cerrar label{
  padding: 7px 10px;
  background-color: #5488a3;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  transition: all 300ms ease;
}
.content-modal .btn-cerrar label:hover{
  background-color: #185E83;
}
.cerrar-modal{
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0; left: 0;
  z-index: -1;
}



