/* Cookie Dialog */
#gdpr-cookie-message {
    background-color: #333;
    padding: 10px;
    font-family: "Lato", sans-serif;
    color: #fff;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 100;
}
#gdpr-cookie-message h4 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #fff;
}
#gdpr-cookie-message h5 {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
}
#gdpr-cookie-message p, #gdpr-cookie-message ul {
    font-size: 15px;
    line-height: 1.5em;
    padding-left: 0px;
}
#gdpr-cookie-message p:last-child {
    margin-bottom: 0;
}
#gdpr-cookie-message li {
    display: inline-block;
    margin-right: 40px;
}
#gdpr-cookie-message a {
    text-decoration: none;
    font-size: 15px;
    padding-bottom: 2px;
    border-bottom: 1px dotted rgba(255,255,255,0.75);
    transition: all 0.3s ease-in;
    color: #fff;
}
#gdpr-cookie-message a:hover {
    border-bottom-color: red;
    transition: all 0.3s ease-in;
}
#gdpr-cookie-message label {
    font-weight: 400;
}
#gdpr-cookie-message button {
    border: none;
    background: #eee;
    font-size: 14px;
    padding: 5px 20px;
    border-radius: 3px;
    margin-right: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in;
    border-bottom: 2px solid #aaa;
}
#gdpr-cookie-message button:hover {
    opacity: 0.8;
    transition: all 0.3s ease-in;
}
button#gdpr-cookie-accept {
    background: #39a839;
    color: #fff;
    border-bottom: 2px solid green;
}
button#gdpr-cookie-advanced {
    color: #333;
}
#gdpr-cookie-message button:disabled {
    opacity: 0.3;
}
#gdpr-cookie-message input[type="checkbox"] {
    float: none;
    margin-top: 0;
    margin-right: 5px;
    -ms-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
}
