@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800;900&family=Work+Sans:wght@100;200;400;500;600;800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary-color: #1ca1f1;
    --secondary-color: #fff;
    --main-border-radius: 8px;
    --secondary-border-radius: 50%;
    --main-transition: 0.3s linear;
}
body {
    font-family: 'Poppins', sans-serif;
}
header {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #f4f8fb;
    display: flex;
}
header aside {
    width: 15%;
    height: 100vh;
    background-color: #fff;
    padding: 15px 0 15px 30px;
}
header section {
    position: relative;
    width: 85%;
    height: 100vh;
}
header aside .logo {
    font-size: 30px;
    color: var(--primary-color);
}
header aside ul {
    list-style: none;
    margin-top: 50px;
}
header aside ul li {
    padding: 10px;
    margin-top: 10px;
}
header aside ul li a {
    text-decoration: none;
    color: rgb(0, 0, 0, .5);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: var(--main-transition);
    -webkit-transition: var(--main-transition);
    -moz-transition: var(--main-transition);
    -ms-transition: var(--main-transition);
    -o-transition: var(--main-transition);
}
header aside ul li a:hover {
    color: var(--primary-color);
}
header aside ul i {
    margin-right: 10px;
    font-size: 20px;
}
/* active class list items */
header aside ul li.active {
    border-right: 3px solid var(--primary-color);
}

header aside ul li.active a {
    color: var(--primary-color);
}

header aside .tweet-btn {
    margin-top: 40px;
    padding: 10px 50px;
    background-color: var(--primary-color);
    border: none;
    outline: none;
    color: var(--secondary-color);
    cursor: pointer;
    transition: 0.5s;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    -webkit-transition:;
    -moz-transition:;
    -ms-transition:;
    -o-transition:;
}
header aside .tweet-btn:hover {
    opacity: 0.5;
}
header section nav {
    width: 100%;
    height: 8%;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
}
header section nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}
header section nav li {
    padding: 3px 25px 0px 3px;
}
header section nav a {
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    color: #000;
    transition: var(--main-transition);
}
header section nav a:hover {
    color: gray;
}
header section nav .search {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f4f8fb;
    padding: 8px 15px;
    border-radius: var(--main-border-radius);
    -webkit-border-radius: var(--main-border-radius);
    -moz-border-radius: var(--main-border-radius);
    -ms-border-radius: var(--main-border-radius);
    -o-border-radius: var(--main-border-radius);
}
header section nav .search input {
    width: 90%;
    padding: 2px 15px;
    border: none;
    outline: none;
    font-size: 12px;
    background:none;
} 
header section nav .search input i {
    font-size: 14px;
}
header section nav .user {
    display: flex;
    align-items: center;
}
header section nav .user img {
    width: 40px;
    height: 40px;
    margin-left: 10px;
    border-radius: var(--secondary-border-radius);
    -webkit-border-radius: var(--secondary-border-radius);
    -moz-border-radius: var(--secondary-border-radius);
    -ms-border-radius: var(--secondary-border-radius);
    -o-border-radius: var(--secondary-border-radius);
}
header section nav .user h6 {
    font-size: 12px;
    font-weight: 600;
    color: #000;

}
header section::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 200px;
    background: url(./images/img/bg1.png) no-repeat center center/cover;
    top: 8%;
    border-radius: 0px 0px 20px 0px;
    -webkit-border-radius: 0px 0px 20px 0px;
    -moz-border-radius: 0px 0px 20px 0px;
    -ms-border-radius: 0px 0px 20px 0px;
    -o-border-radius: 0px 0px 20px 0px;
    opacity: 0.9;
    z-index: 1;
}

