@charset 'UTF-8';

:focus {
	outline: none !important;
	box-shadow:none !important;
}

/* Slider */
.slick-loading .slick-list {
	background: #fff url('./ajax-loader.gif') center center no-repeat;
}

/* Icons */

/* Arrows */
.slick-prev, .slick-next {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 50%;
	display: block;
	width: 20px;
	height: 20px;
	padding: 0;
	-webkit-transform: translate(0, -50%);
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	cursor: pointer;
	color: transparent;
	border: none;
	outline: none;
	background: transparent;
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
	color: transparent;
	outline: none;
	background: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
	opacity: 1;
}

.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
	opacity: .25;
}

.slick-prev:before, .slick-next:before {
	font-family: 'slick';
	font-size: 20px;
	line-height: 1;
	opacity: .75;
	color: #000;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-prev {
	left: -25px;
}

[dir='rtl'] .slick-prev {
	right: -25px;
	left: auto;
}

.slick-prev:before {
	content: '←';
}

[dir='rtl'] .slick-prev:before {
	content: '→';
}

.slick-next {
	right: -25px;
}

[dir='rtl'] .slick-next {
	right: auto;
	left: -25px;
}

.slick-next:before {
	content: '→';
}

[dir='rtl'] .slick-next:before {
	content: '←';
}

/* Dots */
.slick-dotted.slick-slider {
	margin-bottom: 30px;
}

.slick-dots {
	position: absolute;
	bottom: -25px;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}

.slick-dots li {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}

.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 20px;
	height: 20px;
	padding: 5px;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
}

.slick-dots li button:hover, .slick-dots li button:focus {
	outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
	opacity: 1;
}

.slick-dots li button:before {
	font-family: 'slick';
	font-size: 6px;
	line-height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	content: '•';
	text-align: center;
	opacity: .25;
	color: black;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
	opacity: .75;
	color: black;
}

.literata {
	font-family: 'Playfair Display', sans-serif;
}

.spartan {
	font-family: 'Spartan', sans-serif;
}

.notosans {
	font-family: 'Noto Sans';
}

.montserrat {
	font-family: 'Montserrat';
}

/*----------------------------------------
[Master Stylesheet]

Project:  QuickCart â€“ One Page eCommerce Template
Version:  1.0
Primary use:  QuickCart â€“ One Page eCommerce Template
----------------------------------------*/

/*----------------------------------------
[Table of contents]

1. Fonts
2. Common styles
3. Header
4. Section
5. Product
6. Checkout
7. Form
8. Cart
9. Footer
----------------------------------------*/

/*==============================
	Fonts
==============================*/

/*==============================
	Common styles
==============================*/
html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

html, body {
	height: 100%;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	background-color: #fff;
	-webkit-font-smoothing: antialiased;
}

button {
	padding: 0;
	border: none;
	background-color: transparent;
	transition: 0.6s;
	cursor: pointer;
}

button:focus {
	outline: none;
}

a {
	transition: 0.6s;
}

a:hover, a:active, a:focus {
	outline: none;
	text-decoration: none;
}

input, textarea, select {
	padding: 0;
	margin: 0;
	border-radius: 0;

}

input:focus, textarea:focus, select:focus {
	outline: none !important;
	box-shadow: none !important;
	border-color: inherit !important;
}

select::-ms-expand {
	display: none;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

::-moz-selection {
	background: #fff;
	color: #373737;
	text-shadow: none;
}

::selection {
	background: #ffcc00;
	color: #fff;
	text-shadow: none;
}

::-webkit-input-placeholder {
	color: rgba(55, 55, 55, 0.7);
	opacity: 1;
}

::-moz-placeholder {
	color: rgba(55, 55, 55, 0.7);
	opacity: 1;
}

:-moz-placeholder {
	color: rgba(55, 55, 55, 0.7);
	opacity: 1;
}

:-ms-input-placeholder {
	color: rgba(55, 55, 55, 0.7);
	opacity: 1;
}

@media (min-width:1200px) {
	.container {
		max-width: 1030px;
	}

}

.table-responsive {
	display: block;
	width: 100%;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
}

.row--grid {
	overflow: visible !important;
}

/*==============================
	Header
==============================*/
.header {
	margin-top: 40px;
}

.header__content {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	position: relative;
}

.header__logo {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	height: 52px;
	width: 70px;
}

.header__logo img {
	max-width: 100%;
	max-height: 100%;
}

.header__tagline {
	display: none;
}

.header__cart {
	position: fixed;
	z-index: 99;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 52px;
	width: 52px;
	border-radius: 0px;
	background-color: #28a745;
	box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.17), 1px 1px 40px 0px rgba(0, 0, 0, 0.1);
	transition: 0.6s;
	top: 40px;
	right: 15px;
	color: #fff;
}

