.cookieConsentContainer {
    z-index: 999;
    width: 350px;
    min-height: 20px;
    box-sizing: border-box;
    padding: 20px;
    border: 1px solid lightgray;
    border-radius: 5px;
    background: #fcfcfc;
    overflow: hidden;
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    text-align: center;
}

    .cookieConsentContainer .cookieTitle a {
        font-family: OpenSans, arial, "sans-serif";
        color: #000000;
        font-size: 22px;
        line-height: 20px;
        display: block;
    }

    .cookieConsentContainer .cookieDesc p {
        margin: 0;
        padding: 0;
        font-family: OpenSans, arial, "sans-serif";
        color: #000000;
        font-size: 13px;
        line-height: 20px;
        display: block;
        margin-top: 10px;
    }

    .cookieConsentContainer .cookieDesc a {
        font-family: OpenSans, arial, "sans-serif";
        color: #FFFFFF;
        text-decoration: underline;
    }

    .cookieConsentContainer .cookieButton a {
        display: inline-block;
        font-family: OpenSans, arial, "sans-serif";
        color: #FFFFFF;
        font-size: 14px;
        font-weight: bold;
        margin-top: 14px;
        background: #359D66;
        box-sizing: border-box;
        padding: 15px 24px;
        text-align: center;
        transition: background 0.1s;
    }

        .cookieConsentContainer .cookieButton a:hover {
            cursor: pointer;
            background: #3E9B67;
        }



@media (max-width: 980px) {

    .cookieConsentContainer {
        bottom: 0px !important;
        left: 0px !important;
        width: 100% !important;
    }
}