header section .main-page-section {
    position: relative;
    top: 18%;
    width: 100%;
    height: 73%;
    display: flex;
    z-index: 2;
    justify-content: center;
}
header section .main-page-section .left-box {
    width: 250px;
    height: auto;
}
header section .main-page-section .left-box .profile-card {
    position: relative;
    width: 100%;
    height: auto;
    background: #fff;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
    padding: 15px 10px 0px 10px;
    border-radius: var(--main-border-radius);
    -webkit-border-radius: var(--main-border-radius);
    -moz-border-radius: var(--main-border-radius);
    -ms-border-radius: var(--main-border-radius);
    -o-border-radius: var(--main-border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
header section .main-page-section .left-box .profile-card .blue-tick {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 15px;
}
.main-page-section .left-box .profile-card .user-profile-img {
    width:60px;
    height: 60px;
    border-radius: var(--secondary-border-radius);
    -webkit-border-radius: var(--secondary-border-radius);
    -moz-border-radius: var(--secondary-border-radius);
    -ms-border-radius: var(--secondary-border-radius);
    -o-border-radius: var(--secondary-border-radius);
}
.main-page-section .left-box .profile-card .name{
    font-weight:600 ;
    margin-top: 10px;
    color: #000;
}
.main-page-section .left-box .profile-card h6{
    color: rgba(0, 0, 0, 0.3);
    font-size: 10px;
    padding: 2px 0px;
}
.main-page-section .left-box .profile-card address {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}
.main-page-section .left-box .profile-card address a {
    text-decoration: none;
    color: #000;
    font-size: 11px;
    font-style: normal;
}
.main-page-section .left-box .profile-card address a:nth-child(2) {
    margin-left: 3px;
}
.main-page-section .left-box .profile-card h4.disc {
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    padding: 0px 5px;
    color: rgb(0, 0, 0, .8);
}
.main-page-section .left-box .profile-card .followers {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.main-page-section .left-box .profile-card .followers .followers-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0px 10px;
}
.main-page-section .left-box .profile-card .followers .followers-box h5 {
    font-size: 12px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.3);
}
.main-page-section .left-box .profile-card .followers .followers-box h6 {
    font-size: 11px;
    font-weight: 600;
    color: #000;
}
.main-page-section .left-box .profile-card .followers .followers-box:last-child {
    border-right: none;
}
.main-page-section .left-box .activities {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 10px;
}
.main-page-section .left-box .activities .box {
    width: 115px;
    height: 90px;
    border: 2px solid rgb(213, 218, 222 , .5);
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--main-border-radius);
    cursor: pointer;
    transition: var(--main-transition);
    -webkit-transition: var(--main-transition);
    -moz-transition: var(--main-transition);
    -ms-transition: var(--main-transition);
    -o-transition: var(--main-transition);
    -webkit-border-radius: var(--main-border-radius);
    -moz-border-radius: var(--main-border-radius);
    -ms-border-radius: var(--main-border-radius);
    -o-border-radius: var(--main-border-radius);
}
.main-page-section .left-box .activities .box:first-child {
    background-color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
    box-shadow: 0px 0px 20px rgb(0, 0, 0, 0.1);
}

.main-page-section .left-box .activities .box i,h5 {
    font-size: 14px;
    padding-top: 10px;
    color: #d5dade;
    transition: var(--main-transition);
    -webkit-transition: var(--main-transition);
    -moz-transition: var(--main-transition);
    -ms-transition: var(--main-transition);
    -o-transition: var(--main-transition);
}
.main-page-section .left-box .activities .box h5 {
    color: rgb(0, 0, 0, .6);
    font-size: 11px;
}
.main-page-section .left-box .activities .box:first i{
    color: var(--primary-color);
}
.main-page-section .left-box .activities .box:hover {
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    box-shadow: 0px 0px 20px rgb(0, 0, 0, 0.1);
}
.main-page-section .left-box .activities .box:hover h5 {
    color: var(--primary-color)
}
.main-page-section .left-box .activities .box:hover i {
    color: var(--primary-color)
}

.main-page-section .left-box .activities .box:nth-child(1) h5 {
    color: var(--primary-color)
}
.main-page-section .left-box .activities .box:nth-child(1) i {
    color: var(--primary-color)
}
.main-page-section .center-box {
    height: 100%;
    width: 500px;
    margin-left: 20px;
    display: flex;
    flex-direction: column;
    background-color: var(--secondary-color);
    border-radius: var(--main-border-radius);
    -webkit-border-radius: var(--main-border-radius);
    -moz-border-radius: var(--main-border-radius);
    -ms-border-radius: var(--main-border-radius);
    -o-border-radius: var(--main-border-radius);
}

