.insta-container {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
}

.insta-rows {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.insta-card {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.insta-card .insta-action-button {
  z-index: 5;
}

.insta-left {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.insta-right {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.insta-center {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.insta-row-data {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.insta-center-card {
  cursor: unset;
}

.insta-card img {
  height: auto;
  width: 100%;
  position: relative;
  outline: solid 1px #000;
}

.insta-card p {
  color: #000;
}

.insta-img-description {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 5px;
  z-index: 5;
  text-align: center;
  background-color: #efece3;
}

.insta-img-description h5 {
  font-size: 100%;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0px;
}

.insta-img-description-hide {
  display: none;
}

.insta-prev,
.insta-next {
  bottom: -1px;
  padding: 5px 10px;
  position: absolute;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 700;
  line-height: normal;
  color: #000;
  background-color: #efece3;
  border: 1px solid #000;
}

.insta-prev:hover,
.insta-next:hover {
  font-weight: 700;
  color: #000;
  background-color: #efece3;
  border: 1px solid #000;
}

.insta-prev {
  left: -1px;
}

.insta-next {
  right: 0px;
}

@media only screen and (max-width: 575px) {
  summary {
    padding: 0px 0px;
  }

  .insta-left,
  .insta-right {
    display: none;
  }

  .insta-center {
    flex: 0 0 100%;
    max-width: 100%;
  }
}