#frmIscrizione{
    width: 90%;
    margin: 85px auto;
    text-align: center;
    position: relative;
}
#frmIscrizione fieldset{
    background: white;
    border: 0 none;
    border-radius: 5px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    box-sizing: border-box;
    width: 80%;
    margin: 0 10%;
    position: absolute;
}
#frmIscrizione fieldset:not(:first-of-type){
    display: none;
}
#frmIscrizione input, #frmIscrizione textarea{
    padding: 15px;
    border: 1px solid #ccc;  /* colore std */
    border-radius: 3px;
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
    color: #2C3E50; /* titolo form */
    font-size: 13px;
}
#frmIscrizione .action-button{
    width: 100px;
    background: #a40600;
    font-weight: 400;
    color: white;
    border: 0 none;
    border-radius: 3px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}
#frmIscrizione .action-button:hover, #frmIscrizione .action-button:focus{
    box-shadow: 0 0 0 2px white, 0 0 0 3px #a40600;
}
.fs-title{
    font-size: 25px;
    text-transform: uppercase;
    color: #2C3E50;
    margin-bottom: 10px; 
    font-weight:500;
}
.fs-subtitle{
    font-weight: normal;
    font-size: 20px;
    color: #666;
    margin-bottom: 20px;
}
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    counter-reset: step;
}
#progressbar li {
    list-style-type: none;
    color: #D2D2D2;
    text-transform: capitalize;
    font-size: 16px;
    width: 20.00%; /* numero di blocchi */
    float: left;
    position: relative;
}
#progressbar li.active {
    color: #a40600;
}
#progressbar li:before{
    content:'' ;/*counter(step)*/
    counter-increment: step;
    width: 50px;
    line-height: 50px;
    display: block;
    font-size: 18px;
    color:#fff ;
    background: transparent;
    border-radius: 100%;
    margin: 0 auto 5px auto;
    border: 2px solid #ECECEC;
}
#progressbar li:nth-child(1):before{
    content:"\f007" ;
    font-family: 'FontAwesome';
}
#progressbar li:nth-child(2):before{
    content:"\e537" ;
    font-family: 'FontAwesome';
}
#progressbar li:nth-child(3):before{
    content:"\f129" ;
    font-family: 'FontAwesome';
}
#progressbar li:nth-child(4):before{
	content:"\f13e" ;
	font-family: 'FontAwesome';	
}
#progressbar li:nth-child(5):before{
	content:"\f00c" ;
	font-family: 'FontAwesome';	
}
#progressbar li:after {
    content: '';
    width: 73%;
    height: 2px;
    background: #ECECEC;
    position: absolute;
    left: -35%;
    top: 25px;
    z-index: -1;
}
#progressbar li:first-child:after {
    content: none;
}
#progressbar li.active:before {
    border: 2px solid #a40600;
    color: #a40600;
    /* content: "\f164";*/
}
#progressbar li.active:after {
    background: #a40600;
    color: white;
}
.form_holder {
    text-align: center;
    margin: 30px 0 0;
    margin-bottom: 62rem; /*specifica la distanza dal basso della form di iscrizione*/
}
