.hidden {
	display: none!important;
}

.slick-slide {
	outline: none!important;
}

.product-bundle {
	clear: both;

}

.product-bundle__body {
	position: relative;
}

.product-bundle *,
.product-bundle{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.product-bundle__header {
	padding: 15px 25px;
	border: 1px solid rgba(0, 0, 0, 0.05);
	border-bottom: 0;
}
.product-bundle__title {

}
.product-bundle__inner {
	border: 1px solid rgba(0, 0, 0, 0.05);
	padding: 20px;
}
.product-bundle__item-body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: center;
}
@media (min-width: 1024px) {
	.product-bundle__item-body {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
	}
}

[data-product-bundle-type-default] .product-bundle__item:not(:last-child){
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(0,0,0,.05);
	padding-bottom: 20px;
}

.product-bundle__products {

}

.product-bundle__product {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 10px;
	margin-right: 11px;
}

.product-bundle__product-inner {
	position: relative;
}

.product-bundle__product-inner--slider-v {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.product-bundle__product-vertical-slide {
	width: auto!important;
	float: none!important;
}

.product-bundle__product-arrows {

}

.product-bundle__product-arrow {
	position: absolute;
	width: 20px;
	height: 20px;
	left: 50%;
	transform: translateX(-50%);
	outline: none!important;
}

.product-bundle__product-arrow.slick-disabled {
	opacity: 0.5;
	pointer-events: none;
}

.product-bundle__product-arrow--top {
	top: 0;
}

.product-bundle__product-arrow--bottom {
	bottom: 0;
	transform: translateX(-50%) rotate(180deg);
}

@media (min-width: 1024px) {
	.product-bundle__products {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		justify-content: flex-start;
		margin-left: -25px;
		margin-right: -25px;
		overflow: hidden; /* hide + symbol from first item */
	}
	.product-bundle__product {
		padding: 20px 25px;
		width: 162px;
	}
}

.product-bundle__product:not(:first-child):before {
	content: '+';
	display: block;
	color: #000;
	font-family: Arial, sans-serif;
	font-size: 20px;
	margin: 0 auto 10px;
	overflow: hidden;
	line-height: 1;
}
@media (min-width: 1024px) {
	.product-bundle__product:not(:first-child):before {
		position: absolute;
		top: 50%;
		left: 0;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
		margin: 0 0 0 -17px;
	}
}
.product-bundle__product-image{
	max-width: 80px;
	margin-bottom: 5px;
}

.product-bundle__product-title{
	font-size: 14px;
	line-height: 1.3;
	margin-bottom: 5px;
	text-align: center;
}
.product-bundle__product-title a{
	font-weight: 400;
	color: #9f9f9f;
	text-decoration: underline;
}
.product-bundle__product-title a:hover {
	text-decoration: none;
}

.product-bundle__product-price{
	font-size: 14px;
	line-height: 1.3;
	margin: 0;
}

.product-bundle__purchase {
	position: relative;
}
@media (min-width: 1024px) {
	.product-bundle__purchase {
		padding-left: 50px;
		-ms-flex-negative: 0;
		flex-shrink: 0;
		overflow: hidden;
	}
}
.product-bundle__purchase:before {
	content: '=';
	display: block;
	width: 20px;
	font-family: Arial, sans-serif;
	color: #000;
	font-size: 20px;
	margin: auto;
}
@media (min-width: 1024px) {
	.product-bundle__purchase:before {
		position: absolute;
		left: 15px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-ms-transform: translateY(-50%);
		transform: translateY(-50%);
	}
}
.product-bundle__purchase-inner {
	min-width: 200px;
	text-align: center;
	display: inline-block;
	padding: 15px;
}
.product-bundle__price {
	padding-bottom: 10px;
}
.product-bundle__discount {
	padding-bottom: 10px;
	font-size: .9em;
}
.product-bundle__btn {
	padding: 2px 0;
}
.product-bundle__btn form{
	margin-bottom: 0;
}

.product-bundle__discount-label {
	display: block;
	position: absolute;
	top: 0;
	left: 0px;
	font-size: 0.8em;
	color: #43454b;
	background-color: #fff;
	white-space: nowrap;
	border: 1px solid #6d6d6d;
	padding: .202em .6180469716em;
	text-transform: uppercase;
	border-radius: 3px;
}


.product-bundle__list {

}

.product-bundle__arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	cursor: pointer;
}

.product-bundle__arrow.slick-disabled {
	opacity: 0.5;
}

.product-bundle__arrow svg {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	fill: #777777;
	cursor: default;
}

.product-bundle__arrow--left {
	left: 0;
	transform: rotate(-90deg);
}

.product-bundle__arrow--right {
	right: 0;
	transform: rotate(90deg);
}

[data-product-bundle-type-slider] {
	padding: 0 30px;
}
