:root {
    --clr-red: #DF0E0E !important;
    --clr-white: #FFFFFF !important;
    --clr-teal: #00857D !important;
    --clr-lgt-grey: #DDDBDC !important;
    --clr-drk-grey: #595555 !important;
    --clr-lgt-blue: #F0F3FD !important;
    --font-type: 'Roboto', sans-serif !important;
    --fs-title: 25px !important;
    --fs-body: 16px !important;
    --fs-nav: 14px !important;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

.container {
    width: 100%;
    margin-right: auto;
    margin-left: auto !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}


body {
    font-family: var(--font-type);
    font-size: var(--fs-nav);
}

a {
    text-decoration: none;
    color: black;
    /*background-color: inherit !important;*/
}

    a:hover {
        text-decoration: none !important;
    }

p {
    margin-bottom: 0 !important;
}

h2 {
    margin-top: 15px;
    font-weight: 300;
    font-size: 18px;
}


ul {
    list-style: none;
}

section {
    margin: 20px 150px;
}

/*Header Area*/
header {
    width: 100%;
    display: flex;
    flex-direction: column;
}
/*--Top nav background--*/
.logo-wrapper {
   /* background: var(--clr-lgt-grey); US requirement 21-Aug-2025 */ 
}

/*--top nav content--*/
.logo-account {
    margin: 15px 70px;
    height: 50px;
    display: flex;
    justify-content: space-between;
}

/*--top nav content left side--*/
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .logo-container:hover .logo-title {
        color: black;
    }

.logo-title {
    font-size: var(--fs-nav);
    font-weight: 400 !important;
}

    .logo-title:hover {
        color: black !important;
    }

.logo {
    width: 226px;
    height: 78px;
}
/*--top nav content right side--*/
.account {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-item {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 0 10px
}

.dropdown {
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: 0 10px
}

.fa-solid {
    padding-left: 15px;
    cursor: pointer;
}

.nav-item a {
    color: black !important;
}


/*--Bottom Navbar--*/
.navbar {
    height: 12px;
    background: var(--clr-drk-grey);
    display: block !important;
    padding: 0 !important;
}

/*--Upload file section--*/

.label-btn {
    background-color: var(--clr-teal);
    color: white;
    padding: 2px 35px;
    border: none;
    border-radius: 15px;
    font-size: var(--fs-body);
    font-weight: 400;
    cursor: pointer;
}

    .label-btn:hover {
        color: white !important;
    }

.actions a {
    color: blue;
    text-decoration: underline;
    font-weight: 400;
}

/*--recent-uploads--*/


.footer {
    overflow: hidden;
    padding: 0 70px;
}

.footer-links {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

    .footer-links li {
        margin: 0 auto;
        margin-top: 20px;
    }

        .footer-links li a:hover {
            color: black;
            text-decoration: underline !important;
        }

.rights {
    display: flex;
    justify-content: center;
    margin: 10px;
}

.page-title {
    text-align: center;
}

.ui-dialog-titlebar-close {
    visibility: hidden;
    display: none !important;
    background: transparent !important;
   }

.ui-dialog .ui-dialog-titlebar {
    display: none !important;
}

.ui-widget-content {
    background: transparent !important;
    border: none !important;
}

.imgcenter {
    width: 90px;
    background-color: transparent !important;
    border-radius: 10px;
    opacity: 1;
}

.center img {
    height: 128px;
    width: 128px;
}

@media (min-width: 600px) {
    .modal-dialog {
        max-width: 95% !important;
        margin: 1.50rem auto;
    }
}

.filter {
    display: flex;
    width: 100%;
    justify-content: flex-end;
}

.filter-container {
    border: 0.5px solid #bebebe;
    box-shadow: 0px 0px 5px 0px #bebebe;
    border-radius: 8px;
    display: flex;
    width: 40%;
}

#btnShowErrors, #btnShowAll {
    flex: 1;
    border: none;
    border-radius: 8px;
    background-color: var(--clr-white);
    color: #595555;
    padding: 0 10px;
    font-size: var(--fs-body);
    font-weight: 400;
    cursor: pointer;
}

.activeFilter {
    background-color: var(--clr-teal) !important;
    color: white !important;
    font-size: 15px !important;
}

#tblShipmentData_filter {
    display: none !important;
}

#tblShipmentData-wrapper .row .col-sm-12.col-md-6 {
    padding: 0 !important;
}
/*edit table*/
#tblShipmentData {
    display: block !important;
    max-width: fit-content !important;
    margin: 0 auto !important;
    overflow-x: auto !important;
    overflow-y: auto !important;
    white-space: nowrap !important;
}

    #tblShipmentData .table-actions {
        border-left: none !important;
    }

    #tblShipmentData thead {
        height: 50px;
        background: #4a4a4c !important;
        color: #eeeeef !important;
        font-weight: 200;
    }

    #tblShipmentData thead th {
        text-align: left !important;
        vertical-align: middle !important;
        border: none !important;
        border-left: solid 1px #eeeeef !important
    }

    #tblShipmentData td:nth-child(8) {
        text-align: end !important;
    } 
    #tblShipmentData th:nth-child(8) {
        text-align: end !important;
    }

    #tblShipmentData tbody .fa-solid {
        padding: 0 !important;
        color: transparent;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: black;
    }

