/* GDPR Cookie dialog */

.gdprcookie {
    position: fixed;
    right: 0px;
    bottom: 0px;
    width:100%;  
    background-color: rgba(0,0,0,0.8);
    padding: 20px;
    box-shadow: 0 6px 6px rgba(0,0,0,0.25);
    margin-left: 30px;
    box-sizing:border-box;
    z-index:999;
}
.gdprcookie-intro, .gdprcookie-types {
    width:85%; 
    color:white;
}
.gdprcookie h3,
.gdprcookie h4 {
    font-size: 1.2em;
    margin-bottom: .5rem;
    color: white;
    margin-top: 0;
}
.gdprcookie h4 {
    font-size: 1.2em;
}
.gdprcookie a {
    color: inherit;
}


/* GDPR Cookie buttons */
.gdprcookie-intro a {
   color:#b6475e; 
}
.gdprcookie-buttons {
    position:absolute;
    top:0px;
    right:20px;
    width:10%;
    padding: 15px;
}
.gdprcookie-buttons button:first-child {
    border: none;
    background: #0063d1;
    color: white;
    font-size: 15px;
    padding: 7px;
    border-radius: 3px;
    margin-left: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in;
    display:block;
    width:100%;
    margin-bottom:15px;
}
.gdprcookie-buttons button:last-child {
    border: none;
    background: white;
    color: black;
    font-size: 15px;
    padding: 7px;
    border-radius: 3px;
    margin-left: 15px;
    cursor: pointer;
    transition: all 0.3s ease-in;
    display:block;
     width:100%;
}
/*
.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: 100%;
    padding: 0;
    margin: 0;
}
.gdprcookie-types li * {
    display: inline-block;
    vertical-align: middle;
}
.gdprcookie-types input[type=checkbox] {
    margin-right: .25rem;
    height:20px;
    width:20px;
    cursor:pointer;
    
}

.gdprcookie .message_content {
    padding: 0;
    color: white;
}
.gdprcookie .message_content a {
    color: #0063d1;    
}

@media(max-width: 800px) {
.gdprcookie-buttons {
    position:relative;
    right:0;
    width:80%;
    margin: 0 auto;
}
}