.cookie_note {
    position: fixed;
    z-index: 150;
    left: 16px;
    right: 16px;
    max-width: 858px;
    margin: auto;
    bottom: 8px;
    background: white;
    border-radius: 8px;
    border: 1px solid #8b8b8b;
    padding: 16px 24px;
    display: none;
}
#cookie_note_container {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
}
.cookie_note .cookie_accept {
    display: inline-block;
    vertical-align: top;
    border: 0;
    font: inherit;
    line-height: inherit;
    text-align: center;
    border-radius: 4px;
    background-color: rgba(0, 0, 0, 0);
    cursor: pointer;
    transition: .3s;
    color: #fff;
    background-color: #a63244;
    padding: 14px;
    width: 100%;
    max-width: 236px;
}
.cookie_note .cookie_accept:hover {
    background-color: #8c182a;
    color: #fff;
    -webkit-transition: .3s;
    transition: .3s;
}
.cookie_note p {
    margin: 0;
}
.cookie_show {
    display: block;
}
