@CHARSET "UTF-8";
/* html {
   min-height: 100%;
}*/
.page-wrap {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background: #f0f9ff; /* Old browsers */
	background: -moz-linear-gradient(top, #f0f9ff 0%, #e0e0e0 47%, #f4f4f4 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, #f0f9ff 0%,#e0e0e0 47%,#f4f4f4 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, #f0f9ff 0%,#e0e0e0 47%,#f4f4f4 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f9ff', endColorstr='#f4f4f4',GradientType=0 ); /* IE6-9 */
}
.footer {
    background-color: #2c3e50;
    padding: 10px 15px;
    height: 100%;
}
.fill-space-0 {
    height: calc(100vh - 503px);
    background-color: white;
}


.row-form-content {
    background-color: #fff;
    /*border-radius: 5px;*/
    padding: 20px;
}
.form-separation {
	padding-top: 10px;
	font-size: 1.2em;
	border-bottom: 1px solid;
	padding-bottom: 2px;
	margin-bottom: 10px;
	padding-left: 10px;
	font-weight: 700;
}
.form-group.checklist-separation::before {
    content: " ";
    display: block;
    border-top: darkgrey 2px dashed;
    max-width: 400px;
}
.nb-partenaires {
	max-width:	20%
}

.flex-align-middle {
	display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
	display: flex;
}

.horizontal-spacer-1 {
	padding-left: 5px;
	padding-right: 5px;
}

@media (min-width: 768px) {
    .partenaire-lbl {
        text-align:right;
        height: 90px;
        padding-top: 17px
    }
    .partenaire-lbl div {
       vertical-align: middle;
    }
}
.partenaire-lbl {
    margin-bottom: 10px;
}
.partenaire-chps {
    padding-top: 15px;
    border-left: solid 3px grey;
    /*
    display:flex;
    flex-direction: column;
    justify-content: space-arround;
    */
}

.conditional-ctn {
	margin-left: 20px;
	padding: 5px 0px 5px 20px;
	border-left: solid 2px grey;
	margin-bottom: 10px;
}
.conditional-ctn-horz .form-group > label {
	border-left: solid 2px grey;
}
#header-qcm {
    padding: 20px 5px 5px 5px;
	background-color: #2c3e50;
	/*
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
	margin-bottom: 10px*/
}
#header-qcm h1 {
	/* color: #c7c7c7;*/
	color: white;
    text-align: center;
    margin-bottom: 7px;
}
/*progressbar*/
#progressbar {
    /*margin-bottom: 30px;*/
    /*CSS counters to number the steps*/
    counter-reset: step;
    display: -webkit-box;      /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;         /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;      /* TWEENER - IE 10 */
    display: -webkit-flex;     /* NEW - Chrome */
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    padding-left: 0;
}
#progressbar li {
    list-style-type: none;
    color: white;
    text-transform: uppercase;
    font-size: 12px;
    position: relative;
    text-align: center;
    width: 20%;
}
#progressbar li span {
    display: none;
}
@media (min-width: 768px) {
	#progressbar li span {
		display: inline;
	}
}
	
#progressbar li:before {
    content: counter(step);
    counter-increment: step;
    width: 30px;
    line-height: 30px;
    display: block;
    font-size: 14px;
    color: #333;
    background: white;
    border-radius: 3px;
    margin: 0 auto 5px auto;
    text-align: center;
    z-index: 2;
}
#progressbar li.current:before {
    width: 45px;
    line-height: 45px;
    font-size: 15px;
    top: -7px;
    position: relative;
    
}
#progressbar li.current span {
	display: inline;
}
/*progressbar connectors*/
#progressbar li:after {
    content: '';
    width: 90%;
    height: 3px;
    background: white;
    position: absolute;
    left: -45%;
    top: 15px;
    z-index: 1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
    /*connector not needed before the first step*/
    content: none; 
}
/*marking passed/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.passed:before,  #progressbar li.passed:after{
    background: #18bc9c;
    color: white;
}

#progressbar li.current {
	color: #adf9d6;
}
#form-buttons-ctn {
	margin-top:15px;
}

.mail-button {
    background-color: #e6e6e6;
}

.mail-button:hover {
    color: #1ba380;
}

.mail-button:focus, .mail-button:active, .mail-button:active:focus, .mail-button.disabled, .mail-button[disabled], .mail-button[disabled]:hover  {
    background-color: #adf9d6;
    color: #222;
}
   
.fin-ctn {
	font-size: 1.3em;
}


