/* defaults */
.shop--border-radius { border-radius: 4px; }

/* shop header & cart button */
.shop--header .content {
	display: flex;
	flex-direction: row;
	padding: 25px 0;
	width: 100%;
	align-items: center;
}

.shop--header .content > div {
	flex: 1;
}

.shop--header .content .shop-title {
	font-size: 48px;
	font-weight: bold;
	line-height: 1.1;
}

.shop--header .content .cart {
	text-align: right;
}

.cart-btn {
	display: inline-block;
	background: #fff;
	padding: 10px 20px 10px 50px;
	border-radius: 24px;
	position: relative;
	transition: background-color .25s ease;
}

.cart-btn:focus {
	outline: none;
}

.cart-btn:hover {
	background: rgba(255, 255, 255, 0.75);
	text-decoration: none;
}

.cart-btn > div > div.icon {
	position: absolute;
	top: 8px;
	left: 14px;
}

.cart-btn > div > div.icon svg {
	width: 24px;
	height: 24px;
	flex: 1;
	color: #fff;
}

.cart-btn > div > div.text {
	color: #151515;
	font-weight: bold;
	text-decoration: none;
}

.shop--intro {
	margin-bottom: 30px;
}

.shop--intro .shop--annotation {
	background: #eee;
	font-weight: 500;
	padding: 30px 50px;
	margin-bottom: 20px;
	font-size: 18px;
}

@media (max-width: 767px){
	.shop--order-cart .cart--items .cart--item:not(.no-line, .total),
	.modal .cart--items .cart--item:not(.no-line, .total){
		flex-wrap: wrap;
		align-items: center;
	}
	.shop--order-cart .cart--items .cart--item:not(.no-line, .total) .product-info,
	.modal .cart--items .cart--item:not(.no-line, .total) .product-info{
		order: 2;
		width: 100%;
		flex-basis: 100%;
		padding-left: 0;
		padding-top: 8px;
	}
	.shop--order-cart .cart--items .cart--item:not(.no-line, .total) .product-qty,
	.modal .cart--items .cart--item:not(.no-line, .total) .product-qty{
		padding-left: 10px;
	}
	.shop--order-cart .cart--items .cart--item:not(.no-line, .total) .product-price,
	.modal .cart--items .cart--item:not(.no-line, .total) .product-price{
		flex: 1;
		padding-left: 10px;
	}
	.shop--order-cart .cart--total-sum,
	.modal .cart--total-sum {
		text-align: left;
	}
	.shop--order-cart .cart--items .cart--item.no-line .product-info,
	.shop--order-cart .cart--items .cart--item.total .product-info{
		padding-left: 0;
	}
	.shop--order-cart .cart--items .cart--item.no-line .image,
	.shop--order-cart .cart--items .cart--item.total .image,
	.shop--order-cart .cart--items .cart--item.no-line .product-remove,
	.shop--order-cart .cart--items .cart--item.total .product-remove,
	.modal .cart--items .cart--item.no-line .image,
	.modal .cart--items .cart--item.total .image{
		display: none;
	}
	#cartModal .modal-footer {
		display: flex;
		flex-direction: column-reverse;
		text-align: center;
	}
	#cartModal .modal-footer > a:not(:nth-child(1)),
	#cartModal .modal-footer > button:not(:nth-child(1)) {
		margin-bottom: 5px;
	}
	#cartModal .modal-footer > a,
	#cartModal .modal-footer > button {
		width: 100%;
	}


	.shop--header .content {
		padding: 10px 5px 10px 0;
	}

	.shop--header .content .shop-title {
		font-size: 32px;
	}

	.cart-btn {
		padding: 6px 15px 6px 40px;
		border-radius: 24px;
	}

	.cart-btn > div > div.icon {
		top: 7px;
		left: 10px;
	}

	.cart-btn > div > div.icon svg {
		width: 20px;
		height: 20px;
	}

	.shop--intro {
		margin-left: -10px;
		margin-right: -10px;
		margin-top: -10px;
	}

	.shop--intro .shop--annotation {
		padding: 15px 15px;
		font-size: 16px;
	}

}

