/* hover dynamique sur les dropdown menu */
@media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{ display: none; }
	.navbar .nav-item:hover .dropdown-menu{ display: block; }
	.navbar .nav-item .dropdown-menu{ margin-top:0; }
}

/* container plus large que par defaut */

@media (min-width: 1200px) {
	.container {max-width: 100%; padding-left:20px; padding-right: 20px;}
}
@media (min-width: 992px) {
	.container {max-width: 100%; padding-left:20px; padding-right: 20px;}
}

/* ascenseurs plein écran */

*:fullscreen
*:-ms-fullscreen,
*:-webkit-full-screen,
*:-moz-full-screen {
   overflow: auto !important;
}


input.inputAge {
  width: 3em;
}

input.inputTrueFalse {
  width: 2.5em;
}

/* pour mobile uniquement */

input[type=checkbox]#mobile{
  display: none;
}

/* test login */

.card-text-accueil {
    font-size: 0.9rem;
}

.wrapper {
    display: flex;
    align-items: center;
    flex-direction: column; 
    justify-content: center;
    width: 100%;
    min-height: 100%;
    padding: 20px;
  }
  
  #formContent {
    -webkit-border-radius: 10px 10px 10px 10px;
    border-radius: 10px 10px 10px 10px;
    background: #fff;
    padding: 30px;
    /* width: 90%; */
    /* max-width: 450px; */
    position: relative;
    padding: 0px;
    -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
    text-align: center;
  }


/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
  }
  
  @-webkit-keyframes fadeInDown {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
    100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  @keyframes fadeInDown {
    0% {
      opacity: 0;
      -webkit-transform: translate3d(0, -100%, 0);
      transform: translate3d(0, -100%, 0);
    }
    100% {
      opacity: 1;
      -webkit-transform: none;
      transform: none;
    }
  }
  
  /* Simple CSS3 Fade-in Animation */
  @-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  @-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  
  .fadeIn {
    opacity:0;
    -webkit-animation:fadeIn ease-in 1;
    -moz-animation:fadeIn ease-in 1;
    animation:fadeIn ease-in 1;
  
    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
  
    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
  }
  
 
  /* Simple CSS3 Fade-in Animation */
  .underlineHover:after {
    display: block;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background-color: #56baed;
    content: "";
    transition: width 0.2s;
  }
  
  .underlineHover:hover {
    color: #0d0d0d;
  }
  
  .underlineHover:hover:after{
    width: 100%;
  }
  
  
  
  /* OTHERS */
  
  *:focus {
      outline: none;
  } 
  
  /* texte dans cellule */
  table td.col-text span {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
  }
  

/* disable list-group a disabled link */

a.list-group-item.list-group-item-action.\.disabled {
    text-decoration: none;
    cursor: not-allowed;
}

#corps{
	font-size:1.1em;
	margin-top:0px
}

/* largeur pourcentage */
.aml-w-80 {
    width: 80%!important;
}
.aml-w-90 {
    width: 90%!important;
}

/* typeahead */

#custom-overrides span.twitter-typeahead {
  display: block !important;
}

/* couleurs boutons */

#custom-overrides .btn-warning {
    color: white;
    background-color: #e67e22;
    border-color: transparent; /* #e67e22 */
}

#custom-overrides .btn-success {
    color: white;
    background-color: #91BD09;
    border-color: transparent;
}

#custom-overrides .btn-warning.focus, #custom-overrides .btn-warning:focus {
    box-shadow: none;
}

#custom-overrides .btn-success.focus, #custom-overrides .btn-success:focus {
    box-shadow: none;
}

#custom-overrides tbody tr.d-flex:hover {
    outline: 0;
    /*box-shadow: 0 0 0 1px #5596e6 inset;*/
    background: #EEF4FC;
	border: 1px solid #5596e6
	/* background: #EEF4FC; */
}

/* pour accordion */
#custom-overrides .btn.focus, #custom-overrides .btn:focus {
    box-shadow: none;
}

#custom-overrides .btn-link:hover {
	color: inherit;
    text-decoration: none;
}

#custom-overrides .btn-link {
    font-weight: 400;
    color: inherit;
    text-decoration: none;
}

body {
	font-family:'Ubuntu', sans-serif,Verdana,Arial !important;
	font-size:10pt;
	color:#000000;
	background-color:#ffffff;
  padding-top: 0px;
	margin:0px;
}

