/* 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 {
  position: absolute;
  z-index: 9999;
  top: 5%;
  left: 10%;

  width: 80%;

  max-height: 90%;
  /*min-height: 90%;*/
  min-width:280px;
  /*min-height: 90%;*/
  overflow:auto;
  transform: translate(-50%, -50%);
  border-radius: 2px;
}
/* Close Button */
.jh-close {
  position: absolute;
  top: 15px;
  right: 15px;
  outline: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  border: 2px solid #fff;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  text-align: center;
  line-height: 0;
  padding-top: 12.5px;
}
.jh-close:hover {
  color: #ff6666;
  border: 2px solid #ff6666;
}
@media only screen and (max-width : 1100px) {
  .modal_cuadro{left: 2.5%;width: 95vw;}
}