﻿/* TODO: Vérifier les z-index */

html{
	font-size:16px;
}

body{
	/*font-family: 'Roboto', sans-serif;*/
	font-family: 'Roboto Condensed', sans-serif;
    font-weight: lighter;
	font-size:16px;
	background: #EEE;
	color: #999;
    margin:0px;
}
body, .smooth-container { 
	scroll-behavior: smooth ;
	background: #EEE;
}

.scrolling-content {
   overflow-y: scroll;
   -webkit-overflow-scrolling: touch;
   height:100%; /* A value other than height:auto needs to be set */
}

/*
body, .smooth-container { 
	scroll-behavior: smooth ;
    background: #141414;		
}
*/

p{
    margin:0.2em;
}

a:link { 
    color: #000;
	text-decoration:none;
}
a:visited { 
    color: #000;
	text-decoration:none;
}

h1{
  display:inherit;
  position: relative;
  font-size:15px;
  margin:5px 10px;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: lighter;
  height: 30px;
}

h2{ 
    font-size:20px;
    margin:10px ;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: lighter;
}

/* COMMON PROPERTIES OF THE PAGE */
.kzAll{
    background: #EEE;
    color: #333;
	width:100%;
}

/********************************************************************  
** CSS FOR THE TOP MENU
*/

#nav{
	list-style:none;
	margin:0px;
	/* Clear floats */
	float:right;
	width:100%;
	background-color: whitesmoke;
}
#nav li{
	float:right;
	margin-right:10px;
	position:relative;
}
#nav a{
	display:block;
	padding:4px 6px 2px 2px;
	color:#000;
	text-decoration:none;
}
#nav a:hover{
	color:#000;
	/* background:#FF3E05; */
	/*text-decoration:underline;*/
	text-shadow: 1px 0px 8px darkorange;
}

/*--- DROPDOWN ---*/
#nav ul{
	background-color: whitesmoke;
	list-style:none;
	position:absolute;
	padding-left:0;
    display:none /*If menu item is not hovered hide sub-menu*/
}
#nav ul li{
	/* padding-top:1px;  Introducing a padding between the li and the a give the illusion spaced items */
	float:none;
    margin-right:0;
}
#nav ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}
#nav li:hover .ulRight{ /* Display the dropdown on hover */
    display: block; /*DISPLAY ONLY WHEN ITEM IS HOVERED*/
    right: 0;
    height:30px;
    
}
#nav li:hover .ulLeft{ /* Display the dropdown on hover */
    display: block; /*DISPLAY ONLY WHEN ITEM IS HOVERED*/
    left: 0;
    height:24px;
}

#nav li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	background:whitesmoke;
    color:#000;
	/*text-decoration:underline;*/
	text-shadow: 1px 0px 8px darkorange;
    height:24px;
    
}
#nav li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
    width:150px;
    padding:10px 20px;
    border:1px solid #000;
}
#nav li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background:white;
	color:#300;
    /*height:30px;*/
}

#nav .kmActive {
	background-color: whitesmoke;
	color: #fff;
 }
 
 .kmIcon {
	font-family:'FontAwesome';
	font-size : 26px;
 }
 .kmPng {
	height:25px;
    /* filter: invert(100%); */
 }
 
 /* END TOP MENU */
 
 
.kfaButton{
    display:inline-block;
    font-family: 'FontAwesome';
    font-style:normal;
	background-color:transparent;
	border:0px none #000;
	cursor:pointer;
	color:#000;
	padding:0px 4px;
	text-decoration:none;
    margin-top: 0px;
	font-size:36px;
    transform: translate(0px, 3px);
 }
.kfaButton:active {
	position:relative;
	top:1px;
}
 
.kfaBBig {
	font-size:50px;
    transform: translate(0px, 9px);
}


/* CSS FOR THE LOOK OF CHECKBOX
*/

form{
	font-size : 22px;
	color: #999;
}



/* .kchkBox */
.kchkBox {
  width: 20px;
  position: relative;
  margin: 2px 80px 2px 40px;
  z-index: 2;
    display:inline-block
}
.kchkBox label {
  width: 16px;
  height: 16px;
  cursor: pointer;
  position: absolute; 
  top: 0px; 
  left: 0;
  background: white;
  border-radius: 4px;
}