.header__cart  small {
	font-weight: bold;
	font-size: 90%;
}

.header__cart svg {
	stroke: #373737;
	width: 24px;
	height: auto;
	transition: 0.6s;
}

.header__cart span {
	display: none;
	font-size: 14px;
	margin-left: 10px;
}

.header__cart:hover {
	opacity: 0.9;
}

@media (min-width:576px) {
	.header__cart {
		right: calc((100% - 510px) / 2);
	}

	.header__tagline {
		display: block;
		font-size: 13px;
		color: rgba(55, 55, 55, 0.8);
		margin-left: 30px;
		line-height: 21px;
	}

	.header__tagline b {
		font-weight: 600;
	}

}

@media (min-width:768px) {
	.header__cart {
		right: calc((100% - 690px) / 2);
	}

}

@media (min-width:992px) {
	.header__cart {
		right: calc((100% - 930px) / 2);
	}

}

@media (min-width:1200px) {
	.header__cart {
		width: 150px;
		right: calc((100% - 1000px) / 2);
	}

	.header__cart span {
		display: block;
	}

}

/*==============================
	Section
==============================*/
.section {
	padding: 60px 0 0;
}

.section__title {
	font-family: 'Spartan', sans-serif;
	font-weight: 600;
	color: #373737;
	font-size: 26px;
	line-height: 100%;
	margin-bottom: 0;
}

.section__text {
	font-size: 16px;
	color: rgba(55, 55, 55, 0.8);
	line-height: 28px;
	margin-bottom: 0;
	margin-top: 25px;
}

.section__text b {
	font-weight: 600;
}

.section__sort {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	margin-top: 15px;
}

.section__sort button {
	margin-top: 15px;
	margin-right: 30px;
	font-size: 16px;
	color: #373737;
	border-bottom: 3px dotted transparent;
}

.section__sort button.active {
	border-color: #0f4c81;
}

.section__sort button:hover {
	color: #0f4c81;
}

@media (min-width:576px) {
	.section {
		padding: 80px 0 0;
	}

}

@media (min-width:768px) {
	.section {
		padding: 100px 0 0;
	}

	.section__title {
		font-size: 32px;
	}

}

/*==============================
	Product
==============================*/
.product {
	position: relative;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-start;

	margin-top: 30px;
	border-radius: 0px;
	background-color: #fff;
	box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.17), 1px 1px 40px 0px rgba(0, 0, 0, 0.1);
}


.product__img {
	display: block;
	z-index: 2;
	width: 100%;
	height: auto;
}

.product__title {
	position: relative;
	z-index: 2;
	color: #373737;
	font-weight: 600;
	line-height: 140%;
	margin-bottom: 15px;
	font-size: 16px;
	margin-top: 15px;
}

.variants {
	margin-top: 30px;
}

.product__price {
	position: absolute;
	z-index: 2;
	color: rgba(55, 55, 55, 0.8);
	line-height: 100%;
	font-size: 18px;
	font-family: 'Spartan', sans-serif;
	font-weight: 600;
	bottom: 44px;
	left: 30px;
}

.product__add {
	position: absolute;
	z-index: 3;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	right: 30px;
	bottom: 30px;
	width: 52px;
	height: 52px;
	line-height: 52px;
	border-radius: 50%;
	box-shadow: 8px 8px 20px 0px rgba(0, 0, 0, 0.1), -8px -8px 20px 0px rgba(255, 255, 255, 0.9);
	background-color: #ffcc00;
	transition: 0.6s;
}

.product__add i {
	color: #fff;
	width: 28px;
	height: auto;
	position: relative;
	z-index: 2;
	transition: 0.6s;
	transform: rotate(0deg);
}

.product__add:hover {
	box-shadow: 8px 8px 20px 0px rgba(0, 0, 0, 0.15), -8px -8px 20px 0px #fff;
}

.product__add:hover i {
	transform: rotate(180deg);
}

