/** 
 * Variables 
 */
/**
 * CORRECTIFS DE SP
 *
 */
.container {
    padding-left: 0px;
    padding-right: 0px;
    width:auto;
}
h2{     
	border-bottom: 2px solid #0b6ba8;
	color: #0b6ba8;
	font-size: 1.6em;
	font-weight: bold;
	padding: 0.4em 0;
	width: 100%;
}
h3{    
	border-top: 1px dashed #414856;
    color: #0b6ba8;
    font-size: 1.3em;
    font-weight: 500;
    margin: 1.3em 0 0;
    padding: 2.3em 0 0.5em;
}
h3.first{    
    border-top:0px dashed #414856;
    padding:0 0 0.5em;
}
h4{    
    color: #0b6ba8;
    font-size: 1.1em;
    font-weight: normal;
}
p{
	margin-bottom:10px;
}
footer .container{
	padding-right: 15px;
	padding-left: 15px;
}
.espace-pro h2{     
	border-bottom: 2px solid #a63950;
	color: #a63950;
}
.espace-pro h3{    
    color: #a63950;
}
.espace-asso h2{     
	border-bottom: 2px solid #0d803b;
	color: #0d803b;
}
.espace-asso h3{    
    color: #0d803b;
}
/**
 * CHEMIN d'ETAPES
 * - Nouveaute PSL
 */
.steps{
    margin-bottom:2em;
    margin-top:4em;
}
.steps ol{
    background-color: #ececec;
    border-top-left-radius: 5px; 
    border-top-right-radius: 5px;  
    line-height:0;
    margin: 0;
    padding: 0 0 0 0px;  
    display:table;
    width: 100%;
    position:relative;
}
.steps li {
    display:table-cell;
    overflow-x: hidden;
    text-overflow: ellipsis;
    color:#757575;
    position:relative;
}
.steps li:first-child,
.steps li:first-child p{
    border-top-left-radius: 5px;  
    padding-left:0;  
}
.steps li:last-child,
.steps li:last-child p{
    border-top-right-radius: 5px;    
}
.steps li:last-child p:after{
    content: "";  
}
.steps li p{ 
    /*background:url("step-mark.svg") no-repeat right;*/
    background:url("step.png") no-repeat right;
    display:inline-block;
    line-height:normal;
    margin: 0 0 0 0;   
    padding: 0 0 0 0;        
	text-align: center;
    vertical-align:middle;
    width:100%;
    white-space: nowrap;
    word-break: break-all;
    word-wrap: break-word;
}
.steps li:first-child p{
    padding-left:5px;  
}
.steps li:last-child p{
    background-image:none;
    padding-right:5px;  
}
.steps li p.current{
    background-color:#0b6ba8;
    color:white;
	text-align: left;   
}
.steps li:first-child p.current{
    padding-left:5px;  
}
.espace-pro .steps li p.current{
    background-color:#a63950;
}
.espace-asso .steps li p.current{
    background-color: #0d803b;
}
.steps li p.current:before{
	background: #0b6ba8 url("step-current.png") no-repeat left;
    content: " ";     
    height: 3.45em;
    left: -2.4em;
    position: absolute;
    top: 0;
    width: 2.4em;
}
.espace-pro .steps li p.current:before{
	background-color: #a63950;
}
.espace-asso .steps li p.current:before{
	background-color: #0d803b;
}
.steps li:first-child p.current:before{
    display:none;
}
.steps li p .number{
    display:inline-block;
    font-size:2.85em;
	padding:0px 0.8em 0px 0px;
    vertical-align:middle;
}
.steps li:last-child p .number{
	padding:0px 5px 0px 10px;
}
.steps li p.current .number{
    padding:0px 5px 0px 0px;
}
.steps li p .text{
	display:none;    
	max-width: 10em;
    padding: 0 3.2em 0 0;
    vertical-align:middle;
    white-space: normal;
    word-break: break-all;
    word-wrap: break-word;
}
.steps li p.current .text{
	display:inline-block;
}
@media screen and (min-width: 600px) {
	.steps li p.current {
	    text-align: center;
	}
	.steps li p .text {
	    max-width: 20em;
	}
}
@media screen and (min-width: 990px) {
	.steps li p {
	    text-align: left;
	}
	.steps li p.current {
	    text-align: left;
	}
	.steps li p .number{
	    padding:0px 5px 0px 10px;
	}
	.steps li p.current .number{
	    padding:0px 5px 0px 10px;
	}
	.steps li p .text{
	    display:inline-block;
	    max-width: 100%;  
	}
	.steps li p.current::before {
	    height: 3.4em;
	}
}
/**
-------------------------- FIN CHEMIN d'ETAPES
**/

