

:root {
    --dodoo-grey: #ECF1FA;
    --dodoo-highlight: #36778e;
    --dodoo-highlight-blue: #4a75b9;
    --dodoo-focus-bg: #208890;
    --dodoo-focus-bg-hover: #20889040;
    --dodoo-blue: #00ffff;
    --dodoo-btn-primary-bg: #1A2B3C;
    --dodoo-btn-primary-hover: #1A2B3C;
    --dodoo-btn-red-bg: #F94144;
    --dodoo-btn-red-hover: #F94144;
    --dodoo-btn-green-bg: #00D00D;
    --dodoo-btn-green-hover: #00D00D;
    --dodoo-tab-wrapper-bg: #208890;
    --dodoo-tab-wrapper-hover: #2f6e77;
    --dodoo-tab-active: #4A75B9;
    --dodoo-jobtype-dropoff: #1877F2;
    --dodoo-jobtype-dropoff-bg: #E8F1FE;
    --dodoo-jobtype-pickup: #F56E00;
    --dodoo-jobtype-pickup-bg: #FFF4DA;
    --dodoo-jobtype-transit: #48CAE4;
    --dodoo-jobtype-transit-bg: #EDFAFC;
    --dodoo-th-bg: #EDF1F9;
    --dodoo-th-border: #D3D7E3;
}

input:focus, input.form-control:focus,
select:focus, select.form-control:focus,
textarea:focus, textarea.form-control:focus,
button:focus, button.form-control:focus {
    outline: none;
    border-color: #ccc;
    box-shadow: none;
}

* {
    box-sizing: border-box;
}

:root {
    --kt-orange: #FF8800;
}

:root {
    --dodoo-blue: #00ffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #000;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    margin: 0;
}

app {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: 0px;
    overflow: hidden;
    display: block;
}

main-content {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: 0px;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    -moz-overflow-scrolling: touch;
    display: block;
    transition: transform 1s, opacity 1s;
}

content {
    position: initial;
    min-height: 500px;
    height: auto;
    display: block;
    margin-left: 15px;
    margin-right: 15px;
}

.main-container {
    width: 1200px;
    height: auto;
    position: relative;
    margin: -280px auto 0 auto;
}

.kt-login-form {
    width: auto; 
    max-width: 420px;
    margin: 350px auto 50px 0;
    color: #2A3F54;
    background-color: #FFF;
    position: relative;
    border: 0;
    padding: 0;
    font-weight: bold;
}

footer {
    margin: 50px auto;
    padding-top: 50px;
    font-size: 0.9em;
    color: #aaa;
    display: block;
    text-align: center;
    border-top: 1px solid #ccc;
    display: block;
}

/* ====================================== TABLE ====================================== */

table {

}
table td {
    white-space: normal;
}
table ul {
    padding-left: 12px;
}

/* ====================================== FORM INPUT ====================================== */

input::placeholder {
    color: rgba(153, 153,153,0.8) !important;
}
input::-webkit-input-placeholder {
    color: rgba(153, 153,153,0.8) !important;
}
input:-moz-placeholder {
    color: rgba(153, 153,153,0.8) !important;
}
input::-moz-placeholder {
    color: rgba(153, 153,153,0.8) !important;
}
input:-ms-input-placeholder {  
    color: rgba(153, 153,153,0.8) !important; 
}

.dodoo-btn {
    background-color: #e1e1e1;
    color: #666;
    font-size: 15px;
    font-weight: normal;
    border: 0;
    margin-bottom: 12px;
    padding-top: 5px;
    width: 100%;
    max-width: 200px;
    cursor: pointer;
    padding: 15px 20px;
    /*border-bottom: 4px solid #ccc;*/
    /*line-height: 40px;*/
}
.dodoo-btn:hover, .dodoo-btn:active {
    border-bottom-width: 4px;
}
.btn-delete, .btn-edit, .btn-view {
    height: 30px;
    cursor: pointer;
}
.btn-submit, .btn-save {
    color: #FFF;
    background-color: #00d50a;
}


.dodoo-btn:disabled {
    background-color: #999;
    border-bottom: 4px solid #666;
    cursor: default;
}
.dodoo-search {
    border: 1px solid #ccc;
    transition: border-color 0.2s;
    width: 100%;
}
.dodoo-search .magnifier {
    padding: 12px 5px;
    position: absolute;
    line-height: 12px;
}
.dodoo-search i.fa {
    padding: 0 12px;
    font-size: 16px;
    color: #999;
}
.dodoo-search input.search-input {
    border: 0;
    padding: 8px 12px;
    font-size: 16px;
    width: 100%;
    padding-left: 45px;
}

input.dodoo-input, textarea.dodoo-input {
    width: 100%;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: normal;
    color: #000;
    width: 100%;
    background-color: #FFFFFF;
    border: 1px solid #ccc;
    text-align: left;
    transition: border-color 0.2s;
    -webkit-transition: border-color 0.2s;
    -moz-transition: border-color 0.2s;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -o-border-radius: 0px;
    box-shadow: none;
    -webkit-appearance: none;
}
input.dodoo-input.input-sm {
    padding: 7px 15px;
}
input.dodoo-input:focus {
    border: 1px solid #999;
}
input.dodoo-input:disabled, textarea.dodoo-input:disabled {
    border: 1px solid #ccc;
    cursor: not-allowed;
}
input.kt-input:focus {
    border: 1px solid #999;
}
input.kt-input:disabled, textarea.dodoo-input:disabled {
    border: 1px solid #ccc;
    cursor: not-allowed;
}
label {
    font-weight: bold;
    font-size: 14px;
}
ul.list-unstyled {
    width: 100%;
}
span.total-rating {
    float: right;
}
ul.list-unstyled li p {
    margin-top: 0px;
}

.checkbox {
    padding-top:10px;
}
.checkbox label:after {
  content: '';
  display: table;
  clear: both;
}
.checkbox .cr {
  position: relative;
  display: inline-block;
  border: 2px solid #999;
  width: 1.5em;
  height: 1.5em;
  float: left;
  margin-right: .5em;
  background-color: #fff;
}
.checkbox .cr .cr-icon {
  position: absolute;
  font-size: 1.2em;
  line-height: 0;
  top: 50%;
  left: 0%;
}
.checkbox label input[type="checkbox"] {
  display: none;
}
.checkbox label input[type="checkbox"]+.cr>.cr-icon {
  opacity: 0;
}
.checkbox label input[type="checkbox"]:checked+.cr>.cr-icon {
  opacity: 1;
}
.checkbox label input[type="checkbox"]:disabled+.cr {
  opacity: .5;
}

a.chosen-single {
    height: 44px;
    padding: 5px 10px;
}
.profile-dropdown {
    box-shadow: 0 5px 10px 0 rgba(0,0,0,0.2);
    background-color: #FFFFFF;
    position: absolute;
    margin-top: 60px;
    right: 0px;
    z-index: 10;
    text-align: left;
    min-width: 280px;
}
img.kt-triangle {
    position: absolute;
    margin: -24px 0 0 155px;
}
ul.dropdown-link {
    list-style: none;
    padding: 0px;
    margin-top: 5px;
    margin-bottom: 5px;
}
ul.dropdown-link li {

}
ul.dropdown-link li a {
    font-size: 14px;
    color: #666;
    padding: 15px 25px;
    display: block;
    transition: background-color 0.2s;
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
}
ul.dropdown-link li a i.icon {
    color: var(--kt-orange);
    font-size: 1.6em;display: inline-block;
    margin-right: 10px;
}
ul.dropdown-link li a i.fa-chevron-down {
    color: #aaa;
    font-size: 1.2em;
    display: inline-block;
    float: right;
    line-height: 25px;
}
li.toggle-setting a i.fa-chevron-up {
    color: #aaa;
    font-size: 1.2em;
    display: none;
    float: right;
    line-height: 25px;
}
ul.dropdown-link li a:hover {
    background-color: #e1e1e1;
}
.modal .dodoo-btn {
    max-width: 180px;
}
ul.dropdown-link-child {
    padding-left: 0;
    background-color: #f1f1f1;
    height: 0px;
    overflow: hidden;
}
li.toggle-setting.open a i.fa-chevron-down {
    display: none;
}
li.toggle-setting.open a i.fa-chevron-up {
    display: inline;
}
li.toggle-setting.open ul.dropdown-link-child {
    height: auto;
}
ul.dropdown-link-child li a:hover {
    background-color: #d5d5d5;
}
/*.show {
    display: block;
}*/

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    background-color: #ffc107;
    border-radius: 10px;
}
.setting-plan {
    border: solid 1px #ccc; 
    padding:15px;
    margin-bottom: 15px;
}
ul.plan-list {
  list-style-type: none;
  padding-left: 0px;
}
ul.plan-list .fa-check, .plan-desc .fa-check {
    color: #00d00d;
    margin-right: 10px;
}
.plan-desc .fa-times {
    color: red;
    margin-right: 10px;
}
ul.plan-list li {
    line-height: 25px;
}
.user-info {
    color: #333;
}



/* ====================================== AUTO COMPLETE ====================================== */
.auto-complete {
    position: absolute;
    background-color: #FFF;
    border: 1px solid #ccc;
    z-index: 100;
    margin-top: -1px;
    box-shadow: 0px 10px 14px 1px #00000035;
    color: #293e56;
    height: auto;
    max-height: 300px;
    overflow-x: auto;
}
.auto-complete ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0px;
}
.auto-complete ul li {
    padding: 10px 15px;
}
.auto-complete ul li:hover, .auto-complete ul li:focus, .auto-complete ul li.selected {
    background-color: #e5ebf1;
    cursor: pointer;
}
.auto-complete ul li.disabled {
    background-color: #eee;
    cursor: not-allowed;
    color: #666;
}
.auto-complete ul li .auto-complete-small {
    font-size: 0.8em;
    color: #aaa;
}

.cust-border {
    border-bottom: 2px solid rgba(0,0,0,0.3);
    margin-top: 10px;
    margin-bottom: 10px;
}



/* ====================================== dodoo SWITCH ====================================== */
.dodoo-switch {
    padding: 5px 10px;
    cursor: pointer;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}
