#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 a.button {
    margin-top: 12px;
    background-color: transparent;
    color: black;
    border: 1px solid black;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

#cookie_note a.button:hover {
    background-color: #f0f0f0;
}
#cookie_note.show{
    display: flex;
}