/* GDPR Cookie dialog */
.gdprcookie {
    position: fixed;
    color: black;
    font-size: 20px;
    left: 20px;
    bottom: 60px;
    max-width: 500px;
    padding: 30px;
    background: white;
    z-index: 99999;
    box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.25);
}

.gdprcookie h1 {
    font-size: 20px !important;
    margin-bottom: 20px;
    margin-top: 0;
}

.gdprcookie h2 {
    font-size: 18px !important;
    margin-bottom: 20px;
    margin-top: 0;
    
}

.gdprcookie h2 {
    font-size: 20px;
}

.gdprcookie a {
    color: inherit;
    text-decoration: underline;
}

.gdprcookie p {
    
}

    .gdprcookie li div p {
        
    }

/* GDPR Cookie buttons */

.gdprcookie-buttons {
    text-align: center;
}

.gdprcookie-buttons button {
    background: transparent;
    padding: 6px 20px;
    border-color: #000;
    border-style: solid;
    border-width: 1px;
    border-radius: 25px;
    height: 50px;
    margin: 0 5px;
    font-size: 16px !important;
}

.gdprcookie-buttons button:hover {
    background: #A50034 !important;
    border-color: #A50034 !important;
    color: #fff;
}

.gdprcookie-buttons button:disabled {
    color: rgba(0, 0, 0, .5);
    background: #eee;
    border: none;
}

.gdprcookie-buttons button:disabled:hover {
    background-color: #eee !important;
    border: none !important;
}

/* GDPR Cookie types */
.gdprcookie-types {
    max-height: 400px !important;
    overflow-y: scroll !important;
    margin-bottom: 20px;
}

.gdprcookie-types ul {
    padding: 0;
    margin: 0 0 1rem;
    flex-wrap: wrap;
    display: flex;
}

.gdprcookie-types li {
    width: 100%;
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gdprcookie-types li:before {
    content: '';
    display: none;
}

.gdprcookie-types input[type=checkbox] {
    margin: 0;
    width: 20px;
    height: 20px;
    margin-top: 6px;
    float: left;
}


.gdprcookie-label {
    display: inline-block;
    position: relative;
    pointer-events: none;
    font-size: 18px;
    margin: 10px 0 0 0;
    padding-left: 10px !important;
}

.gdprcookie-collapse .icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    pointer-events: none;
    z-index: 1;
    position: relative;
    float: right;
    font-style: normal;
}

.gdprcookie-collapse {
    margin-top: 10px;
    margin-right: 10px;
}

.gdprcookie-collapse .icon::before {
    display: inline-block;
    background: url(images/chevron-down-regular.svg) no-repeat 0 0 !important;
    content: '';
    width: 16px;
    height: 16px;
}

.gdprcookie-collapse.open .icon::before {
    display: inline-block;
    background: url(images/chevron-up-regular.svg) no-repeat 0 0 !important;
    content: '';
    width: 16px;
    height: 16px;
}

.gdprcookie-description {
    background: #eee;
    padding: 20px 25px 25px 25px;
    margin-bottom: 20px;
    margin-top: 10px;
    margin-right: 10px;
}

.gdprcookie-description p:last-child {
    margin-bottom: 0;
}

.gdprcookie-description p {
    font-size: 16px !important;
    line-height: 125% !important;
    margin: 0 0 10px 0;
}

    .gdprcookie-description a {
        /* These are technically the same, but use both */
        overflow-wrap: break-word;
        word-wrap: break-word;
        -ms-word-break: break-all;
        /* This is the dangerous one in WebKit, as it breaks things wherever */
        word-break: break-all;
        /* Instead use this non-standard one: */
        word-break: break-word;
        /* Adds a hyphen where the word breaks, if supported (No Blink) */
        -ms-hyphens: auto;
        -moz-hyphens: auto;
        -webkit-hyphens: auto;
        hyphens: auto;
    }