.gojiwiseposts .post-container {
    overflow-y: scroll;
    height: 100%;
    display: flex;
}

.gojiwiseposts .message-title {
    margin: 5px 0;
    font-weight: bold;
    padding: 0 10px;
}

.gojiwiseposts .bodyContainer .postView,
.gojiwiseposts .bodyContainer.comments .commentsView,
.gojiwiseposts .bodyContainer.newPoll .newPollView {
    display: flex;
    flex-direction: column;
    height: 80vh;
    visibility: visible;
    transition: opacity 0.5s ease;
    opacity: 1;
}

.gojiwiseposts .bodyContainer .commentsView,
.gojiwiseposts .bodyContainer.comments .postView,
.gojiwiseposts .bodyContainer .newPollView,
.gojiwiseposts .bodyContainer.newPoll .postView {
    height: 0;
    display: none;
    visibility: hidden;
    opacity: 0;
}

.gojiwiseposts .commentsView .post-container {
    height: calc(100% - 50px);
}

.gojiwiseposts .commentsView .post-container .line-separator {
    padding-bottom: 10px;
}

.gojiwiseposts #_inlinePostInputContainer {
    position: unset;
}

.gojiwiseposts .postwriter {
    position: relative;
    padding-bottom: 0;
}

.gojiwiseposts .postwriter .newPostContainer {
    padding-bottom: 0;
}

.gojiwiseposts .postwriter .newPostContainer .flex-container {
    padding-left: 10px;
}

.gojiwiseposts .commentsView .border-bottom,
.gojiwiseposts .newPollView .border-bottom {
    display: flex;
    justify-content: space-between;
}

.gojiwiseposts .newPollView .pollcreation {
    width: 100%;
}

.gojiwiseposts .postwriter .line-separator {
    padding-bottom: 10px;
}

.gojiwiseposts .closeComments,
.gojiwiseposts .closeNewPoll {
    border: none;
    background-color: inherit;
    margin-right: 10px;
    cursor: pointer;
    outline: none;
}

.gojiwiseposts .closeComments > span,
.gojiwiseposts .closeNewPoll > span {
    margin-bottom: 0;
    font-family: "Metropolis Regular";
    line-height: 1.12 !important;
    letter-spacing: 3.24px;
    color: #333333;
    font-size: 25px;
}

.gojiwiseposts.dragging::after {
    position: relative;
    height: 80vh;
    bottom: 80vh;
    content: "drop a file";
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Metropolis Bold";
    font-size: 20px;
    line-height: 1.23;
    letter-spacing: 1.3px;
    color: #ffffff;
    outline: dashed;
    outline-offset: -20px;
    text-transform: uppercase;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.5s ease-in-out;
}

.gojiwiseposts .postwriter .counter {
    right: 58px;
    bottom: 8px;
}

.gojiwiseposts .postwriter.anonymous .counter,
.gojiwiseposts .postwriter.private .counter,
.gojiwiseposts .postwriter.sendImage .counter {
    right: 100px;
}

.gojiwiseposts .comments .counter {
    right: 42px;
    bottom: -2px;
}

@media only screen and (min-device-width: 810px) and (max-device-width: 1080px) {
    /* CSS Rules Here */
    .gojiwiseposts .bodyContainer .postView,
    .gojiwiseposts .bodyContainer.comments .commentsView,
    .gojiwiseposts .bodyContainer.newPoll .newPollView {
        height: 76vh;
    }

    body {
        overflow-y: hidden;
    }
}
