#lgdpr-modal,
#lgdpr-modal *,
#lgdpr-modal *::before,
#lgdpr-modal *::after {
    box-sizing: border-box;
}

#lgdpr-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2147483647;
    background: #000;
    opacity: 0.5;
    transition: opacity 1s;
}

#lgdpr-modal-overlay.lgdpr-visible {
    display: block;
}

#lgdpr-modal {
    display: none;
    position: fixed;
    top: 10vh;
    left: 0;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 2147483647;
    background: #fff;
    padding-top: 3em;
    padding-right: 1em;
    padding-left: 1em;
    transform: scaleY(0);
    transition: transform 1s ease-in-out;
    text-align: center;
    font-size: 1.25rem;
}

#lgdpr-modal::after {
    /* padding bottom */
    display: block;
    height: 2.5em;
    content: "";
}

#lgdpr-modal.lgdpr-visible {
    display: block;
    transform: scaleY(1);
}

#lgdpr-modal-heading,
#lgdpr-modal-body {
    margin-right: auto;
    margin-left: auto;
    max-width: 1024px;
}

#lgdpr-modal-heading {
    text-transform: uppercase;
}

#lgdpr-modal-body {
    margin-top: 1.5em;
}

#lgdpr-settings {
    display: inline-block;
    margin-top: 1.5em;
}

.lgdpr-setting input[type="checkbox"] {
    margin: 0 3px 0 0;
}

#lgdpr-settings label {
    font-weight: inherit;
    font-size: 1.2em;
    line-height: 1.5em;
}

#lgdpr-accept-all-button {
    display: block;
    margin: 2em auto 1em;
    cursor: pointer;
    padding: 0.75em 3em;
    border-radius: 4px;
    border: none;
    text-align: center;
    line-height: 1.5em;
    font-size: 1em;
    font-weight: 400;
}

#lgdpr-accept-all-button .lgdpr-button-text-large {
    text-transform: uppercase;
    font-size: 1.5em;
}

#lgdpr-accept-all-button .lgdpr-button-text-small {
    text-transform: none;
    font-size: 0.75em;
}

#lgdpr-actions {
    display: flex;
}

#lgdpr-actions a {
    font-size: 0.75em;
    line-height: 1em;
}

#lgdpr-details-collapsible {
    height: 0;
    overflow-y: hidden;
    transition: height 0.5s ease-in-out;
}

#lgdpr-details {
    margin-right: auto;
    margin-left: auto;
    max-width: 1024px;
    padding-top: 1.5em;
    padding-bottom: 1.5em;
    text-align: left;
    font-size: 0.75em;
}

#lgdpr-details dl,
#lgdpr-details dt,
#lgdpr-details dd {
    margin: 0;
    padding: 0;
}

#lgdpr-details dt {
    font-weight: 700;
}

#lgdpr-details dd + dt {
    margin-top: 0.5em;
}

@media screen and (max-width: 479px) {
    #lgdpr-settings {
        text-align: left;
    }

    .lgdpr-setting + .lgdpr-setting {
        margin-top: 1em;
    }

    #lgdpr-actions {
        flex-direction: column;
        justify-content: center;
    }

    #lgdpr-actions a + a {
        margin-top: 1em;
    }
}

@media screen and (min-width: 480px) {
    #lgdpr-settings::after {
        display: block;
        clear: left;
        content: "";
    }

    .lgdpr-setting {
        float: left;
    }

    .lgdpr-setting + .lgdpr-setting {
        margin-left: 2em;
    }

    #lgdpr-actions {
        flex-direction: row;
        justify-content: right;
    }

    #lgdpr-actions a {
        margin-right: 1em;
    }
}

@media screen and (max-height: 640px){
    #lgdpr-modal-heading {
        font-size: 1.5em;
        line-height: 1.3333em;
    }
}

@media screen and (min-height: 641px){
    #lgdpr-modal-heading {
        font-size: 2em;
        line-height: 1.5em;
    }
}