@font-face {
    font-family: "SF-UI-Display-Regular";
    font-style: normal;
    font-weight: normal;
    src: local("SF-UI-Display-Regular"),
        url("../fonts/sf-ui-display-regular.woff") format("woff");
}

@font-face {
    font-family: "SF-UI-Display-Medium";
    font-style: normal;
    font-weight: normal;
    src: local("SF-UI-Display-Medium"),
        url("../fonts/sf-ui-display-medium.woff") format("woff");
}

@font-face {
    font-family: "SF-UI-Display-Semibold";
    font-style: normal;
    font-weight: normal;
    src: local("SF-UI-Display-Semibold"),
        url("../fonts/sf-ui-display-semibold.woff") format("woff");
}

@font-face {
    font-family: "SF-UI-Display-Bold";
    font-style: normal;
    font-weight: normal;
    src: local("SF-UI-Display-Bold"),
        url("../fonts/sf-ui-display-bold.woff") format("woff");
}

body,
html {
    font-size: 16px;
    line-height: 20px;
    font-family: "SF-UI-Display-Regular";
    letter-spacing: 0.2px;
    background-color: #f7f9fc;
}
body * {
    outline: none;
}
a,
a:focus,
a:hover {
    text-decoration: none;
    outline: 0;
}
a {
    -webkit-transition: all 0.3s ease-in 0s;
    -moz-transition: all 0.3s ease-in 0s;
    -ms-transition: all 0.3s ease-in 0s;
    -o-transition: all 0.3s ease-in 0s;
    transition: all 0.3s ease-in 0s;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: #222b45;
    font-family: "SF-UI-Display-Bold";
}
h1 {
    font-size: 32px;
}
img {
    max-width: 100%;
}
ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

input.form-control::placeholder,
textarea.form-control::placeholder {
    color: #bcc3d1;
    opacity: 1;
}

input.form-control::-ms-input-placeholder,
textarea.form-control::-ms-input-placeholder {
    color: #bcc3d1;
}

.input-wrap {
    position: relative;
}
input.form-control {
    height: 48px;
    border-radius: 12px;
    border: 1px solid #e4e9f2;
    box-shadow: none !important;
    font-family: "SF-UI-Display-Medium";
}
textarea.form-control {
    border-radius: 12px;
    border: 1px solid #e4e9f2;
    box-shadow: none !important;
    font-family: "SF-UI-Display-Medium";
    resize: none;
}
img.input-icon {
    position: absolute;
    top: 12px;
    right: 12px;
}
.input-wrap input.form-control {
    padding-right: 44px;
}