.kchkBox label:before {
  content: ' ';
  width: 16px;
  height: 16px;
  cursor: pointer;
  position: absolute; 
  top: 0px; 
  left: 0;
  background: white;
  border-radius: 4px;  
}

.kchkBox label:after {
  content: '';
  width: 9px;
  height: 5px;
  position: absolute;
  top: 3px;
  left: 2px; 
  border: 3px solid #000;
  border-top: none;
  border-right: none;
  background: transparent;
  opacity: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
    z-index: 99;
}
.kchkBox label:hover::after {
  opacity: 0.3;
    z-index: 99;
}
.kchkBox input[type=checkbox] {
  visibility: hidden;
  z-index: 99; 
}
.kchkBox input[type=checkbox]:checked + label:after {
  opacity: 1;
    z-index: 99;
}
/* end .kchkBox */

/* END LOOK OF CHECKBOX */   

input, textarea{
    font-family: 'Roboto', sans-serif;
	font-weight: bold;
	font-size: 22px;
}   
   
input[type=search], textarea {
    width: 80%;
    padding: 4px 4px;
    margin: 8px 0px;
    box-sizing: border-box;
    color:darkblue;
	background:white;
    max-width: 500px;
}

input[type=number] {
    width: 100px;
    padding: 4px 4px;
    margin: 8px 10px 0px 5px;
    box-sizing: border-box;
    color:darkblue;
	background:white;
    position: relative;
    display: inline-block;
}
.kDropDownSearch {
    font-family: 'Roboto', sans-serif;
	/*font-weight: bold;*/
	font-size: 20px;
	position:relative;
	display:inline-block;
    width: 150px;
    padding: 4px 4px;
    margin: 8px 8px 8px 0px;
    box-sizing: border-box;
    color:darkblue;
	background:white;
}

.kDropDownCountry {
	position:relative;
	display:inline-block;
    width: 56px;
    padding: 2px 2px;
    margin: 0px 10px;
    /*! box-sizing: border-box; */ 
    color:#000;
	background:transparent;
	border: none;
}

/* Style contenu des drop down */
option{
	background:#000;
	color:#fff;
}

/* Barre fixe dans le haut de l'écran */
.kmBar {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: auto;
  width: 100%;
  z-index: 100;
}

#mainContent {
  position: fixed;
  left: 0;
  top: 0;	
  height: calc(100% - 40px);
  width: 100%;
  margin: 42px 0px 0px 0px;
  /*! padding: 0px 0px 10px 10px; */ 
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}

/* Texte à droite d'un icône de type kmIcon. S'utilise pour un lien. Non visible si écran étroit. Ex kmCaption */
.kmIconTx{
	/*! margin-bottom: -2px; */
	height: 100%;
	vertical-align: middle;
	/*! border: 1px solid yellow; */
	display: inline-block;
	position: relative;
}


@media only screen and (max-width: 500px) {
	.kmIconTx{
		display:none;
	}
}

/* Container des card scrollers */
.Categories {
	width: 100%;
	margin: 0 auto; 
    /* text-align: center;  REFV2 */
}

/* Container titre de catégorie et boutons More + Top */
.Category {
	margin: 0 auto; 
    height: auto;
}

.Category a {
	margin: 0 auto; 
	color: #000;
}

/* Le Div qui contient les images de la carte en très grand et quelques détails du store */
.OverDiv {
    position: fixed;
	height: 100%;
	width: 100%;
	overflow-y: scroll;
	overflow-x:hidden;
    z-index: 200;
    top: 0px;
    background-color: #ddd;
    margin: 0px;
    left: 0px;
}

/* Bouton Close détails carte */
.closeDet{
	position:fixed;
	top:50px;
	right:18px;
	color:#000;
	font-size:40px;
	background-color:#ddd;
	/*! margin: 5px; */
	padding: 0px 14px 9px 14px;
	border: 2px solid #333;
	border-radius: 25px;
}

