﻿
@font-face {
    font-family: 'digital-clock-font';
    src: url('/fonts/digital-7_regular.ttf') format('truetype');
}

#ReceivingArea {
    padding-top: 80px;
    background: #E8E8E8;
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 200%;
}
    #ReceivingArea h3{
        font-size:70px;
    }
    #ReceivingArea button {
        width: 160px;
        height: 150px;
        margin-top: 80px;
        background: #F5F5F5;
        border: 1px solid silver;
        font-size: 17px;
        font-weight: 400;
        border-radius: 8px;
    }
        #ReceivingArea button:hover {
            background: gold;
            border: 1px solid #696969;
        }

.slide {
    width: 100vw; /* Full screen width */
    height: 100vh; /* Full screen height */
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: lightblue;
    border: 1px solid #000;
}

    .slide:nth-child(2) {
        background: lightcoral;
    }
.slide active{

}




/*=======================ROLLOFF=====================*/
/*#908c8c = gray color title*/
.ScrollableBoxes {
    width:100%;
    background: #e6e6e6;
    padding:10px;
    padding-bottom:0px;
    overflow-x:auto;
    white-space:nowrap;
}
    .ScrollableBoxes h3 {
        color: #908c8c;
        font-size:27px;
        font-weight:600;
        margin:0px;
        padding:0px;
        display:inline-block;
    }
    .ScrollableBoxes button {
        background: none;
        border: none;
        margin-top: 2px;
        vertical-align: top;
    }
        .ScrollableBoxes button i {
            font-size: 28px;
            color: #556b2f;
        }
        .ScrollableBoxes button > i:hover {
            color: #7cb341;
        }
.ContainerBox {
    width: 430px;
    height: 200px;
    background: #808080;
    display: inline-block;
    margin: 5px;
    padding: 5px;
    vertical-align:top;
    /*#808080 = gray ones*/
}
.ContainerBox:hover{
    background:silver;
    cursor:pointer;
}
.ContainerBox i{
    color:white;
    margin-bottom:38px;
    font-size:20px;
}
    .ContainerBox p {
        color: white;
        margin: 0px;
        padding: 0px;
        font-weight: 400;
        font-size: 20px;
    }

.SelectedContainerBox {
    background: #556b2f;
    height:210px;
    border:5px solid black;
    margin-top:0px;
}
    .SelectedContainerBox:hover {
        background: #556b2f;
    }
.SelectedContainerBox p{
    font-weight:600;
    font-size:25px;
}

.ContainerDetailArea{
    width:100%;
    text-align:center;
    margin-top:15px;
}
    .ContainerDetailArea p {
        font-weight: 600;
        font-size: 38px;
        color: #454341;
        padding: 0px;
        margin: 0px;
    }
.ContainerDetailArea div p{
    display:inline-block;
    font-size:32px;
}
.ContainerDetailArea div p:nth-child(2){
    color:green;
}
    .ContainerDetailArea button {
        padding: 20px;
        padding-left: 70px;
        padding-right: 70px;
        font-size: 60px;
        font-weight: 600;
        color: #454341;
        margin-top:10px;
        border:1px solid silver;
        border-radius:3px;
    }
        .ContainerDetailArea button:hover {
            background: #556b2f;
            border:2px solid #333;
            padding-top:19px;
            padding-bottom:19px;
        }
#MoveScrollableLeft {
    height: 210px;
    width: 20px;
    background: red;
    display: inline-block;
    position: absolute;
    left: 0;
}
#MoveScrollableRight {
    height: 210px;
    width: 20px;
    background: red;
    display: inline-block;
    position:absolute;
    right:0;
}
#RolloffHeaderArea {
    padding-top: 10px;
    background: #e6e6e6;
    border-bottom:1px solid silver;
}
#RolloffHeaderArea div {
    display: inline-block;
    margin-right: 10px;
    margin-left: 10px;
    text-align: center;
}
#RolloffHeaderArea div p{
    font-weight:500;
    margin-top:5px;
    padding-bottom:0px;
    margin-bottom:5px;
}
#RolloffHeaderArea div i{
    font-size:35px;
}
.ContainerBox button{
    float:right;

}
.ContainerBox button i{
    color:orange;
    font-size:23px;
}
    .ContainerBox button > i:hover {
        color: #5394e9;
    }
.NewARolloffPopupArea label{
    font-size:16px;
}
.NewARolloffPopupArea select, .NewARolloffPopupArea input {
    font-size: 28px !important;
}






#slider-container {
    position: absolute;
    width: 100%;
    height: calc(100vh - 60px);
    overflow: hidden;
}

.slider {
    position: absolute;
    top: 0;
    left: 100%; /* Start off-screen to the right */
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    transition: left 0.5s ease-in-out;
    flex-direction: column;
}

    .slider.active {
        left: 0; /* Slide into view */
    }

    .slider.exit-right {
        left: 100%; /* Slide off-screen to the left */
    }

    .slider.exit-left {
        left: -100%; /* Slide off-screen to the right */
    }

.BgGray1 {
    background-color: #E8E8E8;
}
.BgGray2 {
    background-color: #e0dfe6;
}
.BgPink {
    background-color: #f2d0d0;
}
.BgGreen {
    background-color: #d0f2d0;
}

.ScaleStartScreen input {
    display: block;
    padding: 10px;
    border-radius: 4px;
    border: 2px solid gray;
    width: 500px;
    vertical-align: top;
}
.ScaleStartScreen h3 {
    font-size: 70px;
}

.ScaleStartScreen button {
    width: 160px;
    height: 150px;
    margin-top: 80px;
    background: #F5F5F5;
    border: 1px solid silver;
    font-size: 17px;
    font-weight: 400;
    border-radius: 8px;
}
    .ScaleStartScreen button:hover {
        background: gold;
        border: 1px solid #696969;
    }

#PalletAddStatusText{
    margin-top:5px;
    color:green;
}
.ScaleSearchLoadArea {
    margin-top: 60px;
}
.ScaleSearchLoadArea input {
    display: inline-block;
}
#ScaleSearchInvalidText {
    color: red !important;
    margin-bottom:200px;
    padding-top:2px;
}

.ScaleSearchLoadArea button {
    margin: 0px;
    padding: 0px;
    height: 41px;
    width: 90px;
    display: inline-block;
    border-radius: 4px;
    font-weight: 500;
    border: 2px solid gray;
    vertical-align: top;
}


