﻿/* cookie bar */
.cookie-bar {
 display:-webkit-box;
 display:-ms-flexbox;
 display:flex;
 -webkit-box-pack:center;
 -ms-flex-pack:center;
 justify-content:center;
 -webkit-box-align:center;
 -ms-flex-align:center;
 align-items:center;
 width:100%;
 position:fixed;
 bottom:0;
 left:0;
 z-index:1000;
 background:#333;
}
@media screen and (max-width:39.9375em) {
 .cookie-bar {
  -webkit-box-align:center;
  -ms-flex-align:center;
  align-items:center;
  -webkit-box-pack:justify;
  -ms-flex-pack:justify;
  justify-content:space-between;
 }
}
.cookie-bar h4 {
 margin:0;
 padding:0;
 color:#fff;
 font-size: 25px;
}
@media screen and (max-width:39.9375em) {
 .cookie-bar h4 {
  margin:0 1rem;
  font-size:1remM
 }
}
.cookie-bar.cookie-bar-is-hidden-from-start {
 display:none;
}
.cookie-bar.cookie-bar-fade-out {
 -webkit-animation-name:hide-cookie-bar;
 -webkit-animation-duration:.2s;
 -webkit-animation-fill-mode:forwards;
 -webkit-animation-iteration-count:1;
 -moz-animation-name:hide-cookie-bar;
 -moz-animation-duration:.2s;
 -moz-animation-fill-mode:forwards;
 -moz-animation-iteration-count:1;
 -ms-animation-name:hide-cookie-bar;
 -ms-animation-duration:.2s;
 -ms-animation-fill-mode:forwards;
 -ms-animation-iteration-count:1;
 -o-animation-name:hide-cookie-bar;
 -o-animation-duration:.2s;
 -o-animation-fill-mode:forwards;
 -o-animation-iteration-count:1;
 animation-name:hide-cookie-bar;
 animation-duration:.2s;
 animation-fill-mode:forwards;
 animation-iteration-count:1;
}
.cookie-button {
 background:#fff;
 padding:0 2.5rem;
 height:5rem;
 display:-webkit-box;
 display:-ms-flexbox;
 display:flex;
 -webkit-box-pack:center;
 -ms-flex-pack:center;
 justify-content:center;
 -webkit-box-align:center;
 -ms-flex-align:center;
 align-items:center;
 margin-left:8rem;
 font-family:"Exo", sans-serif;
}
@media screen and (max-width:39.9375em) {
 .cookie-button {
  margin-left:0
 }
}
.cookie-button h4 {
 color:#333;
 font-family:"Exo", sans-serif;
}