/* style principal de stockManagement */

/* INITIALISATION DES BALISES COMPLEXE */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
audio:not([controls]) {
  display: none;
}
html {
  font-size: 1em;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
a{
	color: inherit;
	text-decoration: none;
}
a:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
a:hover,
a:active {
  outline: 0;
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  /* Responsive images (ensure images don't scale beyond their parents) */

  max-width: 100%;
  /* Part 1: Set a maxium relative to the parent */

  width: auto;
  /* IE7-8 need help adjusting responsive images */

  height: auto;
  /* Part 2: Scale the height according to the width, otherwise you get stretching */

  vertical-align: middle;
  border: 0;
  -ms-interpolation-mode: bicubic;
}
#map_canvas img,
.google-maps img {
  max-width: none;
}
button,
input,
select,
textarea {
  margin: 0;
  font-size: 100%;
  vertical-align: middle;
  outline: none;
}
button,
input {
  *overflow: visible;
  line-height: normal;
  user-select: none;
}

input{
	background: #fff;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
label,
select,
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="radio"],
input[type="checkbox"] {
  cursor: pointer;
  user-select: none;
  outline: none;
}
input[type="search"] {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
textarea {
  overflow: auto;
  vertical-align: top;
}

label{
	font-style: italic;
}

hr {
    border: 0.5px solid #38d97b;
    margin: 20px 0 40px;
}

caption {
    color: #333;
    font-weight: bold;
    font-size: medium;
    padding: 10px;
	text-align: inherit;
}

@media print {
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page  {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}

@import url("https://fonts.googleapis.com/css?family=Antic+Regular");
@import url("https://fonts.googleapis.com/css?family=Open+Sans+Condensed");
@import url("https://fonts.googleapis.com/css?family=Open+Sans");

html,body{
	overflow: hidden;
	margin: 0;
	padding: 0;
	height: 100vh;
	width: 100vw;
	background: #fff;
    color: #202124;
	/*
	font-family: 'Antic Regular','Open Sans', sans-serif, cursive, tahoma,calibri,arial,"Trebuchet MS";
	font-size: 14px;
	*/
	font-family: Roboto, 'Segoe UI', Tahoma, sans-serif;
    font-size: 90%;
}

.important{
	font-family: 'Lobster Regular', fantasy;
}

::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #403f3e;
  font-weight: 300;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #403f3e;
  opacity: 1;
  font-weight: 300;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #403f3e;
  opacity: 1;
  font-weight: 300;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #403f3e;
  font-weight: 300;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #403f3e;
  font-weight: 300;
}

::-webkit-scrollbar {
   width: 10px;
   /*background-color:silver;*/
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgb(0, 140, 120);
    border-radius: 2px;
    margin: 0 2px;
	width: 6px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    box-shadow: inset 0 0 6px rgb(0, 0, 0); 
    background:rgb(0, 0, 0);
}



*{
	-webkit-transition: all 0.4s cubic-bezier(0.17,.67,.83,.67);
	-moz-transition: all 0.4s cubic-bezier(0.17,.67,.83,.67);
	-o-transition: all 0.4s cubic-bezier(0.17,.67,.83,.67);
	transition: all 0.4s cubic-bezier(0.17,.67,.83,.67);
}

th,td{
	vertical-align: bottom;
	padding: 6px;
	border-collapse: collapse;
	border: 1px solid #fcfcfc;
}

tr:nth-child(even){
	background: #fbf9fc;
}

input[type="image"]{
	width: 30px;
    display: inline-block;
    margin: auto 5px;
    background: transparent;
    border-radius: 3px;
    padding: 2px;
    /* vertical-align: super;*/
}

h1,h2,h3,h4,h5,h6, p{
	margin: 0;
	padding: 0;
}

em{
	font-style: normal;
}

a{
	text-decoration: none;
	color: inherit;
	line-height: 1.7em;
	cursor: pointer;
}

a.color{
	color: #7985c1;
}

a:hover{
	font-weight: 600; 
}

.main-container{
	position: relative;
	margin: 0;
	padding: 0;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
}

.inline-flex {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex-grow {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}

.flex-middle {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
  place-items: center;
  place-content: center;
}

.flex-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}

.flex-top {
  -webkit-align-self: flex-start;
  -moz-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}

.flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}

.flex-bottom {
  -webkit-align-self: flex-end;
  -moz-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
}

.space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.space-around {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
}

.flex-column {
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.flex-cell {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.display-table {
  display: table;
}

.display-grid {
  display: grid;
  row-gap: 0;
  column-gap: 20px;
}

.display-none{
	display: none!important;
}

.grid-2-column-auto {
	grid-template-columns: auto auto;
}

.grid-2-column-egal {
	grid-template-columns: 1fr 1fr;
}

.grid-3-column-auto {
	grid-template-columns: auto auto auto;
}

.grid-3-column-egal {
	grid-template-columns: 1fr 1fr 1fr;
}

.grid-4-column-auto {
	grid-template-columns: auto auto auto auto;
}

.grid-4-column-egal {
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-2-column-panel{
	grid-template-columns: 1fr 3fr;
}

.grid-2-column-panel-content{
	grid-template-columns: 1fr 2fr;
}

.align-items {
    /* justify-content: flex-start; */
    align-items: flex-start;
}

.chargement{
	display: flex;
	align-content: center;
	align-items: center;
    width: 100%;
    height: 100%;
}

.logo{
	width: 100px;
	height: auto;
	display: inline-block;
	margin: auto 10px;
	vertical-align: middle;
}

.colored-text{
	color: #0ea961;
}
.danger-text{
	color: #f71c05;
	cursor: pointer;
}
.light-text{
	color: #5f6368;
}

.input-container,.select-container,.input-multiple-container {
    display: flex;
	height: 30px;
	margin: 10px 0;
	border: 1px solid #d7d0d0;
	padding: 10px 6px;
	border-radius: 5px;
	background: #fff;
	max-width: 100%;
}

.input-multiple-container{
	height: 120px;
	border: none;
	padding: 0;
}
.input-multiple-container select{
	width: 100%;
	border-radius: 5px;
}
.input-multiple-container select option{
	padding: 10px 14px;
}
.input-multiple-container select option:current{
	background:#0ea961;
}

.textarea-container {
    display: flex;
	height: 60px;
	margin: 10px 0;
	border: 1px solid #d7d0d0;
	padding: 10px 6px;
	border-radius: 5px;
	background: #fff;
	box-sizing: border-box;
	max-width: 100%;
}

.input-container > input, .input-container > select {
    flex: 1;
	border: none;	
	outline: none;
	max-width: 100%;
}

.select-container{
	height: 150px;
}
.textarea-container textarea {
	flex: 1;
	border: none;	
	outline: none;
	resize: none;
	height: 100%;
	width: 100%;
}

label.location {
	background: url(file:///C|/server/www/hesabu-health-care-me/icones/placeholder.png);
}
label.pays {
	background: url(file:///C|/server/www/hesabu-health-care-me/icones/worldwide.png);
}
label.search {
	background: url(file:///C|/server/www/hesabu-health-care-me/icones/icons8-rechercher-plus-100.png);
}
label.tel {
	background: url(../icones/icons8-téléphone-100.png);
}
label.mail {
	background: url(file:///C|/server/www/hesabu-health-care-me/icones/icons8-gmail-100.png);
}
label.hotel {
	background: url(../icones/icons8-société-100.png);
}
label.voiture {
	background: url(file:///C|/server/www/hesabu-health-care-me/icones/icons8-voiture-100.png);
}
label.password {
	background: url(file:///C|/server/www/hesabu-health-care-me/icones/icons8-mot-de-passe-100.png);
}
label.user {
	background: url(file:///C|/server/www/hesabu-health-care-me/icones/icons8-utilisateur-masculin-100.png);
}
label.date {
	background: url(file:///C|/server/www/hesabu-health-care-me/icones/icons8-heures-supplementaires-100.png);
}
label.text {
	background: url(file:///C|/server/www/hesabu-health-care-me/icones/icons8-clavier-100.png);
}
label.number {
	background: url(../icones/icons8-comptabilité-100.png);
}

.input-container > label, .textarea-container > label, .select-container label{
    width: 30px;
	padding-left: 30px;
	box-sizing: border-box;
	overflow: hidden;
		background-position-x: 0%;
		background-position-y: 0%;
		background-repeat: repeat;
		background-size: auto;
	background-position: left;
	background-repeat: no-repeat;
	background-size: contain;
}


.diaglog-avances{
	position: absolute;
	top: -1000vh;
	z-index: 9;
	left: 20%;
	background: #222;
	border-radius: 10px;
	max-height: 80vh;
	width: 40vw;
	overflow: auto;
	transform: translate(-30%, -50%);
	box-shadow: 0px 0px 20px rgba(0,0,0,0.25);
	transition: top 0.3s cubic-bezier(0.07, 0.38, 0.21, 1.03);
	color:#7b7b7b!important;
}
.dialog-title{
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #464646;
}
.dialog-title h2{
	padding: 20px;
	margin: 0;
	color:rgb(4, 167, 143);
}
.close-btn{
	width: 60px;
	color: rgb(255, 255, 255);
	background: #d00;
	padding: 20px;
	box-sizing: border-box;
	cursor: pointer;
	text-align: center;
	font-size: 2em;
}
.diaglog-avances.show{
	top: 50%;
}
.dialog-content{
	box-sizing: border-box;
	padding: 20px;
}
.dialog-content form *{
	color: inherit;
}
.dialog-content form label{
	color: inherit;
	font-weight: 600;
}
.dialog-content input[type="button"]{
	color: #fff;
}

.details{
	color: rgba(51, 51, 51, 0.82);
	font-style: italic;
}

.button-content{
	cursor: pointer;
	border:1px solid rgba(0, 140, 120,0.2);
	border-radius: 8px;
	padding: 10px 20px;
	max-width: 20%;
	width: auto;
}
.button-content:hover{
	color:rgb(0, 140, 120);
	border:1px solid rgba(0, 140, 120,1);
	font-weight: 600;
}


.view_comments{
	cursor: pointer;
}

.view_comments:hover{
	font-weight: 600;
}

.btn, input[type="submit"], input[type="button"], button {
	position: relative;
	line-height: 20px;
	border: 1px solid #0ea961;
	border-radius: 8px;
	background: transparent;
	padding: 10px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	max-width: 600px;
	color: #0ea961;
	margin: 10px 0px;
	cursor: pointer;
	outline: none;
	overflow: hidden;
	z-index: 1;
	height: 40px!important;
}

.btn:focus, input[type="submit"]:focus, input[type="button"]:focus, button:focus{
	color: #fff;
	font-weight: 500;
	border-color: #0ea961;
	background: #0ea961;
}

.btn::before, input[type="submit"]::before, input[type="button"]::before, button::before{
	content: "";
	background: #0ea961;
	position: absolute;
	bottom:0;
	right: 0;
	left: 0;
	width: 100%;
	height: 0%;
	z-index: -1;
	border-radius: 80% 80% 0 0 ;
	transition: 0.4s ease-in-out;
}


.btn:hover, input[type="submit"]:hover, input[type="button"]:hover, button:hover{
	color: #fff;
	font-weight: 500;
	border-color: #0ea961;
	background: #0ea961;
}


.btn:hover ::before, input[type="submit"]:hover ::before, input[type="button"]:hover ::before, button:hover ::before{
	height: 180%;
}

.btn span {
	color: inherit;
}
.btn span {
	position: relative;
	z-index: 2;
}

.btn:hover span {
	color: #fff;
}

	.notification-container{
		width: 50%;
		background: #38d97b;
		height: 100%;
		
		/*clip-path: polygon(0% 0%, 90% 0, 100% 50%, 90% 100%, 0% 100%);*/
		border-radius: 0 60px 60px 0;
		box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.42);
	}
	
	.notification-container .fixed-text {
		padding: 40px;
		color: #fff;
		margin: 0 0 10%;
	}
	
	.notification-container .notification-content{
		padding: 40px;
		color: #fff;
		margin: 0 0 10%;
	}
	
	.result-notification {
		background: #f37322;
		border-radius: 4px;
		padding: 5px;
		text-align: left;
		/* box-shadow: 0 0px 8px rgb(109, 52, 16); */
		font-size: 0.8em;
		color: #fff;
		width: auto;
		margin: 10px 0;
	}
	
	.form-container{
		padding: 50px;
		
	}
	
	.board-notification, .account-settings{
		z-index: 99;
		position: absolute;
		top: 60%;
		background: #fff;
		border: 0.5px solid #d00;
		max-width: 500px;
		overflow: hidden;
		display: none;
		box-sizing: border-box;
		padding: 10px;
	}
	
	.notifier-popup{
		margin-right: 5px;
		height: 30px;
		width: 30px;
		color: #fff;
		text-align: center;
		background: #d00;
		border-radius: 50%;
		display: inline-flex;
		place-items: center;
		justify-content: center;
		
	}
	
	.notifier-wrapper{
		position: relative;
	}
	
	.notification{
		background: #e2f1ea;
		color: #222;
		margin-bottom: 4px;
		padding: 2px 5px;
		cursor: pointer;
	}
	
	.notification:hover {
		/*background: #f9f9f9;*/
		background: #FF5722;
		color: #fff;
	}
	
	#sms-notifier {
		width: 20px;
		height: 20px;
		font-size: 70%;
		position: absolute;
		left: 20px;
		top: 0px;
	}
	
	.chat-box {
		position: relative;
		min-height: 55vh;
		overflow: hidden;
		width: 100%;
	}
	.chat-wrapper {
		height: 20vh;
		overflow: hidden;
		overflow-y: auto;
		border-bottom: 1px solid #d3d3d3;
		margin-bottom: 5px;
		box-sizing: border-box;
	}
	.chat-avatar {
		width: 25px;
		margin: 0 5px 0;
	}
	
	.chat-container {
		border: 1px solid #f3f1f1;
		width: 70%;
		display: block;
		margin-bottom: 15px;
	}
	
	.chat-container-me {
		border: 1px solid rgb(207, 249, 214);
		width: 70%;
		margin-left: 25%;
		display: block;
		margin-bottom: 15px;
	}
	
	.chat-header,.chat-footer{
		background: #f3f1f1;
		padding: 5px;
	}

	.chat-footer{
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
		justify-content: center;
		align-items: center;
		gap: 12px;
	}
	
	.chat-container-me .chat-header{
		background: rgb(207, 249, 214);
	}
	
	.chat-content {
		padding: 10px;
		color: #3c4c3c;
	}
	
	.news{
		font-size: 0.8em;
		margin: 5px 0;
	}
	
	.expiries{
		background: #f7f7f7;
	}
	.empties{
		background: #f9f9f9;
	}
	
.headers{
	z-index: 9;
	box-sizing: border-box;
	padding: 5px 20px;
	position: relative;
	height: 8vh;
	/*border-bottom: 0.5px solid #42d88e;
	box-shadow: 0px 2px 2px rgba(58, 217, 126, 0.25);
	margin: 10px auto;*/
	background-image: -webkit-linear-gradient(45deg, rgb(22, 220, 55) 10%, #77d5f7 100%);
	color: #fff;
	box-shadow: 0 4px 5px 0 rgba(10, 241, 18, 0.14), 0 1px 10px 0 rgba(38, 220, 24, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.42);
	user-select: none;
}

.karibu{
	display: none;
}

.main-wrapper {
	z-index: 8;
    position: relative;
	background: #f2f5f9;
    min-height: 92vh;
	margin:0;
	box-sizing: border-box;
	padding: 10px 0 10px 20px;
}
	
	.avatar-container{
		cursor: pointer;
	}
	.avatar {
		width: 50px;
		border-radius: 50%;
		border: 1px solid #42d88e;
		margin: auto 5px;
		/* vertical-align: middle; */
	}
	
	.icone{
		width: 20px !important;
		display: inline-block;
		vertical-align: middle;
		margin: 0 20px 0 0;
	}

	table .icone{
		box-shadow: 0px 1px 5px -1px;
	}
	
.menu-wrapper{
	border-right: 1px solid #d0d7d1;
	height: 85vh;
	padding: 10px;
	color: #65696d;
	font-weight: bold;
	overflow-y: auto;
}
	
	.main-menu,.menu {
		margin: 0 0 20px 0;
		padding: 0 0 20px 0;
		list-style: none;
		border-bottom: 1px solid #d0d7d1;
	}
	
	.main-menu li, .menu li{
		position: relative;
		border-radius: 4px;
		padding: 10px;
		height: 20px;
		/*background-image: -webkit-linear-gradient(-90deg, rgb(255, 255, 255) 0%, #3ada7e7a 200%);*/
		
		transition: 0.4s ease-in-out;
		cursor: pointer;
		overflow: hidden;
		user-select: none;
	}
	
	.main-menu li.activate, .menu li.activate{
		/*background-image: -webkit-linear-gradient(-90deg, rgb(255, 255, 255) 0%, #eeeeee 40%);*/
		color: #0ea961;
		height: unset;
	}
	
	.main-menu li .flesh, .menu li .flesh {
		background: #7b7b7b;
		width: 10px;
		height: 10px;
		display: inline-block;
		vertical-align: middle;
		/* align-self: center; */
		clip-path: polygon(0% 0%, 0% 0, 100% 50%, 0% 100%, 0% 100%);
	}
	
	
	.main-menu li.activate .flesh, .menu li.activate .flesh {
		background: #0ea961;
		transform: rotate(90deg);
	}
	/*
	.link:hover > .submenu{
		transform: scaleY(1);
	}
	*/
	.menu > li > .submenu{
		list-style: none;
	}
	.menu > li > .submenu > li{
		margin: 5px auto;
	}
	
.content-wrapper {
    margin: 0 0 0 20px;
	padding: 0 10px;
	position: relative;
	height: 92vh;
	overflow: auto;
	overflow-x: hidden;
	color: #202124;
}
	.content-wrapper .content{
		transform: scale(0);
		display: none;
		position: relative;
		margin: 10px 0;
	}
	
	.content .titre{
		margin: 20px 0 30px 0;
		font-size: 120%;
		font-weight: 400;
		letter-spacing: .25px;
		margin-bottom: 12px;
		outline: none;
		padding-bottom: 4px;
		padding-top: 8px;
		cursor: pointer;
	}
	
	.container{
		max-width: 91%;
		background: #fff;
		box-shadow: 0px 0px 4px rgba(0,0,0,0.3);
		padding: 20px;
		border-radius: 5px;
	}
	
	.content.active{
		display: block;
		transform: scale(1);
	}
	
	.container table{
		width: 90%;
		margin: auto;
		border-collapse: collapse;
	}
		table tr td,table tr th{
			border: 0.5px solid silver;
			text-align: left;
			padding: 5px;
			vertical-align: sub;
		}
		
		table input{
			border: none;
		}
		tr:nth-child(even){
			background: white;
		}
		tr:nth-child(odd){
			background: #f1f1f1;
		}
		
		th {
			background: #d5e0e0;/*#e4eaea;*/
			color: #333;
		}
		
	.frame{
		display: block;
		position: relative;
	}
		
	.steps-container .steps, .content .subcontent{
		transform: scale(0);
		opacity: 0;
		position: absolute;
	}
	
	.steps-container .steps.activate,  .content .subcontent.activate{
		transform: scale(1);
		opacity: 1;
		min-width: 90%;
	}
	
	.steps-btn-container {
		margin-bottom: 30px;
		overflow: hidden;
		text-align: center;
		
		counter-reset: step;
	}
	
	.steps-btn-container li{
		list-style: none;
		color: #666;
		text-transform: uppercase;
		width: 33.33%;
		float: left; 
		position: relative;
		cursor: pointer;
	}
	.steps-btn-container li.active, .submenu li.active{
		color: #27AE60;
	}
	.submenu li.active{
		position: relative;
		overflow: hidden;
	}
	
	.submenu li:before{
		content: "";		
		width: 0;
		height: 2px;
		background: #27AE60;
		position: absolute;
		bottom: 0;
		cursor: pointer;
		z-index: 1;
		
		transition: 0.4s ease-in-out;
	}
	
	.submenu li.active:before{
		width: 60%;
	}
	
	
	.steps-btn-container li:before{
		content: counter(step);
		counter-increment: step;
		
		width: 20px;
		line-height: 20px;
		display: block;
		font-size: 10px;
		color: #fff;
		background: #666;
		border-radius: 3px;
		margin: 0 auto 5px auto;
		text-align: center;
		cursor: pointer;
		
		transition: 0.4s ease-in-out;
	}
	.steps-btn-container li:after{
		content: "";		
		width: 100%;
		height: 2px;
		background: #666;
		position: absolute;
		left: -50%;
		top: 9px;
		cursor: pointer;
		z-index: -1;
		
		transition: 0.4s ease-in-out;
	}
	
	.steps-btn-container li.active:before,.steps-btn-container li.active:after{
		background: #27AE60;
	}
	
	
	.tools-bar,.onglet-menu {
		list-style: none;
		margin: 0px;
		padding-top: 10px;
		padding-left: 40px;
		display: flex;
		justify-content: left;
		background: rgb(255, 255, 255);
	}
		.menu-bar > li, .tools-bar > li, .onglet-menu > a{
			padding: 6px;
			padding-left: 20px;
			padding-right: 20px;
			border-bottom: 1px solid #cecece;
			/*border-radius: 8px 8px 0px 0px;
			background: rgb(245, 244, 244);*/
			color: #333;						
			cursor: pointer;
			
		}
		
		.menu-bar li:hover, .tools-bar li:hover, .onglet-menu > a:hover{
			background: #fff;
			color: #333;
			border: 1px solid #cecece;
			border-top: 2px solid #cecece;
			border-bottom: none;
		}
		
	.menu-bar li.active{
		background: #fff;
		color: #333;
		border: 1px solid #cecece;
		border-top: 4px solid #cecece;
		border-bottom: none;
		font-size: 0,9em;
	}
	.tools-bar li.active, .onglet-menu a.active{
		background: #fff;
		color: #333;
		border: 1px solid #cecece;
		border-top: 4px solid #cecece;
		border-bottom: none;
		font-size: 0,9em;
		font-weight: bold;
	}
	
	.tools-bar li img,.onglet-menu a img, .action img, .button-content img{
		width: 20px;
		margin: auto 10px;
		vertical-align: middle;
		display: inline-block;
	}
	.action img:hover, .button-content img:hover{
		cursor: pointer;
		transform: scale(1.2); 
	}
	
	.ongletContent{
		z-index: 5;
		height: fit-content;
		/* position: absolute; */
		background: #fdfdfd;
		padding: 10px;
		height: auto;
		display: none;
		opacity: 0;
	}
	
	.actif{
		/*display: block;*/
		left: 0;
		opacity: 1;
		display: block;
		overflow-y: auto;
	}
	
	.box-content{
		position: absolute;
		top: 30vh;
		width: 50%;
		transform: translate(40%,-50%);
		padding: 40px 20px;
		border-radius: 3px;
		background: #fff;
		box-shadow: 1px 2px 8px rgba(0,0,0,0.4);
		z-index: 1;
	}
	
	.hide{
		position: absolute;
		right: -1000%;
	}
	
	.frame-wrapper{
		z-index: 999;
		position: fixed;
		top: 8vh;
		left: 0;
		width: 100%;
		height: 92vh;
		background: rgba(0,0,0,0.8);
	}
		.frame-wrapper .container{
			z-index: 9;
			background: #fff;
			margin: 5% 30%;
			height: auto;
			max-height: 75vh;
    		overflow: auto;
			width: 40%;
			border-radius: 5px;
			
		}
	
		.calltoaction{
			z-index: 9;
			position: absolute;
			top: -800%;
			width: 60%;
			margin-left: 10%;
			min-height: 30vh;
			max-height: 70vh;
			background: #fff;
			border: 1px solid #cecece;
			box-shadow: 0px 1px 4px rgba(0,0,0,0.25); 
		}
			.calltoaction > .header{
				height: 50px;
				background: #c0c0c06e;
				color: rgba(51, 51, 51, 0.82);
				display: flex;
				justify-content: space-between;
				align-items: baseline;
				padding: 5px;
			}
			.close-button{
				padding: 10px;
				cursor: pointer;
			}
			.close-button:hover{
				background: #e6430f;
				color: #fff;
			}
			
			.calltoaction > .action-content{
				padding: 10px;
				/*display: grid;
				grid-template-columns: 1fr 1fr;*/
			}
	
	.btn.btn-default {
		display: inline-block;
	}


.numbers {
    height: 100px;
    width: 100px;
    display: flex;
    place-items: center;
    place-content: center;
    position: relative;
	border-radius: 50%;
	margin: 10px 20px;
	box-sizing: border-box;
	overflow: hidden;
}

.static-numbers {
    width: 100%;
    text-align: center;
    background: cornflowerblue;
    color: #fff;
    height: 100%;
	border-radius: 50%;
    display: flex;
   	place-items: center;
    place-content: center;
    font-weight: 600;
    box-sizing: border-box;
}

.dynamic-numbers {
    height: 50%;
    width: 50%;
    display: flex;
    place-content: center;
    place-items: center;
    background: #673AB7;
    color: #e7eef3;
    text-shadow: 0px 2px 2px #262626;
    border-radius: 50%;
    position: absolute;
    z-index: 1;
	padding: 10px;
    opacity: 0.7;
}

.stats > .wrapper {
    display: flex;
    flex-direction: column;
    place-items: center;
    place-content: center;
	column-gap: 10px;
	margin-bottom: 10px;
}

.text-content > .small-wrapper{
	padding: 5px;
}

.text-content > .small-wrapper:nth-child(odd) {
    background: #f1f1f1;
}


.edition-wrapper {
    width: 60%;
    height: auto;
    min-height: 200px;
    background: #fff;
    box-sizing: border-box;
    padding: 0 20px;
    box-shadow: 0px 2px 5px;
	position: fixed;
	top: 0%;
	
	transition-timing-function: ease-in-out;
	z-index: 2;
}

.edition-header {
    color: #f7f7f7;
    place-items: center;
    padding: 0px 0px 0px 10px;
    background-image: -webkit-linear-gradient(45deg, rgb(22, 220, 55) 10%, #77d5f7 100%);
}

.edition-content {
    padding: 20px 10px;
}

.close-btn {
    background: #F44336;
    color: #fff;
    padding: 10px 20px;
	cursor: pointer;
}

.inlabo_animation{
	position: relative;
	animation-name: colors; /* nom de l’animation */
	animation-duration: 4s; /* durée totale */
	animation-iteration-count: infinite; /* nombre d’itérations */
	animation-timing-function: cubic-bezier(0.32, 0.51, 0.8, -0.28);
}
.outlabo_animation{
	position: relative;
	background: #fff;
	animation-name: colors2; /* nom de l’animation */
	animation-duration: 4s; /* durée totale */
	animation-iteration-count: infinite; /* nombre d’itérations */
	animation-timing-function: cubic-bezier(0.32, 0.51, 0.8, -0.28);
}

/*
input.inlabo_animation::before{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	height: 20px;
	width: 20px;
	
}
*/

.notification_btn {
    padding: 10px;
    margin: 0 5px;
    box-sizing: border-box;
    background: #f1f1f1;
	align-items: baseline;
	cursor: pointer;
	font-weight: 500
}

span.counter {
    background: orangered;
    padding: 5px;
    margin: 0 10px 0 0;
    height: 20px;
    width: 20px;
    place-items: center;
    place-content: center;
    display: inherit;
    border-radius: 50%;
    color: #fff;
    font-weight: 600;
}

@keyframes colors {
	20% {background: #fff; color: #0ea961;} /* opacité complète */
	80% {background: #0ea961; color: #fff;} /* retour à l’état initial */
}
@keyframes colors2 {
	40% {background: #fff; color: #f11;} /* opacité complète */
	100% {background: #f11; color: #fff;} /* retour à l’état initial */
}


.success_notification {
    background: #c1f9c1;
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #38d838;
    color: green;
}

.faillure_notification {
    background: #ffc8c4;
    border-radius: 8px;
    padding: 10px;
    border: 1px solid #f16c62;
    color: #d02619;
}

.entreprise_logo {
    flex: 0 0 30%;
}

hr.title-separator {
    margin: 5px 0;
}

.header-right-side {
    width: 100%;
    text-align: left;
    align-self: flex-end;
    /*background: linear-gradient(45deg, #16dc37, #75d5f4);*/
    height: 100%;
    display: grid;
	grid-template-columns: auto auto auto;
	align-items: flex-start;
	clip-path: polygon(2% 0, 100% 0%, 100% 100%, 0% 100%);
	padding: 10px 20px;
	/*color: #fff;*/
	color: inherit;
	font-size: smaller;
}

.header-right-side img{
	max-width: 60px;
	
}

#liste_chambres {
    border-left: 2px solid #38d97b;
    padding-left: 10px;
}

.data-table {
    row-gap: 15px;
}

#mon_header{
	display: none;
	border-bottom: 2px solid #38d97b;
	text-align: center;
	padding-bottom: 15px;
}
#mon_footer{
	display: none;
}
.small-logo {
    width: 60px;
    margin: 0 15px;
    max-height: 60px;
    overflow: hidden;
}

.mobile-menu-btn{
	display: none;
}


.page_btn{
	background-color: rgba(0,0,0,0.05);
	box-shadow: 0px 2px 4px rgba(0,0,0,0.4);
	padding: 10px;
	color: grey;
	border-radius: 50%;
	height: 30px;
	width: 30px;
	min-width: 30PX;
	min-height: 30PX;
	max-height: 30px;
	max-width: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin: 5px;
	font-size: 0.7em;
	flex-grow: 1;
}

.page_btn:hover{
	font-weight: inherit;
	background-color: rgba(0,0,0,0.2);
}

.login-main-wrapper{
	margin: 0;
	padding: 0;
	height: 100vh;
	width: 100vw;
	position: relative;

	font-family: "Helvetica Neue", monospace, Helvetica, Arial, sans-serif;
	font-size: 14px;
	line-height: 20px;
	color: #2F4F4F;
	overflow: hidden;

	background: url(../img/battle.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

	background-image: -webkit-linear-gradient(45deg, rgb(22, 220, 55) 10%, #77d5f7 100%);
}

.login-main-wrapper .main-container{
	position: relative!important;
    height: 100%!important;
    margin: 0!important;
    padding: 0!important;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    overflow-y: auto;
}

.login-form-container {
    /* position: absolute; 
    width: 50%;*/
    height: 80vh;
    background: #fff;
    /* transform: translate(50%, 35%); */
    box-shadow: 0px 10px 20px rgb(0 0 0 / 30%);
}



/* For smartphones */
@media screen and (max-width: 800px) {	
	.logo {
		width: 60px;
	}
	
	.login-form-container {
		display: block;
		/* position: absolute; */
		width: 80%;
		height: auto;
		background: #fff;
		/* transform: translate(5%, 5vh); */
		box-shadow: 0px 2px 8px rgb(0 0 0 / 30%);
	}
	
	.notification-container {
		width: 100%;
		background: #38d97b;
		height: 26%;
		clip-path: none;
		font-size: 0.7em;
		border-radius: 0 0 60px 60px;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	
	
	.notification-container .fixed-text {
		padding: 5px;
		color: #fff;
		margin: 0px;
	}

	.notification-container .notification-content {
		padding: 0 40px;
		color: #fff;
		margin: 0 0 5%;
		position: fixed;
		bottom: -40px;
		z-index: -1;
		left: 0;
		text-align: center;
		display: flex;
		place-content: center;
		place-items: center;
		place-self: center;
		width: 100%;
		box-sizing: border-box;
	}
	
	.form-container {
		padding: 10px;
	}
	
	.steps-container .steps.activate, .content .subcontent.activate {
		min-width: 90%;
		overflow: auto;
	}

	.container{
		overflow: auto;
	}

	.headers {
		min-height: 8vh;
		box-sizing: content-box;
		padding: 5px;
    	font-size: smaller;

		place-content: end;
		align-items: center;
	}
	.right-side {
		display: inline-flex;
		align-items: baseline;
		justify-content: center;
		font-size: 0.8em;
	}

	.main-wrapper {
		z-index: 8;
		position: relative;
		background: #f7f7f7;

		min-height: 70vh;
		margin: 0;
		box-sizing: border-box;
		padding: 0px;
		overflow: auto;
		/*max-height: 82vh;*/
	}

	.display-grid {
		display: block;
	}

	.flex {
		flex-wrap: wrap;
	}

	.headers {
		min-height: 12vh;
		box-sizing: content-box;
		padding: 10px;
		font-size: 12px;
		height: max-content;
	}

	.icone {
		width: 20px !important;
		display: inline-block;
		vertical-align: middle;
		margin: 0 5px 0 0;
	}

	.menu-wrapper {
		position: absolute;
		top: -100vh;
		left: 0;
		z-index: 8;
		background: #f9f9f9;
		width: 100%;
		box-shadow: 0px 2px 8px;
		box-sizing: border-box;
	}
	.menu-wrapper.scroll{
		top: 6vh;
	}

	.mobile-menu-btn {
		display: block;
		z-index: 9;
		text-align: center;
		width: 100%;
		padding: 10px;
		background: #373737;
		color: #fff;
		font-weight: bold;
		box-sizing: border-box;
		box-shadow: 0px 2px 8px rgba(0,0,0,0.4);
		cursor: pointer;
	}

	.container {
		max-width: 100%;
		min-height: 60vh;
		/*max-height: 90vh;*/
		height: auto;
		padding: 10px;
		overflow: auto;
		box-sizing: border-box;
	}

	.steps-container .steps, .content .subcontent {
		box-sizing: border-box;
		width: 100%;
		max-height: 80vh;
		overflow: auto;
	}

	.tools-bar, .onglet-menu {
		flex-wrap: wrap;
		padding: 0 10px;
	}

	.input-container > label, .textarea-container > label, .select-container label {
		display: none;
	}

	.ongletContent{
		margin-bottom: 50px;
	}

	.content-wrapper{
		margin: 0;
	}

	hr {
		border: 0.5px solid #38d97b;
		margin: 10px 0 10px;
	}

	.form-container h1 {
		font-size: 1.2em;
	}
}