#cookie_note {
  display: none;
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 10px;
  gap: 12px;
  background: #1d1d1d;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  flex: none;
  order: 1;
  flex-grow: 0;
  position: fixed;
  bottom: 8px;
  right: 8px;
  margin-left: 8px;
  max-width: 300px;

  z-index: 999999;
}
#cookie_note p {
  color: #aaaaaa;
  font-size: 0.8rem;
  line-height: 1.1;
  text-align: left;
  margin-block-start: 0;
  margin-block-end: 0;
}
#cookie_note a {
  color: white;
}
.cookie_accept {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8px 16px !important;
  color: #1d1d1d !important;
  background: white !important;
  border: none !important;
  border-radius: 4px !important;
}
@media (min-width: 576px) {
  #cookie_note.show {
    display: flex;
  }
}

@media (max-width: 575px) {
  #cookie_note.show {
    display: flex;
  }
}
