/* GDPR Cookie dialog */

.gdprcookie {
    position: fixed;
    color: white;
    font-size: .8em;
    line-height: 1.5em;
    left: 0rem;
    bottom: 0rem;
    max-width: 100%;
    padding: 1rem;
    background: transparent;
    background-image: linear-gradient(to bottom right, #a2905b, #b3a06c);
    z-index: 999;
}
.gdprcookie h1,
.gdprcookie h2 {
    font-size: 1.2em;
    line-height: normal;
    margin-top: .5rem;
    margin-bottom: .5rem;
    color: white;
}
.gdprcookie a {
    color: inherit;
    color: white;
}
.gdprcookie p {
    display: inline-block;
    font-size: 12px;
    color: white;
    width: 85%;
}


/* GDPR Cookie buttons */

.gdprcookie-buttons {
    text-align: center;
    display: inline-block;
}
.gdprcookie-buttons button {
    color: white;
    font-family: inherit;
    font-size: 1em;
    padding: .4rem;
    border: solid .05rem currentColor;
    border-radius: .15rem;
    margin: 0 .5rem;
    background: none;
    cursor: pointer;
}
.gdprcookie-buttons button:first-child {
    float: right;
    font-weight: bold;
    background: #a2905b;
}
.gdprcookie-buttons button:disabled {
    color: rgba(255,255,255,.5);
}


/* GDPR Cookie types */

.gdprcookie-types{
    display: inline-block;
    width: 85%;
}

.gdprcookie-types ul {
    overflow: hidden;
    padding: 0;
    margin: 0 0 1rem;
}
.gdprcookie-types li {
    display: block;
    list-style: none;
    float: left;
    width: auto;
    padding: 0 30px 0 0;
    margin: 0;
}
.gdprcookie-types label{
    cursor: pointer;
}
.gdprcookie-types input[type=checkbox] {
    margin-right: .25rem;
    cursor: pointer;
}


@media only screen and (max-width: 768px) {

    .gdprcookie p,
    .gdprcookie-types {
        width: 100%;
    }

    .gdprcookie-types li {
        width: 50%;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .gdprcookie-buttons {
        text-align: right;
        width: 100%;
    }
}