
.popup{
    position: fixed;
    background-color: rgb(0, 0, 0, 0.75);
    width: 100%;
    height: 100%;
    z-index: 10;
    display: flex;
    align-content: center;
    justify-items: center;
    overflow: none;
}


/* User Popup */
.popup > .user-popup-con{
    position: relative;
    min-width: 200px;
    max-width: 500px;
    width: 100%;
    height: auto;
    /* top: calc(100vh/2 - 300px);
    margin: auto; */
    display: flex;
    flex-direction: column;
    border-radius: 25px;
    overflow: none;
}
.popup > .user-popup-con > .footer{
    position: relative;
    width: auto;
    height: auto;
    margin: 10px;
    display: flex;
    flex-direction: column;
}
    .popup > .user-popup-con > .footer > button{
        position: relative;
        min-width: 150px;
        width: 95%;
        height: 35px;
        margin: auto;
        margin-bottom: 5px;
        border: none;
        outline: none;
        border-radius: 10px;
    }
.popup > .user-popup-con > .header{
    position: relative;
    width: 100%;
    height: 35px;
    margin: 10px 0px 15px 0px;
}
    .popup > .user-popup-con > .header > .title{
        position: relative;
        width: 100%;
        height: 100%;
        padding-top: 5px;
        text-align: center;
    }
    .popup > .user-popup-con > .header > .title > span{
        font-size: 1.7em;
    }
    .popup > .user-popup-con > .header > .title > .user-popup-close{
        position: absolute;
        width: 50px;
        height: 50px;
        size: 1.7em;
        color: whitesmoke;
        right: 0px;
        top: 3px;
    }
.popup > .user-popup-con > .main{
    position: relative;
    width: 100%;
    height: auto;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: none;
}
.popup > .user-popup-con > .main > .row{
    position: relative;
    width: calc(100% - 15px);
    min-height: 50px;
    height: auto;
    padding: 0px 7px 0px 7px;
    margin: 2px 0px 2px 0px;
    display: flex;
    flex-direction: row;
}

    .popup > .user-popup-con > .main > .row > .col{
        position: relative;
        width: calc(100% - 4px);
        height: 100%;
        margin: 2px;
        display: flex;
        flex-direction: column;
    }
    .popup > .user-popup-con > .main > .row > .col > span{
        position: relative;
        width: 100%;
        height: auto;
        font-size: 1.2em;
    }
    .popup > .user-popup-con > .main > .row > .col > input, select{
        position: relative;
        width: 100%;
        height: 25px;
        font-size: 1em;
        padding: 0px 5px 0px 5px;
        border: none;
        outline: none;
        border-radius: 7px;
    }

/* Small phones */
@media (max-width: 480px) {
    
    .popup > .user-popup-con > .main > .row{
        display: flex;
        flex-direction: column;
    }
}



/* Category Popup */
.popup > .category-popup-con{
    position: relative;
    min-width: 200px;
    max-width: 500px;
    width: 100%;
    height: auto;
    /* margin: auto;
    top: calc(50vh - 150px); */
    display: flex;
    flex-direction: column;
    border-radius: 25px;
    overflow: none;
}
.popup > .category-popup-con > .footer{
    position: relative;
    width: auto;
    height: auto;
    margin: 15px 10px 10px 10px;
    display: flex;
    flex-direction: column;
}
    .popup > .category-popup-con > .footer > button{
        position: relative;
        min-width: 150px;
        width: 95%;
        height: 35px;
        margin: auto;
        margin-bottom: 5px;
        border: none;
        outline: none;
        border-radius: 10px;
    }
.popup > .category-popup-con > .header{
    position: relative;
    width: 100%;
    height: 35px;
    margin: 10px 0px 15px 0px;
}
    .popup > .category-popup-con > .header > .title{
        position: relative;
        width: 100%;
        height: 100%;
        padding-top: 5px;
        text-align: center;
    }
    .popup > .category-popup-con > .header > .title > span{
        font-size: 1.7em;
    }
    .popup > .category-popup-con > .header > .title > .category-popup-close{
        position: absolute;
        width: 50px;
        height: 50px;
        size: 1.7em;
        color: whitesmoke;
        right: 0px;
        top: 3px;
    }
.popup > .category-popup-con > .main{
    position: relative;
    width: 100%;
    height: auto;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: none;
}
.popup > .category-popup-con > .main > .row{
    position: relative;
    width: calc(100% - 15px);
    height: auto;
    padding: 0px 7px 0px 7px;
    margin: 2px 0px 2px 0px;
    display: flex;
    flex-direction: row;
}
    .popup > .category-popup-con > .main > .row > .col{
        position: relative;
        width: calc(100% - 4px);
        height: 100%;
        margin: 2px;
        display: flex;
        flex-direction: column;
    }
    .popup > .category-popup-con > .main > .row > .col > span{
        position: relative;
        width: 100%;
        height: auto;
        font-size: 1.2em;
    }
    .popup > .category-popup-con > .main > .row > .col > input, select{
        position: relative;
        width: 100%;
        height: 25px;
        font-size: 1em;
        padding: 0px 5px 0px 5px;
        border: none;
        outline: none;
        border-radius: 7px;
    }



