.app{
    overflow: hidden;
    position: relative;
}

.hide{
    display: none !important;
}

/* header */

.header{
    border-bottom: 2px solid var(--border-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white-color);
    z-index: 9;
}

.header__navbar{
    height: var(--header-height);
    display: flex;
}

.header__navbar-list{
    width: 100%;
    padding-left: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__navbar-item{
    flex: 1;
    cursor: pointer;
}

.header__navbar-logo{
    display: flex;
    align-items: center;
}

.header__navbar-logo-img{
    width: 104px;
    height: auto;
}

.header__navbar-search{
    position: relative;
    display: flex;
    align-items: center;
}

.header__navbar-search-input-close{
    font-size: 1.2rem;
    text-decoration: none;
    width: 24px;
    color: #8e8e8e;
    cursor: pointer;
}

.header__navbar-search-overlay{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    font-size: 1.5rem;
    background-color: var(--white-color);
    color: #8e8e8e;
    font-weight: 300;
    display: flex;
    align-items: center;
    cursor: text;
}

.header__navbar-search-overlay-icon{
    margin-left: 32px;
    margin-right: 8px;
}

.header__navbar-search-input{
    width: 268px;
    height: 36px;
    font-size: 1.6rem;
    color: var(--text-color);
    border: none;
    outline: none;
    padding-right: 20px;
    padding-left: 40px;
}

.header__navbar-search-input:focus ~ .search__history{
    display: block;
}

.search__history{
    position: absolute;
    right: -26px;
    left: -26px;
    top: calc( var(--header-height) - 10px);
    padding: 12px 16px;
    border-radius: 4px;
    background-color: var(--white-color);
    display: none;
}   

.search__heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0 16px;
}

.search__heading-label{
    font-size: 1.6rem;
    font-weight: 500;
}

.search__heading-clear{
    text-decoration: none;
    color: var(--blue-color);
    font-size: 1.4rem;
    font-weight: 500;
}   

.search__list{
    padding-left: 0;
    list-style: none;
}

.search__item{
    display: flex;
    padding: 8px 0;
}

.search__item-info{
    display: flex;
    align-items: center;
}

