.cookie-notification {
  display: none;
  justify-content: space-between;
  align-items: flex-end;
  position: fixed;
  bottom: 15px;
  left: 50%;
  width: 900px;
  max-width: 90%;
  transform: translateX(-50%);
  padding: 25px;
  background-color: seashell;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  z-index: 2000000099;
}

.cookie-notification p {
  margin: 0;
  font-size: 14px;
  text-align: center;
  color: #555;
}

.cookie-notification__pp-link {
    text-decoration: none;
    color: #555;
}

.cookie-notification__pp-link:hover {
    text-decoration: underline;
    color: #555;
}

.cookie-notification__button {
    background-color: burlywood;
    width: 90px;
    height: 35px;
    flex:none;
    font-weight: bold;
    color: #555;
}

@media (min-width: 768px) {
  .cookie-notification_show {
    display: flex;
  }
  .cookie-notification__button {
    margin: 0 0 0 25px;
  }
}

@media (max-width: 767px) {
  .cookie-notification_show {
    display: block;
  }
  .cookie-notification__button {
    margin: 10px auto 0 auto;
    display: block;
  }
}