/* 1. Скрываем родной SVG с плюсом */
.t585__lines svg {
    display: none;
}

/* 2. Добавляем символ стрелки вниз */
.t585__lines {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
}

.t585__lines::before {
    content: "‹";
    display: inline-block;
    color: #082077;          /* заданный цвет стрелки */
    transform: rotate(-90deg);
    transition: transform 0.2s ease;
}

/* 3. При открытом аккордеоне – поворачиваем стрелку вверх */
.t585__opened .t585__lines::before {
    transform: rotate(135deg);
}


/* 1. Скрываем родной SVG с плюсом */
.t668__lines svg {
    display: none;
}

/* 2. Добавляем символ стрелки вниз */
.t668__lines {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    line-height: 1;
}

.t668__lines::before {
    content: "‹";
    display: inline-block;
    color: #082077;          /* заданный цвет стрелки */
    transform: rotate(-90deg);
    transition: transform 0.2s ease;
}

/* 3. При открытом аккордеоне – поворачиваем стрелку вверх */
.t668__opened .t668__lines::before {
    transform: rotate(135deg);
}