@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&display=swap');

/******************************************************************************/
/* VARIABLES
/******************************************************************************/
:root {
    --white: #f9f9f9;
    --black: #36383F;
    --gray: #85888C;
	--orange1: #d64414;
	--orange2: #f57a09;
}

/******************************************************************************/
/* COMMON
/******************************************************************************/
* {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}
html, body {
    margin: 0;
    width: 100%;
    height: 100%;
}
body {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	background-color: white;
}

a {
	-webkit-transition: .3s all ease;
	-o-transition: .3s all ease;
	transition: .3s all ease;
}
a {
	color: var(--gray);
	text-decoration: none;
}
a:visited {
	color: var(--black);
	text-decoration: none;
}
a:hover {
	color: var(--gray);
	text-decoration: none;
}
a.btn-primary:visited {
    color: var(--white);
}
form {
	clear: both;
}

figure {
	position: relative;
	float: left;
	margin: 1.5em;
}
hr {
	clear: left;
	bo/rder: 1px solid black;
}
ol, ul {
    padding-left: 0;
}
.input-invalid {
	-webkit-box-shadow: 0px 0px 0px 1px rgba(255, 0, 0, 1);
	-moz-box-shadow: 0px 0px 0px 1px rgba(255, 0, 0, 1);
	box-shadow: 0px 0px 0px 1px rgba(255, 0, 0, 1);
}
.hide {
	display: none;
}
.alert {
	clear: both;
	min-height: 55px;
}
/* View buttons */
.view-buttons {
	float: right;
}
.view-buttons i {
	margin-left: 10px;
	font-size: 1.5em;
	cursor: pointer;
}
.content {
	display: flex;
	flex-wrap: wrap;
}
.content.column-view {
	flex-direction: column;
}
.content.column-view > ul {
	width: 100%;
	margin-bottom: 20px;
}
.content.grid-view {
	flex-direction: row;
}
.content.grid-view > ul {
	width: calc(66.66% - 20px);
	margin-right: 20px;
	margin-bottom: 20px;
}
.content.list-view > ul {
	width: 100%;
	margin-bottom: 20px;
}

.img-thumbnail {
	width: 100px;
	height: 100px;
}
.stick {
	width: 219px;
	height: 210px;
	padding: 20px;
	text-align: center;
	box-sizing: content-box;
	background: transparent url(img/note_stick_bg.png) top left no-repeat;
}
.container {
	display: flex;
	flex-direction: column;
	position: relative;
	max-width: 1300px;
	margin: 20px auto;
	padding: 10px;
	border-radius: 10px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
	z-index: 1;
}
/*
.container
{
	background-color: white;
	background-image: url(img/background.jpg);
	background-size : cover;
}
*/
.sort {
	float: right;
	text-align: right;
}
.sort-tag {
	display: inline-block;
	margin: 0px;
}
.sort-tag.on label {
	background-color: #ff6f2a;
}
.sort-tag label {
	display: inline-block;
	height: 22px;
	line-height: 24px;
	font-size: 14px;
	padding: 0 6px;
	background-color: #c0bfbe;
	color: #fff;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	cursor: pointer;
	user-select: none;
}
.sort-tag input {
	display: none;
}
.sort-tag i {
	float: right;
	margin-top: 4px;
	margin-left: 5px;
}

/******************************************************************************/
/* HEADER
/******************************************************************************/
header {
	position: relative;
	display: flex;
	justify-content: space-between;
}
header a {
	color: var(--black);
}
header .logo {
	width: 10%;
}
header .menu {
	width: 80%;
}
header .user {
	width: 10%;
}

/* LOGO */
header .logo img {
	float: left;
}