.ScaleWeightArea {
    text-align: center;
    margin-top: 120px;
    border: 2px solid #4e545c;
    width: 500px;
    border-radius: 2px;
}
#ScaleWeightBox_Weight input {
    font-family: digital-clock-font !important;
    font-size: 70px !important;
    font-weight: 500;
    color:black;
    margin-left:40px;
    width:300px;
    text-align:center;
    background:transparent;
    border:none;
}
#ScaleWeightBox_Labels button {
    height: 30px;
    width: 30px;
    display: inline-block;
    border: none;
    border-radius: 0px;
    background: transparent;
    margin: 0px;
    padding: 0px;
    vertical-align: top;
    margin-top:5px;
}
#ScaleWeightBox_Labels {
    border-top: 1px solid black;
    padding-left: 28px;
}
#ScaleWeightBox_Labels h3 {
    font-size: 30px;
    display: inline-block;
}
.ScaleNavArea{
    position:absolute;
    left:8px;
    top:5px;
    width:100%;
}
.ScaleNavBackArea {
    width: 80px;
}
    .ScaleNavBackArea:hover{
        cursor:pointer;
    }
    .ScaleNavArea h3 {
        font-weight: 500;
        font-size: 35px;
        margin-top: -10px;
        color: #5394ea;
    }
    .ScaleNavArea p{
        display:inline-block;
        color:black;
        font-weight:500;
    }
    .ScaleNavArea button {
        border: 1px solid silver;
        background: blue;
        border-radius: 999px;
        height: 35px;
        width: 35px;
        background:linear-gradient(174deg, rgba(25,183,240,1) 0%, rgba(23,100,225,1) 100%);
        margin-right:6px;
    }
    .ScaleNavArea button i {
        color: white;
        font-size:18px;
    }

.slider p {
    margin: 0;
}
.GridHideRemoveBtn #gridScalePallets .dx-icon-remove, .GridHideRemoveBtn #gridScaleBins .dx-icon-remove {
    display: none;
}

.slider .TerminalButtons p {
    font-size: 14px;
    padding-top: 5px;
    color: #333;
    line-height: 14px;
}
.ScaleNextBtn {
    margin-top: 50px;
}
#ScaleWeightBox_Labels button:hover{
    border-radius:20px;
    border:none;
    background:silver;
}

#TareWeightBtnsArea button{
    width:150px;
    height:100px;
    vertical-align:top;
    font-size:19px;
    font-weight:500;
    border:1px solid silver;
    border-radius:10px;
}
#TareWeightBtnsArea button:hover{
    background:goldenrod;
    border:1px solid gray;
}
#TareWeightCustomArea{
    background:silver;
    padding:20px;
    margin-top:20px;
    border-radius:10px;

}
#TareWeightCustomArea p{
    font-size:14px;
}
#TareWeightCustomArea input{
    height:35px;
    border:1px solid gray;
    border-radius:2px;
}
#TareWeightCustomArea button{
    border:1px solid silver;
    height:35px;
    font-size:20px;
    vertical-align:top;
    padding-left:15px;
    padding-right:15px;
    border-radius:2px;
}
    .slider button:hover {
        background: goldenrod;
        border: 1px solid gray;
    }
.HighlightSort {
    background: goldenrod;
}
.ScaleNavBackArea button:hover {
    background: linear-gradient(174deg, rgba(25,183,240,1) 0%, rgba(23,100,225,1) 100%);
    border:1px solid silver;
} 
.ButtonArea_Skinny {
    max-width: 1110px;
}
.ButtonArea_Skinny button {
    width: 270px;
    height: 50px;
    vertical-align: top;
    font-size: 19px;
    font-weight: 500;
    border: 1px solid silver;
    border-radius: 10px;
    margin: 2px;
}
.ButtonArea_Skinny button:hover{
    background:goldenrod !important;
}
.ButtonArea_Normal{
    width:100%;
    padding-right:200px;
    padding-left:200px;
    height:60vh;
    overflow-y:scroll;
}
.ButtonArea_Normal button {
    width: 230px;
    height: 100px;
    vertical-align: top;
    font-size: 19px;
    font-weight: 500;
    border: 1px solid silver;
    border-radius: 10px;
    margin: 5px;
}
.ButtonArea_Normal button:hover{
    background:goldenrod !important;
}
.ScaleSelectedLabelArea h3{
    display:inline-block;
    margin-top:20px;
}
.ScaleReceiptArea{
    width:100%;
    max-width:1110px;
}
.ScaleReceiptArea table td {
    font-size: 60px;
    font-weight: 400;
    padding-right: 45px;
    padding-left: 15px;
}
    .ScaleReceiptArea table tr:nth-child(odd) {
        background: #fff6c6;
        width: 1000px;
    }
    .ScaleReceiptArea table tr:nth-child(even) {
        background: white;
        width: 1000px;
    }
.ScaleAcceptArea {
    margin-top:50px;
}
.ScaleAcceptArea button{
    border:1px solid gray;
    padding:15px;
    padding-left:40px;
    padding-right:40px;
    border-radius:4px;
    font-size:25px;
}

#Scale_Weight_SettingsBtn{
    height:30px;
    width:30px;
    border:none;
    display:block;
    float:right;
    background:inherit;
    color:gray;
    margin-top:0px;
    position:relative;
    
}
.ScaleAlphabetArea{
    width:100%;
    margin-left:20px;
}
.ScaleAlphabetArea button {
    width: 50px;
    height: 50px;
    vertical-align: top;
    font-size: 19px;
    font-weight: 500;
    border: 1px solid silver;
    border-radius: 10px;
    margin: 0px;
    background: #F5F5F5;
}

.Scale_FitScreen{
    height:90vh;
    width:100%;
    margin-top:100px;
    overflow-y:scroll;
    overflow-x:hidden;
}
.ScaleFitButtons{
    width:100%;
    margin-top:50px;
    margin-left:20px;
    margin-right:20px;
}
.ButtonArea_SkinnyStretched {
    width: 100%;
    margin-left:20px;
    margin-right:20px;
    margin-top:40px;
}

    .ButtonArea_SkinnyStretched button {
        width: 450px;
        height: 50px;
        vertical-align: top;
        font-size: 19px;
        font-weight: 500;
        border: 1px solid silver;
        border-radius: 10px;
        margin: 2px;
    }


.ScaleScanPalletArea{
    width:100%;
}
.ScaleScanPalletArea p {
    font-size: 25px;
    margin-bottom:40px;
}
.ScaleScanPalletArea input{
    height:35px;
    width:200px;
}
.ScaleScanPalletArea button{
    height:35px;
    border:1px solid silver;
    background:white;
    padding-left:20px;
    padding-right:20px;
    font-size:18px;
    vertical-align:top;
}

