.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  display: flex !important;
  background-color: white;
  border: 1px solid #dee2e6;
  padding: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1001;
}

.cookie-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
}

.cookie-title {
  font-size: 1.2rem;
  font-weight: bold;
}

.cookie-text {
  max-height: 170px;
  overflow-y: scroll;
}

.cookie-settings {
  display: flex;
  flex-direction: row;
}

.cookie-banner .form-switch {
  border: 1px solid #dee2e6;
  padding: 0.5rem 1rem 0.5rem 3rem !important;
  margin: 0.25rem;
}

.form-check-input:checked {
  background-color: #0d6efd !important;
  border-color: #0d6efd !important;
}

.cookie-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cookie-buttons button {
  padding: 0.5rem 1.5rem;
  margin: 0.25rem 0 0.25rem 0;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  width: 100%;
}
.cookie-buttons .accept-all {
  background-color: #6C757D;
  color: white;
}
.cookie-buttons .accept-all:hover {
  background-color: #0d6efd;
}
.cookie-buttons .enable-selection,
.cookie-buttons .decline-cookies {
  background-color: #e9ecef;
  color: black;
}
.cookie-buttons .enable-selection:hover,
.cookie-buttons .decline-cookies:hover {
  background-color: #dee2e6;
}

@media screen and (min-width: 769px) {
  .cookie-banner {
    flex-direction: row;
    justify-content: space-between;
  }
  .cookie-text {
    padding: 0 2rem 0 0;
  }
  .cookie-settings {
    flex-direction: row;
    padding: 1rem 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    justify-content: space-between;
  }
  .cookie-text {
    padding: 0;
  }
  .cookie-settings {
    flex-direction: column;
    padding: 0.5rem 0;
  }
}/*# sourceMappingURL=cookie-consent.css.map */