/*************************************/
/* SEARCH
/*************************************/
header .button {
	display: inline-block;
	font-size: 16px;
	padding-left: 32px;
	padding-right: 32px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	color: #111;
	text-decoration: none;
	cursor: pointer;
	-moz-user-select: none;
	-khtml-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
header .search-container {
	position: absolute;
	top: 50px;
	left: 0;
	display: inline-block;
	ma/rgin: 4px 2px;
	height: 30px;
	width: 30px;
	vertical-align: bottom;
	z-index: 10;
}
header .mglass {
	display: inline-block;
	pointer-events: none;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
}
header .searchbutton {
	position: absolute;
	font-size: 22px;
	wi/dth: 100%;
	margin: 0;
	padding: 0;
}
header .search:focus + .searchbutton {
	transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
	background-color: white;
	color: black;
}
header .search {
	position: absolute;
	left: 19px; /* Button width-1px (Not 40px/100% because that will sometimes show a 1px line between the search box and button) */
	background-color: white;
	outline: none;
	border: none;
	padding: 0;
	width: 0;
	height: 100%;
	z-index: 10;
	transition-duration: 0.4s;
	-moz-transition-duration: 0.4s;
	-webkit-transition-duration: 0.4s;
	-o-transition-duration: 0.4s;
}
header .search:focus {
	width: 200px; /* Bar width+1px */
	padding: 0 10px 0 0;
}
header .search-result {
	position: absolute;
	top: 40px;
	left: -1px;
	font-size: 11px;
	border: 1px solid #ccc;
	background-color: white;
	z-index: 1000;
}

header .search-result ul {
	margin-bottom: 0;
	padding-left: 0;
}
header .search-result li {
	text-wrap: nowrap;
}
header .search-result li:hover {
	background-color: #ccc;
}
header .search-result li a {
	display: block;
	padding: 4px;
}

header .nav.mobile {
	display: none;
	position: relative;
	margin-top: 10px;
    margin-left: -40px;
	font-size: 2em;
}

/*************************************/
/* NAVIGATION MENU
/*************************************/
header nav {
	display: flex;
	justify-content: center;
}
header nav ul {
	margin: 0 auto;
}
header .nav.mobile {
	display: none;
	position: relative;
	margin-top: 10px;
    margin-left: -40px;
	font-size: 2em;
}
/*nav ul li {
	float: left;
	list-style: none;
	transition: all 0.5s ease;
}
*/
header nav ul li:hover {
	color: black;
}
header nav > ul > li:last-child {
	margin-right: 0;
}
header nav ul li.active {
	color: black;
}
/*header nav ul li a {
	color: #444;
	text-decoration: none;
	transition: color 0.1s, background-color 0.1s;
}*/
header nav ul li a {
	position: relative;
	display: block;
	padding: 10px 0;
	margin: 0 10px;
	letter-spacing: 1px;
	font-size: 12px;
	line-height: 16px;
	font-weight: 900;
	text-transform: uppercase;
	transition: color 0.1s, background-color 0.1s, padding 0.2s ease-in;
	color: #000;
}
header nav ul li a:hover, a:focus, a:active {
	color: #999;
	text-decoration: none;
}
header nav ul li a::before {
	content: '';
	display: block;
	position: absolute;
	bottom: 3px;
	left: 0;
	height: 3px;
	width: 100%;
	background-color: #000;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: color 0.1s,transform 0.2s ease-out;
}
header nav ul li a:active::before {
	background-color: #000;
}
header nav ul li a:hover::before, a:focus::before {
	transform-origin: left top;
	transform: scale(1, 1);
}

/* HORIZONTAL NAV */
header ul.horiznav,
header .horiznav ul {
	padding: 0;
	height: 40px
}
header .horiznav li ul {
	display: none;
	position: absolute;
	top: 40px;
	left: 0;
	background: white;
}
header .nav {
	position: relative;
	font-weight: 200;
	z-index: 1000;
}
header .nav ul {
	margin: 0;
	padding: 0;
}
header .nav li {
	position: relative;
	float: left;
	white-space: nowrap;
	cursor: pointer;
	te/xt-transform: capitalize !important;
	-webkit-transition: background-color ease-in 300ms;
	-moz-transition: background-color ease-in 300ms;
	-ms-transition: background-color ease-in 300ms;
	-o-transition: background-color ease-in 300ms;
	transition: background-color ease-in 300ms;
}
header .nav li:hover {
	ba/ckground-color: #3d3d3d;
	te/xt-shadow: 0 10px 10px #222;
}
/*
header .nav li a {
	display: block;
	text-decoration: none;
	text-wrap: nowrap;
}*/
header .nav ul li.topmenu {
	display: inline-table;
	padding: .3em 1em;
}
header .nav .topmenu ul {
	display: none;
	position: absolute;
}
header .nav li:hover > ul {
	display: table;
}
header .nav ul.submenu {
	top: 100%;
	left: 0;
	padding-top: .5em;
	padding-bottom: .5em;	
	border: 1px solid #ccc;
}
header .nav ul.submenu .submenu {
	top: -.5em;
	left: 100%;
	font-size: 1em
}
/*
.nav ul.submenu li {
	pa/dding: .2em .5em;
	fo/nt-size: .9rem;
}*/
header .nav li.divider {
	margin: .5rem auto .3rem;
	padding: 0;
	border-top: 1px solid #343434;
	cursor: default;
}
header .nav li.divider:hover {
	background-color: transparent;
}

/*************************************/
/* PROFILE MENU
/*************************************/
header .profile {
	position: absolute;
	right: 0;
}
header .profile li {

}
header .profile .user-img {
    position: relative;
    height: 36px;
    width: 36px;
    margin: 0px auto;
	cursor: pointer;
}

header .profile-menu {
	padding: 4px;
	transition: all 300ms ease;
	box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.06), 0 1px 0 0 rgba(0, 0, 0, 0.02);
	border: 1px solid rgba(152, 166, 173, 0.15);
}
header .profile-menu {
	position: absolute;
	display: none;
	top: 100%;
	right: -1px;
	min-width: 140px;
	padding: 0 0 5px 0;
	font-size: 14px;
	background-color: white;
	background-clip: padding-box;
	border: 1px solid #ccc;
	border: 1px solid rgba(0,0,0,.15);
	border-radius: 4px;
	box-shadow: 0 6px 12px rgba(0,0,0,.175);
	z-index: 999;
}
header .profile-menu.open {
    display: block;
}
header .profile-menu > li {
	list-style: none;
}
header .profile-menu > li > a {
	display: block;
	padding: 3px 15px;
	clear: both;
	font-weight: 400;
	line-height: 1.42857143;
	color: #333;
	white-space: nowrap;
}
header .profile-menu > li > a:hover {
	color: #fff;
	background-color: gray;
}
header .profile-menu:before {
	left: auto;
	right: 11px;
}
header .profile-menu:before {
	position: absolute;
	top: -7px;
	right: 10px;
	display: inline-block;
	border-right: 7px solid transparent;
	border-bottom: 7px solid rgba(152, 166, 173, 0.15);
	border-left: 7px solid transparent;
	content: '';
}
header .profile-menu h5 {
	margin: 0 0 5px 0;
	padding: 10px;
	background-color: #f3f3f3;
	text-align: center;
	font-size: 1em;
	text-wrap: nowrap;
}

