*
{
	box-sizing: border-box;
}

BODY
{
	font-family: arial;
	font-size: 14px;
	color: #3B3B3B;
	background-image: url(../img/image5.jpeg);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
}
h1
{
	font-family: arial;
	font-size: 20px;
	color: #E5458A;
}
#total
{
	margin: 20px 0 40px auto;
	padding: 0;
	width: 400px;
	list-style: none;
	text-align: right;
	border: 1px solid #CCC;
}
#total th,
#total td
{
	margin: 0;
	padding: 10px;
	border: 0;
	border-bottom: 1px solid #CCC;
	font-size: 15px;
	height: 35px;
}
#total tr:last-child th,
#total tr:last-child td
{
	border: 0;
	border-top: 2px solid #000;
	font-size: 20px;
}


table > tbody > tr > td
{
	border: 1px solid #CCC;
	padding: 5px;
}

form
{
	display: inline;
}
input[type='button'], 
input[type='submit'], 
input[type='button']:active, 
input[type='submit']:active, 
.button, .button:active
{
	display: inline-block;
	margin: 10px;
    padding: 11px 23px;
    background-color: #E5458A;
    border: 0;
    border-radius: 3px;
    
    color: #FFF;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 14px;/*DEFAUT*/

	transition: ease-in-out background-color 200ms;

    cursor: pointer;
}
input[type='button']:hover, 
input[type='submit']:hover, 
.button:hover
{
	background-color: #F873AC;
	text-decoration: none!important;
}
input[type='text'], 
input[type='password'],
select
{
	border-radius: 2px;
	border: 1px solid #CCC;
	margin: 2px 0;
	outline: none;
	padding: 6px;
}
select
{
	padding: 4px 6px;
}
textarea
{
	padding: 6px;
	border: 1px solid #CCC;
	border-radius: 2px;
}
input[type='text']:focus, 
input[type='password']:focus, 
textarea:focus
{
	outline: none;
	border: 1px solid #0D225D;
}
fieldset
{
	margin: 0;
	padding: 0;
	border: 0;
}
fieldset > legend
{
	text-align: center;
	font-weight: bold;
	font-size: 16px;
}
fieldset > ul
{
	margin: 0;
	padding: 0;
	list-style: none;
	font-size: 0;
}
fieldset > ul > li
{
	display: inline-block;
	margin: 0;
	padding: 0;
	width: 50%;
	font-size: 14px;
}
fieldset > ul > li > .input
{
	display: block;
	padding: 5px;
	width: 100%;
	font-size: 0;
	text-align: left;
}
fieldset > ul > li > .input > label
{
	font-size: 14px;
}
fieldset > ul > li > .input > div > input,
fieldset > ul > li > .input > div > select,
fieldset > ul > li > .input > div > textarea
{
	display: inline-block;
	width: 100%;
	font-size: 14px;	
}
fieldset > ul > li.double
{
	width: 100%;
}


/*Notifications*/
.notification
{
	padding: 10px 20px;
    border-radius: 3px;
    color: #FFF;
    text-align: left;
    
    margin: 10px;
}
.notification > span
{
	display: inline-block;
	vertical-align: middle;
	width: calc(100% - 40px);
}
.notification.validation
{
	background-color: #37bc9b;
}
.notification.information
{
	background-color: #5D9CEC;
}
.notification.erreur
{
	background-color: #F05050;
}
.notification.alert
{
	background-color: #f0bd50;
}