.list_how_to {
    margin-top: 24px;
    margin-bottom: 24px;
    border-radius: 24px;
    padding: 24px;
    background: var(--surface-3, #F2F6FA);
    /*color: var(--text-secondary, #757575);*/
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.list_how_to__title {
    color: var(--text-primary, #000);
    font-family: "Karla";
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: 32px;
    letter-spacing: -0.24px;
    margin-bottom: 8px;
}

.list_how_to__list_wrapper {
    margin-top: 24px;
}

.list_how_to__list {
    counter-reset: item;
    margin-left: 0;
    padding-left: 0;
}

.list_how_to__item {
    display: block;
    position: relative;
    padding-bottom: 24px;
    padding-left: 0 !important;
}

.list_how_to__item:last-child .list_how_to__item_text {
    margin-bottom: 0;
}

.list_how_to__item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.list_how_to__item:last-child  .list_how_to__item_image_wrapper {
    margin-top: 0;
}

@counter-style leading-zero {
    system: extends decimal;
    pad: 2 '0';
}

.list_how_to__item::before {
    content: counter(item, leading-zero);
    counter-increment: item;
    position: absolute;
    border-radius: 16px 0 0 16px;
    background: var(--surface-1, #152638);
    width: 46px;
    height: 48px;

    font-family: 'Karla';
    font-size: 20px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px;
    text-transform: capitalize;
    color: white;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list_how_to__item:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 1px;
    border-left: 1px var(--surface-1, #152638) dashed;
    opacity: 0.5;
    z-index: 1;
}

.list_how_to__item:last-child:after {
    display: none;
}

.list_how_to__item_title {
    margin-top: 0;
    color: var(--text-primary, #000);
    font-family: 'Karla';
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 24px;
    border-radius: 16px;
    padding: 12px 16px 12px 58px;
    background: white;
    width: fit-content;
    margin-bottom: 8px;
}

.list_how_to__item_title span {
    display: block;
}

.list_how_to__item_text {
    padding-left: 56px;
}

.list_how_to__item_image_wrapper {
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding-left: 56px;
    display: flex;
}

.list_how_to__item_image_wrapper img {
    border-radius: 16px;
    width: 100%;
    margin-bottom: 8px;
}

.list_how_to__item_image {
    display: block;
    position: relative;
    top: 0;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}

@media screen and (max-width: 991px) {
    .list_how_to {
        margin-top: 24px;
        margin-bottom: 24px;
        padding: 16px;
    }

    .list_how_to__item_title {
        width: 100%;
    }

    .list_how_to__list_wrapper {
        padding: 0;
    }

    .list_how_to__item {
        padding-bottom: 12px;
    }

    .list_how_to__item_image_wrapper {
        margin-top: 12px;
    }
}
