/*!
 * IRIS Interactive
 *
 * NOTICE OF LICENSE
 *
 * This source file is no subject to a specific license
 * but it belongs to the company IRIS Interactive.
 * You can contact IRIS Interactive at the following
 * address: contact@iris-interactive.fr
 *
 * @author      Bernard REDARES
 * @date        6/16/19 5:22 PM
 * @copyright   Copyright (c) 2002-2019 IRIS Interactive, Inc. (http://www.iris-interactive.fr)
 */
/* Instagram
/* ============================================= */
.instagramItem {
  position: relative;
  float: left;
  width: 25%; }
  .instagramItem:after {
    content: '';
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100%;
    pointer-events: none; }
  .instagramItem:before {
    display: flex !important;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0);
    transition: .2s ease; }
  .instagramItemPermalink {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center; }
  .instagramItem video {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .instagramItem:hover:before {
    border-width: 10px;
    background-color: rgba(0, 0, 0, 0.2);
    color: #fff; }
