
/* Global */
html, body {
    font-family: "Comic sans MS",sans-serif;
    font-size: 17px;
    color: white;	
	background-color: #ffffff;
	background-image: url(/statics/img/background.jpg);  
}
.header {
    background-color: #000000;
    color: #ffffff;
    margin: 0px 0px 0px 0px;
    padding: 0px;
    opacity: 1;
}
.lien {
	color: #ffffff;
}
.blockscroll {
	overflow: hidden; 
	max-height: calc(100vh - 20px);
}
@media screen and (min-width: 750px) {
	.blockscroll {
		max-height: calc(100vh - 20px);
	}
}
.aside {
    background-color: #6e6e6e;
    padding: 15px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    opacity: 0.5;
}
.aside a {
	text-decoration: none;
	background-color:orange;
}
.message {
	position: fixed;
	top: calc(100vh / 3);
	width: calc(100% - 15px);
	background-color: grey;
	color: #ffffff;
	padding: 10px;
	opacity: 0.9;
	z-index: 10;
	text-align: center;
}
.messageError {
	position: fixed;
	top: calc(100vh / 3);
	width: calc(100% - 15px);
	background-color: red;
	color: #ffffff;
	padding: 10px;
	opacity: 0.9;
	z-index: 10;
	text-align: center;
}
.trace {
	width: calc(100% - 15px);
	background-color: green;
	color: #ffffff;
	padding: 10px;
	opacity: 0.9;
	z-index: 10;
	overflow-wrap: break-word;
	text-align: left;
}
.footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center; 
	margin: 0px 0px 0px 0px;
	opacity: 1;
	width: 100%;
	ZZheight: 1000px;
}
.footer a {
	color: #ffffff;
}

/* Global responsive */
* {
    box-sizing: border-box;
}
.row::after {
    content: "";
    clear: both;
    display: table;
}
[class*="col-"] {
    float: left;
    padding: 5px;
}
[class*="col-"] {
    width: 100%;
}
@media only screen and (min-width: 750px) {
    /* For desktop: */
    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
}

/* Responsive header menu */
.topnav {
	overflow: hidden;
	background-color: #000000;
	min-height:80px;
	align-content: center;
}
.topnav a {
	float: left;
	display: block;
	color: #ffffff;
	text-align: center;
	line-height: 50px;
	height: 50px;    
	padding: 0 16px;
	text-decoration: none;
	font-size: 100%;
}
.topnav a img {
	max-height: 50px; 
}
.topnav a form button img {
	height: 10px; 
}
.topnav a:hover {
	color: grey;
	Zbackground-color: #808080;
}
.topnav a img:hover {
	scale: 1.3;
	Zbackground-color: #808080;
}
.topnav .icon {
	display: none;
}
.topnavdropdown {
	float: left;
	overflow: hidden;
}
.topnavdropdowncontent {
	display: none;
	position: absolute;
	background-color: #000000;
	margin: 50px 0px 0px 0px;
	width: 600px;
	opacity: 1;
	z-index: 3;
	Zborder-style: outset;
}
.topnavdropdowncontent a {
	height: auto;
	line-height: 25px;
	margin: 5px;
	text-align: left;
	float: none;
	display: block;
	padding: 0px;
}
.topnavdropdown:hover .topnavdropdowncontent {
	display: block;
	text-decoration: none;
}
@media screen and (max-width: 750px) {
	.topnav a:not(:nth-child(1)) {
		display: none;
	}
	.topnav a.icon {
		float: right;
		display: block;
	}
	.topnav.responsive {
		position: relative;
	}
	.topnav.responsive .icon {
		position: absolute;
		right: 0;
		top: 0;
	}
	.topnav.responsive a {
		float: none;
		display: block;
		text-align: left;
	}
	.topnav.responsive div {
		float: none;
		display: block;
		text-align: left;
	}		
	.topnav.responsive .topnavdropdowncontent {
		display: none;
	}									
	.topnavdropdown a {
		display: none;
	}
}