.product__add--true i {
	color: #666;
}

.product__add--true:hover i {
	transform: rotate(0deg);
}

.product__add.remove {
	background: #ccc
}
.product__add.remove i {
	color: #eee
}
/*==============================
	Checkout
==============================*/
.checkout {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	margin-top: 30px;
	border-radius: 0px;
	background-color: #fff;
	box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.17), 1px 1px 40px 0px rgba(0, 0, 0, 0.1);
	padding: 30px;
}

.checkout__title {
	position: relative;
	z-index: 2;
	font-size: 16px;
	font-weight: 600;
	color: rgba(55, 55, 55, 0.7);
	margin-bottom: 0;
	line-height: 100%;
}

/*==============================
	Form
==============================*/
.form__group {
	position: relative;
	z-index: 2;
	margin-top: 30px;
	height: 52px;
	width: 100%;
}

.form__group input {
	width: 100%;
	height: 52px;
	border-radius: 0px;
	background-color: #fff;  /*box-shadow: inset -4px -4px 8px 0px rgba(255,255,255,0.7), inset 4px 4px 8px 0px rgba(0,0,0,0.05);*/
	border: 1px solid #666;
	padding: 0 30px;
	font-size: 14px;
	color: #373737;
	position: relative;
	transition: 0.6s;
}

.form__group input:focus {

	/*box-shadow: inset -4px -4px 8px 0px rgba(255,255,255,0.8), inset 4px 4px 8px 0px rgba(0,0,0,0.07);*/
}

.form__group textarea {
	width: 100%;
	height: 104px;
	border-radius: 0px;
	background-color: #fff;  /*box-shadow: inset -4px -4px 8px 0px rgba(255,255,255,0.7), inset 4px 4px 8px 0px rgba(0,0,0,0.05);*/
	border: 1px solid #666;
	padding: 15px 30px;
	margin-bottom: 15px;
	display: block;
	clear: both;
	font-size: 14px;
	color: #373737;
	position: relative;
	transition: 0.6s;
}

.form__group textarea:focus {

	/*box-shadow: inset -4px -4px 8px 0px rgba(255,255,255,0.8), inset 4px 4px 8px 0px rgba(0,0,0,0.07);*/
}

.form__btn {
	position: relative;
	z-index: 2;
	margin-top: 30px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	height: 52px;
	width: 100%;
	border-radius: 0px;  /*box-shadow: 8px 8px 30px 0px rgba(15,76,129,0.3), -8px -8px 30px 0px #fff;*/
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.6px;
	transition: 0.6s;
}

.form__btn:hover {
	color: #fff;  /*box-shadow: 8px 8px 30px 0px rgba(15,76,129,0.4), -8px -8px 30px 0px #fff;*/
}

/*==============================
	Cart
==============================*/
.cart {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	margin-top: 30px;
	border-radius: 0px;
	background-color: #fff;
	box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.17), 1px 1px 40px 0px rgba(0, 0, 0, 0.1);
	padding: 30px;
	padding-bottom: 15px;
}

.cart__table {
	width: 100%;
	min-width: 420px;
}

.cart__table th {
	font-size: 16px;
	font-weight: 600;
	color: rgba(55, 55, 55, 0.7);
	line-height: 100%;
	padding: 0 20px 15px 0;
}

.cart__table th:last-child {
	width: 24px;
	padding: 0 0 15px 0;
}

.cart__table td {
	font-size: 16px;
	font-weight: 400;
	color: #373737;
	padding: 15px 20px 15px 0;
}

.cart__table td:last-child {
	width: 24px;
	padding: 15px 0;
}

.cart__img {
	width: 120px;
	height: 74px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;  /*background-color: #fff;*/

	/*box-shadow: inset -4px -4px 8px 0px rgba(255,255,255,0.7), inset 4px 4px 8px 0px rgba(0,0,0,0.05);*/

	/*border-radius: 20px;*/

	/*padding: 10px;*/
}

.cart__img img {
	width: auto;
	height: auto;
	max-width: 100%;
	max-height: 100%;
}

.cart__delete {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
}

.cart__delete svg {
	stroke: rgba(55, 55, 55, 0.6);
	width: 24px;
	height: auto;
	transition: 0.6s;
}

.cart__delete:hover svg {
	stroke: #0f4c81;
}

.cart__price {
	font-family: 'Spartan', sans-serif;
	font-weight: 500;
	font-size: 14px;
}

