/* * * * * */
/* Global  */
/* * * * * */
body {
  font-size: 1rem;
}

.docs-title {
  display: block;
  font-size: 5rem;
  line-height: 1;
}

.docs-subtitle {
  display: block;
  font-size: 2.5rem;
}

/** Footer **/
.linksUl{
  list-style-type: none;
}

.linksLiTitle{
  font-weight: bold;
  color: #F30438;
  font-size: 80%;
}


.linksLiIcon{
  font-size:150%;
  float: left;
  padding-right: 15px;
}

/** Footer END **/

.block_text{
    background-color: #f5f5f5;
    padding: 10px;
}

.tableTableur{
  background-color:#eee; 
  border: 10px solid #eee; 
  text-align:right; 
  font-size:90%
}


/* * * * * */
/* Alerts  */
/* * * * * */
.alert-primary {
  border: 0;
  border-left: 5px solid #F30438;
}

.alert-warning {
  border: 0;
  border-left: 5px solid #ffc107;
}

.alert-info {
  border: 0;
  border-left: 5px solid #17a2b8;
}

/* * * * * * */
/* Clipboard */
/* * * * * * */
.bd-clipboard {
  position: relative;
  display: block;
  float: right;
}

.btn-clipboard {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  cursor: pointer;
  font-size: 75%;
  padding: 4px;
  border-radius: 3px;
}

.btn-clipboard:hover {
  background-color: #F30438;
  color: white;
}

/* * * * * */
/* Header  */
/* * * * * */
.docs-header {
  background-color: #112;
  padding: 0.5rem 0 5rem 0;
  color: white;
}


.docs-footer {
	background-color: #112;
	padding: 5rem 0;
	color: white;
  }

.docs-footer a{
  color: #fff;
}

/* * * * * */
/* Sidebar */
/* * * * * */
.nav-sidebar {
  z-index: 1;
}

.nav-sidebar .nav-link {
  margin: 0.25rem 0;
  padding: 0 0.5rem;
  color: #343a40;
  border-left: 2px solid transparent;
  font-size: 0.85rem;
}

.nav-sidebar .nav-link.active {
  color: #F30438;
  border-left: 2px solid #F30438;
  font-weight: bold;
}

.nav-sidebar>ul.nav>li.nav-item>.nav {
  display: none;
}

.nav-sidebar>ul.nav>li.nav-item>a.nav-link.active~.nav {
  display: flex;
}

/* * * * * * * * * * * * * * * * * */
/* Prism Code Markup Customization */
/* * * * * * * * * * * * * * * * * */
code[class*='language-'],
pre[class*='language-'] {
  font-size: 0.95em;
  line-height: 1.2em;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  hyphens: none;
  color: #393a34;
  direction: ltr;
  -ms-hyphens: none;
}

code[class*='language-']::-moz-selection,
code[class*='language-']::-moz-selection,
pre[class*='language-']::-moz-selection,
pre[class*='language-']::-moz-selection {
  background: #b3d4fc;
}

code[class*='language-']::selection,
code[class*='language-']::selection,
pre[class*='language-']::selection,
pre[class*='language-']::selection {
  background: #b3d4fc;
}

/* Code blocks */
pre[class*='language-'] {
  overflow: auto;
  margin: 0.5em 0;
  padding: 1em;
  border: 1px solid #ddd;
  background-color: #f8f8f8;
}

/* Inline code */
:not(pre)>code[class*='language-'] {
  padding: 1px 0.2em;
  border: 1px solid #ddd;
  background: #f8f8f8;
}

.token.cdata,
.token.comment,
.token.doctype,
.token.prolog {
  font-style: italic;
  color: #998;
}

.token.namespace {
  opacity: 0.7;
}

.token.attr-value,
.token.string {
  color: #e3116c;
}

.token.operator,
.token.punctuation {
  color: #393a34;
  /* no highlight */
}

.token.boolean,
.token.constant,
.token.entity,
.token.inserted,
.token.number,
.token.property,
.token.regex,
.token.symbol,
.token.url,
.token.variable {
  color: #36acaa;
}

.language-autohotkey .token.selector,
.token.atrule,
.token.attr-name,
.token.keyword {
  color: #00a4db;
}

.language-autohotkey .token.tag,
.token.deleted,
.token.function {
  color: #9a050f;
}

.language-autohotkey .token.keyword,
.token.selector,
.token.tag {
  color: #00009f;
}

.token.bold,
.token.function,
.token.important {
  font-weight: bold;
}

.token.italic {
  font-style: italic;
}


/* * * * * */
/* Switch Button */
/* * * * * */

.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 17px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 17px;
}

.slider.round:before {
  border-radius: 50%;
}

/* NNNNNNNNNNNEWWWWWWWWWWWWWWWWWWWWWWWWW */


.App {
	text-align: center;
  }
  
  .App-logo {
	width: 44px;
	margin: 0 8px 8px 0;
	pointer-events: none;
  }
  
  @media (prefers-reduced-motion: no-preference) {
	.App-logo {
	  animation: App-logo-spin infinite 20s linear;
	}
  }
  
  .App-header {
	background-color: #282c34;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: calc(10px + 2vmin);
	color: white;
  }
  
  .App-link {
	color: #61dafb;
  }
  
  i.glyphicon { display: none; }
  .btn-add::after { content: '+'; }
  .array-item-move-up::after { content: '\2191'; }
  .array-item-move-down::after { content: '\2193'; }
  .array-item-remove::after { content: '-'; }
  
  @keyframes App-logo-spin {
	from {
	  transform: rotate(0deg);
	}
	to {
	  transform: rotate(360deg);
	}
  }
  


  .miniSearch {
	border-radius: 5px;
	border: 1px solid #555;
	padding: 5px 10px !important;
	color: #aaa;
	margin-top: 4px;
	font-size: 90%;
}


.exposant{
    font-size: 0.7em;
    vertical-align: super;
	
}