@font-face {
	font-family: 'Avenir';
	src: url(../fonts/AvenirLTStd-Book.ttf);
	font-weight: bolder;
	font-style: normal;
}

@font-face {
	font-family: 'Avenir-bold';
	src: url(../fonts/avenir-next-bold.ttf);
	font-weight: bolder;
	font-style: normal;
}

.view {
	-webkit-transition: -webkit-transform 0.4s ease-in-out;
	transition: transform 0.4s ease-in-out;
}

.view--compare {
	-webkit-transform: scale3d(0.9, 0.9, 1);
	transform: scale3d(0.9, 0.9, 1);
}

/* product grid */
.grid {
	margin: 0 auto;
	padding: 2em 1em;
	max-width: 1200px;
	text-align: center;
	overflow: hidden;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* if flexbox is supported, let's use it to lay out the products */
.flexbox .grid {
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: stretch;
	-ms-flex-line-pack: stretch;
	align-content: stretch;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}

/* product */
.product {
	position: relative;
	display: inline-block;
	vertical-align: top;
	margin: 0 .3em 5em;
	padding: 1.5em 1.5em 2em;
	background: #fff;
	box-shadow: 0px 5px 31px -1px rgba(0, 0, 0, 0.15);
	border-radius:0 !important;
}

.product--selected {
	box-shadow: 0px 5px 31px -1px rgba(0, 0, 0, 0.15);
}

.flexbox .product {
	display: block;
	-webkit-flex: 0 0 16em;
	-ms-flex: 0 0 16em;
	flex: 0 0 16em;
}

.product__info>span {
	display: block;
	padding: 1em 0;
}

/* since we'll be using the product info inside of the comparison, we'll hide the extra info for the grid view */
.grid .extra {
	display: none;
}

.product__image {
	display: block;
	margin: 0 auto;
	max-width: 100%;
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

/*.product:hover .product__image {
	-webkit-animation: swing 0.6s forwards;	
	animation: swing 0.6s forwards;	
}*/

/* https://daneden.github.io/animate.css/ */
@-webkit-keyframes swing {
	25% {
		-webkit-transform: rotate3d(0, 0, 1, 6deg);
		transform: rotate3d(0, 0, 1, 6deg);
	}

	50% {
		-webkit-transform: rotate3d(0, 0, 1, -4deg);
		transform: rotate3d(0, 0, 1, -4deg);
	}

	75% {
		-webkit-transform: rotate3d(0, 0, 1, 2deg);
		transform: rotate3d(0, 0, 1, 2deg);
	}

	100% {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg);
	}
}

@keyframes swing {
	25% {
		-webkit-transform: rotate3d(0, 0, 1, 6deg);
		transform: rotate3d(0, 0, 1, 6deg);
	}

	50% {
		-webkit-transform: rotate3d(0, 0, 1, -4deg);
		transform: rotate3d(0, 0, 1, -4deg);
	}

	75% {
		-webkit-transform: rotate3d(0, 0, 1, 2deg);
		transform: rotate3d(0, 0, 1, 2deg);
	}

	100% {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg);
	}
}

.product__title {
	font-size: 100%;
	margin: 1em 0 0;
	min-height: 3em;
}

.product__price {
	font-weight: bold;
	color: #da8824;
}

.action {
	display: inline-block;
	font-size: 1em;
	white-space: nowrap;
	padding: 0.85em 1.25em;
	cursor: pointer;
	border: none;
	background: transparent;
	text-align: center;
}

.action:focus {
	outline: none;
}

.action--button {
	background: #2C2D34;
	color: #fff;
	border-radius: 2px;
	-webkit-transition: background 0.2s;
	transition: background 0.2s;
}

.action--button:hover {
	background: #da8824;
}

.action__text {
	font-family: 'Avenir', 'Avenir-bold', Helvetica, Arial, sans-serif;
	font-weight: bold;
	letter-spacing: 1px;
	font-size: .813em;
	vertical-align: middle;
	display: inline-block;
}

.action__text--invisible {
	position: absolute;
	top: 100%;
	opacity: 0;
	pointer-events: none;
}

.action--button i+span {
	margin-left: 1em;
}

