﻿
html, body {
    margin: 0;
    padding: 0;
    font-size: 11px;
    overflow: hidden;
    font-family: "nimbus-sans-condensed";
    font-style: normal;
    font-size: 12px;
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;
    background-color: black;
    width: 100%;
    height: 100%;
}

input[type=time] {
    height: 22px;
}

textarea {
    resize: none;
}

a {
    color: #58595B;
    text-decoration: none;
}

    a:hover {
        color: #f68529;
    }

.gf {
    border: none;
    border-radius: 5px;
    background: rgba(0,0,0, 0.7);
    -webkit-box-shadow: 0 0 20px darkgrey;
    -moz-box-shadow: 0 0 20px darkgrey;
    box-shadow: 0 0 20px darkgrey;
}

/* Autocomplete */
.ac {
    background-color: white;
    border: solid 1px silver;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
}
/* Autocomplete Item */
.aci {
    font-size: 11px;
    color: Black;
    padding: 1px;
}
/* Autocomplete Item Highlight */
.acih {
    cursor: pointer;
    background-color: #1e90ff;
    color: white;
    font-size: 11px;
    padding: 1px;
}

.light {
    border: 1px solid #A9A9A9;
    border-radius: 5px;
    background: rgba(192,192,192, 0.7);
    -webkit-box-shadow: 0 0 15px darkgrey;
    -moz-box-shadow: 0 0 15px darkgrey;
    box-shadow: 0 0 15px darkgrey;
}

.dark {
    color: black !important;
}

.gl {
    color: white;
    font-size: 16px;
    font-weight: bold;
}


.logo {
    position: absolute;
    top: 20px;
    left: 10px;
}

.header-text {
    position: absolute;
    color: white;
    text-align: right;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 1px 1px black;
    right: 10px;
}

.banner-container {
    text-align: center;
    width: 100%;
    background-color: #383838;
    height: 426px;
}

    .banner-container img {
        -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
        mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
    }


.footer {
    position: absolute;
    bottom: 41px;
    width: 100%;
    background-color: #151515;
    height: 262px;
    text-align: center;
    vertical-align: top;
}


    .footer .footer-content {
        display: inline-block;
        width: 15%;
        height: 240px;
        margin: 10px;
    }


    .footer .footer-header {
        color: #F16521;
        font-size: 18px;
        line-height: 10px;
        font-stretch: condensed;
        font-weight: 400;
        font-style: normal;
        text-align: left;
        margin-top: 25px;
    }

    .footer .footer-item-content {
        text-align: left;
        color: white;
        font-size: 13px;
        vertical-align: top;
    }

    .footer .footer-social {
        border: 2px solid white;
        width: 35px;
        height: 35px;
        text-align: center;
        border-radius: 50%;
        float: left;
        margin-right: 5px;
        cursor: pointer;
        font-size: 20px;
    }

    .footer .footer-item-content a {
        color: white;
    }

        .footer .footer-item-content a:hover {
            color: #F16521;
        }

    .footer .footer-item-content .facebook {
        background-color: black;
    }

        .footer .footer-item-content .facebook:hover {
            color: white;
            border-color: silver;
            background-color: #3A559F;
        }


    .footer .footer-item-content .twitter {
        background-color: black;
    }

        .footer .footer-item-content .twitter:hover {
            color: white;
            border-color: silver;
            background-color: #28AAE1;
        }

    .footer .footer-item-content .linkedin {
        background-color: black;
    }

        .footer .footer-item-content .linkedin:hover {
            color: white;
            border-color: silver;
            background-color: #0271AE;
        }

.footer-button {
    position: fixed;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 32px;
    padding-top: 4px;
    right: 0;
    cursor: pointer;
}

.copyright {
    position: fixed;
    font-stretch: semi-condensed;
    bottom: 0;
    width: 100%;
    height: 41px;
    line-height: 41px;
    background-color: black;
}

    .copyright .copyright-contents {
        color: white;
        margin: 0 auto;
        width: 1000px;
    }

        .copyright .copyright-contents a {
            color: white;
            text-decoration: none;
        }

            .copyright .copyright-contents a:hover {
                color: #f68529;
            }


.login-container {
    position: fixed;
    top: 335px;
    left: 50%;
    margin-left: -500px;
    width: 1000px;
    height: 300px;
}

    .login-container .login {
        color: white;
        position: absolute;
        font-stretch: condensed;
        width: 280px;
        padding: 15px;
        font-size: 12px;
        background: rgba(0, 0, 0, .7);
        border-radius: 3px;
        -webkit-box-shadow: 0 0 10px white;
        -moz-box-shadow: 0 0 10px white;
        box-shadow: 0 0 50px white;
    }

    .login-container .login-text {
        position: absolute;
        left: 400px;
        top: 96px;
        font-stretch: condensed;
        color: white;
        font-size: 16px;
    }



