/**
 --- Product list ---
*/
.list-product-box {
	cursor: pointer;
}
.list-product-box p {
	margin-bottom: 0;
}
.list-product-image {
	width: 100%;
	height: 0;
	padding-bottom: 100%;

	background: no-repeat center;
}
.list-product-title {
	margin-top: 20px;
	font-size: 20px;
	font-weight: bold;
}
/**
 --- Product Rows --- 
*/
.row-product-box {
	border-bottom: 1px solid #eee;
}
.row-product-image {
	width: 100%;
	height: 0;
	padding-bottom: 100%;
	background-size: contain !important;

	background: no-repeat center;
}


.nav-cart {
	float: right;
	position: relative;
}
.nav-cart .cart-counter {
	position: absolute;
	background-color: #000;
	color: #fff;
	min-width: 20px;
	height: 20px;
	right: 0;
	line-height: 20px;
	text-align: center;
	font-size: 12px;
	border-radius: 10px;
}
.nav-cart > img.cart-icon {
	max-height: 20px;
	max-width: 20px;
}
.cart {
	width: 400px;
	position: absolute;
	top: 59px;
	right: 0;
	display: none;
}
.cart-table {
	font-size: 12px;
	border-left: 1px solid #eee;
	border-bottom: 1px solid #eee;
}
.cart-table td {
	line-height: 12px;
}

/**
 * Checkout
 */
.c-header-logo {
	display: block;
	height: 50px;
	margin: auto auto auto auto;
	padding-right: 50px;
}
.c-header-back {
	float: left;
}
.c-item-row {
	border-bottom: 1px solid #eee;
}
.c-item-row:first-of-type {
	border-top: 1px solid #eee;
}
.c-item-row p {
	margin: 10px 0px;
}

.checkout-paymethod-box {
	padding: 10px;
	border: 1px solid #eee;
	border-radius: 5px;
	cursor: pointer;
	transition: border-color .15s;
}
.checkout-paymethod-box:hover {
	border-color: #ccc;
}
.checkout-paymethod-box.active {
	border-color: #444;
}

/**
 --- Webbshop - Product page ---
*/
.product-breadcrumb {
	font-size: 14px;
	margin-bottom: 0;
}
.product-image {
	width: 100%;
	position: relative;
}
.product-image:before {
	content: '';
	display: block; 
	padding-top: 70%;
}
.product-image-zoom {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 100;
	font-size: 20px;
    cursor: pointer;
}
.product-image > img {
	max-width: 100%;
	max-height: 100%;
	position: absolute;
	top: 0;
    top: 50%;
    transform: translateY(-50%);
}

.product-images-box__window {
	width: calc(100% - 120px);
	height: 50%;
	overflow: hidden;
	margin-top: 20px;
}
.product-images-box {
	height: 50px;
}
.product-images-box__image {
	width: 70px;
	height: 50px;
	border: 1px solid lightgray;
	position: relative;

	float: left;
	margin-left: 2px;
}
.product-images-box__image.active {
	border-color: darkgray;
}
.product-images-box__image > img {
	width: 68px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    overflow: hidden;
}
.product-images-box__list {
	overflow: hidden;
	width: calc(100% - 120px);
	width: 70px;
}

.product-quantity-input {
	text-align: right;
}


.owl-stage-outer {
	width: 70%;
	left: 15%;
	position: absolute !important;
}
.product-images-box__prev {
	width: 40px;
	height: 40px;
	float: left;
	margin: 5px 15px 5px 0px;
	border-radius: 25px;
	background-color: lightgray !important;
	text-align: center;
	font-size: 25px !important;
	color: #fff !important;

	display: inline-block;
	cursor: pointer;
}
.product-images-box__next {
	width: 40px;
	height: 40px;
	float: right;
	margin: 5px 0px 5px 15px;
	border-radius: 25px;
	background-color: lightgray !important;
	text-align: center;
	font-size: 25px !important;
	color: #fff !important;

	display: inline-block;
	cursor: pointer;
}
.product-images-box__prev > i {
	margin-top: 7px;
	margin-right: 0px;
}
.product-images-box__next > i {
	margin-top: 7px;
	margin-left: 0px;
}
.zoom-overlay {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background-color: #00000080;
	z-index: 10000;
	display: none;
}
.zoom-box {
	position: absolute;
	height: auto;
	width: 80%;
	padding: 35px;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	background-color: #fff;
	border-radius: 5px;
	z-index: 10005;
}
.zoom-box img {
	width: 100%;
}
.zoom-next {
	position: absolute;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 30px;
	padding: 10% 10px;
	cursor: pointer;
}
.zoom-prev {
	position: absolute;
	left: 0px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 30px;
	padding: 10% 10px;
	cursor: pointer;
}