.fa-triangle-exclamation {
    -webkit-text-stroke-color: #DF2901 !important;
    cursor: default !important;
}

#tblShipmentData > thead > tr > th, #tblShipmentData > thead > tr > td, #tblShipmentData > tbody > tr > th, #tblShipmentData > tbody > tr > td, #tblShipmentData > tfoot > tr > th, #tblShipmentData > tfoot > tr > td {
    padding: 15px !important;
    line-height: 1.42857 !important;
    vertical-align: top !important;
    border-top: 1px solid #ddd !important;
}

#ui-datepicker-div > table > thead > tr > th, table > tbody > tr > td {
    padding: 0 !important;
}

.ui-datepicker-calendar {
    border: 1px solid #aaaaaa !important;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #ffffff !important;
    --bs-table-accent-bg: rgb(255 255 255 / 5%) !important;
}

.table-striped tbody tr:nth-of-type(even) {
    /*    background-color: #eff1f3;*/
    background-color: white !important;
}

.table-bordered td, .table-bordered th {
    border: none;
}

.col-12 .pt-4 {
    padding: 0 !important;
}

.pagination {
    justify-content: flex-end !important;
    margin-top: 10px !important;
    gap: 10px !important;
}

.page-link {
    color: black !important;
    border-radius: 15% !important;
}

    .page-link:focus {
        outline: 0 !important;
    }

.page-item.active .page-link {
    background-color: #dee2e6 !important;
    border: 1px solid #dee2e6 !important;
}

#tblShipmentData_previous .page-link, #tblShipmentData_next .page-link {
    border: none !important;
    color: #0662bb !important;
    font-weight: bold;
}

    #tblShipmentData_previous .page-link:before {
        /*content: "/f053";
        font-family: "Font Awesome 5 Free";*/
        content: "\f104";
        padding-right: 5px;
    }

    #tblShipmentData_next .page-link:after {
        /*content: "/f053";
        font-family: "Font Awesome 5 Free";*/
        content: "\f105";
        padding-left: 5px;
    }

.modal-header .close {
    margin: 0 !important;
    padding: 5px !important;
}

.submit-update {
    width: 100%;
    /*display: flex;*/
    justify-content: center;
}

table.dataTable thead .sorting_asc {
    background: url("http://cdn.datatables.net/1.10.0/images/sort_asc.png") no-repeat center right;
}

table.dataTable thead .sorting_desc {
    background: url("http://cdn.datatables.net/1.10.0/images/sort_desc.png") no-repeat center right;
}

