/* Custom */

.step__hr {
    border: solid 0px #f5f5f5;
    display: none;
}

.step__number {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 30px;
    height: 30px;
    border: solid 1px #f5f5f5;
    border-radius: 50%;
    line-height: 1.6rem;
    font-size: 1.2rem;
    font-weight: 300;
    color: #767676;
    background-color: #f5f5f5;
}

.step__label {
    /* padding: 0 10px; */
    color: #ddd;
    font-size: 1.2rem;
}

.step__title {
    min-height: 50px;
}

.step__title__text {
    color: #232323;
    font-size: 1.4rem;
}

.step__title small {
    font-size: 0.8rem;
    color: #767676;
    margin-top: -5px;
    display: inline-block;
}

.step__title__search {
    border: 1px solid #f5f5f5;
    background-color: #fbfbfb;
    border-radius: 20px;
    text-align: left;
    min-width: 200px;
    padding: 6px 15px;
    margin-top: 8px;
}

.step__title__search__icon {
    margin-top: 12px;
    border-radius: 20px;
    background-color: #26e3c0;
    text-align: center;
    padding: 7px 10px 6px 10px;
    margin-right: -196px;
}

.step__title__button {
    text-align: left;
    min-width: 200px;
    margin-top: 8px;
}

.step__title__button__icon {
    margin-top: 1px;
}

.step__body {
    margin: 15px 2px 5px 2px;
    max-height: calc(100vh - 400px);
    overflow-y: auto;
    overflow-x: hidden;
    float: left;
    width: 100%;
}

.step__body .checkbox {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: sub;
}

.step__body__personality {
    background-color: lightblue;
    color: #232323;
    text-align: center;
    padding: 25px 10px;
    margin: 5px 0;
    border-radius: 40px;
}

.step__body__button {
    text-align: left;
    min-width: 200px;
}

.step__body__button__icon {
    line-height: 1.2rem;
}

.step__rightcard {
    border-radius: 10px;
    overflow: hidden;
}

.step__rightcard__title {
    background-color: #26e3c0;
    text-align: center;
    font-size: 1.2rem;
    padding: 5px 10px;
}

.step__rightcard__body {
    background-color: #f5f5f5;
    padding: 10px;
    color: #232323;
    height: 344px;
    overflow-y: auto;
}

.step__container__bar {
    background-color: white;
}

.step__container__form {
    background-color: white;
    border-radius: 30px 30px 0 0;
}

.step__container__buttons {
    background-color: white;
    border-radius: 0 0 30px 30px;
}

.active .step__hr {
    border: solid 0px #26e3c0;
    opacity: 0.6;
}

.active .step__number {
    border: solid 1px #26e3c0;
    color: #fff;
    background-color: #26e3c0;
}

.active .step__label {
    color: #26e3c0;
}

.done .step__hr {
    border: solid 0px #26e3c0;
    opacity: 1;
}

.done .step__number {
    border: solid 1px #26e3c0;
    color: #f5f5f5;
    background-color: #26e3c0;
}

.done .step__label {
    color: #26e3c0;
}


/* Hide all steps by default: */

.tab {
    display: none;
}


/* Make circles that indicate the steps of the form: */


/* .step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
} */


/* Mark the active step: */

.step.active {
    opacity: 1;
}


/* Mark the steps that are finished and valid: */

.step.finish {
    background-color: #04AA6D;
}
