/*Field names*/
.fieldlabels {
	color: gray;
	text-align: left;
}

/*Icon progressbar*/
#progressbar {
    /*margin-bottom: 30px;*/
    overflow: hidden;
    color: var(--primary);
}

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

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    /*font-size: 1.25rem!important;*/
    float: left;
    position: relative;
    font-weight: 400;
}

/*Icon ProgressBar before any progress*/
#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 20px;
    color:  var(--primary);
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}

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

/*Color number of the step and the connector before it*/
#progressbar li.active:before, #progressbar li.active:after {
    background: var(--secondary);
}

/*Icons in the ProgressBar*/
#progressbar #subscriber:before, #progressbar #insured:before, #progressbar #spouse:before, #progressbar #child:before {
    font-family: FontAwesome;
    content: "\f007";
}

#progressbar #insureds:before, #progressbar #children:before {
    font-family: FontAwesome;
    content: "\f0c0";
}

#progressbar #guarantee:before {
    font-family: FontAwesome;
    content: "\f3ed";
}

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

#progressbar #infos:before {
    content: "\f05a";
    font-family: FontAwesome;
}

#progressbar #vehicle:before {
    content: "\f1b9";
    font-family: FontAwesome;
}

#progressbar #identification:before {
    content: "\f00e";
    font-family: FontAwesome;
}

#progressbar #user-card:before {
    content: "\f2c2";
    font-family: FontAwesome;
}

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

#progressbar #contract:before {
    content: "\f56c";
    font-family: FontAwesome;
}

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

#progressbar #quiz:before {
    content: "\f059";
    font-family: FontAwesome;
}

#progressbar #duration:before {
    content: "\f017";
    font-family: FontAwesome;
}

/*Animated Progress Bar*/
.progress {
	height: 15px;
    margin-bottom: 30px;
}

.progress-bar {
	background-color: var(--secondary);
}

#progressbar li strong {
    text-shadow: 1px 1px var(--secondary);
}
