/*
 * csoft_instagramfeeds front-end module version 1.3.4 for Prestashop 1.6, 1.7
 * Support contact : prestashop@comonsoft.com.
 *
 * NOTICE OF LICENSE
 *
 * This source file is the property of Com'onSoft
 * that is bundled with this package.
 * It is also available through the world-wide-web at this URL:
 * https://boutique.comonsoft.com/
 *
 * @category  front-end
 * @package   csoft_instagramfeeds
 * @author    Com'onSoft (http://www.comonsoft.com/)
 * @copyright 2016-2020 Com'onSoft and contributors
 * @version   1.3.4
 */

#csinstagramfeed{
    padding: 24px 0;
}
#csinstagramfeed .bx-wrapper .bx-controls-direction a {
	margin-top: 0;
	height: 40px;
	width: 40px;
	line-height: 0;
	top: calc(50% - 20px);
}
#csinstagramfeed .bx-wrapper .bx-controls-direction a:before {
	padding: 0;
	font-size: 40px;
	line-height: 42px;
}
.csinstfeed-media {
	display: block;
	position: relative;
	height: 100%;
	width: 100%;
	background-color: transparent;
	overflow: hidden;
	cursor: pointer;
	background-color: #0000003d;
}
.csinstfeed-media:before {
	content: '';
	display: block;
	padding-top: 100%;
}
.csinstfeed-media:hover .csinstfeed-src {
	transform: scale(1.2);
}
.csinstfeed-src {
	position: absolute;
	left: 0;
	top: 0;
	object-fit: cover;
	height: 100%;
	width: 100%;
	transition: transform 0.6s ease-in-out;
	user-select: none;
	-webkit-user-drag: none;
}
.csinstfeed-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	padding: min(24px, 10%);
	padding-bottom: min(20px, 10%);
	background-color: transparent;
	transition: background-color 0.2s ease-in-out, opacity 0.2s ease-in-out;
	opacity: 0;
	display: flex;
	flex-flow: column nowrap;
	justify-content: flex-end;
	user-select: none;
	color: #FFFFFF;
	container: csinstfeed-overlay / inline-size;
}
.csinstfeed-overlay:hover {
	background-color: rgba(0, 0, 0, 0.40);
	opacity: 1;
}
.csinstfeed-logo {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 24px;
	height: 24px;
}
.csinstfeed-content {
	display: flex;
	flex-flow: column nowrap;
	gap: 16px;
	font-size: 14px;
	line-height: 20px;
	font-weight: 400;
	color: #FFFFFF;
	z-index: 2;
}
.csinstfeed-kpi {
	display: flex;
	flex-flow: column nowrap;
	gap: 8px;
}
.csinstfeed-counters {
	display: flex;
	flex-flow: row nowrap;
	gap: 16px;
}
.csinstfeed-counter {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	line-height: 20px;
	gap: 6px;
	font-weight: 600;
}
.csinstfeed-counter svg {
	width: 20px;
	height: 20px;
}
@media screen and (max-width: 767px) {
	.csinstfeed-logo a {
	  width: 100%;
	  height: 100%;
	  display: inline-block;
	}
	.csinstfeed-logo {
		top: 0;
		left: 0;
		transform: none;
		width: 100%;
		height: 100%;
	}
}