#bcCookieBanner {
  position: fixed;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.87);
  width: 100%;
  z-index: 100000;
  transform: translateY(150px);
  -webkit-transition: transform 0.3s ease-out;
  -ms-transition: transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
#bcCookieBanner a {
  color: #FFFFFF !important;
  text-decoration: underline;
}
#bcCookieBanner a:hover,
#bcCookieBanner a:focus {
  text-decoration: underline;
}
#bcCookieBanner.in {
  transform: translateY(0);
}
#bcCookieBanner .inner {
  display: flex;
  flex-direction: row;
  padding: 16px 40px;
  margin: 0 auto;
  color: white;
  align-items: center;
  justify-content: center;
  max-width: 1024px;
}
#bcCookieBanner .inner .text {
  margin-right: 24px;
}
#bcCookieBanner .inner .text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.42857143;
}
#bcCookieBanner .inner .actions button.btn.btn-warning {
  color: #222222;
  background-color: #ffcc36;
  padding: 0 16px;
  line-height: 36px;
  font-size: 14px;
}
#bcCookieBanner .inner .actions button.btn.btn-warning:focus {
  box-shadow: 0 0 0 3px rgba(255, 204, 54, 0.6);
  background-color: #cf9a00;
}
@media (max-width: 767px) {
  #bcCookieBanner .inner {
    padding: 8px 0 8px 16px;
  }
  #bcCookieBanner .inner .text {
    margin-right: 0;
  }
  #bcCookieBanner .inner .actions button.btn.btn-warning {
    line-height: 28px;
    margin: 0 4px;
  }
}

