/*




*/
#cookie-notice,
#cookie-notice * {
  box-sizing: border-box;
  text-align: center;
}
#cookie-notice,
#cookie-notice p,
#cookie-notice-button {
  font-size: 13px;
  line-height: 1.3;
  margin: 0;
}
#cookie-notice {
  bottom: 0;
  left: 0;
  margin: 0;
  max-height: 0;
  padding: 1rem;
  position: fixed;
  width: 100%;
  z-index: 32123;
  /**/
  background-color: rgb(241, 135, 61);
  color: white;
}
/*



*/
#cookie-notice a {
  color: white;
  text-decoration: underline;
}
#cookie-notice #cookie-notice-button {
  background-color: rgba(255, 255, 255, .1);
  border: 0;
  cursor: pointer;
  display: block;
  line-height: 1;
  padding: 6px 10px;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /**/
  color: inherit;
  font-size: 14px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  
  }
#cookie-notice #cookie-notice-button:hover {
  background-color: rgba(255, 255, 255, .25);
}
/** /
html[data-cookie-notice="visible"] body {
  padding-bottom: 48px;
}
/*




*/

#cookie-notice .container {
  margin: 0 auto;
  padding: 0 15px;
  max-width: 1024px;
}
@media (max-width: 1800px ) {
  #cookie-notice .container {
    margin: 0 auto;
    padding: 0 45px 0 15px;
  }  
}
/*




*/
[data-cookie-notice="hidden"]
#cookie-notice {
  display: none !important;
  height:0 !important;
  opacity: 0;
  overflow:hidden;
}
[data-cookie-notice="visible"]
#cookie-notice {
  display:block;
  max-height: none;
}
[data-cookie-notice="visible"]
body {
}
/*




*/
[data-cookie-notice-position="top"]
#cookie-notice {
  box-shadow: 0 -10px 10px 5px rgba(0,0,0,.5);
  height: 13rem;
  max-height: 13rem;
  top: -13rem;
  -webkit-transition-property: top, opacity, height;
  transition-property: top, opacity, height;
}
[data-cookie-notice-position="top"]
body {
  padding-top: 0;
}
[data-cookie-notice-position="top"][data-cookie-notice="visible"]
body {
  padding-top: 13rem;
  -webkit-transition-property: padding-top;
  transition-property: padding-top;
}
[data-cookie-notice-position="top"][data-cookie-notice="visible"]
#cookie-notice {
  top: 0;
  opacity: 1;
}
/*




*/
@media print {
  body {
    padding-top:0 !important;
  }
}