#cookie_notification {
    display: none;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    bottom: 12px;
    left: 50%;
    width: 90%;
    max-width: 860px;
    transform: translateX(-50%);
    padding: 16px;
    background-color: white;
    border-radius: 4px;
    box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.4);
    z-index: 99;
}

#cookie_notification.show {
    display: flex;
}

#cookie_notification p {
    color: #000;
    font-family: Noto Sans;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    margin-right: 24px;
}

#cookie_notification button {
    font-weight: 510;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    background: #005eff;
    border-radius: 34px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
    width: 70px;
    min-width: 70px;
}

#cookie_notification button:hover {
    background: #0080ff;
}

@media (max-width: 575px) {
    #cookie_notification {
        flex-direction: column;
    }

    #cookie_notification p {
        margin-right: 0;
        margin-bottom: 16px;
        text-align: center;
    }
}