.cookie-consent-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(28, 28, 28);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  color: #c6c6c6;
  padding: 15px;
  font-size: 15px;
  text-align: center;
  z-index: 1000;

  font-weight: 400 !important;
  font-style: normal !important;
}

.cookie-consent-banner h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.cookie-consent-banner p {
  margin-bottom: 15px;
}

.cookie-consent-button {
  border: none;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 14px;
  margin: 5px 20px;
  cursor: pointer;
  border-radius: 8px;

  transition: 0.3s;
}

.cookie-consent-button:hover {
  box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
}

.cookie-consent-button:active {
  opacity: 0.5;
}

.cookie-consent-button.btn-success {
  background-color: #c6c6c6;
  border: 1px solid rgb(28, 28, 28);
  color: rgb(28, 28, 28);
}

.cookie-consent-button.btn-grayscale {
  background-color: #7c7c7c;
  border: 1px solid rgb(28, 28, 28);
  color: rgb(28, 28, 28);
}

.cookie-consent-button.btn-outline {
  background-color: inherit;
  border: 1px solid #c6c6c6;
  color: #c6c6c6;
}

.cookie-consent-options {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cookie-consent-options label {
  margin: 0 10px;
  font-size: 14px;
}

.cookie-consent-options input {
  margin-right: 5px;
  width: 15px;
  height: 15px;
  accent-color: #c6c6c6;
  margin-bottom: 10px;
}

.cookie-consent-options input:active,
.cookie-consent-options input:focus,
.cookie-consent-options input:hover {
  accent-color: #c6c6c6;
}
