.alb-cookie-popup {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 6px;
  box-sizing: border-box;
  transition: transform 1s, visibility 0s 1s;
  visibility: hidden;
  transform: translateY(200%);
  z-index: 200;
  display: flex;
}

.alb-cookie-popup__visible {
  transition: transform 1s;
  visibility: visible;
  transform: translateY(0);
}

.alb-cookie-popup__text {
  flex: 1;
  color: white;
  padding-right: 10vw;
}

.alb-cookie-popup__btn {
  width: 170px;
  height: 46px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  line-height: 19px;
  letter-spacing: 0em;
  color: #1a1a1a;
  appearance: none;
  white-space: nowrap;
  border: none;
}

.alb-cookie-popup__btn--black {
  border: 1px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
}

.alb-cookie-popup__btns .alb-cookie-popup__btn:not(:last-child) {
  margin-right: 15px;
}

@media screen and (min-width: 1600px) {
  .alb-cookie-popup {
    width: calc(100vw - 60px);
    padding: 25px 30px;
    left: 30px;
    bottom: 30px;
    justify-content: space-between;
    align-items: center;
  }

  .alb-cookie-popup__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0;
  }

  .alb-cookie-popup__btn {
    height: 46px;
    padding: 14px 46px;
    font-size: 14px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 1599px) {
  .alb-cookie-popup {
    width: calc(100vw - 40px);
    padding: 15px 20px;
    left: 15px;
    bottom: 15px;
    justify-content: space-between;
    align-items: center;
  }

  .alb-cookie-popup__text {
    font-size: 14px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0;
  }

  .alb-cookie-popup__btn {
    height: 46px;
  }
}

@media (max-width: 767px) {
  .alb-cookie-popup__btns {
    width: 100%;
    display: flex;
  }
  .alb-cookie-popup {
    width: calc(100vw - 20px);
    padding: 15px 20px;
    left: 10px;
    bottom: 10px;
    flex-direction: column;
    justify-content: flex-start;
  }

  .alb-cookie-popup__text {
    padding-right: 0;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 400;
    line-height: 21px;
    letter-spacing: 0;
    text-align: justify;
  }

  .alb-cookie-popup__btn {
    height: 40px;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    line-height: 19px;
    letter-spacing: 0;
  }
}
