.history {
    /*border: 1px solid var(--color-3);*/
    background-color: #FFFFFF;
}

.history__container {
    width: 100%;
    max-width: 1243px;
    margin: 0 auto;
    display: block;
    /*flex-wrap: wrap;*/
    overflow: hidden;
    align-items: center;
    gap: 11px;
    list-style: none;
    /*white-space: nowrap;*/
    padding: 5px 24px;
}

.history__home {
    width: 24px;
    height: 24px;
    display: inline;
}

.history__home a{
    width: 24px;
    height: 24px;
    fill: var(--color-5);
}

.history__home svg {
    vertical-align: text-bottom;
}

.history__step {
    color: var(--color-6);
    /*display: flex;*/
    /*align-items: center;*/
    gap: 8px;
    display: inline;
}

.history__step:before {
    content: "/";
    display: inline;
    color: var(--color-5);
    font-size: var(--font-size-24);
}

@media screen and (max-width: 1000px){

    .history__container {
        width: 100%;
        overflow-x: scroll;
    }

    .history__container::-webkit-scrollbar {
        height: 0;
    }
}