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

  bottom: 0;
  left: 0;

  width: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);

  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;
}

.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-bottom: 15px;
  color: #fff;
}

.cookie-banner__content-title p a {
  text-decoration: none;
  color: #fff;
}

.cookie-banner__content-title p a:hover {
  text-decoration: underline;
}

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

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

.cookie-banner__content-btn .button {
  font-family: "Open Sans", Sans-serif;
  font-size: 14px;
  font-weight: 400;
  fill: #FF00FF;
  color: #FF00FF;
  background-color: #ffffff00;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #FF00FF;
  border-radius: 0px 0px 0px 0px;
}
.cookie-banner__content-btn button:nth-of-type(1):hover {
  border: 1px solid transparent;
}

.cookie-banner__content-btn button:nth-of-type(2) {
  background: #FF00FF;
  color: #fff;
}

.cookie-banner__content-btn button:nth-of-type(2):hover,
.cookie-banner__content-btn button:nth-of-type(2):focus {
  color: #000;
  background-color: #FF00FF!important;
}

.cookie-banner__content-btn .button:hover {
  background-color: #ffffff;
}

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

@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;
  }
}
