#eucookielaw {
  display:none;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: rgba(40,40,40,.9);
  color: white;
  padding: .875rem;
  position: fixed;
  bottom: 0px;
  width: 100%;
  box-sizing: border-box;
  height: 100px;
  transition: height 300ms;
  transition-timing-function: linear;
}

#eucookielaw > div {
  text-align: right;
  margin-right: 1rem;
}

#eucookielaw p {
  margin: .5rem 0;
}
#eucookielaw button {
  margin-left: 1rem;
  min-width: 138px;
}

@media (max-width: 500px) {
  #eucookielaw {
    display:none;
    flex-direction: column;
    height: 180px;
  }
  #eucookielaw > div {
    text-align: center;
    margin-right: 0;
  }

  #eucookielaw button {
    margin-left: 0;
    margin-top: .5rem;
  }

}

#eucookielaw.cookie-accepted {
  height: 1px;
}
