﻿#cookie-consent {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(255,255,255,0.7);
    z-index: 99999;
    display: none;
}

    #cookie-consent #cookie-shadow {
        padding: 10px;
        position: absolute;
        left: 0;
        right: 0;
        /* bottom: 0;*/ /*Toto nastaví hlášku dole*/
        top: 100px; /*Na mobilech je to problém, protože hláška dole není vidět, toto by to mělo vyřešit. Hláška je pod hlavičkou*/
        background-color: white;
        box-shadow: 0px 0 10px rgba(0, 0, 0, 0.8);
    }

    #cookie-consent #cookie-content {
        border: 0;
        display: block;
        margin: 0 auto 0 auto;
        width: 100%;
        min-height: 50px;
        max-width: 1100px;
        overflow: hidden;
    }

    #cookie-consent h2, #cookies-consent h3 {
        color: #666;
    }

    #cookie-consent p {
        color: #666;
        text-align: left;
    }

    #cookie-consent #cookie-choices {
        display: none;
    }

        #cookie-consent #cookie-choices > div {
            display: inline-block;
            text-align: left;
        }

        #cookie-consent #cookie-choices label {
            margin-right: 10px;
        }

    #cookie-consent span {
        cursor: pointer;
        /*color: #0066bb;*/
        color: #ff0000;
    }

    #cookie-consent input[type="checkbox"], input[type="checkbox"] + label {
        cursor: pointer;
    }

    /*Zajistí aby se nezaloval checkbox a label*/
    #cookie-consent #flex-container {
        display: flex;
        flex-flow: row wrap;
    }

    #cookie-consent button {
        background-color: #ff6a00;
        border: none;
        color: white;
        padding: 4px 8px;
        text-decoration: none;
        margin-top: 10px;
        margin-right: 5px;
        cursor: pointer;
    }

*#cookie-consent button:hover, #show-cookie-consent:hover {
    background-color: #c2bbbb;
}

#cookie-consent #save-cookie-choices {
    background-color: #ff0000;
    border: none;
    color: white;
    padding: 4px 8px;
    text-decoration: none;
    margin-top: 10px;
    cursor: pointer;
}
