/*..................................*/
/*_______________POSTS______________*/
/*..................................*/
.posts {
    margin-bottom: 50px;
}

.post {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    justify-content: start;
    align-items: flex-start;
    overflow: hidden;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: #101010;
    color: #ccc;
}

.post a {
    text-decoration: none;    
}

.postUserAvatar {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
}

.postUserAvatar img {
    width: 100%;
    height: 100%;
	transition: .2s;
	cursor: pointer;
}

.postUserAvatar > img:hover {
	transform: scale(1.1);
}

.postNameAndDescription {
    flex-grow: 1;
    max-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-left: 10px;
}

.postName {
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 3px;
    color: #000;
    background-color: #d97600;
    text-align: center;
    word-wrap: break-word;
    border-radius: 5px;
}

.postDescription {
    overflow-y: scroll;
    scrollbar-color: #e27f00 #000;
    scrollbar-width: thin;
}

.postDescription {
    width: 100%;
    min-height: 75px;
    padding: 10px;
    padding-left: 5px;
    overflow-y: scroll;
    word-wrap: break-word;
    background-color: #282828;
    border-radius: 5px;
}

.likePostBtn{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 20px;
    bottom: 17px;
    width: 40px;
    height: 40px;
    padding-right: 2px;
    padding-left: 5px;
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px 5px #000;
    background-image: linear-gradient(#b16300, #ff8b00);
    font-size: 14px;
    transition: .2s;
    cursor: default;
}

.likePostBtn:hover{
    color: #000;
}