.ScaleSelectedLoadArea {
    height: calc(100vh - 290px);
    margin-top: 60px;
    z-index:999;
}
.ReceivingFullSize {
    display: block;
}
    .ReceivingFullSize button:hover {
        background: none;
    }
    .ReceivingFullSize .ScaleNavArea {
        background: #333;
        position: relative;
        top: 0;
        left: 0;
        height: 55px;
        padding: 10px;
    }
    .ReceivingFullSize .ScaleNavBackArea {
        display:inline-block;
    }
    .ReceivingFullSize .ScaleNavArea p{
        color:white;
    }
    .ReceivingFullSize .ScaleNavArea button {
        border:1px solid #333;
    }
    .ReceivingFullSize .ScaleNavArea button:hover{
        background:orange;
    }
    .ReceivingFullSize .ScaleNavArea h3{
        color:white;
        position:absolute;
        display:inline-block;
        font-size:18px;
        margin-top:7px;
        text-align:center;
        width:calc(100% - 160px);
    }
    .ReceivingFullSize .TerminalSaveArea button:hover{
        border:1px solid transparent;
    }
    .ReceivingFullSize .TerminalLeft {
        height: calc(100vh - 288px);
        width: calc(75% - 11px);
    }
    .ReceivingFullSize .TerminalRight {
        height: calc(100vh - 288px);
        width:calc(25% - 11px);
    }
    .ReceivingFullSize .dx-datagrid-headers {
        background: white;
    }
    .ReceivingFullSize .ScaleReceiptArea{
        margin-top:20px;
    }
    .MaterialSummaryArea_static{
        margin-top:20px;
    }

.ScaleLoadHeaderButtons {
    background: white;
    padding-bottom: 10px;
}


.ReceivingFullSize .TerminalLeft{
    background:blue !important;
}
.ReceivingFullSize .TerminalRight {
    background: red !important;
}
.ReceivingFullSize .ButtonArea_Normal {
    margin-top:5px;
    height: calc(100vh - 400px);
    margin-bottom:10px;
}



.PalletLabelCanvas {
    width: 570px;
}

.PalletLabelHeaderArea{
    text-align:center;
    margin-top:8px;
}
    .PalletLabelHeaderArea h3 {
        font-size: 33px;
        font-weight: 600;
        line-height: 27px;
        color: black;
    }

.PalletLabelMaterialArea{
    text-align:center;
    background:black;
}
    .PalletLabelMaterialArea h3 {
        color: white;
        font-size: 25px;
        font-weight: 600;
        padding: 3px;
    }

.PalletLabelColumnArea div {
    float: left;
    width: 33%;
    text-align: center;
    margin-top: 5px;
}
    .PalletLabelColumnArea div p {
        font-weight: bold;
        font-size: 20px;
        padding: 0px;
        line-height: 15px;
        color: black;
    }
    .PalletLabelColumnArea div h3 {
        font-weight: bold;
        font-size: 34px;
        color: black;
    }
    .PalletLabelColumnArea div img {
        height:60px;
        margin-top:-8px;
    }

.PalletLabelColumnArea:after {
    content: "";
    display: table;
    clear: both;
}

.PalletLabelBottomArea{
    text-align:center;
    margin-top:14px;
}
    .PalletLabelBottomArea h3{
        font-weight:bold;
        font-size:36px;
        line-height:30px;
        color:black;
    }
    .PalletLabelBottomArea p {
        font-weight: bold;
        font-size: 20px;
        line-height: 30px;
        color: black;
    }

#datagridStandardRoutes .dx-datagrid-rowsview .dx-row > td {
    padding-bottom: 0px !important;
    padding-top: 0px !important;
}



.DetailsLeft{
    width:100%;
    float:left;
    padding-top:15px;
    padding-bottom:10px;
}
.DetailsLeft p{
    font-size:18px;
    margin-bottom:2px;
}
.DetailsLeft h3{
    font-size:30px;
    padding:0px;
    line-height:25px;
}
    .DetailsLeft button {
        border: none;
        border-radius: 20px;
        background: #5394ea;
        font-size: 15px;
        font-weight: 500;
        margin-top: 5px;
        color: white;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        padding:5px;
        padding-left:15px;
        padding-right:15px;
    }
.DetailsLeft button:hover{
    background:orange;
}

.DetailsLeft{
    text-align:center;
}
.DetailsImg{
    border:2px solid black;
    margin-left:20px;
    margin-right:20px;
    margin-bottom:10px;
}

.DetailsMiddle h3{
    font-size:28px;
    line-height:30px;
}
.WhiteGrid .dx-datagrid-headers {
    background: white;
    border-top: 1px solid #e0e0e0;
}

.WarehouseTableIcon {
    background: red;
    width: 40px;
    height: 40px;
    float: left;
    border-radius: 11px;
    text-align: center;
    margin-top:7px;
    margin-left:10px;
}
.WarehouseTableIcon i{
    font-size:25px;
    padding-top:6px;
}

.WarehouseTableHeader {
    background:#333;
    height: 54px;
}
.WarehouseTableHeader h3{
    color:white;
    font-size:18px;
    margin-left:20px;
    padding-top:16px;
    font-weight:500;
    display:inline-block;
}
.WarehouseTable_WarehouseArea{
    display:inline-block;
    float:right;
    margin-right:20px;
    margin-top:13px;
}
.WarehouseTable_WarehouseArea i{
    display:inline-block;
    color:white;
    font-size:20px;
}
    .WarehouseTable_WarehouseArea i:nth-child(2){
        font-size:5px !important;
    }
    .WarehouseTable_WarehouseArea p {
        display: inline-block;
        color: white;
        font-size: 15px;
        padding-left:10px;
        padding-right:5px;
    }

.StatusCircle_Orange {
    width: 95px;
    background: #fe8f1d;
    text-align: center;
    color: white;
    border-radius: 10px;
    font-size: 13px;
}
.StatusCircle_Green {
    width: 95px;
    background: #7cb957;
    text-align: center;
    color: white;
    border-radius: 10px;
    font-size: 13px;
}
.StatusCircle_Red {
    width: 95px;
    background: red;
    text-align: center;
    color: white;
    border-radius: 10px;
    font-size: 13px;
}
.StatusCircle_Gold {
    width: 95px;
    background: gold;
    text-align: center;
    color: white;
    border-radius: 10px;
    font-size: 13px;
}
.StatusCircle_DarkBlue {
    width: 95px;
    background: #3377fe;
    text-align: center;
    color: white;
    border-radius: 10px;
    font-size: 13px;
}


