.cookie-bar-wrapper-inner.container {
    margin-right: auto;
    margin-left: auto;
}

.cookie-bar-wrapper {
    display:none;
    position:fixed;
    bottom:0;
    left:0;
    z-index:2000;
    width:100%;
    padding: 15px 0;
    background-color: rgba(7, 61, 95, 0.95);
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
}
.cookie-bar-wrapper-text a {
    color: #fff;
    font-weight: bold;
    text-decoration: underline;
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -ms-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}
.cookie-bar-wrapper-text a:hover {
    color: #ccc;
}
.cookie-bar-accept {
    display: block;
    background-color: #cce7fc;
    border: none;
    color: rgb(41, 127, 181);
    font-weight: bold;
    padding: 8px 15px;
    margin: 5px auto;
    cursor: pointer;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all 0.15s ease-in-out;
    -moz-transition: all 0.15s ease-in-out;
    -ms-transition: all 0.15s ease-in-out;
    -o-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
}
.cookie-bar-accept:hover {
    background-color: #b3d2e5;
}
@media screen and (min-width: 1200px) {
    .cookie-bar-wrapper-inner {
        display: flex;
        flex-flow: row nowrap;
    }
    .cookie-bar-wrapper-text {
        flex: 1 1 auto;
        padding-right: 15px;
    }
    .cookie-bar-accept {
        flex: 0 0 auto;
    }
}