#Escola {display:none;}
#Documento {display:none;}
#Endereco {display:none;}
#Responsavel {display:none;}

/*Progress bar - cotação*/


#progressbar
{
    text-align: center;
    position: relative;
    margin-bottom: 10px;
    overflow: hidden; /*CSS counters to number the steps*/
    counter-reset: step;
    margin-bottom:60px;
}

.innerEscola {
    border-radius: 10px;
    border: 1px solid #0000FF;
    padding: 10px;
    margin: 10px 20px 10px 20px;
}

#progressbar li
{
    list-style-type: none;
    text-transform: uppercase; /*font-size: 9px;*/
    width: 25%;
    float: left;
    position: relative;
       pointer-events: none;
       cursor: default;
}
#progressbar li:before
{
    content: counter(step);
    counter-increment: step;
    width: 40px;
    line-height: 40px;
    display: block;
    font-size: 16px;
    color: #333;
    background: #E9E9E8;
    border-radius: 25px;
    margin: -0px auto 10px auto;
}
/*progressbar connectors*/
#progressbar li:after
{
    content: '';
    width: 100%;
    height: 18px;
    background: #E9E9E8;
    position: absolute;
    left: -50%;
    top: 9px;
    z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after
{
    /*connector not needed before the first step*/
    content: none;
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
    #progressbar li.active {
        color: #0000FF;
        pointer-events: auto;
        cursor: pointer;
    }
        #progressbar li.active:before, #progressbar li.active:after {
            background: #0000FF;
            color: white;
        }
/*Progress bar - cotação*/


.label-control{
  display: block;
}


@media (max-width: 767px)
{
    #progressbar
    {
        display:none;
    }
    
    .innerEscola
    {
        border-radius: 10px; 
        border: 1px solid #0000FF;
        padding: 10px; 
        margin: 0px;
        margin-bottom:10px;
    }
}

