
.upload_section{

    }
    .upload_section .upload_section_child{
        position:relative;
        height:100%;
        width:100%;
    }
    .upload_section .upload_head{
        padding:10px 20px;
        font-weight:bold;
        position:sticky;
        top:0;
        left:0;
        width:100%;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        z-index:9999;
        background:#000;
        color:#fff;
    }
    .welcome_message{
        padding:10px;
        color:#2496EF;
        text-align:center;
        padding-bottom:0;
    }
    .upload_section .upload_category{
        display:grid;
        grid-template-columns:1fr 1fr;
        justify-content:space-between;
        gap:20px;
        margin:auto;
        width:80%;
    }
    .upload_section .upload_category_item{
        text-decoration:none;
        color:#000;
        cursor:pointer;
        margin-top:20px;
        background:#F4F4F4;
        padding:10px;
        border-radius:10px;
        box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 8px 0px;
    }
    .upload_section .upload_category_item:hover{
        background:rgba(0,0,0,.1);
        transition:.3s;
    }
    .upload_section .upload_category img{
        height:80px;
        width:80px;
        border-radius:50%;
        display:block;
        margin:auto;
    }
    .upload_section .upload_category span{
        text-align:center;
        display:block;
    }