.flexbox .action--buy {
	-webkit-align-self: center;
	-ms-flex-item-align: center;
	align-self: center;
	margin-top: 1em;
	-webkit-flex: none;
	-ms-flex: none;
	flex: none;
}

.action--close {
	position: absolute;
	overflow: hidden;
	top: 0;
	right: 0;
	font-size: 1.5em;
	color: #ddd;
	pointer-events: none;
	opacity: 0;
	-webkit-transition: opacity 0.3s, background 0.2s;
	transition: opacity 0.3s, background 0.2s;
}

.view--compare+.compare .action--close {
	pointer-events: auto;
	opacity: 1;
	-webkit-transition-delay: 0.4s, 0s;
	transition-delay: 0.4s, 0s;
}

.action--close:hover,
.action--close:focus {
	color: #ffffff;
}

.action--compare {
	margin: 0 0 0 4px;
	opacity: 0;
	pointer-events: none;
	cursor: default;
	background-color:#dcddde;
	box-shadow: rgba(0, 0, 0, 0.6);
	color: #5e5f61;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.action--reset {
	margin: 0 0 0 4px;
	opacity: 0;
	pointer-events: none;
	background-color: rgba(255, 7, 7, 0.6);
	cursor: default;
	color: #fff;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}



.compare-basket--active .action--compare,
.compare-basket--active .action--reset {
	opacity: 1;
}

.compare-basket--active .action--compare:nth-child(3),
.compare-basket--active .action--compare:nth-child(4) {
	background-color: #da8824;
	color: #fff;
	pointer-events: auto;
	cursor: pointer;
	transition: 0.3s;
}

.compare-basket--active .action--compare:nth-child(3):hover,
.compare-basket--active .action--compare:nth-child(4):hover {
	background-color:#d3974e;
}

.compare-basket--active .action--reset:nth-child(3),
.compare-basket--active .action--reset:nth-child(4),
.compare-basket--active .action--reset:nth-child(5) {
	background-color: rgb(248, 2, 2);
	color: #fff;
	pointer-events: auto;
	cursor: pointer;
	transition: 0.3s;
}

.compare-basket--active .action--reset:nth-child(3):hover,
.compare-basket--active .action--reset:nth-child(4):hover {
	background-color:#f56666;
}

.action--remove {
	position: absolute;
	overflow: hidden;
	color: #ddd;
	top: 0px;
	right: 2px;
	padding: 0;
	font-size: 0.65em;
}

.action--compare-add {
	color: #da8824;
	position: absolute;
	top: 10px;
	right: 5px;
}

.action--compare-add:hover .action__text--invisible {
	opacity: 1;
	top: 35px;
	right: 10px;
	color: #ddd;
	font-size: 75%;
	letter-spacing: 0;
	background: #2F3035;
	border-radius: 2px;
	padding: 3px 5px;
}

.action--remove:hover,
.action--compare-add:hover {
	color: #333;
}

.action--compare-add .fa-check,
.action--compare-add input[type=checkbox]:checked~.fa-plus {
	display: none;
}

.action--compare-add input[type=checkbox]:checked~.fa-check {
	display: block;
	color: #da8824;
}

.check-hidden {
	position: absolute;
	opacity: 0;
}

.compare-basket {
	width: 100%;
	padding: 0.8em 0em 0.25em 0em;
	margin-top: 10px;
	text-align: right;
	background: transparent;
	z-index: 1;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0);
	-webkit-transition: -webkit-transform 0.3s cubic-bezier(0.2, 1, 0.3, 1), margin-bottom 0.5s;
	transition: transform 0.3s cubic-bezier(0.2, 1, 0.3, 1), margin-bottom 0.5s;
	overflow: hidden;
	margin-bottom: -50px;
}

.compare-basket--active {
	-webkit-transform: translate3d(0, 0, 0);
	margin-bottom: 0px;
	transform: translate3d(0, 0, 0);
}

.flexbox .compare-basket {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.product-icon {
	display: inline-block;
	vertical-align: middle;
	background-color: white;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
	width: 50px;
	height: 50px;
	padding: 5px;
	margin: 0 3px;
	border-radius: 2px;
	position: relative;
}

.product-icon::after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border-radius: 4px;
	z-index: -1;
	box-shadow: -56px 0 #da8824;
	opacity: .6;
}

