.cookieConsentContainer {
    z-index: 9999;
    width: 350px;
    min-height: 20px;
    box-sizing: border-box;
    border-radius: 25px;
    border:#fff solid 1px;
    padding: 30px 30px 30px 30px;
    background: rgb(0, 76, 239);
    overflow: hidden;
    position: fixed;
    bottom: 30px;
    right: 30px;
    box-shadow: .05rem .15rem .15rem rgba(0, 0, 0, .35) !important;
    display: none;
}
.aCookies {
    text-decoration: none!important;
}
.cookieConsentContainer .cookieTitle h3 {color:white}
.cookieConsentContainer .cookieTitle a {
    /*font-family: OpenSans, arial, sans-serif;*/
    color: #fff;
    font-size: 22px;
    line-height: 20px;
    display: block
}

.cookieConsentContainer .cookieDesc p {
    margin: 0;
    padding: 0;

    color: #fff;
    font-size: 13px;
    line-height: 20px;
    display: block;
    margin-top: 10px
}

.cookieConsentContainer .cookieDesc a {

    color: #fff;
    text-decoration: underline
}

.cookieConsentContainer .cookieButton a {
    display: inline-block;
    border-radius: 10px;
    color: rgb(0, 174, 239);
    font-size: 14px;
    font-weight: 700;
    margin-top: 14px;
    background: #fff;
    box-sizing: border-box;
    padding: 15px 24px;
    text-align: center;
    transition: all .3s ease-in-out;
}

.cookieConsentContainer .cookieButton a:hover {
    cursor: pointer;
    color: #fff;
    background: rgb(0, 174, 239);
    border: #fff solid 1px;
    box-shadow: .05rem .15rem .15rem rgba(0, 0, 0, .35) !important;
    border-radius: 20px;
    transition: all .5s ease-in-out;
}
.cookieConsentContainer .closeBtn {
    z-index: 11111;
    position: absolute;
    top: 15px;
    right: 20px;
    color: #fff;
}
.cookieConsentContainer .closeBtn a {
    color: #cecece;
}
.cookieConsentContainer .closeBtn a:hover {
    color: white;
    text-shadow: .05rem .15rem .15rem rgba(0, 0, 0, .35) !important;
}
@media (max-width:980px) {
    .cookieConsentContainer {
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important
    }
}
