﻿/* Cookie Dialog */
#gdpr-cookie-message {
    max-width: 420px;
    position: fixed;
    bottom: 75px;
    left: 30px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0px 1px 4px 0px rgb(42 42 42 / 10%);
    box-sizing: border-box;
    font-family: 'Open Sans', Montserrat, sans-serif;
    color: #333;
    z-index: 9999;
}

@media screen and (max-width: 480px) {

    #gdpr-cookie-message {
        max-width: none;
        max-height: calc(100vh - 20px);
        left: 10px;
        right: 10px;
        bottom: 10px;
        overflow: auto;
    }
}

#gdpr-cookie-message h4 {
    color: #424141;
    font-size: 18px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
}

#gdpr-cookie-message h5 {
    color: #424141;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    padding-left: 0;
}

#gdpr-cookie-message p, #gdpr-cookie-message ul {
    color: #5c5c5c;
    font-size: 15px;
    line-height: 1.5em;
}

#gdpr-cookie-message ul {
    padding-left: 0;
}

    #gdpr-cookie-message ul li {
        width: 100%;
        padding-bottom: 6px;
    }

#gdpr-cookie-message input[type="checkbox"] {
    margin-top: 4px;
    margin-right: 5px;
    vertical-align: top;
}

#gdpr-cookie-message ul li label {
    display: inline-block;
    width: calc(100% - 30px);
    font-weight: 400;
    cursor: pointer;
}

#gdpr-cookie-message p:last-child {
    margin-bottom: 0;
    text-align: left;
}

    #gdpr-cookie-message p:last-child .mobile-break {
        display: none;
    }

@media screen and (max-width: 480px) {

    #gdpr-cookie-message p:last-child .mobile-break {
        display: inline;
    }
}

#gdpr-cookie-message li {
    width: 49%;
    display: inline-block;
}

#gdpr-cookie-message a {
    color: #0075b5;
    text-decoration: none;
    font-size: 15px;
    padding-bottom: 2px;
    border-bottom: 1px dotted rgba(#0075b5, .75);
    transition: all 0.3s ease-in;
}

    #gdpr-cookie-message a:hover {
        color: #0087d0;
        border-bottom-color: #0087d0;
        transition: all 0.3s ease-in;
    }

#gdpr-cookie-message button {
    border: none;
    background: #0075b5;
    color: white;
    font-size: 15px;
    padding: 7px 14px;
    border-radius: 3px;
    margin-left: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

@media screen and (max-width: 480px) {

    #gdpr-cookie-message button {
        margin-left: 0;
    }

        #gdpr-cookie-message button:last-child {
            margin-top: 10px;
        }
}

button#gdpr-cookie-accept {
    margin-left: 0;
}

    button#gdpr-cookie-accept:hover {
        color: #ffffff;
        background-color: #0087d0;
    }

button#gdpr-cookie-advanced {
    background: white;
    color: #0075b5;
    border: 1px solid #0075b5;
}

    button#gdpr-cookie-advanced:hover {
        color: #0087d0;
        border-color: #0087d0;
    }

#gdpr-cookie-message button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}
