/** ADD YOUR AWESOME CODES HERE **/



/**************************\
  Basic Modal Styles
\**************************/

.modal {
	font-family: inherit;
  }
  
  .modal__overlay {
  z-index: 100000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .modal__container {
    background-color: #fff;
    padding: 30px;
    max-width: 80%;
    max-height: 80%;
    border-radius: 4px;
    overflow-y: auto;
    box-sizing: border-box;
  }
  
  .modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .modal__title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.25;
    color: #00449e;
    box-sizing: border-box;
  }
  
  .modal__close {
    background: transparent;
    border: 0;
  }
  
  .modal__header .modal__close:before { content: "\2715"; }
  
  .modal__content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: rgba(0,0,0,.8);
  }
  
  .modal__btn {
    font-size: .875rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    background-color: #e6e6e6;
    color: rgba(0,0,0,.8);
    border-radius: .25rem;
    border-style: none;
    border-width: 0;
    cursor: pointer;
    -webkit-appearance: button;
    text-transform: none;
    overflow: visible;
    line-height: 1.15;
    margin: 0;
    will-change: transform;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: -webkit-transform .25s ease-out;
    transition: transform .25s ease-out;
    transition: transform .25s ease-out,-webkit-transform .25s ease-out;
  }
  
  .modal__btn:focus, .modal__btn:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  
  .modal__btn-primary {
    background-color: #00449e;
    color: #fff;
  }
  
  
  
  /**************************\
    Demo Animation Style
  \**************************/
  @keyframes mmfadeIn {
      from { opacity: 0; }
        to { opacity: 1; }
  }
  
  @keyframes mmfadeOut {
      from { opacity: 1; }
        to { opacity: 0; }
  }
  
  @keyframes mmslideIn {
    from { transform: translateY(15%); }
      to { transform: translateY(0); }
  }
  
  @keyframes mmslideOut {
      from { transform: translateY(0); }
      to { transform: translateY(-10%); }
  }
  
  .micromodal-slide {
    display: none;
  }
  
  .micromodal-slide.is-open {
    display: block;
  }
  
  .micromodal-slide[aria-hidden="false"] .modal__overlay {
    animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
  }
  
  .micromodal-slide[aria-hidden="false"] .modal__container {
    animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
  }
  
  .micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
  }
  
  .micromodal-slide[aria-hidden="true"] .modal__container {
    animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
  }
  
  .micromodal-slide .modal__container,
  .micromodal-slide .modal__overlay {
    will-change: transform;
  }
  





/*  box sizing */
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* clearfix */
.clearfix:after { clear:both; content:"."; display:block; font-size:0; height:0; visibility:hidden; }
.clearfix { display:block; } /* extra for Safari */
.clearfix { *height:1%; }  /* trigger hasLayout for IE6 + 7 */


/* CUT TEXT */

.cutwrap {
font-size: 15px;
font-family: 'Exo', sans-serif;
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 30px;
  white-space: normal;
  color: transparent !important;
  padding: 3px;


}
.cutwrap::selection {
  color: transparent !important;
}
.cutwrap:before {
  content: attr(data-cutwrap);
  position: absolute;
  left: 10px;
  right: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #333;
}
/* different styles for links */
a.cutwrap:before {
  text-decoration: underline;
  color: #05c;
}