/**
 * FORMULAIRES 
 * - surcharge du style Bootstrap et SP
 * - 
 * - 
*/
.sub-panel{
	margin-left:10%;
}
.composant{
	padding:10px 0px;
}
.form-horizontal .control-label {
    text-align: left;
}
@media (min-width: 992px) {
	.form-horizontal .control-label {	    
		display:block;
	    text-align: right;
	}
}
.form-inline .control-label {
    display: inline-block;
}
.form-inline .radio-inline, 
.form-inline .checkbox-inline {
    vertical-align: top;
    margin-left:20px;
}
label {
    font-weight: normal;
}
span.label,
div.label {
    border-radius: 0em;
    color: #414856;
    display: inline-block;
    font-size: 100%;
    font-weight: normal;
    padding: 0 0.3em 0 0;
    text-align: left;
    white-space: normal;
}
.form-group{
    padding-top:10px;
    padding-bottom:10px;
    margin-bottom: 0px;
}
.checkbox{
	margin:0;
}
/**
-------------------------- FIN FORMULAIRES
**/


/** 
BOUTONS
- Barre de navigation en dessous des formulaires
*/
/*  */
.submit{
    text-align:right;
}
.form-group + .submit { /*correctif /// SC*/
    margin: 1em 0 1.5em;
}
.submit-home{
    text-align:center;
}
.submit .btn-prev{
    float:left;
    padding-left:2.5em;
}
.submit .btn-prev{
    float:left;
    padding-left:2.5em;
}
.submit .btn-next{
    padding-right:2.5em;
}
.btn-next:after,
.btn-prev:before{
    position: relative; 
    font-family: 'fonticon'; 
    speak: none; 
    font-style: normal; 
    font-weight: normal; 
    font-variant: normal; 
    text-transform: none; 
    line-height: 1; 
    font-size: 1em; 
    /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale; speak: none;
}
.btn-prev:before{
    content: "\e609"; 
    color: #0b6ba8; 
    left:-0.5em;
}
.btn-next:after{
    content: "\e607"; 
    color: #fff; 
    left:0.5em;
}
.btn-default:before{
    position: relative; 
    font-family: 'fonticon'; 
    speak: none; 
    font-style: normal; 
    font-weight: normal; 
    font-variant: normal; 
    text-transform: none; 
    line-height: 1; 
    font-size: 1em; 
    /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale; speak: none;
    color: #0b6ba8; 
}
.espace-pro .btn-default::before {
    color: #a63950;
}
.espace-asso .btn-default::before {
    color: #0d803b;
}
.btn-default:hover:before,
.btn-default:focus:before,
.espace-pro .btn-default:hover:before,
.espace-pro .btn-default:focus:before,
.espace-asso .btn-default:hover:before,
.espace-asso .btn-default:focus:before {
    color: #fff;
}
/**
-------------------------- FIN BOUTONS
**/

/** 
VALIDATION
- Classes liées à l'identification visuelle des erreurs de validation
*/
/* Classe indiquant la présence d'une erreur sur un champ de saisie */
div.has-error,
div.has-error .pslUploadZoneSaisie {
    background:#f1ddde;    
    border-right: 5px solid white;
    border-bottom: 5px solid white;
}
.has-error .checkbox, 
.has-error .checkbox-inline, 
.has-error .control-label,
.has-error .radio, 
.has-error .radio-inline, 
.has-error.checkbox label, 
.has-error.checkbox-inline label, 
.has-error.radio label, 
.has-error.radio-inline label
.has-error label{
    color: #414856;
}
.has-error .form-control {
    border-color: #ccc;
}
.text-danger{
    font-weight:bold;
    display: block;
}
.txt .control-label{
    display:inline-block;
    vertical-align: top; 
    max-width:20%;   
}
.form-control-static{
    display:inline-block;
    vertical-align: top; 
    font-weight: bold;
    max-width:80%;
}
/**
-------------------------- FIN VALIDATION
**/

