.cookie-warning {
  font-size: 105%;
  position: fixed;
  padding: 1rem;
  background-color: #c5d0dd;
  color: #000000;
  z-index: 1337;
  bottom: 0;
  right: 0;
  left: 0;
  transition: .3s transform ease;
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
  display: none;
  border-top: 1px solid #97aac1;
}
.cookie-warning .container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  flex-flow: column;
  text-align: center;
}
body.has-chat .cookie-warning {
  bottom: 36px;
}
.cookie-warning button {
font-family: Hind;
font-weight: 400;
color:#ffffff;
background-color: #0072bc;
margin-left:0px;
margin-bottom:5px;
font-size: 10pt; 
position: relative;
top:0px;
height: 24px;
border:none;
}
.cookie-warning.show {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
