@import url('flux_preview_design.css');
@import url('https://yposts.me/users/assets/css/flux_creation_and_update.css');
@import url('poster_account_details_peek.css');

#fluxx_display_section_wrapper{
    margin: 35px auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}


/* new flux section */
#new_flux_creation_section {
    box-sizing: border-box;
    padding:10px;
    border-radius: 7px;
    border:1px solid lightgray;
    margin-bottom: 25px;
    margin-left:15px;
    max-height: 400px;
    overflow: hidden;
    overflow-y: auto;
    background-color: var(--bg-primary);
    width:95vw;
    max-width: 650px;
}
.new_flux_creation_section_title {
    line-height: 1.6em;
    margin-top: 5px;
    margin-bottom: 10px;
}
#flux_creation_popup_title{
    text-align:center;
    margin-bottom:15px;
    color:dimgray
}
.meta_post_section_header{
    line-height: 1.6em;
    margin-top:25px;
    margin-bottom: 10px;
}
#express_flux_section {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    cursor: pointer;
}
#express_flux_user_avatar {
    display: inline-block;
    border:1px solid lightgray;
    border-radius: 50%;
    box-sizing: border-box;
    min-width: 45px;
    width:45px;
    height:45px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: rgb(235, 235, 235);
    margin-right: 15px;
}
#express_flux_placeholder_text_input_element {
    box-sizing: border-box;
    border:1px solid lightgray;
    border-radius: 7px;
    padding: 12px;
    font-size: 16px;
    width:98%;
    max-width: 500px;
    cursor: pointer;
}
#express_flux_section:hover #express_flux_placeholder_text_input_element {
    border:2px solid rgb(0,140,230)
}
#new_flux_creation_section_popup_wrapper {
    width: 100vw;
    height: 100vh;
    box-sizing: border-box;
    background-color: rgba(9, 9, 9, 0.85);
    position: fixed;
    left:0;
    top:0;
    z-index: 1000;
    display: none;
}
#new_flux_creation_section_popup {
    box-sizing: border-box;
    margin: auto;
    margin-top:10px;
    background-color: whitesmoke;
    width:98vw;
    max-width: 600px;
    max-height: calc(98vh - 20px);
    padding:5px;
    border-radius: 7px;
    border:1px solid lightgray;
    overflow: hidden;
    overflow-y: auto;
}
#flux_creation_popup_closer_section {
    text-align: right;
    padding: 10px;
}
#flux_creation_popup_closer {
    font-weight: bold;
    font-size: 22px;
    color: dimgray;
    cursor: pointer;
}
#flux_creation_popup_closer:hover {
    color:black
}
@media only screen and (max-width:1202px){

}

@media only screen and (max-width:802px){
    #new_flux_creation_section {
        padding:5px;
        max-width: 450px;
        margin:auto;
        margin-bottom: 25px;
    }
    #express_flux_user_avatar {
        min-width: 40px;

        width:40px;
        height:40px;
       
        margin-right: 10px;
    }

}


@media only screen and (max-width:602px){
    #new_flux_creation_section {
        padding:5px;
        max-height: unset;
        overflow: unset;     
    }

    #express_flux_user_avatar {
        min-width: 35px;

        width:35px;
        height:35px;
       
        margin-right: 10px;
    }
    #express_flux_placeholder_text_input_element {
        font-size: 14px;
        padding: 10px;
    }

}


@media only screen and (max-width:402px){

}