/* Scroller de carte outter div */
.OutterDiv {
    position: relative;
	height: auto;
	width: calc(100% - 5px);
	overflow: hidden;
    margin: 0px 0px 0px 5px;
}
/* Scroller de carte inner div */
.InnerDiv {
	position: relative;
	height: 216px;    /* Pkoi cette valeur ? */ 
	width: 25000px;   /* Assez grand pour les 25 cartes */
	margin: auto;
	border: 1px whitesmoke solid;
	overflow: hidden;
	white-space:nowrap;
}
.ImgDiv {
   display: inline-block;
   height: 200px;
   width: auto;
   background-color: white;
   cursor:pointer;
}
.ImgDiv > img {
  display: inline-block;
  width:  auto;
  height: 200px;
  outline-offset: -4px;  
    -webkit-transition: all 0.3s ease; /* Safari and Chrome */
    -moz-transition: all 0.3s ease-in-out; /* Firefox */
    -ms-transition: all 0.3s ease; /* IE 9 */
    -o-transition: all 0.3s ease; /* Opera */
    transition: all 0.3s ease-in-out;
	border: 5px solid black;
	border-radius: 5px;	
	margin: 2px;
}

@media only screen and (max-width: 1600px) {
	.InnerDiv {
		height: 166px;
	}
	.ImgDiv {
		height: 150px;
	}
	.ImgDiv > img {
		height: 150px;
	}
}
@media only screen and (max-width: 800px) {
	.InnerDiv {
		height: 136px;
	}
	.ImgDiv {
		height: 120px;
	}
	.ImgDiv > img  {
		height: 120px;
	}
}
@media only screen and (max-width: 400px) {
	.InnerDiv {
		height: 116px;
	}
	.ImgDiv {
		height: 100px;
	}
	.ImgDiv > img  {
		height: 100px;
	}
}

.ImgDiv:hover img {
    -webkit-transform:scale(1.1); /* Safari and Chrome */
    -moz-transform:scale(1.1); /* Firefox */
    -ms-transform:scale(1.1); /* IE 9 */
    -o-transform:scale(1.1); /* Opera */
     transform:scale(1.1);
}

/* Verso de la carte affiché dans les détails */
.ImgBackDiv {
   position: absolute;
   top: 0;
   right: 6px;
   max-height: 320px;
   max-width: 320px;
   cursor:pointer;
   bottom: 0;
   margin: auto;
}
@media only screen and (max-width: 800px) {
	.ImgBackDiv {
		display: none;
	}
}

/* Requis sinon l'image est pas resizée et apparait grosse 
.ImgBackDiv > img {
  display: inline-block;
  width:  auto;
  height: 200px;
}
*/


.Arrow {
    position:absolute;
    -moz-user-select:none;
    -webkit-user-select:none;
    user-select:none;
    font-family: 'FontAwesome';
    font-style:normal;
    /*color: rgba(255,255,255,0.5);*/
	  color:white;
	  text-shadow: 0 0 2px #00f;
    font-size: 48px;
    width: 48px;
    height: 48px;
    text-align: center;
    cursor:pointer;
	z-index: 10;
	top: 130px;
	margin-top: -24px;
	transition: color 300ms ease-in-out;
}
.Arrow.Arrow-Left {
    left: 0px;
	display:none;
}
.Arrow.Arrow-Right {
    right: 0px;
	display:inline;
	/* margin-left: -48px; */
}
.Arrow.Arrow-Left:before {
    content:"\f137";
}
.Arrow.Arrow-Left:hover{
    color: rgb(255,85,0);
}
.Arrow.Arrow-Right:before {
    content:"\f138";
}
.Arrow.Arrow-Right:hover{
    color: rgb(255,85,0);
}

/* Zone qui devient visible ou non */
div.PreviewDiv{
	display: block;   /* Toggle none block */
	width: 100%;
	margin: auto;
	border: 1px white solid;
	
	max-height: 0;
    overflow: hidden;
    transition: 0.6s ease-in-out;
    opacity: 0;	
}
div.PreviewDiv.show{
    opacity: 1;
    max-height: 1500px;
}

