#cookies-popup {
  box-sizing: border-box;
  width: 100%;
  padding: 12px;
  background: rgba(0, 0, 0, 0.9);
  position: fixed;
  bottom: 0px;
  left: 0px;
  color: white;
  z-index: 1000;
  display: flex;
  align-items: center;
}
#cookies-popup article {
  margin: 0 0 2px 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3em;
}
#cookies-popup article a {
  color: #0000ff;
}
#cookies-popup button {
  background: #dddddd;
  color: black;
  margin: 0 0 0 auto;
  display: block;
  width: fit-content;
  padding: 8px 20px;
  border: none;
  border-radius: 5px;
}
#cookies-popup .less {
  display: none;
}
@media screen and (max-width: 500px) {
  #cookies-popup .less {
    display: block;
  }
  #cookies-popup .more {
    display: none;
  }
}
@media screen and (min-width: 500px) {
  #cookies-popup form {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #cookies-popup form button {
    margin-left: 10px;
  }
}
