#cookie_accept {
    color: #fff;
    background-color: #323232;
    padding: 15px;
    font-weight: 300;
    position: fixed;
    right: 0;
    left: 0;
    bottom: -300px;
    z-index: 9998;
    max-width: 100%;
}

#cookie_accept p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
    margin-right: 15px;
}

#cookie_accept strong {
    color: #fff;
}

#cookie_accept p:last-child {
    margin-bottom: 0;
}

#cookie_accept strong {
    font-weight: 700;
}

#cookie_accept a, #cookie_accept_settings a {
    border-bottom: 1px dotted #999;
    color: #999;
    text-decoration: none;
}

#cookie_accept a.ca_btn, #cookie_accept_settings a.ca_btn, #cookie_accept_settings a.ca_btn_secondary {
    border-bottom: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    padding: 0.375rem 0.75rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    color: #fff;
    background-color: #4CAF50;
    margin-top: 5px;
    font-weight: bold;
}

#cookie_accept_settings a.ca_btn {
    margin-top: 0.5rem;
    margin-right: 0.5rem;
}

#cookie_accept_settings a.ca_btn_secondary {
    background-color: #999;
}

#cookie_accept a.ca_close, #cookie_accept_settings a.ca_settings_close {
    border-bottom: none;
    color: #999;
    font: 14px/100% arial, sans-serif;
    position: absolute;
    text-shadow: 0 -1px 0 #000;
    width: 30px;
    height: 30px;
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    text-align: center;
    cursor: pointer;
}

#cookie_accept a.ca_close:after, #cookie_accept_settings a.ca_settings_close:after {
    content: '✖';
    line-height: 30px;
}

#cookie_accept a.ca_settings {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    margin-top: 5px;
    margin-left: 10px;
    line-height: 1.5;
}

#cookie_accept_settings_overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(50, 50, 50, 0.9);
    z-index: 9999;
    display: none;
    overflow: auto;
    overflow-y: scroll;
    position: fixed;
    -webkit-overflow-scrolling: touch;
    outline: 0;
}

#cookie_accept_settings {
    background-color: #323232;
    color: #fff;
    width: 90%;
    margin: 15% auto 0;
    padding: 30px;
    position: relative;
    -webkit-box-shadow: 0 0 40px 0 rgba(0, 0, 0, .25);
    -moz-box-shadow: 0 0 40px 0 rgba(0, 0, 0, .25);
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, .25);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

#cookie_accept_settings h3 {
    margin-top: 0;
}

#cookie_accept_settings h3 + p {
    font-size: 105%;
}

#cookie_accept_settings h4 {
    color: #999;
    margin-top: 0;
}

#cookie_accept_settings p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

#cookie_accept_settings .ca_box {
    margin-top: 30px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

body.ca_open {
    overflow: hidden;
}

@media (min-width: 768px) {
    #cookie_accept {
        min-height: 70px;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    #cookie_accept p {
        margin-left: 15px;
        margin-bottom: 0;
    }

    #cookie_accept .ca_controls {
        min-width: 280px;
        margin-left: 0;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
    }

    #cookie_accept .ca_controls a.ca_settings {
        float: right;
        display: inline-block;
        margin: 0 20px 0;
    }

    #cookie_accept .ca_controls a.ca_btn {
        float: right;
        display: inline-block;
    }

    #cookie_accept_settings {
        width: 60%;
        margin: 10% auto 0;
    }
}