.main-page-section .center-box .links {
    width: 100%;
    height: 10%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid rgb(0, 0, 0, 0.1);
}
.main-page-section .center-box .links nav li {
    border-bottom: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px 0px;
    margin-right: 10px;
    transition: var(--main-transition);
}
.main-page-section .center-box .links nav li:hover {
    border-bottom: 3px solid var(--primary-color);
}
.main-page-section .center-box .links nav li a {
    padding: 12px 10px;
}
.main-page-section .center-box .links nav li a:hover {
    color: var(--primary-color);
}
.fa-ellipsis-h {
    cursor: pointer;
    transition: var(--main-transition);
    -webkit-transition: 0.3;
    -moz-transition: 0.3;
    -ms-transition: 0.3;
    -o-transition: 0.3;
}  
.fa-ellipsis-h:hover {
    color: var(--primary-color);
}
.main-page-section .center-box .post-container {
    width: 100%;
    height: 90%;
    background-color: var(--secondary-color);
    overflow-y: auto;
}
.main-page-section .center-box .post-container .shear-container {
    width: 100%;
    height: auto;
    padding: 12px 15px 0px 15px;
    display: flex;
    background-color: var(--secondary-color);
}
.main-page-section .center-box .post-container .shear-container .shear-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
}
.main-page-section .center-box .post-container .shear-container .shear-profile-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.main-page-section .center-box .post-container .shear-container .shear-tweet-box {
    position: relative;
    width: 90%;
    height: auto;
    border: 1px solid rgb(0, 0, 0, 0.1);
    margin-left: 10px;
}
/* start shear tweet box for js */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Open Sans', sans-serif;
}
body{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background:  #6da1f1;
}
::selection{
  color: #fff;
  background: #1da1f2;
}
.wrapper{
  background: #fff;
  max-width: 475px;
  width: 100%;
  border-radius: 15px;
  padding: 8px 25px 15px 25px;
  box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
}
.input-box{
  padding-top: 10px;
  border-bottom: 1px solid #e6e6e6;
}
.input-box .tweet-area{
  position: relative;
  min-height: 70px;
  max-height: 170px;
  overflow-y: auto;
}
.choose-audience {
    margin-bottom: 15px;
    position: relative;
}
.choose-audience .dropdown-list {
    position: absolute;
    top: 30px;
    left: 0;
    width: 70%;
    background-color: var(--secondary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    display: none;
    z-index: 3;
}
.choose-audience .dropdown-list ul {
    text-decoration: none;
    width: 100%;
    height:auto;
    cursor: pointer;
}
.choose-audience .dropdown-list ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 6px 10px;
    transition: var(--main-transition);
    -webkit-transition: var(--main-transition);
    -moz-transition: var(--main-transition);
    -ms-transition: var(--main-transition);
    -o-transition: var(--main-transition);
}
.choose-audience .dropdown-list ul li:hover {
    background-color: var(--primary-color);
    color: #fff;
}
.choose-audience .dropdown-list .chooses i {
    color: var(--primary-color);
    font-size: 14px;
    margin-right: 6px;
    transition: var(--main-transition);
    -webkit-transition: var(--main-transition);
    -moz-transition: var(--main-transition);
    -ms-transition: var(--main-transition);
    -o-transition: var(--main-transition);
}
.choose-audience .dropdown-list ul li:hover .chooses i {
    /* background-color: var(--primary-color); */
    color: #fff;
}
.choose-audience .dropdown-list .check i {
    color: var(--secondary-color);
    font-size: 14px;
    margin-right: 6px;
}
.choose-audience .dropdown-list .chooses span {
    color: #000;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
}
.audience {
  padding: 3px 10px;
  border-radius: 20px;
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border: 1px solid var(--primary-color);
  cursor: pointer;
    transition: var(--main-transition);
}
.audience:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}
.tweet-area::-webkit-scrollbar{
  width: 0px;
}
.tweet-area .placeholder{
  position: absolute;
  margin-top: -3px;
  font-size: 22px;
  color: #98A5B1;
  pointer-events: none;
}
.tweet-area .input{
  outline: none;
  font-size: 17px;
  min-height: inherit;
  word-wrap: break-word;
  word-break: break-all;
  z-index: 5;
}
.tweet-area .editable{
  position: relative;
  z-index: 1;
}
.tweet-area .readonly{
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  color: transparent;
  background: transparent;
}
.readonly .highlight{
  background: #fd9bb0;
}
.input-box .privacy{
  color: var(--primary-color);
  margin: 15px 0;
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.privacy:hover, .icons li:hover{
  background: #e7f5fe;
}
.privacy i{
  font-size: 18px;
}
.privacy span{
  font-size: 15px;
  font-weight: 600;
  margin-left: 7px;
}
.bottom{
  display: flex;
  margin-top: 13px;
  align-items: center;
  justify-content: space-between;
}
.bottom .icons{
  display: inline-flex;
}
.icons li{
  list-style: none;
  color: var(--primary-color);
  font-size: 20px;
  margin: 0 2px;
  height: 38px;
  width: 38px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}
.bottom .content{
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottom .counter{
  color: #333;
  display: none;
  font-weight: 500;
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid #aab8c2;
}
.bottom button{
  padding: 9px 18px;
  border: none;
  outline: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  background: #6da1f1;
  color: #fff;
  cursor: pointer;
  opacity: 0.5;
  pointer-events: none;
  transition: background 0.2s ease;
}
.bottom button.active{
  opacity: 1;
  pointer-events: auto;
}
.bottom button:hover{
  background: #0d8bd9;
}
/* end shear tweet box for js */




.main-page-section .center-box  .post-container::-webkit-scrollbar {
    width: 5px;
    background-color: rgb(0, 0, 0, 0.2);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    visibility: hidden;
}
.main-page-section .center-box  .post-container::-webkit-scrollbar-thumb  {
    width: 5px;
    background-color: rgb(0, 0, 0, 0.3);
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    visibility: hidden;
}
.main-page-section .center-box  .post-container:hover::-webkit-scrollbar {
    visibility: visible;
}
.main-page-section .center-box  .post-container:hover::-webkit-scrollbar-thumb  {
    visibility: visible;
}
.main-page-section .center-box .post-container .post-card {
    width: 100%;
    height: auto;
    /* border: 2px solid rgb(0, 0, 0, 0.9); */
    padding: 12px 15px 0px 15px;
    display: flex;
    background-color: var(--secondary-color);
}
.main-page-section .center-box .post-container .post-profile-pic {
    width: 10%;
}
.main-page-section .center-box .post-container .post-profile-pic img {
    width: 35px;
    height: 35px;
    border-radius: var(--secondary-border-radius);
    -webkit-border-radius: var(--secondary-border-radius);
    -moz-border-radius: var(--secondary-border-radius);
    -ms-border-radius: var(--secondary-border-radius);
    -o-border-radius: var(--secondary-border-radius);
}
.main-page-section .center-box .post-container .post-content {
    width: 90%;
    height: auto;
    border: 2px solid rgb(0, 0, 0, 0.1);
    border-radius: var(--main-border-radius);
    padding: 0px 10px;
    -webkit-border-radius: var(--main-border-radius);
    -moz-border-radius: var(--main-border-radius);
    -ms-border-radius: var(--main-border-radius);
    -o-border-radius: var(--main-border-radius);
}
.main-page-section .center-box .post-container .post-content .retweet{
    color: rgb(0, 0, 0, 0.3);
    font-size: 11px;
    display: flex;
    align-items: center;
    padding-top: 10px;

}
.main-page-section .center-box .post-container .post-content .retweet i{
    font-size: 12px;
    margin-right: 5px;
}
.main-page-section .center-box .post-container .post-content .name-time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 5px 0px; */
}
.main-page-section .center-box .post-container .post-content .name-time h5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px;
    font-size: 13px;
    font-weight: 700;
    color: rgb(0, 0, 0, 0.8);
}
.main-page-section .center-box .post-container .post-content .name-time h6 {
    color: rgb(0, 0, 0, 0.7);
}
.main-page-section .center-box .post-container .post-content .name-time img {
    margin: 0px 10px ;
    width: 14px;
}
.main-page-section .center-box .post-container .post-content .name-time h5 span.username {
    color: rgb(0, 0, 0, 0.3);
    font-size: 11px;
}
.main-page-section .center-box .post-container .post-content .post-text {
    color: rgb(0, 0, 0, 0.8);
    font-size: 11px;
    font-weight: 600;
}
.main-page-section .center-box .post-container .post-content .retweet-container {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    padding: 12px;
    margin-top: 10px;
    border: 2px solid rgb(0, 0, 0, 0.1);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    -webkit-border-radius: var(--main-border-radius);
    -moz-border-radius: var(--main-border-radius);
    -ms-border-radius: var(--main-border-radius);
    -o-border-radius: var(--main-border-radius);
}
.main-page-section .center-box .post-container .post-content .retweet-container .retweet-name-time {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.main-page-section .center-box .post-container .post-content .retweet-name-time h5 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:0px;
    font-size: 13px;
    font-weight: 700;
    color: rgb(0, 0, 0, 0.8);
}
.main-page-section .center-box .post-container .post-content .retweet-container .retweet-name-time img  {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 13px;
}
.main-page-section .center-box .post-container .post-content .retweet-container h5 span.username {
    color: rgb(0, 0, 0, 0.3);
    font-size: 11px;
    margin-left: 8px;
}
.main-page-section .center-box .post-container .post-content .retweet-container .retweet-post-text {
    color: rgb(0, 0, 0, 0.8);
    font-size: 11px;
    font-weight: 600;
}
.main-page-section .center-box .post-container .post-content .retweet-container  .retweet-name-time h6 {
    color: rgb(0, 0, 0, 0.7);
}
.main-page-section .center-box .post-container .post-content  .post-footer {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 14px 0px 7px 0px;
}
.main-page-section .center-box .post-container .post-content  .post-footer a {
    padding: 7px 33px;
    text-decoration: none;
    font-size: 12px;
    color: #000;
    font-weight: 500;
    border-right: 1px solid rgb(0, 0, 0, 0.1);
}
.main-page-section .center-box .post-container .post-content  .post-footer .last {
    border-right: none;
}
.main-page-section .center-box .post-container .post-content  .post-footer i {
    color: rgb(0, 0, 0, 0.3);
    margin-right: 5px;
}
.main-page-section .center-box .post-container .post-content  .post-footer .fa-heart {
    color:red
}

