
.cookieConsentContainer {
    z-index: 999;
    width: 100%;
    max-width: 1024px;
    min-height: 20px;
    box-sizing: border-box;
    padding: 15px;
    background: #FFFFFFDD;
    overflow: hidden;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    display: none;
}
.cookieConsentContainer .cookieWrapper{
    display:flex;
    justify-content: space-between;
    align-items: center;
}
.cookieConsentContainer .imgCookie{
    background: #FFFFFF;
    padding:5px;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: inline-flex;
    text-align: center;
    vertical-align: middle;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    margin-right: 14px;
}
.cookieConsentContainer .imgCookie img {
    max-width: 60px;
    max-height: 60px;
}
.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: #000000;
    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;
    margin-left: 14px;
    background: #d12326;
    box-sizing: border-box; 
    padding: 8px 12px;
    text-align: center;
    transition: background 0.3s;
    white-space: nowrap;
}
.cookieConsentContainer .cookieButton a:hover { 
    cursor: pointer;
    color: #FFFFFF;
    background: #c11316;
}

@media (max-width: 980px) {
    .cookieConsentContainer {
        bottom: 0px !important;
        left: 0px !important;
        width: 100%  !important;
    }
    .cookieConsentContainer .cookieWrapper{
        flex-direction: column;
        
    }
    .cookieConsentContainer .cookieWrapper p{
        font-size: 0.75rem;
        line-height: 0.9rem;
    }
}