.dodoo-switch.disabled {
    cursor: not-allowed;
}
.dodoo-switch .switch-track {
    width: 40px;
    height: 15px;
    background-color: #c7c7c7;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    transition: background-color 0.2s;
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
    -o-transition: background-color 0.2s;
}
.dodoo-switch .switch-knob {
    width: 20px;
    height: 20px;
    background-color: #F1F1F1;
    margin-top: -17px;
    margin-left: 0px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    box-shadow: 0px 0px 2px 2px #00000035;
    transition: margin-left 0.2s, background-color 0.2s;
    -webkit-transition: margin-left 0.2s, background-color 0.2s;
    -moz-transition: margin-left 0.2s, background-color 0.2s;
    -o-transition: margin-left 0.2s, background-color 0.2s;
}
.dodoo-switch.on .switch-track {
    background-color: #9ad2cd;
}
.dodoo-switch.on .switch-knob {
    background-color: #009688;
    margin-left: 20px;
}
/* ====================================== dodoo SWITCH 2 ====================================== */
.dodoo-switch-2 {
    display: inline-block;
    padding: 0;
    cursor: pointer;
    position: relative;
    background-color: rgba(0,0,0,0.3);
    margin-bottom: 10px;
    overflow: hidden;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
}
.dodoo-switch-2-indicator {
    background-color: #2454fc;
    position: absolute;
    height: 100%;
    width: 50%;
    z-index: 1;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    transition: margin-left 0.2s;
    -webkit-transition: margin-left 0.2s;
    -moz-transition: margin-left 0.2s;
    -o-transition: margin-left 0.2s;
}
.dodoo-switch-2-option {
    display: inline-block;
    position: relative;
    color: #fff;
    line-height: 30px;
    padding: 0 20px;
    z-index: 2;
    user-select: none;
}
.dodoo-switch-2.selected-1 .dodoo-switch-2-option:nth-child(2) {
    color: #FFF;
}
.dodoo-switch-2.selected-1 .dodoo-switch-2-indicator {
    margin-left: 0px;
}
.dodoo-switch-2.selected-2 .dodoo-switch-2-option:nth-child(3) {
    color: #FFF;
}
.dodoo-switch-2.selected-2 .dodoo-switch-2-indicator {
    margin-left: 50%;
}

/* ====================================== dodoo SWITCH 3 ====================================== */
.dodoo-switch-3 {
    display: inline-block;
    width: 500px;
    padding: 0;
    cursor: pointer;
    position: relative;
    background-color: #ccc;
    overflow: hidden;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    box-shadow: inset 0 0 10px #00000077;
}
.dodoo-switch-3-indicator {
    background-color: var(--dodoo-blue);
    position: absolute;
    height: 100%;
    width: 33.33%;
    z-index: 1;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
    transition: margin-left 0.2s;
    -webkit-transition: margin-left 0.2s;
    -moz-transition: margin-left 0.2s;
    -o-transition: margin-left 0.2s;
}
.dodoo-switch-3-option {
    display: inline-block;
    position: relative;
    width: 32%;
    color: #FFF;
    line-height: 30px;
    padding: 0 20px;
    z-index: 2;
    user-select: none;
    text-shadow: 0 0 2px #00000087;
    font-weight: bold;
}
.dodoo-switch-3.selected-1 .dodoo-switch-3-option:nth-child(2) {
    color: #FFF;
}
.dodoo-switch-3.selected-1 .dodoo-switch-3-indicator {
    margin-left: 0px;
}
.dodoo-switch-3.selected-2 .dodoo-switch-3-option:nth-child(3) {
    color: #FFF;
}
.dodoo-switch-3.selected-2 .dodoo-switch-3-indicator {
    margin-left: 33.33%;
}
.dodoo-switch-3.selected-3 .dodoo-switch-3-indicator {
    margin-left: 66.66%;
}
.dodoo-switch-3.penang-bg .dodoo-switch-3-indicator {
    background-color: var(--kt-blue);
}


/* ====================================== dodoo TIMEPICKER ====================================== */
div.dodoo-timepicker {
    position: absolute;
    width: auto;
    max-height: 250px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    display: none;
    background-color: #FFFFFF;
    box-shadow: 0px 10px 12px 1px #00000035;
    overflow-x: auto;
    z-index: 1000;
    -webkit-overflow-scrolling: touch;
}
div.dodoo-timepicker ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
div.dodoo-timepicker ul li {
    padding: 0;
    padding-left: 15px;
    line-height: 34px;
    cursor: pointer;
    font-size: 1em;
}
div.dodoo-timepicker ul li.selected, div.dodoo-timepicker ul li:focus, div.dodoo-timepicker ul li.touchstart, div.dodoo-timepicker ul li:hover {
    background-color: #e5ebf1;
    outline: none;
}
div.dodoo-timepicker.open {
    display: block;
}

