#cookie-notice {
    display: none;
    position: fixed;
    min-width: 100%;
    height: auto;
    z-index: 100000;
    font-size: 16px;
    line-height: 18px;
    left: 0;
    text-align: center;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
}

#cookie-notice p:first-child {
    margin: 0 0 15px;
}

#cookie-notice .cookie-notice-container {
    padding: 18px;
}

#cookie-notice fieldset {
    display: block;
    margin: 0 6px 10px;
    padding: 5px 15px 9px;
}

#cookie-notice legend {
    text-align: left;
    margin-bottom: 5px;
}

#cookie-notice-details {
    margin-bottom: 20px;
}

#cookie-notice-details .button {
    margin-bottom: 10px;
}

#cookie-notice label {
    display: block;
    width: 100%;
    text-align: left;
    position: relative;
    margin-bottom: 5px;
    cursor: pointer;
}

#cookie-notice label.required {
    cursor: not-allowed;
}

/* Hide checkboxes */
#cookie-notice input {
    opacity: 0;
}

/* Custom checkbox style */
#cookie-notice input + span {
    display: block;
    position: absolute;
    top: 50%;
    width: 12px;
    height: 12px;
    margin-top: -8px;
    border: 1px solid #333;
}

#cookie-notice input + span:before {
    /*content: "✔";*/
    content: "";
    display: block;
    position: absolute;
    font-size: 12px;
    line-height: 12px;
    height: 8px;
    width: 8px;
    top: 1px;
    left: 1px;
    color: #333;
    background: #333;
    opacity: 0;
}

#cookie-notice input:checked + span:before {
    opacity: 1;
}

#cookie-notice input:disabled + span {
    border-color: #aaa;
}

#cookie-notice input:disabled + span:before {
    /*color: #aaa;*/
    background: #aaa;
}

#cookie-notice button,
#cookie-notice .button {
    line-height: 1.5;
    outline: none;
    margin-bottom: 5px;
}

@media only screen and (min-width: 481px) {
    #cookie-notice button,
    #cookie-notice .button {
        margin-bottom: 15px;
    }
}

@media only screen and (min-width: 768px) {
    #cookie-notice-details .wrapper {
        display: flex;
        justify-content: center;
    }
}