body {
  padding-bottom: 30px;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

a{
	color:black;
}
.navbar a,.navbar{
	color:white;
}

.btn-primary,.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary{

    color: #fff;
    background-color: #428bca;
    border-color: #357ebd;

}

.float-right {
	float: right;
}
.list-group-item {
	overflow: auto;
}

.progress {
	margin-top: 5px;
}

#oldfile {
	margin-top: 10px;
}
#oldfile img {
	display: block;
}

.list-group-item.moved {
	background: #ddd;
	height: 40px;
}
p .btn-success{
	margin-bottom: 10px;
}
.btn-default.move {
	cursor: move;
}

.options_champ{
	display:none;
}
#zone_copy td{
	padding:2px 5px;
}

textarea.form-control {
	min-height:300px;
}

textarea.form-control-description{
	min-height:100px;
	
}
.error{
	background-color:#F2DEDE;
	border: 1px solid #a94442;
	padding: 15px;
	border-radius: 4px;
	color: #a94442;
	display:block;
}
.mjs-nestedSortable-error {
	background: #fbe3e4;
	border-color: transparent;
}

ol {
	margin: 0;
	padding: 0;
	padding-left: 30px;
}

ol.sortable, ol.sortable ol {
	margin: 0 0 0 25px;
	padding: 0;
	list-style-type: none;
}

ol.sortable {
	margin: 4em 0;
}

.sortable li {
	margin: 5px 0 0 0;
	padding: 0;
}

