body {
  transition: background-color .5s;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-right: 0px;
  margin-left: 0px;  
}
.redalert { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10pt; color: #FF6633; font-weight: bold}

 select, option{
  font-family:monospace, monospace;
 }

* {box-sizing: border-box}

.skills {
  text-align: right;
  padding-top: 2px;
  padding-bottom: 2px;
  color: white;
  border: 2px solid #ccc;
  border-radius: 9px;
  box-sizing: border-box; 
}


html{
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	 background-color: #ffffff;
	 color: black ;
}

table, th, td {
  border-collapse: collapse;  
}

div {
    color: inherit;   
}


h1 {
     font-size: 60px;
	 margin: 0;
     padding-bottom: 20px;
	 padding-left: 8px;
	 padding-right: 8px;
	 padding-top: 20px;
	 color: inherit;
}

h2 {
     font-size: 30px;
	padding-top: 20px;
    padding-left: 20px;
	color: 000000;
}

h3 {
    font-size: 25px;	
    color: FFFFFF;
}

h3:hover {
  background-color: var(--cMenuBgActTx);
}

h4 {
    font-size: 30px;
    padding: 0px;
    color: red;
}

h5 {
    font-size: 20px;
	 margin: 0;
     padding-bottom: 20px;
	 padding-left: 30px;
	 padding-right: 8px;
	 padding-top: 10px;	
	 font-weight: bold;
}

.title {
	font-size: 18px;
	margin: 0px;
	height: 40px;	
}

p {
    font-size: 18px;
    padding: 10px;
	line-height: 100%; 
	color: gray;
}


#entete {
    border: 0px;
    padding: 0px;

}

/* ===========================
   ========= input text and validate button ========== 
   =========================== */
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #D4D4D4;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #D4D4D4;
}

::-ms-input-placeholder { /* Microsoft Edge */
    color: #D4D4D4;
}

input[type=text], input[type=password],input[type=mail], select, textarea {  
    width: 100%;
    font-size: var(--cMenuTxSize);
    padding: 5px;
    border: 2px solid #ccc;
    border-radius: 9px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 18px;
	padding-right: 5px;
    resize: vertical;
}

input[type=number] {  
    width: 70px;
	text-align: right;
    font-size: var(--cMenuTxSize);
    padding: 5px;
    border: 2px solid #ccc;
    border-radius: 9px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 18px;
    resize: vertical;
	
	
}

input[type=date] {  
    width: 50%;
    font-size: var(--cMenuTxSize);
    padding: 5px;
    border: 2px solid #ccc;
    border-radius: 9px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 18px;
    resize: vertical;
}


input[type=submit] {
    font-size: var(--cMenuTxSize);
    background-color: var(--cMenuBgActTx);
    color: white;
    padding: 8px var(--cMenuTxSize);
	margin-top: 8px;
    border: none;
    border-radius: 9px;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: var(--cMenuBgTx);
}

.container {
    font-size: var(--cMenuBgActTx);
    padding: 10px;
    border-radius: 9px;  
}


/* ===========================
   ========= Radio butt ====== 
   =========================== */

/* The container */
.container {
  display: block;
  position: relative;
  padding-left: 45px;
  padding-top: 10px;
  margin-top: 0px;
  margin-bottom: 0px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 10;
  left: 10;
  height: 25px;
  width: 25px;
  background-color: #f2f2f2;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a green background */
.container input:checked ~ .checkmark {
  background-color: var(--cMenuBgActTx);
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

button:hover {
  opacity: 0.8;
}

/* Extra styles for the cancel button */
.cancelbtn {
  width: auto;
  
    font-size: var(--cMenuTxSize);
    background-color: #f44336;;
    color: white;
    padding: 8px var(--cMenuTxSize);
	margin-top: 8px;
    border: none;
    border-radius: 9px;
    cursor: pointer;  
  
}

.containerlogin {
  padding: 16px;
}

span.psw {
  float: right;
  padding-top: 16px;
}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  padding-top: 60px;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button (x) */
.close {
  position: absolute;
  right: 25px;
  top: 0;
  color: #000;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: red;
  cursor: pointer;
}

/* Add Zoom Animation */
.animate {
  -webkit-animation: animatezoom 0.6s;
  animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
  from {-webkit-transform: scale(0)} 
  to {-webkit-transform: scale(1)}
}
  
@keyframes animatezoom {
  from {transform: scale(0)} 
  to {transform: scale(1)}
}

/* Change styles for span and cancel button on extra small screens */
@media screen and (max-width: 300px) {
  span.psw {
     display: block;
     float: none;
  }
  .cancelbtn {
     width: 100%;
  }
}

/* ===========================
   ========= Menu     ======== 
   =========================== */

/* Style pour le menu */
.topnav {
  overflow: hidden;
  background-color: var(--cMenuBg);
}

.topnav a {
  float: left;
  display: block;
  color: var(--cMenuTx); 
  text-align: center;
  padding: 10px 10px;
  text-decoration: none;
  font-size: var(--cMenuTxSize);
}

.topnav a:hover {
  background-color: var(--cMenuBgTx);
  color: white;
}

.active {
  background-color: var(--cMenuBgActTx);
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 900px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;	
  }
}

@media screen and (max-width: 900px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }

}

/* ===========================
   ========= Alert   ===== 
   =========================== */
   
.alert {
    padding: 20px;
    font-size: 18px;
    background-color: #f44336;
    color: white;
	border-radius: 40px;
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;	
    width: 80%;
    margin: 1rem 1rem 1rem 1rem;
	margin-left: 1%;
	margin-right: 1%;
	margin-top: 1%;
	margin-bottom: 0%; 	
	
}

.closebtn {
    margin-left: 15px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    float: right;
    line-height: 48px;
    cursor: pointer;
    transition: 1s;
}

.closebtn:hover {
    color: black;
}

/* ===========================
   ========= Side nav   ===== 
   =========================== */
.sideactive {
  background-color: var(--cMenuCatTx);
  color: var(--cMenuCatActTx);
}
   
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: var(--cMenuCatBg);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 50px;
}

.sidenavtext {
  font-size: var(--cMenuCatTxSize);
  font-weight: bold;
  background-color: var(--cMenuCatBg);
  color: var(--cMenuCatTx);   
  padding-left: 8px;  
  padding-bottom: var(--cMenuCatTxSize);
}

.sidenav a {
	padding-bottom: 5px;
	padding-left: 12px;
	padding-right: 5px;
	padding-top: 5px;
	text-decoration: none;
	font-size: var(--cMenuCatTxSize);
	color: var(--cMenuCatTx); 
	display: block;
	transition: 0.3s;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 52px;
  margin-left: 30px;
}

#main {
  transition: margin-left .5s;
  padding: 0px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: var(--cMenuCatTxSize);}
}

/* ===========================
   ========= Side nav drop down   ===== 
   =========================== */

/* Style the sidenav links and the dropdown button */
.dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: var(--cMenuCatTxSize);
  color: var(--cMenuCatTx); 
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}

/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover {
  color: var(--cMenuCatActTx);
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
  display: none;
  background-color: var(--cMenuCatBg);
  padding-left: 20px;
}