#cookieConsent {
    display: block;
    position: fixed;
    background: transparent;
    padding-top: 15px;    
    z-index: 99999;
}

#cookieConsent:not(.bottomline) {    
    padding: 15px;
}

#cookieConsent.bottomright {
    bottom: 20px;
    right: 20px;
    width: 100%;
    max-width: 560px;
}

#cookieConsent.bottomleft {
    bottom: 20px;
    left: 20px;
    width: 100%;
    max-width: 560px;
}

#cookieConsent.bottommiddle {
    bottom: 20px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    width: 100%;
    max-width: 560px;
}

#cookieConsent.bottomline {
    bottom: 0px;
    left: 0;
    right: 0;
    width: 100%;
}


@media (max-width: 600px) {
	#cookieConsent.bottomright {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
    }
    
    #cookieConsent.bottomleft {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
    } 

    #cookieConsent.bottommiddle {
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        transform: translate(0, 0);
    } 
}

#cookieConsent .wrapperCookieConsent {
    display: block;
    background: rgba(0,0,0,.95);
    padding: 15px;
    color: white !important;
    border: 1px solid rgba(255,255,255, 0.9);
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 16px;
}


#cookieConsent:not(.bottomline) .wrapperCookieConsent {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#cookieConsent .wrapperCookieConsent p {
    margin: 0;
}

#cookieConsent #closeCookieConsent {
    display: block;
    position: absolute;
    right: 30px;
    cursor: pointer;
}

#cookieConsent .headlineCookieConsent {
    font-size: 20px;
    font-weight: 700;
}

@media (max-width: 600px) {
    #cookieConsent .wrapperCookieConsent {
        font-size: 12px;
    }
    
    #cookieConsent .headlineCookieConsent {
        font-size: 16px;
    }
}


#cookieConsent .buttonCookieConsent, #cookieConsent .buttonCookieConsent:active, #cookieConsent .buttonCookieConsent:visited {
    min-width: 60px;
    background: white;
    border: 2px solid white;
    min-height: 26px;
    border-radius: 50vh;
    margin-top: 1rem;
    padding: 3px 20px;
	transition: all 0.5s ease-in-out;
    text-align: center;
}

#cookieConsent .buttonCookieConsent:hover, #cookieConsent .buttonCookieConsent:focus {
    background: rgba(0,0,0,.95);
    color: white;
}

#cookieConsent .contentCookieConsent a, #cookieConsent .contentCookieConsent a:active, #cookieConsent .contentCookieConsent a:visited, #cookieConsent .contentCookieConsent a:focus {
    text-decoration: none;
    color: skyblue;
	transition: all 0.5s ease-in-out;
}

#cookieConsent .contentCookieConsent a:hover {
    color: white;
}