.cookie-banner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 700px;
  background: #fff;
  border-radius: 2px;
  z-index: 9999;
  font-family: sans-serif;
  padding: 2rem;
  -webkit-box-shadow: 0px 0px 56px 20px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0px 0px 56px 20px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 0px 56px 20px rgba(0, 0, 0, 0.09);
}
.cookie-banner__container {
  max-width: 800px;
  margin: 0 auto;
}
.cookie-banner__title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
}
.cookie-banner__description {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.cookie-banner__description p {
  line-height: 22px;
}
.cookie-banner__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-top: 1px solid #eee;
}
.cookie-banner__category--label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cookie-banner__category--toggle {
  position: relative;
  width: 42px;
  height: 24px;
  background-color: #ccc;
  border-radius: 12px;
  cursor: pointer;
}
.cookie-banner__category--toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.cookie-banner__category--toggle.is-active {
  background-color: #00796b;
}
.cookie-banner__category--toggle.is-active::after {
  left: 20px;
}
.cookie-banner__category--details {
  font-size: 0.85rem;
  color: #666;
  cursor: pointer;
}
.cookie-banner__buttons {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.5rem;
}
.cookie-banner__buttons button {
  padding: 15px 20px;
  font-size: 0.9rem;
  border-radius: 40px;
  background: none;
  cursor: pointer;
  background-color: #eee;
}
.cookie-banner__buttons button.accept {
  background-color: #00796b;
  color: white;
  border: none;
}
.cookie-banner__buttons button#acceptAllBtn {
  background-color: #00796b;
  color: white;
}

.cookie-manage-btn {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  z-index: 9998;
  padding: 0.5rem 1rem;
  background-color: transparent;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 50px;
}