.alert {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 40%;
  height: auto;
  max-height: 1280px;
  background: #cc1573;
  background: -webkit-linear-gradient(to right, #cc1573, #5722a9);
  background: linear-gradient(to right, #cc1573, #5722a9);
  color: white;
  border: 8px solid white;
  border-radius: 10px;
  z-index: 9999;
  margin: auto;
  position: fixed;
  top: 50vh;
  left: 50vw;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  padding: 20px;

  -webkit-box-shadow: 0px 0px 20px -4px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 20px -4px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 20px -4px rgba(0, 0, 0, 0.5);
}

.alert .more {
  width: 80%;
  margin: 20px 0;
}

.alertTitle {
  margin-top: 0px;
  margin-right: 32px;
  margin-bottom: 30px;
}

.alert p {
  padding: 0px 30px;
  color: white;
  font-size: 15px;
}

.alert i[class] {
  font-size: 28px;
  color: white;
}

.alert h4,
.alert h2,
.alert h3,
.alert h5,
.alert h6 {
  color: white;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.alert a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.alert .info-link {
  display: block;
  width: 40%;
  margin: 30px auto;
  padding: 20px;
  background-color: rgb(51, 51, 185);
  text-align: center;
  color: white;
  font-size: 24px;
  font-weight: bold;
  border-radius: 10px;
}

.alert .info-link:hover {
  background-color: rgb(65, 65, 221);
}

.alert .info-link i {
  margin-left: 10px;
}

.alert a img {
  margin: 2% 2%;
}

.alert .closeBtn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: initial;
  /* display: flex;
    justify-content: flex-end; */
}

.closeBtn img {
  width: 32px;
  height: 32px;
}

.alert div {
  padding-right: 10px;
  overflow-x: hidden;
  overflow-y: auto;
}

.alertTag {
  align-self: center;
  margin-top: 30px;
}

@media screen and (max-device-width: 480px) {
  .alert {
    width: 280px;
    padding: 10px;
  }
}