/* Container de la zone de recherche */
.searchelem{
	position: relative;
	width: 100%;
	height: auto;
	text-align: center;
	/* cursor: default; */
}

/* Container du preview du container de la liste des feeds similaire à OutterDiv */
.liveFeed {
	position: relative;
	width: 100%;
	height: auto;
  }


/* Container de la liste des feeds */
.liveelem{
	position: relative;
	width: auto;
	height: auto;
	text-align: left;
	overflow-y:scroll;
	/* cursor: default; */
	color: #99a;
	max-height: 200px;
	margin: auto;
	max-width: 800px;
	background-color: #fff;
}

.kmRight{
    z-index:1000;
}

/* MARQUEE STUFF */

.marquee {
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    /* animation: marquee 70s linear infinite; */
	color:#99a;
	font-size:14px;
    position: absolute;
    left: 180px;
    top: 8px;
    right: 250px;
    text-align:center;
    /*transform:scale(0.1);*/
    transition: transform 0.5s ease;
}
/*
.marquee:hover {
    animation-play-state: paused
}

@keyframes marquee {
    0%   { text-indent: 107.5em; }
    100% { text-indent: -160em; }
} 
*/
/* END MARQUEE */

/* Premier container dans le PreviewDiv des cartes */
.cardelem {
	position: relative;
	width: 100%;
	height: 400px;
	text-align: center;
	/* cursor: default; */
	/* top: 17px; */
}

/* Details contient en fait le preview de la carte */
.cardelem .details {
	position: absolute;
	text-align: left;
	top: 5px;
	bottom : 5px;
	left: 5px;
	width: calc(100% - 22px);
	font-size: 0.8rem;
	color: #333;
	background-color: rgba(255, 255, 255, 0.7);
	padding: 0px 5px;
}

/* Grosse image background du card Preview */
.previewBG {
	webkit-filter: blur(3px);
	-moz-filter: blur(3px);
	-o-filter: blur(3px);
	-ie-filter: blur(3px);
	-ms-filter: blur(3px);
	filter: blur(3px);
	transform: translate(0px, 200px) scale(2);
}				

/* THE LOOK OF CARD ATTRIBUTES IN CHECK BOXES */
.chk_attr{
	position:absolute;
	display: inline;
	color: #fff;
	font-size: 12px;
	padding: 3px 7px 3px 30px;
	margin:2px 0px 0px 30px;
    border-radius: 3px;
	transform: translate(-41px, -4px);
	z-index: -100;
	text-align: left;
	white-space: nowrap;
}

/* THE LOOK OF CARD ATTRIBUTES */
.ca_attr{
position:relative;
display: inline-block;
  color: white;
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 12px;
  height: 16px;
  border-radius: 2px; 
	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	
	padding-left: 5px; 
	padding-right: 5px; 
	padding-top: 2px;
	
	margin:2px;
}
.ca_rc{
background-color: #337ab7;
}
.ca_mem{
background-color: #d62a26;
}
.ca_ser{
background-color: #ac36d3;
}
.ca_aut{
background-color: #6aad22;
}
.ca_grd{
background-color: #FF8C00;
}
.ca_spc{
background-color: #FF006E;
}
.ca_eb {
    background-color: #e6ad2b;
}
.ca_sngrd{
color: white; 
font-size: 12px; 
margin-left: 14px;
}

/* END LOOK OF CARD ATTRIBUTES */

.d_d_yrproset{
position:relative;
display: inline-block;
width:100%;
color: #000; 
font-size: 1rem;
}
.d_d_desc{
position:relative;
display: inline-block;
width: 100%;
color: darkgray; 
font-size: 1.7rem;
}
.d_d_no{
position:relative;
display: inline-block;
margin-left: 10px;
color: #666; 
font-size: 1.7rem;
}


.d_d_team{
position:relative;
display: inline-block;
color: #666;
font-size: 1.1rem;
}

.d_d_logo{
height: 52px;
width: 77px;
}

.d_d_store{
position:relative;
display: inline-block;
color: #666;
font-size: 0.875rem;
/*! bottom: 80px; */
}