a{
	border-bottom:0 none;
	text-decoration:none;
	color:#000000
}
a:hover{color:#818181}

/* couleurs */

#custom-overrides .bg-dark {
	background-color: #222;
}

  
.largeur {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f5f5f5;
}

/* barre de navigation */

#custom-overrides .navbar {
	padding-bottom: 0;
}

/* spécifique au titre (région) */

.navbar-title {
    color: white;
    font-size: 1.3em;
    font-style: normal;
    padding-bottom: 10px;
    font-family: Arial, Verdana, sans-serif;
}

/* override bootstrap des menus et items */

#custom-overrides .dropdown-item {
    color: white;
	padding: 0.25rem 0.5rem;
}

#custom-overrides .dropdown-menu {
    min-width: 10rem;
    padding: .5rem 0;
    /*margin: .125rem 0 0;*/
    /*font-size: 1rem;*/
	font-size: 13px;
    color: white;
    text-align: left;
    /*background-color: black;*/
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
}

#custom-overrides .navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,1);
}

#custom-overrides .navbar-dark:hover .navbar-nav:hover .nav-link:hover {
    color: rgba(255,255,255,0.7);
}

#custom-overrides .dropdown-item:focus, #custom-overrides .dropdown-item:hover {
    color: white;
    text-decoration: none;
    background-color: #818181;
}

#custom-overrides .card-body {
    background-color: rgba(0,0,0,.05);
}

#custom-overrides #accordionstudent .card-body {
    background-color: rgba(0,0,0,.0);
}

/* not checked : ok */
/*
#custom-overrides .custom-control-label:before{
	background-color: yellow !important;
}

.custom-control-input:checked~.custom-control-label::before{
	background-color: violet !important;
	border-color: violet !important;
	outline: 0;
	box-shadow: none;
	-webkit-box-shadow: none;
}
*/

#custom-overrides .custom-control-input:focus ~ .custom-control-label::before {
	/* when the button is toggled off it is still in focus and a violet border will appear */
	border-color: #ced4da ;
	/* box shadow is blue by default
		but we do not want any shadow hence we have set 
		all the values as 0 */
	box-shadow:
	  0 0 0 0rem rgba(0, 0, 0, 0) ;
}
  
/*sets the background color of switch to violet when it is checked*/
#custom-overrides .custom-control-input:checked ~ .custom-control-label::before {
	border-color: #91BD09 ;
	background-color: #91BD09 ;
}

#custom-overrides .custom-control-input:disabled:checked ~ .custom-control-label::before {
	opacity: 50%;
}
  
/*sets the background color of switch to violet when it is active*/
#custom-overrides .custom-control-input:active ~ .custom-control-label::before {
	background-color: #91BD09 ;
	border-color: #91BD09 ;
}
  
/*sets the border color of switch to violet when it is not checked*/

#custom-overrides .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
	border-color: #ced4da ;
}

#custom-overrides a.badge-success:focus, #custom-overrides a.badge-success:hover {
    color: #fff;
    background-color: #91BD09;
}

#custom-overrides .badge-success {
    color: #fff;
    background-color: #91BD09;
}

#custom-overrides a.badge-success.focus, #custom-overrides a.badge-success:focus {
    outline: 0;
    box-shadow: 0 0 0 0;
}

/* formulaire, see https://pro.propeller.in/components/jquery-validation*/

.aml-textfield-focused {
    position: relative;
    top: -1px;
    z-index: 2;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #4285f4;
    transition: transform .2s cubic-bezier(.4,0,.2,1) 0s;
    -ms-transform: scaleX(0);
    transform: scaleX(0);
}

.invalid-feedback{
	color:#ff5722
}

/* actions */

.bsbandeauaction{
	/*background:#E8E8EF none repeat scroll 0% 50%;*/
	/*height:22px;*/
	padding-top: 0px;
	padding-left: 2px;
	padding-bottom: 5px;
	/*border-right:1px solid #004080;*/
	/*border-left:1px solid #004080*/
}

/* magicsuggest */

#custom-overrides .ms-ctn .ms-sel-item {
    font-size: 1.0em;
    padding: 5px 5px 5px 5px;
    margin: 1px 5px 1px 0;
	color: #555;
	border: 1px solid #ccc;
}

