:root {
  --lightBlue: #f3fbff;
}

:root {
  --lightBlue: #f3fbff;
}

.a-overlay {
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(1, 105, 120, 0.29);
  backdrop-filter: blur(7px);
  overflow: scroll;
  transition: opacity 0.5s;
}

.a-popup {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 48px 68px 50px;
  box-shadow: 0 60px 100px -20px rgba(0, 50, 57, 0.2);
}
.a-popup__title {
  text-align: center;
  font-size: 1.9375rem;
  font-weight: 700;
  line-height: 2.6875rem;
}
.a-popup__text {
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.625rem;
}
.a-popup__close {
  position: absolute;
  width: 48px;
  height: 48px;
  background: rgba(1, 169, 193, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  top: 0;
  right: 0;
}