.WarehouseTableFilterArea {
    margin-left:300px;
    height: 50px;
    transition: margin .7s ease;
}
.DetailsMiddleTable {
    height:calc(100vh - 155px);
    display: inline-block !important;
    transition: width .7s ease,margin .7s ease;

    width:calc(100% - 300px);
    margin-left:300px;
}
    .DetailsMiddleTable .dx-datagrid-headers {
        background: white;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        border-bottom:none;
    }

.DetailsLeftBox {
    position: absolute;
    display: inline-block;
    width: 300px;
    height: 100vh;
    background: #f2f3f4;
    margin-right: 0px;
    margin-top: -50px;
    float: left;
    transition: margin .7s ease;
    overflow: hidden;
    box-sizing: border-box;
}
.ScrollableDiv {
    height: calc(100% - 165px);
    min-height:0px;
    overflow-y: auto;
    margin:0px;
    padding:0px;
    box-sizing:border-box;
    padding-top:20px;
}
.DetailsRightBox {
    float: right;
    width: 500px;
    height: 100vh;
    background: white;
    transition: margin .7s ease;
    overflow: hidden;
    border-left: 1px solid lightgray;
}
.DetailsRightBoxHeaderArea {
    background: #333;
}
.DetailsRightBoxHeaderArea p{
    color:white;
    padding-top:10px;
    padding-left:10px;
    font-weight:500;
    margin-bottom:0px;
}
.StatusCircleSide{
    display:inline-block;
    border-radius:20px;
    text-align:center;
    color:white;
    background:orange;
    margin-bottom:6px;
    margin-top:8px;
    padding:2px;
    padding-bottom:0px;
    padding-left:10px;
    padding-right:10px;
}
.StatusCircleSide p{
    text-align:center;
    padding:0px;
}
.DetailsRightBox_Tab {
    margin-top: 5px;
    width: 32.8%;
    display: inline-block;
    text-align: center;
    color: white;
    padding-top: 11px;
    padding-bottom: 11px;
    font-weight: 500;
    font-size: 13px;
}
.DetailsRightBox_Tab:hover{
    cursor:pointer;
    border-bottom:3px solid orange;
}
.OrangeBottom {
    border-bottom: 3px solid orange;
}

.PalletBox {
    padding: 10px;
    margin: 5px;
    border: 1px solid lightgray;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
    .PalletBox:hover{
        background:silver;
        cursor:pointer;
    }
    .PalletBox p {
        margin: 0px !important;
        color: gray;
        font-size:12px;
    }
.PalletBox h3{
    font-size:15px;
    font-weight:500;
    margin:0px;
}
.PalletDesc_Circle {
    display: inline-block;
    float:left;
    margin-top:10px;
}
.PalletDesc_Circle i{
    font-size:20px;
    margin-left:5px;
    margin-right:20px;
    color:gray;

}
.PalletDesc_Date{
    display:inline-block;
}
.PalletDesc_Weight{
    display:inline-block;
    float:right;
    margin-right:15px;
}
    .PalletDesc_Weight h3 {
        text-align: right;
    }
.PalletDesc_Weight p{
    text-align:right;
}
.DetailsBox_Back {
    float: left;
    padding: 10px;
    padding-top: 20px;
    display: inline-block;
    margin-right: 20px;
    padding-bottom: 20px;
    background: gray;
    margin-bottom: -5px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}
    .DetailsBox_Back:hover {
        cursor: pointer;
        background: orange;
        color:black;
    }
    .DetailsBox_Back:hover i {
        color: black;
    }
.DetailsBox_Back i {
    color: white;
    font-size:25px;
}
.DividerLine3{
    background:black;
    width:100%;
    height:1px;
    margin-top:4px;
}

.DetailsRightBoxButtons {
    margin-top: 0px;
}

.DetailsMiddleTable .dx-data-row:hover {
    cursor:pointer;
}



.FilterIcon {
    display: inline-block;
    padding: 6px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 20px;
    margin-top: 10px;
    background: #5394ea;
    color: white;
    font-weight: bold;
    margin-left: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    z-index:2 !important;
}
.FilterIcon i{
    margin-right:5px;
}
    .FilterIcon:hover{
        cursor:pointer;
        background:orange;
    }


    #PalletPrint_btn {
        float: right;
        display: inline-block;
        background: #5394ea;
        color: white;
        border-radius: 20px;
        padding: 5px;
        padding-left: 15px;
        padding-right: 15px;
        margin-top: -8px;
        margin-right: 15px;
    }
        #PalletPrint_btn:hover{
            cursor:pointer;
        }
        #PalletPrint_btn i {
            margin-right: 8px;
        }
.FilterHeader {
    padding-bottom: 6px;
    margin-bottom: 2px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
}
    .FilterHeader button {
        border: none;
        display: inline-block;
        float: right;
        padding: 6px;
        background: silver;
        font-size: 20px;
        padding-right: 5px;
        padding-left: 7px;
        padding-top: 12px;
        padding-bottom: 12px;
        border-top-left-radius: 5px;
        border-bottom-left-radius: 5px;
    }
    .FilterHeader button:hover{
        background:orange;
    }
    .FilterHeader h2 {
        padding-left: 5px;
        display: inline-block;
        font-size: 20px !important;
        color:#333;
        font-weight:500;

    }
    .FilterHeader div {
        display: inline-block;
        padding-top: 10px;
        margin-left: 20px;
    }

        .FilterHeader div i {
            font-size: 25px;
            color:#333;
        }
