.cookie-modal__wrapper {
  position: fixed;
  bottom: 20px;
  left: 15px;
  right: 15px;
  display: none;
}
.cookie-modal {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  background: #090e34;
  padding: 30px 50px;
  border-radius: 15px;
  box-shadow: 0 0 20px #333;
}
.cookie-modal__text {
  font-size: 22px;
  color: #fff;
}
.cookie-modal__btn {
  background: linear-gradient(45deg, #3328a9, #4a3ee0);
  border-radius: 15px;
  color: #fff;
  padding: 12px 40px;
  text-transform: uppercase;
  font-size: 17px;
}
@media (max-width: 800px) {
  .cookie-modal {
    gap: 20px;
    padding: 20px;
  }
  .cookie-modal__text {
    font-size: 18px;
  }
  .cookie-modal__btn {
    padding: 12px 15px;
    font-size: 16px;
  }
}
