.cookiebar {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 100;
  display: flex;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  min-height: 120px;
  max-height: 100%;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background: #ac6b30;
  color: white;
  padding: 20px; }
  @media (max-width: 768px) {
  .cookiebar {
    flex-direction: column; } }
  .cookiebar.hidden {
    bottom: -100vh !important; }
  .cookiebar p {
    color: white;
    font-weight: 400;
    line-height: 26px; }
    .cookiebar p a {
      color: inherit; }
  .cookiebar .ignore_cookie {
    position: absolute;
    right: 10px;
    top: 10px;
    color: black;
    font-size: 12px;
    cursor: pointer; }
  .cookiebar div.accept {
    min-width: 200px;
    margin-left: 6%; }
    .cookiebar div.accept a {
      display: inline-block;
      padding: 10px;
      text-align: center;
      margin-right: 10px;
      background-color: #72725b;
      transition-timing-function: ease-out;
      transition: 0.2s;
      color: #fff;
      cursor: pointer; }
      .cookiebar div.accept a:hover {
        transition: 0.2s;
        background-color: #72725b; }
    @media (max-width: 768px) {
  .cookiebar div.accept {
    margin-left: 0;
    width: 100%; }
    .cookiebar div.accept a {
      width: 100%;
      margin-top: 20px; } }