.FilterBox {
    background: white;
    margin: 20px;
    border-radius: 4px;
    border-top: 4px solid gray;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
    .FilterBox h2 {
        font-size: 14px !important;
        margin: 0px;
        margin: 10px;
        display: inline-block;
        margin: 6px;
        margin-left: 0px;
        color: #363636;
        font-weight: 400;
    }
    .FilterBox p {
        font-size: 12px;
        margin:0px;
        margin-left:20px;
        margin-top:10px;
    }
    .FilterBox i{
        color:silver;
        margin-left:5px;
    }
    .FilterBox hr {
        margin: 0px;
    }
.FilterBox input{
    width:220px;
    border:1px solid silver;
    border-radius:4px;
    height:30px;
    margin:20px;
    margin-top:0px;
}
    .FilterBox .chosen-container {
        width: 220px !important;
        border: none;
        border-radius: 4px;
        margin-left:20px;
        margin-right:20px;
        margin-bottom:20px;
    }
    .FilterBox .chosen-container-multi .chosen-choices{
        border:1px solid silver;
        border-radius:4px;
    }
    .FilterBox_InputArea {
        display: inline-block;
        text-align: center;
    }
.FilterBox_InputArea2 {
    display: inline-block;
    text-align: center;
}
    .FilterBox_InputArea2 input{
        margin-top:0px;
        margin-bottom:10px;
    }
    .FilterBox_InputArea2 p {
        text-align: left;
        margin: 0px;
        margin-left:20px;
        margin-top:5px;
        font-size:12px;
    }

.FilterBoxSearchIcon {
    display: inline-block;
    float: right;
    margin-top: -43px;
    margin-right: 27px;
    position: relative;
}
.FilterBoxSearchIcon i{
    color:black;
}

.FilterBoxCollapse {
    float: right;
    padding: 10px;
    padding-top: 12px;
    padding-bottom: 12px;
    background: gray;
    margin-bottom: 0px;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

    .FilterBoxCollapse:hover {
        cursor: pointer;
        background: orange;
        color: black;
    }

        .FilterBoxCollapse:hover i {
            color: black;
        }

    .FilterBoxCollapse i {
        color: silver;
        font-size: 25px;
    }

.DetailsLeftBox h2{
    display:inline-block;
    font-size:28px;
    margin-top:5px;
    margin-left:5px;
}
#DetailsBox_Load_Details{
    padding-top:5px;
}
#DetailsBox_Load_Details h3 {
    font-size: 15px;
    margin-left:10px;
    font-weight:500;
}

#DetailsBox_Load_Details, #DetailsBox_Pallet_Weight, #DetailsBox_Pallet_Materials {
    overflow-x: auto;
    height: calc(100% - 270px);
}


#DetailsBox_Load_Pallets {
    height: calc(100% - 220px);
}
.PalletList {
    overflow-y: scroll;
    height: calc(100% - 98px);
}

.BottomCount {
    position: relative;
    bottom: 0;
    text-align: center;
    padding-top: 5px;
    background: #f8f9fa;
    height: 50px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.BottomCount h3{
    display:inline-block;
    font-size:14px;
    font-weight:500;
    margin:0px;
    margin-top:8px;
}
#DetailsBox_Load_Assets .dx-header-row {
    background:white;
}

#gridAccountsLoads .dx-footer-row {
    background: #f8f9fa !important;
}


.SideChartArea{
    width:100%;
}

.SideGridBox {
    border: 1px solid lightgray;
    margin: 5px;
    padding:5px;
    border-radius:5px;
    text-align:initial;
}
.SideGridBox h3{
    font-weight:400 !important;
    padding:0px;
    margin-left:0px !important;
}
.SideGridBox p{
    font-weight:400 !important;
    margin:0px;
    font-weight:500 !important;
    font-size:20px !important;
}
    .SideGridBox .DashboardAuditCatIconArea i{
        font-size:30px;
    }


.DetailsRightBoxButtonArea{
    float:right;
    display:inline-block;
    margin-right:10px;
    margin-top:15px;
}
    .DetailsRightBoxButtonArea button{
        border:none;
        background:none;
    }
    .DetailsRightBoxButtonArea button:hover i{
        color:orange;
    }
    .DetailsRightBoxButtonArea button i{
        font-size:22px;
        color:white;
    }
.SideGridBox .DashboardAuditCatTextArea h3 {
    margin-bottom: 0px !important;
}
.SideGridBox .DashboardAuditCatTextArea p {
    line-height: normal;
}
#DetailsBox_Load_Assets {
    height: calc(100vh - 270px);
}



.LightGrayBackground {
    min-height:100vh;
    background: #f9f9f9;
}
.SimpleTableHeader {
    background: #f9f9f9;
    padding-top: 20px;
    padding-bottom: 2px;
    padding-left: 8px;
    padding-right: 8px;
    text-align:center;
}
    .SimpleTableHeader h3{
        font-size:22px;
        margin-bottom:2px;
        font-weight:500;
    }
    .SimpleTableHeader p {
        font-size: 14px;
        margin-bottom: 20px;
        color:gray;
    }
    .SimpleTableHeader input {
        padding-left:5px;
        border: 1px solid lightgray;
        border-radius: 5px;
        background: white;
        margin-bottom: 10px;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }
    .SimpleTableHeader button {
        
        background: #5394ea;
        border: 1px solid lightgray !important;
        border-radius: 10px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        color:white;
        font-weight:bold;
    }

    .SimpleTableDetails{
        margin-top:5px;
        text-align:left;
    }
.SimpleTableDesc {
    display: flex;
    margin-top:20px;
    justify-content: center;
    margin-bottom:30px;
}
.SimpleTableGrid {
    margin-top: 10px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
}

.SimpleTableGrid .dx-datagrid-headers{
    background:white;
}
    .SimpleTableGrid  .dx-header-row > td[role="columnheader"] > div.dx-datagrid-text-content{
        font-weight:500;
        font-size:14px;
    }
.HighlightOrange{
    background:orange;
}
/*================================ Terminal ====================================*/
.TerminalBackground {
    position: absolute;
    background: #f0f1f5;
    height: calc(100vh - 60px);
    overflow: hidden;
    overflow-x: hidden;
    width: 100%;
}
#TerminalArea{
    height:100%;
}
#TerminalScanArea {
    height: 100%;
    width:100%;
}
.TerminalScanAreaBody {
    margin: 10px;
    margin-top: 50px;
    padding: 50px;
    background: white;
    align-content: center;
    text-align: center;
    vertical-align: top;
    border-radius:10px;
}
.TerminalScanAreaBody p{
    color:orange;
    font-weight:bold;
    font-size:25px;
}
.TerminalScanAreaBody input {
    height: 40px;
    width: 500px;
    border: 2px solid orange;
    border-radius: 0px;
    font-size: 18px;
    display: inline-block;
    margin-right: -4px;
    padding-left:10px;
}
    #TerminalScanArea div button{
        border:2px solid orange;
        background:orange;
        border:none;
        display:inline-block;
        margin:0px;
        height:40px;
        color:white;
        font-weight:500;
        font-size:16px;
        width:110px;
    }
