@charset "UTF-8";

/******************************************************************************/
/* VARIABLES
/******************************************************************************/
:root {
    --white: #f9f9f9;
    --black: #36383F;
    --gray: #85888C;
	--orange1: #d64414;
	--orange2: #f57a09;
}

/******************************************************************************/
/* COMMON
/******************************************************************************/
body {
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	background-color: white;
	min-height: 100vh;
}
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 {
 	pa/dding-left: 0;
	margin-bottom: 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;
}

/* separator */
.gradient {
    align-items: stretch;
    margin: 2em 0;
    height: 2em;
    line-height: 2em;
    color: white;
    background: black;
}
.divider {
    display: flex;
}
.gradient:before {
    background: linear-gradient(to right, white, black);
}
.divider:before, .divider:after {
    content: "";
    flex: 1;
}
.gradient:after {
    background: linear-gradient(to left, white, black);
}


.double-razor:before, .double-razor:after {
    height: 3px;
    box-shadow: 0 -0.5px 0 black, 0 0.5px 0 black;
    border-width: 0;
}
.line:before, .line:after {
    height: 1px;
    margin: 0 1em;
}

.donotcross:before, .donotcross:after {
    background: white;
    padding: 50px 0;
    height: 0;
    transform: rotate(45deg);
}
.divider:before, .divider:after {
    content: "";
    flex: 1;
}
.donotcross {
    overflow: hidden;
    align-items: center;
    background: #ffd500;
    color: black;
    height: 2em;
    line-height: 2em;
}
/******************************************************************************/
/* HEADER
/******************************************************************************/
header {
	position: relative;
	display: flex;
	justify-content: space-between;
}
header a {
	color: var(--black);
}

/*************************************/
/* 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;
	left: 0;
	margin: 0;
	padding: 0;
	font-size: 22px;
}
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;
	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;
	padding: 0 10px 0 0;
}
*/
header .search-result {
	position: absolute;
	min-width: 200px;
	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-align: left;
	list-style: none;
	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;
 	font-size: 2em;
}

/*************************************/
/* NAVIGATION MENU
/*************************************/
nav {
/*	position: fixed;
	display: flex;
	justify-content: center;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	height: 70px;
	ba/ckground: #3E8DA8;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);*/
	z-index: 99;
}
nav ul {
	display: flex;
	margin: 0 auto;
	margin-left: 0;
}
nav ul li {
	fl/oat: left;
	list-style: none;
	transition: all 0.5s ease;
}
nav ul li:hover {
	color: black;
}
nav > ul > li:last-child {
	margin-right: 0;
}
nav ul li.active {
	color: black;
}
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;
}
nav ul li a:hover, a:focus, a:active {
	color: #999;
	text-decoration: none;
}
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;
}
nav ul li a:active::before {
	background-color: #000;
}
nav ul li a:hover::before, a:focus::before {
	transform-origin: left top;
	transform: scale(1, 1);
}
nav .navbar {
/*	height: 100%;
	max-width: 1250px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: auto;*/
	padding: 0;
}
.navbar .logo a {
/*	font-size: 30px;
	co/lor: #fff;
	text-decoration: none;
	font-weight: 600;*/
}
nav .navbar .nav-links {
	line-height: 70px;
	height: 100%;
}
nav .navbar .links {
	display: flex;
}
nav .navbar .links li {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	list-style: none;
	padding: 0 5px;
}
nav .navbar .links li a {
	he/ight: 100%;
	te/xt-decoration: none;
	white-space: nowrap;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
	transform: rotate(180deg);
}

