/**
 * 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: 999999;
    padding: 20px 0;
    display: inline-block;
    margin: 0;
}

#cookienotification-block .cookienotification-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

button#btn-cookienotification-more {
    cursor: pointer;
    padding: 0;
    font-weight: normal;
    border: none;
}

button#btn-cookienotification-more:hover {
    text-decoration: underline;
}

button#btn-cookienotification-allow {
    font-family: 'Source Sans 3', sans-serif !important;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    padding: 0 25px;
    border: 1px solid #c03535;
    font-weight: bold;
}
button#btn-cookienotification-allow:hover {
    background: #c03535 !important;
}
button#btn-cookienotification-allow:hover span {
    color: #fff !important;
}

button#btn-cookienotification-allow span {
    font-weight: normal;
}

.cookienotification-message-content {
    display: inline-block; 
    max-width: calc(100% - 130px);
}

@media (max-width: 639px) {
    button#btn-cookienotification-allow {
        width: 100%;
    }
    .cookienotification-message-content {
        max-width: 100%;
    }
    #cookienotification-block .cookienotification-content {
        gap: 10px;
        flex-direction: column;
    }
}