.product-icon .product__image {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.compare-basket--full .product-icon::after {
	display: none;
}

.flexbox .product-icon {
	display: block;
}

/* comparison overlay */
.compare {
	position: fixed;
	z-index: 100;
	width: 90%;
	height: 0;
	overflow: hidden;
	top: 0;
	left: 0;
	z-index: 1001;
	-webkit-transition: height 0s 0.4s;
	transition: height 0s 0.4s;
	border-radius: 6px;
	margin: 20px 5%;
}

@media (max-width: 954px) {
	.compare {
		transform: translateY(150px);
	}
}

.flexbox .compare {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
}

.view--compare+.compare {
	pointer-events: auto;
	height: auto;
	-webkit-transition: none;
	transition: none;
}

.compare::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.5);
	opacity: 0;
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
}

.view--compare+.compare::before {
	opacity: 1;
}

.compare__item {
	height: 100%;
	min-height: 100vh;
	width: 50%;
	background: #da8824;
	box-shadow: 0px 5px 10px rgb(0,0,0,0.3);
	color:#ffffff;
	text-align: center;
	cursor: default;
	padding: 2em 0;
	margin-top: -1px;
	-webkit-transition: -webkit-transform 0.4s ease-in-out;
	transition: transform 0.4s ease-in-out;
}

.compare__item h3.product__title {
	font-size:30px;
}

.compare__item span.product__price {
	color:#fff;
	font-weight: 700;
	font-size:18px;
}

.compare__item span.product__vendor {
	color:#fff;
}

.compare__item .product__rating-star span {
	font-size:20px;
}


@media (max-width: 954px) {
	.compare__item {
		min-height: auto;
	}
	.compare__item h3.product__title {
		font-size:14px;
	}
	
	.compare__item span.product__price {
		color:#fff;
		font-weight: 700;
		font-size:14px;
	}
	
	.compare__item span.product__vendor {
		color:#fff;
	}
	
	.compare__item .product__rating-star span {
		font-size:14px;
	}
}


.no-flexbox .compare__item {
	display: inline-block;
	width: 50%;
}

.compare__item:nth-of-type(2) {
	background: #d8923c;
}

.compare__item .product__title {
	margin: 1em 0;
	min-height: 0;
}
.compare__item span[class^="product__"] {
	display: block;
	padding: 0.85em 0;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
}

.compare__item span[class^="product__"].hover {
	background: #000;
}

/* three items */
.compare__item:first-of-type:nth-last-of-type(3),
.compare__item:first-of-type:nth-last-of-type(3)~.compare__item {
	width: 33.3333%;
}

.flexbox .compare__item {
	-webkit-flex: auto;
	-ms-flex: auto;
	flex: auto;
}

.compare__item:nth-child(odd) {
	-webkit-transform: translate3d(0, -100vh, 0);
	transform: translate3d(0, -100vh, 0);
}

.compare__item:nth-child(even) {
	-webkit-transform: translate3d(0, 100vh, 0);
	transform: translate3d(0, 100vh, 0);
}