/* Inventory Popup */
.popup > .inventory-popup-con{
    position: relative;
    min-width: 200px;
    max-width: 500px;
    width: 100%;
    height: auto;
    /* top: calc(100vh/2 - 300px); */
    /* margin: auto; */
    display: flex;
    flex-direction: column;
    border-radius: 25px;
    overflow: none;
}
.popup > .inventory-popup-con > .footer{
    position: relative;
    width: auto;
    height: auto;
    margin: 15px 10px 10px 10px;
    display: flex;
    flex-direction: column;
}
    .popup > .inventory-popup-con > .footer > button{
        position: relative;
        min-width: 150px;
        width: 95%;
        height: 35px;
        margin: auto;
        margin-bottom: 5px;
        border: none;
        outline: none;
        border-radius: 10px;
    }
.popup > .inventory-popup-con > .header{
    position: relative;
    width: 100%;
    height: 35px;
    margin: 10px 0px 15px 0px;
}
    .popup > .inventory-popup-con > .header > .title{
        position: relative;
        width: 100%;
        height: 100%;
        padding-top: 5px;
        text-align: center;
    }
    .popup > .inventory-popup-con > .header > .title > span{
        font-size: 1.7em;
    }
    .popup > .inventory-popup-con > .header > .title > .inventory-popup-close{
        position: absolute;
        width: 50px;
        height: 50px;
        size: 1.7em;
        color: whitesmoke;
        right: 0px;
        top: 3px;
    }
.popup > .inventory-popup-con > .main{
    position: relative;
    width: 100%;
    height: auto;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: none;
}
.popup > .inventory-popup-con > .main > .row{
    position: relative;
    width: calc(100% - 15px);
    height: auto;
    padding: 0px 7px 0px 7px;
    margin: 2px 0px 2px 0px;
    display: flex;
    flex-direction: row;
}
    .popup > .inventory-popup-con > .main > .row > .col{
        position: relative;
        width: calc(100% - 4px);
        height: 100%;
        margin: 2px;
        display: flex;
        flex-direction: column;
    }
    .popup > .inventory-popup-con > .main > .row > .col > span{
        position: relative;
        width: 100%;
        height: auto;
        font-size: 1.2em;
    }
    .popup > .inventory-popup-con > .main > .row > .col > input, select{
        position: relative;
        width: 100%;
        height: 25px;
        font-size: 1em;
        padding: 0px 5px 0px 5px;
        border: none;
        outline: none;
        border-radius: 7px;
    }

/* Small phones */
@media (max-width: 480px) {
    
    .popup > .inventory-popup-con{
        height: auto;
        max-height: 80%;
    }
    .popup > .inventory-popup-con > .main{
        overflow-y: auto;
    }
    .popup > .inventory-popup-con > .main > .row{
        display: flex;
        flex-direction: column;
    }
}



/* sale Popup */
.popup > .sale-popup-con{
    position: relative;
    min-width: 200px;
    max-width: 700px;
    width: auto;
    height: auto;
    max-height: calc(30vh+460px);
    /* top: 25px; */
    /* top: calc(calc(35vh - 100px)/2);
    margin: auto; */
    display: flex;
    flex-direction: column;
    border-radius: 25px;
    /* align-items: center;  */
    overflow-y: none;
    overflow-x: none;
}
.popup > .sale-popup-con > .footer{
    position: relative;
    width: auto;
    height: auto;
    margin: 10px 10px 10px 10px;
    display: flex;
    flex-direction: column;
}
    .popup > .sale-popup-con > .footer > button{
        position: relative;
        min-width: 150px;
        width: 95%;
        height: 35px;
        margin: auto;
        margin-bottom: 5px;
        border: none;
        outline: none;
        border-radius: 10px;
    }
.popup > .sale-popup-con > .header{
    position: relative;
    width: 100%;
    height: 35px;
    margin: 10px 0px 15px 0px;
}
    .popup > .sale-popup-con > .header > .title{
        position: relative;
        width: 100%;
        height: 100%;
        padding-top: 5px;
        text-align: center;
    }
    .popup > .sale-popup-con > .header > .title > span{
        font-size: 1.7em;
    }
    .popup > .sale-popup-con > .header > .title > .sale-popup-close{
        position: absolute;
        width: 50px;
        height: 50px;
        size: 1.7em;
        color: whitesmoke;
        right: 0px;
        top: 3px;
    }
