/* alertboots */

.alertboot {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alertboot h4 {
  margin-top: 0;
  color: inherit;
}
.alertboot .alertboot-link {
  font-weight: bold;
}
.alertboot > p,
.alertboot > ul {
  margin-bottom: 0;
}
.alertboot > p + p {
  margin-top: 5px;
}
.alertboot-dismissable,
.alertboot-dismissible {
  padding-right: 35px;
}
.alertboot-dismissable .close,
.alertboot-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alertboot-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.alertboot-success hr {
  border-top-color: #c9e2b3;
}
.alertboot-success .alertboot-link {
  color: #2b542c;
}
.alertboot-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alertboot-info hr {
  border-top-color: #a6e1ec;
}
.alertboot-info .alertboot-link {
  color: #245269;
}
.alertboot-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alertboot-warning hr {
  border-top-color: #f7e1b5;
}
.alertboot-warning .alertboot-link {
  color: #66512c;
}
.alertboot-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.alertboot-danger hr {
  border-top-color: #e4b9c0;
}
.alertboot-danger .alertboot-link {
  color: #843534;
}

/* Modal bootstrap */
.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform .3s ease-out;
       -o-transition:      -o-transform .3s ease-out;
          transition:         transform .3s ease-out;
  -webkit-transform: translate(0, -25%);
      -ms-transform: translate(0, -25%);
       -o-transform: translate(0, -25%);
          transform: translate(0, -25%);
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
       -o-transform: translate(0, 0);
          transform: translate(0, 0);
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
          box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0;
}
.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5;
}
.modal-header {
  min-height: 16.42857143px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 15px;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}

.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5;
}
button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.alertboot-dismissable .close,
.alertboot-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

/* Animation icon */


.purple-bg {
    background-color :#AD2184 !important;
}
.gly-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.gly-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.gly-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.gly-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.gly-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.gly-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}


/* Général */
.datepicker-days thead tr:first-child th:hover,
.datepicker-days tfoot tr th:hover,
.datepicker-days table tr td.day:hover,
.datepicker-days table tr td.day.focused {
	background: #AB75A2 !important;
}
.datepicker-days table tr td.day:hover,
.datepicker-days table tr td.day.focused{
	color: #fff;
}
.datepicker-days table > thead > tr > th {
	  background: #AD2184;
}

.glyphiLeft, .glyphiRight{
	top: 2px;
}

