/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  color: #000;
  padding: 20px;
  font-family: sans-serif;
  font-size: 14px;
  border-top: 1px solid #ccc;
  z-index: 10000;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.cookie-banner {
  display: none !important; /* hidden by default */
}

.cookie-banner p {
  flex: 1 1 60%;
  margin: 0 10px 10px 0;
}

.cookie-buttons {
  flex: 1 1 35%;
  text-align: right;
}

.cookie-buttons a,
.cookie-buttons button {
  margin-left: 8px;
  padding: 8px 16px;
  border: 1px solid #000;
  background: transparent;
  color: #000;
  cursor: pointer;
  transition: 0.3s;
}

.cookie-buttons button.filled {
  background: #000;
  color: #fff;
}

.cookie-buttons a {
  text-decoration: underline;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10001;
}

.cookie-modal.hidden {
  display: none;
}

.cookie-modal-content {
  background: #fff;
  color: #000;
  padding: 30px;
  max-width: 450px;
  width: 90%;
  border-radius: 0px;
font-family: 'Rubik',sans-serif;
font-size: 14px;
  line-height: 20px;
text-align: justify;
}

.cookie-modal-content h2,
.cookie-modal-content h3 {
  margin-top: 0;
}

.cookie-modal-content ul {
  list-style: none;
  padding: 0;
}

.cookie-modal-content li {
   display: flex;
  justify-content: space-between;
  align-items: center;
position:relative;
}

.cookie-modal-content .always-active {
/*   font-weight: bold; */
}

.cookie-modal-content .info-link,
.cookie-modal-content a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: underline;
  color: #000;
font-size: 12px;
}

.cookie-modal-buttons {
   display: flex;
  justify-content: end;
  margin-top: 20px;
  text-decoration: underline;
}

.cookie-modal-buttons button {
  padding: 10px 20px;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  cursor: pointer;
}

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #000;
}

input:checked + .slider:before {
  transform: translateX(20px);
}