.login-logo {
    margin-bottom: 32px;
}
.login-wrapper {
    background: url(../images/login-bg.jpg);
    background-size: cover;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 16px;
}
.login-form-wrapper {
    background: #fff;
    border-radius: 12px;
    padding: 40px 32px;
    position: relative;
    box-shadow: 0px 3px 10px rgb(34 43 69 / 5%);
    max-width: 440px;
    width: 100%;
}
.copyright-login p {
    margin-bottom: 0;
    margin-top: 24px;
    color: #8f9bb3;
    font-family: "SF-UI-Display-Medium";
    font-size: 14px;
}
.login-header h1 {
    font-size: 32px;
}
.login-header p {
    max-width: 250px;
    color: #8f9bb3;
    font-family: "SF-UI-Display-Medium";
    font-size: 16px;
    margin: 0 auto;
}
.login-btn {
    background: #155d8f;
    color: #fff;
    height: 54px;
    border-radius: 12px;
    position: relative;
    font-family: "SF-UI-Display-Bold";
    text-transform: uppercase;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
    box-shadow: none !important;
}
.login-btn:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 13px;
    background: #155d8f;
    filter: blur(28px);
    bottom: 0;
}
.login-btn:hover {
    background: #000;
    color: #fff;
}
.login-form {
    margin-top: 40px;
}
.form-label {
    color: #222b45;
    font-size: 14px;
    font-family: "SF-UI-Display-Semibold";
    margin-bottom: 4px;
}
.sidebar {
    background: #fff;
    height: 100vh;
    width: 242px;
    box-shadow: 0px 4px 24px rgb(34 43 69 / 4%);
    position: fixed;
    overflow-y: auto;
    padding: 16px;
    padding-bottom: 60px;
}
.dashbaord-wrapper {
    display: flex;
}
.dashboard-content-wrapper {
    width: calc(100% - 242px);
    position: relative;
    margin-left: 242px;
}
.sidebar-logo {
    border-bottom: 2px solid #e4e9f2;
    padding-bottom: 16px;
    margin-bottom: 16px;
    text-align: center;
}
.sidebar-logo img {
    max-height: 130px;
    margin: 0 auto;
}
ul.menu-list li {
    margin-bottom: 8px;
    position: relative;
}
ul.menu-list li a {
    background: rgb(21 93 143 / 8%);
    display: block;
    border-radius: 12px;
    padding: 16px;
    color: #155d8f;
    font-family: "SF-UI-Display-Semibold";
}
ul.menu-list li.active a {
    background: rgb(21 93 143 / 100%);
    color: #fff;
}
.logout-option {
    position: fixed;
    bottom: 0;
    border-top: 1px solid #e4e9f2;
    width: 242px;
    left: 0;
    padding: 0px;
    right: 0;
    background: #fff;
}
.logout-option a {
    color: rgb(34 43 69 / 60%);
    font-size: 18px;
    font-family: "SF-UI-Display-Medium";
    display: flex;
    align-items: center;
    padding: 16px;
}
.logout-option a img {
    margin-right: 8px;
}
.logout-option a:hover {
    color: #155d8f;
}
.logout-option a:hover svg path {
    fill: #155d8f;
    stroke: #155d8f;
}
.dash-inner-wrap {
    position: relative;
    padding: 24px 16px;
}
.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.custom-btn {
    border-radius: 12px;
    padding: 8px 16px;
    background: #155d8f;
    font-family: "SF-UI-Display-Semibold";
    color: #fff;
    font-size: 16px;
    border: 1px solid #155d8f;
    transition: all 0.3s;
    box-shadow: none !important;
}
.custom-btn:hover {
    background: #000;
}
.custom-btn-outline {
    border-radius: 12px;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #e4e9f2;
    font-family: "SF-UI-Display-Semibold";
    color: #8f9bb3;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: none !important;
}
.custom-btn-outline:hover {
    opacity: 0.7;
}
.modal-header {
    background: rgb(21 93 143 / 8%);
    border-bottom: 1px solid rgb(21 93 143 / 16%);
}
.modal-header h4 {
    font-size: 20px;
    color: #155d8f;
    line-height: 1.3;
    font-family: "SF-UI-Display-Bold";
}
.modal-header .close {
    padding: 0;
    margin: 0;
    outline: 0;
}
.modal-content {
    border: 0;
    border-radius: 12px;
}
.modal-dialog {
    max-width: 488px;
}
.modal-footer button {
    min-width: 110px;
    border-radius: 6px;
}
.upload-photo label {
    background: rgb(21 93 143 / 4%);
    width: 100%;
    border: 1px dashed rgb(21 93 143 / 16%);
    border-radius: 12px;
    text-align: center;
    padding: 16px;
    cursor: pointer;
    margin: 0;
}
.upload-photo label p {
    margin-bottom: 0;
    color: #155d8f;
    margin-top: 4px;
    font-family: "SF-UI-Display-Medium";
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 0;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.switch .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.switch input:checked + .slider {
    background-color: #222b45;
}

.switch input:focus + .slider {
    box-shadow: 0 0 1px #2196f3;
}

.switch input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.switch .slider.round {
    border-radius: 34px;
}

.switch .slider.round:before {
    border-radius: 50%;
}

.driver-profile-image {
    border: 1px solid #e4e9f2;
    border-radius: 6px;
    margin-right: 8px;
}
.table thead {
    background: rgb(21 93 143 / 4%);
}
.table {
    background: #e4e9f2 !important;
    border: 1px solid #e4e9f2 !important;
    border-radius: 12px;
    overflow: hidden;
}
.table td,
.table th {
    vertical-align: middle;
    border-top: 1px solid #e4e9f2;
}
.table thead th {
    color: #155d8f;
    font-size: 16px;
    font-family: "SF-UI-Display-Semibold";
    border-bottom-width: 1px;
    padding-top: 18px;
    padding-bottom: 18px;
}
.table-responsive div.dt-container div.dt-layout-table > div {
    padding: 0;
}
.table-responsive div.dt-container div.dt-info {
    white-space: nowrap;
    margin-left: -15px;
    color: #222b45;
    font-size: 14px;
    margin-top: 16px;
}
.table-responsive div.dt-container div.dt-paging {
    margin: 0;
    margin-right: -15px;
    margin-top: 16px;
}
.table-responsive span.dt-column-order {
    position: relative !important;
    margin-left: 8px;
    right: 0 !important;
}
tr.disable-driver {
    background: #f9f9f9 !important;
    opacity: 0.6;
}
table.dataTable.table > tbody > tr {
    background-color: #fff;
}
table.dataTable thead > tr > th.dt-orderable-asc:hover,
table.dataTable thead > tr > th.dt-orderable-desc:hover,
table.dataTable thead > tr > td.dt-orderable-asc:hover,
table.dataTable thead > tr > td.dt-orderable-desc:hover {
    outline: none;
    outline-offset: 0;
}
.page-link {
    color: #155d8f;
}
.page-item.active .page-link {
    background-color: #155d8f;
    border-color: #155d8f;
}

.jobs-page-content {
    position: relative;
    display: flex;
}
.jobs-list-panel {
    width: 320px;
    background: #fff;
    height: 100vh;
    border-left: 1px solid #e4e9f2;
    border-right: 1px solid #e4e9f2;
    position: relative;
    margin-left: 4px;
}
.jobs-detail-content {
    background: #fff;
    width: calc(100% - 324px);
    margin: 8px;
    border-radius: 12px;
    padding: 16px;
    height: calc(100vh - 16px);
    overflow-y: auto;
}
.search-box {
    padding: 8px;
    position: relative;
}
.job-tabs .nav-tabs {
    border-bottom: 1px solid #e4e9f2;
}
.job-tabs .nav-tabs li {
    width: 50%;
    text-align: center;
}
.job-tabs .nav-tabs .nav-link {
    border: 0;
    color: #acb1c0;
    text-transform: uppercase;
    font-family: "SF-UI-Display-Bold";
    font-size: 15px;
    border-radius: 0;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.job-tabs .nav-tabs .nav-item {
    margin-bottom: 0;
}
.job-tabs .nav-tabs .nav-item.show .nav-link,
.job-tabs .nav-tabs .nav-link.active {
    color: #155d8f;
}
ul.job-list li {
    padding: 8px 12px;
    border-bottom: 2px solid #e4e9f2;
    cursor: pointer;
}
.job-tabs .nav-tabs .nav-link:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    background: #155d8f;
    height: 3px;
    width: 100%;
    opacity: 0;
}
.job-tabs .nav-tabs .nav-link.active:before {
    opacity: 1;
}
.job-list-bio h3 {
    font-size: 16px;
    font-family: "SF-UI-Display-Semibold";
    margin: 0;
}
.job-list-bio p {
    margin: 0;
    color: #acb1c0;
    font-size: 13px;
    font-family: "SF-UI-Display-Medium";
}
.job-list-status span {
    border-radius: 12px;
    color: #155d8f;
    font-size: 12px;
    font-family: "SF-UI-Display-Semibold";
    background: rgb(21 93 143 / 4%);
    border: 1px solid rgb(21 93 143 / 60%);
    display: inline-block;
    padding: 1px 6px;
    cursor: default;
    text-transform: capitalize;
}
.job-list-header {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
.job-list-bio {
    width: calc(100% - 100px);
}
.job-list-status {
    min-width: 100px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}
.job-list-address p {
    font-size: 13px;
    font-family: "SF-UI-Display-Medium";
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.job-list-address {
    position: relative;
    padding-left: 12px;
}
.job-list-address:before {
    content: "";
    position: absolute;
    left: 1px;
    top: 12px;
    /*    border: 2px dashed #222B45;*/
    background: url(../images/line-graphic.svg);
    height: calc(100% - 24px);
    width: 2px;
    background-repeat: no-repeat;
    background-size: contain;
}
.pickup-address {
    margin-bottom: 10px;
    position: relative;
}
.pickup-address:before {
    content: "";
    background: #155d8f;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    position: absolute;
    left: -15px;
    top: 5px;
}
.dropoff-address {
    position: relative;
}
.dropoff-address:before {
    content: "";
    background: #1b1818;
    height: 10px;
    width: 10px;
    position: absolute;
    left: -15px;
    top: 5px;
}
ul.job-list {
    height: calc(100vh - 113px);
    overflow-y: auto;
}
ul.job-list::-webkit-scrollbar,
.sidebar::-webkit-scrollbar {
    width: 4px; /* width of the entire scrollbar */
}

ul.job-list::-webkit-scrollbar-track,
.sidebar::-webkit-scrollbar-track {
    background: transparent; /* color of the tracking area */
}

ul.job-list::-webkit-scrollbar-thumb,
.sidebar::-webkit-scrollbar-thumb {
    background-color: rgb(21 93 143 / 16%); /* color of the scroll thumb */
    border-radius: 20px; /* roundness of the scroll thumb */
}
ul.job-list li:hover {
    background: rgb(21 93 143 / 4%);
}
ul.job-list li.active-job {
    background: rgb(21 93 143 / 8%);
}
.jobs-detail-content h3 {
    font-size: 20px;
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}
.what-are-we-moving p {
    color: #8f9bb3;
    font-size: 16px;
    line-height: 24px;
    font-family: "SF-UI-Display-Medium";
    letter-spacing: 0.2px;
}
.what-are-we-moving p:last-child {
    margin-bottom: 0;
}
.table.estimated-table tfoot {
    background: rgb(21 93 143 / 8%);
}
.table.estimated-table {
    margin: 0;
}
.table.estimated-table tr td {
    font-family: "SF-UI-Display-Medium";
    font-size: 15px;
    background: #fff;
    padding: 13px;
}
table.table.estimated-table tr td strong {
    font-family: "SF-UI-Display-Medium";
    font-weight: normal;
}
table.table.estimated-table tr td strong span {
    color: #8f9bb3;
}
.estimated-table .form-control.adjustment-tb-field {
    height: 58px;
    border-radius: 0;
    resize: none;
    box-shadow: none;
    padding: 17px 12px;
    border: 0;
}
.estimated-table textarea.form-control.adjustment-tb-field {
    border-right: 1px solid #ced4da;
}
.table.estimated-table tfoot td {
    background: rgb(21 93 143 / 8%);
    color: #155d8f;
    font-size: 18px;
    font-family: "SF-UI-Display-Bold" !important;
}
/* Chrome, Safari, Edge, Opera */
.estimated-table
    input.form-control.adjustment-tb-field::-webkit-outer-spin-button,
.estimated-table
    input.form-control.adjustment-tb-field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
.estimated-table input.form-control.adjustment-tb-field[type="number"] {
    -moz-appearance: textfield;
}

.admin-notes,
.pictures,
.what-are-we-moving,
.job-detail-header,
.job-location-wrapper,
.rating-reviews {
    border-bottom: 1px solid #e4e9f2;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.customer-bio-detail h2 {
    font-size: 18px;
    margin-bottom: 4px;
}
.customer-bio-detail {
    margin-left: 12px;
}
.customer-bio-detail p {
    margin: 0;
    color: #8f9bb3;
    font-family: "SF-UI-Display-Medium";
    font-size: 14px;
}
.customer-profile img {
    border: 1px solid #e4e9f2;
    border-radius: 6px;
}
.job-detail-status .slectbox {
    border-radius: 12px;
    color: #155d8f;
    font-size: 14px;
    font-family: "SF-UI-Display-Semibold";
    background: rgb(21 93 143 / 4%);
    border: 1px solid rgb(21 93 143 / 60%);
    display: inline-block;
    padding: 7px 8px;
    cursor: pointer;
    text-transform: capitalize;
}
.assign-driver select {
    border-radius: 12px;
    border: 1px solid #e4e9f2;
    box-shadow: none !important;
    font-family: "SF-UI-Display-Medium";
    color: rgb(143 155 179 / 60%);
    height: 44px !important;
    min-width: 180px;
    text-align: left;
}
.assign-driver label {
    text-align: right;
    display: block;
    font-size: 15px;
    font-family: "SF-UI-Display-Semibold";
    margin-bottom: 8px;
}
.location-date-time p {
    margin: 0;
    color: #acb1c0;
    font-size: 15px;
    font-family: "SF-UI-Display-Medium";
}
.movers {
    border-radius: 12px;
    color: #155d8f;
    font-size: 16px;
    font-family: "SF-UI-Display-Semibold";
    background: rgb(21 93 143 / 4%);
    border: 1px solid rgb(21 93 143 / 60%);
    display: inline-block;
    padding: 5px 6px;
    cursor: default;
    text-transform: capitalize;
    margin-left: 12px;
}
.job-location label {
    color: rgb(143 155 179 / 60%);
    font-size: 14px;
    margin-bottom: 4px;
}
.job-location p {
    font-size: 16px;
    font-family: "SF-UI-Display-Medium";
    margin: 0;
    letter-spacing: 0.3px;
}
.job-location {
    position: relative;
}
.pickup-location {
    margin-bottom: 20px;
    position: relative;
    padding-left: 36px;
}
.dropoff-location {
    position: relative;
    padding-left: 36px;
}
.job-location:before {
    content: "";
    position: absolute;
    left: 11px;
    top: 15px;
    border: 1px dashed rgb(143 155 179 / 40%);
    height: calc(100% - 30px);
}
.pickup-location:before {
    content: "";
    background: url(../images/pickup.svg);
    position: absolute;
    left: 0;
    top: 5px;
    height: 24px;
    width: 24px;
    background-color: #fff;
    background-size: contain;
    background-repeat: no-repeat;
}
.dropoff-location:before {
    content: "";
    background: url(../images/drop-off.svg);
    height: 24px;
    width: 24px;
    position: absolute;
    left: 0;
    top: 5px;
    background-color: #fff;
    background-size: contain;
    background-repeat: no-repeat;
}
.location-date-time {
    margin-bottom: 8px;
    position: relative;
}
.job-list-status.cancelled-status span {
    color: #ff0004;
    background: rgb(255 0 4 / 4%);
    border-color: rgb(255 0 4 / 60%);
}
.job-list-status.completed-status span {
    color: #11b50c;
    background: rgb(17 181 12 / 4%);
    border-color: rgb(17 181 12 / 60%);
}
.job-status span {
    border-radius: 12px;
    font-size: 14px;
    font-family: "SF-UI-Display-Semibold";
    display: inline-block;
    padding: 5px 8px;
    cursor: default;
    border: 1px solid;
    text-transform: capitalize;
}
.job-status.cancelled-status span {
    color: #ff0004;
    background: rgb(255 0 4 / 4%);
    border-color: rgb(255 0 4 / 60%);
}
.job-status.completed-status span {
    color: #11b50c;
    background: rgb(17 181 12 / 4%);
    border-color: rgb(17 181 12 / 60%);
}
.admin-notes p {
    color: #8f9bb3;
    font-size: 16px;
    line-height: 24px;
    font-family: "SF-UI-Display-Medium";
    letter-spacing: 0.2px;
}
.admin-notes p:last-child {
    margin-bottom: 0;
}
.paid-label-status {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;
}
.invoice-table {
    position: relative;
}
.rating-reviews p {
    color: #8f9bb3;
    font-size: 16px;
    line-height: 24px;
    font-family: "SF-UI-Display-Medium";
    letter-spacing: 0.2px;
    margin: 0;
}
.driver-tip {
    background: rgb(21 93 143 / 8%);
    padding: 5px 8px;
    color: #155d8f;
    font-size: 16px;
    font-family: "SF-UI-Display-Semibold";
    border-radius: 6px;
    margin-left: 8px;
}
.driver-tip strong {
    font-weight: normal;
    font-family: "SF-UI-Display-Bold";
}

.gallery {
    display: flex;
    gap: 6px;
}

.gallery a {
    width: 25%;
}
.gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
}
.gallery-overlay {
    position: relative;
    background: #000;
    border-radius: 8px;
    width: 25%;
}
.gallery-overlay img {
    opacity: 0.4;
}
.gallery-overlay::after {
    content: "+ More";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-family: "SF-UI-Display-Bold";
}

.download-csv {
    background: #155d8f;
    text-align: center;
    color: #fff;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "SF-UI-Display-Bold";
    letter-spacing: 0.3px;
    transition: all 0.3s;
}
.download-csv img {
    margin-right: 8px;
}
.download-csv:hover {
    background: #000;
}
.input-icon {
    cursor: pointer;
}

.alert {
    margin-top: 20px;
}
.custom-spinner {
    width: 3rem;
    height: 3rem;
    border: 4px solid rgba(255, 255, 255, .3);
    border-top: 4px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}