/*
**************************
*					   	 *
* Instagram Feed Styling *
*			   	  	   	 *
**************************
*/
/* Kategorie */

.ifgp-row {
    display: flex;
    flex-direction: column;
	flex-wrap: wrap;
    padding-right: 3px;
	margin: 0!important;
    box-sizing: border-box;
    width: 100%;
	align-items: center;
	justify-content: center;    
	text-align: center;
	
}

.insta-img-thumbnail {
    aspect-ratio: 1.5;
    max-width: 100%;
}

.insta-img-thumbnail img{
		height: 100%;
		-o-object-fit: cover;
		object-fit: cover!important;
		border: 2px solid #009aa0;
		padding:0px;
}
.insta-img-thumbnail{
		position: relative;
		height: auto;
		max-width: 100%;
		width: 100%;
		cursor: pointer;
		transition: all ease .3s;
}
.insta-img-thumbnail:hover img, .insta-img-thumbnail.hover img {
    opacity: 0.3;
}
.insta-img-thumbnail svg.insta_svg_icon {
    color: var(--text-color-2);
    position: absolute;
    top: 45%;
	right: 43%;
    font-size: 40px;
    line-height: 1em;
    opacity: 0;
    -webkit-transition: all 0.4s cubic-bezier(0.6, -0.8, 0.735, 0.045);
    transition: all 0.4s cubic-bezier(0.6, -0.8, 0.735, 0.045);
}

.insta-img-thumbnail:hover svg.insta_svg_icon, .insta-img-thumbnail.hover svg.insta_svg_icon {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    opacity: 1;
	color: var(--text-color-2);
}
.insta-img-thumbnail:hover figcaption, .insta-img-thumbnail.hover figcaption {
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
}
.insta-img-thumbnail figcaption {
    position: absolute;
    bottom: 0;
    width: 100%;
    -webkit-transform: translateY(-25%);
    transform: translateY(-25%);
    padding: 5px 40px;
    opacity: 0;
	
}
.insta-img-thumbnail p {
    font-weight: 400;
    margin: 0;
    font-size: 15px;
    color: var(--text-color-2);
    text-align: center;
}

.instagram-video {
	position: absolute;
    right: 15px;
    top: 15px;
    font-size: 1.5em;
	fill: #009AA0 !important;
}