/* shopping list */
.hidden_shopping {
	opacity: 0;
	z-index: 99999;
}

#shopping_list {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 1);
	text-align: center;
	z-index: -1;
	font-size: 15px;
	transition: 0.05s;
	background-color: #fcfcfc;
}

#shopping_list .pre {
	font-size: 13px;
	text-align: left;
}

#close_shopping {
	position: fixed;
	top: 35px;
	right: 30px;
	font-size: 20px;
	font-weight: normal;
	opacity: 0.7;
}

#close_shopping:hover {
	transform: scale(1.03);
	margin-right: -1px;
	opacity: 1;
	cursor: pointer;
}

.slider_vgl-logo {
	position: absolute;
	left: 4vw;
	top: 2vh;
	max-width: 35vw;
	max-height: 10vh;
}

.shop_post {
	display: inline-block;
	margin: 3px;
	height: 60vh !important;
}
.shop_post:focus {
	outline: none;
}

.shop_product .icons {
	display: flex;
	justify-content: flex-end;
}

.shop_product .icons img {
	display: inline-block;
	transition: 0.15s;
	height: 40px;
	margin-left: 5px;
}
.shop_product .icons img:hover {
	cursor: pointer;
	opacity: 0.7;
	transition: 0.3s;
}

.shop_post > .shop_product_img {
	float: left;
	width: 40%;
	height: 100% !important;
	max-height: 60vh;
	position: relative;
}

.shop_post > .shop_product_img > img {
	max-width: 90% !important;
	display: block !important;
	margin: auto !important;
	max-height: 60vh;
	position: absolute;
	top: 30%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 30%;
}

.shop_post > .shop_product {
	float: right;
	width: 60%;
}

.shop_post > .shop_product > div,
.prod_info {
	padding: 10px 0;
	margin-right: 20px;
}
.icons,
.prod_info {
	border-bottom: 1px solid lightgrey;
}

.prod_info {
	text-align: left;
	display: flex;
	justify-content: space-between;
}

.shop_price,
.single_prod_link {
	width: 200px;
	/* background-color: #f2504e; */
	border-radius: 5px;
	color: #f2504e;
	font-weight: bold;
	transition: 0.1s;
	height: 35px;
}

.single_prod_link:hover {
	opacity: 0.9;
	transition: 0.2s;
	cursor: pointer;
}

.single_prod_link {
	padding: 3px 0;
	float: right;
	margin-right: 20px;
}
.shop_price {
	font-size: 20px;
	padding-top: 5px;
	text-align: center;
	margin: auto 0;
}

#main_slider_nav {
	position: absolute;
	bottom: 0;
	max-height: 20vh;
    height: calc(16vh - 1px);
	background-color: #f1f5f6;
	min-width: 100vw;
	padding-top: 12px;
	padding-bottom: 20px !important;
	/*margin-bottom: 10px !important;*/
}

.tns-controls {
	position: absolute;
	bottom: 16vh;
	border-bottom: 1px solid #f2504e;
	width: 100vw;
	height: 0;
}

#main_slider {
	margin-top: 12vh;
	height: 70vh !important;
	max-width: 90vw;
	margin-left: auto;
	margin-right: auto;
	padding: 5px 15px;
}

.shop_product.slick-slide {
	/*height: 15vh !important;*/
	margin: 0 5px;
}

.shop_product.slick-slide > img {
	max-width: 100%;
	max-height: 100%;
	margin: 0 auto;
}

.shop_product > .content {
	text-align: left;
	max-height: 29vh;
	overflow: hidden;
}

.shop_price,
.low_price_merchant_img {
	display: inline-block !important;
}


.low_price_merchant_img {
	max-height: 13vh;
}

.add_to_saved {
	transition: 0.5s;
}

.tooltip_content {
	position: absolute;
	background-color: #cad3da;
	color: #fff;
	text-align: center;
	border-radius: 4px;
	padding: 0 5px;
    width: 95px;
	z-index: 9;
	right: 15px;
	opacity: 0;
	transition: 0.3s;
	top: 55px;
}

.tooltip_content::after {
	content: "";
    position: absolute;
    bottom: 100%;
    transform: rotate(180deg);
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #cad3da transparent transparent transparent;
}

.hover_shopping_block:hover .tooltip_content {
	opacity: 1;
}

.new_post {
	background-color: white;
	height: 15vh !important;
	width: 10vw;
}

.loader_background {
	position: absolute;
    width: 0;
    height: 0;
    transition: .2s ease-out;
    opacity: 0;
    z-index: -1;
}
.active_loader {
    z-index: 9999 !important;
    opacity: .9 !important;
    transition: .5s ease-in;
}

.shopping_loader {
	position: absolute;
	width: 2vw;
	height: 2vw;
	min-width: 30px;
	min-height: 30px;
	top: 72vh;
	left: 49vw;
	border: none !important;
	border-top: 3px solid #026abd !important;
	border-bottom: 3px solid #026abd !important;
}

.main_shop_product {
	position: relative;
}

.single_page_link {
	float: right;
	position: absolute;
	right: 0;
	bottom: 0;
	width: 100%;
}

#main_slider_nav .shop_product img {
	padding: 2px 0 5px 0;
}

#main_slider_nav .shop_product img,
#main_slider_nav .shop_product {
	cursor: pointer;
	max-height: calc(15vh - 22px);
}

#main_slider_nav .tns-item {
	border: 2px solid transparent;
}

#main_slider_nav .active_tab {
    border: 2px solid rgba(242, 80, 78, .5);
	border-radius: 2px;
}

