* {
    margin: 0;
    padding: 0
}


fieldset {
    display: none;
    border: none;
    padding: 5px;
}

.hide {
    display: none
}

/*
fieldset:not(:first-of-type) {
    display: none
}
*/

.card {
    z-index: 0;
    border: none;
    border-radius: 0.5rem;
    position: relative
}

#progressbar {
    margin-bottom: 15px;
    overflow: hidden;
    color: lightgrey
}

#progressbar .active {
    color: #000000
}

#progressbar li {
    list-style-type: none;
    font-size: 12px;
    /*comentei pois tirei a etapa de configuração, ficando 3*/
    /*width: 25%;*/
    width: 33%;
    float: left;
    position: relative
}

#progressbar #cadastro:before {
    font-family: "FontAwesome";
    content: "\f007"
}

#progressbar #dados:before {
    font-family: "FontAwesome";
    content: "\f1ad"
}

#progressbar #configuracoes:before {
    font-family: "FontAwesome";
    content: "\f085"
}

#progressbar #pagamento:before {
    font-family: "FontAwesome";
    content: "\f155"
}

#progressbar #confirmacao:before {
    font-family: "FontAwesome";
    content: "\f058"
}

#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 18px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: skyblue
}

.fit-image {
    width: 100%;
    object-fit: cover
}


.radio-group {
    position: relative;
    /*margin-bottom: 25px;*/
}
.radio {
    display: inline-block;
    width: 120px;
    height: 64px;
    border-radius: 0;
    /*background: #b2ebf2;*/
    box-sizing: border-box;
    border-top: 3px solid #e8f5e9;
    cursor: pointer;
    margin: 8px 0px 8px 0px;
    transition: 0.3s;
}
.radio:hover {
    border-top: 3px #b2ebf2 solid;
    transition: 0.3s;
}
.radio.selected {
    border-top: 3px solid #0091ea;
    transition: 0.3s;
}