table.dataTable thead .sorting {
    background: url("http://cdn.datatables.net/1.10.0/images/sort_both.png") no-repeat center right;
}

.dataTables_scrollBody thead tr[role="row"] {
    visibility: collapse !important;
}

.invalid {
    border: 1px solid red
}

/*Modal for delete forced changes*/
#delete-modal .modal-header, #delete-modal .modal-footer, #cancel-Modal .modal-header, #cancel-Modal .modal-footer, #error-modal .modal-header, #error-modal .modal-footer, #failed-modal .modal-header, #failed-modal .modal-footer, #confirm-Modal .modal-header, #confirm-Modal .modal-footer, #update-modal .modal-header, #update-modal .modal-footer {
    border-bottom: none !important;
    border-top: none !important;
}

#delete-modal .modal-dialog, #cancel-Modal .modal-dialog, #error-modal .modal-dialog, #failed-modal .modal-dialog, #confirm-Modal .modal-dialog, #update-modal .modal-dialog {
    height: 90% !important;
}

#delete-modal .modal-content, #cancel-Modal .modal-content, #error-modal .modal-content, #failed-modal .modal-content, #confirm-Modal .modal-content, #update-modal .modal-content {
    padding: 25px 50px 25px 50px !important;
    min-height: 200px !important;
    margin: 0 auto !important;
    width: 70% !important;
    top: 20% !important;
}

#delete-yes {
    padding: 10px 20px;
    border-radius: 40px;
}

#delete-modal .modal-title, #cancel-Modal .modal-title, #error-modal .modal-title, #failed-modal .modal-title, #confirm-Modal .modal-title, #update-modal .modal-title {
    position: relative !important;
}

    #delete-modal .modal-title:after, #cancel-Modal .modal-title:after, #error-modal .modal-title:after, #failed-modal .modal-title:after, #confirm-Modal .modal-title:after, #update-modal .modal-title:after, .title-decoration:after {
        content: '' !important;
        position: absolute !important;
        width: 15% !important;
        height: 3px !important;
        bottom: -15% !important;
        left: 0 !important;
        background-color: var(--clr-teal) !important;
        transform-origin: bottom right !important;
        transition: transform 0.4s ease-out !important;
    }

.title-decoration:after {
    width: 5% !important;
}

.label-cancel-Submit {
    border: none;
    background: none;
    margin-left: 20px;
    color: #2666BF;
    /*text-decoration: underline;*/
}

.table-links {
    color: #108383 !important;
}

    .table-links:hover {
        text-decoration: underline !important;
        cursor: pointer !important;
    }

/*error*/
#totalErr, #popUp {
    position: relative;
}

    #totalErr:before, #popUp:before {
        left: -0.01rem;
        top: 0;
        content: "";
        width: 2px;
        height: 100%;
        background-color: #DF2901;
        border-radius: 3px 0 0 3px;
    }

.legend {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding: 15px;
    padding-bottom: 0;
}

    .legend .fa-solid {
        padding: 0 !important;
        color: transparent;
        -webkit-text-stroke-width: 1px;
        -webkit-text-stroke-color: #6767f3;
        margin-left: 20px;
    }

/*page status*/

.step-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 15px 0;
}

    .step-container > div {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #aaaaaa;
    }



.step.active {
    background-color: var(--clr-teal);
    color: #fff;
}

/*main page import status*/
.file-status {
    padding: 7px 15px;
    border-radius: 8px;
    font-weight: 500;
    text-transform: uppercase !important;
}

.processing {
    background-color: #d4eedd;
    color: #4b8b62;
}

.accepted {
    background-color: #d4eedd;
    color: #4b8b62;
}

.rejected {
    background-color: #FCEAE6;
    color: #bb6450;
}

.cancelled {
    background-color: #fef6cc;
    color: #8e803a;
}

.container-2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .container-2 h2, .container-2 label {
        padding: 0px !important;
        margin: 0px !important;
    }

.box-1 {
    display: flex;
    align-items: center;
    gap: 15px;
}