.load_more_button {
	height: 15vh;
	width: 15vh;
	text-align: center;
	color: #f2504e;
	padding-top: 6vh;
	cursor: pointer;
}

.load_more_button > span {
	display: inline-block;
	width: 100%;
	padding: 5px 0;
	text-align: center;
	background-color: #f2504e;
	color: white;
	border-radius: 3px;
	transition: 0.3s;
}

.load_more_button:hover > span {
	opacity: 0.8;
}

.tns-controls button {
    content: '';
    background-color: black;
	position: absolute;
    bottom: -16vh;
    height: 16vh;
    opacity: 0.38;
    width: 45px;
    z-index: 99;
    font-size: 0;
    border: none;
    color: white;
}

.tns-controls button[disabled] {
	width: 0;
	opacity: 0;
	z-index: -1;
	font-size: 0;
}
.tns-controls button:hover {
	opacity: 0.55;
}

.tns-controls button[data-controls="next"] {
    right: 0;
}

.tns-controls button[data-controls="prev"] {
    left: 0;
}

.tns-controls button[data-controls="next"]:before {
	font-size: 40px;
	content: '❯';
}
.tns-controls button[data-controls="prev"]:before {
	font-size: 40px;
	content: '❮';
}

#main_slider_nav:after {
	opacity: 0.5;
}

.nav_shop_product {
	height: 15vh;
	position: relative;
}

.nav_shop_product:focus {
	outline-width: 0;
}

@media (min-width: 1441px) {
	#main_slider {
		max-width: 80vw;
	}
}

@media (max-width: 567px) {

	#main_slider_nav .slick-next,
	#main_slider_nav .slick-prev {
		width: 38px !important;
		padding-right: 0;
		display: inline-block;
	}

	.icons,
	.prod_info {
		border: none;
	}
	.main_shop_product {
		position: relative;
		overflow: hidden;
	    height: 70vh !important;
	}
	#close_shopping {
		top: 15px;
		margin-right: -10px;
		z-index: 99999;
	}
	#main_slider .slick-list {
		margin-top: -35px;
		height: 74vh;
	}

	.main_shop_product .shop_product_content,
	.main_shop_product .icons .tooltip_content,
	.single_page_link {
		display: none !important;
	}

	.main_shop_product .shop_product_img,
	.main_shop_product .icons,
	.main_shop_product .low_price_merchant_block,
	.main_shop_product .shop_price,
	.main_shop_product .shop_product_name {
		position: absolute;
	}
	
	.main_shop_product .shop_product_img {
		top: 42px;
		width: 90%;
		height: 50%;
		max-height: 248px;
		left: 5%;
		overflow: hidden;
	}

	.main_shop_product .shop_product_img > img {
		max-height: 100% !important;
		max-width: 100% !important;
		width: auto !important;
		height: auto !important;
	}

	.main_shop_product .icons {
		top: 0;
		width: 90px;
		height: auto;
		right: 0;
		margin: 0 !important;
		padding: 0 !important;
	}
	
	.main_shop_product .icons img {
		padding: 0;
		margin: 0 0 5px 0;
	}

	.main_shop_product .shop_product_name {
		top: calc(52% + 33px);
		width: 100%;
		font-size: 14px;
		left: 0;
		text-align: center;
		height: 34px;
		display: -webkit-box;
		-webkit-line-clamp: 4;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	.main_shop_product .shop_price {
		bottom: 3px;
		left: calc(50% - 100px);
		font-size: 13px;
		height: 30px;
		padding-top: 3px;
	}
	.main_shop_product .low_price_merchant_img {
		margin: 0 !important;
		max-height: 9vh;
	}

	.main_shop_product .low_price_merchant_block {
		bottom: 38px;
		max-height: 11vh;
		width: 100%;
		text-align: center;
		left: 0;
	}

	.main_shop_product .low_price_merchant_block img {
		height: 100%;
	}

	.shop_product .icons {
		margin-right: 10px !important;
	}
}

@media (max-height: 580px ) and (min-width: 440px){
	.shop_product_img > img {
		max-height: 60vh !important;
	}	

	.main_shop_product .shop_product_img {
		margin-top: 5px;
	}

	.main_shop_product .shop_product_content,
	.main_shop_product .icons .tooltip_content {
		display: none !important;
	}

	.main_shop_product .shop_product_name {
		font-size: 14px;
		text-align: center;
		height: 34px;
		display: -webkit-box;
		-webkit-line-clamp: 4;
		-webkit-box-orient: vertical;
		overflow: hidden;
	}
	
	.main_shop_product .low_price_merchant_img {
		margin-left: 15px;
	}

	#main_slider_nav .slick-next,
	#main_slider_nav .slick-prev {
		width: 38px !important;
		padding-right: 0;
	}

	.main_shop_product .icons {
	    position: absolute;
	    border: none;
	    bottom: 0;
	    padding: 0 !important;
	    margin: 0;
	    height: 40px;
	}
}

#shopping_button .icon-window {
	padding-top: 4px !important;
}
.category_page #shopping_button .icon-window {
	padding-top: 0 !important;
}

.nav_shop_product {
	height: calc(15vh - 18px);
	white-space: nowrap !important;
}

.nav_shop_product > img {
	max-width: 96%;
	position: relative;
	left: -2%;
	vertical-align: middle;
	display: inline-block;
}

.nav_shop_product > .helper {
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}

#main_slider .slick-prev,
#main_slider .slick-next {
    display: inline-block !important;
}