.sortable li div  {
	border: 1px solid #d4d4d4;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border-color: #D4D4D4 #D4D4D4 #BCBCBC;
	padding: 6px;
	margin: 0;
	cursor: move;
	background: #f6f6f6;
	background: -moz-linear-gradient(top,  #ffffff 0%, #f6f6f6 47%, #ededed 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(47%,#f6f6f6), color-stop(100%,#ededed));
	background: -webkit-linear-gradient(top,  #ffffff 0%,#f6f6f6 47%,#ededed 100%);
	background: -o-linear-gradient(top,  #ffffff 0%,#f6f6f6 47%,#ededed 100%);
	background: -ms-linear-gradient(top,  #ffffff 0%,#f6f6f6 47%,#ededed 100%);
	background: linear-gradient(top,  #ffffff 0%,#f6f6f6 47%,#ededed 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed',GradientType=0 );

}

#tree_sortable .placeholder {
	border: 1px dashed #4183C4;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}


.file-preview-frame {
    border: 1px solid #ddd;
    box-shadow: 1px 1px 5px 0 #a2958a;
    display: table;
    float: left;
    height: 90px;
    width: 110px;
    margin: 8px;
    padding: 6px;
    text-align: center;
    vertical-align: middle;
	overflow:hidden;
}

.file-preview-frame-img{
	height: 60px;
    width: 110px;
	display:block;
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	
	padding-top:20px;
	font-weight:bold;
}

.file-preview-options{
	height:30px;
	margin-top:-10px;
	margin-bottom:10px;
}

.modal-dialog-image{
	width:90%;
}
.modal-dialog-image .modal-content{
	padding:30px;
}

.modal-dialog-image .modal-content .file-preview-frame {
	height: 90px;
    width: 110px;

}
.modal-dialog-image .modal-content .file-preview-frame-img {
	height: 60px;
    width: 110px;

}
.modal-dialog-image .modal-content .file-preview-options{
	margin-top:5px;
	height:20px;
}
/******************************** ajout bootstrap ***************************/
.btn-arrow-right,
.btn-arrow-left {
   position: relative;
   padding-left: 18px;
   padding-right: 18px;
}

.btn-arrow-right {
   padding-left: 36px;
}

.btn-arrow-left {
   padding-right: 36px;
}

.btn-arrow-right:before,
.btn-arrow-right:after,
.btn-arrow-left:before,
.btn-arrow-left:after {
   /* make two squares (before and after), looking similar to the button */
   
   content: "";
   position: absolute;
   top: 5px;
   /* move it down because of rounded corners */
   
   width: 22px;
   /* same as height */
   
   height: 22px;
   /* button_outer_height / sqrt(2) */
   
   background: inherit;
   /* use parent background */
   
   border: inherit;
   /* use parent border */
   
   border-left-color: transparent;
   /* hide left border */
   
   border-bottom-color: transparent;
   /* hide bottom border */
   
   border-radius: 0px 4px 0px 0px;
   /* round arrow corner, the shorthand property doesn't accept "inherit" so it is set to 4px */
   
   -webkit-border-radius: 0px 4px 0px 0px;
   -moz-border-radius: 0px 4px 0px 0px;
}

.btn-arrow-right:before,
.btn-arrow-right:after {
   transform: rotate(45deg);
   /* rotate right arrow squares 45 deg to point right */
   
   -webkit-transform: rotate(45deg);
   -moz-transform: rotate(45deg);
   -o-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
}
table td>.form-group{
	margin-bottom:0;
}

.btn-arrow-left:before,
.btn-arrow-left:after {
   transform: rotate(225deg);
   /* rotate left arrow squares 225 deg to point left */
   
   -webkit-transform: rotate(225deg);
   -moz-transform: rotate(225deg);
   -o-transform: rotate(225deg);
   -ms-transform: rotate(225deg);
}

.btn-arrow-right:before,
.btn-arrow-left:before {
   /* align the "before" square to the left */
   
   left: -11px;
}

.btn-arrow-right:after,
.btn-arrow-left:after {
   /* align the "after" square to the right */
   
   right: -11px;
}

.btn-arrow-right:after,
.btn-arrow-left:before {
   /* bring arrow pointers to front */
   
   z-index: 1;
}

.btn-arrow-right:before,
.btn-arrow-left:after {
   /* hide arrow tails background */
   
   background-color: white;
}
/******************************** ajout bootstrap ***************************/
input[type="number"].unite ,input[type="number"].personnes{
   width:60px;
}
input[type="number"].prix_curency ,input[type="number"].prix{
   width:105px;
}
/**CSS FOR THE RING**/

.glyphicon-ring {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 4px solid black;
  color: black;
  display: inline-table;
  text-align: center;
}
/**CSS FOR ICON WITH NO BACKGROUND COLOR**/

.glyphicon-ring .glyphicon-bordered {
  font-size: 20px;
  vertical-align: middle;
  display: table-cell;
}
/**WITH AN ADDED BACKGROUND COLOR**/

.glyphicon-white {
  background: white;
  color: black;
  border: 4px solid black;
}
.glyphicon-teal {
  background: teal;
  color: orange;
}
.glyphicon-red {
  background: red;
}

.btn_commentaire{
	display:none;
}
.zone_commentaire{
	position:relative;
}
.form_commentaire .btn_commentaire{
	display:block;
	position:absolute;
	right:-30px;
	top:0;
	font-size:2em;
	cursor:pointer;
}
.form_commentaire .btn_commentaire:hover{
	opacity:0.8;
}
.bloc_messages{
	display:none;
	position:absolute; 
	right:-1px; 
	z-index:10000;
	background-color:white;
	border-radius:8px;
	padding:10px;
	border:1px solid #c2c2c2;
	width:400px;
	top:0;
}
.bloc_messages textarea{
	width:100%;
}
.statut_remarque,.color_remarque{
	color:#69ea9d;
	opacity:0.7;
}
.statut_remarque.selected,.statut_remarque:hover{
	opacity:1;
}

.messages{
	max-height:300px;
	overflow-y:scroll;
}
.messages i{
	font-size:0.7em;
}
.statut_notice,.color_notice{
	color:#ffbb00;
	opacity:0.7;
}
.zone_commentaire .color_notice i::before,.zone_commentaire .color_erreur i::before,.zone_commentaire .color_remarque i::before{
	content: "\f071";
}
.aide{
	font-style:italic;
	font-size:0.8em;
}
.statut_notice.selected,.statut_notice:hover{
	opacity:1;
}

.statut_erreur,.color_erreur{
	color:#ff0000;
	opacity:0.7;
}
.statut_erreur.selected,.statut_erreur:hover{
	opacity:1;
}

.statut_fermer,.color_fermer{
	color:#c2c2c2;
	opacity:0.7;
}
.statut_fermer.selected,.statut_fermer:hover{
	opacity:1;
}

.trad_lang_2{
	width:100%;
}

.trad_lang_1{
	display:none;
}

.traductible .trad_lang_2{
	width:50%;
}

.entete_trad{
	display:none;
}
.traductible .entete_trad{
	display:block;
}
.traductible .wysihtml5-sandbox{
	max-width:100%;
	min-height:300px;
}
.content_part{
	font-size:0.8em;
}

.content_part blockquote{
	font-size:1em;
}


.traductible .trad_lang_1{
	display:block;
}

.summary .statut_projet{
	font-size:0.8em;
}
.statut_projet2{
	font-weight:bold;
	border:2px solid black;
	border-radius:10px;
	text-align:center;
	padding:5px;
	display:block;
}
.statut_projet.rouge{
	color:#FF2700;
	border-color:#FF2700;
}
.statut_projet.orange{
	color:#FFBB00;
	border-color:#FFBB00;
}
.statut_projet.vert{
	color:#076c02;
	border-color:#076c02;
}

.summary td,.summary th{
	border-right: 2px solid #ddd;
}

.table_budget td,.table_budget th{
	border-right: 2px solid #ddd;
}
.table_budget .color{
	background-color:#d4dade;
}
.table_budget th.color{
	background-color:#ccd2d6;
}

.container.page_summary{
	width:98%;	
}

.label-info {
    background-color: #5bc0de;
	display: inline;
	padding: .2em .6em .3em;
	font-size: 75%;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	vertical-align: baseline;
	border-radius: .25em;
}

.bootstrap-tagsinput {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
}

.preview_img{
	max-width:100%;
}
.icon_img{
	max-width:50px;
	max-height:50px;
}

#image {
  max-width: 100%; /* This rule is very important, please do not ignore this! */
}

.zone_filtres .bootstrap-tagsinput{
	width:100%;
}
.zone_filtres .filtres{
	padding-bottom:20px;
}
.zone_filtres .un_filtre{
	margin-right:10px;
}
.zone_filtres .un_filtre:first-child .etou{
	display:none;
}
body .modal-dialog{
	max-width: 100%;
}

#content {
    width: 100%;
    padding: 20px;
    min-height: 100vh;
    transition: all 0.3s;
}


.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: #363A41;
    color: #bebebe;
    transition: all 0.3s;
}
#sidebar a{
	color: #bebebe;
	
}
#sidebar a:hover{
	text-decoration:none;
	
}

