@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --body_bg: #161617;
    --color: #fff;
    --color_2: #c9cccf;
    --corp: #36b345;
    --block: #232324;
    --block_2: #1e1e1e;
    --desktop_width: 1250px;
}

HTML, BODY{
    margin: 0;
    padding: 0;
}

BODY{
    background: var(--body_bg);
    color: var(--color);
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings: "wdth" 100;
    font-size: 15px;
}

a{
    color: var(--corp);
}

header{
    height: 60px;
    background: var(--block);
}
header > div{
    width: var(--desktop_width);
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}
.header_items{
    display: flex;
    align-items: center;
    gap: 15px;
}



.logo{
    color: var(--color);
    text-decoration: none;
}
.logo span{
    font-size: 17px;
    font-weight: 700;
}



.header_search{
    display: flex;
    align-items: center;
    transition: 0.3s;
}
.header_search svg{
    display: block;
    margin: 0;
    padding: 0;
    width: 20px;
    height: 20px;
    fill: var(--color);
    transition: 0.3s;
}
.header_search:hover svg{
    fill: var(--corp);
}


.header_create{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color_2);
    text-decoration: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .02), 0 1px 3px rgba(0, 0, 0, .14);
    background: var(--block_2);
    height: 37px;
    padding: 0 15px;
    border-radius: 500px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}
.header_create svg{
    display: block;
    margin: 0;
    padding: 0;
    width: 20px;
    height: 20px;
    fill: var(--color_2);
    transition: 0.3s;
}
.header_create:hover{
    color: var(--corp);
}
.header_create:hover svg{
    fill: var(--corp);
}



.conteier{
    width: var(--desktop_width);
    margin: 25px auto;
    display: flex;
    gap: 45px;
}

.conteier_left{
    width: 211px;
}
.conteier_left a{
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color_2);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    padding: 10px 10px;
    border-radius: 10px;
}
.conteier_left a > div:nth-child(2){
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.conteier_left a:hover{
    background: var(--block);
    color: var(--color);
}
.conteier_left a svg{
    display: block;
    margin: 0;
    padding: 0;
    fill: var(--color_2);
    transition: 0.3s;
}
.conteier_left a:hover svg{
    fill: var(--corp);
}
.conteier_left a.active{
    background: var(--block);
    color: var(--color);
}
.conteier_left a.active svg{
    fill: var(--corp);
}

.conteier_left_head{
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    margin-top: 25px;
    margin-bottom: 5px;
}

.hashtags > a > div:first-child{
    font-weight: 700;
    font-size: 17px;
}
.hashtags > a:nth-child(1) > div:first-child{color: #8fda98;}
.hashtags > a:nth-child(2) > div:first-child{color: #8fceda;}
.hashtags > a:nth-child(3) > div:first-child{color: #dad08f;}
.hashtags > a:nth-child(4) > div:first-child{color: #c48fda;}
.hashtags > a:nth-child(5) > div:first-child{color: #da8f92;}
.hashtags > a:nth-child(6) > div:first-child{color: #8fdace;}
.hashtags > a:nth-child(7) > div:first-child{color: #8f93da;}
.hashtags > a:nth-child(8) > div:first-child{color: #8fdab4;}
.hashtags > a:nth-child(9) > div:first-child{color: #8fda98;}
.hashtags > a:nth-child(10) > div:first-child{color: #8fceda;}
.hashtags > a:nth-child(11) > div:first-child{color: #dad08f;}
.hashtags > a:nth-child(12) > div:first-child{color: #c48fda;}
.hashtags > a:nth-child(13) > div:first-child{color: #da8f92;}
.hashtags > a:nth-child(14) > div:first-child{color: #8fdace;}
.hashtags > a:nth-child(15) > div:first-child{color: #8f93da;}

.conteier_center{
    flex: 1;
}

.conteier_right{
    width: 300px;
}

.offer_create_post{
    background: var(--block);
    border-radius: 10px;
    margin-bottom: 25px;
    padding: 15px;
    color: var(--color_2);
}
.offer_create_post > div:first-child{
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;
}
.offer_create_post_price{
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
    color: var(--color);
    font-weight: 500;
    font-size: 16px;
}
.offer_create_post_price img{
    height: 20px;
}
.offer_create_post_price a{
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--block_2);
    border-radius: 100px;
    width: 28px;
    height: 28px;
    transition: 0.3s;
}
.offer_create_post_price a svg{
    display: block;
    margin: 0;
    padding: 0;
    fill: var(--color_2);
    width: 14px;
    transition: 0.3s;
}
.offer_create_post_price a:hover{
    background: var(--corp);
}
.offer_create_post_price a svg{
    fill: var(--color);
}



.post{
    margin-bottom: 25px;
    padding: 15px;
    background: var(--block);
    border-radius: 10px;
}
.post_head{
    display: flex;
    align-items: center;
    gap: 10px;
}
.post_head .avatar{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--block_2);
    border-radius: 100px;
    font-weight: 700;
    color: var(--color_2);
}
.post_head .author{
    flex: 1;
}
.post_head .author > div:first-child{
    font-weight: 400;
    font-size: 15px;
}
.post_head .author a{
    color: var(--color_2);
}
.post_head .date{
    color: var(--color_2);
}

.post_link{
    margin: 10px 0;
    font-size: 17px;
    font-weight: 400;
}
.post_link a{
    text-decoration: none;
    color: var(--color);
}

.post_ccontent{
    color: var(--color_2);
    line-height: 23px;
    font-size: 16px;
}

.show_more{
    margin-top: 15px;
}
.show_more a{
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    opacity: 1;
    transition: 0.3s;
}
.show_more a svg{
    display: block;
    margin: 0;
    padding: 0;
    fill: var(--corp);
    width: 11px;
}
.show_more a:hover{
    opacity: 0.7;
}



.emoji{
    margin-top: 15px;
    display: flex;
    gap: 10px;
}
.emoji > .emoji_btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--block_2);
    cursor: pointer;
    border-radius: 100px;
    transition: 0.3s;
}
.emoji > .emoji_btn > svg{
    display: block;
    margin: 0;
    padding: 0;
    fill: var(--color_2);
    transition: 0.3s;
}
.emoji > .emoji_btn:hover > svg{
    fill: var(--color);
}



.post_footer{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}
.post_footer button{
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--block_2);
    color: var(--color_2);
    padding: 1px 7px;
    border-radius: 100px;
    cursor: pointer;
    border: 0px;
    font-size: 12px;
    transition: 0.3s;
}
.post_footer button svg{
    width: 17px;
    display: block;
    margin: 0;
    padding: 0;
    fill: var(--color_2);
    transition: 0.3s;
}
.post_footer button:hover{
    color: var(--corp);
}
.post_footer button:hover svg{
    fill: var(--corp);
}