#Button_right
{
	scroll-behavior: smooth;
	width: 100px;
	height: 50px;
	background-color: white;
	border-top-right-radius: 20px;
	border-bottom-right-radius: 20px;
	position: fixed;
	top: 75%;
	z-index: 5;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	display: flex;

	animation-duration: 0.3s;
  	animation-name: fadeINR;
  	animation-timing-function : ease-in;
  	transition: 0.5s;
}
#form_matricule
{
	margin-top: 5%;
	margin-left: 10%;
	transition: 1s;
}
#form_matricule:hover
{
	transform: translateX(-5px);
}
#matricule
{
	outline: none;
	border-top : hidden;
	border-left : none;
	border-right : none;
	border-bottom : 2px solid grey;
	transition: 1s;
	animation-timing-function: ease-in;
}
#matricule:hover
{
	opacity: 0.5;
}

#table_matricule
{
	margin-left: 10%;
	padding-left: 10px;
	margin-bottom: 20px;
}

th, td
{
	font-size: 11px;
	padding-right: 20px;
	border-bottom: 1px solid grey;
}
#table_matricule
{
	transition: 1s;
	animation-timing-function: ease-in-out;
}
#table_matricule:hover
{
	color: #D5596F;
	transform: translateX(-5px);
}
#matricule_submit
{
	margin-top: 10px;
	background-color: white;
	border: 1px solid grey;
}

@keyframes fadeINR
{
	from
	{
		opacity: 0;
		transform: translateX(-30px);
	}
	to
	{
		opacity: 1;
		transform: translateX(0px);
	}
}

#Button_right:hover
{
	width: 120px;
}

#design
{
	width: 10px;
	height: 50px;
	background-color: rgba(25, 151, 157, 1.0);
	position: relative;
	left: 0px;
}

#info_butt
{
	margin-left: 10px;
	margin-top: 3px;
	font-weight: bold;
	font-size: 0.9em;
}


/*Message Central*/

#message
{
	display: block;
	overflow: auto;
	max-width: 400px;
	max-height: 500px;
	background-color: white;
	border-radius: 10px;
	padding-top: 20px;
	top: 20%;
	left: 12%;
	position: fixed;
	z-index: 10;
	box-shadow: 5px 7px 15px rgba(0, 0, 0, 0.2);

	animation-name: FadeINM;
	animation-duration: 0.5s;
	transition: 0.2s;
}

#message:hover
{
	transform: translateY(-5px);
}

#message_2
{
	overflow: auto;
	max-width: 400px;
	max-height: 500px;
	background-color: blue;
	border-radius: 10px;
	position: relative;
	padding-top: 20px;

	animation-name: FadeINM;
	animation-duration: 0.5s;
	transition: 0.2s;
}

#message_2:hover
{
	transform: translateY(-5px);
}
#message_3
{
	overflow: auto;
	max-width: 400px;
	max-height: 500px;
	background-color: green;
	border-radius: 10px;
	position: relative;
	padding-top: 20px;

	animation-name: FadeINM;
	animation-duration: 0.5s;
	transition: 0.2s;
}

#message_3:hover
{
	transform: translateY(-5px);
}
@keyframes FadeINM
{
	from
	{
		opacity: 0;
		transform: translateX(-10px);
	}
	to
	{
		opacity: 1;
		transform: translateX(0px);
	}
}


#img_button
{
	position: sticky;
	top: 0px;
	left: 15px;
	display: block;
	opacity: 1;
	transform: rotateZ(0deg);
	z-index: 6;
	transition: 0.2s;
	cursor: pointer;
}

#img_button:hover
{
	transform: rotateZ(180deg);
}

/*Contenu du Message*/
#title
{
	margin-left: 10%;
	font-size: 2em;
	font-weight: bold;
	cursor: default;
	margin-bottom: 5px;
	padding-bottom: 5px;
}

#sub_title
{
	color: rgb(49, 128, 166);
	margin-left: 10%;
	font-size: 1em;
	font-weight: bold;
}

.text_style
{
	font-size:15px;
	text-align: justify;
	font-family: calibri;
	margin-left: 7%;
	margin-right: 5%;
	/* margin-right: 12%; */
}

@keyframes showHideDot {
  0% { opacity: 0; }
  50% { opacity: 1; }
  60% { opacity: 1; }
  100% { opacity: 0; }
}

/*Container*/
#Container
{
	width: 1200px;
	height: 500px;
	display: flex;
	position: relative;
	left: 0px;

	transition: 0.5s;
	animation-timing-function: ease-in-out;
}

#BoxC
{
	/*overflow: hidden;*/
	display: none;
	max-width: 400px;
	max-height: 600px;
	top: 20%;
	left: 12px;
	position: fixed;
	z-index: 15;
}

#Previous
{
	width: 30px;
	height: 30px;
	position: relative;
	left: 2%;
	top: 50%;
	z-index: 10;
	cursor: pointer;
}
#Next
{
	width: 30px;
	height: 30px;
	position: relative;
	left: 80%;
	transform: rotateZ(180deg);
	top: 50%;
	z-index: 10;
	cursor: pointer;
}