#user-consent-modal{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  max-width:400px;
  background-color:#222;
  color:#fff;
  padding:15px;
  box-sizing:border-box;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:9999;
}
#user-consent-modal button{
  background-color:#556;
  color:#fff;
  border:none;
  padding:10px 15px;
  cursor:pointer;
  border-radius:4px;
}
@media(min-width:768px){
  #user-consent-modal{
    padding:20px;
  }
}