* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 

p {
    color: grey;
}

#heading {
    text-transform: capitalize;
    color: #949494;
    font-weight: normal;
}

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

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

.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 rgb(212, 214, 214);
    border-radius: 5px;
    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 rgb(212, 214, 214);
    ;
    outline-width: 0;
}

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

#msform .action-button:hover,
#msform .action-button:focus {
    background-color: #949494;
}

#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: #a32b0d;
    margin-bottom: 15px;
    font-weight: normal;
    text-align: left;
}

.purple-text {
    color: #949494;
    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: 0px;
    overflow: hidden;
    color: lightgrey;
    padding: 0px;
}

#progressbar .active {
    color: #949494;
    background-color: transparent;
}

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

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

#progressbar #address:before {
    font-family: FontAwesome;
    content: "\f3c5";
}

#progressbar #passport:before {
    font-family: FontAwesome;
    content: "\f5ab";
}

#progressbar #visa:before {
    font-family: FontAwesome;
    content: "\f1f0";
}

#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: 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: #949494;
}

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

#form-details {
    padding: 10px 40px;
}


/* .label-field {
    position: relative;
    box-sizing: border-box;
} */


/* .label-field input {
    background-color: transparent;
    border: 1px solid #939293;
    border-radius: 5px;
    color: black;
    font-size: 1em;
    padding: 1em;
    width: 100%;
    position: relative;
} */


/* .label-field label {
    color: rgb(63, 62, 62);
    font-size: 1em;
    left: 1em;
    position: absolute;
    top: 0.8em;
    transition: all 0.1s linear;
} */


/* .label-field input:focus+label,
.label-field textarea:focus+label,
.label-field input+label.show {
    color:  rgb(63, 62, 62);
    font-size: 0.8em;
    left: 0.9em;
    padding: 0 0.5em;
    top: -1em;
    background: white;
} */


/* .label-field input:valid+label,
.label-field textarea:valid+label {
    color: rgb(63, 62, 62);
    font-size: 0.8em;
    left: 0.9em;
    padding: 0 0.5em;
    top: -1em;
    background: white;
} */


/* 
.label-field input:focus {
    outline: none;
    border: 1px solid transparent;
    box-shadow: 0 0 0 2px #661be6;
} */

#form-details img {
    width: 100%;
    padding: 25px;
    position: relative;
    border-radius: 50px;
}

.profile-image {
    position: relative;
}

.overlay {
    position: absolute;
    left: 50%;
    bottom: 20%;
    z-index: 1;
    transform: translate(-50%, 50%);
    opacity: 0;
}

.profile-image:hover .overlay {
    opacity: 1;
}

.profile-btn {
    background: #949494;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    float: right;
    clear: both;
    padding: 10px 20px;
}

.download-btn {
    background: #949494;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 20px;
    width: 150px;
    margin-bottom: 10px;
}

.download-btn:focus {
    outline: none;
}


/*----------------------------------------------------------*/


/* .label-field-select {
    position: relative;
    border: 1px solid #ccc;
    border-radius: 5px;
    height: 42px;
    box-sizing: border-box;
    padding: 8px 15px;
} 

.label-field-select .title {
    position: absolute;
    color: rgb(63, 62, 62);
    font-size: 0.8em;
    left: 0.9em;
    padding: 0 0.5em;
    top: -1em;
    background: white;
} 
 .label-field input:focus+label,
.label-field-select select {
    left: 1em;
    position: absolute;
    top: 0.8em;
    border: none;
    outline: none;
    color: #2C3E50;
    width: 100%;

} 

 .label-field-select input[type=radio] {
    border: none;
    max-width: 16px;
    max-height: 16px;
    border-radius: 50%;
}

 .label-field-select #b_date,
.label-field-select #a_date {
    border: none;
    outline: none;
    padding: 0;

} 
 .label-field-select #b_date:focus,
.label-field-select #a_date:focus {
    border: none;
} 

 label {
    position: absolute;
} */

a {
    color: rgb(85, 84, 84);
}

a:hover {
    color: rgb(48, 47, 47);
}


/* .label-field i{
    position: absolute;
    right: 10px;
    top: 15px;
} */


/* .label-field-select #file {
    display: none;
}  */

.file {
    display: none;
}


/* #getFile{
    display: none;
} */

.remove i,
.removevisa i {
    color: white;
}

#businesstype,
#companyname {
    display: none;
}


/* .label-field-select input[type=checkbox] {
    max-width: 16px;
    margin-right: 5px;
} */

.checkwidth {
    width: 24%;
}

#msform .btn-add {
    width: 100px;
    background: #198754;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    float: left;
    clear: both;
}

#msform .action-button-close {
    width: 100px;
    background: #949494;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    float: left;
    clear: both;
}

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


/* #msform .next{
    width: 100px;
    background: #949494;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 0px 10px 5px;
    position: absolute;
    float: right;
   
} */

.download-btn a {
    text-decoration: none;
    color: white;
}

.field_mandatory {
    color: red;
    font-weight: bold;
}

.div_file_name {
    background: white;
    border: 1px solid #ced4da;
    padding-left: 5px;
    border-radius: 4px;
}

.div_file_name span {
    line-height: 32px;
}

.div_file_name i {
    background: #e9ecef;
    padding: 6px 12px;
    border: 1px solid #ced4da;
    color: #6c757d;
    line-height: 22px;
    /*background: black;*/
}

.height38 {
    height: 38px;
}

.div_file_name {
    height:37px;
    background-color: rgb(243, 228, 228);
}

.pp_upload_btn,
.pp_download_btn,
.v_upload_btn,
.v_download_btn {
    /*width: 50%;*/
    /*background: #949494;*/
    font-weight: bold;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 8px 20px;
    outline: none;
    /*width: 150px;*/
    /*margin-bottom: 10px;*/
}

.pp_download_btn a,
.v_download_btn a {
    text-decoration: none;
    color: white;
}


/*plus icon on visa details tab*/

.fa-plus-square {
    font-size: 20px;
    padding-left: 13px;
    transform: translateY(1.8px);
    color: #0d6efd;
}


/*profile image close icon*/

.close-profile {
    position: absolute;
    background: #949494;
    top: 13%;
    right: 12.5%;
    z-index: 1;
    border-radius: 5px;
    visibility: hidden;
}

.close-profile i {
    font-size: 18px;
    padding: 5px 10px;
    color: white;
}

.profile-image:hover .close-profile {
    visibility: visible;
}