/*
button.button.cookie_accept.btn.btn-primary.btn-sm {
  margin-left: 32px;
  float:right;
  margin-right: 32px;
}
#cookie_note{
  display: none;
  position: fixed;
  bottom: 15px;
  padding: 20px;
  margin-left: 10px;
  margin-right: 10px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
}
#cookie_note p{
  margin: 0;
  font-size: 0.7rem;
  text-align: left;
  color: black;
}
#cookie_note a:hover{
  background-color: var(--ast-global-color-1);
}
@media (max-width: 576px){
  #cookie_note.show{
    display: block;
  }
}
@media (min-width: 575px){
  #cookie_note.show{
    display: block;
    text-align: left;
  }
}
*/
#cookie_note {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    background-color: white;
    color: black;
    border: 1px solid black;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-family: Arial, sans-serif;
    flex-direction: column;
    align-items: flex-start;
    max-width: 464px;
    width: calc(100% - 74px);
    height: auto;
    padding: 16px 16px 24px;
}

#cookie_note p {
    margin: 0;
    font-size: 14px;
}

#cookie_note .title {
  font-size: 20px;
  line-height: 22px;
  font-weight: 800;
  align-items: center;
  margin-bottom: 12px;
}
#cookie_note .button.cookie_accept {
    margin-top: 24px;
    background-color: black;
    color: white;
    border: none;
    padding: 16px 24px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s;
}

#cookie_note .button.cookie_accept:hover {
    background-color: gray;
}
#cookie_note.show{
    display: flex;
}
