.cookie-banner {
  position: fixed;
  z-index: 999;

  bottom: 0;
  left: 0;

  width: 100%;
  background-color: rgba(22, 18, 94, 0.6);
  backdrop-filter: blur(10px);

  transform: translatey(100%);
  transition: transform 350ms ease-in-out;
}

.cookie-banner.show {
  transform: translatey(0%);
}

.cookie-banner .container {
  max-width: 1280px;
  width: 100%;
  margin: auto;
}

.cookie-banner__wrap {
  padding: 25px 0;
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.cookie-banner__content-title {
  max-width: 670px;
  width: 100%;
}

.cookie-banner__content-title p {
  margin-top: 0;
  margin-bottom: 15px;
  color: #fff;
  font-size: 18px;
}
.cookie-banner__content-title p  a{
  font-weight: 700;
  color: #fff;
  font-family:  "Inter-bold", sans-serif;
}

.cookie-banner__content-title p  a:visited{
  font-weight: 700;
  font-family:  "Inter-bold", sans-serif;
  color: #fff;
}

.cookie-banner__content-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.cookie-banner__content-btn button {
  padding: 10px 25px;
  max-width: 100%;
  width: 100%;
  cursor: pointer;
  transition: all 0.6s ease;
}

.cookie-banner__content-btn button:not(:last-child) {
  margin-right: 0px;
  margin-bottom: 15px;
}
@media (max-width: 640px){
  .cookie-banner__content-title p {
    margin-top: 0;
    margin-bottom: 15px;
    color: #fff;
    font-size: 16px;
  }
}
@media (min-width: 641px) {
  .cookie-banner__content {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .cookie-banner__content-btn button {
    width: initial;
  }

  .cookie-banner__content-btn button:not(:last-child) {
    /*margin-right: 15px;*/
    margin-bottom: 0px;
  }
}

@media (min-width: 1025px) {
  .cookie-banner__content {
    text-align: left;
    justify-content: space-between;
    flex-direction: initial;
  }

  .cookie-banner__content-title {
    width: 65%;
  }

  .cookie-banner__content-title p {
    margin-bottom: 0px;
  }
}
