.modal-download-alert {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-download-alert.show {
  display: flex;
  opacity: 1;
}

.modal-download-alert .modal-content {
  position: relative;
  background-color: #fff;
  width: 90%;
  max-width: 420px;
  padding: 32px 28px 28px 28px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(0.85);
  transition: transform 0.3s ease;
}

.modal-download-alert.show .modal-content {
  transform: scale(1);
}

.modal-download-alert .modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
}

.modal-download-alert .modal-close:hover {
  color: #333;
}

.modal-download-alert .modal-title-wrap {
  margin-bottom: 20px;
  text-align: left;
}

.modal-download-alert .modal-title {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  text-align: left;
}

.modal-download-alert .modal-title-sub {
  font-size: 14px;
  color: #999;
  margin-top: 4px;
  text-align: left;
}

.modal-download-alert .modal-body p {
  margin: 0 0 10px 0;
  font-size: 14px;
  line-height: 1.4;
  color: #555;
}

.modal-download-alert .modal-body {
  margin-bottom: 24px;
  padding: 0px;
  text-align: left;
}

.modal-download-alert .modal-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 160px;
  margin: auto;
  padding: 12px 28px;
  background-color: #1451A4;
  color: #fff;
  text-decoration: none;
  border-radius: 24px;
  font-size: 14px;
  /* font-weight: bold; */
}
.modal-download-alert .modal-button * {
  color: #fff;
}

.modal-download-alert .modal-button:hover {
  background-color: #0d3b75;
}

.modal-download-alert .modal-button-wrap {
  text-align: right;
}

.modal-download-alert .modal-button-arrow {
  font-size: 18px;
  line-height: 1;
}