div.ms-sel-item.custommsselection {
  background: #f9f9f9 !important;
  background-color:#f9f9f9 !important;
  color: #999 !important;
  border-radius: 3px !important;
  border:1px solid rgb(203, 213, 213) !important;
  color:rgb(60, 60, 60, 1) !important;
  margin: 2px 5px 2px 0 !important;
  padding: 6px !important;
font-size: 1.1em !important; 
}

/* pour photosToValidate et photosToDisplay */

div.aml-card-photo {
  width: 500px;
  float: left;
  margin: 10px;
  padding: 5px;
  border-color: lightgrey;
  border-style: solid;
  border-width: 1px;
  box-shadow: 2px 2px 5px lightgrey;
  -moz-box-shadow: 2px 2px 5px lightgrey;
  -webkit-box-shadow: 2px 2px 5px lightgrey;
  position: relative;
}

div.aml-card-photo:hover {
  border-color: darkgrey;
  box-shadow: 2px 2px 5px darkgrey;
  -moz-box-shadow: 2px 2px 5px darkgrey;
  -webkit-box-shadow: 2px 2px 5px darkgrey;
}

div.aml-card-photo-body {
	float: left
}

div.aml-card-photo-title {
	font-weight: 600;
	padding-bottom: 10px;
}

div.aml-card-photo-text {
	white-space: nowrap;
    overflow: hidden;
    padding-bottom: 5px;
}

div.aml-card-photo-picture {
	float: right;
	/*box-shadow: 2px 2px 5px darkgrey;*/
    /*-moz-box-shadow: 2px 2px 5px darkgrey;*/
    /*-webkit-box-shadow: 2px 2px 5px darkgrey*/
    width: 216px;
    height: 268px;
}

/* 
* progression path 
*/

#header-progression{
	height:60px;padding-top:0px;padding-left:0px;
	font-size:1.2em
}

#header-wrapper{margin:20px 20px}
#header-wrapper ul{padding:0;margin:0}