span.label {
    border-radius: 0;
    color: inherit;
    display: inline;
    font-size: 1em;
    font-weight: normal;
    line-height: 1;
    padding: 0.2em 0.6em 0.3em 0em;
    text-align: left;
    vertical-align: middle;
    white-space: nowrap;
}
span.data{
	font-weight:600;
}
.data p{
    margin:0;
    padding:0;
}
.legend{
	font-weight:600;
	font-style:italic;
}


/**
COMPOSANT DRAG & DROP FICHIERS
- Classes de style des différentes zones
*/
.pslUploadZoneResume,
.pslUploadZoneSaisie {
    margin-left:-15px; 
    margin-right:-15px;
}
.pslUploadZoneSaisie {
    background:#f2f2f2;
    padding:15px;
}
.pslUploadZoneSaisie div.control-label{
    font-weight: bold;
    color: #0b6ba8;
    padding-right:10px;
	display:inline-block;
}
.espace-pro .pslUploadZoneSaisie div.control-label {
    color: #a63950;
}
.espace-asso .pslUploadZoneSaisie div.control-label {
    color: #0d803b;
}
.pslUploadZoneSaisie .help-panel::after {
    border-color: transparent transparent #fff;
}

/* drop zone */
.upload-drop-line {
  margin-top: 10px;
}
.upload-drop-zone {
	background-color: #FFF;    
	border: 1px solid #b0b0b0;
	border-radius: 3px 3px 3px 3px;
	-moz-border-radius: 3px 3px 3px 3px;
	-webkit-border-radius: 3px 3px 3px 3px;
	-o-border-radius: 3px 3px 3px 3px;
	-ms-border-radius: 3px 3px 3px 3px;
	color: #787f8d;  
	font-size: 1.2em;
	height: 120px;
	line-height: 120px;
	text-align: center;
}
.upload-drop-zone.drop {
	color: #555;
	border-color: #555;
	border-width: 4px;
	line-height: 45px;
}

.btn-upload {
  overflow: hidden;
  position: relative;
}
.btn-upload input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  cursor: pointer;
  opacity: 0;
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=0);
  filter: alpha(opacity= 0);
  font-size: 100em;
}
.uploadTextFileDelete:before{
    position: relative; 
    font-family: 'fonticon'; 
    speak: none; 
    font-style: normal; 
    font-weight: normal; 
    font-variant: normal; 
    text-transform: none; 
    line-height: 1; 
    font-size: 1em; 
    /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; 
    -moz-osx-font-smoothing: grayscale; speak: none;
	content:"\e628";
}
/**
-------------------------- FIN COMPOSANT DRAG & DROP FICHIERS
**/

