.features-select {
    --spacing: 0.25rem;
}

.features-select__inner {
    margin-top: 3.25rem;
}

@media (min-width: 768px) {
    .features-select__inner {
        display: flex;
    }
}

.features-select__content {
    --maxWidth: 41rem;
    flex-grow: 1;
    height: inherit;
    padding-inline: 1.5rem;
    padding-block: 3.35rem;
    background: #fafafa;
    display: none;
    overflow: hidden;
    margin-top: var(--spacing);
}

.features-select__content__links {
    margin-top: 1.2rem;
    margin-inline: auto;
    max-width: var(--maxWidth);
}

.features-select__content__links>*:not(:first-child) {
    margin-left: 1rem;
}

@media (min-width: 768px) {
    .features-select__content {
        margin-top: 0;
        margin-left: var(--spacing);
    }
}

.features-select__content--active {
    display: block;
}

.features-select__content__img {
    margin-top: 2.25rem;
    width: max-content;
    max-height: 500px;
}



@media (min-width: 768px) {
    .features-select__content__img {
        object-fit: contain;
        width: 100%;
    }
}

.features-select__list {
    width: max-content;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.features-select__content__text {
    max-width: var(--maxWidth);
    margin-inline: auto;
}

.features-select__content p {
    color: var(--text-normal);
}

.features-select__outter {
    width: 100%;
    /* overflow-x: scroll; */
}

@media (min-width: 768px) {
    .features-select__outter {
        max-width: 12rem;
    }

    .features-select__list {
        width: auto;
    }
}



.features-select__list>*:not(:first-child) {
    margin-left: var(--spacing);
}

@media (min-width: 768px) {
    .features-select__list>*:not(:first-child) {
        margin-left: 0;
        margin-top: var(--spacing);
    }
}

@media (max-width: 768px) {
    .features-select__list {
        width: auto;
        height: auto;
        display: block;
        flex-shrink: 0;
        flex-wrap: wrap;
    }
}


.features-select__list__item {
    width: 100%;
    display: flex;
    padding: 0.75rem 1rem;
    align-items: center;
    gap: 2.75rem;
    border-radius: 0.25rem;
    background: #fafafa;
    color: var(--text-normal, #666d80);
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: -0.02rem;
    transition: all 0.5s ease-out;
}

.features-select__list__item--active {
    background: #f1f5fe;
    color: var(--primary-color);
}

.features-select__list__item:hover {
    cursor: pointer;
}