﻿#cookie-notification {
    position: fixed;
    padding: 10px 15px;
    display: none;
    width: 100%;
    font-size: 15px;
    background-color: white;
    bottom: 0;
    z-index: 99999;
    border-top: rgba(0, 0, 0, 0.4) 1px solid;
}

    #cookie-notification a {
        font-weight: bold;
    }

    #cookie-notification .content {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        text-align: center;
    }

    #cookie-notification .accept {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

        #cookie-notification .accept .accept-button {
            margin-left: 15px;
            padding: 10px 20px;
        }
