/*Ventana de errores en mensajes*/
.modal_wrap_revista{
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  position: fixed;
  top: 0%;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mensaje_modal_revista{
  background: #fff;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.5);
  border-radius: 5px;
  width: 400px;
  height: 460px;
  padding: 30px 20px 15px;
}
.mensaje_modal_revista img{
  width: 40px;
  float: left;
  margin-top: -15px;
  margin-right: 25px;
}
.mensaje_modal_revista h3{
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}
.mensaje_modal_revista h3:after{
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: #C5C5C5;
  margin: 10px 0px 15px;
}
  
.mensaje_modal_revista p{
  font-size: 16px;
  color: #3f3f3f;
  /* text-align: center; */
}
.mensaje_modal_revista p:before{
  content: '*';
  font-family: FontAwesome;
  display: inline-block;
  color:#005e3b;
  margin-right: 8px;
}
.mensaje_modal_revista form{
  padding: 10px;
  margin-top: 20px;
  height: 140px;
  border:1px solid green;
  border-radius: 4px;
}
.mensaje_modal_revista form label{
  font-size: 14px;
}
.mensaje_modal_revista form input{
  position: relative;
  text-align: center;
  margin-top: 5px;
  margin-bottom: 15px;
  width: 100%;
  height: 25px;
}
.mensaje_modal_revista form .n-revista{
  display: none;
}
.mensaje_modal_revista form .recordar{
  width: 90%;
  height: 25px;
  margin-top: 10px;
  display: flex;
}
.mensaje_modal_revista form .recordar .ace{
  width: 15px;
  color: darkgrey;
  margin-top: auto;
  margin-bottom: auto;
}
.mensaje_modal_revista form .recordar .ace:checked ~ {
  color:#005e3b;
  background-color: #005e3b;
}

  
.mensaje_modal_revista #btnAcceder{
  padding: 5px 20px;
  width: 150px;
  height: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
  background: #005e3b;
  color: #fff;
  font-size:15px;
  border:none;
  border-radius: 3px;
  cursor: pointer;
  float: left;
  transition: 0.3s;
}
.mensaje_modal_revista #btnAcceder:hover{
  background: #95ce5e;
} 
.mensaje_modal_revista #btnClose{
  padding: 5px 20px;
  width: 90px;
  height: 30px;
  margin-top: 30px;
  margin-bottom: 40px;
  background: #005e3b;
  color: #fff;
  font-size:15px;
  border:none;
  border-radius: 3px;
  cursor: pointer;
  float: right;
  transition: 0.3s;
} 
.mensaje_modal_revista #btnClose:hover{
  background: #95ce5e;
}

.mensaje_modal_revista form .recordar .lbl{
  padding-left: 20px;
  margin-top: auto;
  margin-bottom: auto;

}
.mensaje_modal_revista form .recordar .lbl a{
  color:#005e3b;
  cursor: pointer;
  font-weight: 530;
  transition: .2s ease-in-out;
}
.mensaje_modal_revista form .recordar .lbl a:hover{
  color: #95ce5e;
}


@media (min-width: 1441px) and (max-width: 1660px){


}

@media (min-width: 1281px) and (max-width: 1440px){
    .mensaje_modal_revista{
        width: 360px;
    }
    .mensaje_modal_revista form .recordar{
        width: 100%;
    }
    .mensaje_modal_revista form .recordar .lbl{
        padding-left: 10px;
    }

}

@media (min-width: 1023px) and (max-width: 1280px){
    .mensaje_modal_revista{
        width: 360px;
        height: 440px;
    }
    .mensaje_modal_revista form .recordar{
        width: 100%;
    }
    .mensaje_modal_revista form .recordar .lbl{
        padding-left: 10px;
    }

}

@media (min-width: 720px) and (max-width: 1022px){
    .mensaje_modal_revista{
        width: 340px;
        height: 420px;
    }
    .mensaje_modal_revista form input{
        border: 1px solid grey;
      }
    .mensaje_modal_revista form .recordar{
        width: 100%;
    }
    .mensaje_modal_revista form .recordar .lbl{
        padding-left: 15px;
        font-size: 14px;
    }
    .mensaje_modal_revista #btnAcceder{
        padding: 5px 20px;
        width: 130px;
        height: 30px;
        margin-bottom: 20px;
    } 
    .mensaje_modal_revista #btnClose{
        padding: 5px 20px;
        width: 90px;
        height: 30px;
        margin-bottom: 20px;
    } 
    
}

@media (min-width: 430px) and (max-width: 719px){
    .mensaje_modal_revista{
        width: 340px;
        height: 420px;
        margin-top: -270px;
    }
    .mensaje_modal_revista p{
        font-size: 14px;
    }
    .mensaje_modal_revista form input{
        border: 1px solid grey;
      }
    .mensaje_modal_revista form .recordar{
        width: 100%;
    }
    .mensaje_modal_revista form .recordar .lbl{
        padding-left: 15px;
        font-size: 14px;
    }
    .mensaje_modal_revista #btnAcceder{
        padding: 5px 20px;
        width: 130px;
        height: 30px;
        margin-bottom: 20px;
    } 
    .mensaje_modal_revista #btnClose{
        padding: 5px 20px;
        width: 90px;
        height: 30px;
        margin-bottom: 20px;
    } 

}

@media (min-width: 200px) and (max-width: 429px){
    .mensaje_modal_revista{
        width: 310px;
        height: 390px;
        margin-top: -270px;
    }
    .mensaje_modal_revista h3{
        font-size: 18px;
    }
    .mensaje_modal_revista p{
        font-size: 13px;
    }
    .mensaje_modal_revista form input{
        border: 1px solid grey;
      }
    .mensaje_modal_revista form .recordar{
        width: 100%;
    }
    .mensaje_modal_revista form .recordar .lbl{
        padding-left: 15px;
        font-size: 13px;
    }
    .mensaje_modal_revista #btnAcceder{
        padding: 5px 20px;
        width: 130px;
        height: 30px;
        margin-top: 15px;
        margin-bottom: 15px;
    } 
    .mensaje_modal_revista #btnClose{
        padding: 5px 20px;
        width: 90px;
        height: 30px;
        margin-top: 15px;
        margin-bottom: 15px;
    } 

}



