.custom-widget {
    position: relative;
    padding: 5px 20px;
}

.custom-widget .line {
    position: absolute;
    left: 20px;
    top: 0;
    width: 1px;
    height: 0;
    background-color: #C8C8C8;
    opacity: 0;
    transition: opacity 0.7s ease, height 0.7s ease;
}

.custom-widget .line.animation {
    opacity: 1;
    height: 100%;
}

.custom-widget .item {
    display: flex;
    align-items: center;
    margin: 25px 0;
    padding-left: 50px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
    position:relative;
}
.custom-widget .item:after{
    position: absolute;
    display: block;
    content: '';
    left: 0;
    top:0;
    bottom: 0;
    margin: auto;
    height: 1px;
    width: 20px;
    background-color: #C8C8C8;
}

.custom-widget .item.animation {
    opacity: 1;
    transform: translateX(0);
}

.custom-widget .item .icon {
    margin-right: 10px;
    color: #0073e6;
    font-size: 24px;
}
.custom-widget .item .item__image{
    padding-right: 10px;
}
.custom-widget .item .item__text{

}