/* GDPR Cookie dialog */

.gdprcookie {
    position: fixed;
    color: white;
    font-size: .8em;
    line-height: 1.5em;
    right: 1.5rem;
    bottom: 1.5rem;
    max-width: 25em;
    padding: 1rem;
    background: black;
}
.gdprcookie h1,
.gdprcookie h2 {
    font-size: 1.2em;
    margin-bottom: .5rem;
}
.gdprcookie h2 {
    font-size: 1.2em;
}
.gdprcookie a {
    color: inherit;
}

.gdprcookie a.gdpr-details {
    border: none;
    display: inline;
    padding: 0;
    padding-right: 10px;
    margin-left: 5px;
    background-color: transparent;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    margin-left: auto;
}

.gdprcookie a.gdpr-details span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 7px;
    width: 20px;
    height: 20px;
    border: 2px solid #FFF;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    font-weight: bold;
    transition: all ease 0.3s;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
}

.gdprcookie a.gdpr-details.active span,
.gdprcookie a.gdpr-details:hover span {
    background-color: #FFF;
    color: #000;
}

.gdprcookie a.gdpr-details.active {
    border-right: 2px solid #FFF;
    
}


.gdprcookie .gdprcookie-type-description {
    margin-bottom: 10px;
    padding-top: 10px;
    border-top: 1px solid #FFF;
    transition: height ease 0.5s;
    -webkit-transition: height ease 0.5s;
    -moz-transition: height ease 0.5s;
    -ms-transition: height ease 0.5s;
    -o-transition: height ease 0.5s;
}



/* GDPR Cookie buttons */

.gdprcookie-buttons {
    text-align: center;
}
.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:disabled {
    color: rgba(255,255,255,.5);
}


/* GDPR Cookie types */

.gdprcookie-types ul {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0 0 1rem;
}
.gdprcookie-types li {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
}
.gdprcookie-types li+li {
    margin-top: 10px;
}

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