.d_d_st_name{
color: #000;
font-size:1.4rem;
}
.d_d_st_user{

}
.d_d_rating{
font-family: 'FontAwesome';
}

.d_d_medal{
height:11px;
width:8px;
}

.d_d_price{
	color: #999;
	text-align: center;
}
.d_d_prtbl{
	-moz-border-radius:6px;
	-webkit-border-radius:6px;
	border-radius:6px;
	border:1px solid #999;
	border-spacing: 8px 0px;	
	position: relative;
    margin: 4px 0;
    max-width:400px;
}
.d_d_shptbl{
	-moz-border-radius:3px;
	-webkit-border-radius:3px;
	border-radius:6px;
	border:1px solid #999;
	border-spacing: 25px 3px;	
	position: absolute;
	bottom: 5px;
	right: 5px;
}

.d_d_sttbl{
	border-spacing: 0px 0px;
	bottom: 100px;
}

.d_d_amount{
	font-size:30px;
}
.d_d_small{
	font-size:0.625rem;
}
.d_d_ebay{
	height:40px;
	width:80px;
}
.d_fa{
    color:black;
	position:relative;
	font-size:40px;
	margin-left: 10px;
}


@media only screen and (max-width: 1024px) {
	.previewBG {
	    transform: translate(-200px, 50px) scale(1.5);
	}
   	.cardelem{
		height:330px;
	}
    .d_d_team {
        font-size: 1rem;
    }
    .d_d_logo{
        height: 30px;
        width: 45px;
    }
}	
	
@media only screen and (max-width: 400px) {
	.previewBG {
	transform: translate(-200px, -50px) scale(1.2);
	}
}	


@media only screen and (max-width: 500px) {
	.d_d_desc , .d_d_no{
		font-size:18px;
	}
	.d_d_yrproset, .d_d_team{
		font-size:13px;
	}
	.ca_attr{
		font-size: 11px;
		height: 14px;
	}
}

/* AUTO RESIZING IMAGE */
.divImgAutoSz{
  width:100%;
  overflow:hidden;
}
.imgAutoSz{
  max-width:100%;
  max-height: 900px;
  height:auto;
}
.imgCenter{
  display: block;
  margin: auto;
}

.title{
    font-size: 24px;
}
.txCenter{
	text-align: center;
}

/* Flexbox qui centre les éléments */
.flexCenter{
   display: flex;
   flex-flow: row wrap;
   align-items: center;
   justify-content: center;
}

/* Force un changement de ligne dans les containers de type flex */
.flex-br {
  width: 100%;
}

.inbkrel{
	/*height: 100%;
	vertical-align: middle; */
	display: inline-block;
	position: relative;
}


.catnavtop{
position: absolute;
right: 10px;
top: 10px;
font-size:20px;
}


.footer{
	color: #999;
	background-color:#fff;
}



.flexBox{
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;


    display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: flex-start;
	color: #666;
	background-color:#fff;
}

.flexElem{
    position: relative;
	display:inline-block;
	vertical-align: top;
	width:320px;
	height:auto;
    margin: 10px;
}

.flexBigger{
	flex-grow:2;
	width:auto;
}


#pp{
	position: absolute;
	top: 8px;
	left: 4px;
	max-width: 280px;
	width: 18%;
}

@media screen and (max-width: 800px) {
	#pp{
		display:none;
	}
}

.cardfull{
    display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-around;
	align-items: flex-start;
}

.fullpart{
    position: relative;
	display:inline-block;
	vertical-align: top;
	width:320px;
	height:auto;
    margin: 10px;
}


/* FLEX STUFF */

/* Quand on veut des éléments côte à côte, utiliser un wrapper avec des div aside */
.wrapper {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  flex-flow: row wrap;
  text-align: left;
}

.wrapper > * {
  padding: 10px;
  flex: 1 100%;
}

.main {
  text-align: left;
}

@media all and (min-width: 600px) {
  .aside {
    flex: 1 auto;
  }
}
@media all and (min-width: 1400px) {
  .main {
    flex: 3 0px;
	order: 3;
  }
  .aside-1 {
    order: 1;
  }
  .aside-2 {
    order: 2;
  }
}