/*************************************/
/* ICONS
/*************************************/
header .icons {
	position: absolute;
	top: 40px;
	right: 0;
	margin-top: 10px;
}
header .icons a {
	position: relative;
	margin-left: 5px;
	color: #444;
	z-index: 10;
}
header .icons a:hover {
	color: grey;
}
header .btn-login {
	ma/rgin-right: 10px;
}
header .btn-profile {

}

/*************************************/
/* CART
/*************************************/
header .cart-nav a {
	color: #444;
}
header .cart-nav a:hover {
	color: grey;
}
header .item-count {
	display: none;
	position: absolute;
	top: -10px;
	left: 10px;
	color: #fff;
	background: #ff5722;
	font-size: 11px;
	width: 16px;
	height: 16px;
	text-align: center;
	line-height: 16px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}


/******************************************************************************/
/* MAIN
/******************************************************************************/
main {
	position: relative;
	flex-grow: 1;
	margin-bottom: 10px;
}
main h2 {
	padding: 10px;
	text-align: center;
	font-size: 18px;
	text-transform: uppercase;
	border-bottom: 1px solid grey;
}
#back-top {
    text-align: center;
    position: fixed;
    cursor: pointer;
    right: 10px;
    bottom: 10px;
	transition: background-color .3s;
	z-index: 1000;
}
#back-top a {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 1.25rem;
    line-height: 45px;
}
#back-top a:hover {
    background-color: rgba(0, 0, 0, 0.5);
}
.gotop:hover {
	cursor: pointer;
	background-color: #333;
}
.gotop:active {
	background-color: #555;
}

