/* CSS du composant co_formulaire */
.co_formulaire {
	display:block;
	margin-right: 0px;
}

.co_formulaire .form_line {
    border-bottom: #fff solid 2px;
    position: relative;
    display: block;
    margin-top: 25px;
    margin-bottom: 10px;
}

.co_formulaire input,
.co_formulaire textarea,
.co_formulaire select {
    border: 0 none;
    background-color: transparent;
    font-family: 'Open Sans','Arial','Helvetica',sans-serif;
    color: #fff;
    position: relative;
	width: 100%;
    height: 28px;
    line-height: 28px;
	margin-bottom: 5px;
    padding: 0 10px 0 40px;
    box-sizing: border-box;
    text-shadow: 0 0 10px #39353d;
    z-index: 20;
}

.co_formulaire textarea {
	height: 32px;
}

.co_formulaire input.erreur,
.co_formulaire textarea.erreur,
.co_formulaire select.erreur {
    background-color: transparent !important;
}

.co_formulaire .form_label {
    position: absolute;
    font-family: "Josefin Sans", 'Helvetica', 'Arial', sans-serif;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: 10;
    text-shadow: 0 0 0 transparent;
}

.co_formulaire .erreur+.form_label {
    background-color: #BB3333;
}

.co_formulaire .form_label i {
    font-size: 20px;
    line-height: 26px;
    margin-left: 10px;
}

.co_formulaire .form_label span {
    position: absolute;
    padding: 2px 5px 2px 40px;
    font-size: 14px;
    line-height: 36px;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    color: #fcc3c3;
    z-index: 10;
    -webkit-transition: all 400ms ease;
    transition: all 400ms ease;
}

.co_formulaire input:valid~.form_label span,
.co_formulaire input:focus~.form_label span,
.co_formulaire textarea:valid~.form_label span,
.co_formulaire textarea:focus~.form_label span,
.co_formulaire select:valid~.form_label span,
.co_formulaire select:focus~.form_label span{
    padding: 2px 5px 2px 10px;
    font-size: 11px;
    height: 16px;
    line-height: 14px;
    bottom: 100%;
}

#form-contact .view_more {
	margin-top: 3px;
}

#form-contact .view_more a {
    background-color: #C07677 !important;
    background-image: none !important;
    border: #000 solid 0;
    display: inline-block;
    font-weight: 700;
    font-size: 16px;
    line-height: 17px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    padding: 0 !important;
    margin-top: 3px;
    color: #39353d !important;
    height: auto;
    min-height: 28px !important;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    text-shadow: 0 0 0 transparent;
}

#form-contact .view_more a span {
    background-color: #fcc3c3;
    position: relative;
    display: table-cell;
    vertical-align: middle;
    padding: 8px 50px;
    top: 0;
    height: auto;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -webkit-transition: top 100ms ease;
    transition: top 100ms ease;
}

#form-contact .view_more a:hover span {
    top: -3px;
}

#form-contact .champsObligatoires {
    display: none;
}