

#heading {
    text-transform: uppercase;
    color: #673AB7;
    font-weight: normal
}

#msform {
    text-align: center;
    position: relative;
    margin-top: 20px
}

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

#msform fieldset .btn_container{
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    box-sizing: border-box;
}
#msform fieldset .btn_container button {
    padding: 10px;
    background: #a8e863c0;
}

.form-card {
    text-align: left
}

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

#msform input,
#msform textarea {
    /* padding: 8px 15px 8px 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    background-color: #ECEFF1;
    font-size: 16px;
    letter-spacing: 1px */
}

#msform input:focus,
#msform textarea:focus {
    /* -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #673AB7;
    outline-width: 0 */
}

#msform .action-button {
    width: 100px;
    background: #673AB7;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    float: right
}

#msform .action-button:hover,
#msform .action-button:focus {
    background-color: #311B92
}

#msform .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px 10px 0px;
    float: right
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
    background-color: #000000
}

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

.fs-title {
    font-size: 25px;
    color: #673AB7;
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left
}

.purple-text {
    color: #673AB7;
    font-weight: normal
}

.steps {
    font-size: 25px;
    color: gray;
    margin-bottom: 10px;
    font-weight: normal;
    text-align: right
}

.fieldlabels {
    color: gray;
    text-align: left
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: #333
}

#progressbar .active {
    color: #a8e863
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    width: 25%;
    float: left;
    position: relative;
    font-weight: 400
}

#progressbar #account:before {
    font-family: FontAwesome;
    content: "\f13e"
}

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

#progressbar #payment:before {
    font-family: FontAwesome;
    content: "\f030"
}

#progressbar #confirm:before {
    font-family: FontAwesome;
    content: "\f00c"
}

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

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

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

.progress {
    height: 7px;
    background: #333;
    width: 80%;
}

.progress-bar {
    background-color: #a8e863
}

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

.progress_value_wh {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    color: #777;
    font-weight: bold;
    width: 80%;
    margin-top: 5px;
}

/* ///////////////////////////////////////////////////////////// */

.picture_input_container_wh {
    position: absolute;
    top: 80px;
    right: 10px;
    width: 150px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.form_img_preview_wh {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
}
.form_img_preview_wh:hover {
    background: #a8e86333;
}
.form_img_preview_wh img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.form_img_preview_wh i {
    font-size: 50px;
    height: 50px;
    color: #a8e863;
}
.form_img_preview_note_wh {
    margin-top: 20px;
    text-align: center;
}


.form_input_container {
    position: relative;
}

.form_input_container i.valid,
.form_input_container i.invalid {
    position: absolute;
    color: #a8e863;
    height: 17px;
    font-size: 17px;
    top: 50%;
    transform: translateY(-50%);
    right: 15px;
}
.form_input_container i.invalid {
    color: rgb(255, 108, 108);
}
.form_input_container small {
    position: absolute;
    bottom: -15px;
    left: 10px;
    font-size: 11px;
    color: rgb(255, 135, 135) !important;
}