#sidebar.active {
    margin-left: -250px;
}

#sidebar .sidebar-header {
    padding: 20px;
    background: #343A40;
}

#sidebar ul.components {
    padding: 20px 0;
    border-bottom: 1px solid white;
}
#sidebar i{
	color:white;
	padding-right:5px;
}

#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 10px 5px;
    font-size: 1.1em;
    display: inline-block;
}
#sidebar ul li li a {
	padding: 5px 5px;
	 font-size: 1em;
}

#sidebar ul li a:hover {
    color: #fff;
    background: #202226;
}



#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #fff;
    background: #202226;
}

a[data-toggle="collapse"] {
    position: relative;
}

#sidebarCollapse {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    cursor: pointer;
	border:0;
	margin-top:-20px;
	margin-left:-20px;
	background-color:#363A41;
}

#sidebarCollapse span {
    width: 80%;
    height: 2px;
    margin: 0 auto;
    display: block;
    background: #bebebe;
    transition: all 0.8s cubic-bezier(0.810, -0.330, 0.345, 1.375);
    transition-delay: 0.2s;
}

#sidebarCollapse span:first-of-type {
    transform: rotate(45deg) translate(2px, 2px);
}
#sidebarCollapse span:nth-of-type(2) {
    opacity: 0;
}
#sidebarCollapse span:last-of-type {
    transform: rotate(-45deg) translate(1px, -1px);
}


#sidebarCollapse.active span {
    transform: none;
    opacity: 1;
    margin: 5px auto;
}


.comments{
	font-size:0.9em;
	background-color:#e1e1e1;
	padding:5px;
	border-radius:5px;
	margin-top:10px;
	margin-bottom:10px;
}

.icon_status .red{
	color:#b81741;
}
.icon_status .green{
	color:#22b817;
}
.icon_status .orange{
	color:#b87d17;
}
.icon_status .blue{
	color:#17a2b8;
}

.resume .red{
	color:#b81741;
}
.resume .bold{
	font-weight:bold;
}
.reponse_letter{
	display:inline-block;
	text-align:right;
	font-weight:bold;
	float: right;
}
.reponse.juste1{
	color:#22b817;
}
.reponse.juste0{
	color:#b81741;
}
.txt_question{
	width:600px;
	max-width:100%;
}


.apprentissage_gauche{
	width:250px;
	float:left;
	margin-right:39px;
	margin-top:50px;
}



.apprentissage_gauche ul ul{
	list-style-type:none;
	padding-left:20px;
}

