@charset "utf-8";
/* CSS Document */

/* Formulário */
.candidaturaForm {
    width: 100%;
    box-sizing: border-box;
    line-height: 1;
    margin-bottom: 40px;
}

/* Steps Topo */
.stepwizard {
    width: 100%;
    box-sizing: border-box;
    height: auto;
}

.stepwizard-content {
    width: 100%;
    box-sizing: border-box;
    font-size: 18px;
}

.stepwizard-step {
    display: inline-block;
    padding: 1rem 2rem 1rem 4rem;
    background: #ccc;
    color: #FFF;
    /*cursor: pointer;*/
    position: relative;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.stepwizard-step.active {
    background: #c34dae;
}

.stepwizard-step > span {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: #aaa;
    padding: 0.8rem 1rem;
    font-size: 24px;
}

.stepwizard-step.active > span {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: #a53a91;
    padding: 0.8rem 1rem;
    font-size: 24px;
}

/* seta links passos */
.stepwizard-step > span:after {
    content: '';
    display: block;
    width: 10px;
    position: absolute;
    right: -10px;
    height: 100%;
    top: 0;
    background: url('data:image/svg+xml; charset=utf-8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 20" preserveAspectRatio="none"><path d="m0,0 l10,10 l-10,10 l-0,-20z" stroke-width="1.5" fill="#aaa"/></svg>') 0 0 no-repeat;
}

.stepwizard-step.active > span:after {
    content: '';
    display: block;
    width: 10px;
    position: absolute;
    right: -10px;
    height: 100%;
    top: 0;
    background: url('data:image/svg+xml; charset=utf-8,<svg width="100%" height="100%" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 20" preserveAspectRatio="none"><path d="m0,0 l10,10 l-10,10 l-0,-20z" stroke-width="1.5" fill="#a53a91"/></svg>') 0 0 no-repeat;
}

/* Paineis Conteudo */
#step2, #step3 {
    display: none;
}

.candidaturaForm input, input[type=text], .candidaturaForm input[type=tel], .candidaturaForm input[type=email], .candidaturaForm input[type=password] {
    width: 100%;
    box-sizing: border-box;
	-moz-box-sizing: border-box;
	height: 100%;
    padding: 8px;
    border: solid 1px #CCC;
    outline: none;
}

.candidaturaForm input[type=file] {
    padding: 6px 12px;
}

.candidaturaForm input[type=radio], input[type=checkbox] {
    width: initial;
    height: 28px;
}

.candidaturaForm .radio-inline, .candidaturaForm .checkbox-inline {
    height: 34px;
    line-height: 34px;
    margin-left: 20px;
}

.radio-inline + .radio-inline {
    margin-top: 0;
    margin-left: 20px;
}

.candidaturaForm textarea {
    width: 100%;
    height: 100px;
    box-sizing: border-box;
    padding: 1rem;
    border: solid 1px #CCC;
    outline: none;
    overflow: auto;
}

.candidaturaForm .row {
    margin-bottom: 10px;
}

.padding0 {
    padding: 0;
}

#experienciasanteriores {
    overflow: hidden;
    clear: both;
    padding-right: 15px;
    padding-left: 15px;
}

.obrigatorios {
    float:left;
    font-size:12px;
    font-style:italic;
}

/* Mensagem de erro */
.candidaturaForm .has-error {
    border: solid 1px #C00 !important;
    background-color: #FEEDEC !important;
}

.candidaturaForm .help-block {
    color: #c00;
    font-size: 12px;
    padding-left: 6px;
}

/* Botões Seguinte/Anterior */
.list-inline>li {
    padding-right: 0;
}

.btn.next-step {
    background: #c34dae;
    color: #FFF;
    border: none;
    outline: none;
    cursor: pointer;
}

.btn.next-step:hover {
    background: #a53a91;
}

.btn.next-step.submit-step {
    background: #34c32f;
    padding: 6px 12px;
}

.btn.next-step.submit-step:hover {
    background: #2eac2b;
}

.btn.prev-step {
    background: #bbb;
    color: #FFF;
    border: none;
    outline: none;
    cursor: pointer;
}





