#pg_alerta {
  display: none;
  position: fixed;
  top: 0;
  z-index: 10;
}
.card-container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #263454;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: rgba(243, 243, 243, 0.2);
}
.card-alert {
  width: max-content;
  height: max-content;
  background-color: #e1b783;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  animation-duration: 1s;
  padding: 40px;
  max-width: 50%;
  position: relative; /* Ancla los elementos internos como la X */
}
.card-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  height: 30px;
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
}
.card-header-option img {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.card-body {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
  gap: 20px;
}
.card-title {
  font-size: 25px;
  font-family: b;
}
.card-description {
  font-size: 20px;
  font-family: r;
  text-align: center;
}
.card-footer {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.btn-confirm, .btn-cancel {
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-family: b;
  font-size: 16px;
  transition: 0.3s;
}
.btn-confirm {
  background-color: #263454;
  color: white;
}
.btn-confirm:hover {
  background-color: #1a253d;
}
.btn-cancel {
  background-color: #f3f3f3;
  color: #263454;
}
.btn-cancel:hover {
  background-color: #e0e0e0;
}
