.vs-consent {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  width: min(36rem, calc(100vw - 2rem));
  padding: 1rem;
  border: 1px solid rgba(37, 50, 55, 0.2);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(23, 32, 38, 0.2);
  color: #1c272d;
}

.vs-consent[hidden] {
  display: none;
}

.vs-consent__title {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: 700;
}

.vs-consent__text {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.45;
}

.vs-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vs-consent__button,
.vs-consent-settings {
  min-height: 2.55rem;
  border: 1px solid #263238;
  border-radius: 6px;
  padding: 0.55rem 0.8rem;
  background: #fff;
  color: #263238;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.vs-consent__button--primary {
  background: #263238;
  color: #fff;
}

.vs-consent-settings {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-weight: inherit;
  text-decoration: underline;
}

@media (max-width: 540px) {
  .vs-consent {
    right: 0.75rem;
    bottom: 0.75rem;
    width: calc(100vw - 1.5rem);
  }

  .vs-consent__actions {
    display: grid;
  }
}
