
/*Ventana modal*/
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 3;
  overflow-wrap: break-word;
}

.modal-content {
  background-color: #ffffff61;
  backdrop-filter: blur(10px);
  margin: 35vh auto;
  padding: 20px;
  border: 1px solid #e8e4e4;
  width: 50%;
  text-align: center;
  border-radius: 15px;
  overflow-wrap: break-word;
  font-size: 1.3rem;
}
.modal-content p,
.modal-content h3,
.modal-content label {
  display: flex;
  justify-content: center;
  text-align: center;
  margin: auto;
  color: #050505;
}
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 720px) {
  .modal-content {
    width: 85%;
    font-size: 1rem;
  }

  .modal-content p {
    text-align: center;
    word-break: break-word;
    font-size: 18px;
    color: #050505;
  }
  .modal-content h3 {
    font-size: 23px;
    color: #050505;
  }
  .modal-content label {
    font-size: 18px;
    font-weight: 500;
    color: #080808;
  }
}