    div.wholesale_container{
        width: 100vw;
        height: fit-content;
    }

    div.wholesale-header{
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        width: 100%;
        height: 50%;
        margin-top: 80px;
        margin-bottom: 50px;
    }

    div.wholesale-header h1{
        text-align: center;
        font-weight: 100;
        font-family: 'Roboto';
        font-size: 6vw;
    }
    div.wholesale-header h1::after{
        content: "" ;
        position: absolute;
        left: 20%;
        bottom: 0%;
        width: 5vw;
        height: .7vw;
        background-color: darkslategrey;
    }

    div.wholesale-section_title{
        width: 100%;
        height: fit-content;
        display: flex;
        align-items: center;
        padding: 0px 2vw;
        margin: 10px 0px;
    }

    div.wholesale-section_title h2{
        font-weight: 100;
        font-family: 'Roboto';
        font-size: 3vw;
    }

    div.wholesale-imports{
        width: 100vw;
        height: fit-content;
        display: flex;
        overflow-x: scroll;
        padding: 30px;
        border: 1px solid lightgray;
        align-items: center;
        justify-content: left;
    }

    div.wholesale-imports button{
        background: transparent;
        background-color: rgb(132, 209, 114, .7);
        border: none;
        font-family: 'Roboto';
        font-weight: 100;
        text-align: center;
        font-size: 30px;
        color: white;
        width: fit-content;
        height: fit-content;
        padding: 10px 30px;
        border-radius: 2px;
        white-space: nowrap;
    }

    div.import_card{
        width: 250px;
        height: 300px;
        min-width: 250px;
        min-height: 300px;
        flex-wrap: nowrap;
        margin: 0px 20px;
        border: 1px solid lightgray;
        border-radius: 20px;
        padding: 20px;
        justify-content: space-between;
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    div.import_card > div.info{
        width: 90%;
        height: auto;
        display: flex;
        flex-direction: column;
        border-top: 1px solid lightgray;
        border-bottom: 1px solid lightgray;
        padding: 20px 0px;
    }

    div.info p, div.stat p, div.wholesale_list-item > div.name p, p.imported_from_message{
        font-weight: 100;
        font-family: 'Roboto';
        font-size: 15px;
        color: grey;
    }

    div.import_card h3{
        font-weight: 100;
        font-family: 'Roboto';
        font-weight: 100;
        font-size: 25px;
        text-align: center;
    }

    div.import_card button, button.wholesale_checkout{
        background: transparent;
        background-color: rgb(132, 209, 114, .7);
        border: none;
        font-family: 'Roboto';
        font-weight: 100;
        text-align: center;
        font-size: 20px;
        color: white;
        width: fit-content;
        height: fit-content;
        padding: 10px 3vw;
        border-radius: 2px;
        white-space: nowrap;
    }

    div.wholesale-main_section{
        width: 100%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        padding: 2vw;
        margin: 20px 0px;
        touch-action: manipulation; /*disables double-tap zoom for mobile*/
    }

    div.wholesale-main_section > div.wholesale_stats{
        width: 100%;
        height: fit-content;
        padding: 20px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }

    div.wholesale_stats > div.stat{
        width: 200px;
        min-width: 200px;
        height: 60px;
        min-height: 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 30px;
        border: 1px solid lightgray;
        border-radius: 50px;
    }
    div.stat p{
        text-align: center;
    }

    div.wholesale_dropdown{
        width: 100%;
        min-height: 60px;
        margin: 10px 0px;
        display: flex;
        flex-direction: column;
        transition: all .2s ease-in-out;
        cursor: pointer;
        border: 1px solid lightgray;
        border-radius: 10px;
    }

    div.wholesale_dropdown-header{
        width: 100%;
        height: 60px;
        min-height: 60px;
        display: flex;
        align-items: center;
        padding: 5px 10px;
        border-bottom: 1px solid lightgray;
    }

    div.wholesale_dropdown-header h4{
        font-weight: 100;
        font-family: 'Roboto';
        font-size: 20px;
        text-align: center
    }
    .inactive_wholesale-dropdown{
        height: 60px;
        overflow-y: hidden;
    }

    .active_wholesale-dropdown{
        height: auto;
        overflow-y: scroll;
    }


    div.wholesale_list{
        width: 100%;
        height: fit-content;
        overflow-x: scroll;
    }
    div.wholesale_list-item{
        width: 100%;
        height: fit-content;
        display: flex;
        flex-wrap: nowrap;
        border-bottom: 1px solid lightgray;
        padding: 20px 0px;
    }

    div.wholesale_list-item > div.name, div.wholesale_list-item > div.quant{
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 40%;
        height: fit-content;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }

    div.wholesale_list-item > div.total{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 20%;
    }

    div.wholesale_list-item > div.name h4, div.wholesale_list-item > div.total h4{
        font-weight: 100;
        font-family: 'Roboto';
        font-size: 20px;
    }
    

    div.wholesale_quantity{
        width: 250px;
        min-width: 250px;
        height: 50px;
        min-height: 50px;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        padding: 10px 30px;
        border: 1px solid lightgray;
        border-radius: 50px;
    }

    div.wholesale_quantity > button{
        height: 100%;
        width: 25%;
        border: none;
        background: none; 
        text-align: center;
    }
    

    div.wholesale_quantity > input{
        height: 100%;
        width: 50%; 
        border-left: 1px solid lightgray;
        border-right: 1px solid lightgray;
        border-top: none;
        border-bottom: none;
        line-height: 10px;
        text-align: center;
    }
    div.wholesale_quantity > input:focus {outline:none;}


@media only screen and (min-width: 1px){
    div.wholesale_stats > div.stat{
        width: 100px;
        min-width: 100px;
        height: 100px;
        min-height: 100px;
        flex-direction: column;
        padding: 5px 30px;
        border-radius: 10px;
    }

    div.wholesale-header h1{
        font-size: 30px;
    }

    div.wholesale-header h1::after{
        left: 10%;
        width: 40px;
        height: 5px;
    }

    div.wholesale-section_title h2{font-size: 20px;}

    div.wholesale_list-item{
        width: 700px;
        padding: 20px 0px;
    }
}

@media only screen and (min-width: 700px){
    div.wholesale_stats > div.stat{
        width: 200px;
        min-width: 200px;
        height: 60px;
        min-height: 60px;
        flex-direction: row;
        padding: 0px 30px;
        border-radius: 50px;
    }

    div.wholesale-header h1{font-size: 6vw;}

    div.wholesale-header h1::after{
        left: 20%;
        width: 5vw;
        height: .7vw;
    }

    div.wholesale-section_title h2{font-size: 3vw;}

    div.wholesale_list-item{
        width: 100%;
        padding: 20px 0px;
    }
}