/*************************************/
/* LOGIN
/*************************************/
#login {
	width: 30em;
	margin: 0 auto;
}	
#login form.forgot {
    top: -280px
}
/*************************************/
/* FORM CONTACT / PROFILE / FORGOT
/*************************************/
form.contact,
form.profile {
	position: relative;
	max-width: 40rem;
	margin: 40px auto;
} 
form.reset {
	max-width: 30rem;
	margin: 40px auto;
}
form.contact textarea,
form.contact input,
form.profile input,
form.reset input {
	border-radius: 5px;
	width: 100%;
	height: 40px;
	margin: 5px 0 20px 0;
	padding: 10px;
	font-size: 1em;
	background-color: white;
	outline: none;
	border: 1px solid #aaa;
}
form.contact textarea {
	height: 20%;
	line-height: 1.2;
}
form.contact input:disabled:hover,
form.contact textarea:disabled:hover {
	cursor: not-allowed;
}
form.contact input.submit,
form.profile input.submit,
form.reset input.submit {
	height: 50px;
	width: 80%;
	margin-left: 10%;
	margin-right: 10%;
	margin-top: 25px;
	padding: 0;
	cursor: pointer;
	outline: none;
	border-radius: 5px;
	font-size: 1em;
	color: white;
	background-color: #68c75a;
	border: none;
}

div.input-block {
	position: relative;
	display: inline-block;
	width: 100%;
}
/* Hack cause intl phone */
div.input-block.email {
	margin-top: 15px;
}
div.input-block.phone label {
	display: inline-block;
	top: -15px;
	z-index: 999;
}
/* end */
div.input-block label {
	display: none;
	position: absolute;
	top: -10px;
	left: 10px;
	color: grey;
	font-size: 0.8rem;
	transition: all 0.2s;
	transform-origin: 0% 0%;
	background: none;
	pointer-events: none;
	op/acity: 0;
}
div.input-block input {
	width: 100%;
}
div.input-block input::placeholder {
	color: #aaa;
}
div.input-block input:valid + label,
div.input-block input:focus + label {
	transform: scale(0.8) translateY(-30px);
	background: #fff;
}
div.input-block label.on {
	transition: all .3s ease-in-out;
	float: right;
}
div.input-block .input-text {
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: .8em;
	color: #aaa;
}
p.check-news {
	position: relative;
}
p.check-news input {
	float: left;
	margin: 0;
	padding: 0;
	width: auto;
	height: auto;
	color: #444;
	outline: none;
	border: none;
}
p.check-news label {
	position: absolute;
	top: -2px;
	left: 20px;
	font-size: .8em;
	color: #444;
}
p.check-news .input-text {
	position: absolute;
	bottom: -35px;
	left: 0;
	font-size: .8em;
	color: #aaa;
}
p.text-delete {
	float: right;
	font-size: 14px;
}
.intl-tel-input,
.iti {
	width: 100%;
}
.iti__flag {
	background-image: url(img/flags.png);
}
/*************************************/
/* CONTACT
/*************************************/
#contact .sign-in-contact {
	margin-top: 20px;
	text-align: center;
	font-weight: bold;
	color: #ff5722;
}
#contact .sign-in-contact a {
	text-decoration: underline;
}
#message-contact-char {
	position: absolute;
	bottom: 0;
	right: 0;
	font-size: .8em;
}
/*************************************/
/* REGISTER / PROFILE
/*************************************/
.input-field {
	position: relative;
}
span.toggle-password {
	position: absolute;
	right: 15px;
	top: 17px;
	color: grey;
	cursor: pointer;
}
span.toggle-password.login,
span.toggle-password.register,
span.toggle-password.register-confirm {
	right: 35px;
	top: 43px;
}
.password-info {
	position: absolute;
	bottom: -120px;
	right: 0;
	width: auto;
	padding: 15px;
	background: #fefefe; 
	font-size: .830em;
	border-radius: 5px;
	box-shadow: 0 1px 3px #ccc;
	border: 1px solid #ddd;
	display: none;
	z-index: 1;
}
.password-info::before {
	content: "\25B2";
	position: absolute;
	top: -12px;
	left: 45%;
	font-size: 14px;
	line-height: 14px;
	color: #ddd;
	text-shadow: none;
	display: block;
}
.password-info span {
	margin: 0 0 10px 0; 
	padding: 0;
	font-weight: normal;
}
.password-register-info {
    position: absolute;
	top: 68px;
	left: 128px;
    width: auto;
    padding: 15px;
    background: #fefefe;
    font-size: .830em;
    border-radius: 5px;
    box-shadow: 0 1px 3px #ccc;
    border: 1px solid #ddd;
    display: none;
    z-index: 1;
}
.password-register-info::before {
	content: "\25B2";
	position: absolute;
	top: -12px;
	left: 45%;
	font-size: 14px;
	line-height: 14px;
	color: #ddd;
	text-shadow: none;
	display: block;
}
.password-register-info ul {
	margin: 0; 
	padding: 0;
}
.password-register-info span {
	margin: 0 0 10px 0; 
	padding: 0;
	font-weight: normal;
}
.invalid {
	background: url(img/pass-invalid.png) no-repeat 0 50%;
	padding-left: 22px;
	line-height: 24px;
	color: #ec3f41;
}
.valid {
	background: url(img/pass-valid.png) no-repeat 0 50%;
	padding-left: 22px;
	line-height: 24px;
	color: #3a7d34;
}
.city {
	position: relative;
}
#city-result {
	position: absolute;
	top: 50px;
	left: 6px;
	background-color: white;
	z-index: 999;
}
#city-result ul {
	bo/rder: 1px solid grey;
}
#city-result li {
	padding: 4px;
	cursor: pointer;
}
#city-result li:hover {
	background-color: gray;
}

