.csteps__title{
    font-size: 18px;
    font-weight: bold;
}
.csteps__items{
/*    display: flex;
    flex-wrap: wrap;
    gap: 4px;*/
    margin-top: 18px;
    position: relative;
}
.csteps__items::after{
    display: block;
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 30px;
    z-index: 4;
    background: linear-gradient(to right, transparent, var(--bg-color-main));
}
.csteps__item{
    width: 65px !important;
}
.cs-item__button{
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--step-bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 6px 0 var(--step-shadow-color);
    border: 1px solid var(--step-border-color);
    cursor: pointer;
}
.cs-item_inactive{
    opacity: 0.5;
}
.cs-item_active .cs-item__button{
/*    border: 1px solid var(--step-border-color-active);*/
    background: var(--step-bg-color-active);
    box-shadow: inset 0 0 0 4px var(--step-shadow-color-active);
}
.cs-item_filled .cs-item__button{
    border: 1px solid var(--step-border-color-active);
}
.cs-item__icon{
    width: 30px;
    height: 30px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
}
.cs-item__icon_containers{
    background-image: url(../images/containers.png);
}
.cs-item__icon_coloring{
    background-image: url(../images/coloring.png);
}
.cs-item__icon_waxes{
    background-image: url(../images/waxes.png);
}
.cs-item__icon_scents{
    background-image: url(../images/scents.png);
}
.cs-item__icon_wax_colors{
    background-image: url(../images/wax_colors.png);
}
.cs-item__icon_wicks{
    background-image: url(../images/wicks.png);
}
.cs-item__icon_legend{
    background-image: url(../images/legend.png);
}
.cs-item__icon_extra{

}
.cs-item__title{
    font-size: 12px;
    text-align: center;
}
@media(min-width: 768px){
    .csteps__items{
        gap: 14px;
    }
    .csteps__title{
        font-size: 32px;
    }
    .csteps__item{
        width: 108px !important;
    }
    .cs-item__button{
        width: 108px;
        height: 108px;
    }
    .cs-item__icon{
        width: 46px;
        height: 46px;
    }
}