
.card {
    background-color: transparent;
    color: #454446;
}

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

#msform fieldset .form-card {
    background: white;
    border: 0 none;
    border-radius: 0px;
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
    padding: 20px 40px 30px 40px;
    box-sizing: border-box;
    width: 94%;
    margin: 0 3% 20px 3%;
    position: relative;
}

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

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

#msform fieldset .form-card {
    text-align: left;
    color: #9E9E9E;
}

#msform input,
#msform textarea {
    padding: 0px 8px 4px 8px;
    border: none;
    border-bottom: 1px solid #ccc;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    color: #2C3E50;
    font-size: 16px;

}


.inToken{
    padding: 0px 8px 0px 8px;
    background-color: #ccc;
    height: 42px;
    line-height: 42px;   
    flex: 0 0 200px;
    letter-spacing: 4.5vw;
}

@media (min-width:576px) {
    .inToken {
        letter-spacing: 7vw;
    }
}
@media (min-width:768px) {
    .inToken {
        letter-spacing: 8vw;
    }
}
@media (min-width:992px) {
    .inToken {
        letter-spacing: 7vw;
    }
}
@media (min-width:1200px) {
    .inToken {
        letter-spacing: 6em;
    }
}

.inTokenErr{
    background-color: #fad1d4;
}

#errToken{
    background-color: #fce8e8;
    color: #000;
    padding: 15px;
}

#msform input:focus,
#msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none;
    font-weight: bold;
    border-bottom: 2px solid #ed6166;
    outline-width: 0;
}

#msform .action-button {
    display: inline-block;
    width: auto;
    background: #ed6166;
    font-weight: bold;
    color: white;
    border: 0 none;
    cursor: pointer;
    padding: 10px 20px;
    margin: 10px 0;
}

#msform .action-button:hover,
#msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #ed6166;
}

#msform .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: 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 white, 0 0 0 3px #616161;
}

select.list-dt {
    border: none;
    outline: 0;
    border-bottom: 1px solid #ccc;
    padding: 2px 5px 3px 5px;
    margin: 2px;
}

select.list-dt:focus {
    border-bottom: 2px solid #ed6166;
}

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



#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
    text-align: center;
}

#progressbar .active {
    color: #ed6166;
    text-align:center;
}

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

#progressbar #step01:before {   
    content: '1';
    text-align: center;
}


#progressbar #step01.active.valid:before {
    content: '\2713';
}


#progressbar #step02:before {    
    content: "2";
    text-align: center;
}

#progressbar #step02.active.valid:before {
    content: '\2713';
}

#progressbar #step03:before {
    content: "3";
    text-align: center;
}

#progressbar #step03.active.valid:before {
    content: '\2713';
}

#progressbar #step04:before {
    content: "4";
    text-align: center;
}

#progressbar #step04.active.valid:before {
    content: '\2713';
}

#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: 3px;

}

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

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

.radio-group {
    position: relative;
    margin-bottom: 25px;
}

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