.alb-popup {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background: #283a9738;
  position: fixed;
  top: 0;
  bottom: calc(env(safe-area-inset-bottom) + 0);
  left: 0;
  right: 0;
  z-index: -1;
  transition: 0.5s;
  opacity: 0;
}

.alb-popup--visible {
  opacity: 1;
  z-index: 100;
  transition: opacity 0.5s;
}

.alb-popup__cross {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 16px;
  right: 16px;
  background-image: url(./../img/ic-cross.svg);
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.alb-popup__box {
  max-height: 95vh;
  width: 440px;
  transition: 0.5s;
  animation: popup-hide 0.5s;
  background-color: white;
  border-radius: 20px;
  overflow-y: auto;
  position: relative;
}

.alb-popup__banner {
  height: 183px;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px 10px 0 0;
}

.alb-popup__banner--translation {
  background-image: url(./../img/banner-popup-translation.png);
}

.alb-popup__title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
}

.alb-popup__description {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 24px;
}

.alb-popup__description--center {
  text-align: center;
}

.alb-popup__description--mt {
  margin-top: 15px;
}

.alb-popup__description--desktop {
  display: none;
}

.alb-popup__list {
  list-style: decimal;
  padding-left: 20px;
  margin-bottom: 25px;
  font-size: 12px;
}

.alb-popup__video {
  width: 100%;
  border-radius: 8px;
}

.alb-popup__video-box {
  border: 1px solid #d4daec;
  border-radius: 8px;
  margin: 0 0 20px 0;
}

.alb-popup__content {
  padding: 40px;
}

.alb-popup--visible .alb-popup__box {
  transition: 0.5s;
  animation: popup-show 0.5s;
}

.alb-popup__footer {
  font-size: 14px;
  text-align: center;
  margin-top: 30px;
  color: #63677c;
}

.alb-popup__link {
  color: #283a97;
  font-weight: 700;
}

.alb-popup__buttons {
    display: flex;
    width: 100%;
    gap: 12px;
}

.alb-popup__buttons button {
    width: unset;
    flex: 1;
}

@media (max-width: 767px) {
  .alb-popup {
    align-items: flex-end;
  }
  .alb-popup__box {
    border-radius: 20px 20px 0 0;
    width: 100%;
  }
  .alb-popup__description--desktop {
    display: none;
  }
  .alb-popup__banner {
    height: 150px;
  }

  .alb-popup__content {
    padding: 20px;
  }

  .alb-popup__button {
    margin-top: 20px;
  }

  .alb-popup__description {
    margin-bottom: 10px;
  }

  .alb-popup__video-box {
    margin: 0 0 10px 0;
  }
}
