/*when the width gets small*/

@media only screen and (max-width:500px){
    body{
        overflow:auto;
        padding-bottom:60px;
    }
    #main{
        width:100%;
    }


    #listHeader{
        margin-top:3%;
        margin-bottom:3%;
        margin-left:4%;
        font-size:24px;

    }
    #waiting{
        position:absolute;
        top:50%;
        left:25%;
        margin-left: auto;
        margin-right:auto;
        text-align: center;
    }

    #productDropdown{
        width:200px;
    }


    .loader{

        border: 8px solid #f3f3f3; /* Light grey */
        border-top: 8px solid #3498db; /* Blue */
        border-radius: 25%;
        width: 60px;
        height: 60px;
        animation: spin 2s linear infinite;

    }
    .confused{
        display: none;

    }

    .footer{
        position:absolute;
        bottom:0;
        width:100%;
        background-color: black;
        height:30px;

    }

    .bottomText{
        margin-left: 2%;
        color:white;
    }
}

/*pagewide css*/
html,body{
}

.noDisplay {
    display:none;
}
@font-face{
    font-family: apexLight;
    src: url(./res/fonts/ApexNew-Light.otf);
}
body{
    margin-bottom:100px;
}




/*header css*/

#productDropdown{
    width:400px;
}

/*table css*/

#productTable{
    max-width:1000px;
    margin:auto;
    font-size:20px;
    float:left;
}


#productContainer{
    width:100%;
    position:relative;
    align-items:center;
    justify-content:center;
    float:left;
}

/*loader css*/

#waiting{
    display:inline-block;
    margin-left:35%;
    
}
.confused{
    position:fixed;
    bottom:30px;
    width:100%;
    background-color: #f5f5f5;
    color:#0075BD;
    line-height:60px;
    padding-left:2%;
    font-size:24px;

}

.no-docs{
    color:#9e9e9e;/*grey*/
}
.discount-table{
    font-size:14px;
    float: right;
}
.discount-table td, .discount-table th{
    padding-left:3px;
    padding-right:3px;
    text-align: right;
}
.discount-table td.discount-qty-to{
    font-style: italic;
    font-size: smaller;
    text-align: left;
}
.dollars{
    text-align: right;
    font-family: monospace;
}
.docs-td:hover{
    background-color: white;
}