#page-wrapper {
        max-width: 800px;
        margin: 100px auto 0;
        display: block;
}
#cookie-popup {
        border: 2px solid black;
        font-size: 13px;
        background-color: rgba(0,0,0,0.8);
        text-align: justify;
        color: black;                                      /* #fff; */
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 8000;
        line-height: 20px;
}
.cookie-popup-inner {
        -webkit-box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.2);
        -moz-box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.2);
        box-shadow: 0px 0px 5px 0px rgba(255, 255, 255, 0.2);
        padding: 20px;
        position: absolute;
        z-index: 9000;
        max-width: 400px;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        background-color: white;                                 /* rgba(0,0,0,1);      */
}
.cookie-popup-inner button {
        background-color: #fff;
        border: 2px solid black;                                         /* #fff; */
        color: #000;
        -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.cookie-popup-inner button:hover {
        background-color: green;                                            /* #c02124;  */
        border: 2px solid green;                                            /*  #c02124; */
        color: #fff;
}
.more a {
        border: 2px solid black;
        line-height: 24px;
        display: block;
        color: black;                                                            /* #ccc; */
        -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.more a:hover,
.more a:focus {
        text-decoration: none;
        background-color: #333;
        color: #fff;
}
.hidden {
        display: none;
}


<!--- ################  aus bootstrap.mini.css ##### -->

.rowB {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px
}

.col-md-6 {
        position: relative;
        width: 100%;
        padding-right: 15px;
        padding-left: 15px
}

.text-center {
        text-align: center!important
}


@media (min-width:768px) {
        .col-md-6 {
                -ms-flex: 0 0 50%;
                flex: 0 0 50%;
                max-width: 50%
        }
        }
