/* Cookie Dialog */
#gdpr-cookie-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #2860a8;
    margin: 0 auto;
    color: white;
    padding: 20px;
    font-family: system-ui;
    position: fixed;
    overflow: auto;
    bottom: 0%;
    width: 100%;
}

#gdpr-cookie-message h4 {
    display: flex;
    align-items: flex-start;
    font-weight: normal;
    font-size: 14px;
    margin-bottom: 0;
}

#gdpr-cookie-message p:last-child {
    margin-bottom: 0;
    text-align: left;
}

#gdpr-cookie-message a {
    text-decoration: none;
    font-size: 14px;
    padding-bottom: 2px;
    border-bottom: 2px solid rgba(255,255,255,0.75);
    transition: all 0.3s ease-in;
    font-weight: bold;
    color: white;
}

#gdpr-cookie-message button,
button#ihavecookiesBtn {
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    padding: 5px 30px;
    border-radius: 50px;
    margin-left: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in;
}

#gdpr-cookie-message button:first-child {
    background: #ff7b30;
    border: solid black 0px;
}

#gdpr-cookie-message button:last-child {
    display: none;
    border: solid white 3px;
    background: #2860a8;
}

#gdpr-cookie-message button:hover {
    opacity: 0,5;
    transition: all 0.3s ease-in;
}

#gdpr-cookie-message button:disabled {
    opacity: 0.3;
}

#gdpr-cookie-types ul li:nth-child(even) {
    display: none;
}

#gdpr-cookie-types ul li {
    list-style: none;
}
