.GDPR-tools-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin:0 auto;
  /* max-width:1367px; */
  overflow: hidden;
  transform: translate3d(0,0,0);
  padding: 10px;
  z-index: 9001;
  font-size: 16px;
  /* https://www.smashingmagazine.com/2015/11/using-system-ui-fonts-practical-guide/ */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", "Helvetica", sans-serif;
  box-sizing: border-box;
}
.GDPR-tools-consent.dark {
  background: #222;
  color: #fff;
}
.GDPR-tools-consent.light {
  background: #FFF;
  border-top:1px solid #EEE;
  color: #222;
}
.GDPR-tools-consent__message {
  font-size: 0.6em;
  display: block;
  margin: 0;
  padding: 0;
  line-height: 1.5em;
  padding-top:0.2em;
}
.GDPR-tools-consent__message a,
.GDPR-tools-consent__message a:visited {
  cursor:pointer;
  text-decoration: none;
  color: #0091FF;
}
.GDPR-tools-consent__message a:hover,
.GDPR-tools-consent__message a:active {
  text-decoration: none;
  color: #55c8ff;
}
.GDPR-tools-consent .GDPR-tools-consent__btn,
.GDPR-tools-consent .GDPR-tools-consent__btn:visited {
  text-align: center;
  font-size: 0.6em;
  line-height: 1em;
  color: #fff;
  background-color: #0091FF;
  border-radius: 3px;
  padding: 8px 10px;
  display: block;
  width: 20%;
  margin-left: 10px;
  float: right;
  max-width: 150px;
  text-decoration: none;
  transition: background-color 200ms ease-in-out;
}
.GDPR-tools-consent .GDPR-tools-consent__btn:hover,
.GDPR-tools-consent .GDPR-tools-consent__btn:active {
  color: #fff;
}
.GDPR-tools-consent .GDPR-tools-consent__btn.privacy{
  background-color: #9e0303;
} 
/* Windows Metro style */
.GDPR-tools-consent--metro .GDPR-tools-consent__btn,
.GDPR-tools-consent--metro .GDPR-tools-consent__btn:visited {
  border-radius: 0;
}
@media screen and (min-width: 500px) {
  .GDPR-tools-consent .GDPR-tools-consent__btn {
    font-size: 0.8em;
  }
  .GDPR-tools-consent__message {
    font-size: 0.8em;
  }
}
@media print {
  .GDPR-tools-consent {
    display: none;
  }
}
/* Bootstrap's 'md' breakpoint */
@media screen and (min-width: 768px) {
  .GDPR-tools-consent {
    padding: 15px 30px 15px;
  }
  .GDPR-tools-consent .GDPR-tools-consent__btn {
    font-size: 0.95em;
    padding: 8px 15px;
  }
  .GDPR-tools-consent__message {
    font-size: 0.95em;
    line-height: 1.20em;
  }
}
/* Bootstrap's 'lg' breakpoint */
@media screen and (min-width: 992px) {
  .GDPR-tools-consent__message {
    font-size: 0.95em;
  }
}

/* ------   Animations  --------- */
.GDPR-tools-consent.initialEffect,
.GDPR-tools-consent__message {
  animation: slideUp 0.5s;
  -webkit-animation: slideUp 0.5s;

}

.GDPR-tools-consent.hideBar {
  animation: slideUp 0.5s reverse forwards;
  -webkit-animation: slideUp 0.5s reverse forwards;
}
@-webkit-keyframes slideUp {
  0% {
    -webkit-transform: translateY(66px);
    transform: translateY(66px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideUp {
  0% {
    -webkit-transform: translateY(66px);
    transform: translateY(66px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}



/* GDPR Tools */
.GDPR-tools-consent.top {
 top:0;
 bottom: unset;
}
.GDPR-tools-consent.initialEffect.top,
.GDPR-tools-consent.initialEffect.top .GDPR-tools-consent__message {
  animation: slideDown 0.5s;
  -webkit-animation: slideDown 0.5s;

}
@-webkit-keyframes slideDown {
  0% {
    -webkit-transform: translateY(-66px);
    transform: translateY(-66px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes slideDown {
  0% {
    -webkit-transform: translateY(-66px);
    transform: translateY(-66px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.GDPR-tools-consent.top.hideBar {
  animation: slideDown 0.5s reverse forwards;
  -webkit-animation: slideDown 0.5s reverse forwards;
}
.GDPR-tools-consent{
  z-index: 99999;
}
.GDPR-tools-consent {
  background: #222;
  color: #fff;
}
/* .GDPR-tools-consent.light {
  background: #FFF;
  border-top:1px solid #EEE;
  color: #222;
} */