.btn-purple{   background: #AD2184; color: #ffffff; }
.btn-darkblue{   background: #36547E; color: #ffffff; }

.btn-purple:hover, .btn-purple:focus, .btn-purple:active, .btn-purple.active{
	outline: 0;
	background-color: #C73D9E;
  	color: #ffffff !important;
}

.datepicker-days table{
  border-spacing: 1px 1px !important;
  border-collapse: inherit !important;
}

.text-right {text-align: right !important;}
.text-left {text-align: left !important;}
.text-center {text-align: center !important;}

.datepicker-days table > thead > tr > th,
.datepicker-days table > tbody > tr > th, 
.datepicker-days table > tfoot > tr > th, 
.datepicker-days table > thead > tr > td, 
.datepicker-days table > tbody > tr > td, 
.datepicker-days table > tfoot > tr > td{
  line-height: 18px;
}

.no-padding-lr{ padding-left: 0 !important; padding-right: 0 !important; }
.no-padding-r {
    padding-right : 0;
}

.padding-right-5px { padding-right: 5px; }
.padding-right-10px{ padding-right: 10px; }
.padding-right-15px{ padding-right: 15px; }

.margin-top-10px{ padding-top: 10px; }
.margin-top-20px{ margin-top: 20px; }
.margin-bottom-10px{ padding-bottom: 10px; }
.margin-left-10px{ padding-left: 10px; }
.margin-right-10px{ padding-right: 10px; }

.btn-teeny-margins{ 
	padding-left: 10px !important;
	padding-right: 10px !important;
}

.no-margin-top{ margin-top: 0 !important; }
.no-margin-left{ margin-left: 0 !important; }
.no-margin-right{ margin-right: 0 !important; }
.no-margin-bottom{ margin-bottom: 0 !important; }
.padding-right-5 {
    padding-right : 5px;
}


.link-zone a{
	margin-right: 5px
}

.identification-form{

}
	.identification-form input:focus,
	.identification-form select:focus,
    .top .dataTables_filter label input,
    .purpleFocus:focus,
    .multiselect:focus { 
	    outline: 0;
	    border-color: rgba(227, 84, 185, 0.8) !important;
	    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(227, 84, 185, 0.6);
	    -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(227, 84, 185, 0.6);
	    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 8px rgba(227, 84, 185, 0.6) !important;
	    background-color: #fff;
	}
	.identification-form .tt, 
	.label-tt{
		color: #AD2184;
  		font-weight: bold;
	}
	.identification-form .tt-info em{
		font-weight: normal;
		color: #999;
		font-size: 12px;
		display: block;
		line-height: 10px;
		display: block;
		margin-bottom: 10px;
	}
	.identification-form .tt-info .tt{
		line-height: 10px;
	}

	.identification-form .agrement-bloc .numAgre{
		width: 19.3%;
	}
	.identification-form .agrement-bloc .dateAgre{
		width: 6%;
	}
	.identification-form .checkbox-bloc{
		margin-bottom: 5px;
	}
	.identification-form .checkbox-bloc .checkbox,
	.identification-form .checkbox-bloc .radio{
		margin-left: 14px;
	    margin-bottom: 5px;
	}
	.identification-form .checkbox-bloc .other{
		margin-left: 16px;
	}
	.identification-form .inlineItimesBloc .list-items,
	.identification-form .inlineItimesBloc .one-item{
		margin-left: 12px;
	}
	.identification-form .inlineItimesBloc{
		position: relative;
	}	
		.identification-form .inlineItimesBloc .one-item{
			margin-bottom: 7px;
		}
		.identification-form .inlineItimesBloc .list-items{
			list-style: none;
			padding-left: 0;
		}
			.identification-form .inlineItimesBloc .list-items li{
				margin-bottom: 7px;
			}
	.identification-form .GroupeAppBloc{
		position: relative;
	}
	
		.identification-form .GroupeAppBloc button,
		.identification-form .inlineItimesBloc button{
			background-color: #007697;
		}
		.identification-form .GroupeAppBloc ul,
		.identification-form .inlineItimesBloc ul{
			padding-left: 0;
			margin-top: 10px;
			list-style: none;
		}
		.identification-form .GroupeAppBloc .newGroupeApp,
		.identification-form .inlineItimesBloc .newGroupeApp{
			position: absolute;
			right: 10px;
		}
		.identification-form .GroupeAppBloc .newGroupeApp{
			top: 25px;
		}

		.identification-form .GroupeAppBloc ul li{
			margin-bottom: 5px;
			overflow: hidden;
		}
		.identification-form .GroupeAppBloc ul li .del,
		.identification-form .inlineItimesBloc ul li .del{
			font-size: 17px;
  			line-height: 26px;
  			color: #DF7171;
		}
		.identification-form .bottomSectionLinks{
			margin-bottom: 0;
			border-top: 1px solid #ECECEC;
  			padding-top: 11px;
  			margin-top: 15px;
            width : 100%;
            float : left;
		}

.datePickBloc .input-group input{
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}
.datePickBloc .input-group span{
	border-left: 0;
	border-bottom-left-radius: 0;
  	border-top-left-radius: 0;
}

#left-nav-custom1 h6{
	color: #AD2184;
}

#left-nav-custom1 .widget-content{
	margin-bottom: 25px;
}

#left-nav-custom1 .filter-list ul{
	display: block;
}

#left-nav-custom1 .sub.active > a,
#left-nav-custom1 .sub.active > a:before,
#left-nav-custom1  li.has-submenu > a:before{
	color: inherit;
}

.dateContainer, .dateContainer input{
	cursor: pointer;
}


/* Page MAJ SOciété */

#updateOrganismePage .jobs-item {
    float:left;
}

#updateOrganismePage .page-sidebar {
   
}

#updateOrganismePage .page-content{
    overflow: hidden;
    padding-right : 0;
}
#updateOrganismePage .identification-form {
    position: relative;
    left : 0;
}