/*************************************/
/* PROFILE
/*************************************/
#profile i {
	position: absolute;
	top: 16px;
	right: 15px;
	color: red;
}
#profile i.phone {
	top: 10px;
}

/*************************************/
/* CATALOG
/*************************************/
.treeview {
	border-left: 0;
}
.treeview li ul {
	display: none;
}
.treeview ul {
	padding-left: 0.5em;
	margin-left: 0.3em;
	border-left: 3px solid #c0d1d1;
	margin-bottom: 1em;
	color: #212b2b;
}
.treeview ul {
    margin: 0px;
    padding: 0px;
    padding-left: 25px;
}
.treeview li {
	display: block;
    padding-left: 20px;
    line-height: 25px;
	list-style-type: none;
	margin-bottom: 0.5em;
	margin-top: 0.5em;
}
.treeview li.dir {
    background: url(img/folder.png) no-repeat left 5px;
}/*
.treeview li.dir::before {
	content: ' ';
	display: inline-block;
	margin-right: 3px;
	font-family: Courier;
}
.treeview li.dir.sub::before {
	content: '+';
	display: inline-block;
	margin-right: 3px;
	font-family: Courier;
}*/
.treeview li.dir.open {
    background: url(img/folder-open.png) no-repeat left 5px;
}/*
.treeview li.dir.open::before {
	content: '-';
	display: inline-block;
	margin-right: 3px;
	font-family: Courier;
}*/
.treeview li.file {
    ba/ckground: url(img/file-pdf.png) no-repeat 0px 18px;
}
.treeview li.cat {
    background: url(img/list-cat.png) no-repeat 0px 4px;
}
.treeview li label {
    cursor: pointer;
}
.treeview img.btn-add {
	cursor: pointer;
	vertical-align: middle;
}
.treeview li img.thumb {
	width: 75px;
	height: 50px;
	vertical-align: middle;
}

/*************************************/
/* CART
/*************************************/
#cart .table {
	bo/rder: 1px solid #ccc;
	width: 80%;
	margin: auto;
	font-size: 14px;
}
#cart .table th,
#cart .table td {
	padding: 10px;
	vertical-align: middle;
	border-bottom: 1px solid #ccc;
}
#cart .table tr.head {
	text-transform: uppercase;
}
#cart .table tr.total {
	font-weight: bold;
}
#cart .btn-remove {
    background: none;
    border: none;
    color: grey;
    cursor: pointer;
    padding: 0px;
}
#cart .btn-remove:hover {
    color: #444;
}
#cart .btn-empty {
	color: grey;
	cursor: pointer;
}
#cart .btn-empty:hover {
	color: #444;
}
#cart .empty {
	text-align: center;
}
#cart .empty h3 {
	margin-top: 10px;
	font-size: 2em;
	text-transform: uppercase;
	color: #ccc;
}
#cart .empty.ajax {
	display: none;
}
#cart .cart-info {
	margin-top: 20px;
	text-align: center;
	font-weight: bold;
	color: #ff5722;
}
#cart .cart-info a {
	text-decoration: underline;
}
#cart .delivery-info {
	text-align: center;
	line-height: 1.2;
}

#paypal-button-container {
	width: 50%;
	margin: 10px auto;
}

