.ls-ac-accordion {
    width: 100%;
    /*   box-shadow: 0 0 5rem lightgrey; */
}

.ls-ac-heading {
    margin-bottom: 1rem;
    padding: 0 1.4rem;
}

.ls-ac-item:not(:last-child) {
    border-bottom: 1px solid var(--ls-form-background-color);
}

.ls-ac-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1.2rem 1.4rem;
    background: var(--lsOpac-button-bg);
    border: none;
    outline: none;
    color: var(--lsOpac-button-text-color);
    font-size: 1.2rem;
    text-align: left;
    cursor: pointer;
    transition: 0.1s;
}

.ls-ac-btn:hover {
    color: var(--lsOpac-active-button-text-color);
    background: var(--lsOpac-active-button-bg);
}

.ls-ac-item--active .ls-ac-btn {
    color: var(--lsOpac-active-button-text-color);
    border-bottom: 2px solid var(--lsOpac-active-button-text-color);
    background: var(--lsOpac-active-button-bg);
}

.ls-ac-icon {
    border-radius: 50%;
    transform: rotate(0deg);
    transition: 0.3s ease-in-out;
    opacity: 0.9;
}

.ls-ac-bulb {
    padding-right: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.ls-ac-caption {
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.ls-ac-item--active {
    gap: 1.5rem;
    display: flex;
    flex-direction: column;
}

.ls-ac-item--active .ls-ac-icon {
    transform: rotate(135deg);
}

.ls-ac-content {
    font-weight: 300;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateX(16px);
    transition: max-height 0.5s ease, opacity 0.5s, transform 0.5s;
}

.ls-ac-item--active .ls-ac-content {
    opacity: 1;
    transform: translateX(0px);
    max-height: fit-content;
    border-left: 5px solid var(--lsOpac-active-button-bg);
    padding: 1.5rem;
}
