#cookiesPopup {
  position: fixed;
  z-index: 10000;
  width: 100%;
  bottom: 0;
}

#cookiesPopup .wrapper {
  margin: 0 auto;
  width: 100%;
  position: relative;
  background-color: #FAFAFF;
}

#cookiesPopup .inner {
  min-height: 35px;
  line-height: 25px;
  font-size: 11px;
  z-index: 1066;
  width: 100%;
  padding: 5px 10px;
  margin: 0px auto;
  text-align: center;
}

#cookiesPopup .agree {
  margin: 0px auto;
  cursor: pointer;
  height: 44px;
  width: 120px;
  line-height: 44px;
  background-color: #F1572A;
  color: #FFF;
  border-radius: 25px;
  display: block;
}

#cookiesPopup .agree:hover, #cookiesPopup .agree:focus {
  background-color: #2586BF;
}

@media (max-width: 768px) {
  #cookiesPopup .inner {
    line-height: 16px;
    text-align: center;
  }
  #cookiesPopup .agree {
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 5px;
  }
}