.main-page-section .center-box .post-container .post-content .tweet-container {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    margin-top: 10px;
    display: flex;
}
.main-page-section .center-box .post-container .post-content .tweet-container .post-photos {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.main-page-section .center-box .post-container .post-content .tweet-container .post-photos img {
    width: 32%;
    height: 90px;
    border-radius: var(--main-border-radius);
    -webkit-border-radius: var(--main-border-radius);
    -moz-border-radius: var(--main-border-radius);
    -ms-border-radius: var(--main-border-radius);
    -o-border-radius: var(--main-border-radius);
}
header section .right-box {
    width: 250px;
    height: auto;
    margin-left: 20px;
}
header section .right-box .trends-box {
    width:100%;
    height: auto;
    background-color: var(--secondary-color);
    padding: 11px;
    border-radius: var(--main-border-radius);
    -webkit-border-radius: var(--main-border-radius);
    -moz-border-radius: var(--main-border-radius);
    -ms-border-radius: var(--main-border-radius);
    -o-border-radius: var(--main-border-radius);
    margin-bottom: 15px;
}
header section .right-box .trends-box .trends-for-u {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 9px;
    border-bottom: 2px solid rgb(0, 0, 0, 0.1);
}
header section .right-box .trends-box .trends-for-u h5 {
    padding: 0px;
    font-size: 13px;
    font-weight: 700;
    color: rgb(0, 0, 0, 0.8);
}
header section .right-box .trends-box .trends-menu {
    width: 100%;
    height: auto;
    padding: 10px 10px 0px 10px;
}
header section .right-box .trends-box .trends-menu .trend-content {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 2px;
}
header section .right-box .trends-box .trends-menu .trend-content i {
    font-size: 14px;
}
header section .right-box .trends-box .trends-menu .trend-content h5 {
    font-size: 12px;
    font-weight: 700;
    color: rgb(0, 0, 0, 0.8);
}
header section .right-box .trends-box .trends-menu .trend-content h6 {
    font-size: 11px;
    color: rgb(0, 0, 0, 0.3);
}
header section .right-box .see-more {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
header section .right-box .see-more  h5{
    transition: var(--main-transition);
    padding-top: 6px;
    font-size: 13px;
    -webkit-transition: var(--main-transition);
    -moz-transition: var(--main-transition);
    -ms-transition: var(--main-transition);
    -o-transition: var(--main-transition);
}
header section .right-box .see-more:hover h5{
    color: #000;
    cursor: pointer;
}
header section .suggest-follow-box {
    width:100%;
    height: auto;
    background-color: var(--secondary-color);
    padding: 11px;
    border-radius: var(--main-border-radius);
    -webkit-border-radius: var(--main-border-radius);
    -moz-border-radius: var(--main-border-radius);
    -ms-border-radius: var(--main-border-radius);
    -o-border-radius: var(--main-border-radius);
    margin-bottom: 20px;
}
header section .suggest-follow-box .suggest-follow-box {
    width:100%;
    height: auto;
    background-color: var(--secondary-color);
    padding: 11px;
    border-radius: var(--main-border-radius);
    -webkit-border-radius: var(--main-border-radius);
    -moz-border-radius: var(--main-border-radius);
    -ms-border-radius: var(--main-border-radius);
    -o-border-radius: var(--main-border-radius);
    margin-bottom: 20px;
}
/* start suggest follow */
header section .right-box .suggest-follow-box {
    width:100%;
    height: auto;
    background-color: var(--secondary-color);
    padding: 11px;
    border-radius: var(--main-border-radius);
    -webkit-border-radius: var(--main-border-radius);
    -moz-border-radius: var(--main-border-radius);
    -ms-border-radius: var(--main-border-radius);
    -o-border-radius: var(--main-border-radius);
    margin-bottom: 20px;
}
header section .right-box .suggest-follow-box .u-should-follow {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 9px;
    border-bottom: 2px solid rgb(0, 0, 0, 0.1);
}
header section .right-box .suggest-follow-box .u-should-follow h5 {
    padding: 0px;
    font-size: 13px;
    font-weight: 700;
    color: rgb(0, 0, 0, 0.8);
}
header section .right-box .suggest-follow-box .u-should-follow .follow-menu {
    width: 100%;
    height: auto;
    padding: 10px 10px 0px 10px;
}
header section .right-box .suggest-follow-box .follow-content {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 3px;
}
header section .right-box .suggest-follow-box .follow-content .info {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    margin-top: 10px;
}
header section .right-box .suggest-follow-box .follow-content .info  img{
    width: 40px;
    height: 40px;
    border-radius: var(--secondary-border-radius);
    -webkit-border-radius: var(--secondary-border-radius);
    -moz-border-radius: var(--secondary-border-radius);
    -ms-border-radius: var(--secondary-border-radius);
    -o-border-radius: var(--secondary-border-radius);
}
header section .right-box .suggest-follow-box .follow-content .username{
    margin-left: 10px;
}
header section .right-box .suggest-follow-box .follow-content .info  .username-content{
    color: #000;
    display: flex;
    align-items: center;
    margin-left: 10px;
}
header section .right-box .suggest-follow-box .follow-content .info  .username-content{
    color: #000;
    padding: 0;
    width: 90%;
    font-size: 12px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
header section .right-box .suggest-follow-box .follow-content .info  .username-content img {
    width: 15px;
    height: 15px;
    margin-left: 5px;
}
header section .right-box .suggest-follow-box .follow-content .info  h6 {
    font-size: 14px;
    color: #000;
    font-weight: 600;
}
header section .right-box .suggest-follow-box .follow-content .info  p {
    font-size: 11px;
    color: rgb(0, 0, 0, 0.3);
    font-weight: 600;
    margin-left: 10px;
}
header section .right-box .suggest-follow-box .follow-content .follow-btn {
    /* margin-top: 40px; */
    padding: 7px 14px;
    background-color: var(--primary-color);
    border: none;
    outline: none;
    color: var(--secondary-color);
    cursor: pointer;
    transition: 0.5s;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}
header section .right-box .suggest-follow-box .follow-content .follow-btn:hover {
    opacity: 0.5;
}
/* end suggest follow */
