#cookieConsent {
    font-family: 'Ubuntu', sans-serif;
    background-color: #fff;
    min-height: 26px;
    font-size: 14px;
    line-height: 26px;
    color: #000;
    padding: 5px;
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    padding: 3% 5%;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    display: none;
}

#cookieConsent button {
    color: #fff;
    padding: 1em 2em;
    background-color: #290a54;
    text-decoration: none;
    display: block;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

#cookieConsent p {
    color: #5e6266;
    font-weight: 300;
    padding: 10px 0;
}

#cookieConsent a {
    font-weight: 500;
}

@media screen and (max-width: 1200px) {
    #cookieConsent button {
        color: #fff;
        padding: 1em 2em;
        background-color: #290a54;
        text-decoration: none;
        display: block;
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        transform: none;
        border: none;
        cursor: pointer;
        border-radius: 5px;
    }
}