.cookie__banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2b2b2b;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.cookie__text {
  font-size: 14px;
  line-height: 1.4;
}

.cookie__privacy-link,
.cookie__privacy-link:hover,
.cookie__privacy-link:active,
.cookie__privacy-link:focus-within {
  color: #ffffff;
  text-decoration: underline;
}

.cookie__privacy-link:hover {
  color: #aaaaaa;
}

.cookie__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie__btn {
  padding: 5px 25px;
  border-radius: 20px;
  background: #2665bd;
  color: white;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  border: none;
  cursor: pointer;
}

.cookie__btn:hover {
  box-shadow: 0 5px 15px rgba(250, 250, 250, .25), 0 5px 10px rgba(250, 250, 250, .22);
  transition: all .5s ease-out;
}

.cookie__partial-btn {
  background: #ffffff;
  color: #000000;
}

.cookie__modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: flex-start;
  z-index: 2000;
  overflow-y: auto;
}

.cookie__modal-content {
  background: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  max-width: 100%;
}

.cookie__modal-title {
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  color: #000;
}

.cookie__modal-form {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 0 50px;
  margin: 30px 0;
  gap: 30px;
}

.cookie__modal-checkbox-wrapper {
  text-align: start;
}

.cookie__modal-label {
  font-size: 20px;
  font-weight: 700;
}

.cookie__modal-input {
  margin: auto 0;
}

.cookie__modal-label-text {
  margin: 10px 0 0;
}

.cookie__modal-accept {
  padding: 7px 35px;
  border-radius: 20px;
  background: #2665bd;
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  border: none;
  cursor: pointer;
}

.cookie__modal-accept:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, .25), 0 5px 10px rgba(0, 0, 0, .22);
  transition: all .5s ease-out;
}

@media (min-width: 768px) {
  .cookie__banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie__text {
    max-width: 70%;
  }

  .cookie__buttons {
    flex-wrap: nowrap;
  }

  .cookie__btn {
    line-height: 1;

  }

  .cookie__modal-content {
  background: white;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  max-width: 70%;
  }
}