.cart__info {
	margin-top: 90px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	width: 100%;
}

.cart__total {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
}

.cart__total p {
	font-size: 14px;
	color: #373737;
	margin-bottom: 10px;
}

.cart__total span {
	font-size: 24px;
	color: #373737;
	line-height: 100%;
	font-family: 'Spartan', sans-serif;
	font-weight: 600;
}

.cart__systems {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	font-size: 24px;
	color: rgba(55, 55, 55, 0.4);
	width: 100%;
	margin-top: 20px;
}

.cart__systems i {
	margin-right: 15px;
}

.cart__systems i:last-child {
	margin-right: 0;
}

@media (min-width:576px) {
	.cart__systems {
		margin-top: 0;
		width: auto;
	}

}

/*==============================
	Footer
==============================*/
.footer {
	padding: 10px 0px;
}

.footer__copyright {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	font-size: 13px;
	color: rgba(55, 55, 55, 0.8);
	font-weight: 400;
	margin-bottom: 0;
}

.footer__copyright a {
	color: rgba(55, 55, 55, 0.8);
}

.footer__copyright a:hover {
	color: #0f4c81;
}

.footer__copyright span {
	margin-left: 30px;
}

.footer__social {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	margin-top: 20px;
}

.footer__social a {
	margin-right: 20px;
	font-size: 22px;
}

.footer__social a:last-child {
	margin-right: 0;
}

.footer__social a.facebook {
	color: #3b5999;
}

.footer__social a.instagram {
	color: #0f4c81;
}

.footer__social a.instagram i:before {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	color: #0f4c81;
}

.footer__social a.twitter {
	color: #1da1f2;
}

.footer__social a.vk {
	color: #45668e;
}

@media (min-width:576px) {
	.footer {
		padding: 10px 0;
	}

}

@media (min-width:768px) {
	.footer {
		padding: 10px 0;
	}

	.footer__content {
		display: flex;
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}

	.footer__social {
		margin-top: 0;
	}

}
.productDetails .variantContainer {
	position: relative;display: block;width: 100%;height: 95px;border: 1px solid #eee;background: #fafafa;margin-top: 30px;
}
.productDetails .variants {
width: 30%;margin-left: 30px;
}
.productDetails .product__price {
right: 120px;top: 38px;left: initial;
}
.productDetails .product__add {
right:25px;top:20px;
}
@media (max-width:768px) {
	.shippingDetails, .shippingDetails * {
		text-align: center !important;
	}
	.orderDetails, .orderDetails * {
		text-align: center !important;
	}
	.slick-arrow {
		display: none !important;
	}
	.order span.money {
		white-space: nowrap;
	}

	.cart__table {
		min-width: inherit;
	}
	.paymentMethods > div {
		-ms-flex-direction: column;
	    flex-direction: column;
	    -ms-flex-align: start;
	    align-items: flex-start;
	    -ms-flex-pack: left;
	    justify-content: left;
	        width: 100%;
	    display: block;
	    text-align: left;
	    overflow: hidden;
	}
	.paymentMethods > div > button {
		width: 100%;
    display: block;
    text-align: left;
    line-height: 32px !important;
    font-size: 16px;
	}
	.paymentMethods {
		border: none !important;
    	padding: 0 !important;
	}
	.form__group {
		margin-top: 15px;
	}
	section.bottom {
		text-align: center;
	}
	.modal {
		max-width: 100% !important;
		width: 100%;
	}
	.cart__table td {
		padding:10px 0px;
	}
	.cart__table th.text-center {
		width: 100px;
	}
	.cart__table td.text-center {
		width: 100px;
	}
	.cart {
		padding:15px;
		padding-bottom: 0px;
	}
	.productDetails .variantContainer {
		height: 150px;
	}

	.productDetails .variants {
		width: auto !important;
	    margin-left: 30px !important;
	    margin-right: 30px !important;
	}
	.productDetails .product__price {
		left: 30px;
		top: 100px;
		right: initial;
	}
	.productDetails .product__add {
		top: 80px;
	}
	div.slider {
	}
	.product:hover .img .overlay {
		display: none !important;
	}
	.product:hover .img .magnifier {
		display: none !important;
	}
	.header__cart {
		    border-radius: 50%;
    background: #666;
	}
}


div.carousel {
	margin-top: 30px;
}

