:root {
    --white: #fff;
    --text: #666666;
    --blue: #01b5ff;
    --blue-dark: #0073F0;
    --black-dark: #000000;
}

#msform {
    text-align: center;
    position: relative;
    margin: 30px 0 100px 0;
}

#msform fieldset .form-card {
    background: white;
    border: 0 none;
    border-radius: 6px;
    box-shadow: 0 2px 2px 2px rgb(156 155 155 / 20%);
    padding: 20px 40px 30px 40px;
    box-sizing: border-box;
    width: 94%;
    margin: 40px 3% 20px 3%;
    position: relative;
    text-align: left;
    color: #9E9E9E
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative
}

#msform fieldset:not(:first-of-type) {
    display: none
}

/* #msform .action-button { */
.action-button {
    /* width: 100px; */
    background: var(--blue-dark);
    font-weight: bold;
    color: var(--white);
    border: 0 none;
    cursor: pointer;
    padding: 10px 15px;
    margin: 10px 5px
}

.action-button,
#msform .action-button-previous {
    border-radius: 5px;
}

.action-button:hover,
#msform .action-button:focus {
    box-shadow: 0 0 0 2px var(--white), 0 0 0 3px var(--blue-dark)
}

#msform .action-button-previous {
    width: 100px;
    background: var(--blue-dark);
    font-weight: bold;
    color: var(--white);
    border: 0 none;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px var(--white), 0 0 0 3px var(--blue-dark)
}

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

.fs-title {
    font-size: 25px;
    color: var(--text);
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left
}

#progressbar {
    margin-bottom: 30px;
    padding-left: 0px;
    overflow: hidden;
    color: lightgrey
}

#progressbar .active {
    color: var(--black-dark);
}

#progressbar li {
    list-style-type: none;
    font-size: 12px;
    width: 20%;
    float: left;
    position: relative
}

#progressbar .faq::before {
    font-family: FontAwesome;
    font-size: 1.87rem;
    content: "\f128";
}

#progressbar .sugestion::before {
    font-family: FontAwesome;
    font-size: 1.87rem;
    content: "\f129";
}

#progressbar .identity::before {
    font-family: FontAwesome;
    font-size: 1.87rem;
    content: "\f2c1"
}

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

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

#progressbar li.active:before,
#progressbar li.active:after {
    background: var(--blue-dark)
}

ul.list-sugestion {
  padding-left: 15px;
}

.box-suggestion {
    margin: 15px 0;
}

.box-suggestion-options {
    display: flex;
}

.d-block {
    display: block!important;
}

.has-error {
    color: rgb(255, 0, 0);
    border-color: rgb(255, 0, 0);
}