/* ====================================== dodoo SELECT ====================================== */
select {
    display: none;
}
div.dodoo-select {
    position: relative;
    user-select: none;
    text-align: left;
}
button.dodoo-select-btn {
    padding: 0 30px 0 20px;
    line-height: 42px;
    font-size: 15px;
    font-weight: normal;
    width: 100%;
    border: 1px solid #ccc;
    text-align: left;
    display: block;
    position: relative;
    cursor: pointer;
    background-color: #FFF;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    transition: background-color 0.2s;
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
}
button.dodoo-select-btn:hover, button.dodoo-select-btn:active {
    background-color: #F1F1F1;
    border: 1px solid #aaa;
}
button.dodoo-select-btn.disabled, button.dodoo-select-btn:disabled {
    background-color: #F5F5F5 !important;
    border: 1px solid #CCC;
    color: #999;
    cursor: not-allowed;
}
button.dodoo-select-btn.disabled:hover {
    background-color: #F5F5F5;
    border: 1px solid #CCC;
    color: #999;
}
button.dodoo-select-btn i.fa.fa-chevron-down, button.dodoo-select-btn i.fa.fa-chevron-up {
    position: absolute;
    right: 15px;
    line-height: inherit;
    color: #aaa;
}
button.dodoo-select-btn.disabled i.fa.fa-chevron-down, button.dodoo-select-btn.disabled i.fa.fa-chevron-up {
    color: #bbb;
}
button.dodoo-select-btn i.fa.fa-chevron-up {
    display: none;
}
div.dodoo-select-opt-wrapper {
    position: absolute;
    width: auto;
    max-height: 300px;
    right: 0px;
    left: 0px;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    display: none;
    background-color: #FFFFFF;
    box-shadow: 0px 10px 12px 1px #00000035;
    overflow-x: auto;
    z-index: 10;
    -webkit-overflow-scrolling: touch;
}
ul.dodoo-select-opt {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
ul.dodoo-select-opt li i.fa.fa-check {
    position: absolute;
    font-size: 15px;
    margin-top: : 5px;
    color: #aaa;
    right: -25px;
}
ul.dodoo-select-opt li {
    padding: 0 20px;
    line-height: 38px;
    display: list-item;
    user-select: none;
    font-size: inherit;
    font-weight: normal;
    color: #555;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
ul.dodoo-select-opt li:hover, ul.dodoo-select-opt li:focus, ul.dodoo-select-opt li.touchstart, ul.dodoo-select-opt li:active, ul.dodoo-select-opt li.selected {
    background-color: #e5ebf1;
    outline: none;
}
ul.dodoo-select-opt li.selected {
    cursor: default;
}
ul.dodoo-select-opt.multiple li.selected {
    background-color: #F1F1F1;
    font-weight: bold;
    cursor: pointer;
}
ul.dodoo-select-opt li.selected i.fa.fa-check {
    right: 15px;
    line-height: inherit;
}
ul.dodoo-select-opt li.disabled {
    background-color: #F9F9F9;
    color: #ccc;
    cursor: not-allowed;
}
div.dodoo-select.open div.dodoo-select-opt-wrapper {
    display: block;
}
div.dodoo-select.open button.dodoo-select-btn i.fa.fa-chevron-up {
    display: inline-block;
}
div.dodoo-select.open button.dodoo-select-btn i.fa.fa-chevron-down {
    display: none;
}
div.dodoo-select.open button.dodoo-select-btn {
    background-color: #F1F1F1;
    border-color: #ccc;
    z-index: 10;
}
.dodoo-select-opt-wrapper .dodoo-input {
    margin: 10px auto;
    padding: 5px 8px;
    width: calc(100% - 24px);
    display: block;
}
.dodoo-select-opt-wrapper .kt-input {
    margin: 10px auto;
    padding: 5px 8px;
    width: 90%;
    display: block;
}
.dodoo-select-opt-wrapper .kt-input:focus {
    padding: 6px 8px;
}



center.form-submit {
    margin: 40px auto 0 auto;
    padding-top: 40px;
    border-top: 1px solid #ccc;
    display: block;
}
center.form-submit .dodoo-btn.btn-cancel, center.form-submit .dodoo-btn.btn-delete {
    margin-right: 20px;
}
center.form-submit .dodoo-btn.btn-submit, center.form-submit .dodoo-btn.btn-save {
    margin-left: 20px;
}

button {
    cursor: pointer;
}


/* ====================================== NAV ====================================== */
div.top-bar .navs ul {
    position: absolute;
}
div.top-bar .navs ul li {
    display: inline-block;
}
div.top-bar .navs ul li a {
    color: #FFF;
    font-weight: bold;
    display: block;
    padding: 20px;
    padding-top: 16px;
    border-top: 4px solid #ffffff00;
    transition: color 0.2s;
    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    -o-transition: color 0.2s;
}
div.top-bar .navs ul li a:hover, div.top-bar .navs ul li a:active {
    color: #00feff;
}
div.top-bar .navs ul li a:hover + div.dropdown-menu.dropdown-nav, div.dropdown-menu.dropdown-nav:hover {
    background-color: #00474f;
    left: 160px;
    margin-top: -1px;
    display: block;
}
div.top-bar .navs ul li a.active {
    color: #00feff;
    border-top: 4px solid #00feff;
}
.child-wrapper {
    height: 0px;
    overflow: hidden;
    transition: height 0.3s;
    -webkit-transition: height 0.3s;
    -moz-transition: height 0.3s;
}
ul.nav-child { 
    padding-left: 0;
}
ul.nav-child li a {
    color:#ccc;
    font-size: 0.9em;
}
/* ====================================== CONTENT ====================================== */
.max-width {
    width: 100%;
}
.no-data {
    padding: 30px;
    margin: 50px auto;
    color: #ccc;
    width: 200px;
    text-align: center;
}
.no-data h1, h3 {
    
}
.no-data h1 {
    font-size: 6em;
}
.no-data h3 {
    font-size: 2em;
}

/* ====================================== DATEPICKER ====================================== */

.datepicker {
    font-size: 0.9em;
}
.datepicker td, .datepicker th {
    width: 35px;
    height: 30px;
}
.datepicker table tr td.disabled {
    background-color: #f1f1f1;
}
.datepicker.dropdown-menu {
    box-shadow: rgb(204, 204, 204) 0px 0px 22px;
}

/* ====================================== DATEPICKER ====================================== */
ul.chosen-results li.disabled-result {
    color: #c1c1c1 !important;
    cursor: not-allowed !important;
}
.chosen-disabled {
    cursor: not-allowed !important;
    opacity: .8 !important;
}
.chosen-container.chosen-container-single.chosen-disabled {
    background-color: #f2f2f2 !important;
}
.chosen-container.chosen-container-single.chosen-disabled .chosen-single {
    background: none;
}
.hide, .no-show {
    display: none;
}
.checkbox label {
    cursor: pointer;
}
p.user-point {
    font-size: 1.8em;
}
.info-grey {
    color: #aaa;
}
.tab-wrapper.tab-sticky {
    position: relative;
    color: #000;
    background-color: var(--dodoo-blue);
    width: 100%;
    overflow-x: auto;
    margin: 60px -15px 0px 60px;
}
.tab-wrapper {
    position: relative;
    background-color: #00ddee;
    font-weight: bold;
    font-size: 20px;
    padding: 0 20px;
    min-height: 50px;
    margin-left: -15px;
    margin-right: -15px;
    z-index: 10;
    color: #fff;
}
.tab-wrapper i {
    color: #fff;
}
.tab-wrapper .tab-title span {
    font-size: 20px;
    font-weight: bold;
    line-height: 50px;
}
.tab-wrapper .tab-content {
    text-align: right;
}
.tab-wrapper .tab {
    /*display: inline-block;*/
    display: table-cell;
    width: auto;
    margin: 2px 5px;
    /*border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;*/
    position: relative;
    border-bottom: 3px;
    border-bottom-style: solid;
    border-bottom-color: #01ffff;
}
.tab-wrapper .tab a {
    padding: 3px 20px;
    line-height: 30px;
    display: block;
    color: #000;
    font-size: 14px;
    font-weight: 500;
}
.tab-wrapper .tab .tab-bubble {
    font-size: 14px;
    position: absolute;
    text-align: center;
    top: -7px;
    right: -14px;
    width: 22px;
    line-height: 22px;
    /*border-radius: 22px;*/
    -webkit-border-radius: 22px;
    z-index: 2;
    background-color: #ffeb00;
    color: #f78a00;
}

.tab-wrapper .tab.active, .tab-wrapper .tab:hover {
    border-bottom: 5px solid #3450e5;
}

.tab-wrapper-decoy {
    position: relative;
    color: #000;
    background-color: var(--dodoo-blue);
    width: 100%;
    height: 39px;
    display: none;
    /*margin: 60px -15px 0px 60px;*/
}

.tab-sticky {
    position: fixed;
    z-index: 10;
}

/*.tab-wrapper.tab-sticky + .tab-wrapper-decoy {
    display: block;
}*/

.daterangepicker {
    box-shadow: 0px 0px 12px #ccc;
}

i.search-remove {
    cursor: pointer;
    position: absolute;
    margin-right: 20px;
    margin-top: 12px;
    right: 0px;
    font-size: 1.2em;
    z-index: 10;
}

.content-header {
    background-color: var(--dodoo-blue);
    padding: 0px 20px;
    position: relative;
    margin: 60px -15px 0 45px;
    z-index: 10;
}

.content-header.detail {
    min-height: 130px;
    padding-bottom: 0px;
}

.tp-header-color {
    min-height: 135px;
    padding: 20px 20px 0 20px;
    background-color: #363946;
    color: #fff;
    margin-left: 60px;
}
.tp-tab .tab-wrapper {
    background-color: #363946;
    overflow-x: auto;
}

.tp-tab .tab-wrapper .tab {
    border-bottom-color: #363946;
}

.tp-tab .tab-wrapper .tab.active {
    border-bottom-color: #01ffff;
}

.tp-tab .tab-wrapper .tab a{
    color: #fff;
}

.sub-tab .tab-wrapper {
    background-color: #f1f0f0;
}

.sub-tab .tab-wrapper .tab {
    border-bottom-color: #f1f0f0;
}

.sub-tab .tab-wrapper .tab.active {
    border-bottom-color: #3450e5;
}

.sub-tab .tab-wrapper .tab a{
    color: #000;
}

.content-wrapper {
/*    margin: 20px 20px 20px 20px;*/
}
.max-width-800 {
    max-width: 800px;
}
.form-wrapper {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}
.form-contact {
    margin-top: 20px;
    background-color: #f1f1f1;
    padding: 20px;
    padding-right: 45px;
    padding-top: 0;
}
.form-contact .dodoo-input, .form-address .dodoo-input {
    background-color: #FFFFFF;
}
.form-contact .btn-del-round {
    width: 20px;
    height: 20px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    color: #FFF;
    background-color: red;
    border: 0;
    position: absolute;
    margin-top: 60px;
    right: 30px;
}
img.img-delete {
    cursor: pointer;
    height: 15px;
    cursor: pointer;
    position: absolute;
    margin-top: -17px;
    margin-left: 45px;
}
.form-contact .btn-del-round i.fa.fa-remove {
    position: absolute;
    margin-left: -5px;
    height: 10px;
    line-height: 0px;
}
.form-address {
    background-color: #f1f1f1;
    padding: 20px;
    padding-top: 0;
}
.form-address a.del_address {
    color: red;
    text-decoration: underline;
    display: block;
    margin-top: 30px;
}

h3.page-title {
    font-size: 22px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
    margin-top: 10px;
}
form label.title {
    font-size: 14px;
    font-weight: bold;
    color: #000;
}
.col-gap {
    margin-top: 20px;
}
.form-error-message {
    color: red;
    font-size: 0.9em;
    display: block;
}
.input-error {
    border-top-color: red !important;
    border-right-color: red !important;
    border-bottom-color: red !important;
    border-left-color: red !important;
}
select {
    display: none;
}

.container-items {
    margin-bottom: 10px;
}
.container-items .col, .container-total .col {
    max-width: 110px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
}
.container-items .form-group {
    margin-bottom: 0;
}
.container-items .dodoo-input {
    padding: 8px 15px;
    text-align: center;
}
i.btn-add-item {
    font-size: 1.5em;
    line-height: 40px;
    cursor: pointer;
}
.container-items .col:first-child, .container-total .col:first-child {
    max-width: 300px;
    text-align: left;
    padding-left: 15px;
}
.container-items .col:first-child .dodoo-input, .container-total .col:first-child .dodoo-input {
    text-align: left;
}

.container-total {
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
    margin-right: 20px;
    margin-left: 0px;
    margin-top: 10px;
}
.container-total label {
    font-size: 1.8em;
    margin-bottom: 0;
    line-height: 60px;
}
.do-doc {
    width: auto;
    height: 120px;
    margin: 20px auto 30px auto;
    text-align: center;
    word-break: break-all;
}
.do-doc img {
    width: auto;
    height: 100px;
    margin-bottom: 15px;
    opacity: 0.6;
    cursor: pointer;
    margin: auto;
    display: block;
}
.table thead th, .table thead td {
    vertical-align: middle;
}
table td .row-name {
    font-size: 1em;
}
table td .row-address {
    font-size: 0.9em;
    color: #666;
}
table td .row-state {
    white-space: normal;
}
.kt-upload {
    width: 30px;
    height: 30px;
}
.profile-search {
    position: absolute;
    margin: 5px;
    width: 30px;
    height: 30px;
    overflow: hidden;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -o-border-radius: 15px;
}
.profile-search img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.staff-pill {
    padding: 7px;
    background-color: #e9e9e9;
    margin: 2px 3px;
    display: inline-block;
    font-size: 0.9em;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -o-border-radius: 5px;
}
.profile-photo {
    width: 80px;
    height: 80px;
    overflow: hidden;
    margin: 15px auto;
    border-radius: 80px;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -o-border-radius: 80px;
}
.profile-photo-2 {
    width: 165px;
    height: 165px;
    overflow: hidden;
    margin: 15px auto;
    border-radius: 80px;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -o-border-radius: 80px;
}
.profile-photo img,
.profile-photo-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pending-indicator {
    position: absolute;
    width: 25px;
    background-color: red;
    color: #FFF;
    padding: 0;
    text-align: center;
    top: 63px;
    right: 217px;
    line-height: 25px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -o-border-radius: 25px;
}
.arrived-indicator {
    position: absolute;
    width: 25px;
    background-color: red;
    color: #FFF;
    padding: 0;
    text-align: center;
    top: 63px;
    right: 130px;
    line-height: 25px;
    border-radius: 25px;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    -o-border-radius: 25px;
}
table.table.bg-penang td span.row-summary {
    color: var(--kt-blue);
}
img.clear_date {
    cursor: pointer;
    position: absolute;
    top: 37px;
    right: -20px;
    opacity: 0.4;
}
img.clear_date:hover {
    opacity: 1;
}

.item-conditions span:not(:last-child):after {
    content: ', ';
    display: inline;
}
#map {
    height: auto;
    position: absolute;
    top: 60px;
    bottom: 0px;
    left: 60px;
    right: 0px;
}
.user-device {
    height: 30px;
}
.dodoo-icon {
    width: 30px;
    height: 30px;
}

/* ====================== J RESPONSIVE - MOBILE || IPAD || DESKTOP - PORTRAIT || LANDSCAPE ==================== */

@media only screen and (max-width: 767px){

}

@media only screen and (min-width: 768px) and (max-width: 991px) {

}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

}

@media only screen and (min-width: 1200px) {

}

/* ====================================== CUSTOM SWITCH ====================================== */

.material-switch > input[type="checkbox"] {
    display: none;   
}

.material-switch > label {
    cursor: pointer;
    height: 0px;
    position: relative; 
    margin-left: 40px;
}

.material-switch > label::before {
    background: rgb(0, 0, 0);
    box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    content: '';
    height: 16px;
    margin-top: -5px;
    margin-left: -47px;
    position:absolute;
    opacity: 0.3;
    transition: all 0.4s ease-in-out;
    width: 40px;
}
.material-switch > label::after {
    background: rgb(255, 255, 255);
    border-radius: 16px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
    content: '';
    height: 24px;
    left: -50px;
    margin-top: -5px;
    position: absolute;
    top: -4px;
    transition: all 0.3s ease-in-out;
    width: 24px;
}
.material-switch > input[type="checkbox"]:checked + label::before {
    background: #9ad2cd;
    opacity: 1;
}
.material-switch > input[type="checkbox"]:checked + label::after {
    background: #009688;
    left: -25px;
}

