/************************************************************
 Place your custom CSS styles here
************************************************************/

div#logo.logo {
  margin-top: 11px;
}
.app-herobanner-gradient-description {
  font-size: 30px;
}
.app-herobanner-gradient-description-small {
  font-size: 20px;
}
.listing-item .body h3 {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}
.listing-item .price {
  margin-top: 7px;
}
.app-product .post-info a {
  font-size: 12px;
  color: #aaa;
  font-weight: 400;
}
.app-product h6.media-heading {
  margin-bottom: 0;
}

/* Styling for Instafeed */

#app-instafeed {
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: auto;
  grid-gap: 1rem;
}
#app-instafeed li {
  margin: 0;
  padding: 0;
  list-style: none;
  background: url() center center / cover no-repeat;
  position: relative;
}
#app-instafeed li a {
  display: block;
  padding-bottom: 100%;
}
#app-instafeed li.video a:before {
  content: "";
  background: url(https://profilepageimages.usecue.com/img/play.svg) center center / 45% auto no-repeat;
  width: 32px;
  height: 32px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
#app-instafeed li.carousel_album a:before {
  content: "";
  background: url(https://profilepageimages.usecue.com/img/carousel.svg) center center / 50% auto no-repeat;
  width: 32px;
  height: 32px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
#app-instafeed li:hover a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(https://profilepageimages.usecue.com/img/interact.svg) center center / auto 19px no-repeat;
  z-index: 1;
}
#app-instafeed li a img {
  display: none;
}

/* show only 10 images on mobile */
@media only screen and (max-width: 600px) {
  #app-instafeed li:nth-child(n+10) {
    display: none;
  }
}