.vfsmc_post {
  width: 100%;
  max-width: 560px;
  position: relative;
  margin: 10px 0 10px 0;
  overflow: hidden;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
@media (min-width: 480px) {
  .vfsmc_post {
    padding: 15px;
  }
}
@media (min-width: 768px) {
  .vfsmc_post {
    width: calc(50% - 20px);
    margin: 10px;
    padding: 10px;
  }
}
@media (min-width: 768px) {
  .vfsmc_post {
    padding: 20px;
  }
}
@media (min-width: 1200px) {
  .vfsmc_post {
    width: calc(50% - 54px);
    margin: 27px;
    padding: 27px;
  }
}
@media (min-width: 1905px) {
  .vfsmc_post {
    width: calc(33.3333% - 54px);
    margin: 27px;
    padding: 54px;
  }
}
.vfsmc_post .vfsmc_post_image_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #212121;
  z-index: 20;
  overflow: hidden;
}
.vfsmc_post .vfsmc_post_image_wrap .vfsmc_post_image_overlay {
  z-index: 40;
  position: absolute;
  left: 0;
  bottom: 0;
  top: auto;
  width: 100%;
  height: 50%;
}
.vfsmc_post .vfsmc_post_image_wrap .vfsmc_post_loader {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 20;
  opacity: 0;
  transition: opacity 2s linear;
}
.vfsmc_post .vfsmc_post_image_wrap .vfsmc_post_loader.-animated {
  animation: logoloading 4s infinite;
}
.vfsmc_post .vfsmc_post_image_wrap img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 30;
  transition: opacity 0.2s ease-out;
}
.vfsmc_post .vfsmc_post_image_wrap img.in {
  opacity: 1;
}
.vfsmc_post .vfsmc_post_top,
.vfsmc_post .vfsmc_post_bottom {
  z-index: 30;
}
.vfsmc_post .vfsmc_post_top {
  display: flex;
  /*align-items:center;*/
  color: #fff;
  /*ie11 fix */
  flex-grow: 2;
  align-items: flex-start;
}
.vfsmc_post .vfsmc_post_bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #fff;
}
.vfsmc_post .vfsmc_post_bottom a {
  color: #fff;
}
.vfsmc_post .vfsmc_account_link {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.vfsmc_post .vfsmc_account_link i {
  margin-right: 10px;
}
.vfsmc_post.Instagram .vfsmc_post_hashtags {
  display: none;
}
@media (min-width: 480px) {
  .vfsmc_post.Instagram .vfsmc_post_hashtags {
    display: block;
  }
}
@media (min-width: 768px) {
  .vfsmc_post.Instagram .vfsmc_post_hashtags {
    display: none;
  }
}
@media (min-width: 992px) {
  .vfsmc_post.Instagram .vfsmc_post_hashtags {
    display: block;
  }
}
.vfsmc_post.Instagram .vfsmc_account_link {
  margin-bottom: 15px;
}
.vfsmc_post.Instagram .vfsmc_post_likes {
  display: flex;
  align-items: center;
}
.vfsmc_post.Instagram .vfsmc_post_likes .vfsmc_post_likes_value {
  margin-left: 10px;
  font-size: 40px;
  font-family: 'Abril Fatface';
}
.vfsmc_post.Instagram .vfsmc_post_link {
  margin: 0 0 0 0;
}
@media (min-width: 480px) {
  .vfsmc_post.Instagram .vfsmc_post_link {
    margin: 20px 0 0 0;
  }
}
@media (min-width: 768px) {
  .vfsmc_post.Instagram .vfsmc_post_link {
    margin: 0 0 0 0;
  }
}
@media (min-width: 992px) {
  .vfsmc_post.Instagram .vfsmc_post_link {
    margin: 20px 0 0 0;
  }
}
.vfsmc_postgrid {
  width: 100%;
  /*max-width:1790px;*/
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.vfsmc_actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .vfsmc_actions {
    flex-direction: row;
  }
}
.vfsmc_actions .btn {
  margin: 10px;
}
.vfsmc_actions .btn:nth-of-type(1) {
  order: 2;
}
@media (min-width: 992px) {
  .vfsmc_actions .btn:nth-of-type(1) {
    order: 1;
  }
}
.vfsmc_actions .btn:nth-of-type(2) {
  order: 1;
}
@media (min-width: 992px) {
  .vfsmc_actions .btn:nth-of-type(2) {
    order: 2;
  }
}
.vfsmc_actions .btn:nth-of-type(3) {
  order: 3;
}
@media (min-width: 992px) {
  .vfsmc_actions .btn:nth-of-type(3) {
    order: 3;
  }
}
@keyframes logoloading {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
}