#stdatepicker {
    background: url('/calendar.svg') no-repeat;
    background-position: 95%;
    border: 1px solid #ccc;
}

.ui-datepicker {
    width: 20em !important;
    padding: 0.2em 0.2em 0;
    display: none;
    background: white !important;
    border: 1px solid #ced4da;
    /*color: #EEE;*/
}

.page-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
}

    .page-heading h2 {
        font-weight: bold;
    }

.secondary-button {
    padding: 8px 20px;
    border-radius: 25px;
    font-size: var(--fs-nav);
    background-color: transparent;
    color: #0a8080;
    font-weight: 600;
    border: 2px solid #0a8080;
}

.page-heading a:hover {
    text-decoration: underline !important;
}

.page-heading .fa-chevron-right {
    padding-left: 10px;
    font-size: 12px;
}

#drop-zone {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 200px;
    border-radius: 10px;
    border: 2px dashed #9b9ea0;
    gap: 0.5rem;
}

#drop-zone-legend {
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#drop-zone div {
    display: flex;
    gap: 5px;
}

#drop-zone .fa-folder-plus {
    color: #9ea1a4;
    padding: 10px !important;
    border-radius: 5px;
    background-color: #eff1f3;
    cursor: default !important;
    font-size: 40px;
}

.input-label {
    color: #0a8080;
    font-weight: 600;
    text-decoration: underline;
    margin: 0 !important;
    cursor: pointer;
}

#upload-actions {
    align-items: center;
    flex-direction: column;
    gap: 10px !important;
}

    #upload-actions .fa-file-import {
        padding: 0 !important;
        color: #0a8080;
        line-height: 20px;
    }

#file-chosen {
    color: #0a8080;
    padding: 0 5px;
}

#upload-actions button {
    padding: 8px 20px;
    border-radius: 25px;
    font-size: var(--fs-nav);
}

#upload-actions .fa-chevron-right {
    padding-left: 10px;
    font-size: 12px;
}

.drpdwn {
    position: absolute;
    top: 40%;
    right: 5%;
    font-size: 15px;
    padding: 0;
    z-index: -1;
}

#divDrpFromState, #divDrpState, #ShipFromCountry, #ShipToCountry, #ServiceLevel {
    background-color: transparent;
    cursor: pointer;
}

#CurrencyValue {
    width: 20%;
    background-color: transparent !important;
    color: #0662bb;
    border: none;
    text-align: end;
    position: absolute;
    top: -.5rem;
    right: 0
}

#InsuredValue {
    text-align: start !important;
}

#Remarks {
    max-height: 200px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}

#eventModal .modal-content {
    background-color: #f8fbfb !important;
}

@media (max-width: 767px) {
    #totalErr {
        text-align: center
    }

    .legend {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

        .legend div {
            width: 100%;
            text-align: center
        }

    .filter {
        justify-content: center;
    }

    .navbar-links {
        width: 100%;
    }

    .pagination {
        justify-content: center !important;
    }

    .submit-update {
        justify-content: center;
    }
}

@media(min-width: 1200px) {
    #btnShowErrors, #btnShowAll {
        padding: 4%;
    }
}

#shipdatehover, #errorhover {
    position: relative;
}

