#lexcookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #252e39;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  color: white;
}

#lexcookie-consent a {
  text-decoration: underline;
}

#lexcookie-consent a:hover {
  color: #9CACBF;
}

#lexcookie-consent-text {
  flex: 1;
}

#lexcookie-consent-buttons {
  display: flex;
  gap: 10px;
}

.lexcookie-btn {
  display: block;
  padding: .8em .8em;
  font-size: .9em;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  border-style: none;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
}

.lexbasic-btn {
  color: rgb(255, 255, 255);
  background: transparent;
  text-decoration: underline;
}

.lexbasic-btn:hover {
  color: #9CACBF;
}

.lexfull-btn {
  color: rgb(255, 255, 255);
  background-color: rgb(20, 167, 208);
}

.lexfull-btn:hover {
  background: #1295BA;
}

@media (max-width: 575.98px) {
  #lexcookie-consent {
    flex-direction: column;
  }
  #lexcookie-consent-buttons {
    flex-direction: column;
  }
}