.promo-popup {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 0;
  background: #07111f;
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
  transition: transform .28s ease, opacity .28s ease, visibility .28s ease;
  pointer-events: none;
}

.promo-popup.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.promo-popup .container {
  position: relative;
}

.promo-popup__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 36px 18px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.promo-popup__top {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: 0;
  flex: 1 1 auto;
}

.promo-popup__brand {
  display: block;
  align-items: center;
  justify-content: center;
  flex: 0 0 180px;
  min-height: 72px;
  padding: 12px 18px;
  /*background: var(--gray);*/
	
  /*border-radius: 14px;*/
  overflow: hidden;
}

.promo-popup__brand img {
  display: block;
  width: 100%;
  max-width: 140px;
  height: auto;
}

.promo-popup__copy {
  display: grid;
  /*grid-template-columns: 180px minmax(280px, 1fr);*/
  grid-template-areas:
    "rating title"
    "rating text";
  column-gap: 28px;
  row-gap: 4px;
  align-items: center;
  min-width: 0;
  flex: 1 1 auto;
}

.promo-popup__rating {
  grid-area: rating;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: #ffffff;
  align-self: center;
}

.promo-popup__rating-label {
  opacity: .8;
  color: #ffffff;
}

.promo-popup__rating-star {
  color: #FFB545;
  font-size: 18px;
  line-height: 1;
  margin-top: -1px;
}

.promo-popup__rating-value {
  font-size: 12px;
  color: #ffffff;
}

.promo-popup__title {
  grid-area: title;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #4ea1ff;
}

.promo-popup__text {
  grid-area: text;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
}

.promo-popup__action {
  flex: 0 0 auto;
}

.promo-popup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 64px;
  padding: 16px 28px;
  border: 0;
  border-radius: 16px;
/*  background: #7df20a;*/
	background: #93C738;
  color: #fff;
  font-family: inherit;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color .3s ease, transform .3s ease, box-shadow .3s ease;
	color: #07111f;
}

.promo-popup__btn:hover {
  background: #5fd400;
  box-shadow: 0 10px 24px rgba(95, 212, 0, 0.24);
}

.promo-popup__btn:active {
  transform: translateY(1px);
}

.promo-popup__close {
  position: absolute;
  top: 0;
  right: -18px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(78, 161, 255, 0.20);
  border-radius: 50%;
  background: #0d1830;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.30);
  color: #ffffff;
  cursor: pointer;
  transition: background-color .3s ease, color .3s ease;
}

.promo-popup__close:hover {
  background: #16284d;
  color: #fff;
}

.promo-popup__close svg {
  display: block;
  width: 18px;
  height: 18px;
  pointer-events: none;
}


.promo-popup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.promo-popup__btn svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}


@media (max-width: 991.98px) {
  .promo-popup__inner {
    gap: 16px;
    padding: 16px 34px 16px 0;
  }

  .promo-popup__brand {
    flex: 0 0 145px;
    /*min-height: 64px;*/
	  min-height: auto;
  }

  .promo-popup__brand img {
    max-width: 112px;
  }

  .promo-popup__text {
    font-size: 16px;
  }

  .promo-popup__btn {
    min-width: 180px;
    min-height: 56px;
    padding: 14px 20px;
    font-size: 18px;
  }

  .promo-popup__close {
    top: 8px;
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 575.98px) {
  .promo-popup {
    bottom: 0;
    padding: 0;
  }

  .promo-popup__inner {
    display: block;
    /*padding: 16px 0 18px;*/
	  padding: 16px 0 10px;
  }

  .promo-popup__top {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding-right: 40px;
    margin-bottom: 16px;
  }

  .promo-popup__brand {
	display: block;
    /*min-height: 58px;
    padding: 10px;*/
	padding: 0 5px;
	background: none;
	  
  }

  .promo-popup__brand img {
    max-width: 82px;
  }

  .promo-popup__rating {
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
    font-size: 10px;
  }

  .promo-popup__rating-star {
    font-size: 10px;
  }

  .promo-popup__rating-value {
    font-size: 10px;
  }

  .promo-popup__title {
    font-size: 13px;
  }

  .promo-popup__text {
    font-size: 14px;
  }

  .promo-popup__action {
    width: 100%;
  }

  .promo-popup__btn {
    width: 100%;
    min-width: 0;
  }

  .promo-popup__close {
    top: 8px;
    right: 0;
    width: 34px;
    height: 34px;
  }
}








@media (max-width: 991.98px) {
  .promo-popup__copy {
    grid-template-columns: 150px minmax(220px, 1fr);
    column-gap: 18px;
  }
}

@media (max-width: 575.98px) {
  .promo-popup__top {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding-right: 40px;
    margin-bottom: 0;
  }

  .promo-popup__copy {
    display: block;
    min-width: 0;
  }

  .promo-popup__rating {
    margin-bottom: 8px;
  }

  .promo-popup__title {
    margin-bottom: 4px;
  }
}