/* ====================== J CUSTOM CSS ==================== */
.custom-marker {
    color: rgba(0,0,0,0.3);
    margin-left: 15px;
}
.custom-marker span {
    color: #333;
}
.job-ul {
    list-style-type: none;
}
.search-bt {
    color: #fff;
    background-color: #363946;
    font-weight: 500;
    height: 42px;
}
.emergency-bt {
    color: #fff;
    background-color: red;
    font-weight: 500;
    height: 42px;
}
.promo-btn {
    color: #fff;
    background-color: #2454fc;
    font-weight: 500;
    height: 42px;
}
.sm-release-btn {
    color: #fff;
    background-color: #449e17;
    font-weight: 500;
    min-width: auto;
}
.sm-skip-btn {
    color: #fff;
    background-color: #ec9712;
    font-weight: 500;
    min-width: auto;
}
.active-job, .online-cash {
    color: #fff;
    background-color: #1ecf28;
    border-radius: 5px;
    text-align: center;
    padding: 1px;
}
.online-transporter, .online-charge {
    color: #fff;
    background-color: #fd7e13;
    border-radius: 5px;
    text-align: center;
    padding: 1px;
}
.online-commission {
    color: #fff;
    background-color: #1878fe;
    border-radius: 5px;
    text-align: center;
    padding: 1px;
}
.online-expired {
    color: #fff;
    background-color: #4ab7ed;
    border-radius: 5px;
    text-align: center;
    padding: 1px;
}
.total-commission {
    color: #fff;
    background-color: #d14295;
    border-radius: 5px;
    text-align: center;
    padding: 1px;
}
.online-commission h3, .active-job h3, .online-cash h3, .online-transporter h3, .online-charge h3, .online-expired h3, .total-commission h3 {
    margin-top: 5px;
    margin-bottom: 0px;
}
.online-commission p, .active-job p, .online-cash p, .online-transporter p, .online-charge p, .online-expired p, .total-commission p {
    margin-bottom: 5px;
}
.see-breakdown {
    color: #f65893;
    background-color: rgba(0,0,0,0);
    border: 2px solid #f65893;
    border-radius: 5px;
    text-align: center;
    padding: 1px;
    height: 66px;
    cursor: pointer;
}
.repost-history {
    color: #d2a148;
    background-color: rgba(0,0,0,0);
    border: 2px solid #d2a148;
    border-radius: 5px;
    text-align: center;
    padding: 1px;
    height: 66px;
    cursor: pointer;
}
.negotiate-history {
    color: #ffc107;
    background-color: rgba(0,0,0,0);
    border: 2px solid #ffc107;
    border-radius: 5px;
    text-align: center;
    padding: 1px;
    height: 66px;
    cursor: pointer;
}
.breakdown-line {
    border-bottom: solid 1px #ccc;
}
.transporter {
    border: 1px solid #000;
    text-align: center;
    padding: 1px;
}
.transporter h3 {
    margin-top: 15px;
    margin-bottom: 0px;
    font-weight: normal;
}
.dodoo-vehicle {
    width: 60px;
    /*height: 50px;*/
    margin-top: -5px;
}
.pill-online, .pill-active, .pill-approved {
    background-color: #1dcf27;
}
.pill-suspended {
    background-color: #dc3545;
}
.pill-pending {
    background-color: #ffc107;
}
.pill-offline, .pill-expired, .pill-terminated {
    background-color: #444;
}
.pill-user {
    background-color: #0f477a;
}
.pill-agent {
    background-color: #218691;
}
.pill-agent {
    background-color: #218691;
    padding: 2px 6px 2px 6px;
    border-radius: 4px;
    font-size: 10px;
}
.pill-personal {
    background-color: #58c2ce;
    padding: 2px 6px 2px 6px;
    border-radius: 4px;
    font-size: 10px;
}
.pill-tpc {
    background-color: #6c3969;
}
.submit-btn {
    background-color: #1dcf27;
    color: #fff;
    font-weight: 500;
    height: 42px
}
.cancel-btn {
    background-color: red;
    color: #fff;
    font-weight: 500;
    height: 42px
}
.upload-btn {
    background-color: rgba(0,0,0,0);
    color: #3450e5;
    border: 1px solid #3450e5;
    font-weight: 600;
    height: 30px;
    font-size: 13px;
}
.view-tp-info-btn {
    background-color: #3450e5;
    color: #fff;
    font-weight: 500;
    height: 42px
}
.cust-table {
    width: 100%;
}
.dodoo-percent {
    border: 1px solid #ccc;
    transition: border-color 0.2s;
    width: 100%;
    display: flex; 
    justify-content: flex-end
}
.dodoo-percent i.fa {
    padding: 0 12px;
    font-size: 16px;
    color: #999;
}
.dodoo-percent input.search-input {
    border: 0;
    padding: 8px 12px;
    font-size: 16px;
    width: 100%;
}
.dodoo-percent .percent {
    padding: 12px 5px;
    position: absolute;
    line-height: 12px;
}
.turn-off {
    color: red;
    text-decoration: underline;
    cursor: pointer;
}
.id-link {
    color: #2454fc !important;
    font-weight: normal !important;
    cursor: pointer;
}
.dodoo-set-time {
    display: flex; 
    justify-content: flex-end;
}
.set-time {
    position: absolute; 
    padding: 12px 12px;
}
.add-close {
    height: 18px; 
    cursor: pointer;
}
.job-live-header {
    background-color: #49d39c;
    color: #fff;
    padding: 10px;
    position: relative;
    margin: 60px -20px 0px 0px;
}
.job-canceled-header {
    background-color: #aaa;
    color: #fff;
    padding: 10px;
    position: relative;
    margin: 60px -20px 0px 0px;
}
.job-pending-header {
    background-color: #d2a148;
    color: #fff;
    padding: 10px;
    position: relative;
    margin: 60px -20px 0px 0px;
}
.job-expired-header {
    background-color: #444;
    color: #fff;
    padding: 10px;
    position: relative;
    margin: 60px -20px -60px 0px;
}
.job-completed-header {
    background-color: #1dcf27;
    color: #fff;
    padding: 10px;
    position: relative;
    margin: 60px -20px 0px 0px;
}

.tpc-suspended-header {
    background-color: #fd0014;
    color: #fff;
    padding: 10px;
    position: relative;
    margin: -25px -20px 20px -22px;
}
.tpc-pending-header {
    background-color: #d2a148;
    color: #fff;
    padding: 10px;
    position: relative;
    margin: -25px -20px 20px -22px;
}

.issue-reported-header {
    background-color: #fd0014;
    color: #fff;
    padding: 10px;
    position: relative;
    margin: -25px -20px 20px -22px;
}
.job-detail-col {
    border-radius: 5px;
    padding: 0px 10px;
    border: 1px solid #ccc;
}
.job-detail-id {
    font-weight: bold; 
    font-size: 20px;
}
.d-flex {
    display: flex;
}
.font-pending {
    color: rgba(0,0,0,0.3);
}
.no-border-top {
    border-top: 0px solid #000;
}
.id-name {
    font-size: 20px; 
    font-weight: bold;
}
.sample {
    height: 40px;
    width: 40px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}
.track-btn {
    color: #fff; 
    background-color: #3450e5; 
    padding: 10px; 
    font-size: 16px; 
    width: 150px; 
    text-align: center; 
    margin-top: -80px; 
    margin-left: 15px; 
    position: absolute;
    cursor: pointer;
}
.input-grey {
    background-color: #eee !important;
}
.modal-btn-grey {
    color: #fff;
    background-color: #777;
    text-align: center;
    padding: 13px;
    height: 45px;
    cursor: pointer;
}
.modal-btn-green {
    color: #fff;
    background-color: #1dcf27;
    text-align: center;
    padding: 13px;
    height: 45px;
    cursor: pointer;
}
.img-preview {
    width: 100%;
    height: 250px;
    display: table-cell;
}
.img-responsive {
    width: 100%;
    height: auto;
}
.font-20 {
    font-size: 20px;
}
.font-30 {
    font-size: 30px;
}
.font-red {
    color: #fd0014;
    cursor: pointer;
}
.choice {
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
}
.wrong {
    background-color: #fd0014;
    color: #fff;
}
.answer {
    background-color: #1dcf27;
    color: #fff;
}
.header-profile {
    margin-top: -50px;
    display: flex;
    float: right;
}
.header-profile-img {
    width: 50px;
    height: 50px;
    overflow: hidden;
    margin-left: auto;
    border-radius: 80px;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -o-border-radius: 80px;
}
.header-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}
.header-info {
    width: 45px;
    height: 50px;
    overflow: hidden;
    margin-left: auto;
}
.info {
    height: 35px;
    width: 35px;
    background-color: #222;
    border-radius: 50%;
    display: inline-block;;
    margin-top: 8px;
    cursor: pointer;
}
.header-info i {
    margin-left: 14px;
    margin-top: 7px;
    font-size: 22px;
    color: #fff;
}
.header-bell {
    width: 45px;
    height: 50px;
    overflow: hidden;
    margin-left: auto;
}
.bell {
    height: 35px;
    width: 35px;
    background-color: #222;
    border-radius: 50%;
    display: inline-block;;
    margin-top: 8px;
    cursor: pointer;
}
.header-bell i {
    margin-left: 7px;
    margin-top: 7px;
    font-size: 22px;
    color: #fff;
}
.noti-wrapper, .user-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    overflow: hidden;
    outline: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
}
.noti-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 450px;
    height: 100%;
    background-color: #fff;
    margin-left: auto;
    overflow-y: auto;
}
.user-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 250px;
    height: auto;
    background-color: #fff;
    margin-left: auto;
    overflow-y: auto;
    margin-top: 85px;
    margin-right: 16px;
}
.user-card ul {
    padding-left: 0px;
    margin-bottom: 0px;
}
.noti-content {
    padding: 20px 20px 0px 20px;
    text-align: left;
    display: flex;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
}
.noti-content:hover {
    background-color: #ccc;
}
.user-option a {
    color: #333;
}
.user-option {
    text-align: left;
    display: flex;
    border-bottom: 1px solid #ccc;
    cursor: pointer;
    padding: 10px;
}
.user-option:hover {
    background-color: #ccc;
}
.notification-profile-img {
    width: 50px;
    height: 50px;
    overflow: hidden;
    border-radius: 80px;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    -o-border-radius: 80px;
}
.notification-profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}
.notification-desc {
    width: 340px;
    text-align: left;
}
.notification-desc p {
    font-size: 12px;
}
.star {
    font-size: 35px;
    color: #ffc700;
}
.rate-number {
    height: 40px;
    width: 40px;
    background-color: #ffc700;
    color: #fff;
    font-size: 20px;
    line-height: 40px;
    font-weight: bold;
    border-radius: 50%;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}
