@charset "UTF-8";
/**
 * Stylesheet for Show Instagram Feeds
 * 
 */

/*------------------------------------------
  Instagram Feeds
--------------------------------------------*/
.label_instagram {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: normal;
    font-size: 110%;
}
.label_instagram img {
    width: 8%;
}
@media screen and (min-width: 768px) {
}
@media screen and (min-width: 992px) {
    .label_instagram {
        font-size: 190%;
    }
    .label_instagram img {
        width: auto;
    }
}

.insta_wrapper {
    width: 100%;
    margin: 1rem auto;
}
.insta_container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.insta_container:after {
    content: '';
    display: block;
    width: calc(100% / 2 - 5px);
    height: 0;
}
.insta_media {
    width: calc(100% / 2 - 5px);
    margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
    .insta_container:after {
        width: calc(100% / 3 - 10px);
    }
    .insta_media {
        width: calc(100% / 3 - 10px);
    }
}
@media screen and (min-width: 992px) {
    .insta_container:after {
        width: calc(100% / 3 - 10px);
    }
    .insta_media {
        width: calc(100% / 3 - 10px);
    }
}

.insta_media a {
    display: block;
    position: relative;
    color: #fff !important;
    text-decoration: none;
    padding-top: 90%;
    overflow: hidden;
}
.insta_media a:after {
    display: inline-block;
    position: absolute;
    top: 10px;
    right: 10px;
    font: var(--fa-font-solid);
    content: "\f35d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.insta_media img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.insta_media .insta_meta_area {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 15px;
    font-size: 80%;
}
.insta_media .insta_meta_wrap {
    display: flex;
    justify-content: space-between;
}
.insta_media .like_count {
    display: block;
    margin-left: 10px;
}
.insta_media .like_count:before {
    display: inline-block;
    content: "\f004";
    font: var(--fa-font-solid);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 3px;
}
.insta_media .like_count:after {
    content: "Users";
    margin-left: 3px;
}
.insta_media .comments_count {
    display: block;
    margin-right: 10px;
}
.insta_media .comments_count:before {
    display: inline-block;
    content: "\f075";
    font: var(--fa-font-solid);
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 3px;
}
.insta_media .caption {
    display: none;
}

.button_area {
    display: flex;
    justify-content: center;
    margin: 1rem auto;
}
.btn_load_more_insta_feeds {
    width: 150px;
    padding: 10px 0;
    text-align: center;
    margin: 0.5em;
}
.btn_instagram {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 230px;
    padding: 10px 0;
    text-align: center;
    background-color: #4C64D3;
    color: #fff !important;
    border-radius: 3px;
    margin: 0.5em;
    font-size: 90%;
}
.btn_instagram span {
    margin-left: 5px;
}
@media screen and (min-width: 768px) {
    .btn_load_more_insta_feeds {
        width: 150px;
        margin: 1em;
    }
        .btn_instagram {
        width: 200px;
        margin: 1em;
    }
}
@media screen and (min-width: 992px) {
}
