.js-lcc-active {
    overflow: hidden;
}

[class^=lcc-] {
    box-sizing: border-box !important;
    color: #111;
    font-size: 16px;
    line-height: 22px;
}

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

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

.lcc-text {
    font-size: 16px;
    margin: 0 0 10px;
}

.lcc-button {
    background-color: #111;
    border: 1px solid #111;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    margin: 0 5px 5px 5px;
    padding: 10px 20px;
    border-radius: 4px;
    transition: all .2s ease;
    text-transform: uppercase;
}

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

.lcc-button.lcc-button--ghost {
    background-color: transparent;
    border: 1px solid #111;
    color: #111;
}

.lcc-button.lcc-button--ghost:focus,
.lcc-button.lcc-button--ghost:hover {
    background: #111;
    color: #fff;
}

.lcc-modal {
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10001;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e0e0e0;
}

.lcc-modal--alert {
    flex-direction: row;
    flex-wrap: wrap;
}

.lcc-modal__content {
    flex: 1;
    padding-right: 20px;
    text-align: left;
}

.lcc-modal__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.lcc-modal__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
}

@media (max-width: 768px) {
    .lcc-modal--alert {
        flex-direction: column;
        text-align: center;
    }

    .lcc-modal__content {
        padding-right: 0;
        margin-bottom: 20px;
        text-align: center;
    }

    .lcc-modal__actions {
        justify-content: center;
        width: 100%;
    }

    .lcc-button {
        width: 100%;
        margin: 0 0 5px 0;
    }
}

.lcc-modal--settings {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    bottom: auto;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    display: block;
}

.lcc-modal--settings .lcc-modal__content {
    text-align: left;
    padding-right: 0;
}

.lcc-backdrop {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 10000;
}

.lcc-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

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