html{
	margin:0px;
	padding:0px;
	background-color: rgb(173, 173, 162);
	width: 100%;
	height: 100%;
	margin: 0;
	font-size: 16px;
	font-family: sans-serif;
}

body{
	margin:0px;
	text-align: center;
	background-image: url('/img/components/background_white.jpg');
	background-size: cover;
	background-position: top center;
}

body.background_black {
	background-image: url('/img/components/background_black_repeat.jpg');
	background-size: 100%;
	background-repeat: repeat;
	color: white;
	background-attachment: fixed;
}
body.background_black .main-logo > img {
	filter: invert(1);
}

header{
	margin-left: 60px;
}
main {
	margin-left: 60px;
}
/**************PAGE AFFICHAGE DES PHOTOS*/
.photo{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	background-color: rgb(173, 173, 162);
	padding-top:20px;
}
.photo img{
	display: inline-block;
	margin: 4px;
}
.info{
	flex : 1 1 200px;
	display:inline-block;
	margin-right:10px;
}

.v_photo{
	flex : 0.35 2 600px;
	width: 400px;
}
.h_photo{
	flex : 0.9 1 800px;
	width: 800px;
}
#onload{
	display:none;
	position:absolute;
	width:15%;
	left:25%;
}

@media (max-width: 980px) {
	.photo img{
		max-width: 98%;
	}
	.info{
		padding: 3px;
	}
}
/* titre photos*/
.banner_title{
	background:
	radial-gradient(black 15%, transparent 16%) 0 0,
	radial-gradient(black 15%, transparent 16%) 8px 8px,
	radial-gradient(rgba(255,255,255,.1) 15%, transparent 20%) 0 1px,
	radial-gradient(rgba(255,255,255,.1) 15%, transparent 20%) 8px 9px;
	background-color:#282828;
	background-size:16px 16px;
	width:100%;
	color:white;
	padding: 5px;
	text-align: center;
	margin-top: 12px;
	margin-bottom: 7px;
	display: inline-block;
}
.banner_title a{
	color:rgb(216, 216, 216);
	text-decoration: none;
}
div.banner_title > *{
	display: inline-block;
	font-size: 33px;
	line-height: 100%;
}
.right_handle{
	float:right;
}
.left_handle{
	float:left;
}
.banner_title a:hover{
	color:white;
}

#price_choice{
	border-radius: 23px;
	background-color: #b1b1b1;
	padding-top: 10px;
}
#price_choice > select{
	background-color: rgb(180, 180, 180);
	border-radius: 4px;
}

#price_choice > *{
	display: inline-block;
}

#paiement{
	border-radius: 23px;
	background-color: #d3d3d3;
	padding:5px;
}




/**************Bouton*/
.button{
	text-align: center;
	color:white;
	display: block;
	cursor: pointer;
	border-radius: 23px;
	background: #0070ba;
	position: relative;
    width: 100%;
    box-sizing: border-box;
    border: none;
    overflow: hidden;
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: none;
    font-weight: 500;
	margin: 10px 0px;
	padding: 14px 0px;
	transition: background-color 1s;
	max-width: 750px;
}

.button:hover {
	color:white;
	background: #5a94bb;
	text-decoration: none;
}

/**
 * 
 * Table basic style
 * 
 */

table {
	border-collapse: collapse;
  }
   th {
	background: #ccc;
  }
  
  th, td {
	border: 1px solid #ccc;
	padding: 8px;
  }
  
  tr:nth-child(even) {
	background: #efefef;
  }
  
  tr:hover {
	background: #d1d1d1;
  }

/**
  *
  * Cart Icon
  *
*/
.cart{
	width: 60px;
	height: 60px;
	text-align: center;
	position: fixed;
	bottom: 0px;
	left: 0px;
	z-index: 500;
	font-size: 2.5rem;
	color: rgb(207, 207, 207);
}
.cart:hover{
	color: white;
}
