body,
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.header-logo {
  height: 40px;
  margin-right: 15px;
}

.card {
  border-radius: 16px;
}

.card .card-header h4 {
  font-size: 24px;
}

.btn {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dashboard-header img.avatar {
  width: 32px;
  height: 32px;
}

.dashboard-header .card {
  height: 60px;
}

.menu-list ul {
  width: 100%;
  text-align: center;
}

.menu-list li {
  display: inline-block;
  margin: 0px 10px;
}

.menu-list li a {
  color: inherit;
}

.menu-list li.active a {
  color: blue;
}

.Loader {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1;
}

.Loader .content {
  color: #fff;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.app-name {
  display: block;
  margin-top: -5px;
  font-size: 95%;
}

.AuthLayout {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  background-image: url('/images/background/bg-section-1.jpg');
  background-position: bottom;
  background-size: cover;
}

.DashboardLayout {
  background-image: url('/images/background/bg-section-2.png');
  background-position: top;
  background-size: cover;
  min-height: 100vh;
}

.dark-bg-color {
  background-color: #00142aad;
}

.d-flow-root {
  display: flow-root !important;
}

.map-holder {
  width: 100%;
  height: 450px;
  background: #eee;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 3%);
}

.map-holder .leaflet-container {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 19px rgb(0 0 0 / 3%);
}

.leaflet-popup-content {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

.leaflet-control-attribution {
  display: none !important;
}

.kpi-card {
  border-radius: 16px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 3%);
  background: #eee;
  height: 75px;
  margin: 10px 0;
  cursor: pointer;
  transform: scale(1.0);
  transition: all 0.1s;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  padding-left: 25px;
}

.kpi-card:hover {
  background-image: linear-gradient(90deg, #00DBDE 0%, #FC00FF 100%);
  opacity: 1;
  transform: scale(1.01);
  transition: all 0.1s;
}

.kpi-card .title {
  display: block;
  font-size: 1.1em;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
}

.kpi-card .body {
  display: block;
  font-size: 2em;
  color: #fff;
  font-weight: bold;
  line-height: 1.3;
}

.bg-gradient-fade-out {
  background-color: #FFDEE9;
  background-image: linear-gradient(0deg, #FFDEE9 0%, #B5FFFC 100%);
  opacity: 0.8;
}

.bg-gradient-forest {
  background-color: #F4D03F;
  background-image: linear-gradient(132deg, #F4D03F 0%, #16A085 100%);
}

.bg-gradient-bloody-mimosa {
  background: linear-gradient(90deg, #d53369 0%, #daae51 100%);
}

.bg-gradient-aqua {
  background-color: #0093E9;
  background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
}

.bg-gradient-cyberpunk {
  background-color: #FF3CAC;
  background-image: linear-gradient(225deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
}

.bg-gradient-sun {
  background-color: #FBDA61;
  background-image: linear-gradient(45deg, #FBDA61 0%, #FF5ACD 100%);
}

.bg-gradient-turtle-purple {
  background-color: #4158D0;
  background-image: linear-gradient(43deg, #4158D0 0%, #C850C0 46%, #FFCC70 100%);  
}

.bg-gradient-cyan {
  background-color: #08AEEA;
  background-image: linear-gradient(0deg, #08AEEA 0%, #2AF598 100%);
}

.bg-gradient-purple-sea {
  background-color: #FFE53B;
  background-image: linear-gradient(147deg, #FFE53B 0%, #FF2525 74%);
}

.overlay-card {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 3%);
  height: 95%;
  position: fixed;
  bottom: 0px;
  width: 94%;
  margin: 0px 3%;
  z-index: 9;
}

.overlay-card-content {
  height: 100%;
  padding: 5px;
}

.overlay-card-content .card {
  border-radius: 40px;
}

.overlay-card-closer {
  border-radius: 40px;
  padding: 15px;
}

.overlay-card-content .card-body {
  height: 65vh;
}

.overlay-card-content .card-footer {
  z-index: 99;
}

h6 {
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: small;
}

.select-warehouse-options {
  border-radius: 30px;
  padding: 10px 25px;
  border: 2px solid #002d64;
}

.table-wrapper {
  width: 100%;
  height: 35%;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none; 
  z-index: -1;
}

.table-wrapper::-webkit-scrollbar {
  display: none; 
}

.table-custom thead tr {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1em;
}

.table-custom thead tr small {
  opacity: 0.8;
}

.table-custom tbody td {
  padding: 15px;
}

.table-custom tbody tr {
  height: 85px;
}

.table-custom tbody td .badge {
  display: block;
  width: inherit;
  font-size: 0.6em;
  margin-bottom: 10px;
}

.__warehouse {
  width: 250px;
}

.__this_year {
  width: 170px;
}

.__this_month {
  width: 0;
}

.__this_week {
  width: 0;
}

.__warehouse_code {
  text-transform: uppercase;
  font-size: 0.6em;
}

.__trend_line {
  width: 50%;
}

.table-custom tbody tr {
  font-size: 1.5em;
  font-weight: bold;
  color: #002d64;
}

.roca-logo-container {
  margin-top: 20px;
}

.roca-logo {
  width: 130px;
  margin-right: 10px;
}

.tvs-logo {
  width: 100px;
  margin-right: 10px;
}

.__popup_region {
  text-transform: uppercase;
  color: #333;
}

.map-holder-full {
  width: 100%;
  height: 100vh;
  background: #eee;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 3%);
}

.map-holder-full .leaflet-container {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 19px rgb(0 0 0 / 3%);
}

@media only screen and (max-width: 480px) {
  .region-name-container {
    margin-top: 15px !important;
  }
  .overlay-card-content .card-body {
    height: 55vh;
  }
  .select-warehouse-container {
    margin-top: 10px;
  }  
  .roca-logo-container {
    font-size: 1rem !important;
  }
  .__trend_line {
    width: 150px;
  }
  .kpi-metrics-container {
    width: 120%;
    margin-left: -5% !important;
    margin-top: 0% !important;
  }
}

.kpi-explorer-modal-open {
  overflow: hidden;
}

.highcharts-credits {
  display: none !important;
}

#ViewChartModal .modal-dialog {
  height: 90%;
}

#ViewChartModal .modal-content {
  height: 100%;
}

#ViewChartModal .modal-title {
  line-height: normal;
}

.select-time-filter {
  margin-top: 10px;
}

.avatar-in-app {
  cursor: pointer;
  margin-top: 25px;
  opacity: 0.9;
}

.avatar-in-app:hover {
  opacity: 1;
}

.kpi-chart-button-group .btn {
  border-radius: 16px;
  padding: 5px 15px;
}

.icon-lg {
  display: inline-block;
  margin: 0 5px;
  font-size: medium;
  vertical-align: inherit;
}

.kpi-data-infobar-trigger {
  display: inline-block;
  vertical-align: middle;
}

.kpi-data-infobar-trigger .icon-lg {
  font-size: 80%;
  cursor: pointer;
}

.rdt_TableHeadRow .rdt_TableCol{
  color: #002d64;
  text-transform: capitalize;
}

#ViewTableModal .modal-dialog {
  max-width: 85%;
}

#ViewChartModal .modal-dialog {
  max-width: 80%;
}

.simple-footer {
  color: #efefef;
}

.tracking-popup {
  width: 450px;
}

.tracking-popup .leaflet-popup-content {
  font-family: 'Inter' !important;
}

.tracking-popup .cwb {
  font-size: 1.5em;
  font-weight: bold;
}

.tracking-popup .delivery-at {
  display: block;
  margin: 5px 0;
  font-size: 1.5em;
}

.tracking-popup .delivery-at span {
  display: block;
  font-size: small;
  text-transform: uppercase;
}

.tracking-popup .view-more {
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
}

.tracking-popup .table2 {
  margin: 0;
  padding: 0;
  margin-left: -7px;
}

.tracking-popup .table2 thead td {
  padding: 3px 7px;
  text-transform: uppercase;
  font-size: 80%;
  font-weight: bold;
}

.tracking-popup .table2 tbody td {
  padding: 3px 7px;
}

.tracking-popup .table2 .action {
  border: none;
  background: transparent;
  padding: 0;
  color: royalblue;
  font-size: 125%;
  cursor: pointer;
}

.tracking-popup .table2 .action:hover {
  font-weight: bold;
}

.tracking-popup .leaflet-popup-content {
  width: auto !important;
}

.modal.left .modal-dialog,
.modal.right .modal-dialog {
	position: fixed;
	margin: auto;
	width: 320px;
	height: 100%;
	-webkit-transform: translate3d(0%, 0, 0);
	-ms-transform: translate3d(0%, 0, 0);
	-o-transform: translate3d(0%, 0, 0);
	transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content,
.modal.right .modal-content {
	height: 100%;
	overflow-y: auto;
}

.modal.left .modal-body,
.modal.right .modal-body {
	padding: 15px 15px 80px;
}

.modal.left.fade .modal-dialog {
	left: -320px;
	-webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
	-moz-transition: opacity 0.3s linear, left 0.3s ease-out;
	-o-transition: opacity 0.3s linear, left 0.3s ease-out;
	transition: opacity 0.3s linear, left 0.3s ease-out;
}

.modal.left.fade.in .modal-dialog {
	left: 0;
}

.modal.right.fade .modal-dialog {
	right: 0px;
	-webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
	-moz-transition: opacity 0.3s linear, right 0.3s ease-out;
	-o-transition: opacity 0.3s linear, right 0.3s ease-out;
	transition: opacity 0.3s linear, right 0.3s ease-out;
}

.modal.right.fade.in .modal-dialog {
	right: 0;
}

.modal-content {
	border-radius: 0;
	border: none;
}

.modal-header {
	border-bottom-color: #eeeeee;
	background-color: #fafafa;
}

#ViewOrdersModal .modal-dialog {
  width: 500px;
}

#ViewOrdersModal .modal-dialog .modal-content {
  border-top-left-radius: 50px;
}

#ViewOrdersModal .modal-title {
  font-weight: normal;
  line-height: 1;
  margin-top: -5px;
  margin-bottom: 10px;
}

.collapse-row__title span {
  display: block;
  font-size: 110%;
  font-style: bold;
  color: #002d64;
  cursor: pointer;
}

.row-order-completed span {
  border-bottom: 5px solid #16A085;
}

.row-order-delayed span {
  border-bottom: 5px solid red;
}

.badge-status {
  width: 150px;
}

.accordian-info {
  color: #fff;
  background: #888;
  border-top: 3px solid #555;
  border-bottom: 3px solid #555;
}

#ViewOrdersModal .modal-kpi {
  background: #fefefe;
}

.kpi-card-v2 {
  border-radius: 16px;
  box-shadow: 0 4px 8px rgb(0 0 0 / 3%);
  background: #eee;
  height: 75px;
  margin: 10px 0;
  cursor: pointer;
  transform: scale(1.0);
  transition: all 0.1s;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  padding-left: 25px;
}

.kpi-card-v2 .title {
  display: block;
  font-size: 1.1em;
  color: #111;
  font-weight: bold;
  line-height: 1;
}

.kpi-card-v2 .body {
  display: block;
  font-size: 2em;
  color: #111;
  font-weight: bold;
  line-height: 1.3;
}

.bg-kpi-2 {
  background-color: #F4D03F;
}

.warehouse_response_icon {
  width: 32px;
  margin: 0 10px;
}

.kpi-metrics-container {
  height: 100px;
  color: #fff;
  background: #333;
  background: #003473;
  z-index: 9999;
  border-radius: 10px;
  padding: 5px;
}

.kpi-metrics-container-logo {
  width: 84px;
  padding: 10px 0;
}

.kpi-metrics-container img.footer-logo {
  width: 84px;
}

.mobile-header {
  text-align: center;
}

.mobile-header img {
  text-align: center;
  width: 80px;
}

.otif-text {
  font-weight: normal;
}

.otif-text .otif-title {
  font-size: 90%;
  margin-right: 15px;
}

.otif-text .otif-value {
  font-weight: bold;
}

.otif-delayed-container {
  position: relative;
  top: 10px;
}

.otif-delayed-container .card-header {
  font-size: 1.2em;
  font-weight: bold;
  padding: 0 15px;
  height: 45px;
  min-height: 45px;
  color: #002d64;
}

.otif-delayed-container .card {
  height: 400px;
}

.show-live-truck {
  color: #002d64;
  font-weight: bold;
  border-bottom: 1px solid #002d64;
  cursor: pointer;
}

.rdt_TableCol_Sortable {
  font-weight: bold;
  font-size: 110%;
}