.childrens {
    display: flex;
    flex-direction: column;
}


.catalog__childrens {
    margin-bottom: 30px;
    padding: 30px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
}

.childrens__title {
    display: block;
}

.childrens__title .mdi {
    display: none;
}

.childrens__list {
    display: flex;
    flex-direction: column;
}

.childrens__item {
    color: var(--third-text-color);
    font-size: 14px;
    margin: 0 10px 5px 0;
    font-weight: 500;
    transition: all .3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.childrens__item:hover {
    opacity: 1;
}

.childrens__item:last-child {
    margin-right: 0;
}

.childrens__item:hover {
    color: var(--accent-color);
}

.children__dropdown-btn {
    cursor: pointer;
}

.children__dropdown {
    display: none;
}
.children__dropdown-btn .icon_plus {
    width: 16px;
    height: 16px;
    display: block;
    fill: var(--third-text-color);
}
.children__dropdown-btn .icon_minus {
    display: none;
    width: 16px;
    height: 16px;
    fill: var(--third-text-color);
}
.children__dropdown-btn._active .icon_plus {
    display: none;
}
.children__dropdown-btn._active .icon_minus {
    display: block;
}
.children__dropdown-item {
    padding-left: 20px;
}

.childrens__link {
    display: block;
}

@media (max-width: 1005px) {
    .childrens__title {
        cursor: pointer;
        margin: 8px 0;
    }
    .childrens__title .mdi {
        display: block;
        transition: all 0.4s ease-in-out;
    }
    .childrens__title._active .mdi {
        transform: rotate(180deg);
    }
    .catalog__childrens {
        padding: 5px 30px;
    }
}