:root {
  --primary: #00649F;
  --bg-primary: #00649F;
  --right-nav-width: 500px;
  --right-nav-width-: -500px;
  --border-color: #dddcdc;
}

.cursor-pointer {
  cursor: pointer;
}

.lh-1{
  line-height: 1;
}

.lh-1_2{
  line-height: 1.2;
}

.lh-1_5{
  line-height: 1.5;
}

.flex-m {
  align-items: center;
  display: flex !important;
  justify-content: flex-start;
}

.flex-ms {
  justify-content: space-between;
  align-items: center;
  display: flex !important;
}

.flex-cc {
  align-items: center;
  display: flex !important;
  justify-content: center;
}

.border-bottom-p{
  border-bottom: solid 1px #eff2f7;
  padding: 2px 1px;
}

.border-bottom-p.bbpnp{
  border-bottom: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--primary);
  font-weight: 600;
}

body,
html {
  height: 100%;
  width: 100%;
  background-color: #fff;
}

.layout-container {
  /* display: flex;
  flex-direction: row;
  height: calc(100vh - 0px);
  margin-top: 0px; */
}

.nav-apps-container {
  -webkit-box-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 10px;
  padding-top: 50px;
  width: 50px;
  height: 100%;
  background-color: var(--bg-primary);
  color: rgb(255, 255, 255);
  z-index: 5;
  bottom: 0px;
  left: 0px;
  position: fixed;
  top: 0px;
}

.nav-container {
  width: 280px;
  height: calc(100vh - 0px);
  background-color: #f9f9f9;
  transition: left 0.1s;
  z-index: 4;
  bottom: 0px;
  left: 50px;
  position: fixed;
  top: 0px;
}

.body-content {
  margin-left: 330px;
  overflow: hidden;
  transition: margin-left 0.1s;
}

.page-content {
  margin-top: 50px;
  padding-top: 15px;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 15px;
  min-height: 500px;
}

.css-7qmfuy {
  display: flex;
  height: 100vh;
  position: sticky;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

.mini-header {
  height: 50px;
  display: flex;
  align-items: center;
}

.logo-box {
  justify-content: center;
}

.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  padding-left: 330px;
  width: 100%;
  transition: padding-left 0.1s;
}

.nav-header-container {
  justify-content: space-between;
  align-items: center;
  display: flex;
  flex-direction: row;
  height: 50px;
  margin-left: 25px;
  margin-right: 25px;
  background-color: #fff;
}

.nav-header-container .page-title {
  margin: 0 !important;
  text-transform: uppercase;
  font-size: 15px;
}

.nav-toggle {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
}

.nav-toggle i {
  font-size: 17px !important;
}

.nav-menu-block {
  height: 50px;
  display: flex;
  align-items: center;
  width: 50px;
  justify-content: center;
}

.nav-menu-block i {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.nav-user-avatar {
  width: 30px;
  height: 30px;
  color: var(--primary);
  overflow: hidden;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
}

.toggle-nav .nav-container {
  left: -280px;
}

.toggle-nav .body-content {
  margin-left: 50px;
}

.toggle-nav .nav-header {
  padding-left: 50px;
}

.toggle-right-bar .body-content {
  margin-right: var(--right-nav-width);
}

.toggle-right-bar .nav-header {
  padding-right: var(--right-nav-width);
}

.nav-container-right {
  width: var(--right-nav-width);
  height: 100vh;
  background-color: #f9f9f9;
  transition: right 0.1s;
  z-index: 1;
  bottom: 0px;
  right: var(--right-nav-width-);
  position: fixed;
  top: 0px;
  z-index: 1;
}

.toggle-right-bar .nav-container-right {
  right: 0;
}

.container-right {
  padding: 15px 20px;
}

.nav-right-header {
  height: 50px;
  padding-left: 20px;
  padding-right: 20px;
}

.nrh-title {
  height: 50px;
  position: relative;
}

.btn-toggle-right-box {
  position: absolute;
  z-index: 2;
  left: -40px;
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: left 0.1s;
}

.btn-toggle-right-box .btn-trb {
  width: 22px;
  height: 22px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 0 0.1rem 0.2rem rgb(78, 78, 78, 0.4);
  box-shadow: 0 0.1rem 0.2rem rgb(78, 78, 78, 0.4);
  display: inline-block;
}

.btn-toggle-right-box .btn-trb i {
  font-size: 20px;
  color: var(--primary);
  transition-duration: 0.2s;
  transition-property: transform;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}

.btn-toggle-right-box:hover .btn-trb i {
  color: #fff;
}

.btn-toggle-right-box:hover .btn-trb {
  background-color: var(--primary);
}

.toggle-right-bar .btn-toggle-right-box {
  left: -16px;
}

.toggle-right-bar .btn-toggle-right-box .btn-trb i {
  transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
}

.summary {
  padding: 10px;
  border-bottom: solid 1px #dddcdc;
}

.summary.summary-dash {
  padding: 10px 0;
}

.summary.summary-plain {
  padding: 0 0 15px 0;
  margin-bottom: 15px;
}

.summary.summary-nob {
  border-bottom: none;
}

.summary .badge {
  font-size: 12px;
}

.summary .summary-title {
  margin-bottom: 2px;
}

.smy-titles {
  font-weight: 600;
  color: #333;
}

.smy-block.smy-block-md .smy-desc {
  font-size: 16px;
}

.summary:not(.summary-plain):hover {
  background-color: #f3f3f3;
}

.cr-hs .cr-header {
  height: 40px;
}

.cr-header h5 {
  margin-bottom: 0.4rem !important;
}

.cr-content {
  height: calc(100vh - 135px);
  margin-top: 15px;
}

.flex-space {
  display: flex;
  justify-content: space-between;
}

.menu-primary {
  border-bottom: solid 1px var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

#sidebar-menu ul li a.active i {
  color: var(--primary);
}

#sidebar-menu ul li a.active {
  color: var(--primary);
  font-weight: 500;
}

