.cookieConsentContainer{
    z-index: 999;
    width: 350px;
    min-height: 20px;
    box-sizing: border-box;
    padding: 30px 30px 30px 30px;
    background: #232323;
    overflow: hidden;
    position: fixed;
    bottom: 120px;
    right: 30px;
    display: none;
}

.cookieTitle {
    color: #FFF;
    font-size: 18px;
    line-height: 22px;
    font-weight: bold;
}

.cookieConsentContainer .cookieTitle a {
    color: #FFF;
    font-size: 18px;
    line-height: 20px;
    display: block;
    font-weight: bold;
}

.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;
    font-size: 13px;
    font-weight: bold;
    text-decoration: underline;    
}

.cookieButton span {
    display: inline-block;
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    margin-top: 14px;
    background: transparent linear-gradient(90deg, #06545f 0%, #0594A8 100%) 0% 0% no-repeat;
    box-sizing: border-box;
    padding: 15px 24px;
    text-align: center;
    border: 1px solid transparent;
    transition: .3s ease-in-out;
}

.cookieButton span:hover {
    cursor: pointer;
    color: #FFF;
    background: #06545f;
    border: 1px solid #FFF;
    transition: .3s ease-in-out;
}

@media (max-width:980px){
    .cookieConsentContainer{
        bottom: 0!important;
        left: 0!important;
        width: 100%!important
    }
}