.chat {
    height: 40px;
    width: 40px;
    background-color: #1dcf27;
    color: #fff;
    font-size: 27px;
    font-weight: bold;
    border-radius: 50%;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
}
.btn-green.btn-modal {
    color: #fff;
    background-color: #1dcf27;
    text-align: center;
    padding: 13px;
    height: 45px;
    width: 100%;
    border-width: 0px;
}
.btn-grey.btn-modal {
    color: #fff;
    background-color: #777;
    text-align: center;
    padding: 13px;
    height: 45px;
    width: 100%;
    border-width: 0px;
}
.map-input, .map-input:focus {
    box-shadow: 5px 5px 5px #888888;
}
.icon {
    font-size: 20px;
    vertical-align: middle;
    color: #333;
    margin-right: 10px;
}
.img-div {
    height: auto;
    max-width: 400px;
}
.btn-faq {
    min-width: 100px;
    font-size: 20px;
    margin-left: 5px;
    margin-right: 5px;
}
.faq-border {
    border-right: 1px solid rgba(0,0,0,0.1);
}
.new-faq {
    color: #000;
}
.new-faq-bg {
    background-color: rgba(0,0,0,0.1);
}
.new-faq-bg.popular {
    background-color: #aff;
}

/****** TOGGLE SWITCH FAQ *******/
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .slider {
  background-color: #2454fc;
}
input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}
input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.slider.round {
  border-radius: 34px;
}
.slider.round:before {
  border-radius: 50%;
}
.img-responsive-dodoo {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.text-basic {
    color: #aaaaaa;
}
.cur-pointer {
    cursor: pointer;
}
.fw-500 {
    font-weight: 500;
}
.h-110 {
    height: 110px;
}


/*===== TIMELINE STEP =====*/
.step-timeline {
    color: #fff;
    width: 300px;
    background: #ccc;
    height: 3px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
}
.timeline-ol {
    position: relative;
    display: block;
    margin-left: 0px;
    height: 3px;
}
.timeline {
    display: inline-block;
    float: left;
    width: 150px;
    height: 3px;
    cursor: pointer;
}
li .point {
    content: "";
    top: -26px;
    font-weight: bold;
    display: block;
    width: 50px;
    height: 50px;
    border: 3px solid #aaa;
    border-radius: 35px;
    background: #aaa;
    position: absolute;
}
.point p {
    margin-top: 5px;
    font-size: 25px;
    margin-left: 15px;
}
.one {
    left: 0%;
}
.two {
    left: 50%;
}
.three {
    left: 100%;
}
.active-step {
    background: #1dcf27 !important;
    border-color: #1dcf27 !important;
}
.current-step {
    border-color: #3450e5 !important;
}
li .diplome {
  position: absolute;
  left: -65px;
  color: #000000;
  font-weight: bold;
  font-size: 15px;
  width: 150px;
  text-align: center;
}
.text-bold {
    font-weight: bold;
}
.border-left {
    border-left: .25rem solid #1c53fc !important;
}
.general-border-left {
    border-left: .25rem solid #00d00d !important;
}
.db-border-left {
    border-left: .25rem solid #ffb400 !important;
}
.shadow {
    box-shadow: 0 .15rem 1.75rem 0 rgba(58,59,69,.15)!important;
}
.center-align {
    width: 100%;
    text-align: center;
}

/**************** JOB DETAIL ITEM IMAGES PREVIEW *******************/

.modal-dialog.modal-item-condition .modal-body {
    padding: 40px;
    position: relative;
}
./*img-preview {
    width: 480px;
    height: auto;
    margin-top: 10px;
    overflow: hidden;
    position: relative;
    background-color: #f1f1f1;
}*/
.img-preview img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.btn-prev, .btn-next {
    width: 40px;
    height: 30px;
    user-select: none;
    cursor: pointer;
    display: inline-block;
    padding: 0;
    border: 0;
}
.item-title {
    color: var(--kt-orange);
    margin-bottom: 0px;
}
.item-detail {
    font-size: 1.8em;
}
.item-detail-normal {
    font-size: 1em;
}
.item-detail-2 {
    font-size: 1.4em;
    margin-bottom: 0px;
}
img.close {
    margin-left: 94%;
    margin-top: -5px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    z-index: 1000;
}
.item-conditions {
    display: inline-block;
    margin-right: 15px;
}
.img-remark {
    text-align: center;
    background-color: #000;
    color: #FFF;
    padding: 10px;
}
.white-fav {
    color: #fff;
    font-size: 17px;
}
.blue-fav {
    color: #1853ef !important;
    font-size: 17px;
}
.status-div-blue {
    background-color: #1853ef; 
    height: 35px; 
    width: 35px; 
    text-align: center; 
    margin-left:auto; 
    margin-right: auto; 
    padding:5px; 
    border-radius: 5px;
    border-color: rgba(0,0,0,0);
}
.status-div-red {
    background-color: red; 
    height: 35px; 
    width: 35px; 
    text-align: center; 
    margin-left:auto; 
    margin-right: auto; 
    padding:5px; 
    border-radius: 5px;
    border-color: rgba(0,0,0,0);
}
.status-div-blue:disabled, .status-div-red:disabled {
    background-color: #b7b7b7; 
    cursor: not-allowed;
}
.status-div-trans-blue {
    border: solid 2px #1853ef; 
    background-color: #fff;
    height: 35px; 
    width: 32px; 
    text-align: center; 
    margin-left:auto; 
    margin-right: auto; 
    padding:0px; 
    border-radius: 5px;
}
.status-dot-green {
    color: #00d00d;
    font-size: 15px;
    height: 17px;
    vertical-align: bottom;
}
.status-dot-red {
    color: red;
    font-size: 15px;
    height: 17px;
    vertical-align: bottom;
}
.btn-minus {
    background-color: red;
}
.btn-plus {
    background-color: #00d00d;
}
.btn-edit {
    color: #FFF;
    background-color: #218691;
    box-shadow: 2px 2px #ccc;
}
.btn-add {
    color: #FFF;
    background-color: #1dcf27;
    box-shadow: 2px 2px #ccc;
}
.btn-print {
    background-color: #1853ef;
    color: #fff;
    font-weight: 500;
    height: 42px;
}
.btn-blue-full {
    background-color: #1853ef;
    color: #fff;
    font-weight: 500;
    height: 42px;
    width: 100%;
}
.btn-blue-auto {
    background-color: #1853ef;
    color: #fff;
    font-weight: 500;
    height: 42px;
    width: auto;
}
.btn-light-blue {
    background-color: #45aadd;
    color: #fff;
    font-weight: 500;
    height: 42px;
    width: 150px;
}
.btn-blue {
    background-color: #1853ef;
    color: #fff;
    font-weight: 500;
    height: 42px;
    width: 150px;
}
.btn-blue-2 {
    background-color: #1853ef;
    color: #fff;
    font-weight: 500;
    height: 33px;
    width: auto;
}
.btn-blue-3 {
    background-color: #4ab7ed;
    color: #fff;
    font-weight: 500;
    height: 42px;
    width: 150px;
}
.btn-green-full {
    background-color: #00d00d;
    color: #fff;
    font-weight: 500;
    height: 42px;
    width: 100%;
}
.btn-green {
    background-color: #00d00d;
    color: #fff;
    font-weight: 500;
    min-width: 130px;
}
.btn-green-2 {
    background-color: #00d00d;
    color: #fff;
    font-weight: 500;
    height: 42px;
    width: auto;
}
.btn-red {
    background-color: red;
    color: #fff;
    font-weight: 500;
    min-width: 130px;
    /*line-height: 26px;*/
}
.btn-green-sm {
    background-color: #00d00d;
    color: #fff;
    font-weight: 500;
    height: 30px;
    min-width: 110px;
    font-size: 13px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
}
.btn-red-sm {
    background-color: red;
    color: #fff;
    font-weight: 500;
    height: 30px;
    min-width: 110px;
    font-size: 13px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
}
.btn-blue-sm {
    background-color: #1853ef;
    color: #fff;
    font-weight: 500;
    height: 30px;
    min-width: 110px;
    font-size: 13px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
}
.blue-div {
    background-color: #00ddee; 
    padding: 6px 15px 15px 15px;
}
.grey-div {
    background-color: #eee;
}
.cust-width-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    max-width: 45%;
    padding-left: 5px;
}
.cust-width-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%;
    text-align: center;
}
.delete-icon {
    margin-top: 38px;
    font-size: 25px;
    color: red;
}
.delete-icon-address {
    margin-top: 10px;
    font-size: 25px !important;
    color: red;
    cursor: pointer;
    position: absolute;
    right: 30px;
}
.add-icon {
    margin-top: 38px;
    font-size: 25px;
    color: #00d00d;
}
.new-message {
    background-color: #ffffcc !important;
}


/************ Map and Mobile Navigation *******************/
.mobile-nav {
    display: none;
}

@media only screen and (max-width: 1000px) {
    content-holder {
        margin-top: 70px;
        left: 0px;
    }
    .content-wrapper {
        margin: 20px 10px 250px 10px;
    }
    .content-header {
        padding-left: 10px;
        padding-right: 10px;
    }
    #map {
        right: 0;
    }
    .hide-b1000, .mobile-hide {
        display: none !important;
    }
    .mobile-nav {
        display: block !important;
        position: inherit;
        padding: 20px;
        background: linear-gradient(to right, #FF2B00 0%, #1953FF 100%);
        overflow: auto;
        color: #fff;
        width: 100%;
        font-size: 22px;
        height: 70px;
    }
}


/************************ V3 CSS *******************/

