/**
	@version 1.2
**/
.instagram-feed__feed-shell {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }

.instagram-feed__post {
  width: calc(20% - 1em);
  box-sizing: border-box;
  margin: 0 .5em 1em;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.25); }

.instagram-feed__thumbnail {
  width: 100%;
  display: block; }

.instagram-feed__caption-header {
  overflow: hidden;
  margin-bottom: 1em; }
  .instagram-feed__caption-header h3 {
    font-size: 1.5em;
    margin: 0; }

.instagram-feed__instagram-link {
  padding: .5em 1em;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background-color: #007bc1;
  border-radius: 4px;
  display: inline-block; }
  .instagram-feed__instagram-link:focus {
    text-decoration: none;
    color: #fff; }
  .instagram-feed__instagram-link:active {
    text-decoration: none;
    color: #fff; }
  .instagram-feed__instagram-link:hover {
    text-decoration: none;
    color: #fff; }
  .instagram-feed__instagram-link:link {
    text-decoration: none;
    color: #fff; }
  .instagram-feed__instagram-link:visited {
    text-decoration: none;
    color: #fff; }

.instagram-feed__caption-shell {
  position: fixed;
  z-index: 999999;
  width: 30vw;
  max-height: 90vh;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  background-color: #fff;
  border-radius: 8px;
  box-sizing: border-box;
  padding: 1em;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: auto; }
  @media (max-width: 1024px) {
    .instagram-feed__caption-shell {
      width: 80vw; } }

.instagram-feed__close-caption {
  background: transparent;
  border: none;
  font-size: 1em;
  border-radius: 0;
  cursor: pointer;
  float: right;
  color: #900;
  font-size: 1.5em;
  font-weight: bold; }

.instagram-feed__caption {
  margin: 1em 0;
  font-size: 1.2em; }

.instagram-feed__post.active .instagram-feed__caption-shell {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1); }

.instagram-feed__post-item {
  max-width: 100%;
  margin: auto;
  display: block; }
  @media (max-width: 1024px) {
    .instagram-feed__post-item {
      max-height: 30vh; } }
  @media (min-width: 640px) and (max-width: 1024px) {
    .instagram-feed__post-item {
      width: auto;
      float: left;
      margin: 0 1em 1em 0; } }

.instagram-feed__user-pic {
  width: 50px;
  float: left;
  margin: 0 1em 0 0; }

/*# sourceMappingURL=instagram-feed.css.map */
