.tr-wizard {
    margin-left: -15px;
    margin-right: -15px;
}

.tr-wizard-step {
    padding: 0px;
    list-style: none;
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 50px;
    margin-top: 15px;
    position: relative;
}

.tr-wizard-step li {
    position: relative;
    display: flex;
    width: 100%;
    justify-content: center;
}

/*Line of step*/
.tr-wizard-step li::before {
    content: "";
    width: 100%;
    background-color: #dddddd;
    height: 6px;
    position: absolute;
    margin-top: 27px;
}

.tr-wizard-step li.tr-wizard-step-actual::before {
    background-image: linear-gradient(to right, #1e9dce 0%, #1e9dce 50%, #dddddd 50%, #dddddd 100%);
}

.tr-wizard-step li.tr-wizard-step-finished::before {
    background-color: #1e9dce;
}

.tr-wizard-step li span.tr-wizard-step-icon {
    border: 2.5px solid #dddddd;
    background-color: #ffffff;
    color: #dddddd;
    width: 60px;
    height: 60px;
    font-size: 2.5em;
    border-radius: 60px;
    text-align: center;
    z-index: 2;
}

.tr-wizard-step li.tr-wizard-step-finished span {
    color: #1e9dce;
    border-color: #1e9dce;
}

.tr-wizard-step li.tr-wizard-step-active span.tr-wizard-step-icon {
    background-color: #1e9dce;
    color: #ffffff;
    border-color: #1e9dce;
}

.tr-wizard-step li .tr-wizard-step-icon i {
    vertical-align: middle;
}

.tr-wizard-step li span.tr-wizard-step-text {
    position: absolute;
    bottom: -25px;
    font-size: 1.30em;
}

.tr-wizard-content, .tr-wizard-finished {
    margin-left: 15px;
    margin-right: 15px;
    display: none;
}

.wizard-content-on {
    display: block !important;
}

.tr-wizard-buttons-modal {
    margin-top: 40px;
}

.tr-wizard-buttons-modal fieldset {
    margin-left: -15px;
    margin-right: -15px;
}

.tr-wizard-buttons-modal .tr-wizard-footer {
    padding: 5px 15px;
}

.tr-wizard-btn-cancel {
    margin-right: 15px;
}