/* RESPONSIVE TABLE */

      .responsive-table {
		  font-family: inherit;
  width: 100%;
  margin-bottom: 1.5em;
}
.responsive-table thead {
  position: absolute;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0;
  border: 0;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.responsive-table thead th {


  font-weight: bold;
  text-align: center;

  width: 10%;
}
.responsive-table thead th:first-of-type {
  text-align: left;

}
.responsive-table tbody,
.responsive-table tr,
.responsive-table th,
.responsive-table td {
  display: block;
  padding: 0;
  text-align: left;
  white-space: normal;

}
.responsive-table th,
.responsive-table td {
  padding: .5em;
  vertical-align: middle;
   
}
.responsive-table caption {

  font-size: 1em;
  font-weight: bold;
  text-align: center;

}
.responsive-table tfoot {
  font-size: .8em;
  font-style: italic;
}
.responsive-table tbody tr {
  margin-bottom: 1em;
  padding: 10px;

}
.responsive-table tbody tr:last-of-type {
  margin-bottom: 0;
}
.responsive-table tbody th[scope="row"] {
	
}
/*
.responsive-table tbody td[data-type=currency] {
  text-align: right;
}
*/

.responsive-table tbody td[data-title]:before {
  content: attr(data-title);
  float: left;
  font-size: 1em;
   margin-top: 10px;
  margin-bottom: 10px;
}


.responsive-table tbody td[data-title="Une université humaine"] {
color: #8B4513;

}

.responsive-table tbody td[data-title="Une université ouverte"] {
color: #3BAFDA;
}

.responsive-table tbody td[data-title="Une université ambitieuse"] {
color: #f46917;;
}

.responsive-table tbody td {
  text-align: right;

}


 .brunSolid {    background-color: rgb(152,140,121); color: white; }
 .aquaSolid { background-color: rgb(59, 175, 218); color: white; }
.orangeSolid {   background-color: rgb(244,105,23);  color: white; }

@media (min-width: 52em) {
  .responsive-table {
    font-size: .9em;
  }
  .responsive-table thead {
    position: relative;
    clip: auto;
    height: auto;
    width: auto;
    overflow: auto;
  }
  .responsive-table tr {
    display: table-row;
  }
  .responsive-table th,
  .responsive-table td {
    display: table-cell;
    padding: .5em;
  }

  .responsive-table caption {
    font-size: 1.5em;


  }
  .responsive-table tbody {
    display: table-row-group;
  }
  .responsive-table tbody tr {
    display: table-row;
    border-width: 1px;
  }
  .responsive-table tbody tr:nth-of-type(even) {

  }
  .responsive-table tbody th[scope="row"] {
    color: #555555;
	border-bottom: 1px solid rgba(0,0,0,0.2);
	
    text-align: left;
  }
  .responsive-table tbody td {
    text-align: center;
  }
  .responsive-table tbody td[data-title]:before {
    content: none;
  }
  

  
}



@media (min-width: 62em) {
  .responsive-table {
    font-size: 1em;
  }
  .responsive-table th,
  .responsive-table td {
    padding: .75em .5em;
  }
  .responsive-table tfoot {
    font-size: .9em;
  }
}

@media (min-width: 75em) {
  .responsive-table th,
  .responsive-table td {
    padding: .75em;
  }
}






.d1 {   
animation-duration: 2s;
  animation-delay: 1s;
  }
  
.d2 {

  animation-delay: 2s;
  }


.d3 {
animation-duration: 2s;
  animation-delay: 3s;
  }

  
  .d4 {

  animation-delay: 4s;
  }

  .d5 {
animation-duration: 2s;
  animation-delay: 5s;
  }

    .d6 {

  animation-delay: 6s;
  }






 .brun {  transition: 0.5s;   /* border: 1px solid rgba(152,140,121,.5);*/ }
 .aqua {transition: 0.5s;   /* color: #3BAFDA; border: 1px solid rgba(59, 175, 218,.5);*/ }
.orange {  transition: 0.5s;   /* color: #f46917; border: 1px solid rgba(244,105,23,.5); */ }

 .brun:hover { background-color: rgba(152,140,121,.2); }
 .aqua:hover { background-color: rgba(59, 175, 218,.2); }
  .orange:hover { background-color: rgba(244,105,23,.2); }
  
 .brunSolid {    background-color: rgb(152,140,121); color: white; }
 .aquaSolid { background-color: rgb(59, 175, 218); color: white; }
.orangeSolid {   background-color: rgb(244,105,23);  color: white; }


.monbouton {  
background-color: #fff; 
  border: none;
 font-size: 1em;
  
  }
  
  

/* Ken Burns effect – Source : https://www.cssscript.com/demo/pure-css-background-slideshow-ken-burns-effect/ */

.slideshow {
  position: absolute;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.myslide { filter: contrast(1.2);}

.slideshow-image {

  position: absolute;
  width: 100%;
  height: 100%;
  background: no-repeat 50% 50%;
  background-size: cover;
  -webkit-animation-name: kenburns;
  animation-name: kenburns;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 16s;
  animation-duration: 16s;
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.still {
	
  position: absolute;
  width: 100%;
  height: 100%;
  background: no-repeat 50% 50%;
  background-size: cover;
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}


.darkened { filter: brightness(50%); }

.slideshow-image:nth-child(1) {
  -webkit-animation-name: kenburns-1;
  animation-name: kenburns-1;
  z-index: 4;
}

.slideshow-image:nth-child(2) {
  -webkit-animation-name: kenburns-2;
  animation-name: kenburns-2;
  z-index: 3;
}

.slideshow-image:nth-child(3) {
  -webkit-animation-name: kenburns-3;
  animation-name: kenburns-3;
  z-index: 2;
}

.slideshow-image:nth-child(4) {
  -webkit-animation-name: kenburns-4;
  animation-name: kenburns-4;
  z-index: 1;
}
 @-webkit-keyframes 
kenburns-1 {  0% {
 opacity: 1;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
 1.5625% {
 opacity: 1;
}
 23.4375% {
 opacity: 1;
}
 26.5625% {
 opacity: 0;
 -webkit-transform: scale(1);
 transform: scale(1);
}
 100% {
 opacity: 0;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
 98.4375% {
 opacity: 0;
 -webkit-transform: scale(1.21176);
 transform: scale(1.21176);
}
 100% {
 opacity: 1;
}
}
 @keyframes 
kenburns-1 {  0% {
 opacity: 1;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
 1.5625% {
 opacity: 1;
}
 23.4375% {
 opacity: 1;
}
 26.5625% {
 opacity: 0;
 -webkit-transform: scale(1);
 transform: scale(1);
}
 100% {
 opacity: 0;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
 98.4375% {
 opacity: 0;
 -webkit-transform: scale(1.21176);
 transform: scale(1.21176);
}
 100% {
 opacity: 1;
}
}
@-webkit-keyframes 
kenburns-2 {  23.4375% {
 opacity: 1;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
 26.5625% {
 opacity: 1;
}
 48.4375% {
 opacity: 1;
}
 51.5625% {
 opacity: 0;
 -webkit-transform: scale(1);
 transform: scale(1);
}
 100% {
 opacity: 0;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
}
@keyframes 
kenburns-2 {  23.4375% {
 opacity: 1;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
 26.5625% {
 opacity: 1;
}
 48.4375% {
 opacity: 1;
}
 51.5625% {
 opacity: 0;
 -webkit-transform: scale(1);
 transform: scale(1);
}
 100% {
 opacity: 0;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
}
@-webkit-keyframes 
kenburns-3 {  48.4375% {
 opacity: 1;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
 51.5625% {
 opacity: 1;
}
 73.4375% {
 opacity: 1;
}
 76.5625% {
 opacity: 0;
 -webkit-transform: scale(1);
 transform: scale(1);
}
 100% {
 opacity: 0;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
}
@keyframes 
kenburns-3 {  48.4375% {
 opacity: 1;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
 51.5625% {
 opacity: 1;
}
 73.4375% {
 opacity: 1;
}
 76.5625% {
 opacity: 0;
 -webkit-transform: scale(1);
 transform: scale(1);
}
 100% {
 opacity: 0;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
}
@-webkit-keyframes 
kenburns-4 {  73.4375% {
 opacity: 1;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
 76.5625% {
 opacity: 1;
}
 98.4375% {
 opacity: 1;
}
 100% {
 opacity: 0;
 -webkit-transform: scale(1);
 transform: scale(1);
}
}
@keyframes 
kenburns-4 {  73.4375% {
 opacity: 1;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
 76.5625% {
 opacity: 1;
}
 98.4375% {
 opacity: 1;
}
 100% {
 opacity: 0;
 -webkit-transform: scale(1);
 transform: scale(1);
}
}
  
.h1blanc { 
	font-size: 2em;
	color: white;
	font-weight: bolder;
}  


.status {
        white-space:nowrap;
	margin-left: 18px;
	font-size: 16px;
}

.status-wrapper { margin: 18px 0;}
.status-wrapper .status { margin-left: 0;}

.done {
	background: #2ecf7f;
	color: #fff;
	border-radius: 6px;
	padding: 4px 8px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.done::after {
	content: ' ✔';
	margin-left: 4px;
	font-weight: bold;
}

.progress {
	border: 3px dashed #2ecf7f;
	color: #2ecf7f;
	border-radius: 6px;
	background: #fff;
	padding: 4px 8px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
/*
.progress::after {
	content: ' 🕓';
	color: #2ecf7f;
	margin-left: 4px;
	font-weight: bold;
}*/

.themeLabel, .red { color: #cf2e2e;  }
.temp {/* color: #2e7fcf; */ color: #007a89; }
.titre { display: inline-block; }

@media only screen and (max-device-width: 768px) {
   #search, #theme_s, #temp_s {
	width: 90vw; 
	text-overflow: ellipsis;
   }
   
   #temp_s {
	margin-top: 25px;
   }
   
   .titre { display: block; }
}



.encadre { border: 1px solid #cf2e2e; margin: 20px 20px 20px 0; padding: 20px; }
.encadre .red { margin: 20px 0; }

.encadre ol { margin-left: 20px; }
	