.view--compare+.compare .compare__item:nth-child(odd),
.view--compare+.compare .compare__item:nth-child(even) {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

.compare__effect {
	width: 100%;
	height: 100%;
	opacity: 0;
	-webkit-transition: -webkit-transform 1s cubic-bezier(0.2, 1, 0.3, 1), opacity 1s cubic-bezier(0.2, 1, 0.3, 1);
	transition: transform 1s cubic-bezier(0.2, 1, 0.3, 1), opacity 1s cubic-bezier(0.2, 1, 0.3, 1);
}

.compare__item:nth-child(odd) .compare__effect {
	-webkit-transform: translate3d(0, -250px, 0);
	transform: translate3d(0, -250px, 0);
}

.compare__item:nth-child(even) .compare__effect {
	-webkit-transform: translate3d(0, 250px, 0);
	transform: translate3d(0, 250px, 0);
}

.view--compare+.compare .compare__item:nth-child(odd) .compare__effect,
.view--compare+.compare .compare__item:nth-child(even) .compare__effect {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}









@media screen and (min-width: 59.688em) {
	.flexbox .compare__effect {
		display: -webkit-flex;
		display: -ms-flex;
		display: flex;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-justify-content: space-between;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.flexbox .compare__item .product__image {
		-webkit-align-self: center;
		-ms-flex-align: center;
		align-self: center;
		-webkit-flex: none;
		-ms-flex: none;
		flex: none;
	}
}

@media screen and (max-width: 59.688em) {
	.grid {
		padding: 2em 0.5em;
		font-size: 80%;
	}

	.product {
		margin: 0 0.5em 1em;
		min-width: 17em;
	}

	.product__info {
		padding: 15px !important;
	}

	.product__info>span {
		font-size: 70%;
	}

	.product__title {
		font-size: 100%;
	}

	.product_rating_highlight span {
		font-size: 5pt !important;
	}

	span.product__price {
		font-size:70% !important; 
	}


	.flexbox .product {
		-webkit-flex: 0 0 13em;
		-ms-flex: 0 0 13em;
		flex: 0 0 13em;
	}

	.flexbox .compare {
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.no-flexbox .compare__item,
	.compare__item,
	.compare__item:first-of-type:nth-last-of-type(3),
	.compare__item:first-of-type:nth-last-of-type(3)~.compare__item {
		width: 100%;
	}

	.compare__item {
		text-align: left;
		padding: 1.5em;
		font-size: 90%;
	}

	.compare__item .product__image {
		height: 40px;
		float: left;
		margin: 0px 20px 0px 10px;
	}

	.compare__item .product__title {
		margin: 0 40px 0 43px;
		font-size: 0.85em;
		display: block;
	}

	.action--close {
		padding: 0.5em 0.75em;
	}

	.compare__item .action--buy {
		margin: 0;
		display: block;
	}

	.compare__item span[class^="product__"] {
		display: inline-block;
		padding: 0.25em;
		margin: 0 0 0.5em 0;
		font-size: 0.85em;
	}

	.compare__item:nth-child(odd) {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

	.compare__item:nth-child(even) {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}

	.compare__item:nth-child(odd) .compare__effect {
		-webkit-transform: translate3d(-250px, 0, 0);
		transform: translate3d(-250px, 0, 0);
	}

	.compare__item:nth-child(even) .compare__effect {
		-webkit-transform: translate3d(250px, 0, 0);
		transform: translate3d(250px, 0, 0);
	}
}


.mob-info {
	display: none;
	color: #cecece;
}

.dropdown-menu {
	color: #333;
	transform: translate(0px, 3px);
}

.dropdown-toggle {
	background-color: #fff !important;
}

.btn-toggle-nav {
	display: none;
}

@media (max-width: 954px) {

	.pc-info {
		display: none;
	}

	.mob-info {
		display: block;
	}

	.dropdown-menu {
		transform: translate(-130px, 5px);
	}

	.btn-toggle-nav {
		display: block;
		background-color: transparent;
		font-size: 35px;
		padding: 6px 10px 2px 10px;
		color: #cecece;
		transition: .3s;
	}

	.btn-toggle-nav:hover {
		color: #555;
	}
}

.lightbox {
	position: fixed;
	top: 10px;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(255, 255, 255, .9);
	z-index: 999;
	margin: 0px;
	opacity: 0;
	width: 0%;
}


.categoryBar {
	padding-left: 28px;
}

.lightbox.active {
	opacity: 1;
	width: 110%;
}

@media (max-width: 954px) {

	.box-dashboard .col-lg-10 {
		padding-left: 0px;
		margin-left: -8px;
	}
}

.main-info-ext {
	display: block;
}


.main-info.pc-info {
	font-weight: normal;
	text-align: right;
}

.main-info-ext span {
	display: block;
}

.main-info-ext {
	font-style: italic;
}

.dropdown-nav {
	transform: translateY(-50%);
}

.dropdown {
	padding: 0px 3px;
}

.hr-nav {
	width: 1px;
	background-color: #cecece;
	height: 40px;
	transform: translateY(-63px);
	position: absolute;
}

@media (max-width: 954px) {
	.dropdown-nav {
		transform: translateY(0%);
	}

	.hr-nav {
		display: none;
	}

	.dropdown {
		padding: 0px;
	}

	.dropdown.hr {
		display: none;
	}

	.box-dashboard {
		margin-top: 60px !important;
	}
}

/* Flip Product Card */

.flip-card {
	border-radius: 0 !important;
	transition: transform .5s;
	transform-style: preserve-3d;
	perspective: 1200px;
	position: relative;
	min-height: 450px;
	min-width: 250px;
}

@media (max-width: 954px) {
	.flip-card {
		min-height: 350px;
	}

	.search-form {
		margin-top:30px;
	}
}

.flip-card:hover .product__info__image {
	bottom: 55%;
}

.flip-card:hover .product__info {
	top: 45%;
}

.flip-card:hover .product_rating_highlight {
	display: none;
	transition:.2s;

}

.flip-card:hover .product__price {
	font-size: 100%;
}


.flip-card:hover .overlay {
	opacity: 1;
}

.flip-card.active {
	transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
	backface-visibility: hidden;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	border-radius: 0 !important;
	overflow: hidden;
}

.product__info__image,
.product__info {
	position: absolute;
	width: 100%;
	overflow: hidden;
}

.product__info__image {
	top: 0;
	bottom: 20%;
	background: #fff;
	transition: bottom .3s;
}

.product__info__image .overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(226, 150, 36, 0.925);
	opacity: 0;
	transition: opacity .3s;
}

.product__info__image .overlay button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	background: none;
	border: 2px solid white;
	font-size: 12pt;
	border-radius: 3px;
	transition: .3s;
	font-weight: bold;
	padding: 10px 20px;
}

.product__info__image .overlay button:hover {
	background: #fff;
	color: #da8824;
}

.product__image {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	transform: translateY(-50%);
}

.product__info {
	top: 80%;
	bottom: 0;
	background: #f7f7f7;
	transition: top .3s;
	text-align: left;
	padding: 20px;
}

.product__info>.product__image {
	display: none;
}

.product__info>span {
	color: #808080;
}

.product__info .product__title {
	color: #333;
	min-height: 0;
	margin-top: 0;
}

.product__info>.product__price,
.product__info>.product__min-order,
.product__info>.product__catalogue,
.product__info>.product__last-update {
	padding: 0px;
}

.product__info>.product__price {
	margin: 5px 0;
	font-weight: normal;
}

.product__info>.product__min-order {
	margin: 20px 0 10px;
}

.product_rating_highlight span {
	color:#fec107;
	font-size: 10pt;
	transition:.2s;
}

span.product__price {
	font-size: 90%;
}


.flip-card-back {
	background: #fff;
	transform: rotateY(180deg);
}

.flip-card-back .close-btn {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 24pt;
	line-height: 0;
	background-color: rgba(255, 255, 255, 0);
	z-index: 2;
}

.product__rating {
	background-color: #fff;
	padding:8px;
	margin: 8px 0;
}

.product__rating span {
	color: rgb(51, 51, 51);
	font-size: 10pt;
	font-weight: bolder;
}

.product__rating .product__rating-star span {
	color: #fec107;
}

/* End of Flip Product Card */


/* Custom Compare Style */

.compare .product__image {
	display: inline-block;
	position: static;
	margin-top: 150px;
}

.compare .product__rating {
	background-color: rgba(0, 0, 0, 0);
}

.compare .product_rating_highlight {
	display: none !important;
}


/* End of Custom Compare Style */

/* Carousel */

.carousel {
	position: relative;
	width: 100%;
	height: 100%;
}

.carousel .carousel-inner {
	position: relative;
	width: 100%;
	height: 100%;
}

.carousel .carousel-inner .item {
	position: absolute;
	top: 25%;
	padding: 25px;
	width: 100%;
	text-align: center;
}

.carousel img {
	width: 80%;
	margin:20px;
}

.carousel-control {
	color: grey;
}

.carousel-control .fa {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}

.carousel-control:hover,
.carousel-control:focus {
	color: grey;
}

.carousel-control.left,
.carousel-control.right {
	background-image: none;
}

/* End of Carousel */