.cookieConsentContainer {
    z-index: 999;
    width: 100vw;
    min-height: 20px;
    box-sizing: border-box;
    padding: 20px 30px ;
    background: rgb(35, 35, 35);
    overflow: hidden;
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cookieConsentContainer .cookieTitle a {
    font-family: OpenSans, arial, "sans-serif";
    color: rgb(255, 255, 255);
    font-size: 22px;
    line-height: 20px;
    display: block;

}

.cookieConsentContainer .cookieDesc p {
    margin: 0;
    padding: 0;
    font-family: OpenSans, arial, "sans-serif";
    color: rgb(255, 255, 255);
    font-size: 13px;
    line-height: 20px;
    display: block;
    margin-top: 10px;  
    margin-right: 20px;
    text-align: center;
}

.cookieConsentContainer .cookieDesc a {
    font-family: OpenSans, arial, "sans-serif";
    color: rgb(255, 255, 255);
    text-decoration: underline;
}

.cookieConsentContainer .cookieButton a {
    display: inline-block;
    font-family: OpenSans, arial, "sans-serif";
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: bold;
    margin-top: 14px;
    background: rgb(102, 45, 145);
    box-sizing: border-box;
    padding: 15px 24px;
    text-align: center;
    transition: background 0.3s;
}

.cookieConsentContainer .cookieButton a:hover {
    cursor: pointer;
    background: rgb(141, 198, 68);
    color: rgb(255, 255, 255);
}