.cookieConsentContainer{
    z-index:999;
    width:90%;
    min-height:20px;
    box-sizing:border-box;
    padding:30px 30px 30px 30px;
    background:#6B6B6B;
    overflow:hidden;
    position:fixed;
    bottom:30px;
    right:30px;
    display:none;
    border: solid 1px #000;
}
.cookieConsentContainer .cookieTitle a{
    font-family:'Roboto-Bold';
    color:#F8F4EB;
    font-size:22px;
    line-height:20px;
    display:block;
    text-align: center;
}
.cookieConsentContainer .cookieDesc p{
    margin:0;
    padding:0;
    font-family:'Roboto-LightItalic';
    color:#F8F4EB;
    font-size:13px;
    line-height:20px;
    display:block;
    margin-top:10px;
    text-align: center;
}
.cookieConsentContainer .cookieDesc a{
    font-family:'Roboto-Bold';
    color:#F8F4EB;
    text-decoration:underline;
}
.cookieButton{
    display: flex;
    justify-content: space-around;
}
.cookieConsentContainer .cookieButton a{
    display:inline-block;
    font-family:'Roboto-Black';
    color:#231F20;
    font-size:14px;
    font-weight:700;
    margin-top:14px;
    background:#F6BB00;
    box-sizing:border-box;
    padding:15px 24px;
    text-align:center;
    transition: .3s;
}
.cookieConsentContainer .cookieButton a:hover{
    cursor:pointer;
    background:#231F20;
    color: #F8F4EB;
}
@media (max-width:980px){
    .cookieConsentContainer{
        bottom:0!important;
        left:0!important;
        width:100%!important;
    }
}