/**
 * @file
 * Cookie consent.
 */

.sc-cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--color-white);
  border-top: 1px solid var(--border-color);
  padding: 1rem;
  text-align: center;
  font-size: var(--font-size-s);
  z-index: 10;
  transform: translateY(100%);
  transition: transform var(--animation-speed) ease;
}

.sc-cookie-consent.is-visible {
  transform: translateY(0);
}

.sc-cookie-consent__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media screen and (max-width: 620px) {
  .sc-cookie-consent__content {
    flex-direction: column;
    gap: .25rem;
  }
}