div.top-bar {
    color: #FFF;
    position: fixed;
    z-index: 11;
    left: 0px;
    right: 0px;
}
div.top-bar .row .col {
    height: 60px;
}
div.top-bar .logo a {
    line-height: 50px;
}
div.top-bar .logo img.logo {
    margin-left: 25px;
    width: 140px;
}
div.top-bar .navs ul {
    position: absolute;
    right: 0px;
}
div.top-bar .navs ul li {
    display: inline-block;
}
div.top-bar .navs ul li a {
    color: #FFF;
    font-weight: bold;
    display: block;
    padding: 20px;
    padding-top: 16px;
    border-top: 4px solid #ffffff00;
    transition: color 0.2s;
    -webkit-transition: color 0.2s;
    -moz-transition: color 0.2s;
    -o-transition: color 0.2s;
}
div.top-bar .navs ul li a:hover, div.top-bar .navs ul li a:active {
    color: #00feff;
}
div.top-bar .navs ul li a:hover + div.dropdown-menu.dropdown-nav, div.dropdown-menu.dropdown-nav:hover {
    background-color: #00474f;
    left: 160px;
    margin-top: -1px;
    display: block;
}
div.top-bar .navs ul li a.active {
    color: #00feff;
    border-top: 4px solid #00feff;
}
div.top-bar .profile {
    box-sizing: border-box;
    max-width: 280px;
    border-left: 2px solid #fff;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
        position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
        height:60px;
}
div.top-bar .profile .col-profile-detail {
    width:155px;
    max-width:155px;
}
div.top-bar .profile .col-profile-img {
    width:60px;
    max-width:60px;
    padding-left:10px;
}
div.top-bar .profile span.name {
    font-weight: bold;
    display: block;
    margin-top: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
div.top-bar .profile span.position {
    font-weight: normal;
    font-size: 90%;
    color: #ddd;
}
div.top-bar .profile .profile-img, div.job-info-sidebar .profile-img {
    width: 40px;
    height: 40px;
    overflow: hidden;
    margin-top: 10px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
}
div.top-bar .profile .profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
div.top-bar .navs ul {
    top: 0px;
}
div.top-bar .navs ul li a {
    padding: 15px 15px 15px !important;
}
.dodoo-console-bg {
    background-color: #00474f;
}


.dropdown-parent{

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    height:60px;
}
.navs{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    user-select: none;
}
.nav-toggler{
    cursor: pointer;
    display: none;
    height: 48px;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border: 1px white solid;
    border-radius: 4px;
    font-weight: bold;
}
@media only screen and (max-width: 1000px) {
    div.col.logo{
        padding:0 15px;
    }
    div.col.logo img.logo {
        width: 150px;
    }

    .profile{
        max-width: 80px!important;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        position: relative;
        width: 100%;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        height:60px;
        display: flex;
        justify-content: flex-end;
        border-left: none!important;
    }
     .dropdown-parent{
         width: min-content;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px;
        justify-content: flex-end;
    }
    .col-profile-img{
        margin:0 10px;
    }
    .profile .col-profile, .profile .chevron-nav-profile{
        display: none;
    }
    .profile-dropdown{
        min-width: 180px;
    }
    .navs .nav-toggler{
        display: flex;
    }
    .navs ul li a.active {
        border-top:none!important;
    }

    #nav-wrapper{
        display: none;
    }
    #nav-wrapper.show{
        display: block;
    }
}