.step-tt, .confirmationMsg .tt {
    margin: 0 0 17px;
    font-size: 18px;
    color: #C75C5C;
    font-family: 'Lato', Helvetica, Arial, sans-serif;
    background: url(../img/shop.png) left 0 no-repeat;
    background-size: 35px 35px;
    padding: 8px 0 14px 43px;
    border-bottom: 2px solid #E7E7E7;
    margin-bottom: 22px;
}
.step-tt img{
    padding-right : 10px;
    padding-top: 5px;
}

.gerants-list .tt,
.fonctions-list .tt {
    margin-left : 12px;
}
.gerants-list .list-items,
.fonctions-list .list-items {
  border-bottom: 1px solid #DFA2DA;/*DFDFD0*/
  padding-bottom: 6px;
}

    .gerants-list .list-items.other,
    .fonctions-list .list-items.other
     {
        border-bottom : none;
    }


.gerants-list .other-label,
.fonctions-list .other-label {
    margin-left : 12px;
}

.gerants-list label.tt, 
.fonctions-list label.tt,
.gerants-list label.other-label,
.fonctions-list label.other-label {
    background: url(../img/check.png) left 0 no-repeat;
    background-size: 25px 25px;
    padding: 0px 0 3px 32px;
}


.contacts-MC {
    margin-top: 23px !important;
    border-top: 1px solid #BFD7DB;
}
    .contacts-MC li {
        border-bottom: 1px solid #BFD7DB;
        padding: 15px 0;
    }

#left-nav-custom1 .IamActive{
    color: #C20076 !important;
}

.typeSociete-block {
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 2px;
    margin-bottom: 15px;
    padding-top: 5px;
}

    .typeSociete-block .tt {
        color: #007697;
    }

#updateOrganismePage #page-content .container {
    position: relative;
}

#lockMajFiche{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #4D4D4D;
    opacity: 0.5;
    z-index: 9999999;
}

#header .header-page-title {
    /*background: #133365 !important;*/
    background: #2f4e79 !important;
}

.white-container {
    border-top: 4px solid #97A7CA !important;
}

#dossierLitiges .prestataireBlock .radio {
    margin-bottom: 13px;
}


#dossierLitiges .identiteSeparator {
    margin-bottom: 21px;
    border-bottom: 1px dashed #C75C5C;
    clear: both;
    overflow: hidden;
    padding-bottom: 11px;
}


#dossierLitiges .tt-blue {
    color : #133365;
}

/* Validator */


#dossierLitiges input[type="text"][required],
#dossierLitiges input[type="email"][required],
#dossierLitiges textarea[required]
 {
  background-image: radial-gradient(#FF9797 15%, transparent 16%), radial-gradient(#FF9797 15%, transparent 16%);
  background-size: 2em 2em;
  background-position: top right;
  background-repeat: no-repeat
}
#dossierLitiges .mandatory_fields {
    background-image: radial-gradient(#FF9797 15%, transparent 16%), radial-gradient(#FF9797 15%, transparent 16%);
    background-size: 2em 2em;
    background-position: 0% 0%;
    background-repeat: no-repeat;
    color: #FF9797;
    padding-left: 24px;
    padding-top: 4px;
    font-size: 14px;
}



    #dossierLitiges input.invalid,  #dossierLitiges textarea.invalid{
        border : 2px solid #FF9797 ;
        
    }
    div.error {
        color : #FF9797;
    }
#dossierLitiges .error {
    font-size : 12px;
}

.confirmationMsg strong {
    text-decoration: underline;
}
.confirmationMsg .page-content {
    font-size : 15px;
}

.confirmationMsg .imgIcon img{
    float: left;
    margin-right: 8px;
}

.confirmationMsg .tt {
    background : none;
    padding-left : 0;
}

input[type=file].invalid + .bootstrap-filestyle input[type=text]{
    border : 2px solid #FF9797;
}
.flags{
    display : inline-block;
}

.flag-link{
    float: left;
}

.flag-active{
    margin-top: 13px;
    border: 1px solid #fbf3f3;
    border-radius: 3px;
    padding: 2px;
} 