div.carousel .slider {
	box-shadow: 5px 5px 10px 1px rgba(0, 0, 0, 0.17), 1px 1px 40px 0px rgba(0, 0, 0, 0.1);
}

body {
	background: #ffcc00;
}

.slick-slider {
}

.slick-initialized .slick-slide {
}

.slick-initialized .slick-slide img {
	width: 100%;
}

.mustLinks {
	margin: 0px;
	color: #eee;
	font-family: 'Spartan', sans-serif;
	font-weight: bold;
}

.mustLinks a {
	color: #eee;
	font-size: 11px;
}

.mustLinks a:hover {
	color: #fff;
}

.mustLinks i {
	font-size: 20px;
}

.mustLinks {
	display: block;
}

.mustLinks li {
	display: inline-block;
}

.mustLinks li:before {
	content: '|';
	margin-left: -8px;
	font-weight: 200;
	margin-right: 4px;
	color: #eee;
	vertical-align: -1px;
	font-size: 12px;
}

.mustLinks li:first-child:before {
	margin: 0px;
	content: '';
}

footer {
	padding: 10px 0px;
	background: #fff;
}

section.bottom {
	background: #666;
	padding: 15px 0px;
	margin-top: 60px;
}

section.about {
	background: #fff;
	margin-top: 90px;
	padding: 90px;
}

.cart__table thead {
	border-bottom: 1px solid #666;
}

.cart__table tbody tr {
	border-top: 1px solid #666;
}

.cart__table tbody tr:first-child {
	border-top: none;
}

h1.page-header {
	border-bottom: 1px solid #eee;
	padding-bottom: 15px;
	margin-bottom: 30px;
}

.paymentMethods {
	margin-top: 30px;
    border-top: 1px solid #eee;
    display: block;
    width: 100%;
    text-align: center;
    padding-top: 30px;
}

.paymentMethods * {
	cursor:pointer;
}
.successBlock {
	    background: #fff;
    padding: 60px;
    margin-top: 60px;
    line-height: 32px;
}
.successBlock h2 {
	    font-family: 'Spartan', sans-serif;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.mobileProductAddAlert {
	display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    height: 80px;
    z-index: 9;
    background: #008d36;
    color: #fff;
    vertical-align: middle;
    line-height: 80px;
    font-size: 16px;
    vertical-align: middle;
    line-height: 80px;
    font-size: 20px;
    /* border-top: 4px solid #fff; */
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}
.mobileProductDeleteAlert {
	display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    height: 80px;
    z-index: 9;
    background: #008d36;
    color: #fff;
    vertical-align: middle;
    line-height: 80px;
    font-size: 16px;
    background: #ffcc00;
    color: #333;
    vertical-align: middle;
    line-height: 80px;
    font-size: 20px;
    /* border-top: 4px solid #fff; */
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}
.mobileProductModifyAlert {
	display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    height: 80px;
    z-index: 9;
    background: #008d36;
    color: #fff;
    vertical-align: middle;
    line-height: 80px;
    font-size: 16px;
    background: #eee;
    color: #666;
    vertical-align: middle;
    line-height: 80px;
    font-size: 20px;
    /* border-top: 4px solid #fff; */
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
}
.product .img {
	position: relative;
}
.product .img .overlay {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	z-index: 1;
	display: none;
}
.product:hover .img .overlay {
	display: block;
}
.product:hover .img .magnifier {
	display: block;
}
.product .img .magnifier {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 2;
	top: 0;
	left:0;
	color: rgba(255,255,255,0.7);
	display: none;
}
.product .img .magnifier i {
	margin-left: -25px;
	margin-top: -25px;
	position: absolute;
	top: 50%;
	left: 50%;

}
.productDetails {

}
.productDetails h2 {
	line-height: 32px;
	margin:30px 0px;
}
.productDetails .spot {
	text-align: justify;
    font-size: 18px;
    line-height: 30px;
    color: #666;
    border-bottom: 1px dashed #999;
    margin-bottom: 30px;
    padding-bottom: 30px;
}
.productDetails .description {
	text-align: justify;
	font-size: 16px;
	line-height: 28px;
	padding: 30px;
	background: #eee;
	color: #333;
}
.order h2 {
	font-size: 32px;
	margin-bottom: 30px;
}

.about-market .item {
	background: #eee;
    padding: 30px;
}