#cookie-banner{
  display: none;
  font-size: 14px;
  position: fixed;
  background: #FFF;
  padding: 1.5rem;
  text-align: center;
  z-index: 1000;
  box-sizing: border-box;
  width: 25rem;
  border-radius: 5px;
  bottom: 1rem;
  left: 1rem;
  border: solid 2px #36318f;
}

#cookie-banner p{
  margin-bottom: 1rem;
  text-align: left;
}

#cookie-banner button{
  padding: 1rem;
  border-radius: 2px;
  background: #FFF;
  margin-right: 1rem;
  border-radius: 4px;
  border: solid 2px #36318f;
  color: #36318f;
  font-weight: bold;
}

#cookie-banner #acceptBtn{
  background-color: #36318f;
  color: #FFF;
  margin-left: 1rem;
}

@media screen and (max-width: 750px) {
  #cookie-banner{
    width: calc(100% - 2rem);
    left: 0;
    margin: 0 1rem;
    box-sizing: border-box;
  }
}