.breadcrumb {
  background-color: transparent;
  margin: 0;
  padding: 0;
}

.card {
  -webkit-box-shadow: 0 0.3rem 0.7rem rgb(18 38 63 / 10%);
  box-shadow: 0 0.3rem 0.7rem rgb(18 38 63 / 10%);
}

.placeholder-block {
  text-align: center;
  padding: 4em 0;
}

#sidebar-menu ul.menu-primary li a.active {
  color: var(--primary);
  font-weight: 500;
  padding-left: 35px;
}

#sidebar-menu ul.menu-primary li a.active:before {
  content: "\eb1c";
  font-family: "boxicons";
  height: 20px;
  color: var(--primary);
  position: absolute;
  font-size: 17px;
  top: 7px;
  left: 15px;
  top: 7px;
  left: 15px;
}

.smy-ssb {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.smy-ssb>*:last-child {
  text-align: right;
}

.summary .smy-ssb:last-child {
  margin-bottom: 0;
}

.input-group.input-group-picker .react-datepicker-wrapper {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 0%;
  flex: 1 1 0%;
  min-width: 0;
  margin-bottom: 0;
}

.input-group.input-group-picker .react-datepicker-wrapper:first-child .form-control {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}

.input-group.input-group-picker .react-datepicker-wrapper:last-child .form-control {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group.input-group-picker .form-control {
  border-radius: 0.25rem;
}

@media (max-width: 1250px) {
  .toggle-right-bar .body-content {
    margin-right: 0;
  }

  .toggle-right-bar .nav-header {
    padding-right: 0;
  }

  .toggle-right-bar .nav-container-right {
    -webkit-box-shadow: 0 0.75rem 1.5rem rgb(151 152 153 / 46%);
    box-shadow: 0 0.75rem 1.5rem rgb(151 152 153 / 46%);
  }

  .nav-container {
    left: -280px;
  }

  .body-content {
    margin-left: 50px;
  }

  .nav-header {
    padding-left: 50px;
  }

  .toggle-nav {
    overflow: hidden;
  }

  .toggle-nav .nav-container {
    left: 50px;
    -webkit-box-shadow: 0 0.75rem 1.5rem rgb(151 152 153 / 46%);
    box-shadow: 0 0.75rem 1.5rem rgb(151 152 153 / 46%);
  }
}

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

/* .modal.right.fade.show .modal-dialog {
  right: 0;
} */

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

.modal-open .modal.right.fade:not(.show) {
  opacity: 1;
}

.modal.left .modal-dialog,
.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 650px;
  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;
  border: none;
}

.spinner-border-sm {
  display: inline-block;
  width: 1.3rem;
  height: 1.3rem;
  vertical-align: text-bottom;
  border: 0.2em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: spinner-border 0.75s linear infinite;
  animation: spinner-border 0.75s linear infinite;
}

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

.tracking-status {
  padding: 0;
  margin-left: 13px;
  margin-bottom: 0;
}

.tracking-status li {
  list-style: none;
  position: relative;
  padding-left: 30px;
  padding-top: 3px;
  padding-bottom: 20px;
  border-left: solid 1px #ccc;
  line-height: 1.3;
}

.tracking-status li:last-child {
  border-left: none;
}

.tracking-status li::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 26px;
  height: 26px;
  border: solid 1px #ccc;
  background-color: #fff;
  left: -13px;
  top: 0;
}

.tracking-status li::before {
  content: "\ec12";
  font-family: "boxicons";
  color: #37b60b;
  position: absolute;
  font-size: 20px;
  top: 0;
  left: -13px;
  z-index: 1;
  width: 26px;
  height: 26px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tracking-status .ts-date {
  color: #979797;
}

.tracking-status .ts-status {
  color: #000;
  font-size: 15px;
  font-weight: 500;
}

.tracking-status .ts-author {
  color: var(--primary);
  font-size: 13px;
  font-weight: 500;
  padding-bottom: 3px;
}

.ts-link {
  font-weight: 600;
  display: inline-block;
  margin-bottom: 4px;
  color: #50a5f1;
  margin-top: 2px;
}

.nav-tabs-custom {
  /* border-bottom: 2px solid red; */
}

.nav-tabs-custom .nav-item {
  position: relative;
  color: #495057;
  font-weight: 600;
}

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: transparent;
}

