/* Demo Styles */
html{box-sizing: border-box;}
*{box-sizing: inherit;}
.modal_fer{
  background-color: rgba(0, 0, 0, 0.6);
  width:100%;
  position:fixed;
  height:100%;
  top:0;
  z-index:1001;
}
.modal_cuadro {
  background-color: var(--blanco);
  position: absolute;

  top: 100px;
  left: 20%;
  width: 60%;
  overflow:auto;
  border-radius: 2px;
  padding: 40px 40px 0px 40px;
  max-height: calc(100vh - 200px);
}
.modal_cuadro_dos {
  background-color: var(--blanco);
  position: absolute;

  top: 100px;
  left: 15%;
  width: 70%;
  overflow:auto;
  border-radius: 2px;
  padding: 40px 60px 0px 60px;
  max-height: calc(100vh - 200px);
}
.espaciado_final{
  height: 40px;
}
/* Close Button */
.jh-close {
  position: absolute;
  top: 15px;
  right: 15px;
  outline: none;
  border-radius: 2px;
  width: 30px;
  height: 30px;
  color: var(--blanco);
  background-color: var(--negro);
  cursor: pointer;
  transition: var(--all);
  text-decoration: none;
  text-align: center;
  line-height: 0;
  font-size: 20px;
  font-family: var(--titulos);
  padding-top: 16px;
}
.jh-close:hover {
  background-color: var(--rojo);
}
@media only screen and (max-width : 1100px) {
  .modal_cuadro, .modal_cuadro_dos{left: 2.5%;width: 95%;}
}
@media only screen and (max-width : 900px) {
  .modal_cuadro, .modal_cuadro_dos {
    top: 4%;
    max-height: calc(100vh - 8%);
  }
  .modal_cuadro_dos {
    padding: 40px 3% 0px 3%;
  }
}
@media only screen and (max-width : 600px) {
  .modal_cuadro {
    padding: 40px 3% 0px 3%;
  }
}