.popup > .sale-popup-con > .main{
    position: relative;
    width: 100%;
    height: auto;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    overflow-y: none;
    overflow-x: none;
}
.popup > .sale-popup-con > .main > .row{
    position: relative;
    width: calc(100% - 15px);
    height: auto;
    padding: 0px 7px 0px 7px;
    margin: 2px 0px 2px 0px;
    display: flex;
    flex-direction: row;
    overflow-y: none;
    overflow-x: none;
}
    .popup > .sale-popup-con > .main > .row > .col{
        position: relative;
        width: 100%;
        height: 100%;
        margin: 2px;
        display: flex;
        flex-direction: column;
    }
    .popup > .sale-popup-con > .main > .row > .col > span{
        position: relative;
        width: 100%;
        height: auto;
        font-size: 1.2em;
    }
    .popup > .sale-popup-con > .main > .row > .col > input, select{
        position: relative;
        width: 100%;
        height: 25px;
        font-size: 1em;
        padding: 0px 5px 0px 5px;
        border: none;
        outline: none;
        border-radius: 7px;
    }

.popup > .sale-popup-con > .main > .header-title{
    position: relative;
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    margin-bottom: -5px;
}
.popup > .sale-popup-con > .main > .header-title > .sale-item-header-title{
    position: relative;
    min-width: 90px;
    width: auto;
    font-size: 1.2em;
    padding-left: 10px;
}
.popup > .sale-popup-con > .main > .header-title > #sale-item-add{
    position: relative;
    min-width: 25px;
    width: auto;
}
    .popup > .sale-popup-con > .main > .header-title > span > i{
        position: relative;
        width: auto;
        font-size: 1.3em;
        font-weight: bold;
    }
.popup > .sale-popup-con > .main > .sale-item-con{
    position: relative;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    margin: 5px 5px 5px 5px;
    padding: 2.5px 5px 2.5px 5px;
    border-radius: 5px;
    border: 1px solid whitesmoke;
    overflow-x: auto;
    overflow-y: none;
}
.sale-item-con > .header{
    position: relative;
    width: 100%;
    height: 25;
    display: flex;
    flex-direction: row;
}
    .sale-item-con > .header > span{
        position: relative;
        min-width: 61;
        width: 100%;
        max-width: 75px;
        height: auto;
        font-size: 1em;
        margin-right: 5px;
        text-align: center;
        /* text-decoration: underline; */
    }
    .sale-item-con > .header > .item{
        min-width: 140px;
        max-width: 300px;
        width: 100%;
    }
    .sale-item-con > .header > span.remove-filler{
        position: relative;
        min-width: 28px;
        max-width: 28px;
        height: auto;
    }
.sale-item-con > .sale-item-list{
    position: relative;
    width: auto;
    /* width: calc(100% - 20px); */
    height: auto;
    max-height: 30vh;
    display: flex;
    flex-direction: column;
    overflow-y: none;
    overflow-x: none;
}
    .sale-item-con > .sale-item-list > .sale-item-widget{
        position: relative;
        width: auto;
        min-height: 25;
        max-height: 25;
        display: flex;
        flex-direction: row;
        margin-bottom: 2.5px;
        overflow-y: none;
        overflow-x: none;
    }
    .sale-item-con > .sale-item-list > .sale-item-widget > select,
    .sale-item-con > .sale-item-list > .sale-item-widget > input{
        position: relative;
        min-width: 71;
        width: 100%;
        max-width: 85px;
        height: auto;
        font-size: 1em;
        border-radius: 5px;
        outline: none;
        border: none;
        margin-right: 5px;
        text-align: center;
    }
    .sale-item-con > .sale-item-list > .sale-item-widget > .item{
        min-width: 150px;
        max-width: 300px;
        width: 100%;
        text-align: left;
    }
    .sale-item-con > .sale-item-list > .sale-item-widget > .sale-item-remove{
        position: relative;
        min-width: 25px;
        max-width: 25px;
        height: auto;
        margin: auto;
    }
        .sale-item-con > .sale-item-list > .sale-item-widget > .sale-item-remove > i{
            font-size: 1.2em;
        }


/* Small phones */
@media (max-width: 290px) {
    .popup > .sale-popup-con > .main > .row{
        display: flex;
        flex-direction: column;
    }
}
@media (max-width: 480px) {
    .popup > .sale-popup-con{
        height: auto;
        max-height: 80%;
    }
    .popup > .sale-popup-con > .main{
        overflow-y: auto;
    }
    
}