.TerminalScanInputArea, .TerminalScanButtonArea {
    display: inline-block;
    padding: 0px;
    margin: 0px;
    vertical-align: top;
}


.TerminalHeader {
    width: 100%;
    background: #f0f1f5;
    height: 100px;
    margin-bottom: 8px;
    padding-left: 2px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.TerminalLeft {
    background: #f0f1f5;
    margin-left: 8px;
    margin-right: 8px;
    display: inline-block;
    width: calc(60% - 16px);
    height: calc(100% - 288px);
    float: left;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}
.TerminalRight {
    display: inline-block;
    width: calc(40% - 8px);
    float: right;
    height: calc(100% - 225px);
    margin-right: 5px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
}
#datagridSalvageAssets{
}
.SalvageScanArea {
    background: white;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
    text-align: center;
    padding-top: 50px;
}
.SalvageScanArea p{
    font-size:18px;
    font-weight:500;
}
.SalvageScanArea input{
    height:35px;
    width:80%;
    border-radius:5px;
    border:2px solid gray;
    font-size:18px;
}

.TerminalTableArea {
    background: white;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
    overflow:auto;
}
.BubbleText {
    border: 1px solid silver;
    display: inline-block;
    background: #f0f1f5;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    margin: 5px;
    margin-top:7px;
    color: black;
    font-size: 18px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}
    .BubbleText i:nth-child(1) {
        color: #5394e9;
    }
.BubbleText p{
    display:inline-block;
    padding:0px;
    margin:0px;
}
.BubbleText p:nth-child(2){
    font-weight:400;
}

.TerminalSaveArea button {
    width: 100%;
    border: 1px solid lightgray;
    height: 50px;
    margin-top: 8px;
    font-weight: 600;
    font-size: 25px;
    color: whitesmoke;
    background: #7cb957;
    border-radius: 8px;
}
.TerminalSaveArea button:hover{
    background:orange;
}
/*#5394e9*/
.TerminalButtons {
    display: inline-block;
    height: 100px;
    vertical-align: top;
    float: right;
    margin-top:7px;
    margin-right:10px;
}
    .TerminalButtons button {
        height: 85px;
        width: 90px;
        vertical-align: top;
        border: 1px solid silver;
        border-radius: 4px;
        margin-right: 5px;
        padding-top: 8px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    }
    .TerminalButtons button:hover{
        border:2px solid orange;
    }
        .TerminalButtons button i{
            color:#333;
            font-size:45px;
            padding-bottom:3px;
        }

.TerminalBoxHeader {
    background: #DCDCDC;
    border: 1px solid #A9A9A9;
    border-radius: 3px;
    padding-top: 6px;
    padding-bottom: 6px;
    margin-bottom: 10px;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}
    .TerminalBoxHeader button {
        border: none;
        padding: 8px;
        padding-left: 10px;
        padding-right: 10px;
        margin-left: 10px;
        border-radius: 15px;
        font-weight: 500;
        font-size: 18px;
        background: #5394e9;
        color: white;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }
    .TerminalBoxHeader button i{
        margin-right:8px;
    }
    .TerminalBoxHeader button:hover{
        background:orange;
    }

.TerminalCheckArea {
    display: inline-block;
    float: right;
    background: #7cb957;
    margin-right: 8px;
    padding:5px;
    margin-top:0px;
    padding-left:14px;
    padding-right:10px;
    border-radius:5px;
    vertical-align:top;
}
.TerminalCheckArea:hover{
    cursor:pointer;
}
    .TerminalCheckArea input {
        transform: scale(1.7);
        margin-right: 10px;
        float:left;
        margin-top:8px;
    }
    .TerminalCheckArea p{
        display:inline-block;
        font-size:23px;
        margin:0px;
        color:#333;
        font-weight:400;
        color:#333;
    }

.TerminalLeft table{
    width:100%;
    font-size:30px;
    font-weight:500;
}
    .TerminalLeft table button {
        background: #7cb957;
        color: white;
        border: none;
        border-radius: 20px;
        padding-left: 12px;
        padding-right: 12px;
        float:right;
        margin-top:4px;
        margin-right:4px;
    }
    .TerminalLeft table .chosen-container{
        width:calc(100% - 50px) !important;
    }