/**
COMPOSANT TABLEAU 
*/
/*  */
.table-dynamic .table thead th {
    vertical-align: middle;
}
.table-dynamic .table th {
    background-color: #0b6ba8;
    border-bottom: 1px solid #fff;
    border-left: 1px solid #fff;
    color: #fff;
    font-weight: normal;
    vertical-align: top;
}
.espace-pro .table-dynamic .table th {
    background-color: #a63950;
}
.espace-asso .table-dynamic .table th {
    background-color: #0d803b;
}
.table-dynamic .table > thead > tr > th {
    border-bottom: 1px solid #cccccc;
    vertical-align: bottom;
}
.table-striped > tbody > tr:nth-child(2n+1) > td, 
.table-dynamic .table > tbody > tr:nth-child(2n+1) > td, 
.table-striped > tbody > tr:nth-child(2n+1) > th, 
.table-dynamic .table > tbody > tr:nth-child(2n+1) > th {
    background-color: #ececec;
}
.table-dynamic .table td {
    border-bottom: 1px solid #cccccc;
    border-left: 1px solid #cccccc;
    color: #414856;
}
.table-dynamic .table td.btns {
    white-space: nowrap;
}
.table-dynamic .table td:first-child {
    border-left: 1px solid #fff;
}
.table-dynamic .table td .form-control[disabled]{     
	color: #414856;
	height:auto;
	box-shadow: 0 0px 0px rgba(0, 0, 0, 0) inset;
	padding:0 0 0 0;
}
.table-striped > tbody > tr > td .form-control[disabled], 
.table-dynamic .table > tbody > tr > td .form-control[disabled]{  
	background-color: #fff;	
    border: 1px solid #fff;
}
.table-striped > tbody > tr:nth-child(2n+1) > td .form-control[disabled], 
.table-dynamic .table > tbody > tr:nth-child(2n+1) > td .form-control[disabled]{  
	background-color: #ececec;	
    border: 1px solid #ececec;
}
.table-dynamic .table .btnCleanDelete:before { 
	font-family: 'fonticon'; 
	speak: none; 
	font-style: normal; 
	font-weight: bold; 
	font-variant: normal; 
	text-transform: none; 
	line-height: 1; 
	font-size: 1em; 
	/* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; 
	-moz-osx-font-smoothing: grayscale; 
	speak: none; 
	content: "\e615";
}

/**
-------------------------- FIN COMPOSANT TABLEAU
**/


/**
FENETRE MODALE
*/
/* - correctif SP  */
.modal-backdrop {
    z-index: auto;
}
.modal-footer {
    background-color: inherit;
    margin-top: 0px;
    padding: 15px;
}
/**
-------------------------- FIN FENETRE MODALE
**/



/**
COMPOSANT DE SELECTION DE BLOC (ex: redressement d'adresse)
*/
/* les choix d'adresse */
.radioChoixContainer {
  height: 125px;
  padding: 43px 25px;
  background-color: #f2f2f2;
}
.env-particuliers .radioChoixContainer.selected {
  background-color: #4f82a8;
}
.env-associations .radioChoixContainer.selected {
  background-color: #2e614e;
}
.espace-pro .radioChoixContainer.selected {
  background-color: #6a2433;
}
.form-horizontal .radioChoixContainer label.radio {
  display: block;
  height: 100%;
  width: 100%;
  padding-top: 12px;
  padding-left: 10px;
}
.radioChoixContainer label.radio input[type=radio] {
  margin-left: 3px;
}
/**
-------------------------- FIN COMPOSANT DE SELECTION DE BLOC
**/

/**
 * PANEL
 * - surcharge du style Bootstrap des Panels
 * - règles générales
 */
.panel {
  border-radius: 0 0 0 0;
  -moz-border-radius: 0 0 0 0;
  -webkit-border-radius: 0 0 0 0;
  -o-border-radius: 0 0 0 0;
  -ms-border-radius: 0 0 0 0;
}
.panel-default > .panel-heading {
  background-color: #ffffff;
}
.panel-default > .panel-heading.titre-principal {
  border-width: 0;
  text-align: center;
  padding-bottom: 0px;
}
/**
-------------------------- FIN PANEL
**/
/**
GENERAL
*/
#main {
  padding-bottom: 20px;
  padding-top: 20px;
}
.noMarginBottom {
  margin-bottom: 0;
}
.text-align-left {
  text-align: left!important;
}
.text-align-right {
  text-align: right!important;
}
.text-align-center {
  text-align: center!important;
}
/**
-------------------------- FIN GENERAL
**/


/**
 * Surcharge jQUERY UI
 */
.ui-autocomplete {
  max-height: 100px;
  overflow-y: auto;
  overflow-x: hidden;
}


/**
-------------------------- RECAPTCHA
**/
.g-recaptcha > div > div {
  margin: auto;
}
/**
-------------------------- FIN RECAPTCHA
**/

.thHide {
  display: none !important;
}
.no-js .thHide {
  display: block!important;
}
