/* GDPR Cookie dialog */
.gdprContainer {
    position: fixed;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.gdprcookie {
    position: fixed;
    color: white;
    font-size: 10px;
    line-height: 1.5em;
    /* right: 1.5rem; */
    /* bottom: 1.5rem; */
    max-width: 25em;
    padding: 2rem;
    background: #000000;
    z-index: 10000;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-45%);
    -webkit-box-shadow: 5px 5px 13px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 5px 5px 13px 0px rgba(0,0,0,0.75);
    box-shadow: 5px 5px 13px 0px rgba(0,0,0,0.75);
}
.gdprcookie h1,
.gdprcookie h2 {
    font-size: 15px;
    font-family: arial;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: .5rem;
}
.gdprcookie h2 {
    font-size: 1.2em;
}
.gdprcookie a {
    color: inherit;
}


/* GDPR Cookie buttons */

.gdprcookie-buttons {
    text-align: center;
    margin-top: 10px;
}
.gdprcookie-buttons button {
    color: black;
    font-family: inherit;
    font-size: 1.5em;
    padding: .4rem;
    border-radius: .15rem;
    margin: 0 .5rem;
    cursor: pointer;
    width: auto;
}
.gdprcookie-buttons button.manage {
   background: #9e8126;
   color: white;
   width: auto;
}
.gdprcookie-buttons button:disabled {
    color: rgba(255,255,255,.5);
    background: #2d8ea6;
}


/* 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;
}