.ba {
    border: 1px solid #ba6621;
    font-size: 12px;
    background-color: #f68529;
    color: white;
    text-align: center;
    border-radius: 3px;
    line-height: 20px;
    cursor: pointer !important;
}

    .ba:hover {
        background-color: #bb8529;
        cursor: pointer !important;
    }

    .ba:disabled, .ba[disabled]:hover {
        background-color: darkgray;
        cursor: default;
        color: white;
    }

.ei {
    font-size: 11px;
    font-family: Arial,verdana;
    color: #000000;
    text-align: left;
    padding: 3px;
    margin: 0;
    border-radius: 4px;
    border: 1px solid silver;
}

.wrapper {
    background-color: black;
    height: 100%;
    width: 100%;
    z-index: 10000;
    position: absolute;
    opacity: 0.7;
    display: none;
}


.menu {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 46px;
    padding: 7px 0px 7px 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 20px darkgrey;
    -moz-box-shadow: 0 0 20px darkgrey;
    box-shadow: 0 0 20px darkgrey;
}

    .menu .menu-link {
        color: #FFFFFF;
        text-decoration: none;
    }

        .menu .menu-link:hover {
            color: #f68529;
        }


thead {
    background: rgba(0,0,0, 0.7);
    color: white;
    text-align: left;
}


.search input {
    border: 1px solid black;
    font-size: 11px;
    font-family: Arial,verdana;
    text-align: left;
    padding: 3px;
    margin: 0;
    border-radius: 4px !important;
    border: 1px solid silver;
    margin-bottom: 10px;
}

input[type=date]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    display: none;
}

select {
    font-size: 11px;
    font-family: Arial,verdana;
    color: #000000;
    text-align: left;
    padding: 3px;
    margin: 0;
    border-radius: 4px;
    border: 1px solid silver;
}

.modal {
    overflow: initial;
}

.model-width-override {
    min-width: 1000px !important;
    color: white;
    font-size: 11px;
}

.model-width-override-medium {
    min-width: 800px !important;
    color: white;
    font-size: 11px;
}

.model-width-override-small {
    min-width: 600px !important;
    color: white;
    font-size: 11px;
}

.model-header {
    font-weight: bold;
    font-size: 12px;
    line-height: 26px;
    color: white;
    text-align: center;
    text-transform: uppercase;
}

.close-modal {
    border: 2px solid white;
    border-radius: 50%;
}

table.display tbody tr:nth-child(odd):hover td {
    background-color: #f68529 !important;
    color: white;
    cursor: pointer;
}

    table.display tbody tr:nth-child(odd):hover td.sorting_1 {
        background-color: none !important;
    }

table.display tbody tr:nth-child(odd) td.sorted {
    background-color: none !important;
}


table.display tbody tr td {
    padding: 0;
}


table.display tbody tr:nth-child(even):hover td {
    background-color: #f68529 !important;
    color: white;
    cursor: pointer;
}

    table.display tbody tr:nth-child(even):hover td.sorting_1 {
        background-color: none !important;
    }

table.display tbody tr:nth-child(even) td.sorted {
    background-color: none !important;
}



/*tooltip*/
.tooltipster-sidetip.tooltipster-light.tooltipster-light-customized .tooltipster-box {
    border: 1px solid silver;
    border-radius: 6px;
}

.tooltipster-sidetip.tooltipster-light.tooltipster-light-customized .tooltipster-content {
    color: orangered;
    padding: 8px;
}

.error {
    border: 1px solid red;
    background-color: #ffb3b3;
}

.linked {
    display: none;
    width: 550px;
    height: 300px;
    border: 2px solid silver;
    position: absolute;
    background-color: white;
    border-radius: 4px;
    right: 20px;
    top: 18px;
    -webkit-box-shadow: 0px 0px 22px 3px rgba(0,0,0,0.75);
    -moz-box-shadow: 0px 0px 22px 3px rgba(0,0,0,0.75);
    box-shadow: 0px 0px 22px 3px rgba(0,0,0,0.75);
    z-index: 10000;
}

    .linked .linked-header {
        width: 538px;
        background-color: #4C4C4C;
        text-align: center;
        height: 30px;
        line-height: 30px;
        color: white;
        font-weight: bold;
        border-radius: 4px;
        margin: 4px;
    }

.link-icon {
    width: 20px;
    float: right;
    cursor: pointer;
}

.linked-label {
    color: #ADD8E6;
    cursor: pointer;
    text-decoration: underline;
}

.linked-job {
    height: 20px;
    padding-left: 5px;
    line-height: 20px;
    border-radius: 4px;
    margin-bottom: 2px;
    background-color: #F0F0F0;
    border: 1px solid silver;
    cursor: pointer;
    font-weight: bold;
}

    .linked-job:hover {
        background-color: #f68529;
        color: white;
        font-weight: bold;
    }

