:root {
  --fo-font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --fo-navy: #0C0F2C;
  --fo-navy-2: #153760;
  --fo-orange: #E68C22;
  --fo-orange-hover: #D77D18;
  --fo-bg: #F4F5F7;
  --fo-bg-soft: #FAFAFB;
  --fo-surface: #FFFFFF;
  --fo-surface-soft: rgba(255, 255, 255, 0.92);
  --fo-border: rgba(24, 28, 39, 0.1);
  --fo-border-strong: rgba(24, 28, 39, 0.16);
  --fo-text: #181C27;
  --fo-muted: #6F737C;
  --fo-success: #168A4A;
  --fo-danger: #B42318;
  --fo-info: #2864B4;
  --fo-radius-sm: 6px;
  --fo-radius-md: 8px;
  --fo-radius-lg: 8px;
  --fo-shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --fo-shadow-md: 0 8px 22px rgba(15, 23, 42, 0.06);
  --fo-shadow-lg: 0 14px 36px rgba(12, 15, 44, 0.1);
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  color: var(--fo-text);
  background: var(--fo-bg);
  font-family: var(--fo-font-sans);
}

@supports not (overflow-x: clip) {
  html,
  body {
    overflow-x: hidden;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

#load {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

button,
input,
select,
textarea,
.wrapper,
.top-bar,
.sidebar,
.inner-sec,
.table,
  .form-control,
  .bootstrap-select,
  .dropdown-menu {
  font-family: var(--fo-font-sans);
}

a,
button,
.submit-btn,
.view-btn,
.edit-btn,
.new,
.form-control,
.bootstrap-select > .dropdown-toggle,
.side-bar-item li a,
.view-one {
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease, transform .18s ease;
}

@keyframes foSurfaceIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Customer app shell */
.wrapper {
  min-height: 100vh;
  background: var(--fo-bg);
  overflow-x: hidden;
}

.wrapper,
.content,
.inner-sec,
.container,
.row,
[class*="col-"],
.bootstrap-table,
.fixed-table-container,
.fixed-table-body,
.table-responsive,
.bill-table-main,
.billing-sec-two {
  min-width: 0;
  max-width: 100%;
}

.content {
  overflow-x: clip;
}

.sidebar {
  width: 248px;
  background: linear-gradient(180deg, #0C0F2C 0%, #121735 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 10px 0 28px rgba(12, 15, 44, 0.14);
}

.wrapper {
  padding-left: 248px;
}

.logo {
  height: 72px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo img {
  display: block;
  width: 168px;
  max-width: 168px;
  height: auto;
}

.body-sidebar {
  padding: 24px 12px;
}

.side-bar-item li {
  margin-bottom: 6px;
}

.side-bar-item li a {
  height: 44px;
  padding: 0 12px;
  border-radius: var(--fo-radius-md);
  color: rgba(255, 255, 255, 0.62);
  font-weight: 600;
}

.side-bar-item li a img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  object-fit: contain;
  margin-right: 10px;
  opacity: .7;
}

.side-bar-item li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: translateX(2px);
}

.side-bar-item li.acive a {
  background: var(--fo-orange);
  color: #fff;
  box-shadow: 0 8px 18px rgba(230, 140, 34, 0.2);
}

.footer-sidebar {
  padding: 16px 18px 24px;
}

.footer-sidebar a {
  min-height: 42px;
  padding: 0 10px;
  border-radius: var(--fo-radius-md);
  color: rgba(255, 255, 255, 0.62);
}

.footer-sidebar a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.top-bar {
  min-height: 72px;
  width: calc(100% - 248px);
  left: 248px;
  padding: 16px 28px;
  display: grid;
  grid-template-columns: minmax(44px, 160px) minmax(0, 1fr) minmax(44px, 160px);
  align-items: center;
  column-gap: 16px;
  border-bottom: 1px solid rgba(24, 28, 39, 0.08);
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
}

.top-bar h2 {
  grid-column: 2;
  justify-self: center;
  margin: 0;
  color: var(--fo-text);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
}

.top-bar .menu {
  grid-column: 1;
  justify-self: start;
  position: static;
  width: 38px;
  height: 38px;
  border-radius: var(--fo-radius-md);
  display: none;
  align-items: center;
  justify-content: center;
}

.top-bar .menu:hover {
  background: rgba(24, 28, 39, 0.06);
}

.top-bar > .submit-btn,
.top-bar > .submit-btn-two {
  grid-column: 3;
  justify-self: end;
}

.billing-empty .top-bar h2 {
  margin-bottom: 0;
}

.top-bar.d-block {
  display: grid !important;
  grid-template-columns: minmax(180px, 1fr) minmax(0, auto) minmax(180px, 1fr);
  align-items: center;
  min-height: 72px;
  padding: 14px 28px;
  column-gap: 18px;
}

.top-bar.d-block .menu {
  grid-column: 1;
}

.top-bar.d-block nav {
  grid-column: 1;
  min-width: 0;
}

.top-bar.d-block .breadcrumb {
  margin: 0;
  color: var(--fo-muted);
  font-size: 14px;
}

.top-bar.d-block .breadcrumb a {
  color: var(--fo-muted);
}

.top-bar.d-block .breadcrumb .active,
.top-bar.d-block .breadcrumb a:hover {
  color: var(--fo-text);
}

.top-bar.d-block .bill-heading {
  display: contents !important;
}

.top-bar.d-block .bill-heading h2 {
  grid-column: 2;
  justify-self: center;
  max-width: min(720px, 100%);
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px 14px;
  text-align: center;
}

.top-bar.d-block .bill-heading .tag {
  display: inline-flex;
  min-height: 24px;
  min-width: 112px;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  padding: 0 12px;
  border-radius: 6px;
  background: rgba(230, 140, 34, 0.1);
  color: var(--fo-orange);
  font-size: 13px;
  font-weight: 600;
}

.top-bar.d-block .downlod-list {
  grid-column: 3;
  justify-self: end;
  justify-content: flex-end;
  gap: 12px;
  margin: 0;
}

.inner-sec {
  padding: 96px 0 24px;
}

.top-bar.d-block + .inner-sec {
  padding-top: 96px !important;
}

.container {
  padding-left: 28px;
  padding-right: 28px;
  font-family: var(--fo-font-sans);
  font-weight: 400;
}

.active-quoto-main,
.active-quoto,
.main-empty,
.main-account {
  border: 1px solid var(--fo-border);
  border-radius: var(--fo-radius-lg);
  background: var(--fo-surface);
  box-shadow: var(--fo-shadow-md);
  overflow: hidden;
  animation: foSurfaceIn .28s ease both;
}

.active-quoto-main,
.active-quoto {
  margin-bottom: 24px;
}

.head-active {
  min-height: 54px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--fo-border);
  background: #FBFCFD;
}

.head-active h3,
.head-active span {
  color: var(--fo-text);
  letter-spacing: 0;
}

.head-active h3 {
  font-size: 16px;
  font-weight: 700;
  min-width: 0;
}

.head-active h3 span,
.head-active > span {
  display: inline-flex;
  min-width: 28px;
  height: 24px;
  padding: 0 9px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(230, 140, 34, 0.12);
  color: var(--fo-orange);
  font-size: 13px;
}

.head-active a {
  color: var(--fo-orange);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  flex: 0 0 auto;
  white-space: nowrap;
}

.body-view {
  padding: 12px;
}

.view-one {
  margin: 0 0 10px;
  padding: 14px;
  border: 1px solid rgba(24, 28, 39, 0.08);
  border-radius: var(--fo-radius-md);
  background: #fff;
  box-shadow: none;
}

.view-one:hover {
  border-color: rgba(230, 140, 34, 0.28);
  background: #FFFDF9;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  transform: none;
}

.view-one-left h4 {
  color: var(--fo-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.35;
}

.view-one-left p,
.body-no p {
  color: var(--fo-muted);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.view-one-right ol li,
.billing-sec .table ol li,
.product-sec .table ol li {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(40, 100, 180, 0.1);
  color: var(--fo-info);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.view-one-right ol li:before,
.billing-sec .table ol li:before,
.product-sec .table ol li:before {
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.orange-clr-two,
.clr-orange,
.billing-sec .table ol li.clr-orange {
  color: var(--fo-orange) !important;
}

.clr-red,
.billing-sec .table ol li.clr-red {
  color: var(--fo-danger) !important;
  background: rgba(180, 35, 24, 0.1);
}

.clr-green,
.billing-sec .table ol li.clr-green {
  color: var(--fo-success) !important;
  background: rgba(22, 138, 74, 0.1);
}

.mising {
  margin: 10px 0 0;
  padding: 11px 12px;
  height: auto;
  min-height: 36px;
  border: 1px solid rgba(230, 140, 34, 0.2);
  border-radius: var(--fo-radius-md);
  background: #FFF8EF;
  color: #8A4B08;
  display: block;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.45;
  text-align: left;
}

.mising img {
  width: 14px;
  height: 14px;
  margin-right: 8px;
  vertical-align: -2px;
}

.body-no,
.biling-empty-body {
  padding: 44px 24px;
}

.body-no img,
.biling-empty-body img {
  max-height: 130px;
  opacity: .92;
}

.body-no h4,
.biling-empty-body h4 {
  color: var(--fo-text);
  font-weight: 700;
}

.body-no p,
.biling-empty-body p {
  color: var(--fo-muted);
}

/* Buttons and controls */
.submit-btn,
.view-btn,
.edit-btn,
.new,
.login_bt,
.btn.login-submit-button,
.btn.register-submit-button,
.btn.forgotPassword-submit-button,
.btn.newPassword-submit-button {
  min-height: 40px;
  border-radius: var(--fo-radius-md);
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fo-font-sans);
  font-weight: 700;
  letter-spacing: 0;
}

.submit-btn,
.submit-btn-two,
.submit-btn-three,
.login_bt,
.btn.login-submit-button,
.btn.register-submit-button,
.btn.forgotPassword-submit-button,
.btn.newPassword-submit-button {
  background: var(--fo-orange);
  color: #fff !important;
  box-shadow: 0 6px 14px rgba(230, 140, 34, 0.18);
}

.submit-btn:hover,
.submit-btn-two:hover,
.submit-btn-three:hover,
.login_bt:hover,
.btn.login-submit-button:hover,
.btn.register-submit-button:hover,
.btn.forgotPassword-submit-button:hover,
.btn.newPassword-submit-button:hover {
  background: var(--fo-orange-hover);
  color: #fff !important;
  transform: translateY(-1px);
}

.view-btn,
.edit-btn {
  min-width: 76px;
  background: #fff;
  border-color: var(--fo-border-strong);
  color: var(--fo-navy-2);
}

.view-btn:hover,
.edit-btn:hover {
  border-color: rgba(230, 140, 34, 0.38);
  color: var(--fo-orange);
  box-shadow: var(--fo-shadow-sm);
}

.new {
  padding: 0 16px;
  color: var(--fo-orange);
  background: rgba(230, 140, 34, 0.1);
}

.new span {
  margin-right: 6px;
}

.new:hover {
  background: rgba(230, 140, 34, 0.16);
  color: var(--fo-orange-hover);
}

.wizrad-main .another-packge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-width: 0;
  height: 38px;
  padding: 0 14px;
  border: 1px dashed rgba(230, 140, 34, 0.42);
  border-radius: 10px;
  background: rgba(230, 140, 34, 0.08);
  color: var(--fo-orange);
  font-family: var(--fo-font-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
  white-space: nowrap;
}

.wizrad-main .another-packge span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-right: 0;
  border-radius: 50%;
  background: rgba(230, 140, 34, 0.14);
  color: currentColor;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.wizrad-main .another-packge:hover,
.wizrad-main .another-packge:focus {
  border-color: rgba(230, 140, 34, 0.62);
  background: rgba(230, 140, 34, 0.13);
  color: var(--fo-orange-hover);
  text-decoration: none;
  box-shadow: none;
}

.wizrad-main .pager.wizard {
  padding: 18px 15px 0 !important;
  border-top-color: rgba(24, 28, 39, 0.07);
}

.wizrad-main .pager.wizard li .last-btn {
  width: auto;
  min-width: 176px;
  height: 42px;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--fo-orange);
  color: #fff;
  font-family: var(--fo-font-sans);
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(230, 140, 34, 0.18);
}

.wizrad-main .pager.wizard li .last-btn:hover,
.wizrad-main .pager.wizard li .last-btn:focus {
  border-color: var(--fo-orange-hover);
  background: var(--fo-orange-hover);
  color: #fff;
  box-shadow: 0 12px 26px rgba(230, 140, 34, 0.24);
}

.form-group label {
  color: var(--fo-muted);
  font-family: var(--fo-font-sans);
  font-weight: 700;
}

.form-group .form-control,
.form-control,
.bootstrap-select > .dropdown-toggle,
.flatpickr-input {
  min-height: 42px;
  border: 1px solid var(--fo-border);
  border-radius: var(--fo-radius-md);
  background: #fff;
  color: var(--fo-text);
  box-shadow: none;
}

.form-group .form-control:focus,
.form-control:focus,
.bootstrap-select.open > .dropdown-toggle,
.bootstrap-select > .dropdown-toggle:focus,
.flatpickr-input:focus {
  border-color: rgba(230, 140, 34, 0.62) !important;
  box-shadow: 0 0 0 4px rgba(230, 140, 34, 0.12) !important;
  outline: 0 !important;
}

.top-search {
  padding: 18px 18px 12px;
  border-bottom: 1px solid var(--fo-border);
  background: #fff;
}

.top-search.search-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.selct-main {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.selct-main .form-group {
  display: flex;
  align-items: center;
  width: auto;
  min-width: 260px;
  max-width: none;
  margin-right: 0;
  margin-bottom: 0;
}

.selct-main .form-group label {
  flex: 0 0 auto;
  margin-right: 10px;
  margin-bottom: 0;
  white-space: nowrap;
}

.selct-main .form-group .position-relative {
  width: 210px;
  flex: 0 0 210px;
}

.selct-main .bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn),
.selct-main .bootstrap-select {
  width: 100%;
}

.selct-main .bootstrap-select > .dropdown-toggle {
  text-align: left;
}

.selct-main .bootstrap-select .dropdown-toggle .filter-option {
  color: var(--fo-text);
}

.search-form .status {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.billing-filter-bar .status,
.help-search {
  margin-top: 0;
}

.search-form .status li {
  height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: var(--fo-radius-md);
  color: var(--fo-muted);
  font-size: 13px;
  font-weight: 700;
}

.search-form .status li:first-child {
  padding-left: 0;
  border: 0;
  background: transparent;
}

.search-form .status li:not(:first-child) {
  background: #fff;
  border-color: var(--fo-border);
  cursor: pointer;
}

.search-form .status li a {
  min-height: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0 !important;
  border-radius: inherit;
  background: transparent !important;
  color: inherit;
  line-height: 1.2;
  text-decoration: none;
}

.search-form .status li:not(:first-child):hover {
  border-color: rgba(230, 140, 34, 0.32);
  background: #FFF9F2;
  color: var(--fo-orange);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.search-form .status li.active {
  border-color: rgba(230, 140, 34, 0.28);
  background: rgba(230, 140, 34, 0.12);
  color: var(--fo-orange);
}

.search-form .status li.active a,
.search-form .status li:not(:first-child):hover a,
.search-form .status li a:hover {
  color: var(--fo-orange);
}

/* Tables */
.bootstrap-table,
.fixed-table-container,
.table-responsive {
  border: 0 !important;
  border-radius: var(--fo-radius-lg);
}

.fixed-table-container {
  overflow: hidden;
}

.forwarderoneTable,
.table {
  margin-bottom: 0;
  background: #fff;
}

.forwarderoneTable > tbody > tr,
.bill-table-main .table > tbody > tr,
.express-air .table > tbody > tr,
.forwarderoneTable > tbody > tr > td,
.bill-table-main .table > tbody > tr > td,
.express-air .table > tbody > tr > td {
  transition: background-color .14s ease, box-shadow .14s ease;
}

.forwarderoneTable > thead > tr > th,
.table > thead > tr > th {
  padding: 15px 14px;
  border: 0 !important;
  border-bottom: 1px solid var(--fo-border) !important;
  background: #FAFAFB;
  color: #555B66;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  vertical-align: middle;
}

.forwarderoneTable > tbody > tr > td,
.table > tbody > tr > td {
  padding: 15px 14px;
  border-color: rgba(24, 28, 39, 0.07) !important;
  color: #3E4652;
  font-size: 13px;
  line-height: 1.45;
  vertical-align: middle;
}

.forwarderoneTable > tbody > tr:hover > td,
.forwarderoneTable > tbody > tr.hover > td,
.table-hover > tbody > tr:hover > td,
.bootstrap-table .table-hover > tbody > tr.hover > td,
.bill-table-main .table > tbody > tr.freight-box:hover > td,
.express-air .table > tbody > tr:not(.empty-tr):not(.footer-tr):hover > td {
  background: #FFF9F2 !important;
}

.fixed-table-body .forwarderoneTable > tbody > tr:hover > td:first-child,
.fixed-table-body .forwarderoneTable > tbody > tr.hover > td:first-child,
.bill-table-main .table > tbody > tr.freight-box:hover > td:first-child,
.express-air .table > tbody > tr:not(.empty-tr):not(.footer-tr):hover > td:first-child {
  box-shadow: inset 3px 0 0 rgba(230, 140, 34, 0.42);
}

.forwarderoneTable > tbody > tr.active-tr > td,
.forwarderoneTable > tbody > tr.active-tr:hover > td {
  background: #FFF4E6 !important;
}

.fixed-table-body .forwarderoneTable > tbody > tr.active-tr:hover > td:first-child,
.fixed-table-body .forwarderoneTable > tbody > tr.active-tr.hover > td:first-child {
  box-shadow: inset 3px 0 0 var(--fo-orange);
}

.fixed-table-body-columns .forwarderoneTable > tbody > tr:hover > td:first-child,
.fixed-table-body-columns .forwarderoneTable > tbody > tr.hover > td:first-child {
  box-shadow: none;
}

.bill-table-main .table > tbody > tr.fwd-tr:hover > td,
.bill-table-main .table > tbody > tr.total-box:hover > td,
.express-air .table > tbody > tr.empty-tr:hover > td,
.express-air .table > tbody > tr.footer-tr:hover > td {
  background: #fff !important;
  box-shadow: none;
}

.quote-detail-table th:nth-last-child(2),
.quote-detail-table td:nth-last-child(2) {
  width: 132px;
  text-align: center;
}

.quote-detail-table th:last-child,
.quote-detail-table td:last-child {
  width: 86px;
  text-align: center;
}

.quote-detail-table .view-btn,
.quote-detail-table .submit-btn-three {
  min-width: 82px;
  white-space: nowrap;
}

.quote-detail-page .main-sh {
  margin-bottom: 0;
}

.quote-detail-page > .container > .row > .col-lg-12 > .main-empty + .row {
  margin-top: 24px;
}

.quote-label-download {
  display: inline-flex;
  vertical-align: middle;
  margin-left: 8px;
}

.quote-label-download a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--fo-radius-md);
  background: rgba(230, 140, 34, 0.1);
  border: 1px solid rgba(230, 140, 34, 0.16);
}

.quote-label-download a:hover {
  background: rgba(230, 140, 34, 0.16);
  border-color: rgba(230, 140, 34, 0.28);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
}

.quote-label-download img {
  width: 15px;
  height: 15px;
  margin: 0 !important;
}

.attach {
  min-height: 30px;
  height: auto;
  gap: 8px;
  padding: 4px 8px;
}

.attach p {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.attach.active a {
  flex: 0 0 auto;
}

.footer-biling {
  border-top: 1px solid var(--fo-border);
  background: #fff;
}

.tips-box {
  border: 1px solid var(--fo-border);
  border-radius: var(--fo-radius-lg);
  box-shadow: var(--fo-shadow-lg);
}

/* Operational dashboard */
.dashboard-sec .dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 22px;
  align-items: start;
}

.dashboard-sec .dashboard-panel {
  min-width: 0;
}

.dashboard-sec .active-quoto-main,
.dashboard-sec .active-quoto {
  height: 100%;
  margin-bottom: 0;
}

.dashboard-sec .body-view {
  display: grid;
  gap: 10px;
}

.dashboard-sec .view-one {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "meta status"
    "title action";
  align-items: center;
  gap: 10px 18px;
  min-height: 112px;
}

.dashboard-sec .view-one-left {
  display: contents;
}

.dashboard-sec .view-one-left h4,
.dashboard-sec .view-one-left p {
  margin: 0;
  line-height: 1.35;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-sec .view-one-left h4 {
  grid-area: meta;
  min-width: 0;
  align-self: center;
}

.dashboard-sec .view-one-left p {
  grid-area: title;
  min-width: 0;
  align-self: center;
}

.dashboard-sec .view-one-right {
  display: contents;
}

.dashboard-sec .view-one-right ol {
  grid-area: status;
  justify-self: end;
  align-self: center;
  margin: 0;
  padding: 0;
}

.dashboard-sec .view-one-right > a {
  grid-area: action;
  justify-self: end;
  align-self: center;
}

.dashboard-sec .blance-body .view-one-left p {
  color: var(--fo-danger);
  font-weight: 700;
}

.dashboard-sec .mising {
  grid-column: 1 / -1;
  height: auto;
  min-height: 36px;
  padding: 8px 10px;
  align-items: flex-start;
  text-align: left;
  font-size: 12px;
  line-height: 1.45;
}

.dashboard-sec .mising span {
  display: inline-flex;
  margin-left: 6px;
  vertical-align: middle;
}

.dashboard-sec .mising span a {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--fo-radius-sm);
  background: rgba(230, 140, 34, 0.12);
}

.dashboard-sec .mising span img {
  width: 13px;
  height: 13px;
  margin: 0;
}

/* Detail pages */
.billing-sec-two,
.billing-sec-two.step-sec,
.shipment-two {
  padding-top: 140px !important;
}

.checklist,
.bill-main,
.new-product-box {
  border: 1px solid var(--fo-border);
  border-radius: var(--fo-radius-lg);
  background: #fff;
  box-shadow: var(--fo-shadow-sm);
  overflow: hidden;
}

.checklist {
  margin-bottom: 24px;
}

.checklist h3 {
  min-height: 50px;
  margin: 0;
  padding: 15px 20px;
  border-bottom: 1px solid var(--fo-border);
  background: #FBFCFD;
  color: var(--fo-text);
  font-size: 16px;
  font-weight: 750;
  letter-spacing: 0;
}

.body-checklist {
  border: 0;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.body-checklist h4,
.body-checklist .basic-box li,
.checklist-item li p,
.shipment-name span,
.shipment-name h5,
.timeline-innner li,
.bill-main,
.new-product-box,
.doc-one,
.uplod-doc,
.attach {
  color: var(--fo-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

.body-checklist h4 {
  font-weight: 750;
}

.body-checklist .basic-box li,
.checklist-item li p,
.timeline-innner li {
  color: #555B66;
  line-height: 1.6;
}

.body-checklist .basic-box li span,
.shipment-name h5 {
  color: var(--fo-text);
  font-weight: 600;
}

.doc-one,
.uplod-doc {
  border-radius: var(--fo-radius-md);
  background: #F7FAFC;
}

.top-bill img {
  display: block;
  width: 194px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 12px;
}

.invoice-template.bill-main {
  max-width: 1080px;
  padding: 52px 56px 44px;
  overflow: visible;
}

.invoice-template .top-bill {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 54px;
  text-align: left;
}

.invoice-template .invoice-brand img {
  width: 264px;
  margin: 0;
}

.invoice-template .invoice-title-block {
  text-align: right;
}

.invoice-template .invoice-title-block h3 {
  margin: 0 0 6px;
  color: #081D35;
  font-size: 36px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.invoice-template .invoice-title-block span {
  display: block;
  color: #6D7480;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.35;
}

.invoice-template .invoice-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 236px;
  gap: 44px;
  align-items: center;
  margin-bottom: 46px;
}

.invoice-template .invoice-summary p {
  margin: 0 0 12px;
  color: #69717F;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.invoice-template .invoice-summary h1 {
  max-width: 640px;
  margin: 0;
  color: #081D35;
  font-size: 42px;
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: 0;
}

.invoice-template .invoice-amount-card {
  min-height: 176px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #081D35;
  border-left: 5px solid var(--fo-orange);
  border-radius: 0;
  color: #fff;
}

.invoice-template .invoice-amount-card span {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .04em;
  line-height: 1.3;
  text-transform: uppercase;
}

.invoice-template .invoice-amount-card strong {
  display: block;
  color: #fff;
  font-size: 32px;
  font-weight: 850;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.invoice-template .invoice-amount-card small {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .04em;
}

.invoice-template .recipien-box {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 0 0 42px;
}

.invoice-template .recipien-box li {
  display: block;
  margin: 0;
  color: var(--fo-text);
  line-height: 1.35;
}

.invoice-template .recipien-box li span {
  display: block;
  margin-bottom: 7px;
  color: #6D7480;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .03em;
  line-height: 1.25;
  text-transform: uppercase;
}

.invoice-template .recipien-box li strong {
  display: block;
  color: var(--fo-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.invoice-template .invoice-section-title {
  margin: 0 0 14px;
  color: #081D35;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.35;
}

.invoice-template .bill-table-main {
  margin-bottom: 34px;
  overflow-x: auto;
}

.invoice-template .bill-table-main .table {
  min-width: 760px;
  border-collapse: collapse;
}

.invoice-template .bill-table-main .table > thead > tr > th {
  padding: 10px 14px;
  border-bottom: 0 !important;
  background: #081D35 !important;
  color: #fff !important;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
}

.invoice-template .bill-table-main .table > thead > tr > th:last-child {
  text-align: right;
}

.invoice-template .bill-table-main .table > tbody > tr > td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(8, 29, 53, 0.12) !important;
  color: var(--fo-text);
  font-size: 14px;
  line-height: 1.45;
}

.invoice-template .bill-table-main .table > tbody > tr.fwd-tr > td {
  padding-top: 14px;
  padding-bottom: 14px;
  border-left: 3px solid var(--fo-orange) !important;
  background: #FFF9F2;
}

.invoice-template .fwd {
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.invoice-template .fwd h3 {
  margin: 0;
  color: var(--fo-text);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.3;
}

.invoice-template .fwd span {
  width: auto;
  min-width: 116px;
  padding: 0 12px;
  background: rgba(230, 140, 34, 0.1);
  color: var(--fo-orange);
  font-size: 13px;
  font-weight: 750;
}

.invoice-template .bill-table-main .table > tbody > tr.total-box > td {
  padding-top: 20px;
  padding-bottom: 20px;
  border-top: 2px solid rgba(8, 29, 53, 0.18) !important;
  border-bottom: 0 !important;
  font-size: 24px;
}

.invoice-template .bill-table-main .table > tbody > tr.total-box strong {
  color: #081D35;
  font-size: 26px;
  font-weight: 850;
}

.invoice-template .payment-area h3 {
  margin: 0 0 14px;
  color: #081D35;
  font-size: 18px;
  font-weight: 750;
}

.invoice-template .payment-one {
  margin-bottom: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(8, 29, 53, 0.12);
  border-radius: var(--fo-radius-md);
  background: #fff;
  box-shadow: none;
}

.invoice-template .payment-one:hover {
  border-color: rgba(230, 140, 34, 0.34);
}

.invoice-template .payment-one:has(input[type="radio"]:checked) {
  border-color: rgba(230, 140, 34, 0.42);
  background: #FFF9F2;
}

.invoice-template .stripe-one {
  gap: 18px;
}

.invoice-template .cards-img {
  flex: 0 0 auto;
}

.invoice-template .cards-img img {
  display: block;
  width: 226px;
  max-width: 100%;
  height: auto;
}

.invoice-template .bank-detail {
  margin-top: 16px;
  padding: 0;
  border-top: 1px solid rgba(8, 29, 53, 0.12);
}

.invoice-template .bank-detail li {
  display: grid;
  grid-template-columns: minmax(180px, .75fr) minmax(0, 1.25fr);
  gap: 24px;
  margin: 0;
  padding: 9px 0;
  border-bottom: 1px solid rgba(8, 29, 53, 0.08);
  color: var(--fo-text);
  line-height: 1.35;
}

.invoice-template .bank-detail li:last-child {
  border-bottom: 0;
}

.invoice-template .bank-detail li span {
  width: auto;
  overflow-wrap: anywhere;
}

.invoice-template .bank-detail li span:first-child {
  color: #6D7480;
  font-weight: 800;
}

.uplod-doc {
  border: 1px solid transparent;
}

.uplod-doc span,
.downlod-btn,
.pay-btn {
  min-height: 38px;
  border-radius: var(--fo-radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0;
}

.uplod-doc span,
.downlod-btn {
  border: 1px solid var(--fo-border-strong);
  background: #fff;
  color: var(--fo-navy-2);
  box-shadow: none;
}

.uplod-doc span {
  width: auto;
  height: auto;
  min-width: 84px;
  padding: 0;
  border: 0;
  background: transparent;
}

.uplod-doc span > div[id^="upload_file"] {
  min-height: 38px;
  display: flex;
  align-items: center;
}

.uplod-doc .uploadify-button {
  min-width: 78px;
  max-width: none;
  height: 34px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid var(--fo-border-strong);
  border-radius: var(--fo-radius-md);
  background: #fff;
  color: var(--fo-navy-2);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 32px;
  text-decoration: none;
  box-shadow: none;
}

.uplod-doc .uploadify-button:hover {
  border-color: rgba(230, 140, 34, 0.38);
  background: #fff;
  color: var(--fo-orange);
}

.uplod-doc span:hover,
.downlod-btn:hover {
  border-color: rgba(230, 140, 34, 0.38);
  color: var(--fo-orange);
  box-shadow: var(--fo-shadow-sm);
}

.pay-btn {
  border: 1px solid transparent;
  background: var(--fo-orange);
  color: #fff !important;
  box-shadow: 0 6px 14px rgba(230, 140, 34, 0.18);
}

.pay-btn:hover {
  background: var(--fo-orange-hover);
  color: #fff !important;
}

.forwarderoneTable .submit-btn:hover,
.forwarderoneTable .view-btn:hover,
.forwarderoneTable .edit-btn:hover,
.table .submit-btn:hover,
.table .view-btn:hover,
.table .edit-btn:hover,
.table .downlod-btn:hover,
.table .pay-btn:hover,
.view-one .submit-btn:hover,
.view-one .view-btn:hover,
.view-one .edit-btn:hover {
  transform: none;
}

.submit-btn:focus-visible,
.submit-btn-two:focus-visible,
.submit-btn-three:focus-visible,
.view-btn:focus-visible,
.edit-btn:focus-visible,
.downlod-btn:focus-visible,
.pay-btn:focus-visible,
.quote-label-download a:focus-visible {
  outline: 3px solid rgba(230, 140, 34, 0.22);
  outline-offset: 2px;
}

a.clr-red {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  color: var(--fo-danger) !important;
  background: transparent !important;
  border: 0;
  font-weight: 700;
}

a.clr-red:hover {
  color: #8F1D15 !important;
  text-decoration: underline;
}

/* Account pages */
.main-account {
  padding-bottom: 32px;
}

#pills-tab {
  border-bottom: 1px solid var(--fo-border);
  background: #fff;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: var(--fo-orange);
}

#pills-tab .nav-link.active:after {
  background: var(--fo-orange);
}

.tab-data {
  max-width: 560px;
}

.tab-data h3 {
  color: var(--fo-text);
  font-size: 18px;
}

/* Help */
.help-search {
  justify-content: flex-start;
}

.help-search .seach-from {
  max-width: 420px;
  margin-right: 0;
}

.help-list {
  padding: 0 12px 12px;
  background: #fff;
}

.help-support-strip {
  margin: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(230, 140, 34, 0.18);
  border-radius: var(--fo-radius-md);
  background: #FFF9F0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.help-support-strip h3 {
  margin: 0 0 4px;
  color: var(--fo-text);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.help-support-strip p {
  margin: 0;
  color: #6F737C;
  font-size: 13px;
}

.help-support-action {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(230, 140, 34, 0.26);
  border-radius: var(--fo-radius-md);
  background: #fff;
  color: var(--fo-orange);
  font-weight: 800;
  white-space: nowrap;
}

.help-support-action:hover {
  border-color: rgba(230, 140, 34, 0.44);
  box-shadow: var(--fo-shadow-sm);
}

.help-item {
  padding: 18px 18px 20px;
  border: 1px solid rgba(24, 28, 39, 0.08);
  border-radius: var(--fo-radius-md);
  background: #fff;
  box-shadow: var(--fo-shadow-sm);
}

.help-item + .help-item {
  margin-top: 12px;
}

.help-item h3 {
  margin: 0 0 8px;
  color: var(--fo-text);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
}

.help-copy {
  color: var(--fo-muted);
  font-size: 14px;
  line-height: 1.65;
}

.help-copy,
.help-copy * {
  color: #606672 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.65 !important;
  letter-spacing: 0 !important;
}

.help-copy p {
  margin-bottom: 8px;
}

#zohohc-asap-web-launcherbox {
  display: none !important;
}

/* Auth screens */
.page_body {
  background:
    linear-gradient(120deg, rgba(12, 15, 44, 0.78), rgba(21, 55, 96, 0.58)),
    url("../person/images/6852556770c930d2a861aa4b15f4006.jpg") center/cover no-repeat !important;
}

.page_body .login_left h1,
.page_body .login_left p {
  letter-spacing: 0;
  text-shadow: 0 12px 34px rgba(12, 15, 44, 0.32);
}

.page_body .login_right {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--fo-shadow-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.page_body .input_lili input {
  border-radius: 12px;
  border-color: rgba(12, 15, 44, 0.12);
}

.page_body .nav_top div {
  border-radius: 999px;
}

#SignInPage,
#RegisterPage,
#resetPasswordPage {
  box-sizing: border-box;
  width: 100%;
  min-height: 100vh;
  max-width: none;
  padding: 0 28px 42px;
  background:
    radial-gradient(circle at top right, rgba(230, 140, 34, 0.12), transparent 28rem),
    linear-gradient(180deg, #FFFFFF 0%, #F7F8FA 100%);
}

#SignInPage header,
#RegisterPage header,
#resetPasswordPage header {
  max-width: 1180px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(24, 28, 39, 0.08);
}

#SignInPage .page-grid,
#RegisterPage .page-grid,
#resetPasswordPage .page-grid {
  max-width: 1180px;
}

#SignInPage .reg-warp.page-grid,
#resetPasswordPage .reg-warp.page-grid {
  max-width: 520px;
  width: min(100%, 520px);
  margin: 44px auto 0;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  display: flex;
  justify-content: center;
}

#SignInPage .logo-wrap img,
#RegisterPage .logo-wrap img,
#resetPasswordPage .logo-wrap img {
  max-width: 185px;
}

#SignInPage .signin-header {
  box-sizing: border-box;
  width: min(100%, 1180px);
  min-height: 72px;
  padding: 28px 28px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
}

#SignInPage .signin-header .page-grid {
  width: 100%;
  max-width: none;
  min-height: 44px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

#SignInPage .signin-header .left-side {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#SignInPage .signin-header .logo-wrap,
#SignInPage .signin-header .logo-wrap a {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

#SignInPage .signin-header .logo-wrap img,
#SignInPage .signin-header #logo {
  display: block;
  width: 230px;
  max-width: 230px;
  height: auto;
  max-height: 34px;
  padding: 0;
  object-fit: contain;
}

#SignInPage .signin-header .right-side {
  display: none;
}

#SignInPage .right-side a,
#RegisterPage .right-side a,
#resetPasswordPage .right-side a,
#forgotPassLink,
.backArea a,
.registerNow a span,
.regNow a span {
  color: var(--fo-orange);
  font-weight: 700;
}

#SignInPage .reg-warp,
#RegisterPage .reg-warp,
#resetPasswordPage .reg-warp {
  min-height: calc(100vh - 190px);
  align-items: center;
  gap: 48px;
  animation: foSurfaceIn .34s ease both;
}

#SignInPage .reg-warp {
  min-height: auto;
  padding-top: 42px;
  padding-bottom: 72px;
}

