
#cookie-bar {
    position: fixed;
    top: 25px;
    display: none;
    width: 100%;
    left: 0;
    border: 2px solid #0078af;
    padding: 30px;
    z-index: 99999999999;
    background: white;
    color: black;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
}

#cookie-bar:after {
    content: '';
    display: block;
    clear: both;
}

.cookie-text {
    float: left;
    width: 80%;
}


.cookie-btn {
    float: right;
    width: 20%;
}

.cookie-btn button {
    background-image: -webkit-gradient(
            linear,
            left top,
            left bottom,
            color-stop(0, #0078af ),
            color-stop(1, #015c87 )
    );
    background-image: -o-linear-gradient(bottom, #0078af  0%, #015c87  100%);
    background-image: -moz-linear-gradient(bottom, #0078af  0%, #015c87  100%);
    background-image: -webkit-linear-gradient(bottom, #0078af  0%, #015c87  100%);
    background-image: -ms-linear-gradient(bottom, #0078af  0%, #015c87  100%);
    background-image: linear-gradient(to bottom, #0078af  0%, #015c87  100%);
    color: #fff;

    white-space: normal;
    border-radius: 9px;
    text-transform: uppercase;
    display: block;
    border: none;
    font-size: 14px;
    font-weight: 600;
    padding: 15px;
}

.cookie-btn button:hover {
    background-image: -webkit-gradient(
            linear,
            left bottom,
            left top,
            color-stop(0, #015c87),
            color-stop(1, #0078af)
    );
    background-image: -o-linear-gradient(to bottom, #015c87 0%, #0078af 100%);
    background-image: -moz-linear-gradient(to bottom, #015c87 0%, #0078af 100%);
    background-image: -webkit-linear-gradient(to bottom, #015c87 0%, #0078af 100%);
    background-image: -ms-linear-gradient(to bottom, #015c87 0%, #0078af 100%);
    background-image: linear-gradient(to bottom, #015c87 0%, #0078af 100%);
    color: #fff;
}

#cookie-bar a {
    display: inline-block;
    color: #0078af;
    text-decoration: underline;
}

.cookie-bar-ik {
    border-color: #31a836;
}

.cookie-bar-ik {
    color: #31a836;
}

@media (min-width: 768px) {
    #cookie-bar {
        left: calc(50vw - 360px);
        width: 720px;
    }
}
@media (min-width: 992px) {
    #cookie-bar {
        left: calc(50vw - 480px);
        width: 960px;
    }
}
@media (min-width: 1200px) {
    #cookie-bar {
        left: calc(50vw - 570px);
        width: 1140px;
    }
}

@media (min-width: 1500px) {
    #cookie-bar {
        left: calc(50vw - 720px);
        width: 1440px;
    }
}