@media (max-width: 374px){
	.shop--header .content .shop-title { display: none; }
	.cart-btn { display: block; text-align: left; }
}

/* shop container */
.shop--container {
	margin-top: 20px;
	margin-bottom: 15px;
}

.shop--container h1 {
	margin-bottom: 10px;
	font-size: 31px;
}

/* breadcrumb */
.shop--breadcrumb {
	background: #eee;
	padding: 4px 12px;
	margin-bottom: 15px;
}

.shop--breadcrumb ul li {
	display: inline;
	position: relative;
	padding-right: 20px;
}

.shop--breadcrumb ul li a {
	display: inline-block;
	text-decoration: underline
}

.shop--breadcrumb ul li:after {
	position: absolute;
	right: 5px;
	content: '>';
}

.shop--breadcrumb ul li:last-child:after{
	display: none;
}

.shop--breadcrumb ul li:last-child a {
	pointer-events: none;
	text-decoration: none;
	opacity: .5;
}

/* shop page header of categories */
.shop--page-header {
	margin-bottom: 20px;
	padding: 10px 12px;
}

.shop--page-header .description {
	font-size: 18px;
}

@media (min-width: 992px){
	.shop--page-header {
		max-width: 900px;
	}
}

/* categories grid */
.shop--categories-grid ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
	margin-bottom: 20px;
}

.shop--categories-grid ul li {
	background: #eee;
	flex: none;
	width: calc(20% - 20px);
	margin: 0 10px 10px;
	border-radius: 4px;
}

.shop--categories-grid ul li a {
	display: block;
	padding: 10px 15px;
	font-weight: bold;
	font-size: 18px;
}

.isDesktop .shop--categories-grid ul li:hover {
	background: #ccc;
}

@media (max-width: 991px){
	.shop--categories-grid ul li {
		width: calc(33.333% - 20px);
	}
}

@media (max-width: 767px){

	.shop--categories-grid ul {
		margin-left: 0;
		margin-right: 0;
	}

	.shop--categories-grid ul li {
		width: 100%;
		margin: 0 0 5px;
	}
}

/* products grid */
.shop--products-grid {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	margin-left: -10px;
	margin-right: -10px;
	margin-bottom: 20px;
}

.shop--products-grid .product-tile {
	flex: none;
	width: calc(25% - 20px);
	margin: 0 10px 20px;
}

.shop--products-grid .product-tile .product-tile-inner {
	background: #fff;
	border: 2px solid #eee;
	text-align: center;
	padding: 20px;
	height: 100%;
}

.isDesktop .shop--products-grid .product-tile .product-tile-inner:hover {
	border: 2px solid #151515;
}

.shop--products-grid .product-tile .product-tile-inner .product-image {
	padding: 0 20px 20px;
}

.shop--products-grid .product-tile .product-tile-inner .product-image img {
	margin: 0 auto 20px;
}

.shop--products-grid .product-tile .product-tile-inner h3.product-name {
	margin: 0 0 10px;
}

.shop--products-grid .product-tile .product-tile-inner h3.product-name a {
	display: block;
}

.product-price {
	font-weight: bold;
}

.product-price .price-sale {
	color: #cc0000;
}

.product-price .price-old {
	text-decoration: line-through;
	padding-left: 8px;
	color: #999;
}

.shop-container-slideshow{
	margin-top: 25px;
}

@media (max-width: 1199px){
	.shop--products-grid .product-tile {
		width: calc(33.3% - 20px);
	}
}

@media (max-width: 991px){
	.shop--products-grid .product-tile {
		width: calc(50% - 20px);
	}

	.shop--products-grid .product-tile .product-tile-inner .product-image {
		padding: 0;
	}
}

@media (max-width: 767px){
	.shop-container-slideshow{
		margin-top: 0;
		padding: 0;
	}

	.shop--container {
		margin-top: 10px;
	}

	.shop--products-grid {
		margin-left: -5px;
		margin-right: -5px;
		margin-bottom: 10px;
	}

	.shop--products-grid .product-tile {
		width: calc(50% - 10px);
		margin: 5px;
	}
}