.container-summary-tab .nav-tabs .nav-link.active {
  background-color: transparent;
  color: var(--primary);
  border-color: transparent;
  font-weight: 600;
}

.container-summary-tab .nav-tabs .nav-link::after {
  content: "";
  background: #05325e;
  height: 2px;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -0.1446rem;
  -webkit-transition: all 250ms ease 0s;
  transition: all 250ms ease 0s;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.container-summary-tab .nav-tabs .nav-link.active:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.modal-summary .modal-title {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comment-bubble-wrapper {
  /* padding-top: 7px; */
}

.comment-bubble {
  border-radius: 3px;
  border: solid 1px var(--border-color);
  padding: 10px;
  color: #333;
  position: relative;
  background-color: #f7f7f7;
}

.comment-bubble::after {
  content: '';
	position: absolute;
	top: 0;
	left: 2%;
	width: 0;
	height: 0;
	border: 8px solid transparent;
	border-bottom-color: var(--border-color);
	border-top: 0;
	border-right: 1px;
	margin-left: 0px;
	margin-top: -8px;
}

.page-link {
  cursor: pointer;
}

@media (max-width: 768px) {
  .page-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .nav-header-container {
    margin-left: 15px;
    margin-right: 15px;
  }
}

@media (max-width: 575px) {
  .smy-ssb {
    display: block;
  }

  .smy-ssb>* {
    text-align: left !important;
  }

  .smy-ssb>*:first-child {
    margin-bottom: 15px;
  }
}

@media (max-width: 500px) {
  .nav-container-right {
    width: 100vw;
    right: -100vw;
    z-index: 99;
  }

  .btn-toggle-right-box {
    left: -45px;
  }

  .toggle-right-bar .btn-toggle-right-box {
    left: inherit;
    right: 15px;
  }

  .modal.left .modal-dialog,
  .modal.right .modal-dialog {
    width: 100%;
  }
}

.nav-menu-block .dropdown-menu {
  box-shadow: rgb(9 30 66 / 25%) 0px 4px 8px -2px,
    rgb(9 30 66 / 31%) 0px 0px 1px;
  width: 220px;
  bottom: 0 !important;
}

.nav-menu-block .dropdown-menu.show {
  transform: translate3d(48px, -8px, 0px) !important;
}

.user-av {
  padding: 5px 15px;
  padding-bottom: 10px;
  /* border-bottom: solid 1px var(--border-color); */
  position: relative;
}

.user-av .nav-user-avatar {
  background-color: var(--primary);
  color: #fff;
}

.user-av .user-av-info {
  position: absolute;
  top: 5px;
  line-height: 1.1;
  padding-left: 55px;
  width: 100%;
  left: 0;
}

.nav-menu-block.dropdown .dropdown-item {
  padding: 10px 15px;
}

.user-av-info span {
  color: #666;
  font-size: 11.5px;
  display: inline-block;
  padding-top: 2px;
}

.apexcharts-legend {
  /* margin-top: 20px; */
}

.search-box.input-group>.input-group-append>button {
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

/* .nav-menu-block .dropdown-menu[x-placement^=top] {
  top: 0 !important;
  bottom: auto !important;
} */

.pagination-box .pagination {
  margin-bottom: 0 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-inline-box;
}

.pagination-box>div {
  display: flex;
  align-items: center;
}

.pagination-box>div:last-child {
  justify-content: flex-end;
}

.pagination-box>div:first-child span {
  display: inline-block;
  font-weight: bold;
  padding: 0 5px;
}

.btn-group label.btn.btn-toggle-active {
  color: #fff;
  background-color: #f18383;
  outline: none !important;
  box-shadow: none !important;
}

.btn-group label.btn.btn-toggle-active.active {
  color: #fff;
  background-color: #34c38f;
}

.text-dotted{
  text-decoration: dotted;
}

.text-dashed{
  text-decoration: dashed;
}

.text-line-through{
  text-decoration: line-through;
}

@media (max-width: 768px) {
  .pagination-box>div:first-child {
    justify-content: center;

  }

  .pagination-box>div:last-child {
    justify-content: center;
    margin-top: 10px;
  }
}

.g-search-box{
  padding: 1.5rem 1.5rem;
  /* border-bottom: solid 1px var(--border-color); */
}

.badge-primary-light {
  color: #fff;
  background-color: #50a5f1;
}

.home-fab{
  position: fixed;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background-color: #34c38f;
  /* background-color: var(--bg-primary); */
  z-index: 9;
  bottom: 0;
  right: 0;
  margin: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-fab i{
  font-size: 15px;
  color: #fff;
}

.vertical-top, .table th.vertical-top, .table td.vertical-top {
    vertical-align: top !important;
}