/* Menus */
.menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.menu li {
    padding: 8px;
    margin-bottom: 7px;
    background-color: #6e6e6e;
    color: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
.menu li:hover {
    background-color: #2e2e2e;
}

/* Formulaires */
.form {
	margin-top : 0px;	
}
.form input {
	width : 75%;
	display: block;
	font-family: "Lucida Sans",sans-serif;
	font-size: 100%;
	background-color:black; 
	color: white; 
	border-width: 1px; 
	border-color: white; 
	border-style: solid;
}
.form div {
	margin-top : 15px;	
}
.form div input, .form div textarea {
	width : 100%;
	display: block;
	font-family: "Lucida Sans",sans-serif;
	font-size: 100%;
	background-color:black; 
	color: white; 
	border-width: 1px; 
	border-color: white; 
	border-style: solid;
}
.form button, .form-inline button, .form a, .form-inline a, .btn {
	padding: 5px 5px;
	text-align: center;
	text-decoration: none;
	border: none;
	display: inline-block;
	font-size: 100%;
	font-family: "Comic sans MS",sans-serif;
	margin: 15px 7px;
	cursor: pointer;
	background-image: linear-gradient(to bottom, #444, #777);
	color: #fff;
}
.form button:hover, .form a:hover, .form-inline button:hover, .form-inline a:hover, .btn:hover {
  background-image: linear-gradient(to bottom, #FFF, #999999);
}
.btn2 {
	text-align: center;
	text-decoration: none;
	padding: 5px;
	border: none;
	display: inline-block;
	font-size: 100%;
	font-family: "Comic sans MS",sans-serif;
	cursor: pointer;
	background-image: linear-gradient(to bottom, #444, #777);
	color: #fff;
}
.btn2:hover {
  background-image: linear-gradient(to bottom, #FFF, #27f30c);
}
.btn3 {
	text-align: center;
	text-decoration: none;
	padding: 5px;
	border: none;
	display: inline-block;
	font-size: 100%;
	font-family: "Comic sans MS",sans-serif;
	cursor: pointer;
	background-image: linear-gradient(to bottom, #444, #20a316);
	color: #fff;
	border-radius: 5px;
	height: 40px;
}
.btn3:hover {
  background-image: linear-gradient(to bottom, #FFF, #27f30c);
}
.form img {
	vertical-align: middle;
}
.erreur {
	color: #FF0000;
}
.form-inline label {
	width : 45%;
	display: inline-block;
	font-size: 100%;
	background-color:black; 
	color: white; 
}
.form-inline input {
	width : 45%;
	display: inline-block;
	font-size: 100%;
	background-color:black; 
	color: white; 
	border-width: 1px; 
	border-color: white; 
	border-style: solid;
}
.form-inline p {
	margin-top: 0px;
}
.form-check label {
	width : 45%;
	display: inline-block;
	font-size: 100%;
	background-color:black; 
	color: white; 
}

/* Page d'affichage des catégories (nview_cat) */
.view_catalias, .view_catalias h3, .view_catalias h3 a {
	text-align: center;
	text-decoration: none;
	color: white;
}
.view_catalias:hover h3 a {
	text-decoration:none;
}
.view_catalias img {
	vertical-align: middle;
    max-height: 25px;
    padding: 5px;
}
.view_catcat {
    text-align: center;
}
.view_catcat img {
	max-height: 120px;
	max-width: 120px;
	vertical-align: middle;
	border-radius: 5px;
}
@media screen and (min-width: 750px) {
	.view_catcat img {
		max-height: 200px;
		max-width: 200px;
	}	
}
.view_catcat2 {
    text-align: center;
}
.view_catcat2 img {
	vertical-align: middle;
	border-radius: 5px;
}
.view_cattext {
    display:inline-block;
    text-align: center;
    color: white;
}
.view_cattext p {
    margin: 10px 0px -5px 4px;
    max-width: 120px;
}
@media screen and (min-width: 750px) {
	.view_cattext p {
		display:none;
	}	
}
.catover {
	display: inline-block;
	position: relative;
	text-align: center;
	color: white;
	Zmax-height: 120px;
	Zmax-width: 120px;
	margin: 6px;
	padding: 0px;
	box-shadow:5px 5px 5px #5cc1d9;
	border-radius: 5px;
}
@media screen and (min-width: 750px) {
	.catover {
		Zmax-height: 200px;
		Zmax-width: 200px;
	}	
}
.catcentered {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.catcentered a {
	text-decoration: none;
	color: white;
}

div#cat img#a {
	display:inline-block;
}
div#cat:hover img#a {
	display:none;
}

div#cat img#b {
	display:none;
}
div#cat:hover img#b {
	display:inline-block;
	opacity:0.2;
}
div#cat a#b {
	display:none;
}
div#cat:hover a#b {
	display:inline-block;
}

/* Page d'affichage des oeuvres (nview) */
.viewnav {
	text-align:  center;
}
.viewnav p {
    text-align: center;
    vertical-align: middle;
    margin: auto;
    position: fixed;
    bottom: 0px;
    left: -5px;
    right: -5px;
    background-color: #000000;
    opacity: 1;
    Z-index: 3;
}
.viewnav a {
    text-decoration: none;
    color: #ffffff;
}
.viewnav img {
	vertical-align: middle;
    max-height: 40px;
}
@media screen and (min-width: 750px) {
	.viewnav p {
		text-align: left;
		margin: 10px;
		position: relative;
		top: 0px;
		left: 0px;
		background-color: transparent;
		opacity: 1;
	}	
	.viewnav img {	
		max-height: 30px;
	}	
}
.viewdescret, .viewdescret p {
    text-align:  center;
    text-decoration: none;
    color: white; 
    height: 25px; 
    margin: 0px;  
}
.viewdesc, .viewdesc p, .viewdesc p a {
    min-height: 50px;
    text-align:  center;
    text-decoration: none;
    color: white;    
}
.viewdesc p {
    text-align: center;
	display: inline;
    padding: 0px; 
}
.viewdesc:hover p a {
	text-decoration:none;
}
.viewdescret img {
	vertical-align: middle;
    max-height: 25px;
    padding: 5px;
}
@media screen and (min-width: 750px) {
	.viewdesc p {
		text-align: right;
		display: block;
		margin: 10px;
	}	
}

/* Slider */
.viewslider {
	text-align:  center;
}
.ZZviewcontainerA { /* DEBUG */
	width: calc(1*(100% / 7)); 
	height: calc(100vh - 210px);
	background-color:#e0e0e0; 
	margin-left: 43%;
}
.viewcontainerA {
	overflow: hidden;  
	width: 100%;
	height: calc(100vh - 210px);
}
.viewcontainerB {
	width: 700%; 
	margin-left:-351%; 
	float:left;
	position: relative;
}
.viewcontainerC {
	width: calc(100% / 7);
	display: inline-block;
	position: relative;
	Z-index: 1;
}
.viewcontainerD {
	width: calc(100% / 7);
	display: inline-block;
	position: absolute;
	left: calc(100% / 2);
	right: 0;
	Z-index: 2;
	opacity: 0;
}
.viewimgPS {
	max-height: calc(100vh - 340px);
	max-width: 90%; 
	vertical-align:top;
	padding: 0 0px;	
	border-radius: 5px;	
}
@media screen and (min-width: 750px) {
	.viewcontainerA {
		height: calc(100vh - 170px); 
	}	
	.viewcontainerC {
		height: calc(100vh - 170px); 
	}	
	.viewcontainerD {
		height: calc(100vh - 170px); 
	}	
	.viewimgPS {
		max-height: calc(100vh - 170px);
	}	
}

/* Page d'affichage des oeuvres en simili plein écran (nviewfull) */
.viewfull {
	margin: -8px;
}
.viewfull img {
	width: 100%; 
}

/* Page d'accueil (naccueil) */
.accueilimage {
	position: relative;
	text-align: center;
	overflow: hidden;
}
.accueilimage img {
	max-width: 110%;
	margin: 0% -5%;	
	opacity:1;
}
@media screen and (max-width: 750px) {
	.accueilimage img {
		max-width: 300%;
		margin: 0% -150%;		
	}	
}
.accueiltitre {
	position: absolute;
	top: 25%;
	left: 70%;
	transform: translate(-50%, -50%);
	width: 60%;
	color: white;
	Zbackground-color: #202020;
	Zopacity: 0.4;
	Zpadding: 15px;
}
.accueilnom {
	font-size: 150%;
	margin: 0px;	
}
.accueilmessage {
	font-size: 100%;
	margin: 0px;	
}
.accueilbouton a {
	position: absolute;
	top: 55%;
	left: 70%;
	transform: translate(-50%, -50%);
	width: 30%;
	font-size: 150%;
	color: white;
	text-decoration:none;
	Zbackground-color: #202020;
	Zopacity: 0.4;
	padding: 15px;
}
.accueilbouton a:hover {
	background-color: #808080;
	opacity: 0.4;
}
@media screen and (min-width: 750px) {
	.accueilnom {
			font-size: 300%;
	}
	.accueilmessage {
			font-size: 150%;
	}
	.accueilbouton a {
			font-size: 300%;
	}
}

/* Page statistiques (nstat)*/
.statistiques {
    text-align: center;
}
.statistiques div {
    display: inline-block;
}
.statistiques h4, .accueil p {
    text-align: center;
    max-width: 130px;
    margin: auto;
}
.statistiques a {
	text-decoration: none;	
}
.statistiques img {
	margin: auto auto auto; 
	max-width: 150px;
	max-height: 100%;
	padding: 0px;	
}
@media screen and (min-width: 750px) {
	.statistiques img {
		max-height: 100%;
	}	
}

/* Page palmarès (nexpositions) */
.presse {
	max-height: 85px;
	margin: auto;
	padding: 8px;
	vertical-align: middle;	
}

/* Page contact & Mur (nlivre), maj image (nmajimage) */
.livre {
	height: 800px; 
	overflow:auto; 
	margin-left:-10px; 
	padding:10px
}
.livre_enr {
	color: rgb(85,85,85);
	background-color: #ffffff;
	padding: 10px;
	border-radius: 4px 4px 4px 4px;
	margin-bottom: 10px;
	text-shadow: 0 0px 0 rgba(255, 255, 255, 0.5);
}
.livre_lig {
	color: #eee8dc;
}
.prenom {
	margin-top : 15px;	
}
.prenom input {
	width : 100%;
	display: block;
	font-family: "Lucida Sans",sans-serif;
	font-size: 100%;
	color: #000;	
}
.commentaire {
	margin-top: 15px;	
}
.commentaire textarea {
	width : 100%;	
	display: block;
	font-family: "Lucida Sans",sans-serif;
	font-size: 100%;
	color: #000;	
}
.code {
	margin-top : 15px;	
}
.code input {
	width : 200px;	
	display: block;
	font-family: "Lucida Sans",sans-serif;
	font-size: 100%;
	color: #000;	
}
.code img {
	display: block;
}
	
/* Page panier & facture (npanier) */
.facture {
	font-size: 2.5vw;
}
.facture img {
	height: 10px;
}
@media screen and (min-width: 750px) {
	.facture {
		font-size: 100%;
	}	
	.facture img {
		height: 17px;
	}
}

.zone1 {
	display: inline-block; 
	vertical-align: text-top; 
	width:50%;
}
.zone1a {
	display: inline-block; 
	vertical-align: text-top; 
	width:40%;
}
.zone1b {
	display: inline-block; 
	vertical-align: text-top; 
	width:10%;
}
.zone2 {
	display: inline-block; 
	vertical-align: text-top; 
	width:5%;
}
.zone3 {
	display: inline-block; 
	vertical-align: text-top; 
	width:10%;
}
.zone3bis {
	display: inline-block; 
	vertical-align: text-top; 
	width:10%;
}
.zone4 {
	display: inline-block; 
	vertical-align: text-top; 
	width:10%;
}
.zone5 {
	display: inline-block; 
	vertical-align: text-top; 
	width:10%;
}

/* Consentement cookie */
.cookieConsent {
	position: fixed;
	bottom: 0;
	width: calc(100% - 15px);
	background-color: grey;
	padding: 10px;
	opacity: 0.9;
	z-index: 10;
	text-align: justify;
}