@media (max-width: 374px){
	.shop--container {
		margin-top: 0;
	}

	.shop--breadcrumb {
		border-radius: 0;
		margin-left: -10px;
		margin-right: -10px;
		padding: 4px 15px;
		font-size: 14px;
	}

	.shop--products-grid .product-tile {
		width: calc(100% - 10px);
	}
}

/*  product page */
.shop--product-header {
	display: flex;
	flex-direction: row;
}

.shop--product-header > div {
	flex: 1;
}

.shop--product-header > div.product-info {
	padding: 10px 50px 10px 10px;
}

.shop--product-header > div.product-info h1 {
	margin-bottom: 5px;
}

.shop--product-header > div.product-info .product-price {
	font-weight: bold;
	margin-bottom: 20px;
	font-size: 24px;
	line-height: 1.1;
}

.shop--product-header > div.product-info .product-price .price-members { font-size: 75%; }

.shop--product-header > div.product-info .product-description-short {
	font-size: 21px;
	font-weight: 400;
	margin-bottom: 20px;
	max-width: calc(100% - 40px);
}

.shop--product-header > div.product-image {
	max-width: 500px;
}

.shop--product-header > div.product-image .image-wrapper {
	border: 2px solid #eee;
	padding: 20px;
}

.shop--product-header > div.product-image .image-wrapper img { margin: 0 auto; }

.product-form {
	border-left: 5px solid #eee;
	padding: 20px 0 20px;
	margin: 15px 0;
}

@media (max-width: 1199px){
	.shop--product-header > div.product-image {
		max-width: 400px;
	}
}

@media (max-width: 991px){
	.shop--product-header {
		display: flex;
		flex-direction: column;
		flex-direction: column-reverse;
	}

	.shop--product-header > div.product-image {
		max-width: none;
		margin-bottom: 20px;
	}

	.shop--product-header > div.product-image .image-wrapper img {
		max-height: 350px;
	}

	.shop--product-header > div.product-info {
		padding: 0 10px;
	}


}

@media (max-width: 767px){
	.product-form {
		border-left: none;
	}
}

/* cart modal */
.cart--total-sum {
	margin-bottom: 15px;
	background: #dff0d8;
	padding: 10px 15px;
	border: 1px solid #d6e9c6;
	text-align: center;
}

.cart--items .cart--item {
	display: flex;
	flex-direction: row;
	margin-bottom: 10px;
	padding: 0 10px 10px 10px;
	border-bottom: 1px solid #e5e5e5;
}

.cart--items .cart--item.no-line {
	border-bottom: none;
	padding-bottom: 0;
}

.cart--items .cart--item.total {
	font-weight: bold;
	font-size: 20px;
	border-top: 1px solid #e5e5e5;
	padding-top: 10px;

}

.cart--items .cart--item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.cart--items .cart--item .image {
	width: 40px;
}

.cart--items .cart--item .product-info {
	padding-left: 15px;
	flex: 1;
	line-height: 1.2;
}

.cart--items .cart--item .product-info .title {
	font-weight: bold;
	font-size: 18px;
}

.cart--items .cart--item .product-info .info {
	color: #888;
}

.cart--items .cart--item .product-info .info li {
	display: inline-block;
	padding-right: 15px;
	position: relative;
}

.cart--items .cart--item .product-info .info li:after {
	content: '-';
	right: 4px;
	position: absolute;
	opacity: 0.5;
}

.cart--items .cart--item .product-info .info li:last-child {
	padding-right: 0;
}

.cart--items .cart--item .product-info .info li:last-child:after {
	display: none;
}

.cart--items .cart--item .product-info .customization {
	border: 1px dashed #ccc;
	display: inline-block;
	padding: 2px 5px;
	font-size: 90%;
	margin-top: 10px;
}

.cart--items .cart--item .product-qty {
	font-weight: bold;
}

.cart--items .cart--item .product-price {
	width: 100px;
	text-align: right;
}

.cart--items .cart--item .product-remove {
	padding-left: 10px;
	width: 30px;
}

.cart--items .cart--item .product-remove button {
	border-radius: 50%;
	width: 20px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	border: none;
	padding: 0;
	background: none;
	color: #888;
	position: relative;
	top: 1px;
}

