.modal {
  position: fixed;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0.4);
  z-index: 9999;

  text-align: initial !important;
}
.closed {
  display: none;
}
.aviso-container {
  width: 50vw;
  height: 80vh;
  background-color: white;
  margin: auto;
  border-radius: 10px;
}
.close-btn {
  background-color: lightgray;
  color: gray;
  border-radius: 64px;
  width: 25px;
  height: 25px;
  text-align: center;
  margin-left: 100%;
  cursor: pointer;
  transition: 0.2s;
}
.close-btn:hover {
  transform: scale(1.02);
}
.alert-logo {
  width: 13px;
}
.alert {
  cursor: pointer;
}
.header-aviso {
  background-color: #f3f3f3;
  padding: 24px 56px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  box-shadow: 0px 2px 5px rgba(104, 104, 104, 0.664);
  color: red;
  font-weight: 700;
}
.header-aviso p {
  letter-spacing: 3px;
}
.text-aviso {
  font-size: 12px;
  height: 45vh;
  overflow: scroll;
  overflow-x: hidden;
  padding: 24px 56px;
}
@media (max-width: 991px) {
  .aviso-container {
    width: 100vw;
    height: 100vh;
    background-color: white;
    margin: 0;
  }
  .header-aviso {
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
  }
}
