.info-alert {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 10px;
  background: rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  z-index: 999;
}

.info-alert.show {
  display: flex;
}

.info-alert__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-height: 500px;
  max-width: 700px;
  padding: 56px 64px 40px;
  border-radius: 2px;
  background: #fff;
}

.info-alert__images {
  width: 100%;
  margin-bottom: 40px;
  border-radius: 4px;
}

.info-alert__title {
  font-weight: 600;
}

.info-alert__description {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 15px;
}

.info-alert__description p {
  margin: 0;
}

.info-alert__description.center {
  text-align: center;
}

.info-alert__table {
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-alert__table-wrapper {
  width: 100%;
  max-width: 405px;
}

.info-alert__table-row {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
}

.info-alert__table-row.last {
  display: flex;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 2px;
  text-align: center;
  background: #eef7fa;
}

.info-alert__table-col {
  padding: 10px 16px;
  border-radius: 2px;
  background: #eef7fa;
}

.info-alert__table-col:first-child {
  max-width: 150px;
  flex: 1;
  color: #074f73;
  font-weight: 600;
  box-sizing: border-box;
}

.info-alert__table-col:last-child {
  flex: 1;
}

.info-alert__button {
  padding: 18px 40px;
  align-self: center;
  border-radius: 2px;
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: #fff;
  background: #0fa3ee;
  transition: all 0.25s;
}

.info-alert__button:hover {
  filter: brightness(120%);
}

.info-alert__close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 16px;
  right: 16px;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  transition: all 0.25s;
  cursor: pointer;
}

.info-alert__close:hover {
  transform: rotate(90deg);
}

@media (width <= 520px) {
  .info-alert {
    padding: 0;
  }
  .info-alert__wrapper {
    padding: 52px 16px 28px;
  }

  .info-alert__description {
    font-size: 13px;
  }

  .info-alert__images {
    display: none;
  }
}
