/*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;
  }
}
.preguntaNotificacion {
  border-top: 1px solid #000;
}
.preguntaNotificacion p {
  text-align: center;
  margin: 0 1rem;
}
.preguntaNotificacion h4 {
  margin-bottom: 0;
}
.btnNotis {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.modalBtn {
  width: 15rem;
  height: 3rem;
  font-family: var(--letra);
  border: 2px solid #f69825;
  border-radius: 5px;
  background-color: #f69825;
  font-weight: 100;
  transition: all 0.3s ease-in-out;
  margin: 1rem;
  font-size: large;
  color: #000;
}
.dobleFecha {
  border: 2px solid #1b849e;
  background-color: #25ccf6;
}
.bloquearUsu {
  border: 2px solid #9e471b;
  background-color: #f67225;
  font-size: larger;
}
.btnNotis {
  color: #000;
}

@media (max-width: 720px) {
  .btnNotis {
    flex-direction: column;
  }
}

.modalBtn:hover {
  cursor: pointer;
  /*   border-color: #ff8c00;
  box-shadow: 0 0 5px #ff8c00; */
}
.divCheckboxs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.divCheckboxs label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--letra);
  cursor: pointer;
  justify-content: center;
}

.divCheckboxs input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #5adbd7;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.divCheckboxs input[type="checkbox"]:checked {
  background-color: #5adbd7;
  border: 2px solid #5adbd7;
  box-shadow: 0 0 5px rgba(90, 219, 215, 0.6);
}
