/**
 * WaPoNe
 *
 * @category   WaPoNe
 * @package    WaPoNe_CookieNotification
 * @copyright  Copyright (c) 2017 WaPoNe (http://www.fantetti.net)
 * @license    http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
 */

#cookienotification-block {
    /* position: relative; */
    position: fixed;
    left: 0;
    right: 0;
    z-index: 6;
    padding: 10px 20px;
    display: flex;
    line-height: 1.2em;
    font-size: 14px;
    margin: 0;
    align-items: center;
}

#cookienotification-block > p {
    float: left;
    margin-right: 10px;
    width: 48%;
    margin-left: 15%;
}

button#btn-cookienotification-more {
    cursor: pointer;
    padding: 5px;
    font-size: 14px;
    border: solid white 1px;
    float: left;
    margin-right: 10px;
}

button#btn-cookienotification-allow {
    cursor: pointer;
    padding: 5px;
    font-size: 14px;
    border: solid white 1px;
}

@media (max-width: 768px) {
    #cookienotification-block {
        flex-wrap: wrap;
    }

    #cookienotification-block > p {
        width: 100%;
        margin: 2% 5%;
    }

    button#btn-cookienotification-more {
        margin-left: 5%;
    }

}