.apprentissage_gauche ul{
	list-style-type:none;
	padding-left:0;
}

.apprentissage_gauche .toggleSubMenu .fleche{
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.apprentissage_gauche .toggleSubMenu .fleche.down{
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.apprentissage_droite{
	width:calc(100% - 290px);
	float:left;
	
}

.une_ligne{
	height:68px;
	background-color:white;
	margin-bottom:5px;
	line-height:68px;
	
}
.une_ligne div{
	float:left;
}
.une_ligne .libelle{
	
	
	
}
.une_ligne .case_large{
	min-width:20%;
	padding-left:27px;
	
	border-left:1px solid #E2E2E2;
	color:#8b8b8b;
	box-sizing:border-box;
}
.une_ligne .case_large i{
	color:black;
}
.une_ligne .case_large b{
	color:black;
}
.une_ligne .exam{
	width:20%;
	padding-left:10px;
	padding-right:10px;
	box-sizing:border-box;
	border-left:1px solid #E2E2E2;
}
.une_ligne .case_small{
	min-width:15%;
	padding-left:10px;
	padding-right:10px;
	box-sizing:border-box;
	border-left:1px solid #E2E2E2;
	
}
.une_ligne.entete,.une_ligne.entete .case_large{
	font-weight:bold;
	color:white;
	background-color:#163c5d;
}
.une_ligne.entete .case_small{
	font-size:1em;
}



@media screen and (max-width: 1200px) {
	
	
	.apprentissage_gauche{
		width:100%;
		float:none;
		margin-right:15px;
		margin-top:50px;
	}
	.apprentissage_droite{
		width:100%;
		float:none;
		
	}
	
	.une_ligne .case_small {
		max-width: 15%;
		padding-left: 0;
		font-size:0.6em;
	}
	.une_ligne .case_large {
		max-width: 20%;	
		padding-left: 0;
		font-size:0.8em;
	}
	.une_ligne {
		line-height: 1em;
	}
	.small_mobile{
		font-size:0.6em;
	}
	.littlesmall_mobile{
		font-size:0.8em;
	}
	.littlesmall_mobile .btn-sm{
		font-size:0.5rem;
		padding: .15rem .3rem;
	}
	#content {
		padding: 10px;
	}
	
	
}


.menu_theme_a.selected{
	font-weight:bold;
}


.menu_theme_aa.selected{
	font-weight:bold;
}

.nav_correction{
	text-align:center;
	color:#163c5d;
	font-size: 1.5em;
}
.nav_correction i{
	color:#6c9ad2;
}
.etude_question{
	margin-top:30px;
	background-color:white;
	display:flex;
	background-color: #163C5D;
	color: white;
}
.etude_question .left_etude_question{
	padding:10px;
	flex-grow:1;
}
.etude_question .right_etude_question{
	padding:10px;
	min-width:100px;
	background-color:#163C5D;
	color:white;
}
.bareme{
	font-size:1.2em;
	text-align:center;
}
.btn_score{
	display:flex;
	padding-top:5px;
	justify-content: space-between;
}
.btn_score i{
	font-size:1.5em;
	cursor:pointer;
}
.etude_reponse{
	background-color:#6c9ad2;
	padding:10px;
	color:white;
	margin-top:20px;
}
.etude_reponse2{
	background-color:white;
	padding:10px;
	margin-top:20px;
}
#content{
	background-color:#E2E2E2;
}
.zone_correction{
	max-width:800px;
	margin:auto;
}
tbody{
	background-color:white;
}
.zone_agenda .day{
	font-weight:bold;
}
.reserved-date::after{
	content:"\f111";
	font-family: "Font Awesome 5 Free";
	font-size:0.6em;
	color:#6c9ad2;
	display:block;
	font-weight:900;
	text-align:center;
	display:block;
	margin:auto;
}

