#cookie-popup {
  position: fixed;
  z-index: 9999;
  left: 30px;
  bottom: 30px;
  width: 330px;
  padding: 20px 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.85);
  color: #eee;
}

#cookie-popup p:first-child {
  margin: 0;
  color: #eee;
  font-weight: 900;
  color: #ffb400;
}

#cookie-popup p:nth-child(2) {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 25px;
}

#cookie-popup .link {
  color: #ffb400;
  text-decoration: none;
}

#cookie-popup button {
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat";
  padding: 8px 0;
  color: #fff;
  background-color: #ffb400;
  cursor: pointer;
}

#cookie-popup button:hover {
  background-color: #be880a;
  color: #fff;
}

@media only screen and (max-width: 450px) {
  #cookie-popup {
    max-width: 95%;
    right: 0;
    bottom: 20px;
    left: 0;
    margin: 0 auto;
  }
}
