#cookie-question {
  position: fixed;
  bottom: 0;
  font-size: 13px;
  padding: 15px 80px 15px 20px;
  background: #f2f2f2;
  border-radius: 8px;
  border: 1px solid #dddddd;
  color: #2f2e2a;
  left: 25px;
  z-index: 100;
}
#cookie-question-close {
  position: absolute;
  right: 1%;
  top: 5%;
}
#cookie-question-close:after{
  content: '×';
  font-size: 2em;
  color: #fff;
  width: 24px;
  height: 24px;
  background: rgb(23, 23, 23);
  display: block;
  border-radius: 15px;
  text-align: center;
  line-height: .95em;
}
@media only screen and (max-width: 699px){
  #cookie-question {
    padding: 15px 40px 15px 15px;
    left: 1%;
    width: 280px;
    width: -webkit-calc(100% - 2%);
    width: -moz-calc(100% - 2%);
    width: calc(100% - 2%);
  }
}