
.post {
    margin: 0 auto 10px auto;
    width: 600px;

}

.user, .title {
    margin-bottom: 10px;
    width: 100%;
    height: 50px;
    position: relative;
}

.title > .image {
    width: 50px;
    height: 50px;
    border: 1px solid #B3FCE6;
    position: absolute;
    top: 0;
    left: 0;
}

.user > .image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #B3FCE6;
    position: absolute;
    top: 0;
    left: 0;
}

.user > .image > img, .title > .image > img, .message > .image > img {
    width: 100%;
    height: 100%;
}

.user > .text, .title > .text {
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    position: absolute;
    top: 0;
    left: 70px;
}

.user > .text, .user > .date {

background: #0088FF;
background: linear-gradient(90deg, rgb(0, 136, 255) 0%, rgb(0, 218, 107) 100%);
    background-clip: text;
    color: transparent;
}

.user:hover > .text, .user:hover > .date {
    color: #0088FF;
}

.user > .date, .title > .date {
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    position: absolute;
    top: 0;
    right: 0;
}

.message {
    width: 100%;
    height: 350px;
}

.message > .image {
    width: 300px;
    height: 300px;
    border: 1px solid #B3FCE6;
    float: left;
}

.message > .text {
    margin-left: 20px;
    width: calc(100% - 322px);
    font-size: 22px;
    float: left;
}

.message > .open {
    margin-top: 10px;
    width: 100%;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #B3FCE6;
    border-radius: 20px;
background: #0088FF;
background: linear-gradient(90deg, rgb(0, 136, 255) 0%, rgb(0, 218, 107) 100%);
    float: left;
}

.message > .open:hover {
    color: #ffffff;
}

.user > .image,
.title > .image,
.message > .image {
    position: relative;
}


.user > .image > img,
.title > .image > img,
.message > .image > img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.user > .image > svg {
    position: absolute;
    top: -4px;
    left: 0;
    z-index: 0;
}

.title > .image > svg, .message > .image > svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}



.post-opened {
    width: 100%;
    height: calc(100% - 4px);
    background-color: #ffffff;
    position: absolute;
    top: 4px;
    left: 0;
    z-index: 100;
    overflow-y: auto;
}

.post-opened .title input {
    width: 100%;
    height: 100%;
    font-size: 18px;
}



.post-opened .content {
    margin: 0 auto;
    padding: 40px 0;
    width: 600px;
    min-height: 100%;
}

.post-opened .content > .image {
    margin: 20px 0;
    width: 100%;
    height: 300px;
    position: relative;
}


.image > .image-view {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.post-opened textarea {
    width: 100%;
    height: 500px;
    font-size: 18px;
    resize: none;
}

.post-close {
    margin-left: -320px;
    width: 640px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: #B3FCE6;
    border-radius: 20px;
background: #0088FF;
background: linear-gradient(90deg, rgb(0, 136, 255) 0%, rgb(0, 218, 107) 100%);
    position: absolute;
    top: 10px;
    left: 50%;
    z-index: 9;
}

.post-close {
    color: #ffffff;
}


.post-opened-scroller {
    padding: 30px 0;
    width: 100%;
    height: calc(100% - 60px);
    overflow-y: auto;
    position: absolute;
    top: 0;
    left: 0;
}