.TerminalLeft table .chosen-single{
    height:48px;
    border:none;
    background:none;
    border-radius:0px;
    box-shadow:none;
    font-size:30px;
    color:#333;
}
    .TerminalLeft table .chosen-single span {
        height:100%;
        padding-top:11px;
    }
    .TerminalLeft table .chosen-container div b{
        display:none;
    }
    .TerminalLeft table .chosen-container-active.chosen-with-drop .chosen-single{
        background-image:none;
    }
    .TerminalLeft table .chosen-container-single .chosen-search input[type="text"]{
        font-size:20px;
    }
    .TerminalLeft table .chosen-container .chosen-results li.group-option {
        font-size: 18px;
    }
    .TerminalLeft table tr td:not(.ReceivingFullSize table tr td) {
        border: 1px solid lightgray;
    }
    .TerminalLeft table p{
    padding:0px;
    margin:0px;
    padding:5px;
    padding-left:10px !important;
} .TerminalLeft table input{
    height:100%;
    width:100%;
    border:none;
    font-weight:500;
    padding:5px;
    padding-left:10px;
} .TerminalLeft table select {
        width: 100%;
        height: 100%;
        margin: 0px;
        padding: 5px;
        background: none;
        border: none;
        font-weight: 600;
        padding-left: 5px;
    } .TerminalLeft table select:hover{
        cursor:pointer;
    } .ProgressBar{
    margin-left:10px;
    margin-top:12px;
} .ProgressBar p{
    display:inline-block;
    float:left;
    margin-top:3px;
    color:#333;
    font-weight:500;
    font-size:16px;
} .ProgressBarOutline {
    background: #333;
    margin-left: 16px;
    display: inline-block;
    width: 200px;
    height: 25px;
    border-radius: 15px;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
} .ProgressBarCompleted {
    background: #7cb957;
    width: 0px;
    margin-left:2px;
    margin-top:2px;
    height: 21px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
} .ProgressBarCount{
    position:absolute;
    margin-top:-24px;
    margin-left:90px;
    font-weight:bold;
    font-size:18px;
} .ProgressBarCount p {
        font-weight: bold;
        font-size: 17px;
        color:white;
    } .TerminalRight .dx-treelist .dx-row > td {
    padding-top:3px;
    padding-bottom:3px;
    padding-right:0px;
    color:#333;
} .TerminalRight .dx-treelist .dx-header-row > td {
    padding-top: 9px;
    padding-bottom: 7px;
    color:#333;
    font-weight:600;
} .TerminalRight .dx-editor-cell.dx-editor-inline-block:not(.dx-command-select)::before {
    padding-top: 3px;
    padding-bottom: 3px;
} .TerminalRight .dx-treelist-headers {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
    /*box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px*/
    /*1px solid #e0e0e0*/
    #SalvageTable_CreateDeviceType table td:nth-child(1){
    padding-left:30px;
} #SalvageTable_CreateDeviceType table select {
    width: calc(100% - 50px);
} .SalvageDisabled select {
    background: #F0F0F0 !important;
    border-radius:15px;
    display:none;
} .SalvageDisabled button {
    background: #F0F0F0 !important;
    border: 1px solid #D3D3D3 !important;
    color: #D3D3D3 !important;
    display: none;
} .SalvageDisabled{
    background:silver !important;
} .SalvageDisabled:hover{
    cursor:default;
} .TdPadding td:nth-child(1){
    padding-left:50px !important;
    color:#333;
} .PopupArea_SPIN{
    text-align:center;
    padding-top:20px;
} .PopupArea_SPIN h2 {
    font-weight: 500;
    font-size: 38px;
} .PopupArea_SPIN p{
    font-size:25px;
} .PopupArea_SPIN div {
        position: absolute;
        bottom: 30px;
        width:100%;
        text-align:center;
    } .PopupArea_SPIN button {
        color: white;
        background: #ffbb00;
        border: none;
        width: 80%;
        height: 40px;
        font-weight: 500;
        border-radius: 2px;
        color:black;
        font-size:16px;
    } .PopupArea_SPIN i{
        font-size:70px;
        margin-bottom:20px;
    } #SalvageErrorText {
    color: red;
    font-weight: 500;
    margin-top: 5px;
} .ConfirmationMessageArea{
    text-align:center;
} .ConfirmationMessageArea h3{
    font-size:25px;
    font-weight:500;
} .ConfirmationMessageArea p{
    font-size:20px;
    margin-top:30px;
} #SalvageArea_Parent p {
    color: blue;
} .DestructionBinMessageArea{
    text-align:center;
} .DestructionBinMessageArea h3{
    font-size:24px;
    margin-top:20px;
} .DestructionBinMessageArea input{
    height:30px;
    width:100%;
    margin-top:10px;
    border:1px solid gray;
    border-radius:6px;
} .DestructionBinMessageArea p{
    color:red;
    margin-top:5px;
} .DestructionBinMessageArea i {
        font-size: 70px;
        color: #C2B280;
        margin-top:10px;
    } .TerminalTableArea table tr td{
    width:50% !important;
    max-width:200px;
}
    /*===============Pallets*/
    .PalletDashboardArea {
    background: #f0f5f5;
    height: calc(100vh - 97px);
    padding: 15px;
} .PalletSearchArea {
    background: white;
    padding: 10px;
    height: 50px;
    border-radius: 5px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
} .PalletSearchArea button {
        float: right;
        height: 28px;
        background: #5394ea;
        color: white;
        font-weight: 600;
        border: none;
        border-radius: 4px;
        width: 110px;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    } .PalletSearchArea p {
        display: inline-block;
        margin-right: 200px;
        padding: 0px;
        margin-bottom: 0px;
        font-weight: 600;
        font-size: 18px;
        color: #5394ea;
        padding-top:4px;
        padding-left:6px;
    } .PalletSearchArea input, .PalletSearchArea select {
        float: right;
        width: 160px;
        height: 28px;
        border:1px solid silver;
        margin-right:8px;
        border-radius:5px;
        padding:0px;
        padding-left:5px;
    } .PalletHeaderBoxArea {
    margin-top:20px;
    display: flex;
    width: 100%;
    justify-content: space-between;
    box-sizing: border-box;
} .PalletOverviewBox {
    background: red;
    height: 60px;
    flex: 1;
    margin-left: 20px;
    display: inline-block;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    border:2px solid transparent;
} .PalletOverviewBox:hover{
        border:2px solid #333;
        cursor:pointer;
    } .PalletOverviewBox:nth-child(2) {
        background: #458ced;
    } .PalletOverviewBox:nth-child(3) {
        background: #7cb342;
    } .PalletOverviewBox:nth-child(4) {
        background: #ffa726;
    } .PalletOverviewBox:nth-child(5) {
        background: #ff4040;
    } .PalletOverviewBox:nth-child(6) {
        background: #7cb957;
    } .PalletOverviewCount{
    display:inline-block;
    height:100%;
    float:left;
} .PalletOverviewCount h3{
    color:white;
    font-size:32px;
    font-weight:500;
    margin-left:10px;
    margin-top:10px;

} .PalletOverviewLabel{
    display:inline-block;
    margin-left:15px;
    padding-top:5px;
    margin-top:5px;
} .PalletOverviewLabel p{
    margin:0px;
    color:white;
    font-size:15px;
} .PalletOverViewIconArea{
    text-align:center;
    padding-top:5px;
    margin-left:5px;
} .PalletOverViewIconArea i {
    font-size: 35px;
    color: #a08f73;
} .PalletOverViewIconArea p{
    font-weight:500;
    margin:0px;
    margin-top:4px;
} .ZoneArea {
    background: #5c90a3;
    height: calc(100vh - 270px);
    padding-top: 1px;
    margin-top: 20px;
    border-radius: 9px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    width: calc(100% - 15px);
    height: calc(100% - 240px);
    position: absolute;
    overflow-y: auto;
} .ZoneBorder {
    width:calc(100% - 50px);
    border: 1px solid lightgray;
    margin: 25px;
    height: 1000px;
    overflow-y: auto;
} .ZoneBox {
    width: 100px;
    height: 100px;
    background: red;
    position: absolute;
    border-radius: 3px;
    padding:8px;
    border:2px solid transparent;
} .ZoneBox:hover {
    border: 2px solid black;
    cursor: pointer;
} .ZoneLabel {
    font-weight: 500;
} .ZoneDetailHover {
    color: #03a9f4;
    float:right;
    margin-right:5px;
    margin-top:-34px;
    margin-bottom:0px;
} .ZoneBox:nth-child(1) {
    left: 390px;
    top: 80px;
    width: 300px;
    height: 200px;
    background: rgb(144, 186, 88);
} .ZoneBox:nth-child(2) {
        left: 70px;
        top: 80px;
        width: 300px;
        height: 400px;
        background: #c3676d;
    } .ZoneBox:nth-child(3) {
        left: 710px;
        top: 80px;
        height: 200px;
        width:200px;
        background: #1c6782;
    } .ZoneBox:nth-child(4) {
    left: 930px;
    top: 80px;
    width: 300px;
    height: 300px;
    background: #40789c;
} .ZoneBox:nth-child(5) {
    left: 390px;
    top: 300px;
    background: #1dabb0;
} .ZoneBox:nth-child(6) {
    left: 70px;
    top: 500px;
    width: 300px;
    height: 400px;
    background: rgb(238, 186, 105);
} .ZoneBox:nth-child(7) {
    left: 390px;
    top: 500px;
    width:520px;
    height:400px;
    background: #1dabb0;
} .ZoneBox:nth-child(8) {
    left: 390px;
    top: 300px;
    width: 520px;
    height: 180px;
    background: #c46d62;
} .ZoneIconPallet {
    display: inline-block;
} .ZoneIconPallet i {
        color: #CD9F61;
        font-size: 30px;
    } .ZoneIconForklift i {
    color: #FDDA0D;
    font-size: 30px;
    float: right;
} #ZonePalletDetailArea {
    background: lightgray;
    height: 80vh;
    padding-top: 1px;
    margin-top: 20px;
    border-radius: 9px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    padding:10px;
} #ZonePalletDetailArea button {
        border: none;
        background: #5394ea;
        border-radius: 5px;
        color: white;
        padding: 5px;
        padding-left: 15px;
        padding-right: 15px;
        margin-bottom: 5px;
        font-weight:500;
    } #ZonePalletDetailArea h3{
    font-size:22px;
    font-weight:600;
    margin:0px;
    margin-bottom:5px;
} #ZonePalletDetailArea p{

} .ZonePalletEntry{
    width:100%;
    height:80px;
    background:white;
    margin-bottom:15px;
    border-radius:10px;
    border:1px solid silver;
}


