/* --- Site gdpr styles --- */
.site-gdpr {
  position: fixed;
  width: 100%;
  bottom: 0;
  color: var(--color-white);
  background-color: var(--color-gray-900);
  padding: 0.9375rem;
  will-change: opacity, transform;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  z-index: 999;
}
.site-gdpr-inner {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .site-gdpr-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.site-gdpr-inner p {
  font-size: 0.8125rem;
}
@media screen and (min-width: 576px) {
  .site-gdpr-inner p {
    margin-bottom: 0;
    margin-right: 1.25rem;
  }
}
.site-gdpr-inner .btn {
  font-size: 0.75rem;
  height: 2.375rem;
}