.lm-accordions {
    padding-bottom: 40px;
}

.lm-accordions > .ctnr {
    max-width: 830px;
}

.lm-accordions .accordion {
    border-bottom: 1px solid var(--tertiary-400);
    padding-bottom: calc(var(--gap2) - 10px);
}

.lm-accordions .accordion p {
    margin-top: var(--gap1);
    margin-bottom: var(--gap1);
}

.lm-accordions .accordion .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--gap2);
    cursor: pointer;
}

.lm-accordions .accordion .title h2 {
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: var(--primary-400);
    font-weight: 600;
    line-height: 150%;
    font-size: 16px;
    margin-bottom: 0;
}

.lm-accordions .accordion .text {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--grey-600);
    font-weight: 400;
    line-height: 150%;
    margin-top: 15px;
}

.lm-accordions .plus {
    position: relative;
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lm-accordions .horizontal,
.lm-accordions .vertical {
    background-color: var(--primary-400);
    position: absolute;
    border-radius: 5px;
}

.lm-accordions .horizontal {
    width: 100%;
    height: 2px;
}

.lm-accordions .vertical {
    height: 100%;
    width: 2px;
    transition: transform 500ms ease, opacity 250ms ease;
}

.lm-accordions .vertical.rotate {
    transform: rotate(90deg);
    opacity: 0;
}

.lm-accordions .lm_button {
    margin-bottom: var(--gap1);
}