/* Transaction success */
.transaction p.left {
	float: left;
}
.transaction i.fa-print {
	float: right;
	cursor: pointer;
}
@media print{
	header,
	footer {
		display: none
	}
	#cart .detail p:last-child {
		display: none
	}
}
.transaction .details {
	clear: both;
	padding-top: 20px;
}
.transaction .details table {
	margin-top: 20px;
	line-height: 1.5em;
	text-align: left;
}
.transaction .details table th {
	font-size: 1em;
	font-weight: bold;
	text-decoration: underline;
}
.transaction .details table td {
	padding: 5px 10px 0 0;
}
.transaction .details table td em {
	font-style: italic;
	color: red;
}
.transaction .details ul {
	margin: 0 0 20px 20px;
	list-style-type: disclosure-closed;
}
.transaction .details p {
	margin: 10px 0;
}
.transaction .details a {
	color: #d64414;
}
.transaction .details a:visited {
	color: #f47b05;
}

/*************************************/
/* SHOP
/*************************************/
#shop ul {

}
#shop li.category {
	po/sition: relative;
	fl/oat: left;
	wi/dth: 246px;
	he/ight: 280px;
	text-align: center;
}
#shop li.category a {
	display: block;
	width: 210px;
	height: 195px;
}
#shop li.category h3 {
	line-height: 1.2;
	font: normal 1rem 'Fjalla One', sans-serif;
}
#shop li.category img {
	border-radius: 5px;
	bo/x-shadow: 5px 5px 20px 0px rgb(104 104 104 / 75%);
}

#shop li.product {
	width: 159px;
	padding: 4px;
	text-align: center;
	list-style: none;
}
#shop li.product .buy {
	margin-top: 5px;
}
#shop li.product .price {
	font-weight: 700;
}
#shop li.product i {
	color: gray;
	cursor: pointer;
}
#shop li.product i:hover {
	color: black;
}
/* Horizontal / vertical slider */
.horVerSlider {
	padding: 30px 0;
}
.horVerSlider .dots {
	bottom: -40px;
}
.horVerSlider .wishlist {
	top: 20px;
	right: -30px;
	display: none;
}
.horizone-nav {
	width: 515px;
}
#horizon-slider {
	width: 400px;
	height: 400px;
}
#horizon-slider ul li {
	width: 400px;
}
#vertical-slider {
	he/ight: 450px;
}
#vertical-slider:before {
    background: #fff;
}
#vertical-slider ul li:first-child {
	ma/rgin-top: 15px;
}
#vertical-slider ul li {
	margin: 0;
}

#shop aside {
	float: left;
}
#shop article.product {
	float: left;
	wi/dth: 50%;
	padding: 40px 0 0 100px;
}
#shop article.product h3 {
	margin-bottom: 20px;
	font-size: 1.5em;
	font-weight: 700;
}
#shop article.product div {
	margin: 10px 0;
}
#shop article.product p {
	padding: 5px 0;
}
#shop article.product .pro-condition {
	line-height: 1.2;
}
#shop article.product .pro-description {
	line-height: 1.2;
}
#shop article.product .pro-description span {
	pa/dding: 5px 0;
	font-weight: 700;
}
#shop article.product .pro-price {
	font-size: 1.5em;
	font-weight: 700;
}
#shop article.product .pro-taxe p {
	line-height: 1.2;
}

#shop #category ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-left: 0;
}
#shop #product ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-left: 0;
}
#shop #product ul li p {
	margin-bottom: 0 !important;
}
/* categories list */
#cat_parent,
#cat_col_parent {
	margin: 0 0 10px 0;
	padding: 0.375rem 0.75rem;
	-moz-appearance: none;
	border-radius: 0.375rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
/* Qantity button */
#shop .btn-number span {
	cursor:pointer;
}
#shop .btn-number input {
	height: 35px;
	width: 50px;
	text-align: center;
	font-size: 22px;
	border:1px solid #ddd;
	border-radius:4px;
	display: inline-block;
	vertical-align: middle;
}
.minus,
.plus {
	width: 35px;
	height: 35px;
	background: #f2f2f2;
	border-radius: 4px;
	padding: 8px 5px 8px 5px;
	border: 1px solid #ddd;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
}

