/* GDPR Cookie dialog */

.gdprcookie {
    position: fixed;
    color: white;
    font-size: 1em;
    line-height: 1.5em;
    left: 1.5rem;
    bottom: 1.5rem;
    max-width: 28em;
    padding: 1rem 1rem;
    background: #b28534;
    z-index: 2000;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.35);
}

.gdprcookie h1,
.gdprcookie h2 {
    font-size: 1.6em;
    margin-bottom: .5rem;
}

.gdprcookie h2 {
    font-size: 1.2em;
}

.gdprcookie p {
    font-family: "BrandonGrotesque-Medium";
}

.gdprcookie a {
    color: inherit;
    font-weight: bold;
}

.gdprcookie-intro a:hover {
    color: white;
    text-decoration: underline;
}


/* GDPR Cookie buttons */

.gdprcookie div:nth-of-type(3) {
    text-align: center;
}

.gdprcookie button {
    cursor: pointer;
    color: white;
    background: black;
    padding: 0.7em 1.5em;
    margin-top: 0.35em;
    outline: 0;
    border: 0;
    box-shadow: unset;
    text-transform: uppercase;
    font-family: "BrandonGrotesque-Medium";
    font-size: 0.8em;
    margin-right: 1em;
}

.gdprcookie button:first-of-type {
    background: white;
    color: black;
    font-weight: bold;
}

.gdprcookie button:disabled {
    color: rgba(255, 255, 255, .5);
}


/* GDPR Cookie types */

.gdprcookie ul {
    overflow: hidden;
    padding: 0;
    margin: 0 0 1rem;
}

.gdprcookie li {
    display: block;
    list-style: none;
    float: left;
    width: 100%;
    padding: 0;
    margin: 0;
}


/*.gdprcookie li:first-of-type {
    display: none;
}*/

.gdprcookie label {
    cursor: pointer;
    font-family: "BrandonGrotesque-Medium";
}

.gdprcookie input[type=checkbox] {
    margin-right: .25rem;
}

@media(max-width: 920px) {
    .gdprcookie {
        left: 0;
    }
    .gdprcookie h1,
    .gdprcookie h2 {
        font-size: 1.4em;
    }
    .gdprcookie button {
        padding: 0.7em 1.1em;
    }
}

@media(max-width: 400px) {
    .gdprcookie {
        left: 0;
        bottom: 0;
        max-width: unset;
    }
}