.cart--items .cart--item .product-remove button i {
	font-size: 18px;
}

.cart--items .cart--item .product-remove button:hover {
	color: #cc0000;
}


/* order page */
.shop--order-layout {
	display: flex;
	flex-direction: row;
	margin-left: -15px;
	margin-right: -15px;
}

.shop--order-layout > div {
	margin: 15px;
}

.shop--order-layout > div.shop--order-cart {
	width: calc(60% - 30px);
}

.shop--order-layout > div.shop--order-steps {
	width: calc(40% - 30px);
}

.shop--order-layout > div.shop--order-steps .order-steps--content {
	background: #eee;
	padding: 20px;
	height: 100%;
}

.shop--order-layout > div.shop--order-steps .order-steps--content h4 {
	margin-bottom: 10px;
}

.shop--cart-options {
	margin-bottom: 25px;
}

.shop--cart-options > div {
	display: flex;
	flex-direction: row;
	padding: 8px;
	background: #fff;
	margin-bottom: 2px;
	align-items: flex-start;
}

.isDesktop .shop--cart-options > div:hover {
	cursor: pointer;
	background: rgba(255, 255, 255, 0.66);
}

.shop--cart-options > div > div.checkInput {
	flex: none;
	width: 30px;
}

.shop--cart-options > div > div.checkInput input { margin-top: 0; }

.shop--cart-options > div > div.name {
	flex: 1;
	line-height: 1.2;
}

.shop--cart-options > div > div.name .option_name {
	font-weight: 500;
}

.shop--cart-options > div > div.name .description {
	font-size: 90%;
	color: #888;
}


.shop--cart-options > div > div.price {
	flex: none;
	min-width: 1%;
	white-space: nowrap;
	text-align: right;
	font-weight: bold;
	padding-left: 20px;
}

.shop--cart-consent {
	padding: 10px 0 30px;
	text-align: center;
}

.shop--footer {
	background: #eee;
	padding: 30px 20px;
	margin-bottom: 50px;
	text-align: center;
}

.shop--footer .shop--footer-operator {
	color: #666;
}

.shop--footer .shop--footer-operator + ul {
	margin-top: 15px;
}

.shop--footer ul li {
	display: inline-block;
	padding: 0 10px;
}

.shop--footer ul li a {
	color: #151515;
	text-decoration: underline;
}

.shop--footer ul li a:hover {
	text-decoration: none;
	opacity: .7;
}

@media (max-width: 767px){
	.shop--footer {
		text-align: left;
		padding: 15px;
	}

	.shop--footer ul li {
		display: block;
		padding: 2px 0;
	}
}

/* SHOP INTRO - SLIDESHOW */
.swiper-container--shop {}
.swiper-container--shop .swiper-slide {
	position: relative;
}
/*.swiper-container--shop .swiper-slide:before {
	content: '';
	display: block;
	width: 100%;
	padding-bottom: calc(600/1600 * 100%);
}*/
.swiper-container--shop .swiper-slide a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}
.swiper-container--shop .swiper-slide img {
	object-fit: cover;
	font-family: 'object-fit: cover';
	width: 100%;
	height: 100%;
}
.swiper-container--shop .swiper-slide .swiper-slide-title {
	position: absolute;
	bottom: calc(.5em + 20px);
	left: 50%;
	transform: translate(-50%, 0);
	padding: 1em;
	background: rgba(255,255,255,.35);
	margin-bottom: 0;
	pointer-events: none;
	color: #000;
}
.swiper-container--shop .swiper-pagination {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	padding-top: 10px;
	padding-bottom: 10px;
}

