/* PRIVACY NOTICE */

.privacy-notice {
  background-color: #333;
  bottom: 0;
  color: #fff; 
  display: none;
  font-family: arial, sans-serif;
  left: 0;
  overflow: hidden;
  position: fixed; 
  width: 100%; 
  z-index: 10;
}

.privacy-notice__wrapper {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 96em;
  padding: 2em; 
}

.privacy-notice__text {
  line-height: 1.617em;
  order: 1;
}

a.privacy-notice__link,
a.privacy-notice__link:hover {
  border-bottom: none;
  color:#fff;
  font-weight: 700;
  text-decoration: underline;
}

.privacy-notice__action {
  align-items: center;
  display: flex;
  margin-top: 2em;
  order: 2;
}

.privacy-notice__button {
  background: #3172ae;
  border: 0;
  color: #fff;
  font-size: 1em;
  font-weight: 500;
  padding: 1em 1.5em;
  transition: color ease 320ms,background ease 320ms;
  white-space: nowrap;
}

.privacy-notice__button:hover {
  background: #fff;
  color: #000;
}

.privacy-notice--accepted {
  animation: hide-notice 1s forwards;
  animation-iteration-count: 1;
}

.privacy-notice--not-accepted {
  display: block;
}

/* MEDIA QUERIES */

@media (min-width: 768px) {
  
  .privacy-notice__wrapper {
    flex-direction: row;
  }
  
  .privacy-notice__text {
    margin-right: 4em;
  }
  
  .privacy-notice__action {
    margin-top: 0;
  }
  
}

/* ANIMATION */
@keyframes hide-notice {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, 100%);
  }
  100% {
    transform: translate(0, 100%);
    display: none;
  }
}