#SignInPage .reg-warp.page-grid {
  margin-top: 0;
}

#SignInPage .formWarp,
#RegisterPage .formWarp,
#resetPasswordPage .formWarp {
  width: 100%;
  max-width: 520px;
  border: 1px solid var(--fo-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--fo-shadow-lg);
}

#SignInPage .formWarp form,
#resetPasswordPage .formWarp form {
  padding: 48px 56px 22px;
}

#SignInPage .group,
#resetPasswordPage .group {
  margin-bottom: 18px;
}

#SignInPage .group label,
#resetPasswordPage .group label {
  position: static;
  display: block;
  margin: 0 0 6px;
  color: var(--fo-muted);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 700;
  pointer-events: auto;
}

#SignInPage .group input,
#resetPasswordPage .group input {
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border-radius: var(--fo-radius-md);
  border: 1px solid var(--fo-border-strong);
  background: #fff;
  line-height: 48px;
}

#SignInPage .group .highlight,
#SignInPage .group .bar,
#resetPasswordPage .group .highlight,
#resetPasswordPage .group .bar {
  display: none;
}

#RegisterPage .imgWarp {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--fo-shadow-lg);
}

#SignInPage .formContainer h1,
#RegisterPage .formContainer h1,
#resetPasswordPage .formContainer h1 {
  color: var(--fo-navy);
  letter-spacing: 0;
}