.sidenav {
    height: auto;
    width: 60px;
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 0;
    overflow-x: hidden;
    padding-top: 15px;
    padding-bottom: 50px;
    z-index: 100;
}
.sidenav-general {
    background-color: #eee;
    border-right: solid 5px #004750;
}
.sidenav-delivery {
    background: linear-gradient(to bottom, #1953FF 0%, #FF2B00 100%);
    border-right: solid 5px #ffff00;
}
.sidenav-business {
    background-color: #aaffff;
    border-right: solid 5px #00ddee;
}
.sidenav p {
    font-size: 15px;
    margin-bottom: 0px;
    padding: 8px 8px 8px 30px;
}
.sidenav-delivery .openbtn, .sidenav-delivery .closebtn {
    color: #fff !important;
}
.sidenav-delivery p {
    color: #fff;
}
.sidenav-general a, .sidenav-business a {
    padding: 8px 8px 8px 30px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    /*transition: 0.3s;*/
}
.sidenav-delivery a {
    padding: 8px 8px 8px 30px;
    text-decoration: none;
    font-size: 25px;
    color: #fff;
    display: block;
}
.sidenav-general a:hover {
    color: #004750;
}
.sidenav-delivery a:hover {
    color: #ff2b00;
}
.sidenav .closebtn {
    position: absolute;
    top: 5px;
    right: 13px;
    font-size: 20px;
}
.sidenav .openbtn {
    position: absolute;
    top: 15px;
    right: 13px;
    font-size: 20px;
    margin-left: 50px;
}
#main {
    transition: margin-left .5s;
    margin-left: 60px;
    margin-top: 59px;
}
.sidenav-title {
    white-space: nowrap; 
    padding: 8px 8px 8px 30px;
}
#sidenav-opt-display ul {
    padding-inline-start: 0px !important;
}
#sidenav-opt-display ul li {
    list-style-type: none;
    position: relative;
}
#sidenav-opt-display ul li i.fa {
    position: absolute;
    right: 15px;
    margin-top: 8px;
}
.sidenav-general #sidenav-opt-display ul li.active, 
.sidenav-general #sidenav-opt-display ul li.active:hover,
.sidenav-general #sidenav-opt-display ul li a:focus {
    background: linear-gradient(to right, #FF2B00 0%, #1953FF 100%);
}
.sidenav-delivery #sidenav-opt-display ul li.active, 
.sidenav-delivery #sidenav-opt-display ul li.active:hover,
.sidenav-delivery #sidenav-opt-display ul li a:focus {
    background: linear-gradient(to right, #00ffff 0%, #00ffff 100%);
}
.sidenav-business #sidenav-opt-display ul li.active, 
.sidenav-business #sidenav-opt-display ul li.active:hover,
.sidenav-business #sidenav-opt-display ul li a:focus {
    background: linear-gradient(to right, #004750 0%, #004750 100%);
}
#sidenav-opt-display ul li.hover, 
#sidenav-opt-display ul li:hover {
    background: linear-gradient(to right, #FF2B00 0%, #1953FF 100%);
}
.sidenav-delivery #sidenav-opt-display ul li.hover, 
.sidenav-delivery #sidenav-opt-display ul li:hover {
    background: linear-gradient(to right, #00ffff 0%, #00ffff 100%);
} 
.sidenav-business #sidenav-opt-display ul li.hover, 
.sidenav-business #sidenav-opt-display ul li:hover {
    background: linear-gradient(to right, #004750 0%, #004750 100%);
} 
#sidenav-opt-display ul li:hover a, 
#sidenav-opt-display ul li a:focus, 
#sidenav-opt-display ul li:hover p,
#sidenav-opt-display ul li:hover ul li:hover a {
    color: #fff;
} 
.sidenav-delivery #sidenav-opt-display ul li:hover p,
.sidenav-delivery #sidenav-opt-display ul li:hover ul li:hover a,
.sidenav-delivery #sidenav-opt-display ul li ul li a:focus {
    color: #ff2b00;
}
#sidenav-opt-display ul li:hover ul li a,
#sidenav-opt-display ul li ul li a:focus {
    color: #000;
}
#sidenav-opt-display ul li a {
    color: #000;
    font-weight: bold;
    font-size: 15px;
    padding-left: 30px;
    line-height: 30px;
    display: block;
}
.sidenav-delivery #sidenav-opt-display ul li a {
    color: #fff;
}
.sidenav-delivery #sidenav-opt-display ul li ul li a {
    color: #00ffff;
}
.sidenav-general #sidenav-opt-display ul li a:hover,
.sidenav-general #sidenav-opt-display ul li.active a {
    color: #fff;
}
.sidenav-delivery #sidenav-opt-display ul li a:hover,
.sidenav-delivery #sidenav-opt-display ul li.active a {
    color: #ff2b00;
}
.sidenav-business #sidenav-opt-display ul li a:hover,
.sidenav-business #sidenav-opt-display ul li.active a {
    color: #fff;
}
#sidenav-opt-display ul li p {
    color: #000;
    font-weight: bold;
    font-size: 15px;
    line-height: 30px;
    display: block;
    padding: 7px 0px 5px 0px;
    margin-bottom: 0px;
    margin-left: 30px;
}
.sidenav-delivery #sidenav-opt-display ul li p {
    color: #fff;
}
.sidenav-delivery #sidenav-opt-display ul li p:hover {
    color: #ff2b00;
}
#sidenav-opt-display ul li ul {
    background-color: #d8d8d8;
}
.sidenav-delivery #sidenav-opt-display ul li ul {
    background-color: #44596d;
}
.sidenav-business #sidenav-opt-display ul li ul {
    background-color: #00ddee;
}
.nav-icon {
    font-size: 1.6em;
    margin-right: 10px;
    width: 25px;
}
.btn-back {
    color: #000;
}
.nav-tabs-user-jobs {
    margin: -36px -36px 20px -36px;
    background-color: #00474f;
    padding: 10px 20px 1px 20px;
    border-bottom: solid 1px #fff !important;
}
.nav-tabs-user-jobs .nav-item {
    width: 50% !important;
    background-color: #00474f;
}
.nav-tabs-user-jobs .nav-item.active {
    background-color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.nav-tabs-user-jobs .dodoo-link {
    font-weight: bold;
    color: #fff;
    border-color: #00474f;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    padding: 10px !important;
}
.nav-tabs-user-jobs .dodoo-link:hover, .nav-tabs-user-jobs .dodoo-link:focus {
    border-color: #00474f !important;
}
.nav-tabs-user-jobs .nav-item.active .dodoo-link {
    color: #00474f;
    border-bottom: solid 1px #fff !important;
}
.nav-tabs-user-jobs li {
    text-align: center;
}
.for-desktop {
    display: initial;
}
.btn-info-contact {
    margin-top: 5px;
    background-color: #4ab7ed;
    color: #FFF;
}
.font-black {
    color: #000;
}
.font-grey {
    color: #777;
}
.font-grey-2 {
    color: #999;
}
.font-blue {
    color: #1853ef;
}
.font-bold {
    font-weight: bold;
}
.font-13 {
    font-size: 13px;
}
.font-17 {
    font-size: 17px;
}
.font-20 {
    font-size: 20px;
}
.job-info-sidebar-bg, .btn-job-action-bg {
    left: 60px;
}
div.modal-contact-layout .profile-img {
    width: 40px;
    height: 40px;
    overflow: hidden;
    margin-top: 10px;
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -o-border-radius: 20px;
}
div.modal-contact-layout .profile-img {
    width: 120px;
    height: 120px;
    overflow: hidden;
    margin-top: 10px;
    border-radius: 60px;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -o-border-radius: 60px;
}
div.modal-contact-layout img,
div.job-info-sidebar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.job-detail-th {
    background-color: #00474f; 
    padding: 15px; 
    color: #fff; 
    font-size: 13px; 
    text-align: center;
    font-weight: bold;
}
.my-job-list {
    box-shadow: 3px 3px #ccc;
    padding: 15px 0px 0px 0px; 
    border: solid 1px #ccc; 
    font-size: 13px;
    margin-top: 15px;
    border-radius: 3px;
    position: relative;
}
.my-job-list-child {
    padding: 10px 0px; 
    border-top: solid 2px #ccc;
    font-size: 13px;
    background-color: #fff;
    box-shadow: 3px 3px #ccc;
    border-radius: 0px;
}
.my-job-list-child:first-child {
    margin-top: 10px;
}
.parent-list-header .row-summary-reported, 
.transit-list-group .row-summary-reported, 
.transit-list-child .row-summary-reported, 
.my-job-list .row-summary-reported, 
.my-job-list-child .row-summary-reported {
    color: #FFF;
    background-color: red;
    font-size: 13px;
    display: block;
    font-weight: bold;
    text-align: center;
    padding: 5px 0px;
    margin: 5px 0px;
    position: inherit;
    width: 100%;
}
.my-job-list span.row-summary,
.my-job-list-child span.row-summary,
.transit-list-child span.row-summary,
.pickup-blue-tr span.row-summary,
.transit-grey-tr span.row-summary,
.transit-list-group span.row-summary,
.parent-list-header span.row-summary {
    color: #218691;
    font-size: 13px;
    display: block;
    font-weight: bold;
    text-align: center;
}
.my-job-list span.row-summary-reported-total, 
.my-job-list-child span.row-summary-reported-total,
.transit-list-child span.row-summary-reported-total,
.pickup-blue-tr span.row-summary-reported-total,
.transit-grey-tr span.row-summary-reported-total,
.parent-list-header span.row-summary-reported-total {
    color: #FFF;
    background-color: red;
    font-size: 13px;
    display: block;
    font-weight: bold;
    text-align: center;
    padding: 5px 0px;
    margin: 5px -5%;
    width: 115%;
}
.my-job-list span.row-summary-deliver, 
.my-job-list-child span.row-summary-deliver,
.pickup-blue-tr span.row-summary-deliver,
.transit-grey-tr span.row-summary-deliver,
.parent-list-header span.row-summary-deliver {
    color: #FFF;
    background-color: #218691;
    font-size: 13px;
    display: block;
    font-weight: bold;
    text-align: center;
    padding: 5px 0px;
    margin: 5px -5%;
    width: 115%;
}
.pill-sm-grey {
    color: #888;
    border-radius: 3px;
    border: solid 1px #888;
    background-color: #ddd;
    font-size: 10px; 
    padding: 0px 7px;
}
.link-modal {
    color: #1853ef;
    cursor: pointer;
    margin-left: 5px;
}
table td .row-address.wordwrap {
    white-space: normal;
}
table td .wordwrap {
    white-space: normal;
}
.do-table {
    border-bottom: solid 1px #ccc;
    padding-bottom: 0px;
}
.modal-row-summary {
    color: #218691;
    display: block;
    font-weight: bold;
    text-align: center;
}
.table td.modal-summary {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    padding-top: 10px !important;
}
.table td.modal-reported-td {
    background-color: red;
    color: #fff;
    font-weight: bold;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    font-size: 13px !important;
}
table.table th {
    min-height: 54px;
    height: 54px;
}
.img-preview-1 {
    width: 100%;
    height: 250px;
    margin-top: 10px;
    overflow: hidden;
    position: relative;
    background-color: #f1f1f1;
}
.img-preview-1 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.red-link-modal {
    color: red;
    cursor: pointer;
    margin-left: 5px;
    text-decoration: underline;
}
.status-position {
    position: absolute;
    bottom: 0;
    right: 0;
}
.onhold-back-btn {
    background-color: red;
    min-width: auto;
    height: 30px;
    color: #fff;
    font-size: 13px;
}
.console-back-btn {
    background-color: transparent;
    border: 2px solid #555;
    min-width: auto;
    height: 30px;
    color: #555;
    font-size: 17px;
    padding-bottom: 25px;
    padding-top: 4px;
    margin-bottom: 15px !important;
}
.console-back-btn-2 {
    background-color: #00d00d;
    min-width: auto;
    height: 30px;
    color: #fff;
    font-size: 15px;
    padding-bottom: 30px;
    font-weight: 500;
}
h3.page-title {
    font-size: 20px;
    font-weight: bold;
    color: #00474f;
    margin-bottom: 10px;
}
.modal-md {
    min-width: 600px;
    margin-left: auto;
    margin-right: auto
}
.do-table td {
    font-size: 14px !important;
}
.btn-plus {
    background-color: #00d00d;
    color: #fff;
}
.btn-minus {
    background-color: red;
    color: #fff;
}
.pill-postcode {
    background-color: #00d00d;
    font-weight: bold;
}

.partners-content-header {
    background-color: #eee;
    position: relative;
    margin-left: -15px;
    margin-right: -15px;
}
.partners-content-header.detail {
    min-height: 150px;
    padding-top: 15px;
    z-index: 10;
}
.partners-content-header .company-photo {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 60px;
    margin: auto;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -o-border-radius: 60px;
}
.partners-content-header .company-photo img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.partners-tab {
    position: sticky;
    top: 60px;
    margin: 0 -15px 25px -15px;
    font-weight: bold;
    min-height: 43px;
    z-index: 2;
    background-color: #eee;
}
.partners-tab .nav-tabs {
    background-color: #eee;
    border-bottom: solid 2px #dee2e6;
    padding-left: 25px;
}
.partners-tab .nav-tabs .nav-item {
    margin-bottom: -1px;
    background-color: none;
}
.partners-tab .nav-link {
    background-color: transparent;
    border-bottom: solid 5px transparent;
    transition: background-color 0.2s;
    color: #000;
}
.partners-tab .nav-link:hover {
    background-color: #eee;
    border-color: #eee;
}
.partners-tab .nav-link.active, .partners-tab .nav-link:hover {
    color: #000;
    background-color: transparent;
    border-bottom: solid 5px #218691;
    border-top: solid 0px transparent;
    border-left: solid 0px transparent;
    border-right: solid 0px transparent;
}
.partners-tab .nav-link.active:hover {
    border-color: #218691;
}
.partners-tab .nav-tabs.nav-sticky {
    position: fixed;
    top: 60px;
    left: 60px;
    right: 0px;
    z-index: 100000;
    padding-left: 30px;
}
.transporters-content-header {
    background-color: #363946;
    color: #FFF;
    position: relative;
    margin-left: -15px;
    margin-right: -15px;
}
.transporters-content-header.detail {
    min-height: 150px;
    padding-top: 15px;
}
.users-content-header {
    background-color: #0ff;
    color: #FFF;
    padding: 20px;
    position: relative;
    margin: 0 -15px;
}
.users-content-header.detail {
    min-height: 150px;
    padding-bottom: 0px;
}
.transporters-tab {
    position: sticky;
    top: 60px;
    margin: 0 -15px 25px -15px;
    font-weight: bold;
    min-height: 43px;
    z-index: 2;
}
.transporters-tab .nav-tabs{
    background-color: #363946;
    padding-left: 25px;
}
.users-tab .nav-tabs {
    background-color: #0ff;
    padding-left: 10px;
}
.transporters-tab .nav-tabs .nav-item,
.users-tab .nav-tabs .nav-item {
    margin-bottom: -1px;
    background-color: none;
}
.transporters-tab .nav-link {
    background-color: transparent;
    border-bottom: solid 5px transparent;
    transition: background-color 0.2s;
    color: #FFF;
}
.users-tab .nav-link {
    background-color: transparent;
    border-bottom: solid 5px transparent;
    transition: background-color 0.2s;
    color: #333;
    font-weight: bold;
}
.transporters-tab .nav-link:hover  {
    background-color: #eeeeee44;
    border-color: #eee;
}
.users-tab .nav-link:hover {
    background-color: #eeeeee44;
    border-color: #3450e5;
}
.transporters-tab .nav-link.active  {
    background-color: transparent;
    border-bottom: solid 5px #01ffff;
    border-top: solid 0px transparent;
    border-left: solid 0px transparent;
    border-right: solid 0px transparent;
    color: #FFF;
}
.users-tab .nav-link.active {
    background-color: transparent;
    border-bottom: solid 5px #3450e5;
    border-top: solid 0px transparent;
    border-left: solid 0px transparent;
    border-right: solid 0px transparent;
    color: #333;
}
.transporters-tab .nav-link.active:hover,
.users-tab .nav-link.active:hover {
    border-color: #218691;
}
.transporters-tab .nav-tabs.nav-sticky,
.users-tab .nav-tabs.nav-sticky {
    position: fixed;
    top: 60px;
    left: 60px;
    right: 0px;
    z-index: 100000;
    padding-left: 30px;
}


.job-tab-header {
    margin: -27px -36px 25px -36px;
    background-color: #00474f;
    padding: 10px 35px 1px 35px;
    border-bottom: solid 1px #fff !important;
}
.job-tab-header .nav-item {
    width: 33.3333%;
    background-color: #00474f;
    text-align: center;
    height: 45px;
    padding: 10px;
}
.job-tab-header .nav-item.active {
    width: 33.3333%;
    background-color: #fff;
    text-align: center;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}
.job-tab-header .nav-item a {
    color: #fff;
    font-weight: bold;
    font-size: 15px;
}
.job-tab-header .nav-item.active a {
    color: #000;
    font-weight: bold;
}
.nav-link-dodoo {
    color: #000;
    font-weight: bold;
    border: 2px solid #979797;
    border-radius: 5px;
    margin-right: 10px;
}
.nav-link-dodoo.active {
    color: #1853fe;
    font-weight: bold;
    border: 2px solid #1853fe;
    border-radius: 5px;
    margin-right: 10px;
}
.nav-link-dodoo.active:hover {
    color: #1853fe;
}
.nav-link-dodoo:hover {
    color: #000;
}
.form-check-label {
    cursor: pointer;
    color: #000;
}
div.form-group.checkbox {
    text-align: center;
}
.checkbox {
    padding-top:5px;
}
.checkbox label:after {
  content: '';
  display: table;
  clear: both;
}
.checkbox .cr {
  position: relative;
  display: inline-block;
  border: 3px solid #ccc;
  width: 1.8em;
  height: 1.8em;
  float: left;
  margin: auto .5em;
  background-color: #fff;
}
.checkbox .cr .cr-icon {
  position: absolute;
  font-size: 1.2em;
  line-height: 0;
  top: 50%;
  left: 0%;
  color: #000;
}
.checkbox label input[type="checkbox"] {
  display: none;
}
.checkbox label input[type="checkbox"]+.cr>.cr-icon {
  opacity: 0;
}
.checkbox label input[type="checkbox"]:checked+.cr>.cr-icon {
  opacity: 1;
}
.checkbox label input[type="checkbox"]:disabled+.cr {
  opacity: .5;
}
.checkbox-checkout {
    color: #333;
}
.state-map {
    position: relative;
    text-align: center;
}
.state-map .map-btn {
    font-size: 13px;
    font-weight: 600;
    padding: 5px;
    position: absolute;
}
.state-map a {
    width: 5px;
    height: 10px;
    display: block;
    border-radius: 10px;
    cursor: default;
}
.map-btn {
    vertical-align: middle;
    cursor: pointer;
    text-decoration: none !important;
    text-align: center;
    position: relative;
    line-height: 0;
    display: inline-block;
    margin-left: 0;
    padding: 9px 19px 6px;
    color: #fff !important;
    font-size: 13px !important;
    border-radius: 3px;
    background: #fff none repeat scroll 0% 0% !important;
}
.map-btn > span {
    margin-left: 10px;
}
.map-background {
    background-color: #617e80;
    margin: 0px !important;
    border-radius: 5px;
    padding-top: 20px;
    padding-bottom: 20px;
    height: auto;
    min-height: 700px;
}
.site-perlis {
    top: 10.5%;
    left: 11%;
}
.site-kedah {
    top: 18.5%;
    left: 13%;
}
.site-sabah {
    top: 15.5%;
    left: 86%;
}
.site-sarawak {
    top: 43.5%;
    left: 70%;
}
.site-penang {
    top: 29.5%;
    left: 10.5%;
}
.site-kelantan {
    top: 29.5%;
    left: 23.5%;
}
.site-terengganu {
    top: 38.5%;
    left: 31.5%;
}
.site-perak {
    top: 40.5%;
    left: 14.5%;
}
.site-pahang {
    top: 56.5%;
    left: 24.5%;
}
.site-selangor {
    top: 60.5%;
    left: 18%;
}
.site-sembilan {
    top: 72%;
    left: 24%;
    line-height: 15px;
}
.site-melaka {
    top: 81%;
    left: 26%;
}
.site-johor {
    top: 87%;
    left: 34%;
}
.site-kl {
    top: 64.5%;
    left: 20%;
}
.site-putrajaya {
    top: 68.5%;
    left: 21%;
}
.site-labuan {
    top: 19.5%;
    left: 80%;
}
.dashboard-milky-row {
    background-color: rgba(255, 255, 204, 0.5);
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 5px;
}
.dashboard-blue-row {
    background-color: rgba(196, 224, 240, 0.2);
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 5px;
}
.fa-angle-double-down, .fa-angle-double-up {
    cursor: pointer;
    color: #007bff;
    font-weight: bold;
    font-size: 18px;
}
.list-consignment-status {
    position: absolute;
    bottom: 20px;
}
.my-job-tab {
    margin: -30px -25px 25px -25px;
    background-color: #00474f;
    padding: 8px 6px 1px 6px;
    border-bottom: solid 1px #fff !important;
}
.my-job-tab .nav-item a {
    background-color: #00474f;
}
.my-job-tab .nav-item-2 {
    width: 50% !important;
    background-color: #00474f;
}
.my-job-tab .nav-item.active a {
    background-color: #fff;
}
.my-job-tab a.dodoo-link {
    font-weight: normal;
    color: #fff;
    border-color: #00474f;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    padding: 10px !important;
    font-size: 13px;
    transition: background-color 0.2s;
    -webkit-transition: background-color 0.2s;
    -moz-transition: background-color 0.2s;
}
.my-job-tab a.dodoo-link:hover, .my-job-tab a.dodoo-link:focus {
    background-color: #10626b;
}
.my-job-tab .nav-item.active a.dodoo-link:hover, .my-job-tab .nav-item.active a.dodoo-link:focus {
    background-color: #fff;
}
.my-job-tab .nav-item.active .dodoo-link {
    color: #777;
    border-bottom: solid 1px #fff !important;
}
.my-job-tab .my-job-tab-header {
    font-weight: bold;
    font-size: 14px;
}
.my-job-tab .nav-item.active .my-job-tab-header {
    color: #1853ef;
}
.my-job-tab li {
    margin-left: auto;
    margin-right: auto;
}
.my-job-list {
    box-shadow: 3px 3px #ccc;
    padding: 15px 0px 0px 0px; 
    border: solid 1px #ccc; 
    font-size: 13px;
    margin-top: 15px;
    border-radius: 3px;
    position: relative;
}
.my-job-list-child {
    padding: 0px;
    padding-top: 20px;
    border-top: solid 2px #ccc;
    font-size: 13px;
    background-color: #fff;
    box-shadow: 3px 3px #ccc;
    border-radius: 0px;
    min-height: 160px;
}
.transit-list-child {
    padding: 10px 0px; 
    border: solid 2px #ccc;
    font-size: 13px;
    background-color: #fff;
    box-shadow: 3px 3px #ccc;
    border-radius: 0px;
    margin-bottom: 5px;
}
.transit-list-group {
    padding: 10px 0px;
    font-size: 13px;
    background-color: #eee;
    box-shadow: 3px 3px #ccc;
    border-radius: 0px;
    margin-left: 2px;
    margin-right: 2px;
    margin-bottom: 2px;
    min-height: 160px;
}
.img-preview-1.enlarge {
    height: auto;
    min-height: 600px;
}
.split-bg {
    background-color: #ccc; 
    margin-left: 0px; 
    margin-right: 0px; 
    padding-bottom: 10px;
    box-shadow: 3px 3px #ccc;
}
#map-business {
    height: auto;
    min-height: 450px;
}
.content-header .console-back-btn,
.partners-content-header .console-back-btn {
    margin-top: 15px !important;
}
.tab-content-cust .tab {
    display: inline-block;
    width: auto;
    position: relative;
    margin: unset;
}
.tab-content-cust .tab:first-child {
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
.tab-content-cust .tab:last-child {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}
.tab-content-cust .tab a {
    color: #fff;
    font-weight: bold;
    line-height: 10px;
    padding: 5px;
    font-size: 13px;
}
.tab-content-cust .tab, 
.tab-content-cust .tab:hover {
    background-color: #979797;
    border-bottom: unset;
    color: #d8d8d8;
    padding: 7px;
    width: 120px;
    text-align: center;
}
.tab-content-cust .tab.active {
    background-color: #024750;
    border-bottom: unset;
    padding: 7px 14px;
}
.tab-content-cust .tab.active a {
    color: #fff !important;
}
.tab-content-cust {
    margin-top: 5px !important;
    text-align: right;
}
.overflow-a {
    overflow: auto;
}
.consignment-wrapper {
    overflow-x: unset !important;
}
table.table.listing {
    table-layout: auto !important;
}
table.table.listing tr th:first-child, 
table.table.listing tr th:last-child, 
table.table.listing tr td:first-child, 
table.table.listing tr td:last-child {
    white-space: nowrap;
    width: 1%;
    max-width: fit-content;
    min-width: fit-content;
    padding-left: 20px !important;
    padding-right: 20px !important;
    text-align: center;
}
table.table.listing tr td:last-child button {
    margin-left: 1.5px !important;
    margin-right: 1.5px !important;
}
table.table.listing tr td {
    height: 56.5px;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.no-scrollbar::-webkit-scrollbar {
    display: none;
}





/* --------------------------------------------------------------- V5.1 --------------------------------------------------------------- */
.btn-dodoo {
    --dodoo-button-height: 36px;
    --dodoo-button-width: 155px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border-width: 2px;
    border-style: solid;
    font-weight: bold;
    padding: 0 20px;
    color: white;

    height: var(--dodoo-button-height);
    min-width: var(--dodoo-button-width);
    font-size: var(--text-md);
    background-color: var(--dodoo-btn-bg);
    border-color: var(--dodoo-btn-border);
}
.btn-dodoo.primary {
    --dodoo-btn-bg: var(--dodoo-btn-primary-bg);
    --dodoo-btn-border: var(--dodoo-btn-primary-bg);
}
.btn-dodoo.primary:hover,
.btn-dodoo.primary:focus {
    --dodoo-btn-bg: var(--dodoo-btn-primary-bg);
    --dodoo-btn-border: var(--dodoo-btn-primary-bg);
    border-color: var(--dodoo-btn-primary-bg);
}
.btn-dodoo.red {
    --dodoo-btn-bg: var(--dodoo-btn-red-bg);
    --dodoo-btn-border: var(--dodoo-btn-red-bg);
}
.btn-dodoo.red:hover,
.btn-dodoo.red:focus {
    --dodoo-btn-bg: var(--dodoo-btn-red-bg);
    --dodoo-btn-border: var(--dodoo-btn-red-bg);
    border-color: var(--dodoo-btn-red-bg);
}

table .btn-dodoo {
    min-width: 36px;
    max-width: 36px;
}

.btn-dodoo.with-icon {
    padding: 0 10px;
    justify-content: start;
    gap: 10px;
}

.btn-dodoo.small {
    --dodoo-button-height: 30px;
    --dodoo-button-width: 120px;
    font-size: var(--text-sm);
}

.btn-dodoo.square {
    min-width: unset;
    width: var(--dodoo-button-height);
    padding: 0;
}

.btn-dodoo.blue {
    --dodoo-btn-bg: var(--color-blue);
    --dodoo-btn-border: var(--color-blue);
}

.btn-dodoo.green {
    --dodoo-button-color: var(--color-green);
    --dodoo-btn-border: var(--color-green);
}

.btn-dodoo.orange {
    --dodoo-button-color: var(--color-orange);
    --dodoo-btn-border: var(--color-orange);
}

.btn-dodoo.outline {
    color: var(--dodoo-btn-primary-bg);
    border-color: var(--dodoo-btn-primary-bg);
    background-color: white;
}
.btn-dodoo.red.outline {
    color: var(--dodoo-btn-red-bg);
    border-color: var(--dodoo-btn-red-bg);
    background-color: white;
}

.btn-dodoo.ghost {
    min-width: auto;
    color: var(--dodoo-button-color);
    border: none;
    background-color: transparent;
    font-weight: 500;
    border-radius: 0;
}

.btn-dodoo.linking {
    min-width: auto;
    color: var(--dodoo-button-color);
    border: none;
    border-bottom: 2px solid var(--dodoo-button-color);
    background-color: transparent;
    font-weight: bold;
    border-radius: 0;
}

.btn-dodoo:not(.square) {
    padding: 0px 10px;
}

.btn-dodoo:not(.square)>*+* {
    margin-left: 10px;
}

.btn-dodoo:disabled {
    background-color: unset;
    border-color: #999;
}






/************************ V3 Responsive CSS *******************/

@media only screen and (max-width: 767px) {
    div.top-bar .profile {
        cursor: pointer;
        border-left: none !important;
    }
    div.top-bar .profile .profile-img {
        width: 40px;
        height: 40px;
        overflow: hidden;
        margin-top: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    div.top-bar .profile {
        border-left: none;
    }
}

@media only screen and (max-width: 1000px){
    div.top-bar .navs ul li a {
        padding: 15px 15px 15px !important;
    }
    div.top-bar .navs ul {
        position: absolute;
        right: 0px;
        list-style: none;
        top: 60px;
        right: 0px;
        z-index: 10000;
        background-color: #3b3b3b;
        padding-left: 0px;
        margin:0 15px;
        width:180px;
        /* display: none; */
    }
    div.top-bar .navs ul.show {
        display: block;
    }
    div.top-bar .navs ul li {
        display: block;
    }
}




