
.cookie_notice_block {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 60px;
    background-color: #222;
    color: #fff;
    font-size: 22px;
    z-index: 9999;
}
.cookie_notice_block > p { margin: 0; }
.cookie_notice_block > button {
    background-color: transparent;
    background-repeat: no-repeat;
    margin-left: 10px;
    padding: 5px 10px;
    border-color: #ccc;
    color: #ccc;
    border-style: dashed;
    border-top: 0;
    border-left: 0;
    border-right: 0;
}
.cookie_notice_block > button:hover {
    border-color: #aaa;
    color: #aaa;
    border: 0;
}
@media only screen and (max-width: 767px) {
    .cookie_notice_block {
        font-size: 16px;
        padding: 0 10px;
    }
    .cookie_notice_block > p {
        text-align: center;
    }
    .cookie_notice_block > button {
        white-space: nowrap;
    }
}