.tabs__custom {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    font-family: sans-serif;
    align-items: baseline;
}

.tabs__label {
    padding: 10px 16px;
    cursor: pointer;
}

.tabs__radio {
    display: none;
}

.tabs__content {
    order: 1;
    width: 100%;
    border-bottom: 3px solid #dddddd;
    line-height: 1.5;
    font-size: 0.9em;
    display: none;
}

.tabs__radio:checked+.tabs__label {
    font-weight: bold;
    color: #ffa600;
    border-bottom: 2px solid #ffa600;
}

.tabs__radio:checked+.tabs__label+.tabs__content {
    display: initial;
}

.container_progress_bar {
    width: 80em;
    position: absolute;
    z-index: 1;
}

.progressbar li {
    float: left;
    width: 20%;
    position: relative;
    text-align: center;
}

.progressbar {
    counter-reset: step;
    list-style-type: none;
}

.progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
    height: 30px;
    border: 2px solid #bebebe;
    display: block;
    margin: 0 auto 10px auto;
    border-radius: 50%;
    line-height: 27px;
    background: white;
    color: #bebebe;
    text-align: center;
    font-weight: bold;
}

.progressbar li:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: #979797;
    top: 15px;
    left: -50%;
    z-index: -1;
}

.progressbar li:first-child:after {
    content: none;
}

.progressbar li:first-child:before {
    border-color: #3aac5d;
    background: #3aac5d;
    color: white
}

.progressbar li.active+li:after {
    background: #3aac5d;
}

.progressbar li.active+li:before {
    border-color: #3aac5d;
    background: #3aac5d;
    color: white
}
.input_item {
    width: 90%;
    margin-left: 1.5em;
}
.items_label_panel {
    font-weight: bold;
}

.item_body_panel {
    margin-bottom: 2%;
}

.item_body_text_panel {
    margin-left: 1em;
}

.label_tittle {
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 0;
}

.container_box_custom {
    background-color: rgba(239, 239, 240, .2);
    padding: .75rem;
    border-radius: .25rem;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .1);
    margin-top: 0.5em;
}