#SignInPage .group input,
#RegisterPage .group input,
#resetPasswordPage .group input {
  color: var(--fo-text);
}

#SignInPage .group .bar:before,
#SignInPage .group .bar:after,
#RegisterPage .group .bar:before,
#RegisterPage .group .bar:after,
#resetPasswordPage .group .bar:before,
#resetPasswordPage .group .bar:after {
  background: var(--fo-orange);
}

#SignInPage .regNow a,
#RegisterPage .regNow a,
#resetPasswordPage .regNow a {
  border-radius: 14px;
  border-color: var(--fo-border);
  background: #fff;
}

#SignInPage .regNow a:hover,
#RegisterPage .regNow a:hover,
#resetPasswordPage .regNow a:hover {
  border-color: rgba(230, 140, 34, 0.36);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

@media (min-width: 768px) and (max-width: 1199px) {
  .dashboard-sec .dashboard-grid {
    gap: 14px;
  }

  .dashboard-sec .head-active {
    gap: 8px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .dashboard-sec .head-active h3 {
    font-size: 15px;
    line-height: 1.3;
  }

  .dashboard-sec .view-one {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 14px;
  }

  .dashboard-sec .view-one-right {
    display: contents;
  }

  .dashboard-sec .view-one-right ol {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .dashboard-sec .dashboard-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 991px) {
  .top-bar {
    min-height: 68px;
    padding: 14px 20px;
  }

  .invoice-template.bill-main {
    padding: 38px 32px 34px;
  }

  .invoice-template .top-bill,
  .invoice-template .invoice-hero {
    gap: 24px;
  }

  .invoice-template .invoice-brand img {
    width: 220px;
  }

  .invoice-template .invoice-title-block h3 {
    font-size: 30px;
  }

  .invoice-template .invoice-summary h1 {
    font-size: 34px;
  }

  .invoice-template .invoice-hero {
    grid-template-columns: minmax(0, 1fr) 210px;
  }

  .invoice-template .recipien-box {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inner-sec {
    padding-top: 92px;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .active-quoto-main,
  .active-quoto,
  .main-empty,
  .main-account {
    border-radius: var(--fo-radius-lg);
  }

  #SignInPage,
  #RegisterPage,
  #resetPasswordPage {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 767px) {
  .wrapper {
    padding-left: 0;
  }

  .invoice-template.bill-main {
    padding: 28px 20px 26px;
  }

  .invoice-template .top-bill {
    display: block;
    margin-bottom: 34px;
  }

  .invoice-template .invoice-brand img {
    width: 210px;
    margin-bottom: 18px;
  }

  .invoice-template .invoice-title-block {
    text-align: left;
  }

  .invoice-template .invoice-title-block h3 {
    font-size: 28px;
  }

  .invoice-template .invoice-hero {
    display: block;
    margin-bottom: 30px;
  }

  .invoice-template .invoice-summary h1 {
    font-size: 28px;
  }

  .invoice-template .invoice-amount-card {
    min-height: 140px;
    margin-top: 20px;
  }

  .invoice-template .recipien-box {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .invoice-template .bank-detail li {
    grid-template-columns: minmax(0, 1fr);
    gap: 4px;
  }

  .invoice-template .cards-img {
    width: 100%;
  }

  .invoice-template .cards-img img {
    width: min(226px, 100%);
  }

  .sidebar {
    width: 284px;
    transform: translateX(-100%);
    transition: transform .2s ease;
  }

  .wrapper.active .sidebar,
  .sidebar.active {
    transform: translateX(0);
  }

  .top-bar {
    left: 0;
    width: 100%;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    column-gap: 10px;
    position: fixed;
  }

  .top-bar .menu {
    display: inline-flex;
  }

  .top-bar h2 {
    position: absolute;
    grid-column: 1 / -1;
    left: 50%;
    max-width: calc(100% - 190px);
    transform: translateX(-50%);
    min-width: 0;
    font-size: 19px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .top-bar .submit-btn-two {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    min-height: 36px;
    padding: 0 13px;
    font-size: 12px;
    white-space: nowrap;
  }

  .top-bar.d-block {
    display: block !important;
    min-height: 164px;
    padding: 12px 18px 10px;
  }

  .top-bar.d-block .bill-heading {
    display: block !important;
  }

  .top-bar.d-block .bill-heading h2 {
    position: static;
    transform: none;
    max-width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 6px 10px;
    font-size: 20px;
    line-height: 1.2;
  }

  .top-bar.d-block .menu {
    width: 34px;
    height: 34px;
    margin-bottom: 2px;
  }

  .top-bar.d-block .breadcrumb {
    margin-bottom: 6px;
    font-size: 13px;
  }

  .top-bar.d-block .bill-heading .tag {
    width: max-content;
    margin: 0;
  }

  .top-bar.d-block .downlod-list {
    margin-top: 8px;
    justify-content: center;
  }

  .top-bar.d-block .downlod-list .view-btn,
  .top-bar.d-block .downlod-list .pay-btn,
  .top-bar.d-block .downlod-list .downlod-btn {
    min-height: 34px;
  }

  .top-bar.d-block + .inner-sec {
    padding-top: 184px !important;
  }

  .selct-main {
    display: block;
  }

  .top-search.search-form {
    display: block;
  }

  .selct-main .form-group {
    min-width: 0;
    width: 100%;
  }

  .selct-main .form-group .position-relative {
    width: 100%;
    flex-basis: 100%;
  }

  .fixed-table-body {
    overflow-x: auto;
  }

  .forwarderoneTable {
    min-width: 760px;
  }

  .view-one {
    display: block;
  }

  .view-one-right {
    margin-top: 12px;
  }

  .dashboard-sec .view-one {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .dashboard-sec .view-one-right {
    margin-top: 0;
  }

  .help-support-strip {
    display: block;
  }

  .help-support-action {
    width: 100%;
    margin-top: 12px;
  }

  #SignInPage .reg-warp,
  #RegisterPage .reg-warp,
  #resetPasswordPage .reg-warp {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  #SignInPage,
  #resetPasswordPage {
    padding-left: 16px;
    padding-right: 16px;
  }

  #SignInPage .signin-header {
    min-height: 56px;
    padding: 20px 14px 0;
  }

  #SignInPage .signin-header .page-grid {
    min-height: 36px;
  }

  #SignInPage .signin-header .logo-wrap img,
  #SignInPage .signin-header #logo {
    width: 196px;
    max-width: 196px;
    max-height: 28px;
  }

  #SignInPage .reg-warp.page-grid,
  #resetPasswordPage .reg-warp.page-grid {
    width: 100%;
    max-width: none;
    margin-top: 24px;
  }

  #SignInPage .formWarp,
  #RegisterPage .formWarp,
  #resetPasswordPage .formWarp {
    max-width: 100%;
    border-radius: 18px;
  }

  #SignInPage .formWarp form,
  #resetPasswordPage .formWarp form {
    padding: 34px 24px 20px;
  }

  #SignInPage .regNow,
  #resetPasswordPage .regNow {
    margin-left: 24px;
    margin-right: 24px;
  }

  #RegisterPage .imgWarp {
    display: none;
  }
}