/*
.SRImgDiv img{
  position:absolute; 
  width:auto;
  height:auto;
  top:0; 
  bottom:0; 
  left:0;
  right:0;
  margin: auto;
  max-width: 300px;
  max-height: 300px;
  outline-offset: -4px;
  transition: all 0.3s ease-in-out;
  border: 5px solid white;
  border-radius: 5px;	
}


.SRCards{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    background: #141414;
}

.SRCard{
    width: 320px;
    margin:5px;
    border:10px solid black;
    background: black;
    flex-grow:1;
    transition: transform 0.5s ease;
}

.SRImg{
    position:relative; 
    height:320px;
    width: 320px;
    max-width: 100%;
    text-align: center;
    margin: auto;
}
*/

.SRCards {
	vertical-align: top;
    text-align: center;
}
.SRCard {
	display: inline-block;
	width: 320px;
    height:660px;
    vertical-align: top;
    margin: 2px 1px;
    background: white;
    padding: 0 6px;
    transition: transform 0.5s ease;
}
.SRImg{
    position:relative; 
    height:320px;
    width: 320px;
    max-width: 100%;
    text-align: center;
    margin: auto;
}
.SRImgDiv img{
  position:absolute; 
  width:auto;
  height:auto;
  top:0; 
  bottom:0; 
  left:0;
  right:0;
  margin: auto;
  max-width: 280px;
  max-height: 280px;
  /*outline-offset: -4px;*/
  /*transition: all 0.3s ease-in-out;*/
  border: 5px solid black;
  border-radius: 5px;	
}



.infos{
    width:100%;
}


.rot10Left {
	-webkit-transform: rotate(-10deg) translateX(-20%) scale(0.8);
	transform: rotate(-10deg) translateX(-20%) scale(0.8);
}

.rot10Right {
	-webkit-transform: rotate(10deg) translateX(20%) scale(0.8);
	transform: rotate(10deg) translateX(20%) scale(0.8);
}

.big1Txt {
    font-size:36px;
}
.big2Txt {
    font-size:22px;
}
.big3Txt {
    font-size:16px;
}

.d_left{
	color: #999;
	text-align: left;
}
.d_right{
	color: #999;
	text-align: right;
}
.shtable{
    margin:auto;
    border:1px solid #999;
    border-spacing: 10px 0;
}


.table {
    display:table;
    width:100%;
}
.row {
    display: table-row;
    text-align: left;
}
.cellLeft {
    display:table-cell;
    text-align: left;
    vertical-align: top;
}
.cellCtr {
    display:table-cell;
    text-align: center;
    vertical-align: top;
}
.cellRight {
    display:table-cell;
    text-align: right;
    vertical-align: top;
}

.fs30.fa{
    font-size:30px;
}
.fs40.fa{
    font-size:40px;
}
.fs50.fa{
    font-size:50px;
}

.black{
    background-color:#fff;
}

.Popupback{
    background-color: rgba(128,128,128,0.7);
    height: 100%;
    width:100%;
    z-index:999;
    position: fixed;
}

.PopupForm {
    width:500px;
    max-width: 100%;
    height: 100%;
    left:0;
    right:0;
    margin:auto;
    animation: pop-swirl 1s ease forwards;
    overflow-y:auto;
}

.SmallPopup {
    width:500px;
    max-width: 100%;
    height: 100px;
    left:0;
    right:0;
    margin:auto;
}

.spaced a{
    padding: 2px 16px;
}

@keyframes pop-swirl {
  0% {
    transform: scale(0) rotate(360deg);
  }
  60% {
    transform: scale(0.8) rotate(-10deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.click{
    cursor:pointer;
}

a:hover, .kfaButton:hover, .click:hover {
    text-shadow: 1px 0px 8px darkorange;
}

/* CART SPECIFIC */

#cart, #favseller, #toCartPrev{
    transition: transform 0.5s ease;
    display:inline-block;
}

#CardsInCarts {
	font-family: 'Roboto Condensed', sans-serif;
    font-weight: lighter;
    font-size:13px; 
    margin-top:-3px; 
    margin-left:4px; 
    display:block;
    color:#fff;
}

#UnreadMsgs{
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    margin-top: -4px;
    margin-left: -1px;
    display: block;
    color: #FFF;
}