.search__item-avt{
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.search__item-name{
    flex: 1;
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.4rem;
    display: flex;
    justify-content: center;
    flex-flow: column;
    margin-left: 8px;
}

.search__item-username{
    font-weight: 500;
    margin: 2px;
}

.search__item-bioname{
    margin: 2px;
    color: #8e8e8e;
}

.search__item-clear{
    width: 24px;
    align-items: center;
    font-size: 2.4rem;
    display: flex;
    text-decoration: none;
    color: #8e8e8e;
}

.navbar__activity-feed{
    position: relative;
}

label.active__label{
    cursor: pointer;
}

.navbar__activity-menu{
    position: absolute;
    top: 32px;
    right: -46px;
    width: 500px;
    height: 362px;
    overflow: hidden auto;
    background: var(--white-color);
    padding: 4px 8px;
    border-radius: 4px;
    box-shadow: 1px 2px rgba(0, 0, 0, 0.2);;
    display: none;
}

.navbar__activity-heading{
    font-size: 1.3rem;
    font-weight: 500;
    margin: 12px 4px 4px;
}

.navbar__activity-body{
    border-bottom: 1px solid #dbdbdb;
}

.navbar__activity-body:last-child{
    border-bottom: none;
}

.navbar__activity-list{
    padding-left: 0;
    list-style: none;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.navbar__activity-item{
    display: flex;
    align-items: center;
    margin: 6px 0;
}

.navbar__activity-item.navbar__activity-item-mid{
    flex: 1;
}

.navbar__activity-item-img{
    display: block;
}

.navbar__activity-item-img img{
    width: 48px !important;
    height: 48px !important;
}

.navbar__activity-item-label{
    text-decoration: none;
    color: var(--text-color);
    font-size: 1.5rem;
    margin-left: 4px;
}

.navbar__activity-item-act{

}

.active__menu-label:checked ~ .navbar__activity-menu{
    display: block;
}


.header__navbar-func{
    padding-left: 0;
    list-style: none;
    display: flex;
    float: right;
}

.header__navbar-func-item{
    width: 22px;
    height: 22px;
    margin: 0 12px;
    position: relative;
}
.header__navbar-func-item img{
    width: 100%;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
}

.user__menu-label:checked ~ .user__menu{
    display: block;
}

.user__menu{
    width: 230px;
    padding: 8px 0;
    position: absolute;
    top: calc( var(--header-height) - 17px);
    right: -30px;
    background-color: var(--white-color);
    z-index: 1;
    border-radius: 6px;
    display: none;
}

.user__menu-list{
    padding-left: 0;
    list-style: none;
}

.user__menu-item{
    padding: 8px 16px;
    display: flex;
    align-items: center;
    line-height: 1.4rem;
}

.logout{
    border-top: 2px solid var(--border-color);
    padding: 12px 16px 4px;
}

.user__menu-item-link{
    text-decoration: none;
    font-size: 1.4rem;
    color: var(--text-color);
    display: block;
    width: 100%;
}

.user__menu-item-icon{
    transform: translateY(2px);
    margin-right: 8px;
}



/* Container */

.container{
    margin-top: var(--header-height);
    padding: 30px 20px 0;
}

.main-header__content{
    
}

.main-header__content-wrap{
    display: flex;
    justify-content: center;
}

.main-header__content-wrap-out-img{
    width: 158px;
    height: 158px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-header__content img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.main-header__info{

}

.main-header__info-wrap-top{
    display: flex;
    align-items: center;
    margin-top: 8px;
    font-weight: 500;
}

.main-header__info-name{
    font-size: 2.6rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    margin-right: 16px;
}

.main-header__info-dm{
    margin: 0 4px;
    width: 92px;
    border: 1px solid var(--border-color);
}

.main-header__info-follow{
    width: 106px;
    margin: 0 4px;

}

.main-header__info-more{
    width: 38px;
    margin: 0 4px;

}

.main-header__info-etc{
    width: 48px;
    margin: 0 4px;

}


.main-header__info-wrap-mid{
    margin-top: 40px;
}

.main-header__state{
    padding-left: 0;
    list-style: none;
    display: flex;
}

.main-header__state-item{
    font-size: 1.6rem;
    margin-right: 32px;
    font-weight: 400;
    color: var(--text-color);
}

.main-header__state-count{
    font-weight: 500;
}


.main-header__info-wrap-bot{
    margin-top: 30px;
}
.main-header__contact{
    padding-left: 0;
    list-style: none;
}
.main-header__contact-item{
    font-size: 1.4rem;
    padding: 5px 0;
}
.main-header__contact-name{
    font-weight: 500;
}
.main-header__contact-bio{

}
.main-header__contact-web{
    text-decoration: none;
    color: #0e2c50;
    font-weight: 500;

}

.main-header__contact-followby{
    font-size: 1.2rem;
    color: #8e8e8e;
}

/* High light */

.highlight{
    height: 154px;
}

.highlight__list{
    height: 154px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 10px 45px;
}

.highlight__item{
    width: 132px;
    padding: 10px 16px;
}

.highlight__item-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
}

.highlight__item-img{
    width: 86px;
    height: 86px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    display: flex;
}

.highlight__item-image{
    width: 78px;
    height: 78px;
    object-fit: cover;
    border-radius: 50%;
}

.highlight__item-name{
    padding: 14px 0;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-color);
}

.mobile-follow{
    max-width: 975px;
    margin: 0 -18px;
    height: 79px;
    display: none;
    align-items: center
}

.mobile-follow__bar{
    width: 100%;
    height: 100%;
    display: flex;
    border-top: 1px solid var(--border-color);
    align-items: center;
    justify-content: center;
}

.mobile-follow__list{
    padding-left: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    height: 100%;
    width: 100%;
}

.mobile-follow__item{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    height: unset;
    margin: 0 auto;
    width: 33.3333%;
    font-size: 1.5rem;
}

.mobile-follow__item span{
    line-height: 1.5rem;
    color: #8e8e8e;
}

span.mobile-follow__count{
    font-weight: 500;
    color: var(--text-color);
}

.content__heading{
    max-width: 975px;
    margin: 0 auto;
}

.content__bar{
    margin-top: 40px;
    width: 100%;
    height: 53px;
    display: flex;
    position: relative;
    right: -12px;
    border-top: 1px solid var(--border-color);
    align-items: center;
    justify-content: center;
}

.content__bar-list{
    padding-left: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    height: 100%;
}

.content__bar-item{
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0 32px;
    line-height: 5.2rem;
}

.content__bar-item-active .content__bar-item-name{
    color: var(--text-color) ;
}

.content__bar-item-active{
    position: relative;
}



.content__bar-item.content__bar-item-active::after{
    content: " ";
    top: -1px;
    bottom: 0;
    left: 0;
    right: 0;
    border-top: 1px solid black;
    position: absolute;
}
.content__bar-item-name{
    font-size: 1.3rem;
    font-weight: 500;
    color: #8e8e8e;
    align-items: center;
}

.content__bar-item-name svg{
    margin-right: 4px;
    margin-top: 2px;
}

.main-content{
    max-width: 975px;
    margin: 0 auto;
}

.post{
    margin-bottom: 6px;
    width: 33.3333%;
    position: relative;
    
}

.post__img::before{
    display: none;
    content: "";
    position: absolute;
    top: 0;
    right: 12px;
    left: 12px;
    bottom: 24px;
    background-color: rgba(0, 0, 0, 0.5);
}

.post:hover .post__wrap-interac{
    display: block;
}
.post:hover .post__img::before{
    display: block;
}

.post__wrap{
    width: 100%;
    height: 0;
    padding: 0 12px;
    padding-bottom: 100%;
    cursor: pointer;
    position: relative;
}

.post__wrap-interac{
    position: absolute;
    top: calc(50% - 24px);
    right: 0;
    left: 0;
    display: none;
}

.post__wrap-interac-list{
    padding-left: 0;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--white-color);
    z-index: 2;
    
}

.post__wrap-like{
    margin-right: 30px;
}

.post__wrap-cmt{

}


.post__img{
    padding-top: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
}

/* Footer */

.footer{
    margin-bottom: 36px;
}

.policy{
    margin: 12px 0 36px;
}

.policy__list{
    padding-left: 0;
    list-style: none;
    display: flex;
}

.policy__item{
    margin: 0 6px;
    padding: 0 10px;
}

.policy__link{
    text-decoration: none;
    color: #8e8e8e;
    font-size: 1.2rem;
}