/* GDPR Cookie dialog */
.gdprcookie-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(125,125,125,0.95);
    cursor: default;
    z-index: 9999;
}

.gdprcookie {
    position: fixed;
    color: #333333;
    font-size: 1.1em;
    line-height: 2em;
    left: calc(50% - 400px);
    top: calc(50% - 250px);
    padding: 20px 30px 80px 30px;
    background: #f5f5f5;
    width: 800px;
    border: 1px solid #ccc;
    -moz-border-radius: 7px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
    -webkit-box-shadow: 5px 5px 7px rgba(0,0,0,0.1);
    box-shadow: 5px 5px 7px rgba(0,0,0,0.1);
    box-sizing: border-box;
    z-index: 99999;
}

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

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

.gdprcookie a {
    color: inherit;
}

/* GDPR Cookie buttons */
.gdprcookie-buttons {
    position: absolute;
    left: 0;
    bottom: 1em;
    width: 100%;
    text-align: center;
}

.gdprcookie-buttons button {
    padding: .7rem;
    margin: 0 .5rem;
}

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

/* GDPR Cookie types */
.gdprcookie-types ul {
    overflow: hidden;
    padding: 0;
    margin: 0 0 1rem;
}

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

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