.cookieConsentContainer {
    z-index: 999999;
    width: 75%;
    height: 75%;
    box-sizing: border-box;
    background: white;
    position: fixed;
    top: 12.5%;
    left: 12.5%;
    display: none;
    margin: 0;
    border: 5px solid red;
}
.cookieDesc {
    position: absolute;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-y: scroll;
}
.cookieContainer {
    padding: 50px;
}
.cookieContainer ul {
    list-style-type: none;
}
.cookieConsentContainer::before{
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
    height: 100%;
    background-color: white;
    z-index: 1;
}
.cookieConsentContainer::after{
    content: '';
    position: absolute;
    left: -500%;
    width: 1000%;
    top: -500%;
    height: 1000%;
    background-color: rgba(0,0,0,0.2);
    z-index: 0;
}
.cookieConsentContainer > div {
    position: relative;
    z-index: 99999;
}
.cookieConsentContainer > div.cookieButton {
    position: absolute;
    right: -23px;
    top: -35px;
}

.cookieConsentContainer .cookieTitle a {
    font-family: OpenSans, arial, "sans-serif";
    color: #0e59b9;
    font-size: 30px;
    line-height: 20px;
    display: block;
    font-weight: bold;
}
.cookieConsentContainer .cookieDesc p {
    margin: 0;
    padding: 0;
    font-family: OpenSans, arial, "sans-serif";
    color: #0e59b9;
    font-size: 16px;
    line-height: 30px;
    display: block;
    margin-top: 10px;
} .cookieConsentContainer .cookieDesc a {
    font-family: OpenSans, arial, "sans-serif";
    color: #0e59b9;
    text-decoration: underline;
} .cookieConsentContainer .cookieDesc a:hover {
    text-decoration: none;
} 
.cookieConsentContainer .cookieButton a {
    display: inline-block;
    font-family: OpenSans, arial, "sans-serif";
    color: white;
    font-size: 18px;
    font-weight: bold;
    margin-top: 14px;
    background: #000000;
    box-sizing: border-box;
    padding: 8px 10px;
    text-align: center;
    transition: background 0.3s;
    height: 40px;
    width: 40px;
    border-radius: 100%;
}
.cookieConsentContainer .cookieButton a:hover { 
    cursor: pointer;
    background: red;
}

@media (max-width: 980px) {
    .cookieConsentContainer {
        bottom: 0px !important;
        left: 0px !important;
        width: 100%  !important;
    }
}

.covidHome > p:first-child {
    font-size: 24px;
    margin: 20px 0 20px 10px;
    color: #0d4ea1;
}
.covidHome > p:nth-child(2) {
    font-size: 14px;
}
.covidHome > a {
    color: #0d4ea1;
    padding: 10px;
    margin: 8px 0 10px 20px;
    float: left;
    border: 2px solid gray;
    font-weight: bold;
    font-size: 14px;
}
.covidHome > a:hover {
    color: white;
    border: 2px solid #0d4ea1;
    background: #0d4ea1;
}