/*************************************/
/* COLLECTION
/*************************************/
#collection li {
	list-style: none;
}
#collection li.category {
	position: relative;
	float: left;
	width: 246px;
	height: 280px;
	text-align: center;
}
#collection li.category a {
	display: block;
	width: 210px;
	height: 195px;
}
#collection li.category h3 {
	line-height: 1.2;
	font-family: 'Fjalla One', sans-serif;
}
#collection li.category img {
	border-radius: 5px;
	bo/x-shadow: 5px 5px 20px 0px rgb(104 104 104 / 75%);
}
#collection #category ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-left: 0;
}
#collection #category ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-left: 0;
}
#collection #product ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding-left: 0;
}
#collection #product ul li {
	width: 180px;
	margin: 10px;
	text-align: center;
	text-transform: uppercase;
}
#collection #product ul li p {
	margin-bottom: 0 !important;
}
#collection .product_image h3 {
	margin: 10px;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
}
#collection .product_image ul {
	display: flex;
	flex-wrap: nowrap;
	flex-direction: column;
	padding-left: 0;
}
#collection .product_image li.image {
	max-width: 800px;
	margin: 10px auto;
}
#collection .product_image img {
	width: 100%;
}
/*************************************/
/* ABOUT
/*************************************/
#about {
	line-height: 1.5;
}

/*************************************/
/* ORDER
/*************************************/
#order table.payment td {
	ve/rtical-align: middle;
}
#order table.product {
	border: 1px solid gray;
	font-family: Courier;
}
#order tr.expand {
	display: none;
}

/******************************************************************************/
/* FOOTER
/******************************************************************************/
footer {
	position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
	padding-top: 20px;
	text-align: center;
	line-height: 1.5;
}
footer > p {
	font-size: .75em;
	margin-bottom: 0;
}
footer > p.stats {
	margin-bottom: 1rem;
}
footer > p.paypal {

}
footer > p.copyright {
	margin-bottom: 1rem;
}
footer > p img {
	vertical-align: bottom;
}
footer .link-admin {
	display: block;
	margin: 20px;
	font-size: .75em;
}
footer .flag {
	position: absolute;
	bottom: 0;
	width: 30px;
	height: 20px;
}
footer .flag.fr {
	background: transparent url(img/flag-fr.png) no-repeat center;
	left: 0;
}
footer .flag.en {
	background: transparent url(img/flag-en.png) no-repeat center;
	right: 0;
}
footer .legal {
	ma/rgin-top: 40px;
}
footer .legal a {
	text-decoration: underline;
}

/******************************************************************************/
/* POPUP
/******************************************************************************/
.popup-container footer {
	height: 50px;
}

/******************************************************************************/
/* TERMS & LEGAL NOTICE & COOKIE
/******************************************************************************/
#terms_sales,
#terms_use,
#legal_notice,
#cookies {
	text-align: justify;
	line-height: 1.2;
	font-size: 0.8em;
}

/******************************************************************************/
/* COOKIE CONSENT
/******************************************************************************/
#cookie-consent {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 8px 0 8px 30px;
	min-height: 26px;
	text-align: left;
	font: normal 14px 'Trebuchet MS', Helvetica,sans-serif;
	line-height: 26px;
	color: #CCC;
	background-color: rgba(20,20,20,0.8);
	z-index: 9999;
}
#cookie-consent a {
	color: #4B8EE7;
	text-decoration: none;
}
#close-cookie-consent {
	display: inline-block;
	float: right;
	width: 20px;
	height: 20px;
	margin: 0;
	font-weight: bold;
	cursor: pointer;
}
#close-cookie-consent:hover {
	color: white;
}
#cookie-consent a.cookie-consent-ok {
	display: inline-block;
	float: right;
	margin: 0 50px 0 10px;
	padding: 0 20px;
    color: black;
    background-color: #F1D600;
	border-radius: 5px;
	cursor: pointer;
}
#cookie-consent a.cookie-consent-ok:hover {
    background-color: #E0C91F;
}

/******************************************************************************/
/* BACK TO TOP
/******************************************************************************/
#back-top {
	text-align: center;
	position: fixed;
	cursor: pointer;
	right: 10px;
	bottom: 10px;
	transition: background-color .3s;
	z-index: 1000;
}
#back-top a {
	width: 45px;
	height: 45px;
	background-color: rgba(0, 0, 0, 0.5);
	color: white;
	font-size: 1.25rem;
	line-height: 45px;
}
#back-top a:hover {
	background: rgba(0, 0, 0, 0.8);
}