#main-area {
    padding: 20px;
}

#post-box {}

#post-menu {}

.post-menu-items {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    margin-bottom: 15px;
}

.post-menu-items:after {
    content: "∨";
    position: absolute;
    top: 5px;
    right: 10px;
}

.post-menu-items:last-child:after {
    content : "";
}

.post-menu-items label {
    display: block;
    width: 130px;
    font-size: 16px;
    font-weight: 400;
    color: #333;
    margin-right: 10px;
}

.post-menu-items input, .post-menu-items select {
    display: block;
    width: calc(100% - 140px);
    height: 33px;
    font-size: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #efefef;
    border-radius: 0;
    outline: none;
    padding: 0 5px;
    background-color: #fff;
    position: relative;
}

.post-menu-items input:focus, .post-menu-items select:focus {
    border: 1px solid rgba(183, 211, 245, 0.8);
}

#post-editor {
    margin-top: 30px;
}

#post-button {
    margin-top: 30px;
    text-align: center;
}

#post-button button {
    border: 1px solid rgba(4, 163, 255, 0.7);
    color: rgba(4, 163, 255, 0.7);
    padding: 7px 15px;
    background: none;
    border-radius: 3px;
    cursor: pointer;
}

#post-button button:hover {
    background: rgba(4, 163, 255, 0.7);
    color: #fff;
    transition: .2s;
}

.img-upload-form {
    display: none;
}

.image-loading-dim {
    display: none;
}

.image-loading-box {
    display: table;
    position: absolute;
    top: 25%;
    left: 25%;
    width: 50%;
    height: 50%; 
    text-align: center; 
    background-color: transparent; 
    z-index: 1002;
    overflow: auto;
}

.image-loading-icon-box {
    display: table-cell; 
    vertical-align: middle;
}

.image-loading-icon {
    user-select: none; 
    -ms-user-select: none;
}


@media ( max-width: 768px ) {
    footer {
        margin-top: 100px;
    }

    #community-header-bg {
        display: none;
    }
    
    #main-area {
        padding: 10px 0;
    }
    
    .post-menu-items {
        display: block;
        margin-bottom: 0;
    }
    
    .post-menu-items label {
        display: none;
    }
    
    .post-menu-items input, .post-menu-items select {
        width: 100%;
        height: 40px;
        padding: 0 15px;
        border: none;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }

    .post-menu-items input {
        border-top: none;
    }
    
    .post-menu-items select:focus {
        border: none;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
    }

    .post-menu-items input:focus {
        border: none;
        border-bottom: 1px solid #eee;
    }
    
    #post-editor {
        margin-top: 10px;
    }
}