.ReceivingFullSize .ButtonArea_Skinny{
    margin-bottom:50px;
}

.MaterialSummaryArea, .MaterialSummaryArea_static {
    width: 100%;
    max-width: 1110px;
}
.MaterialSummaryArea button{
    width:100%;
    height:100%;
    border:1px solid silver;
    color:red;
}
    .MaterialSummaryArea table, .MaterialSummaryArea_static table{
        width: 100%;
        font-size: 18px;
    }
        .MaterialSummaryArea table tr td, .MaterialSummaryArea table tr th, .MaterialSummaryArea_static table tr td, .MaterialSummaryArea_static table tr th {
            border: 1px solid silver;
            text-align: center;
            height: 40px;
        }
        .MaterialSummaryArea table tr th, .MaterialSummaryArea_static table tr th {
            font-weight: 500;
        }
        .MaterialSummaryArea table tr td, .MaterialSummaryArea_static table tr td {
            background: white;
            overflow: hidden;
        }
    .MaterialSummaryArea table tr td:nth-child(2), .MaterialSummaryArea table tr td:nth-child(4) {
        width: 100px;
    }
    .MaterialSummaryArea table tr td:nth-child(3) {
        width: 120px;
    }
            .MaterialSummaryArea table tr td:nth-child(5) {
                width: 160px;
            }
    .ReceivingNavNextArea{
        width:100%;
        max-width:1110px;
        margin-top:10px;
        bottom:50px;
        text-align:left;
    }
        .ReceivingNavNextArea button {
            float: right;
            padding: 8px;
            padding-left: 25px;
            padding-right: 25px;
            background: #5394ea;
            color: white;
            border: 1px solid #5394ea;
            border-radius: 30px;
            font-size:20px;
            font-weight:500;
        }


.ReceivingFullSize .ButtonArea_Skinny {
    margin-top: 50px;
}

.ScaleReceiptArea {
    display: inline-block;
}
.PalletImageArea {
    height: 350px;
    width:400px;
    display: inline-block;
}
    .PalletImageArea button {
        border: 2px solid #5394ea !important;
        background: #5394ea;
        color: white;
        border-radius: 20px;
        padding: 8px;
        font-weight: 500;
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 2px;
    }
#PalletImage{
    height:341px;
}
#FilterShowAll p{
    display:inline-block;
    padding:0px;
    margin:0px;
}
.TableIconBtn{
    border:none;
    background:none;
}



.SelectedOrangeBackground{
    background:#cd853f;
}
    .SelectedOrangeBackground:hover {
        background: #cd853f;
    }


/*PALLET AI TEST+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
#Pallet_AI_TestArea{

}
#Test_ButtonArea{

}
#Test_ButtonArea button{
    padding:10px;
    border:1px solid silver;
    border-radius:4px;
    margin:5px;
    width:200px;
    height:50px;
    vertical-align:top;
}

#Test_SubmitArea{
    margin-top:50px;
}
#Test_SubmitArea button{
    padding:10px;
    border:1px solid silver;
    border-radius:10px;
}
#Test_SubmitArea div{
    width:300px;
    text-align:left;
    margin-top:20px;
}
#Test_SubmitArea div p{
    font-weight:500;
    font-size:16px;
}
.TestSelected{
    background:orange;
}
/*================================ Mobile ====================================*/
@media only screen and (max-width: 800px) {
    .ScaleStartScreen h3 {
        font-size: 25px !important;
    }

    .ScaleWeightArea {
        width: 100% !important;
    }

    .ButtonArea_Skinny {
        margin-top: 250px;
    }

    .DetailsMiddleTable {
        width:100%;
        margin-left: 100vh;
        height: calc(100vh - 170px);
    }

    .WarehouseTableFilterArea {
        width: 100%;
        min-width:500px;
    }
    .DetailsLeftBox {
        width: 100%;
    }
    .DetailsRightBox {
        width: 100%;
    }

    .WarehouseTableFilterArea{
        margin-left:100%;
    }

    .DetailsRightBox_Tab{
        width:32.7%;
    }

    .TerminalButtons{
        width:100%;
        float:none;
        text-align:center;
        margin-top:20px;
    }
    .TerminalLeft{
        margin:10px;
        width:calc(100% - 20px);
        height:auto;
    }
    .TerminalCheckArea{
        float:none;
        margin:10px;
        margin-bottom:0px;
    }
    .TerminalBackground{
        overflow:auto;
    }
    .TerminalRight{
        width:calc(100% - 20px);
    }
}


