[class^=lcc-] {
    --lcc-primary-color-rgb: 255, 255, 255;
    --lcc-secondary-color-rgb: 17, 17, 17;
    --lcc-primary-color: rgb(var(--lcc-primary-color-rgb));
    --lcc-secondary-color: rgb(var(--lcc-secondary-color-rgb));
    --lcc-font-size: 0.875rem;
    box-sizing: border-box !important;
    color: var(--lcc-primary-color);
    font-size: var(--lcc-font-size);
    line-height: 130%
}

[class^=lcc-]:first-child {
    margin-top: 0
}

[class^=lcc-]:last-child {
    margin-bottom: 0
}

[class^=lcc-][inert] {
    cursor: default;
    pointer-events: none
}

[class^=lcc-][inert],
[class^=lcc-][inert] * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none
}

.lcc-text {
    font-size: var(--lcc-font-size, 16px);
    margin: 0 0 22px
}

.lcc-text a {
    padding-left: .5em
}

a.lcc-link {
    cursor: pointer;
    margin: 0 0 22px;
    text-decoration: underline
}

a.lcc-link:hover {
    text-decoration: none
}

.lcc-button {
    background: none;
    background-color: var(--lcc-primary-color);
    border: 1px solid var(--lcc-primary-color);
    color: var(--lcc-secondary-color);
    cursor: pointer;
    display: inline-block;
    font-size: inherit;
    margin: 1px 0;
    outline: none;
    padding: 6px 15px;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease
}

.lcc-button:focus,
.lcc-button:hover {
    background: #777;
    border-color: #777
}

.lcc-button.lcc-button--link {
    background: transparent;
    border-color: transparent;
    color: inherit;
    padding-left: 0;
    padding-right: 0;
    text-decoration: underline
}

.lcc-button.lcc-button--link:focus,
.lcc-button.lcc-button--link:hover {
    background: transparent;
    border-color: transparent;
    text-decoration: none
}

.lcc-button.lcc-button--link+.lcc-button.lcc-button--link {
    margin-top: 0
}

.lcc-label {
    align-items: baseline;
    display: flex;
    margin-bottom: 5px
}

.lcc-label[for] {
    cursor: pointer
}

.lcc-label>* {
    margin-right: 10px
}

input[id^=lcc-]:disabled {
    color: #777;
    cursor: default;
    opacity: .55
}

input[id^=lcc-]:disabled+span {
    cursor: default;
    opacity: .6
}

.lcc-backdrop {
    background: rgba(var(--lcc-secondary-color-rgb), .6);
    bottom: 0;
    left: 0;
    /* position: fixed; */
    right: 0;
    top: 0;
    transition: opacity .2s ease-in-out;
    z-index: 10000
}

.lcc-modal {
    --lcc-opacity: 0.8;
    background: rgba(var(--lcc-secondary-color-rgb), var(--lcc-opacity));
    bottom: 0;
    max-height: 90%;
    overflow: auto;
    padding: 30px;
    position: fixed;
    width: 100vw;
    z-index: 10001
}

.lcc-modal .lcc-modal__close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
    font-size: 24px;
    line-height: 1.25;
    position: absolute;
    right: 0;
    top: 0;
    transition: color .2s ease;
    width: 30px
}

.lcc-modal .lcc-modal__close:focus,
.lcc-modal .lcc-modal__close:hover {
    color: #777
}

.lcc-modal .lcc-modal__title {
    font-size: 22px;
    margin-bottom: 1em
}

.lcc-modal .lcc-modal__section {
    margin-bottom: 1.8em
}

.lcc-modal .lcc-modal__actions {
    margin-top: 2em
}

.lcc-modal .lcc-modal__actions>* {
    display: block;
    margin-top: .5em
}

.lcc-modal.lcc-modal--settings {
    z-index: 10002
}

.lcc-u-sr-only {
    clip: rect(0, 0, 0, 0);
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.lcc-u-text-center {
    text-align: center !important
}