/**
 * 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: fixed;
    left: 0;
    right: 0;
    z-index: 6;
    padding: 10px 20px;
    /*display: block;*/
    line-height: 1.2em;
    font-size: 14px;
    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

#cookienotification-block > p {
    float: left;
    margin-right: 10px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif
}

button#btn-cookienotification-more {
    text-transform: capitalize;
    cursor: pointer;
    font-size: 12px;
    border: solid black 1px;
    float: left;
    margin-right: 10px;
    border-radius:0;
    line-height: 10px;
    height: 30px;
}

button#btn-cookienotification-allow {
    text-transform: capitalize;
    cursor: pointer;
    font-size: 12px;
    border: solid black 1px;
    border-radius:0;
    line-height: 10px;
    height: 30px;
}



@media (max-width: 768px) {
    #cookienotification-block {
        display: block ;
        text-align: center;
    }
    #cookienotification-block > p {
        float: none;
        margin-right: 0px;
    }

    button#btn-cookienotification-more {
        float: none;
    }

}