/* sale report Popup */
.popup > .sale-report-popup-con{
    position: relative;
    min-width: 350px;
    max-width: 700px;
    width: auto;
    height: auto;
    /* top: calc(100vh/2 - 300px);
    margin: auto; */
    display: flex;
    flex-direction: column;
    border-radius: 25px;
}
.popup > .sale-report-popup-con > .footer{
    position: relative;
    width: auto;
    height: auto;
    margin: 10px 10px 10px 10px;
    display: flex;
    flex-direction: column;
}
    .popup > .sale-report-popup-con > .footer > button{
        position: relative;
        min-width: 150px;
        width: 95%;
        height: 35px;
        margin: auto;
        margin-bottom: 5px;
        border: none;
        outline: none;
        border-radius: 10px;
    }
.popup > .sale-report-popup-con > .header{
    position: relative;
    width: 100%;
    height: 35px;
    margin: 10px 0px 15px 0px;
}
    .popup > .sale-report-popup-con > .header > .title{
        position: relative;
        width: 100%;
        height: 100%;
        padding-top: 5px;
        text-align: center;
    }
    .popup > .sale-report-popup-con > .header > .title > span{
        font-size: 1.7em;
    }
    .popup > .sale-report-popup-con > .header > .title > .sale-report-popup-close{
        position: absolute;
        width: 50px;
        height: 50px;
        size: 1.7em;
        color: whitesmoke;
        right: 0px;
        top: 3px;
    }
.popup > .sale-report-popup-con > .main{
    position: relative;
    width: 100%;
    height: auto;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: none;
}
.popup > .sale-report-popup-con > .main > .row{
    position: relative;
    width: auto;
    height: auto;
    padding: 0px 7px 0px 7px;
    margin: 2px 0px 2px 0px;
    display: flex;
    flex-direction: row;
}
    .popup > .sale-report-popup-con > .main > .row > .col{
        position: relative;
        width: 100%;
        height: 100%;
        margin: 2px;
        display: flex;
        flex-direction: column;
    }
    .popup > .sale-report-popup-con > .main > .row > .col > span{
        position: relative;
        width: 100%;
        height: auto;
        font-size: 1.2em;
    }
    .popup > .sale-report-popup-con > .main > .row > .col > input, select{
        position: relative;
        width: 100%;
        height: 25px;
        font-size: 1em;
        padding: 0px 5px 0px 5px;
        border: none;
        outline: none;
        border-radius: 7px;
    }
.popup > .sale-report-popup-con > .main > .row > .sale-report-format,
.popup > .sale-report-popup-con > .main > .row > .sale-report-range{
    position: relative;
    width: 100%;
    height: 100%;
    margin: 2px;
    display: flex;
    flex-direction: column;
}
    .popup > .sale-report-popup-con > .main > .row > label,
    .sale-report-format > label,
    .sale-report-range > label{
        position: relative;
        width: 100%;
        height: 30px;
        font-size: 1.3em;
        padding: 0px 5px 0px 5px;
        border: none;
        outline: none;
        border-radius: 7px;
        cursor: pointer;
    }
.sale-report-range > .sale-report-custom{
    position: relative;
    width: auto;
    height: 100%;
    margin: 2px 2px 15px 2px;
    display: flex;
    flex-direction: row;
    display: none;
}
.sale-report-range > .sale-report-custom > div{
    position: relative;
    width: auto;
    height: 100%;
    margin: 0px 2px 2px 2px;
    display: flex;
    flex-direction: column;
}
    .sale-report-range > .sale-report-custom > div > input, span{
        position: relative;
        min-width: 120px;
        width: 100%;
        height: 25px;
        font-size: 1em;
        padding: 0px 5px 0px 5px;
        border: none;
        outline: none;
        border-radius: 7px;
    }
    .sale-report-format > label > input[type="checkbox"],
    .sale-report-range > label > input[type="checkbox"]{
        width: 18px;
        height: 18px;
    }

    .sale-report-range > .sale-report-range-title,
    .sale-report-format > .sale-report-format-title{
        font-size: 1.5em;
    }
.sale-report-popup-con > .footer > button{
    font-size: 1.2em;
}
        
/* Small phones */
@media (max-width: 290px) {
    .popup > .sale-report-popup-con > .main > .row{
        display: flex;
        flex-direction: column;
    }
}
@media (max-width: 480px) {
    .popup > .sale-report-popup-con{
        height: auto;
        max-height: 80%;
    }
    .popup > .sale-report-popup-con > .main{
        overflow-y: auto;
    }


    .sale-report-range > .sale-report-range-title,
    .sale-report-format > .sale-report-format-title{
        font-size: 1.3em;
    }
    .sale-report-format > .sale-report-format > label,
    .sale-report-range > .sale-report-range > label{
        font-size: 1em;
    }
    .sale-report-format > label > input[type="checkbox"],
    .sale-report-range > label > input[type="checkbox"]{
        width: 15px;
        height: 15px;
    }
}

