.new_category_style_container{
    width: 100%;
    height: 100vh;
    background-color: #0005;

    position: fixed;
    z-index: 100000;

    top: 0;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;

    opacity: 0;
    display: none;
    transition: opacity 0.75s;
}

.new_category_style_close_area{
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
}

.new_category_style_body{
    width: 1000px;
    max-height: 450px;
    /* background-color: red; */
    background-color: #fff;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    align-content:flex-start;



    list-style-position: inside;
    

    border-radius: 15px;

    /* position: fixed;

    top: 50%;
    right: 50%;
    transform: translateX(50%) translateY(-50%); */

    /* z-index: 100000; */

    position: relative;

    z-index: 100;

    padding: 20px 0;

    /* display: none; */

    box-shadow: 0 0 10px #2e2e2e;
}

.new_category_style_body a{
    text-decoration: unset;
    color: unset;
}

.new_category_title{
    font-family: kalameh;
    font-size: 25px;
    font-weight: 800;
    line-height: 25px;
    color: #2e2e2e;

    margin-right: 20px;
}




.new_category_style_body>ul{
    display: flex;
    flex-flow: column wrap;
    align-items: flex-start;
    justify-content: flex-start;
    align-content:flex-start;

    list-style-position: inside;
    min-height: 300px;


    font-family: vazirmatn;
    font-size: 16px;
    padding: 15px 0 0 0 ;

    gap: 5px 50px;

    color: #2e2e2e;
}

.new_category_style_body>ul>li{
    margin-right: 30px;
}

.new_category_style_body>ul>li ul{
    margin-right: 15px;
}

.new_category_close{
    width: 30px;
    height: 30px;
    background-image: url(../icons/close-circle.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 15px;
    left: 18px;

    cursor: pointer;
}



@media (max-width: 1100px ) {

    .new_category_style_body{
        width: 90%;
        max-height: 75vh;
    }

    .new_category_style_body>ul{
        width: 100%;
        flex-flow: column nowrap;
        overflow-y: scroll;
    }

}