nav .navbar .links li .arrow {
	/* background: red; */
	height: 100%;
	width: 22px;
	line-height: 70px;
	text-align: center;
	display: inline-block;
	transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu {
	position: absolute;
	top: 70px;
	left: 0;
	line-height: 40px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
	border-radius: 0 0 4px 4px;
	display: none;
	z-index: 2;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
	display: block;
}
.navbar .links li .sub-menu li {
	padding: 0 22px;
	border-bottom: 1px solid rgba(255,255,255,0.1);
}
.navbar .links li .sub-menu a {
	co/lor: #fff;
	font-size: 15px;
	font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow {
	line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu {
	/* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu {
	position: absolute;
	top: 0;
	left: 100%;
	border-radius: 0 4px 4px 4px;
	z-index: 1;
	display: none;
}
.links li .sub-menu .more:hover .more-sub-menu {
	display: block;
}
.navbar .search {
	position: relative;
	height: 40px;
	width: 40px;
}
.navbar .search i {
	position: absolute;
	height: 100%;
	width: 100%;
	line-height: 40px;
	text-align: center;
	font-size: 22px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
}
.navbar .search .input-box {
	position: absolute;
	right: calc(100% - 40px);
	top: 80px;
	height: 60px;
	width: 300px;
	border-radius: 6px;
	opacity: 0;
	pointer-events: none;
	transition: all 0.4s ease;
}
.navbar.showInput .search .input-box {
	position: absolute;
	top: 20px;
	left: 190px;
	opacity: 1;
	pointer-events: auto;
}
.search .input-box::before {
	content: '';
	position: absolute;
	height: 20px;
	width: 20px;
	right: 10px;
	top: -6px;
	transform: rotate(45deg);
}
.search .input-box input {
	border-radius: 4px;
	transform: translate(-50%, -50%);
	height: 35px;
	width: 280px;
	outline: none;
	padding: 0 15px;
	font-size: 16px;
	border: none;
}
.navbar .nav-links .sidebar-logo {
	display: none;
}
.navbar .fa-bars {
	display: none;
}
@media (max-width:920px) {
	nav .navbar {
		max-width: 100%;
		padding: 0 25px;
	}
	
	nav .navbar .logo a {
		font-size: 27px;
	}
	nav .navbar .links li {
		padding: 0 10px;
		white-space: nowrap;
	}
	nav .navbar .links li a {
		font-size: 15px;
	}
}
@media (max-width:800px) {
	nav {
		/* position: relative; */
	}
	.navbar .fa-bars {
		display: block;
	}
	nav .navbar .nav-links {
		position: fixed;
		top: 0;
		left: -100%;
		display: block;
		max-width: 270px;
		width: 100%;
		ba/ckground:  #3E8DA8;
		line-height: 40px;
		padding: 20px;
		background-color: #fef2e4;
		box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
		transition: all 0.5s ease;
		z-index: 1000;
	}
	.navbar .nav-links .sidebar-logo {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.sidebar-logo .logo-name {
		font-size: 25px;
		co/lor: #fff;
	}
	.sidebar-logo  i,
	.navbar .fa-bars {
		font-size: 25px;
		cursor: pointer;
	}
	nav .navbar .links {
		display: block;
		margin-top: 20px;
		padding: 0;
	}
	nav .navbar .links li .arrow {
		line-height: 40px;
	}
	nav .navbar .links li {
		display: block;
	}
	nav .navbar .links li .sub-menu {
		position: relative;
		top: 0;
		box-shadow: none;
		display: none;
	}
	nav .navbar .links li .sub-menu li {
		border-bottom: none;
	}
	.navbar .links li .sub-menu .more-sub-menu {
		display: none;
		position: relative;
		left: 0;
	}
	.navbar .links li .sub-menu .more-sub-menu li {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.links li:hover .htmlcss-arrow,
	.links li:hover .js-arrow {
		transform: rotate(0deg);
	}
	.navbar .links li .sub-menu .more-sub-menu {
		display: none;
	}
	.navbar .links li .sub-menu .more span {
		/* background: red; */
		display: flex;
		align-items: center;
		/* justify-content: space-between; */
	}
	
	.links li .sub-menu .more:hover .more-sub-menu {
		display: none;
	}
	nav .navbar .links li:hover .htmlCss-sub-menu,
	nav .navbar .links li:hover .js-sub-menu {
		display: none;
	}
	.navbar .nav-links.show1 .links .htmlCss-sub-menu,
	.navbar .nav-links.show3 .links .js-sub-menu,
	.navbar .nav-links.show2 .links .more .more-sub-menu {
		display: block;
	}
	.navbar .nav-links.show1 .links .htmlcss-arrow,
	.navbar .nav-links.show3 .links .js-arrow {
		transform: rotate(180deg);
	}
	.navbar .nav-links.show2 .links .more-arrow {
		transform: rotate(90deg);
	}
}
@media (max-width:370px) {
	nav .navbar .nav-links {
		max-width: 100%;
	} 
}

/*************************************/
/* PROFILE MENU
/*************************************/
header .profile {
	position: absolute;
	right: 0;
}
header .profile li {
	text-align: left;
}
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: 48px;
	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-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;
	padding-top: 40px;
	margin-bottom: 10px;
}
main .page-title {
	position: absolute;
	top: -25px;
	width: 100%;
	padding-top: 20px;
	padding-bottom: 5px;
	text-align: center;
	font-size: 18px;
	text-transform: uppercase;
	border-bottom: 1px solid grey;
	z-index: 1;
}
#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;
	text-wrap: nowrap;
	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: -140px;
	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;
	margin: 15px 20px;
}
#shop article.product h2 {
	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 ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 0;
}
#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: normal 1rem '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 p {
	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);
}