.swiper-container--shop .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
}
.swiper-container--shop .swiper-pagination .swiper-pagination-bullet-active {
	background: #fff;
}
@-webkit-keyframes showProgress {
	0% {
		transform: scaleX(0);
		background: #fff;
		opacity: .3;
	}
	85% {
		transform: scaleX(1);
		background: red;
		opacity: .85;
	}
}
@keyframes showProgress {
	0% {
		transform: scaleX(0);
		background: #fff;
		opacity: .3;
	}
	85% {
		transform: scaleX(1);
		background: red;
		opacity: .85;
	}
}
.swiper-container--shop .swiper-progress {
	height: 3px;
	width: 100%;
	background: rgba(0,0,0,.5);
	position: absolute;
	bottom: 0;
	left: 0;
	transform-origin: 0 0;
	z-index: 10;
}
.swiper-container--shop.animation-run .swiper-progress {
	-webkit-animation: showProgress 7.5s infinite forwards linear;
	        animation: showProgress 7.5s infinite forwards linear;
	-webkit-animation-play-state: running;
	        animation-play-state: running;
}
.swiper-container--shop.paused .swiper-progress {
	-webkit-animation-play-state: paused;
	        animation-play-state: paused;
}
.swiper-container--shop .swiper-navigation button {
	opacity: .3;
	transition: opacity .25s ease-in;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-size: 30%;
	background-position: 52% 50%;
	outline: none;
}
.swiper-container--shop .swiper-navigation button:focus {
	-webkit-filter: drop-shadow(0 0 8px rgba(205, 58, 63, 0.75));
	        filter: drop-shadow(0 0 8px rgba(205, 58, 63, 0.75));
}
.swiper-container--shop .swiper-navigation button.swiper-button-prev {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23cd3a3f'%2F%3E%3C%2Fsvg%3E");
}
.swiper-container--shop .swiper-navigation button.swiper-button-next {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23cd3a3f'%2F%3E%3C%2Fsvg%3E");
}
.swiper-container--shop:hover .swiper-navigation button {
	opacity: .6;
}
.swiper-container--shop:hover .swiper-navigation button:hover {
	opacity: 1;
}

@media (min-width: 768px) {
	.swiper-container--shop .swiper-navigation button {
		width: 60px;
		height: 60px;
	}
}

/* SHOP INTRO - BANNERS GRID */
.shopPage .container.reset-padding {
	padding: 0;
}
.shop-banners-grid {}

.shop-banners-grid .banner-wrapper {
	width: 100%;
	position: relative;
}
/*.shop-banners-grid .banner-wrapper:before {
	content: '';
	display: block;
	width: 100%;
	padding-bottom: 50%;
}*/

.shop-banners-grid .banner-wrapper a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.shop-banners-grid .banner-wrapper img {
	object-fit: cover;
	font-family: 'object-fit: cover';
	width: 100%;
	height: 100%;
}


@media (min-width: 768px) {
	.shop-banners-grid {
		margin: 0 -10px;
		display: flex;
	}

	.shop-banners-grid .col {
		padding: 0 10px;
		width: calc(100%/3);
	}
}

.required-label:after,
.required label:after {
	content: '*';
	color: #ff0000;
	margin-left: 2px;
}


@media (max-width: 991px) {
	.shop--order-layout{
		flex-wrap: wrap;
	}
	.shop--order-layout > div.shop--order-cart{
		width: 100%;
	}
	.shop--order-layout > div.shop--order-steps{
		width: 100%;
	}

}


.shop--category-section {
	margin-bottom: 20px;
}



.shop-modal{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 20;
}
.shop-modal-overlay{
	backdrop-filter: blur(2px);
	background-color: rgba(0, 0, 0, 0.7);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 21;
}

.shop-modal-inner {
	position: relative;
	z-index: 22;
	background-color: #FFFFFF;
	padding: 25px;
	border-radius: 4px;
	max-width: 750px;
	margin: 10px;
	max-height: 95vh;
	overflow-y: auto;
}

.close-shop-modal {
	margin-top: 25px;
	margin-left: auto;
	margin-right: auto;
	display: inline-block;
	background-color: rgba(175, 11, 11, 1);
	color: #FFFFFF;
	font-size: 18px;
	line-height: 21px;
	padding: 10px 25px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	transition: all .15s;
	letter-spacing: .5px;
	width: 100%;
	text-transform: uppercase;
}
.close-shop-modal:hover{
	background-color: rgba(175, 11, 11, 0.8);
	color: #FFFFFF;
}

body.shop-modal-opened {
	overflow: hidden;
}