/* Cookie Dialog */
#gdpr-cookie-message {
    position: fixed;
    margin: 0 auto;
    top: 300px;
    left: 0;
    right: 0;
    width: 450px;
    max-width: 100%;
    background-color: #fff; /*rgba(255, 255, 255, .9);*/
    padding: 1.5rem;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, .15);
    box-shadow: 2px 3px 6px rgba(0,0,0,0.25);
    font-size: 1.1rem;
    z-index: 2;
}

#loginForm {
    position: relative;
}

#iHaveCookiesBG {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(255, 255, 255, .8);
    z-index: 1;
}
#gdpr-cookie-message p {
    margin-bottom: 1.5rem;
}
#gdpr-cookie-message ul {
    margin-left: 0;
    padding-left: 0;
}
#gdpr-cookie-message h4 {
    color: #248088;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.75rem;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 1.3rem;
}
#gdpr-cookie-message h5 {
    color: #248088;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 1.1rem;
}
#gdpr-cookie-message p,
#gdpr-cookie-message ul {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.5rem;
}
#gdpr-cookie-message p:last-child {
    margin-bottom: 0;
    text-align: right;
}
#gdpr-cookie-message li {
    width: 24%;
    display: inline-block;
}
#gdpr-cookie-message a {
    color: #248088;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    padding-bottom: 2px;
    border-bottom: 1px dotted rgba(255,255,255,0.75);
    transition: all 0.1s ease-in;
}
#gdpr-cookie-message a:hover {
    color: #333;
    border-bottom-color: #248088;
    transition: all 0.1s ease-in;
}
#gdpr-cookie-message button,
button#ihavecookiesBtn {
    border: none;
    background: #248088;
    color: white;
    font-family: "Roboto Condensed", sans-serif;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    margin-left: 1rem;
    cursor: pointer;
    transition: all 0.1s ease-in;
}
#gdpr-cookie-message button:hover {
    background: #1d676d;
    color: white;
    transition: all 0.1s ease-in;
}
button#gdpr-cookie-accept {
    float: right;
}
button#gdpr-cookie-advanced {
    background: white;
    color: #248088;
}
#gdpr-cookie-message button:disabled {
    opacity: 0.1;
}
#gdpr-cookie-message input[type="checkbox"] {
    float: none;
    width: auto;
    margin-top: 0;
    margin-right: .4rem;
}
#gdpr-cookie-types {
    /*display: block !important;*/
    margin-bottom: 1.8rem;
}
#gdpr-cookie-advanced {
    /*display: none;*/
}
@media screen and (max-width: 719px)
{
    #gdpr-cookie-message li {
        width: 49%;
    }
}