
/* cookies */
.cookieConsentContainer {
    z-index: 999999;
    width: 80%;
    min-height: 20px;
    padding: 30px 10%;
    background: #20723d;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    left: 0;
    display: none;
    text-align: center;
}
.cookieConsentContainer .cookieTitle a {
    color:#fff;
    font-size: 1.3rem;
    font-weight: 600;
    line-height:20px;
    display:block;
}
.cookieConsentContainer .cookieDesc p {
    margin:10px 0 0 0;
    padding:0;
    color:#fff;
    font-size:1rem;
    line-height:20px;
    display:block;
}
.cookieConsentContainer .cookieDesc a {
    color:#fff;
    text-decoration:underline;
}
.cookieConsentContainer .cookieButton a {
    display:inline-block;
    color:#20723d;
    font-size:14px;
    font-weight:700;
    margin-top:14px;
    background:#fff;
    box-sizing:border-box;
    border-radius: 3px;
    padding:15px 24px;
    text-align:center;
    transition:background .3s;
}
.cookieConsentContainer .cookieButton a:hover {
    cursor:pointer;
    background:#ffee00;
}