@media (max-width: 767px) {
  .dashboard-sec .view-one {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "meta"
      "status"
      "title"
      "action";
  }

  .dashboard-sec .view-one-right ol,
  .dashboard-sec .view-one-right > a {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 479px) {
  .top-bar {
    padding: 12px 14px;
  }

  .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .head-active,
  .top-search,
  .body-view {
    padding-left: 12px;
    padding-right: 12px;
  }

  .page_body .login_left h1 {
    font-size: 38px;
    line-height: 1.1;
  }

  .page_body .login_left p {
    font-size: 18px;
  }
}

@media print {
  @page {
    size: A4 portrait;
    margin: 10mm;
  }

  html,
  body {
    width: auto !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  body * {
    visibility: hidden !important;
  }

  #print,
  #print * {
    visibility: visible !important;
  }

  .wrapper,
  .content,
  .inner-sec,
  .billing-sec-two,
  .container,
  .row,
  .col-lg-12 {
    position: static !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .sidebar,
  .top-bar,
  .top-bar.d-block,
  .modelAlert,
  .modal,
  .alert {
    display: none !important;
  }

  .invoice-template.bill-main {
    position: absolute !important;
    inset: 0 auto auto 0 !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: none !important;
    color: #17202A !important;
    font-family: Arial, Helvetica, sans-serif !important;
    overflow: visible !important;
  }

  .invoice-template .top-bill,
  .invoice-template .invoice-hero,
  .invoice-template .recipien-box,
  .invoice-template .payment-area {
    break-inside: avoid !important;
    page-break-inside: avoid !important;
  }

  .invoice-template .top-bill {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 24px !important;
    align-items: start !important;
    margin-bottom: 34px !important;
  }

  .invoice-template .invoice-brand img {
    width: 218px !important;
    max-width: 218px !important;
    height: auto !important;
  }

  .invoice-template .invoice-title-block {
    text-align: right !important;
  }

  .invoice-template .invoice-title-block h3 {
    margin: 0 !important;
    color: #081D35 !important;
    font-size: 38px !important;
    font-weight: 850 !important;
    line-height: 1 !important;
    text-transform: uppercase !important;
  }

  .invoice-template .invoice-title-block span {
    display: block !important;
    margin-top: 10px !important;
    color: #6D7480 !important;
    font-size: 14px !important;
    font-weight: 850 !important;
  }

  .invoice-template .invoice-hero {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 220px !important;
    gap: 28px !important;
    align-items: end !important;
    margin-bottom: 30px !important;
  }

  .invoice-template .invoice-summary p {
    margin: 0 0 8px !important;
    color: #69717F !important;
    font-size: 13px !important;
    font-weight: 750 !important;
  }

  .invoice-template .invoice-summary h1 {
    max-width: none !important;
    margin: 0 !important;
    color: #081D35 !important;
    font-size: 34px !important;
    font-weight: 850 !important;
    line-height: 1.1 !important;
  }

  .invoice-template .invoice-amount-card {
    min-height: 118px !important;
    padding: 18px !important;
    background: #081D35 !important;
    border-left: 4px solid #E68C22 !important;
    color: #fff !important;
  }

  .invoice-template .invoice-amount-card span {
    margin-bottom: 10px !important;
    color: rgba(255, 255, 255, .76) !important;
    font-size: 10px !important;
    font-weight: 850 !important;
    letter-spacing: .04em !important;
    text-transform: uppercase !important;
  }

  .invoice-template .invoice-amount-card strong {
    color: #fff !important;
    font-size: 28px !important;
    font-weight: 850 !important;
  }

  .invoice-template .invoice-amount-card small {
    color: rgba(255, 255, 255, .72) !important;
    font-size: 12px !important;
    font-weight: 850 !important;
  }

  .invoice-template .recipien-box {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
    margin: 0 0 26px !important;
    padding: 0 !important;
    list-style: none !important;
  }

  .invoice-template .recipien-box li {
    display: block !important;
    margin: 0 !important;
    color: #17202A !important;
  }

  .invoice-template .recipien-box li span {
    display: block !important;
    margin-bottom: 5px !important;
    color: #6D7480 !important;
    font-size: 10px !important;
    font-weight: 850 !important;
    letter-spacing: .03em !important;
    text-transform: uppercase !important;
  }

  .invoice-template .recipien-box li strong {
    display: block !important;
    color: #17202A !important;
    font-size: 14px !important;
    font-weight: 850 !important;
  }

  .invoice-template .invoice-section-title,
  .invoice-template .payment-area h3 {
    margin: 0 0 10px !important;
    color: #081D35 !important;
    font-size: 17px !important;
    font-weight: 850 !important;
  }

  .invoice-template .bill-table-main {
    margin-bottom: 26px !important;
    overflow: visible !important;
  }

  .invoice-template .bill-table-main .table {
    width: 100% !important;
    min-width: 0 !important;
    border-collapse: collapse !important;
  }

  .invoice-template .bill-table-main .table > thead > tr > th {
    padding: 9px 10px !important;
    background: #081D35 !important;
    border: 0 !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 850 !important;
    line-height: 1.25 !important;
  }

  .invoice-template .bill-table-main .table > tbody > tr > td {
    padding: 10px !important;
    background: #fff !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(8, 29, 53, .14) !important;
    color: #17202A !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  .invoice-template .bill-table-main .table > tbody > tr.fwd-tr > td {
    padding: 12px 10px !important;
    background: #FFF9F2 !important;
    border-left: 3px solid #E68C22 !important;
  }

  .invoice-template .fwd {
    display: flex !important;
    align-items: center !important;
    gap: 8px 12px !important;
  }

  .invoice-template .fwd h3 {
    margin: 0 !important;
    color: #17202A !important;
    font-size: 14px !important;
    font-weight: 850 !important;
  }

  .invoice-template .fwd span {
    width: auto !important;
    min-width: 90px !important;
    height: auto !important;
    padding: 4px 10px !important;
    background: rgba(230, 140, 34, .1) !important;
    color: #E68C22 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    text-align: center !important;
  }

  .invoice-template .bill-table-main .table > tbody > tr.total-box > td {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    border-top: 2px solid rgba(8, 29, 53, .22) !important;
    border-bottom: 0 !important;
  }

  .invoice-template .bill-table-main .table > tbody > tr.total-box strong {
    color: #081D35 !important;
    font-size: 22px !important;
    font-weight: 850 !important;
  }

  .invoice-template .payment-one {
    margin-bottom: 10px !important;
    padding: 14px 16px !important;
    border: 1px solid rgba(8, 29, 53, .14) !important;
    border-radius: 8px !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .invoice-template .payment-one:has(input[type="radio"]:checked) {
    border-color: rgba(230, 140, 34, .46) !important;
    background: #FFF9F2 !important;
  }

  .invoice-template .stripe-one {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 14px !important;
  }

  .invoice-template .container-check {
    flex: 1 1 auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding-left: 0 !important;
    margin: 0 !important;
    color: #3D434B !important;
    font-size: 13px !important;
    font-weight: 800 !important;
  }

  .invoice-template .container-check .checkmark {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    flex: 0 0 16px !important;
    display: inline-block !important;
  }

  .invoice-template .container-check span:not(.checkmark) {
    color: #3D434B !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    line-height: 1.4 !important;
    white-space: nowrap !important;
  }

  .invoice-template .cards-img img {
    width: 180px !important;
    max-width: 180px !important;
    height: auto !important;
  }

  .invoice-template .bank-detail {
    margin: 12px 0 0 !important;
    padding: 0 !important;
    border-top: 1px solid rgba(8, 29, 53, .14) !important;
    list-style: none !important;
  }

  .invoice-template .bank-detail li {
    display: grid !important;
    grid-template-columns: 150px minmax(0, 1fr) !important;
    gap: 18px !important;
    margin: 0 !important;
    padding: 8px 0 !important;
    border-bottom: 1px solid rgba(8, 29, 53, .1) !important;
    color: #17202A !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
  }

  .invoice-template .bank-detail li:last-child {
    border-bottom: 0 !important;
  }

  .invoice-template .bank-detail li span:first-child {
    color: #6D7480 !important;
    font-weight: 850 !important;
  }
}
