.instCard{
    position: relative;
    width: 100%;
    background: #fff;
    box-shadow: 15px 15px 60px rgba(0, 0, 0, .15);
}
.instCard .instTop{
    display: flex;
    justify-content: space-between;
    align-items: center;
	padding-left: 10px;
	padding-right: 10px;
}
.instCard .instTop .instUserDetails{
    display: flex;
    align-items: center;
	margin-top: 10px;
	margin-bottom: 10px;
}
.instCard .instTop .instUserDetails .instProfileImg{
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 8px;
    overflow: hidden;
}
.instCover{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.instCard .instTop .instUserDetails h3{
    font-size: 18px;
    font-weight: 700;
    line-height: 1rem;
}
.instCard .instTop .instUserDetails span{
    font-size: 0.65em;
}
.instSingleImage{
    position: relative;
    width: 100%;
    height: 360px;
    margin: 10px 0 15px;
}
.instLikes{
    margin-top: 5px;
	margin-bottom: 5px;
    font-size: 1em;
    color: #4d4d4f;
	padding-left: 10px;
	padding-right: 10px;
}
.instMessage{
    margin-top: 1px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
}

/* ####### image slideshow ####### */

/* inst-slideshow container */
.instSlideshowContainer {
  width: 100%;
  height: auto;
  position: relative;
}

/* instSlideshowNext & instSlideshowPrevious buttons */
.instSlideshowPrev, .instSlideshowNext {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -35px;
  color: #5CB874;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "instSlideshowNext button" to the right */
.instSlideshowNext {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.instSlideshowPrev:hover, .instSlideshowNext:hover {
  background-color: rgba(0,0,0,0.4);
}

/* The dots/bullets/indicators */
.instSlideshowDot {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 1px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.instActive, .instSlideshowDot:hover {
  background-color: #5CB874;
}

/* Fading animation */
.instSlideshowFade {
  animation-name: instSlideshowFade;
  animation-duration: 1.5s;
}

@keyframes instSlideshowFade {
  from {opacity: .4} 
  to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .instSlideshowPrev, .instSlideshowNext,.text {font-size: 11px}
}


@media (min-width: 576px) {
    .card-columns {
        column-count: 3;
    }
}

@media (min-width: 768px) {
    .card-columns {
        column-count: 3;
    }
}

@media (min-width: 992px) {
    .card-columns {
        column-count: 3;
    }
}

@media (min-width: 1200px) {
    .card-columns {
        column-count: 3;
    }
}

.instFrame {
	display: inline-block !important;
	background-color:transparent !important;
	border-width: 0 !important;
}