.zone_agenda .datepicker-inline {
    width: 100%;
	color:#163c5d;
	background-color:white;
	margin-top:20px;
}
.zone_agenda .datepicker table{
	width: 100%;
}
.zone_agenda .datepicker tr{
	display:flex;
	
}
.zone_agenda .dow{
	text-transform: capitalize;
}
.zone_agenda .datepicker thead tr{
	justify-content:space-between;
	align-items:center;
}
.zone_agenda .datepicker thead tr th{
	flex-grow:1;
	height:60px;
	align-self:center;
	line-height:60px;

}
.zone_liste_date{
	margin-top:30px;
}
.zone_liste_date>div{
	display:flex;
	justify-content: space-between;
}
.zone_liste_date i{
	color:#6c9ad2;
	font-size:0.6em;
}
.zone_liste_date .blue{
	color:#6c9ad2;
}
.zone_agenda .datepicker thead tr:first-child th{
	flex-grow:0;
}
.zone_agenda .datepicker thead tr:first-child{
	justify-content:center;
}
.zone_agenda .datepicker thead {
	border-bottom:2px #D4D4D4 solid;
}
.zone_agenda .datepicker tbody tr{
	justify-content:space-between;
	border-bottom:2px #D4D4D4 solid;
}
.zone_agenda .datepicker-switch{
	text-transform: capitalize;
}
.zone_agenda .prev,.zone_agenda .next{
	color:#6c9ad2;
}
.zone_agenda .datepicker tbody td{
	flex-grow:1;
	min-height:60px;
	height:auto;
	border-radius:0;
	padding-top:8px;
	overflow:visible
}
.zone_agenda .datepicker table tr td.active{
	background-image:none;
	background-color: #163c5d;
}
.zone_agenda .datepicker table tr td.active.active,.zone_agenda .datepicker table tr td.active:hover.active{
	background-color: #163c5d;
}
.datepicker td, .datepicker th {
    text-align: center;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: none;
}


.calendrier_semaine{
	width:calc(100% - 40px);
	display:flex;
	margin-bottom:10px;
}

.calendrier_semaine .entete{
	display:flex;
	justify-content:space-evenly;
	border-bottom:2px solid #D4D4D4;
	font-weight:bold;
}
.calendrier_semaine .entete div{
	width:20%;
	text-align:center;
}
.choix_month{
	text-align:center;
	font-weight:bold;
	color:#163c5d;
	padding-bottom:20px;
}
.choix_month .prev{
	color:#6c9ad2;
	padding-right:15px;
}
.choix_month .next{
	color:#6c9ad2;
	padding-left:15px;
}
.calendrier_semaine .colonne{
	width:20%;
}
.little_grey{
	font-size:0.8em;
	color:#777777;
}
.choix_heure{
	height:40px;
	width:80px;
	text-align:center;
	background: #eee;
	color:white;
	margin:auto;
	margin-top:5px;
	margin-bottom:5px;
	line-height:40px;
}
.no_choix_heure{
	height:40px;
	width:80px;
	text-align:center;
	margin:auto;
	margin-top:5px;
	margin-bottom:5px;
	line-height:40px;
}

 .prev_month{
	padding-right:5px;
	cursor:pointer;
	vertical-align: -2px;
	color:#6c9ad2;
}

.next_month{
	padding-left:5px;
	cursor:pointer;
	vertical-align: -2px;
	color:#6c9ad2;
}
.prev,.next{
	cursor:pointer;
	color:#6c9ad2;
}

.choix_heure.selected{
	
	cursor:pointer;
	background-color: #6c9ad2;
}
.choix_heure.reserved{
	background-color: #d17123;
}

@media screen and (max-width: 1200px) {
	
	.calendrier_semaine {
		width: 95%;
		font-size:0.8em;
	}
	.choix_heure,.no_choix_heure{
		width:95%;	
	}
	
}
.btn_bottom{
	display:flex;
	justify-content:center;
	padding-bottom:20px;
}
.validation_large{
	border:0;
	min-width:150px;
}
.credit_heure{
	border:1px solid 
}


.prev_next{
	display:flex;
	justify-content:space-between;
	margin-bottom:-40px;
	z-index:1000;
	position:relative;
}

.zone_liste_date .btn_annexe i{
	font-size:1.3em;
}
/*
.table .header_grille>tr{
	display:flex;
	width:100%;
}
.table .header_grille .first{
	flex-grow:1;
	display:inline-block;
}
*/
.table_grille{
	table-layout:fixed;
	overflow:hidden;
	width:100%;
}
.table_grille>tbody{
	width:100%;
}
.table_grille th{
	white-space: nowrap;
}
.table .headervertical{
	width:30px;
	text-align:left;
	padding-left:0;
	padding-right:0;
	margin:0;
	max-width: 30px;
	padding-top: 110px;
	
}
.table .headervertical>span{
	transform: rotate(-90deg);
	display: block;
}
.table .nopadding{
	padding-left:0;
	padding-right:0;
	width:30px; 
}
