/*COLORS*/
/* 	
	vert = 		#46AE4E
	jaune =		#D5DA2E
	rose =		#46AE4E

/**/	

 
body {
	
	font-family: helvetica;
	font-style: normal;
}

* {
	box-sizing: border-box;	border:0;
}
a {
	color:#46AE4E;
}
a[href^="http"]::after {
	content: url("images/link.png");
	 margin-left: 5px;
}

a:hover {
	color:hotpink;
}

hr {
  border: none;
  border-top: 3px double #f000f0;
  color: #f000f0;
  overflow: visible;
  text-align: center;
  height: 5px;
}

hr::after {
  background: #fff;
  content: '***';
  padding: 0 8px;
  position: relative;
  top: -7px;
}

#container {
	/**/margin: 25px;/**/
	/**/box-shadow: inset 0 -30em 30em rgba(0, 0, 0, 0.1), 0 0 0 0px rgb(255, 255, 255),	0.3em 0.3em 1em rgba(0, 0, 0, 0.3);/**/
	border:0;
}

#header {
	padding: 20px;
	text-align: left;
	background-color: #fff;
}

#header img {
   max-width: 100%;
   height: auto;
}
#header h1,h3 {
	color:#f000f0;
}

#header h2 {
	color:#000;
	margin-bottom:-20px;
	padding-bottom:0;
}

/* MENU */

nav 
{
    margin: 1px auto;
    width: 50%;
    height: 50px;
    background: #46AE4E;
}
 
nav .main_pages 
{
    display: flex;
    justify-content: space-around;
    align-items: center;
}
 
nav .main_pages a 
{
    width: 20%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    text-decoration: none;
    color: #fff;
	background: #46AE4E;
}
 
nav a:hover 
{
    background: #D5DA2E;
}

label, #toggle
{
    display: none;
}
 
@media all and (max-width: 991px)
{
    nav
    {
		z-index : 10;
        height: 54px;
    }
 
    nav .main_pages 
    {
        display: none;
        flex-direction: column;
        height: 150px;
    }
 
    nav .main_pages a {
        width: 50%;
    }
 
   nav label 
    {
        width: 30px;
        display: flex;
		justify-content: center;
        align-items: center;
        margin: 0 auto;
        font-size: 40px;
        color: white;
        cursor: pointer;
    }
 
    #toggle:checked + .main_pages {
        display: flex;
		z-index:10;
    }
}

/* Create two columns that floats next to each other */
.column {
	float: left;
	padding: 10px;
	height:100%;
	z-index:1;
}

.colleft {
	width: 70%;
	height:100%;
}

.colright {
	width: 30%;
	height:100%;
}

/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;
}

#footer {
	padding: 20px;
	text-align: center;
	background-color: #ddd;
}


#login {
	margin: 0 auto;
	border: 2px solid #000;
	width:360px;
	padding:20px;
	border-radius: 20px;
}

#login label{
	display:block;
	width:100%
}

.input {
	border:1px solid #46AE4E;
	padding:5px;
	margin:5px 0 5px 0;
	border-radius: 5px;
	text-align:center;
}

.button{
	background-color: #46AE4E; /* Green */
	border: none;
	color: white;
	padding: 10px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	transition-duration: 0.4s;
	cursor: pointer;
	border-radius: 5px;
}

.button:hover {
  background-color: #D5DA2E;
  color: #000;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
	.column {
		width: 100%;
	}
	.responsiveHidden {
		display:none;
	}
	#login {
		width:90%;
		border:0;
	}
	.eye {
		width:10px;
	}
	table{
		padding:1px;
		font-size:11px;	
	}
	
}


.form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

table {
  border-collapse: collapse;
  padding:5px;
  margin-bottom: 25px;
  background-color: #fff;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
    padding:15px;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
.text-danger {
  color: #dc3545 !important;
}
.success {
  color:#1cb44a!important;
  font-size: x-large;
  font-weight: bolder;
}

.menu {
  padding: 15px;
  background-color: #46AE4E;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  border-radius: 15px;
}
.menu.offert {
  background-color: #dc3545;
}
input::placeholder {
  font-weight: bold;
}

.pack {
	padding:5px;
	border: 2px solid #f000f0;
	margin:5px;
	float:left;
}


.hidden {
	display:none;
}

.center {
	text-align:center;
	vertical-align:middle;
}

.clearer {
	clear:both;
}
