/* Хлебные крошки */
.line-back {
    flex-wrap: wrap;
    align-items: center;
    width: fit-content;
    display: flex;
    gap: 10px;
    width: 100%;
}

.line-back img {
  width: 14px;
  height: 14px;

  object-fit: contain;
}

.step {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 140%;

    transition: color .3s ease-in-out, filter .3s ease-in-out;
}

.line-back.light .step {
    filter: brightness(1.3);
}

.line-back a:hover {
    color: var(--color-foreground-accent);
}

.line-back.light a:hover {
    color: var(--color-text-secondary);
    filter: brightness(1.7);
}

.line-back.abs {
    position: absolute;
    top: 22vh;
    width: 95%;
    left: calc((100% - 95%) / 2);
}

.line-back.light img {
    filter: brightness(1.3);
}

@media screen and (min-width: 2050px) {
    .line-back {
        width: 95.261% !important;
        max-width: 2439px;
    }
}

@media screen and (max-width: 1100px) {
    .line-back {
        width: 95% !important;
    }
}

@media screen and (max-width: 600px) {
    .line-back {
        width: 93.334% !important;
        gap: 8px;

        font-size: var(--font-size-xs);
        line-height: 125%;
    }

    .line-back img {
        width: 12px;
        height: 12px;
        object-fit: contain;
    }

    .step {
        font-size: var(--font-size-xs);
        line-height: 125%;
    }
}