html {
    margin: 0;
    padding: 0;

}

body{
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    /*font-size: 12pt;*/
    font-size: calc(12px + 1vw);
    /*width: 98%;*/
    text-align: left;
    padding: 0;
    margin: 0;
}

a:hover{
    color: initial;
    text-decoration: initial;
}

#wrapper{
    padding: 2px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

h2{
    font-size: 15pt;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 25px;
}

h3{
    font-size: 13pt;
    margin-bottom: 10px;
}

.bold{
    font-weight: bold;
}

input{
    min-height: 50px;
    /*font-size: 13pt;*/
    width: 100%;
    margin: 2px 0;
    padding: 0;
    border: 1px solid darkgrey;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

td{
    vertical-align: middle !important;
}

td input{
    /*min-height: auto;*/
}

.deleteButton{
    float: right;
    background-color: transparent;
    min-height: 50px;
    min-width: 50px;
    margin: 2px 0;
    padding: 0;
    border: 1px solid darkgrey;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;

}

@media (max-width: 400px){
    input[type="checkbox"]{
        /*width: auto;*/
        min-width: 30px;
    }
}

textarea{
    width: 100%;
    margin: 3px 1px; /* Needs to be exactly this. Borders get cut off in some mobile browsers otherwise*/
    padding: 0;
    border: 1px solid darkgrey;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.selectList{
    min-height: 56px;
    /*font-size: 13pt;*/
    width: 100%;
    margin: 2px 0;
}

#batchPicker{
    width: auto;
}

.normalButton{
    width: auto;
    padding: 10px 20px;
    margin-top: 20px;
    margin-right: 5px;
}

.checkBox{
    width: 30px;
}
.displayBlock{
    display: block;
}
table{
    width: 100%;
}

.documentsTable{
    border: solid 1px #DDEEEE;
    border-collapse: collapse;
    border-spacing: 0;
}

.documentsTable thead th {
    background-color: #DDEFEF;
    border: solid 1px #DDEEEE;
    color: #336B6B;
    padding: 10px;
    text-align: left;
    text-shadow: 1px 1px 1px #fff;
}

.documentsTable td{
    border: solid 1px #DDEEEE;
    color: #333;
    padding: 5px;
    text-shadow: 1px 1px 1px #fff;
    cursor: pointer;
}

.documentRowsTable{
    width: auto;
    display: none;
    /*border: 1px solid #000;*/
    border-collapse: collapse;
    cursor: default;
}

.documentRowsTableInside td{
    border: none;
}

.documentRowsTable td{
    cursor: default;
}

.headInfo{
    border: 1px solid black;
    padding: 2px;
    font-size: 8pt;
}

.btn-submit{
    border: solid 1px #000000;
    border-radius: 5px;
}

.greenBg{
    background-color: #71ad48;
}

.redBg{
    background-color: red;
}

.blueBg{
    background-color: #2f76b6;
}

.yellowBg{
    background-color: #ffff02;
}

#warehouseSelect{
    height: 50px;
}

a{
    text-decoration: none;
    color: black;
}

ul{
    list-style: none;
    margin: 0;
    padding: 0;
}

.linkBox{
    color: black;
    font-weight: bold;
    text-transform: uppercase;
    padding:1%;
    line-height: 3;
    margin-bottom: 5px;
    font-size: 150%;
    padding-left: 3vw;
}

.btn-submit-ok{
    border: solid 1px #000000;
}

.fullWidthButton{
    display: block;
    margin: auto 0;
    text-align: center;
}

.fullWidth{
    width: 100%;
}

.floatLeft{
    float: left;
}

.blue{
    background-color: #337ab7;
}

.pink{
    background-color: #f5b094;
}



.linkBox a{
    xwidth: 100%;
    height: 100%;
    display: block;
    padding-top: 10px;
}

.overFlow{
    overflow: hidden;
}
.oneLine{
    overflow: hidden;
    word-break: break-all;
}

.docRows tr:nth-child(2){
    /*font-weight: bold;*/
}

.docRow td{
    border: 1px solid #ddd;
}

#config{
    background-image: url("images/config.png");
    background-repeat: no-repeat;
    height: 47px;
    width: 47px;
    display: inline-block;
    margin-right: 30px;
    float:left;
}

#logout{
    float: right;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 2.5;
    font-size: 150%;
    padding: 0 5px;
}

#changeWarehouse{
    float: right;
    margin-right: 5px;
    padding: 0 5px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: 2.5;
    font-size: 150%;
}

#packageInfoDisplay{
    display: block;
    margin: 2px;
    clear: both;
    /*min-height: 20px;*/
}

.ui-datepicker-trigger{
    height: 50px;
    cursor: pointer;
    vertical-align: middle;
}

.ui-menu-item-wrapper{
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.loading {
    -webkit-transition: background-color 0s;
    transition: background-color 0s;
    opacity: 0;
}

.loading-spinner {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #3498db;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    display:none;

    position:fixed;
    top: 50%;
    left: 50%;
    margin-top: -68px;
    margin-left: -68px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    position:fixed;
    top: 50%;
    margin-top: 100px;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    text-align: center;
}

.pointer {
    cursor: pointer;
}

.inputBox{
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

.warehouseAddress{
    display: none;
}

.hiddenTableRow{
    display: none;
}

.displayHiddenRow{
    display: table-row !important;
}

.selectedRow{
    font-weight: bold;
    background-color: green;
}

.table>tbody+tbody{
    border-top: none !important;
}

.numberRowData{
    height: 20px;
    text-align: center;
    font-weight: bold;
    border-bottom-color: black !important;
}