#privacy-bar-box {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  color: #fff;
  padding: 15px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
}
#privacy-bar-box button {
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}
@media(min-width: 768px) {
  #privacy-bar-box {
    padding: 20px 40px;
  }
}