/* IG shit */
.instagram_header_tab {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 20px 20px;
}
.instagram_header_tab img.codicts_instagram_profile{
    display: block;
    width: 40px;
    height: 40px;
    max-width: none;
    border-radius: 50%;
    box-shadow: 0 0 0 2px rgb(255, 255, 255);
    box-sizing: border-box;
    transition: all .2s ease;
    margin: 0 !important;
}
.instagram_header_tab .codicts_instagram_profile_wrapper {
    background: linear-gradient(40deg, #f99b4a 15%, #dd3071 50%, #c72e8d 85%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    padding: 4px;
    box-sizing: border-box;
    margin-right: 12px;
}
.instagram_header_tab .instagram_feed_details {
    display: flex;
    flex-direction: row;
    gap: 14px;
    /* justify-content: space-between; */
    align-items: center;
    width: 100%;
}
.instagram_header_tab .instagram_feed_details > a  {
    margin-left: auto;
}

.instagram_header_tab .like_follow_post {
    display: flex;
    gap: 5px;
    align-items: center;
}
.instagram_header_tab .like_follow_post .followers, .follows, .posts {
    padding: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.instagram_header_tab h2.page_title {
    display: flex;
    gap: 4px;
    align-items: center;
    font-size: 18px;
}
.instagram_header_tab h4.username {
    font-weight: 300;
    opacity: .5;
}
.instagram_header_tab .name_username {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.instagram_header_tab .name_username h2, h4{
    margin: 0;
}
.instagram_header_tab .header-follow-button{
    color: rgb(255, 255, 255);
    text-decoration: none;
    background: linear-gradient(44deg, #f99b4a 15%, #dd3071 50%, #c72e8d 85%);
    margin: 0;
    display: flex;
    gap: 5px;
    align-items: center;
    position: relative;
    height: 32px;
    line-height: 32px;
    border-radius: 99px;
    overflow: hidden;
    padding: 0 12px;
    border: none;
    text-align: center;
    outline: none;
    cursor: pointer;
    font-size: 14px;
    transition: background .2s ease;
}

.instagram_header_tab .header-follow-button:hover {
    background: rgb(0, 149, 246);
}

.instagram_header_tab h4.number{
    font-size: 14px;
    font-weight: bold;
}
.instagram_header_tab h4.text{
    font-size: 14px;
    font-weight: 300;
    opacity: .5;
}
@media (max-width: 767px) {
    .instagram_header_tab .instagram_feed_details {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}
.instagram_feed_details .profile_name_pic {
    display: flex;
    max-width: 60%;
}