.add-veh-btn-enabled {
    margin: 0;
    color: #f68529;
    cursor: pointer;
}

.add-veh-btn-disabled {
    margin: 0;
    color: grey;
    pointer-events: none;
}

.linkedImageCell {
    text-align: center;
}

.jobModeImageCell {
    text-align: center;
}

.jobMediaImageCell {
    text-align: center;
    border: 2px solid white;
    border-radius: 50%;
    margin-right: 5px;
    margin-top: 3px;
}

.jobAttachmentImageCell {
    text-align: center;
    border: 2px solid white;
    border-radius: 50%;
    margin-right: 5px;
    margin-top: 3px;
}

.jobPaperworkImageCell {
    text-align: center;
    border: 2px solid white;
    border-radius: 50%;
    margin-right: 5px;
    margin-top: 3px;
}

.jobBatteryImageCell {
    text-align: center;
    border: 2px solid white;
    border-radius: 50%;
    margin-right: 5px;
    margin-top: 3px;
}

.job-type-grid {
    text-align: center;
    border: 2px solid white;
    border-radius: 50%;
    margin-right: 5px;
}



.job-shipping-mode {
    border: 2px solid white;
    border-radius: 50%;
}

.jobTypeImageCell {
    text-align: center;
}

.tableFixHead {
    overflow-y: auto;
    height: 100px;
    .tableFixHead table;

{
    border-collapse: collapse;
    width: 100%;
}

}


.tableFixHead th {
    position: sticky;
    top: 0;
    background: #4C4C4C;
}

.no-sorting {
    pointer-events: none;
}

tr.group,
tr.group:hover {
    font-weight: bold;
    color: white;
    background-color: #484848 !important;
    pointer-events: none;
}


.show {
    visibility: visible;
    opacity: 1;
    transition: opacity 1s, ease-out height 0;
    top: 0;
    z-index: 1;
}

.hide {
    visibility: collapse;
    opacity: 0;
    transition: opacity 1s, ease-out height 0 1s;
    z-index: 1;
}

.pad-right {
    padding-right: 3px;
}

.selected td {
    background-color: chartreuse !important;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
    background-position: left center !important;
    background-repeat: no-repeat;
}

#zoom {
    width: 100%;
    height: 100%;
    transform-origin: 0px 0px;
    transform: scale(1) translate(0px, 0px);
    cursor: grab;
}

div#zoom > img {
    width: 100%;
    height: auto;
}

.drag {
    width: 100vw;
    height: 100vh;
    border: 1px solid black;
    cursor: pointer;
    text-align: center;
    background: rgba(0,0,0,.8);
}

#parent {
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: 1;
    overflow: hidden;
}

.odd {
    background-color: #E8E8E8 !important;
}

.even {
    background-color: white !important;
}

.timeline-event {
    width: 44px;
    height: 44px;
    line-height: 45px;
    border: 2px solid black;
    text-align: center;
    border-radius: 50%;
    cursor: pointer;
}

.timeline-status {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    position: absolute;
    margin-top: -5px;
    margin-left: 34px;
}

.timeline-date {
    margin-top: -33px;
    position: absolute;
    text-align: center;
    width: 60px;
    margin-left: -10px;
}

.selected {
    border: 2px solid white;
}

.status-pending {
    background-image: url('/Resources/Images/pending.png');
    background-size: cover;
}

.status-progress {
    background-image: url('/Resources/Images/progress.png');
    background-size: cover;
}

.status-subcontract {
    background-image: url('/Resources/Images/subcontract.png');
    background-size: cover;
}

.status-cancelled {
    background-image: url('/Resources/Images/cancelled.png');
    background-size: cover;
}

.status-finished {
    background-image: url('/Resources/Images/finished.png');
    background-size: cover;
}

.status-hold {
    background-image: url('/Resources/Images/hold.png');
    background-size: cover;
}

.status-allocated {
    background-image: url('/Resources/Images/allocated.png');
    background-size: cover;
}

.timeline-line {
    width: 44px;
    margin-top: 22px;
    border-top: 2px solid black;
}

.event-road {
    background-image: url('/Resources/Images/road.png');
    background-size: cover;
}

.event-rail {
    background-image: url('/Resources/Images/rail.png');
    background-size: cover;
}

.event-sea {
    background-image: url('/Resources/Images/sea.png');
    background-size: cover;
}

.event-air {
    background-image: url('/Resources/Images/air.png');
    background-size: cover;
}

.event-shuttle {
    background-image: url('/Resources/Images/shuttle.png');
    background-size: cover;
}

.event-default {
    background-image: url('/Resources/Images/default.png');
    background-size: cover;
}