.bubble {
    visibility: hidden;
    width: 400px;
    background-color: white;
    color: #4e5357;
    text-align: center;
    border-radius: 6px;
    padding: 15px 5px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 35%;
    border-color: #4e5357;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

    .bubble::after {
        content: "";
        position: absolute;
        top: 100%;
        left: 2%;
        border-left: 5px solid white;
        border-top: 5px solid white;
        border-right: 5px solid transparent;
        border-bottom: 5px solid transparent;
        -webkit-box-shadow: -10px 0px 10px -3px #000000;
        box-shadow: -10px 0px 10px -3px #000000;
    }

.errbubble {
    visibility: hidden;
    width: 500px;
    background-color: #eff1f3;
    /*color: #4e5357;*/
    color: black;
    border-radius: 6px;
    padding: 15px 5px;
    position: absolute;
    z-index: 1;
    bottom: -200%;
    left: 200%;
    border-color: #4e5357;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

    .errbubble::after {
        content: "";
        position: absolute;
        top: 50%;
        left: -3%;
        border-left: 5px solid transparent;
        border-top: 5px solid transparent;
        border-right: 7px solid #eff1f3;
        border-bottom: 5px solid transparent;
        /*-webkit-box-shadow: -10px 0px 10px -3px #000000;
box-shadow: -10px 0px 10px -3px #000000;*/
    }

    .errbubble > div > * {
        font-family: var(--font-type) !important;
        font-size: var(--fs-body) !important;
    }

.errbubbleheading, .errcontainer {
    display: flex;
    width: 100%;
    gap: 0.5em;
    align-items: start;
}

.errcontainer {
    flex-direction: column;
    padding: 0.5em;
}

#shipdatehover:hover .bubble, #errorhover:hover .errbubble {
    visibility: visible;
}

.errcontainer ul li {
    color: red;
    font-size: 14px;
    font-weight: 700;
}

.errbubbleheading p {
    font-size: 18px;
    font-weight: bold;
}

#daterange {
    padding: 0.5em 0.5em 0.5em 2.5em;
    background: url('/calendar.svg') no-repeat;
    background-position: 5%;
    border: 1px solid #ccc;
}

input[type=checkbox]:checked {
    background-color: var(--clr-teal) !important;
}

#SLBanner {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #e7f2f2;
    padding: 1rem;
    border-bottom: solid 1px #0a8080;
    gap: .5em
}

    #SLBanner span {
        color: #3c85c8;
        text-decoration: underline;
        cursor: pointer;
    }

#loading-container {
    margin-bottom: 1rem;
}

#loading-container > * {
    margin: 0 auto;
}

.loading-legend {
    width: 85%;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 15px !important;
    color: gray;
}

.loading-bar {
    display: flex;
    height: 0.2rem;
    background-color: #b2b6bd;
    border-radius: 1.5rem;
    align-items: center;
    width: 70%;
    position: relative;
}

#loading-percent {
    background-color: var(--clr-teal);
    width: 50%;
    height: 120%;
    border-radius: 1.5rem;
    margin: 0 2px;
}

.step {
    border-radius: 50%;
    display: inline-block;
    position: absolute;
}

.prev-step, .last-step {
    height: 10px;
    width: 10px;
}

.prev-step {
    background-color: var(--clr-teal);
}

.last-step {
    background-color: white;
    border: solid 2px #b2b6bd;
    right: 0;
}

.current-step {
    width: 17px;
    height: 17px;
    right: 49%;
    background-color: white;
    border: solid 3.5px var(--clr-teal);
}

.fa-circle-check:before {
    font-size: 2.5em;
}

#tblShipmentData_wrapper {
    padding-left: 12px !important;
    padding-right: 12px !important;
}

#confirm-submit:disabled, #validateMapping:disabled {
    background-color: darkgray;
    color: lightgray;
    cursor: default;
}
/*Checkbox*/
.check-container {
    display: block;
    position: relative;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}
.check-container input {
    width: 0;
    height: 0;
}
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee;
}
.checkmark {
    border-radius: 50%;
}
.check-container .checkmark {
    border-radius: 5px;
}
.check-container:hover input ~ .checkmark {
    background-color: #ccc;
}
.check-container input:checked ~ .checkmark {
    background-color: var(--clr-teal);
}
.check-container input:checked ~ .checkmark:after {
    display: block;
}
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
.check-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 7px;
    height: 12px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
@media (max-width: 600px) {
    .mapping-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .mapping-label {
        width: 100% !important;
        word-break: break-word;
        margin-bottom: 5px;
    }
    .file-column-dropdown {
        width: 100%;
    }
}