.tabs-form {

}

.tabs-form .tabs-form-list {
    list-style-type: none;
    position: relative;
    float: left;
    width: 230px;
    padding-left: 28px;
}

.tabs-form .tabs-form-list::before {
    content: '';
    position: absolute;
    width: 2px;
    height: calc(100% - 40px);
    background-color: #7366ff;
    left: 8px;
    top: 20px;
    opacity: 0.2;
}

.tabs-form .tabs-form-list > li {
    width: 100%;
    position: relative;
}

.tabs-form .tabs-form-list > li::after,
.tabs-form .tabs-form-list > li::before {
    content: '';
    position: absolute;
    border-radius: 50%;
    left: -25px;
    top: 14px;
    transition: 0.5s all;
}

.tabs-form .tabs-form-list > li::before {
    width: 12px;
    height: 12px;
} 

.tabs-form .tabs-form-list > li.tabs-on:before {
    background: #dddaf9;
}

.tabs-form .tabs-form-list > li.tabs-on.tabs-complete:before {
    background: #7366ff;
}

.tabs-form .tabs-form-list > li.tabs-on::after {
    border: 1px solid #7366ff96;
}

.tabs-form .tabs-form-list > li.tabs-off:before {
    background: #cecece;
}

.tabs-form .tabs-form-list > li.tabs-off::after {
    border: 1px solid #cecece;
}

.tabs-form .tabs-form-list > li::after {
    width: 20px;
    height: 20px;
    top: 10px;
    left: -29px;
}

.tabs-form .tabs-form-list > li.disabled,
.tabs-form .tabs-form-list > li.disabled a {
    opacity: 0.5;
    cursor: no-drop;
}

.tabs-form .tabs-form-list > li.active {

}

.tabs-form .tabs-form-list > li.active a {
    font-weight: bold;
    color: #7366ff;
}
 
.tabs-form .tabs-form-list > li.active::before {
    opacity: 1;
    width: 16px;
    height: 16px;
    left: -27px;
    top: 12px;  
}

.tabs-form .tabs-form-list > li.active::after {
    width: 24px;
    height: 24px;
    top: 8px;
    left: -31px;
}

.tabs-form .tabs-form-list > li > a {
    padding: 10px;
    display: block;
    color: #333;
    opacity: 0.8;
}

.tabs-form .tabs-form-list > li:not(.tabs-off) > a:hover
.tabs-form .tabs-form-list > li:not(.disabled) > a:hover {
    opacity: 1;
}

.tabs-form .tabs-form-list > li.tabs-hide {
    display: none;
}

.tabs-form .tabs-form-content {
    width: calc(100% - 230px);
    float: left;
    background-color: #fff;
    padding: 25px;
    min-height: 300px;
}

.tabs-form .tabs-form-content h4 {
    margin: auto;
}

.tabs-form-content .tab-content-title {
    display: none;
    position: relative;
}

.tabs-form-content .tab-content-title i {
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0;
    height: 13px;
    margin: auto;
}

.tabs-form-content .tab-content.active .tab-content-title i {
    transform: rotate(90deg);
    transition: 0.5s all;
}

.tabs-form .tab-content .tab-content-body {
    overflow: hidden;
    transition: height 1s ease-in-out;
    height: 0;
}

.tabs-form .tab-content.active .tab-content-body {
    height: auto;
}

.tabs-form-sucess .tabs-form-check i {
    font-size: 55px;
    margin-top: 40px;
    color: #3dce42;
}

@media(max-width: 767px) {
    .tabs-form .tabs-form-content {
        width: 100%;
        background: transparent;
    }

    .tabs-form .tabs-form-content {
        padding: 0 !important;
        box-shadow: none !important;
    }

    .tabs-form .tabs-form-content .tab-content {
        margin-bottom: 15px;
        background: #fff;
    }

    .tabs-form .tabs-form-content .tab-content-title,
    .tabs-form .tabs-form-content .tab-content.active .tab-content-body {
        padding: 15px;
    }

    .tabs-form .tabs-form-content .tab-content-title {
        display: block;
    }

    .tabs-form .tabs-form-content .tab-content-title h3 {
        margin: auto;
        font-size: 1.4rem;
        font-weight: bold;
    }

    .tabs-form .tabs-form-content .tab-content-body {
        border-top: 1px solid #d9d9d9;
    }
}