
/* NAVIGATION */
nav ul li.navigation {
	float: left;
	
}
nav ul.navigation {
	list-style-type: none;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #000;
	width: initial;
}
nav ul li a.navigation {
	display: inline-block;
	color: #fff;
	text-align: center;
	vertical-align:middle;
	height:70px;
	width:200px;
	text-decoration: none;
	padding:20px 0px;
	font-size:26px;
	font-weight:bold;
}
nav ul li a.logo {
	padding:8px;
	width:300px;
}

nav ul li a:hover.navigation {
	background-color: #0CB507;
	color: #FFFFFF;
}
form.button{
	padding: 5px 25px;
}
form.right{
	float:right;
}

header.top{
	width: auto;
	background:black;
}
nav ul li img.logo{
	height:55px;
}

/* FOOTER */
body{
	font-family:Arial;
	display:flex;
	min-height:100vh;
	flex-direction:column;
	margin:0;
	background: rgb(238,174,202);
	background: radial-gradient(circle, rgba(238,174,202,1) 0%, rgba(234,175,203,1) 4%, rgba(148,187,233,1) 100%);
}
footer.pagefooter{
	margin-top:auto;
	background:#000000;
}
div.right{
	float:right;
	width: 600px;
}
div.left{
	float:left;
	width: calc(100% - 600px);
}
p.footer{
	margin: 10px 50px 10px;
	text-align: right;
	color:#fff;
}
img.footer{
	margin: 10px 50px 10px;
}

aside {
    padding-left: .5rem;
    margin-left: 40%;
    float: right;
}




/* MOSAIQUE DE FILM */
div.scroller {
	overflow-x: scroll;
	display: flex;
}
div.scroller::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);
	background-color: #F5F5F5;
	border-radius: 10px;
	background-color: transparent;
}

div.scroller::-webkit-scrollbar
{
	width: 10px;
	background-color: transparent;
}

div.scroller::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	background-image: -webkit-gradient(linear,
									   40% 0%,
									   75% 84%,
									   from(#4D9C41),
									   to(#19911D),
									   color-stop(.6,#54DE5D))
}

div.gallery {
	border: 1px solid #ccc;
	height:33em;
	box-shadow: 10px 10px 5px gray;
}

div.gallery:hover {
 	border: 1px solid #777;
}

div.gallery img {
	width: 100%;
	height: 90%;
}

div.desc {
	padding: 0px 10px;
	text-align: center;
	vertical-align: middle;
	line-height:22px;
}

img.detailed{
	float:left;
	height:20em;
	width:14em;
	padding:20px;
	object-fit: contain;
}

div.detailed{
	min-height:20em;
	border: 1px solid #ccc;
	box-shadow: 10px 10px 5px gray;
	
	color: #fff;
	
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
div.detailed:hover {
	border: 1px solid #777;
}

* {
	box-sizing: border-box;
}

.responsive {
	padding: 10px;
	display: inline-block;
	min-width: 20em;
	width: 20em;
	vertical-align: middle;
}

article.detailed {
	padding: 10px;
	display: inline-block;
	width: 50em;
	vertical-align: middle;
	text-align:left;
}



.clearfix:after {
	content: "";
	display: table;
	clear: both;
}


/* JOLIS INPUT*/
input[type=text], input[type=password], select {
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
}

input[type=submit] {
	background-color: #0CB507;
	color: white;
	padding: 14px 20px;
	margin: 8px 0;
	border: none;
	border-radius: 4px;
	cursor: pointer;
}

input.main {
	width:50%;
}

input[type=submit]:hover {
	background-color: #0C9908;
}

.error{
	color: #AA0000;
}

/* LA CHECKBOX */
/* The container */
.chekboxcountain {
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	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 checkbox */
.chekboxcountain input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

/* Create a custom checkbox */
.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
}

/* On mouse-over, add a grey background color */
.chekboxcountain:hover input ~ .checkmark {
	background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.chekboxcountain input:checked ~ .checkmark {
	background-color: #0CB507;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.chekboxcountain input:checked ~ .checkmark:after {
	display: block;
}

/* Style the checkmark/indicator */
.chekboxcountain .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* CORPS DE PAGE*/
section{
	margin: 10px 50px 20px;
}
h1{
	text-align:center;
}
div.center{
	text-align:center;
}

/* LE RADIOBUTTON */
/* The container */
.radiocountain {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  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 */
.radiocountain input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.radiobtn {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.radiocountain:hover input ~ .radiobtn {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.radiocountain input:checked ~ .radiobtn {
  background-color: #0CB507;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.radiobtn:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.radiocountain input:checked ~ .radiobtn:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radiocountain .radiobtn:after {
 	top: 9px;
	left: 9px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

/*Flêches pour changer de pages*/
.arrow{
	filter: drop-shadow(0 2mm 2mm);
}
.active:hover{
	filter: drop-shadow(0 2mm 4mm);
}

/*div des paramètres*/
div.param{
	width:500px;
	margin:auto;
	border: 1px solid #ccc;
	box-shadow: 10px 10px 5px grey;
	border-radius: 30px;
}

img.stat{
	filter: drop-shadow(0 2mm 4mm);
	margin:50px;
}