.stepContainer{border:1px solid #d6d6d6;border-radius:2px;overflow:hidden;margin-top:20px;margin-bottom:20px}
.stepContainer .step,.stepContainer .step a,.stepContainer .step a:hover{
  color:#252525;
  text-decoration:none
}
.stepContainer .step{
	text-align:center;padding:10px 0;position:relative;
	width: calc(100%/7);
	display:inline;
	float:left
}
.stepContainer .step.actif,.stepContainer .step.actif a,.stepContainer .step.actif a:hover{color:#ffffff;background-color:#91BD09}
.stepContainer .step .arrow{background-position:11px -542px;font-size:18px;padding-right:15px}
.stepContainer .step.actif .arrow{background-position:11px -560px}
.stepContainer .step .arrow span{font-size:.8em;line-height:.8em;margin:0 2px;width:auto;height:1em}
.stepContainer .step.actif .sideArrow{display:none}
.stepContainer .sideArrow,.sideArrowActive{width:0;height:0;border-style:solid;border-width:24px 0 24px 13px;display:block;position:absolute;top:-4px;-webkit-transform:rotate(360deg);transform:rotate(360deg)}
.stepContainer .sideArrow{border-color:transparent transparent transparent #fff;right:-9px;z-index:20}
.stepContainer .sideArrowActive{border-color:transparent transparent transparent #91BD09;right:-11px;z-index:10}
.span-24 {
	margin-right: 0;
}

/* label for="mobile">Menu */
div.stepContainer.last  label{
  display: none; 
}

/* debug  */

div.debug {
	background:lightgreen;
	border-style:dotted;
	border-color:blue;
	border-width:1px 1px 1px 1px;
	margin:10px;
	padding:10px;
}	

div.debug em {
	font-weight: bold;
	font-style: normal;
}

/* admin form */

div.boxadmin {
	width: 300px;
    height: 130px;
    float: left;
    margin: 10px;
    padding: 5px;
    border-color: lightgrey;
    border-style: solid;
    border-width: 1px;
    box-shadow: 2px 2px 5px lightgrey;
    -moz-box-shadow: 2px 2px 5px lightgrey;
    -webkit-box-shadow: 2px 2px 5px lightgrey;
}

div.boxadmin:hover {
	cursor: pointer;
    border-color: darkgrey;
    box-shadow: 2px 2px 5px darkgrey;
    -moz-box-shadow: 2px 2px 5px darkgrey;
    -webkit-box-shadow: 2px 2px 5px darkgrey;
}

div.boxadmintitle {
	text-align: center;
	min-height: 70px;
    padding-top: 10px;
}

div.boxadmindesc {
	text-align: left;
	font-size: 80%;
	color: #888;
}

.boxadminicon {
	float: left;
}

/* JS disabled styles */
.no-js nav li:hover ul { display:block; }

/* bouton pour remonter en haut */

.backToTop {
	z-index: 99999;
	position: fixed;
	bottom: -100px;
	right: 20px;
	cursor: pointer;
	-webkit-transition: all .4s ease-in;
    transition: all .4s ease-in;
    overflow: auto;
	height:4em;
	width: 4em;
}

.backToTop:hover {
	-webkit-transition: all .2s ease-in;
    transition: all .2s ease-in
}

/* magicsuggest */

.customms{
	border: 1px solid #757575 !important;
	border-radius: 3px !important;
}
.customms input{
	border: none;
}
.custommsselection{
	background: #f3f3f3 !important;
	color: black !important; 
	border: 1px solid #757575 !important;
}

/* divers */

.lesboutons{padding-top:0px;padding-bottom:14px}

.nonvisible{display:none;}
div#aml-oubli{text-align: center;}
.sep{
	margin-left: 5px;
    margin-right: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: darkgrey;
    background-color: darkgrey;
    border-style: inset;
    height: 1px;
    width: auto;
    border: none;
}
#erreurlogin
{
  margin-bottom: 10px;
  margin-top: 10px;
  font-size: 12px;
  font-weight: bold;
  color: red;
}
#menufooter{display:none;}

input[type=radio]{border:none;}

.titleform{
  padding-left:10px;
  font-family:Verdana,Arial;
  font-size:1.3em;
  color:white
}

 .acgauche{
  float:left;
  font-size: 1.1em;
 }
 div.acgauche a{
  text-decoration: underline;
 }

 .col_duree{float:left;width:80px}

 /* setup */
 .titlearrondi{
	-moz-border-radius:4px 4px 0 0;
	-webkit-border-radius:4px 4px 0 0;
	border-radius:4px 4px 0 0;
	background:#757575 none repeat scroll 0% 50%;
	padding-top:5px
}

.bandeauaction{
	padding-left:5px;
	padding-bottom:5px;
}
.colname{display:block;float:left;width:220px}
.candidatlibre{visibility:visible}
.dashedbottom{border-bottom:1px solid #E4E4E4;clear:both}
.clearer{clear:both}
.bottom{border-top:1px solid #222;margin-top:20px;margin-bottom:10px;padding-top:3px;color:#000000}
.warning{font-size:10pt;font-weight:bold;color:red;text-align: center;}
.basdroite{padding-top:20px}
.basdroite2{position:absolute;bottom:31px}
#blocdroite{border-style:solid;border-width:1px;float:right;position:relative;padding-top:0px;padding-left:0px;width:389px;height:100%}
#blocgauche{border-style:solid;border-width:1px;position:relative;float:left;display:block;padding-top:0px;padding-left:0px;width:389px;height:100%}
#deuxcolonnes{border-style:none;border-width:0px;display:block;height:100%;overflow:hidden}
.contenu{padding-top:6px;padding-left:6px;position:relative;padding-right:6px;height:inherit}
.titlenonarrondi{background:#757575 none repeat scroll 0% 50%;height:20px;padding-top:5px}
.main{border-bottom:1px solid #004080;border-right:1px solid #004080;border-left:1px solid #004080;padding:6px;background-color:#FFFFFF;-moz-border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px}.title{background:#004080 none repeat scroll 0%;width:795px;height:20px;color:white;font-weight:bold;padding-top:5px;padding-left:20px}


/*
#formnewaccount label.erreurlogin
{
  margin-bottom: 3px;
  font-size: 10px;
  color: red;
  display: block;
  margin-left: 100px;
}

#loginform label.erreurlogin
{
  margin-bottom: 3px;
  font-size: 10px;
  color: red;
  display: block;
  margin-left: 100px;
}

#formnewaccount input.erreurlogin
{
border: 1px solid red;
}

#loginform input.erreurlogin
{
border: 1px solid red;
}
*/


