#cookiePopup {
    background: white;
    width: 25%;
    position: fixed;
    left: 10px;
    bottom: 8px;
    box-shadow: 0px 0px 15px #333;
    padding: 5px 10px;
    z-index: 9999;
}

#cookiePopup h4 {
    font-size: 1.1em;
    margin: 10px 0px;
}

#cookiePopup p {
    text-align: left;
    font-size: 15px;
    color: #4e4e4e;
}

#cookiePopup button {
    width: 100%;
    border: navajowhite;
    background: #002F86;
    padding: 5px;
    border-radius: 10px;
    color: white;
}
#hideConsent {
    float: right;
    color: #999;
    font-weight: 100;
    padding-right: 10px;
}
#hideConsent:hover {
    cursor: pointer;
}
@media (max-width: 768px) {
    #cookiePopup {
        width: 94%;
        left: 2%;
        z-index: 9999;
        right: 2%;
    }
}