.cartAdd{
    transform: translate(0px, 200px) scale(12);
}
.favchg{
    transform: translate(0px,-40px) scale(5);
}
.favsmlchg{
    transform: translate(0px,40px) scale(2);
}

.SRCarts {
	vertical-align: top;
}

.SRCart {
	display: inline-block;
	width: 320px;
    height:160px;
    vertical-align: top;
    margin: 2px 1px;
    background: white;
    padding: 0 6px;
    transition: transform 0.5s ease;
}
.SRCImg{
    position:relative; 
    height:160px;
    width: 160px;
    max-width: 100%;
    text-align: left;
    margin: 0;
}
.SRCImgDiv img{
  position:absolute; 
  width:auto;
  height:auto;
  top:0; 
  bottom:0; 
  left:0;
  right:0;
  margin: 0px auto;
  max-width: 140px;
  max-height: 140px;
  border: 5px solid black;
  border-radius: 5px;	
}

.SRCinfos{
    font-size: 1.2em;
    color: #666;
}

.flexLeft {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
}

.CCategory {
	margin: 0 10px; 
    height: auto;
    background-color:#FFF;
}

.CCategory a {
	margin: 0 auto; 
	color: #000;
}

.C_PO{
    background-color: yellow;
    color: #000;
}

.C_AO{
    background-color: green;
    color: #FFF;
}

.C_DO{
    background-color: darkred;
    color: #FFF;
}

.C_NO{
    background-color: pink;
    color: #000;
}

.C_SO{
    background-color: blue;
    color: #FFF;
}

.C_CO{
    background-color: blueviolet;
    color: #FFF;
}


.stotab{
    margin: auto;
    border:1px solid #333;
    border-spacing: 12px 6px;
}

table.stotab td, table.stotab th {
   vertical-align: top;
}

.carousel {
	position: relative;
	overflow: hidden;
	margin: auto;
	background-color: rgba(0,0,0,0.4);
}

.carousel-img-group {
	position: relative;
	height: 100%;
	width: 100%;
	z-index: 1000;
	top: 0;
	left: 0;
}

.carousel-btn-group {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 5;
}

.carousel-slide-img {
	display: none;
	position: relative;
	top: 0;
	/*   left: 100%; */
	animation: reveal 0.5s;
}

.carousel-btn {
	position: absolute;
	top: 0;
	padding: 0 1.5em;
	background: black;
	color: white;
	bottom: 0;
	cursor: pointer;
	border: none;
	font-size: 2em;
	z-index: 10;
	outline: 0;
	height: 100%;
}

.btn-prev {
	left: 0;
	background: linear-gradient(to right,rgba(0,0,0,0.4),rgba(0,0,0,0));
}

	.btn-prev:after {
		display: inline-block;
		position: absolute;
		top: 0;
		left: 0;
		background: linear-gradient(to right,rgba(0,0,0,0.3),rgba(0,0,0,0));
		content: '';
		height: 100%;
		width: 100%;
		opacity: 0;
		transition: opacity 0.4s;
	}

	.btn-prev:hover:after {
		opacity: 1;
	}

.btn-next {
	right: 0;
	background: linear-gradient(to left,rgba(0,0,0,0.4),rgba(0,0,0,0));
}

	.btn-next:after {
		display: inline-block;
		position: absolute;
		top: 0;
		left: 0;
		background: linear-gradient(to left,rgba(0,0,0,0.3),rgba(0,0,0,0));
		content: '';
		height: 100%;
		width: 100%;
		opacity: 0;
		transition: opacity 0.4s;
	}

	.btn-next:hover:after {
		opacity: 1;
	}

@keyframes reveal {
	0% {
		opacity: 0;
		filter: grayscale(50%);
	}

	100% {
		opacity: 1;
		filter: grayscale(0%);
	}
}
