
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,400;0,600;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Belleza&display=swap');
html {
  color: #222;
  font-size: 16px;
  line-height: 1.4;
}
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
textarea {
  resize: vertical;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
body {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  color: #626262;
  background: rgb(234,240,230);
  background: -moz-linear-gradient(0deg, rgba(234,240,230,1) 0%, rgba(249,250,248,1) 50%);
  background: -webkit-linear-gradient(0deg, rgba(234,240,230,1) 0%, rgba(249,250,248,1) 50%);
  background: linear-gradient(0deg, rgba(234,240,230,1) 0%, rgba(249,250,248,1) 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eaf0e6",endColorstr="#f9faf8",GradientType=1);
  background-attachment: fixed;
}
#dashboard-wrapper {
  padding: 30px;
}
.container-wrapper {
  display: flex;
}
#sidebar {
  flex: 0 0 240px;
  padding-right: 30px;
}
#main-dashboard {
  flex: 0 0 calc(100% - 240px);
  overflow: hidden;
}
#sidebar .dash-logo {
  margin-top: 76px;
  margin-bottom: 14px;
  text-align: center;
}
#sidebar .dash-logo img {
  max-width: 135px;
}
.sidebar-inner {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 30px;
}
.side-menu-btn {
  display: block;
  padding: 14px 12px;
  border: none;
  border-radius: 10px;
  border: 1px solid transparent;
  background-color: transparent;
  width: 100%;
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: #506f4a;
  line-height: 1.6em;
  margin-top: 16px;
  transition: all 300ms ease;
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}
.side-menu-btn:hover {
  border-color: #506f4a;
  color: #506f4a;
}
.side-menu-btn:hover,
.side-menu-btn:focus {
  text-decoration: none;
}
.side-menu-btn.active,
.side-menu-btn:focus  {
  font-weight: 700;
  background-color: #748d6f;
  border-color: #61805b;
  color: #fff;
  box-shadow: 0 10px 20px 0 #d3ddca;
}
.side-menu-btn:focus {
  outline: none;
}
.side-menu-btn span {
  font-size: 28px;
  position: relative;
  top: 7px;
  line-height: 0;
  margin-right: 8px;
}
.side-menu-btn.active span {
  color: #d3ddca;
}
/*.accordion-card {
  margin-top: -10px;
  padding: 26px 26px 16px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #eef4ea;
}
.accordion-card .accordion-nav {
  display: block;
  margin: 0 0 8px;
  padding: 10px 16px;
  border-radius: 5px;
  border: solid 1px transparent;
  text-align: center;
  color: #486a41;
  transition: all 200ms ease;
}
.accordion-card .accordion-nav:hover {
  background-color: #486a41;
  color: #eef4ea;
}
.accordion-card .accordion-nav:hover,
.accordion-card .accordion-nav:focus {
  text-decoration: none;
}
.accordion-card .accordion-nav.active {
  border-color: #486a41;
  font-weight: 700;
}*/

/* Accordion styles */
.side-tabs {
  border-radius: 8px;
  overflow: hidden;
}
.side-tab {
  width: 100%;
  color: white;
  overflow: hidden;
}
.side-tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
  display: none;
}
.side-tab label {
  cursor: pointer;
}
.tab-content {
  opacity: 0;
  max-height: 0;
  padding: 0 24px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #eef4ea;
  transition: all 300ms ease;
}
.tab-content .accordion-nav {
  display: block;
  margin: 0 0 8px;
  padding: 10px 16px;
  border-radius: 5px;
  border: solid 1px transparent;
  text-align: center;
  color: #486a41;
  transition: all 200ms ease;
}
.tab-content .accordion-nav:hover {
  background-color: #486a41;
  color: #eef4ea;
}
.tab-content .accordion-nav:hover,
.tab-content .accordion-nav:focus {
  text-decoration: none;
}
.tab-content .accordion-nav.active {
  border-color: #486a41;
  font-weight: 700;
}
.side-tab input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 16px 24px 4px;
  opacity: 1;
}
.side-tab input:checked ~ .side-menu-btn {
  font-weight: 700;
  background-color: #748d6f;
  border-color: #61805b;
  color: #fff;
  box-shadow: 0 10px 20px 0 #d3ddca;
}

.top-nav {
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-title {
  font-family: 'Belleza', sans-serif;
  font-size: 32px;
  line-height: 1.16;
  letter-spacing: normal;
  text-align: left;
  color: #748d6f;
}
.main-title a {
  color: #748d6f;
  transition: all 300ms ease;
  text-decoration: none;
}
.main-title a:hover {
  color: #486a41;
}
.main-title span {
  position: relative;
  display: inline-block;
  font-size: 20px;
  top: px;
  padding-left: 24px;
  margin-left: 8px;
}
.main-title span::before {
  position: absolute;
  width: 10px;
  height: 20px;
  top: 0px;
  left: 0;
  content: ' ';
  background-image: url('../img/ico-chevron-right.svg');
}
.content-wrapper {
  border-radius: 8px;
  border: solid 1px #b8ccb3;
  background-color: #ffffff;
  width: 100%;
  overflow: hidden;
  min-height: 650px;
}
.top-nav-left {
  display: flex;
  align-items: center;
}
.panel-notification {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 30px;
}
.panel-notification img {
  width: 40px;
  height: 40px;
}
.panel-notification .notif-count {
  position: absolute;
  top: 4px;
  right: 0px;
  background-color: #c30000;
  font-size: 9px;
  border-radius: 25px;
  padding: 3px 5px 2px;
  line-height: 1em;
  text-align: center;
  color: #ffffff;
}
.panel-notification-dropdown {
  visibility: hidden;
  opacity: 0;
  height: 0;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 360px;
  background-color: #fff;
  border: 1px solid #d3ddca;
  padding: 8px 10px 8px 16px;
  border-radius: 5px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #efefef;
  z-index: 1;
}
a.panel-notification-icon:focus + .panel-notification-dropdown {
  visibility: visible;
  opacity: 1;
  height: 400px;
}
.panel-notif-wrap {
  height: 330px;
  padding-right: 10px;
  overflow-y: scroll;
}
.panel-notif-wrap:-webkit-scrollbar-track {
	background-color: #748d6f;
}
.panel-notif-wrap::-webkit-scrollbar {
	width: 4px;
	background-color: #e5e5e5;
}
.panel-notif-wrap::-webkit-scrollbar-thumb {
	background-color: #748d6f;
}
.panel-notif-title {
  text-align: center;
  font-weight: 600;
  display: block;
  padding: 8px 16px;
  background-color: #fff;
  color: #5c6a59;
}
.panel-notif-date {
  font-weight: 600;
  padding: 10px 0;
  font-size: 13px;
}
.panel-notif-time {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 10px;
  margin-bottom: 6px;
  text-align: right;
  font-weight: 800;
}
.panel-notif-item {
  position: relative;
  display: block;
  background-color: #fff;
  padding: 8px 30px 8px 16px;
  margin-bottom: 10px;
  border-radius: 8px;
  border: 1px solid #87af66;
  font-size: 14px;
  color: #626262;
  transition: all 200ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.panel-notif-item.new {
  background-color: #eef4ea;
}
.panel-notif-item:hover,
.panel-notif-item:focus {
  background-color: #dde8d3;
  color: #626262;
  text-decoration: none;
}

.panel-admin-wrap {
  position: relative;
}
.panel-admin {
  padding: 4px 16px 4px 8px;
  border-radius: 5px;
  border: solid 1px #d3ddca;
  display: flex;
  background-color: transparent;
}
.panel-admin img {
  width: 40px;
  height: 40px;
  margin-right: 8px;
}
.admin-info .admin-name {
  color: #5c6a59;
  font-weight: 700;
}
.admin-info .admin-info {
  font-size: 11px;
  line-height: 1.36;
  color: #5c6a59;
}
a.panel-admin {
  text-decoration: none;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
a.panel-admin:hover,
a.panel-admin:focus {
  background-color: #748E6F;
  border-color: #748E6F;
}
a.panel-admin:hover .admin-info .admin-name,
a.panel-admin:hover .admin-info .admin-info,
a.panel-admin:focus .admin-info .admin-name,
a.panel-admin:focus .admin-info .admin-info  {
  color: #fff;
}
.panel-admin-dropdown {
  visibility: hidden;
  opacity: 0;
  height: 0;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #d3ddca;
  padding: 8px 0;
  border-radius: 5px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #efefef;
  z-index: 1;
}
.panel-admin-dropdown .panel-admin-link {
  color: #486a41;
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  text-align: center;
  transition: all 300ms ease-in-out;
}
.panel-admin-dropdown .panel-admin-link:hover {
  background-color: #EEF5EB;
}
.panel-admin-dropdown .panel-admin-btn {
  color: #fff;
  display: block;
  padding: 8px 0;
  border-radius: 20px;
  background-color: #486a41;
  text-decoration: none;
  text-align: center;
  margin: 8px 24px;
  transition: all 300ms ease-in-out;
}
.panel-admin-dropdown .panel-admin-btn:hover {
  background-color: #748d6f;
}
.panel-admin-dropdown .panel-admin-link img {
  width: 14px;
  height: 14px;
  margin-right: 10px;
  margin-top: -2px;
}
a.panel-admin:focus + .panel-admin-dropdown {
  visibility: visible;
  opacity: 1;
  height: auto;
}
.tab-bar {
  border-bottom: 1px solid #b8ccb3;
  padding: 0 20px;
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.tab-bar::-webkit-scrollbar {
  display: none;
}
.tab-bar .tab-bar-item {
  display: inline-block;
  margin: 0 20px;
  color: #626262;
  transition: all 300ms ease;
}
.tab-bar .tab-bar-item:hover {
  color: #748d6f;
  cursor: pointer;
}
.tab-bar .tab-bar-item:hover,
.tab-bar .tab-bar-item:focus {
  text-decoration: none;
}
.tab-bar .tab-bar-item .tab-bar-name {
  display: inline-block;
  padding: 16px 0;
}
.tab-bar .tab-bar-item.active .tab-bar-name {
  color: #748d6f;
  font-weight: 700;
  border-bottom: 2px solid #748d6f;
}
.tab-header #tab1:checked ~ .tab-bar .tab-bar-item.tab1 .tab-bar-name,
.tab-header #tab2:checked ~ .tab-bar .tab-bar-item.tab2 .tab-bar-name,
.tab-header #tab3:checked ~ .tab-bar .tab-bar-item.tab3 .tab-bar-name,
.tab-header #tab4:checked ~ .tab-bar .tab-bar-item.tab4 .tab-bar-name,
.tab-header #tab5:checked ~ .tab-bar .tab-bar-item.tab5 .tab-bar-name,
.tab-header #tab6:checked ~ .tab-bar .tab-bar-item.tab6 .tab-bar-name,
.tab-header #tab7:checked ~ .tab-bar .tab-bar-item.tab7 .tab-bar-name,
.tab-header #tab8:checked ~ .tab-bar .tab-bar-item.tab8 .tab-bar-name,
.tab-header #tab9:checked ~ .tab-bar .tab-bar-item.tab9 .tab-bar-name    {
  color: #748d6f;
  font-weight: 700;
  border-bottom: 2px solid #748d6f;
}
.tab-header #tab1:checked ~ .row .tab-bar-item.tab1 .box-hover,
.tab-header #tab2:checked ~ .row .tab-bar-item.tab2 .box-hover,
.tab-header #tab3:checked ~ .row .tab-bar-item.tab3 .box-hover {
  border-color: #57834f;
  background-image: linear-gradient(to bottom, rgba(224, 234, 216, 0) 35%, rgba(224, 234, 216, 0) 57%, #e9ffd8);
}
.tab-header #tab1:checked ~ .row .tab-bar-item.tab1 .box-hover::before,
.tab-header #tab2:checked ~ .row .tab-bar-item.tab2 .box-hover::before,
.tab-header #tab3:checked ~ .row .tab-bar-item.tab3 .box-hover::before {
  background-color: #57834f;
}
.main-dash {
  display: block;
  padding: 24px 18px;
}
.toolbar {
  display: flex;
}
.toolbar-left {
  flex: 0 0 25%;
  padding-right: 3%;
}
.toolbar-inner-left,
.toolbar-inner-right {
  display: flex;
}
.toolbar-inner-left {
  flex: 0 0 60%;
}
.toolbar-inner-right {
  flex: 0 0 40%;
}
.toolbar-right {
  display: flex;
  flex: 0 0 75%;
  justify-content: space-between;
}

.form-control,
.custom-select {
  height: 40px;
  font-size: 14px;
}
.form-control:focus,
.custom-select:focus {
  color: #495057;
  background-color: #fff;
  border-color: #486a41;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(97, 128, 91, 0.2);
}
.search-input {
  position: relative;
}
.search-input .form-control {
  border-radius: 25px;
  border-color: #8aa385;
  background-color: #f9faf8;
  padding: 0 50px 0 20px;
}
.search-input .form-control::-webkit-input-placeholder {
  color: #8aa385;
  font-style: italic;
}
.search-input .form-control:-ms-input-placeholder {
  color: #8aa385;
  font-style: italic;
}
.search-input .form-control::placeholder {
  color: #8aa385;
  font-style: italic;
}
.btn-search {
  position: absolute;
  top: 0;
  right: 0;
}
.daterange-input {
  position: relative;
}
.daterange-input .form-control {
  padding-left: 42px;
  color: #909090;
  border-radius: 5px;
}
.daterange-input::before {
  position: absolute;
  top: 2px;
  left: 4px;
  content: ' ';
  width: 38px;
  height: 38px;
  background-image: url('../img/ico-calendar.svg');
  background-repeat: no-repeat;
  background-size: 38px;
}
.daterange {
  position: relative;
  display: block;
  padding: 9px 14px 9px 46px;
  color: #909090;
  border-radius: 5px;
  border: solid 1px #cecece;
  height: 40px;
  transition: all 200ms ease;
}
.daterange:hover,
.daterange:focus {
  color: #909090;
  background-color: #f9faf8;
  border-color: #8aa385;
}
.daterange::before {
  position: absolute;
  top: 0;
  left: 4px;
  content: ' ';
  width: 38px;
  height: 38px;
  background-image: url('../img/ico-calendar.svg');
  background-repeat: no-repeat;
  background-size: 38px;
}
a.daterange {
  text-decoration: none;
}
.daterange-modal {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 590px;
  border-radius: 5px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.16);
  border: solid 1px #efefef;
  background-color: #ffffff;
  transform: translateX(-50%);
  z-index: 1;
}
.daterange:focus + .daterange-modal {
  visibility: visible;
  opacity: 1;
}

.toolicon-wrapper {
  position: relative;
}
.toolicon {
  display: block;
  position: relative;
  width: 45px;
  height: 40px;
  border-radius: 5px;
  border: solid 1px #cecece;
  cursor: pointer;
  margin-right: 16px;
  background-position: center;
}
.toolicon.sort {
  background-image: url('../img/ico-sort.png');
  background-size: 40px;
}
.toolicon.filter {
  background-image: url('../img/ico-filter.png');
  background-size: 40px;
}
.toolicon-wrapper.status,
.toolicon-wrapper.kurir {
  margin-right: 16px;
  width: 100%;
}
.toolicon.status,
.toolicon.kurir {
  display: block;
  position: relative;
  background-color: #f9faf8;
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border: solid 1px #cecece;
  cursor: pointer;
  padding: 8px 16px;
  text-decoration: none;
}
.toolicon.kurir {
  border: solid 1px #61805b;
}
.toolicon.status::before,
.toolicon.kurir:before {
  position: absolute;
  width: 30px;
  height: 38px;
  top: 0;
  right: 0;
  content: ' ';
  background-color: #e0ead8;
  background-image: url('../img/ico-chevron-up.svg');
  background-repeat: no-repeat;
  background-position: 9px 16px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
.toolicon.status span,
.toolicon.kurir span {
  color: #8aa385;
  font-style: italic;
}
.tool-inner {
  visibility: hidden;
  opacity: 0;
  height: 0;
  position: absolute;
  left: calc(50% - 175px);
  top: 40px;
  width: 350px;
  margin-top: 16px;
  transition: all 300ms ease;
  z-index: 1;
}
.tool-inner.right {
  left: auto;
  right: 0;
}
.toolicon:focus + .tool-inner {
  visibility: visible;
  opacity: 1;
  height: 100%;
}
.tool-wrapper {
  background-color: #fff;
  padding: 12px 10px 20px;
  border-radius: 5px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.16);
  border: 1px solid #efefef;
}
.tool-scroll {
  height: 180px;
  overflow: auto;
}
.tool-heading {
  text-align: center;
  border-bottom: 1px solid #efefef;
  padding-bottom: 10px;
  font-weight: 700;
  margin-bottom: 16px;
}
ul.tool-select {
  margin: 0;
  padding: 0;
}
ul.tool-select .tool-select-item {
  list-style: none;
  padding: 10px 16px;
  margin-bottom: 4px;
  transition: all 300ms ease;
  border-radius: 5px;
  border: 1px solid transparent;
  cursor: pointer;;
}
ul.tool-select .tool-select-item.active {
  border-color: #dedede;
}
ul.tool-select .tool-select-item:hover {
  background-color: #d3ddca;
}
ul.tool-select .tool-select-item img {
  height: 30px;
  margin-right: 16px;
  border-radius: 5px;
}
.tool-daterange {
  position: relative;
  margin-left: 16px;
}
.tool-daterange-dark {
  width: 210px;
  margin: 0 auto 24px;
}
.tool-daterange-dark .tool-daterange {
  margin-left: 0;
}
.tool-daterange-dark .daterange {
  color: #f9faf8;
  border-color: #486a41;
  background-color: #61805b;
  padding: 9px 14px 9px 46px;
}
.tool-daterange-dark .daterange::before {
  background-image: url('../img/ico-calendar-light.svg');
}
.tool-daterange-dark .daterange-modal {
  margin-top: 14px;
}

.btn {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8em;
  padding-left: 24px;
  padding-right: 24px;
}
.btn-rounded {
  border-radius: 25px;
  padding-left: 64px;
  padding-right: 64px;
}
.btn-primary {
  color: #fff;
  background-color: #748d6f;
  border-color: #61805b;
}
.btn-primary:hover {
  color: #fff;
  background-color: #577252;
  border-color: #577252;
}
.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #577252;
  border-color: #577252;
  box-shadow: 0 0 0 0.2rem rgba(87, 114, 82, 0.2);
}
.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #577252;
  border-color: #577252;
}
.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #577252;
  border-color: #577252;
}
.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(87, 114, 82, 0.2);
}
.btn-secondary {
  color: #909090;
  background-color: #ffffff;
  border-color: #cecece;
}
.btn-secondary:hover {
  color: #909090;
  background-color: #f9faf8;
  border-color: #8aa385;
}
.btn-secondary:focus, .btn-secondary.focus {
  color: #909090;
  background-color: #f9faf8;
  border-color: #8aa385;
  box-shadow: 0 0 0 0.2rem rgba(97, 128, 91, 0.2);
}
.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active {
  color: #909090;
  background-color: #f9faf8;
  border-color: #8aa385;
}
.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(97, 128, 91, 0.2);
}
.btn-tersier {
  color: #61805b;
  background-color: #f4f7f2;
  border-color: #61805b;
}
.btn-tersier:hover {
  color: #fff;
  background-color: #577252;
  border-color: #577252;
}
.btn-tersier:focus, .btn-tersier.focus {
  color: #fff;
  background-color: #577252;
  border-color: #577252;
  box-shadow: 0 0 0 0.2rem rgba(87, 114, 82, 0.2);
}
.btn-tersier.disabled, .btn-tersier:disabled {
  color: #fff;
  background-color: #577252;
  border-color: #577252;
}
.btn-tersier:not(:disabled):not(.disabled):active, .btn-tersier:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #577252;
  border-color: #577252;
}
.btn-tersier:not(:disabled):not(.disabled):active:focus, .btn-tersier:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(87, 114, 82, 0.2);
}
.btn-plain {
  padding: 8px 8px 8px 2px;
  position: relative;
  font-weight: 400;
  color: #748d6f;
  background-color: transparent;
  border-color: transparent;
}
.btn-plain:hover {
  color: #748d6f;
  background-color: transparent;
  border-color: #577252;
}
.btn-plain:focus, .btn-plain.focus {
  color: #748d6f;
  background-color: transparent;
  border-color: #577252;
  box-shadow: 0 0 0 0.2rem rgba(87, 114, 82, 0.2);
}
.btn-plain.disabled, .btn-plain:disabled {
  color: #748d6f;
  background-color: transparent;
  border-color: #577252;
}
.btn-plain:not(:disabled):not(.disabled):active, .btn-plain:not(:disabled):not(.disabled).active {
  color: #748d6f;
  background-color: transparent;
  border-color: #577252;
}
.btn-plain:not(:disabled):not(.disabled):active:focus, .btn-plain:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(87, 114, 82, 0.2);
}
.btn-plain img {
  width: 26px;
  height: 26px;
  margin-top: -4px;
}
.btn-blue {
  color: #fff;
  background-color: #1b61b7;
  border-color: #1453a0;
}
.btn-blue:hover {
  color: #fff;
  background-color: #1453a0;
  border-color: #1453a0;
}
.btn-blue:focus, .btn-blue.focus {
  color: #fff;
  background-color: #1453a0;
  border-color: #1453a0;
  box-shadow: 0 0 0 0.2rem rgba(20, 83, 160, 0.2);
}
.btn-blue.disabled, .btn-blue:disabled {
  color: #fff;
  background-color: #1453a0;
  border-color: #1453a0;
}
.btn-blue:not(:disabled):not(.disabled):active, .btn-blue:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #1453a0;
  border-color: #1453a0;
}
.btn-blue:not(:disabled):not(.disabled):active:focus, .btn-blue:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(20, 83, 160, 0.2);
}
.btn-white {
  color: #626262;
  background-color: #fff;
  border-color: #626262;
}
.btn-white:hover {
  color: #fff;
  background-color: #577252;
  border-color: #577252;
}
.btn-white:focus, .btn-white.focus {
  color: #fff;
  background-color: #577252;
  border-color: #577252;
  box-shadow: 0 0 0 0.2rem rgba(87, 114, 82, 0.2);
}
.btn-white.disabled, .btn-white:disabled {
  color: #fff;
  background-color: #577252;
  border-color: #577252;
}
.btn-white:not(:disabled):not(.disabled):active, .btn-white:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #577252;
  border-color: #577252;
}
.btn-white:not(:disabled):not(.disabled):active:focus, .btn-white:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(87, 114, 82, 0.2);
}
.btn-red {
  color: #982c2c;
  background-color: #ffeded;
  border-color: #982c2c;
}
.btn-red:hover {
  color: #fff;
  background-color: #982c2c;
  border-color: #982c2c;
}
.btn-red:focus, .btn-red.focus {
  color: #fff;
  background-color: #982c2c;
  border-color: #982c2c;
  box-shadow: 0 0 0 0.2rem rgba(152, 44, 44, 0.2);
}
.btn-red.disabled, .btn-red:disabled {
  color: #fff;
  background-color: #982c2c;
  border-color: #982c2c;
}
.btn-red:not(:disabled):not(.disabled):active, .btn-red:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #982c2c;
  border-color: #982c2c;
}
.btn-red:not(:disabled):not(.disabled):active:focus, .btn-red:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(152, 44, 44, 0.2);
}
.btn-plain i {
  position: relative;
  top: 8px;
  font-size: 30px;
  line-height: 0 !important;
}
.btn-icon {
  padding-left: 0px;
  padding-right: 16px;
}
.btn-icon i {
  position: relative;
  top: 12px;
  font-size: 40px;
  line-height: 0 !important;
}
.btn-search {
  line-height: 0;
  padding: 6px 16px !important;
  transition: all 300ms ease;
}
.btn-search:hover {
  opacity: 0.5;
}
.btn-search:focus {
  box-shadow: none;
}
.btn-search img {
  width: 24px;
}
.tool-export {
  margin-left: 16px;
  margin-right: 16px;
}
.tool-export.floating {
  margin-left: 0;
  margin-right: 0;
  position: absolute;
  top: 0;
  right: 0;
}
.tool-export .btn {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9em;
  background-image: url('../img/ico-export.png');
  background-repeat: no-repeat;
  background-size: 40px;
  background-position: 0 -2px;
  padding-left: 42px;
  padding-right: 16px;
}
.tool-jaskir {
  position: relative;
  margin-right: 16px;
}
.tool-jaskir .btn {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9em;
  background-image: url('../img/ico-jaskir.png');
  background-repeat: no-repeat;
  background-size: 40px;
  padding-left: 42px;
  padding-right: 12px;
}
.tool-jaskir .btn:focus + .tool-inner {
  visibility: visible;
  opacity: 1;
}
.label-status {
  display: inline-block;
  width: 93px;
  text-align: center;
  margin-right: 16px;
  padding: 3px 0 3px 0;
  border-radius: 15px;
  font-style: normal !important;
}
.label-status.grey {
  color: #626262 !important;
  background-color: #efefef;
}
.label-status.orange {
  color: #b16c0e !important;
  background-color: #faf7ef;
}
.label-status.green {
  color: #486a41 !important;
  background-color: #f1faef;
}
.label-status.blue {
  color: #1b61b7 !important;
  background-color: #e8f0fa;
}
.label-status.red {
  color: #982c2c !important;
  background-color: #faefef;
}
.result {
  font-style: italic;
}
.result strong {
  font-weight: 700;
}

.custom-control.custom-checkbox {
  margin-top: -4px;
}
.custom-control-label {
  padding: 1px 5px;
  margin: 2px 0;
  font-weight: 400;
}
.custom-control-label::before {
  width: 16px;
  height: 16px;
}
.custom-control-label::after {
  width: 16px;
  height: 16px;
}
.custom-control-input:checked~.custom-control-label::before {
  color: #fff;
  border-color: #57834f;
  background-color: #57834f;
}
.custom-control-input:focus:not(:checked)~.custom-control-label::before {
  border-color: #57834f;
}
.custom-control-input:focus~.custom-control-label::before {
  box-shadow: 0 0 0 0.2rem rgba(87, 131, 79, 0.2);
}
.image-order {
  width: 28px;
  height: 28px;
  border-radius: 100%;
  margin-top: -4px;
}
.table-data {
  margin-top: 16px;
}
.table-data .table-head {
  display: flex;
  width: 100%;
  color: #486a41;
  font-weight: 700;
  padding: 9px 9px 7px 9px;
  border-radius: 5px;
  background-color: #dde8d3;
}
.table-data .table-head .th-order-01 {
  width: 24px;
}
.table-data .table-head .th-order-02 {
  width: 23%;
  padding-left: 46px;
}
.table-data .table-head .th-order-03 {
  width: 11.5%;
}
.table-data .table-head .th-order-04 {
  width: 27%;
}
.table-data .table-head .th-order-05 {
  width: 5.5%;
}
.table-data .table-head .th-order-06 {
  width: auto;
}
.table-data .table-head .th-order-07 {
  width: 25.5%;
}
.table-data .table-head .th-order-08 {
  width: 15.1%;
}

.table-data .th-resi-01 {
  width: 6%;
}
.table-data .th-resi-02 {
  width: 20%;
}
.table-data .th-resi-03 {
  width: 30%;
}

.table-data .th-sj-01 {
  width: 3%;
}
.table-data .th-sj-02 {
  width: 10%;
}
.table-data .th-sj-03 {
  width: 13%;
}
.table-data .th-sj-04 {
  width: 16.4%;
}
.table-data .th-sj-05 {
  width: 17%;
}
.table-data .th-sj-06 {
  width: 15%;
}
.table-data .th-sj-07 {
  width: 15%;
}

.table-data .tb-sj-01 {
  width: 3%;
}
.table-data .tb-sj-02 {
  width: 10%;
}
.table-data .tb-sj-03 {
  width: 13%;
}
.table-data .tb-sj-04 {
  width: 16%;
}
.table-data .tb-sj-05 {
  width: 18%;
}
.table-data .tb-sj-06 {
  width: 15%;
}
.table-data .tb-sj-07 {
  width: 13%;
}
.table-data .tb-sj-08 {
  width: 10%;
  text-align: center;
}

.table-head.table-sp,
.table-body.table-sp {
  display: flex;
  align-items: center;
  padding: 10px 30px;
}
.table-sp .th-sp:nth-child(1),
.table-sp .tb-sp:nth-child(1) {
  width: 34%;
}
.table-sp .th-sp:nth-child(2),
.table-sp .tb-sp:nth-child(2) {
  width: 10%;
  text-align: center;
}
.table-sp .th-sp:nth-child(3),
.table-sp .tb-sp:nth-child(3) {
  width: 10%;
  text-align: center;
}
.table-sp .th-sp:nth-child(4),
.table-sp .tb-sp:nth-child(4) {
  width: 16%;
  text-align: center;
}
.table-sp .th-sp:nth-child(5),
.table-sp .tb-sp:nth-child(5) {
  width: 10%;
  text-align: center;
}
.table-sp .th-sp:nth-child(6),
.table-sp .tb-sp:nth-child(6) {
  width: 20%;
  text-align: right;
}

.table-head.table-sp-tt,
.table-body.table-sp-tt {
  display: flex;
  align-items: center;
  padding: 10px 30px;
}
.table-sp-tt .th-sp-tt:nth-child(1) {
  width: 30%;
}
.table-sp-tt .th-sp-tt:nth-child(2) {
  text-align: center;
  width: 18%;
}
.table-sp-tt .th-sp-tt:nth-child(3) {
  width: 20%;
}
.table-sp-tt .th-sp-tt:nth-child(4) {
  text-align: center;
  width: 20%;
}
.table-sp-tt .tb-sp-tt:nth-child(1) {
  width: 30%;
}
.table-sp-tt .tb-sp-tt:nth-child(2) {
  text-align: center;
  width: 18%;
}
.table-sp-tt .tb-sp-tt:nth-child(3) {
  width: 20%;
}
.table-sp-tt .tb-sp-tt:nth-child(4) {
  text-align: center;
  width: 20%;
}
.table-sp-tt .tb-sp-tt:nth-child(5) {
  width: 12%;
}

.table-head.table-sp-kt,
.table-body.table-sp-kt {
  display: flex;
  align-items: center;
  padding: 10px 30px;
}
.table-sp-kt .th-sp-kt:nth-child(1) {
  width: 25%;
}
.table-sp-kt .th-sp-kt:nth-child(2) {
  text-align: center;
  width: 12%;
}
.table-sp-kt .th-sp-kt:nth-child(3) {
  text-align: center;
  width: 12%;
}
.table-sp-kt .th-sp-kt:nth-child(4) {
  text-align: center;
  width: 12%;
}
.table-sp-kt .th-sp-kt:nth-child(5) {
  text-align: center;
  width: 12%;
}
.table-sp-kt .th-sp-kt:nth-child(6) {
  text-align: center;
  width: 12%;
}
.table-sp-kt .tb-sp-kt:nth-child(1) {
  width: 25%;
}
.table-sp-kt .tb-sp-kt:nth-child(2) {
  text-align: center;
  width: 12%;
}
.table-sp-kt .tb-sp-kt:nth-child(3) {
  text-align: center;
  width: 12%;
}
.table-sp-kt .tb-sp-kt:nth-child(4) {
  text-align: center;
  width: 12%;
}
.table-sp-kt .tb-sp-kt:nth-child(5) {
  text-align: center;
  width: 12%;
}
.table-sp-kt .tb-sp-kt:nth-child(6) {
  text-align: center;
  width: 12%;
}
.table-sp-kt .tb-sp-kt:nth-child(7) {
  width: 15%;
}

.table-pp {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.table-pp-left {
  display: flex;
  flex: 0 0 25%;
}
.table-pp-middle {
  display: flex;
  flex: 0 0 50%;
}
.table-pp-middle .tb-pp {
  text-align: center;
  width: 25%;
}
.table-pp-right {
  display: flex;
  flex: 0 0 25%;
}
.table-pp-right .tb-pp {
  text-align: center;
  width: 50%;
}

.table-ci {
  display: flex;
  padding: 14px 8px 14px 8px !important;
}
.table-ci .tb-ci:nth-child(1) {
  width: 4%;
}
.table-ci .tb-ci:nth-child(2) {
  width: 16%;
}
.table-ci .tb-ci:nth-child(3),
.table-ci .tb-ci:nth-child(4),
.table-ci .tb-ci:nth-child(5),
.table-ci .tb-ci:nth-child(6),
.table-ci .tb-ci:nth-child(7) {
  text-align: center;
  width: 12%;
}
.table-ci .tb-ci:nth-child(8) {
  width: 20%;
} 

.table-body {
  margin: 16px 0 16px 0;
  padding: 10px 18px 10px 8px;
  border-radius: 5px;
  box-shadow: 0 0 6px 0 rgba(196, 196, 196, 0.28);
  border: solid 1px #efefef;
  background-color: #ffffff;
}
.table-body-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}
.table-body-top-left {
  display: flex;
}
.table-body-btm {
  display: flex;
  width: 100%;
}
.table-body-btm-left {
  display: flex;
  flex: 0 0 24%;
  border-right: 1px solid #efefef;
  justify-content: space-between;
}
.table-body-btm-left-inner {
  display: flex;
}
.table-body-btm-mid {
  display: flex;
  flex: 0 0 38%;
}
.table-body-btm-right {
  display: flex;
  flex: 0 0 38%;
}

.meta-invoice {
  color: #748d6f;
  margin: 0 16px;
  font-weight: 600;
}
.meta-customer {
  font-weight: 600;
}
.meta-date {
  position: relative;
  padding-left: 30px;
}
.meta-date::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 18px;
  height: 18px;
  content: ' ';
  background-image: url('../img/ico-time.svg');
  background-repeat: no-repeat;
  background-size: 18px;
}
.product-image img {
  width: 55px;
  height: 55px;
  margin-right: 16px;
}
.product-title {
  margin-bottom: 16px;
}
.product-more {
  color: #8aa385;
  font-style: italic;
}
.product-qty {
  font-weight: 700;
  margin-right: 16px;
}
.order-total {
  flex: 0 0 30%;
  margin-left: 16px;
  color: #57834f;
}
.order-total .order-payment {
  display: block;
  color: #acacac;
  font-size: 12px;
}
.order-address {
  margin-right: 16px;
}
.order-time {
  width: 100%;
}
.order-timer {
  font-weight: 600;
  color: #982c2c;
  margin-bottom: 14px;
}
.order-time-update strong {
  font-weight: 700;
}
.order-detail {
  display: flex;
  height: 100%;
  align-items: flex-end;
  justify-content: flex-end;
}
.order-detail a {
  position: relative;
  font-weight: 600;
  color: #57834f;
  padding-right: 28px;
  text-decoration: none;
}
.order-detail a::before {
  position: absolute;
  top: -1px;
  right: 0;
  width: 24px;
  height: 24px;
  content: ' ';
  background-image: url('../img/ico-arrow-right.svg');
  background-repeat: no-repeat;
  background-size: 24px;
  transition: all 200ms ease;
}
.order-detail a:hover::before {
  right: -5px;
}
.data-result {
  display: inline-block;
  font-style: italic;
  margin: auto;
  padding: 6px 160px;
  background: rgb(255,255,255);
  background: -moz-linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(242,245,239,1) 50%, rgba(255,255,255,1) 100%);
  background: -webkit-linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(242,245,239,1) 50%, rgba(255,255,255,1) 100%);
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(242,245,239,1) 50%, rgba(255,255,255,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
.order-detail-wrapper {
  flex: 0 0 70%;
}
.order-history-wrapper {
  flex: 0 0 30%;
  padding-left: 16px;
}
.order-history-wrapper .content-wrapper {
  min-height: 0;
}
.heading-wrapper {
  padding: 16px;
  border-bottom: 1px solid #efefef;
}
.heading-title {
  font-weight: 700;
  line-height: 2em;;
  color: #61805b;
}
.order-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.order-heading-left {
  display: flex;
  align-items: center;
}
.status-toolbar {
  display: flex;
  justify-content: flex-end;
}
.status-toolbar .toolicon-wrapper {
  flex: 0 0 25%;
}
.logo-standalone {
  display: inline-block;
  margin-right: 24px;
}
.logo-standalone img {
  position: relative;
  max-height: 38px;
  top: -6px;
}
.order-info {
  margin-top: 30px;
}
.label-item {
  margin-bottom: 24px;
}
.label-desc.large {
  font-size: 18px;
}
.label-desc.green {
  color: #486a41;
}
.label-desc p {
  margin-bottom: 8px;
}
.label-desc p:last-child {
  padding-bottom: 10px;
}
.label-title {
  font-weight: 700;
  margin-bottom: 8px;
}
.label-title.large {
  font-size: 16px;
}
.label-title.green {
  color: #486a41;
}
.label-title.red {
  color: #c30000;
}
.label-pile {
  color: #748d6f;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 25px;
  border: solid 1px #8aa385;
  background-color: #f1f7ec;
}
.label-cashback {
  color: #748d6f;
  padding: 4px 20px 2px 14px;
  border: solid 1px #748d6f;
  border-right: none;
  background-color: #f1f7ec;
  background-image: url('../img/img-cb.png');
  background-repeat: repeat-y;
  background-position: right;
  background-size: 6px;
  margin-left: -24px;
}
.courier-item {
  display: flex;
}
.courier-logo img {
  width: 70px;
  margin-right: 10px;
}
.courier-logo.sm img {
  width: 50px;
  margin-right: 10px;
}
.courier-price {
  color: #acacac;
}
.text-green {
  color: #748d6f;
}
.box-green {
  padding: 16px 24px 10px 24px;
  border-radius: 5px;
  background-color: #f7fcf2;
}
.timeline {
  position: relative;
  padding-left: 24px;
  margin-bottom: 6px;
}
.timeline > * {
  color: #acacac;
}
.timeline::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3px;
  height: calc(100% - 26px);
  background-color: #b8ccb3;
  content: ' ';
}
.timeline::after {
  position: absolute;
  top: 0;
  left: -9px;
  width: 20px;
  height: 20px;
  background-image: url('../img/tl-normal.svg');
  content: ' ';
}
.timeline.active > * {
  color: inherit;
}
.timeline.active::before {
  background-color: #7a9d74;
}
.timeline.active::after {
  background-image: url('../img/tl-active.svg');
  background-size: 20px;
}
.timeline.completed > * {
  color: inherit;
}
.timeline.completed::before {
  background-color: #e0e0e0;
}
.timeline.completed::after {
  background-image: url('../img/tl-completed.svg');
}
hr {
  display: block;
  border-top: 1px solid #efefef;
  margin: 24px 0;
}
.product-table {
  margin-bottom: 10px;
  padding: 0 24px;
}
.product-table-green {
  border-radius: 5px;
  padding: 10px 24px 0;
  background-color: #dde8d3;
}
.product-info .product-title {
  margin-bottom: 0;
}
.product-payment {
  width: 40%;
}
.product-payment .product-price {
  text-align: right;
  width: 50%;
}
.product-payment .product-qty {
  text-align: right;
  width: 15%;
}
.product-payment .product-payment {
  text-align: right;
  width: 35%;
}

.overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 300ms ease-in-out;
  visibility: hidden;
  opacity: 0;
  z-index: 999;
  overflow: auto;
}
.overlay:target {
  visibility: visible;
  opacity: 1;
}
.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  position: relative;
}
.popup .close {
  position: absolute;
  top: 20px;
  right: 20px;
  text-decoration: none;
}
.popup .close:hover {
  color: #06D85F;
}
.popup .content {
  padding-top: 36px;
  padding-bottom: 8px;
}
#popup-print .popup {
  width: 673px;
}
#popup-scan .popup {
  width: 633px;
  padding: 0;
}
#popup-manifest .popup {
  width: 100%;
  max-width: 1140px;
}
#popup-add .popup,
#popup-edit .popup{
  width: 830px;
  padding: 0;
}
#popup-delete .popup {
  width: 686px;
  padding: 0;
}
#popup-changepassword .popup {
  width: 460px;
  padding: 0;
}
#popup-add .content,
#popup-edit .content,
#popup-delete .content,
#popup-changepassword .popup {
  padding: 40px;
}
.label-wrapper {
  height: calc(100vh - 290px);
  overflow: auto;
}
.label-list {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px dashed #ebebeb;
}
.label-list:first-child {
  padding-top: 0;
}
.label-list:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.border-line {
  border-bottom: 1px solid #bfbfbf;
}
.border-line-lt {
  border-left: 1px solid #bfbfbf;
}
.col-wrap {
  padding: 14px 30px;
}
.flex-50 {
  flex: 0 0 50%;
}
.mw-80 {
  display: inline-block;
  min-width: 80px;
  margin-bottom: 0;
}

.credential {
  position: relative;
  padding-top: 4%;
  height: 100vh;
  overflow: hidden;
}
.credential-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
  width: 578px;
  height: 70%;
  padding: 0 100px;
  border-radius: 10px;
  box-shadow: 0 10px 20px 0 rgba(138, 163, 133, 0.17);
  border: solid 1px #8aa385;
  background-color: #ffffff;
}
.background-bubble {
  position: absolute;
  bottom: -2px;
  z-index: -1;
}
.background-bubble.left {
  left: -1px;
}
.background-bubble.right {
  text-align: right;
  right: -1px;
}
.background-bubble img {
  width: 39vw;
}
.background-bubble.right img {
  transform: scaleX(-1);
}
.brand-image {
  text-align: center;
  margin-bottom: 2%;
}
.brand-image img {
  width: 190px;
}
.heading {
  font-family: 'Belleza', Arial, Helvetica, sans-serif;
  color: #748d6f;
}
h1.heading {
  font-size: 44px;
  margin-bottom: 3%;
}
.form-credentials {
  width: 100%;
  text-align: center;
}
.form-credentials .form-group a {
  color: #748d6f;
  font-weight: 700;
}
.form-credentials .form-control {
  border-radius: 25px;
  border: solid 1px #e3e3e3;
  background-color: #f9f9f9;
  text-align: center;
}
.form-scan {
  width: 60%;
  margin: auto;
}
.form-scan .form-control {
  border-radius: 25px;
  border: solid 1px #8aa385;
  background-color: #f9faf8;
  text-align: center;
}
.form-scan  .form-control::-webkit-input-placeholder {
  color: #8aa385;
  font-style: italic;
}
.form-scan  .form-control:-ms-input-placeholder {
  color: #8aa385;
  font-style: italic;
}
.form-scan  .form-control::placeholder {
  color: #8aa385;
  font-style: italic;
}
.data-empty {
  text-align: center;
  padding: 60px 0;
}
.data-empty img {
  margin-bottom: 16px;
}

.box-drag-wrapper {
  width: 60%;
  margin: auto auto 30px;
  padding: 14px;
  border-radius: 10px;
  background-color: #f4f7f2;
}
.box-drag {
  display: flex;
  justify-content: space-between;
}
.box-drag-right {
  display: flex;
  flex: 0 0 80%;
  align-items: center;
}
.bx-dr-01 {
  width: 25%;
}
.bx-dr-02 {
  width: 30%;
}
.bx-dr-03 {
  width: auto;
}
.custom-file-upload {
  position: relative;
  height: 40px;
  margin-left: 30px;
}
.custom-file-upload input {
  position: relative;
  top: 7px;
  left: 16px;
}
.custom-file-upload input:focus {
  outline: none;
}
.custom-file-upload label {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.box-drag-function {
  width: 100%;
  text-align: center;
  padding: 60px 0 40px;
}
.box-drag-function img {
  width: 100px;
  height: 100px;
}
.label-ellipsis {
  display: inline-block;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin-top: 10px;
}
.btn-ellipsis {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.img-scan {
  text-align: center;
  margin-bottom: 54px;
}
.img-scan img {
  max-width: 330px;
}
.img-manifest {
  text-align: center;
  margin-bottom: 0px;
}
.img-manifest img {
  max-width: 133px;
}
.scan-instruction {
  max-width: 325px;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.35em;
  color: #8aa385;
  text-align: center;
  margin: auto;
  margin-bottom: 54px;
}
.scan-block {
  text-align: center;
}
.scan-block .scan-title {
  font-size: 20px;
  color: #626262;
}
.scan-block .scan-sub-title {
  font-style: italic;
  color: #626262;
  margin-bottom: 32px;
}
.scan-footer {
  text-align: center;
  margin-top: 54px;
  padding: 42px 42px 36px;
  background-color: #f4f7f2;
}
.scan-footer .btn {
  width: 160px;
}
.title-popup {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 12px;
  text-transform: uppercase;
  color: #626262;
  margin-bottom: 42px;
}
.tab-header > input,
.tab-header .tab-container > .tabs {
  display: none;
}
#tab1:checked ~ .tab-container .tab1,
#tab2:checked ~ .tab-container .tab2,
#tab3:checked ~ .tab-container .tab3,
#tab4:checked ~ .tab-container .tab4,
#tab5:checked ~ .tab-container .tab5,
#tab6:checked ~ .tab-container .tab6,
#tab7:checked ~ .tab-container .tab7,
#tab8:checked ~ .tab-container .tab8,
#tab9:checked ~ .tab-container .tab9  {
  display: block;
}
.tab-header{
  width: 100%;
  margin: 0 auto;
}
.tab-header .tab-container  {
  clear: both;
}
.tab-header .tab-container .tabs {
  padding: 0 18px 24px;
  width: 100%;
}
.table-popup {
  max-width: 990px;
  margin: auto;
}
.table-popup .table-head > div,
.table-popup .table-body > div {
  flex: 0 0 20%;
}
.table-popup .table-head > div:nth-child(1),
.table-popup .table-body > div:nth-child(1) {
  flex: 0 0 16%;
}
.table-popup .table-head > div:nth-child(2),
.table-popup .table-body > div:nth-child(2) {
  flex: 0 0 13%;
}
.table-popup .table-head > div:nth-child(3),
.table-popup .table-body > div:nth-child(3) {
  flex: 0 0 30%;
}
.table-popup .table-head > div:nth-child(3),
.table-popup .table-head > div:nth-child(5), 
.table-popup .table-body > div:nth-child(3),
.table-popup .table-body > div:nth-child(5) {
  text-align: center;
}
.table-popup .table-head,
.table-popup .table-body {
  padding: 10px 18px 10px 18px;
}
.table-popup .table-body {
  min-height: 73px;
}
.table-top {
  max-width: 990px;
  margin: 0 auto 24px;
}
.table-top .table-top-item {
  display: flex;
}
.table-top .table-top-item > div:nth-child(1) {
  width: 15%;
}
.table-top .table-top-item > div:nth-child(2) {
  width: 2%;
}
.signature-wrapper {
  display: flex;
  width: 100%;
  max-width: 990px;
  margin: 48px auto;
}
.signature-box {
  width: 50%;
  text-align: center;
}
.sign-base {
  letter-spacing: 1.4px;
  margin-top: 86px;
}
/* Error Accordion Styles */
.err-tabs,
.err-sub-tabs {
  overflow: hidden;
}
.err-tab,
.err-sub-tab {
  width: 100%;
  color:#57834f;
  overflow: hidden;
}
.err-tab input[type=checkbox],
.err-sub-tab input[type=checkbox] {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.err-tab-label,
.err-sub-tab-label {
  position: relative;
  font-size: 14px;
  display: flex;
  justify-content: flex-end;
  font-weight: 600;
  cursor: pointer;
  padding: 0 30px;
}
.err-tab-label::after,
.err-sub-tab-label::after {
  position: absolute;
  right: 0;
  top: -1px;
  content: " ";
  width: 24px;
  height: 24px;
  text-align: center;
  transition: all 300ms ease;
  background-image: url('../img/ico-arrow-tab-01.jpg');
  background-repeat: no-repeat;
  background-size: 24px;
}
.err-tab-content,
.err-sub-tab-content {
  max-height: 0;
  padding: 0 60px;
  color: #2c3e50;
  background: #fff;
  transition: all 350ms ease;
  visibility: hidden;
  opacity: 0;
}
.err-tab-close,
.err-sub-tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 16px;
  font-size: 0.75em;
  cursor: pointer;
}
input:checked + .err-tab-label,
input:checked + .err-sub-tab-label  {
  background: #fff;
}
input:checked + .err-tab-label::after,
input:checked + .err-sub-tab-label::after {
  transform: rotate(180deg);
  top: -2px;
}
input:checked ~ .err-tab-content,
input:checked ~ .err-sub-tab-content {
  max-height: 100%;
  padding: 24px 60px;
  visibility: visible;
  opacity: 1;
}
.err-sub-tab-label {
  justify-content: flex-start;
  font-weight: 400;
  font-style: italic;
  padding: 12px 24px;
  border-bottom: 1px solid #b8ccb3;
  margin-bottom: 0;
}
.err-sub-tab-label::after {
  right: 16px;
  top: 10px;
  width: 25px;
  height: 25px;
  background-image: url('../img/ico-arrow-tab-02.jpg');
  background-size: 25px;
}
input:checked + .err-sub-tab-label::after {
  top: 10px;
}
.err-sub-tab-content {
  padding: 0 24px;
}
input:checked ~ .err-sub-tab-content {
  padding: 24px 24px;
}
.err-sub-tab-content pre {
  white-space: normal;
  padding: 0;
  margin: 0;
}
.heading-sp {
  display: flex;
  align-items: center;
}
.ico-sp img {
  width: 54px;
  height: 54px;
  margin-right: 30px;
}
.title-sp a {
  font-weight: 600;
  color: #486a41;
}
.tool-tip-box {
  position: absolute;
  right: 20px;
  top: 20px;
}
.tool-tip {
  position: relative;
}
.tool-tip-icon {
  display: inline-block;
  padding: 1px 5px;
  line-height: 14px;
  font-size: 12px;
  width: 18px;
  height: 18px;
  border: solid 1px #486a41;
  background-color: #e0ead8;
  border-radius: 100%;
  margin-left: 7px;
}
a.tool-tip-icon {
  text-decoration: none;
  color: #486a41;
}
.tool-tip-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 50%;
  font-size: 12px;
  color: #486a41;
  padding: 14px;
  border-radius: 5px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  border: solid 1px #748d6f;
  background-color: #ffffff;
  margin-top: 10px;
  width: 240px;
  transform: translateX(-50%);
  z-index: 1;
}
.tool-tip-icon:focus + .tool-tip-content {
  visibility: visible;
  opacity: 1;
}
.tool-tip-content.right {
  left: auto;
  right: 0;
  transform: none;
}
.tool-tip.floating {
  position: absolute;
  top: 4px;
  right: 16px;
}
.pagination {
  text-align: center;
  margin: 24px 0;
}
ul.paging {
  margin: 0 auto;
  padding: 0;
}
ul.paging li {
  list-style: none;
  display: inline-block;
  margin: 0 2px;
}
ul.paging li a {
  display: block;
  color: #486a41;
  font-weight: 600;
  min-width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: 5px;
  border: 1px solid #f3f3f3;
  box-shadow: 0 0 6px 0 rgba(196, 196, 196, 0.28);
  text-decoration: none;
  transition: all 300ms ease;
}
ul.paging li a:hover,
ul.paging li a:focus {
  border-color: #486a41;
}
ul.paging li a.active {
  border-color: #486a41;
  background-color: #eef4ea;
}

.white-box {
  position: relative;
  border: 1px solid #ebebeb;
  border-radius: 5px;
  padding: 16px 6px 16px 40px;
  margin-bottom: 30px;
}
.white-box-left {
  position: relative;
  width: 27%;
  border-right: 1px solid #ebebeb;
}
.white-box-right {
  position: relative;
  width: 73%;
}
.white-box.box-hover {
  cursor: pointer;
  padding: 20px;
  transition: all 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.white-box.box-hover:hover {
  border-color: #57834f;
  background-image: linear-gradient(to bottom, rgba(224, 234, 216, 0) 35%, rgba(224, 234, 216, 0) 57%, #e9ffd8);
}
.white-box.box-hover::before {
  position: absolute;
  content: " ";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7px;
  transition: all 250ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.white-box.narrow {
  padding: 10px;
}
.white-box.narrow .tool-tip-box {
  right: 10px;
  top: 10px;
}
.heading-box {
  font-family: 'Belleza', Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 1.15;
  color: #626262;
}
.heading-box.lg {
  font-size: 24px;
}
.sub-heading-box {
  font-family: 'Belleza', Arial, Helvetica, sans-serif;
  color: #57834f;
}
.heading-percent {
  font-family: 'Belleza', Arial, Helvetica, sans-serif;
  font-size: 45px;
  line-height: 1.16;
  color: #486a41;
}
.heading-number {
  font-family: 'Belleza', Arial, Helvetica, sans-serif;
  font-size: 28px;
  line-height: 1.16;
  color: #57834f;
}
.trend {
  position: relative;
  display: inline-block;
  padding: 0 0 0 36px;
}
.trend:before {
  position: absolute;
  content: " ";
  top: 2px;
  left: 0;
  width: 32px;
  height: 32px;
  background-size: 32px;
  background-repeat: no-repeat;
  background-position: center left;
}
.trend.trend-down {
  color: #982c2c;
}
.trend.trend-down:before {
  background-image: url('../img/ico-arrow-down.svg');
}
.trend.trend-up {
  color: #57834f;
}
.trend.trend-up:before {
  background-image: url('../img/ico-arrow-up.svg');
}
.label-green {
  color: #61805b;
  padding: 5px 16px;
  border-radius: 6px;
  border: solid 1px #e0ead8;
  background-color: #f9faf8;
}
.label-box {
  font-size: 16px;
  line-height: 1.38;
  color: #61805b;
}
.label-box.grey {
  color: #626262;
}
.text-blue {
  color: #1b61b7;
}
.text-red {
  color: #ba5c5c;
}
.sub-label-box {
  font-family: 'Belleza', Arial, Helvetica, sans-serif;
  font-size: 24px;
  color: #57834f;
}
.legend-wrapper .legend {
  position: relative;
  font-size: 14px;
  padding: 4px 0 4px 20px;
}
.legend-wrapper .legend .legend-data {
  position: absolute;
  right: 0;
}
.legend-wrapper .legend::before {
  position: absolute;
  content: ' ';
  top: 8px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  border: solid 1px transparent;
}
.legend-wrapper .legend.pink {
  color: #a80b62;
}
.legend-wrapper .legend.pink::before {
  border-color: #ff9fd4;
  background-color: #ffd9ee;
} 
.legend-wrapper .legend.blue {
  color: #2c61a2;
}
.legend-wrapper .legend.blue::before {
  border-color: #568fd5;
  background-color: #a0c4f0;
}
.legend-wrapper .legend.cyan {
  color: #2094b4;
}
.legend-wrapper .legend.cyan::before {
  border-color: #7fd7ef;
  background-color: #e3f9ff;
}
.legend-wrapper .legend.green {
  color: #87af66;
}
.legend-wrapper .legend.green::before {
  border-color: #87af66;
  background-color: #d4edbf;
}
.legend-wrapper .legend.red {
  color: #d88282;
}
.legend-wrapper .legend.red::before {
  border-color: #d88282;
  background-color: #ffdede;
}
.legend-wrapper .legend.orange {
  color: #c39e3c;
}
.legend-wrapper .legend.orange::before {
  border-color: #c39e3c;
  background-color: #fff1cc;
}
.legend-line {
  position: relative;
  display: inline-block;
  color: #982c2c;
  padding-left: 64px;
}
.legend-line:before {
  position: absolute;
  content: ' ';
  top: 10px;
  left: 0;
  width: 54px;
  height: 1px;
  border-radius: 100%;
  border-bottom: dashed 1px #982c2c;
}
.box-statistic {
  padding: 20px 40px;
}
.p-40 {
  padding: 40px;
}
.p-20 {
  padding: 20px;
}
.box-setting-left {
  flex: 0 0 32%;
  padding-right: 15px;
}
.box-setting-right {
  flex: 0 0 68%;
  padding-left: 15px;
}
.form-setting {
  margin-top: 30px;
}
.form-setting label {
  display: block;
  text-align: center;
  color: #8aa385;
}
.form-setting .form-control {
  text-align: center;
}
.date-setting {
  font-size: 24px;
  line-height: 1.37;
  font-weight: 600;
  color: #748d6f;
  margin-bottom: 30px;
}
.note-text {
  font-size: 20px;
  line-height: 1.37;
  font-weight: 600;
  margin-bottom: 16px;
}
.add-setting {
  position: absolute;
  top: 20px;
  right: 20px;
}
.add-setting img {
  width: 30px;
  height: 30px;
}
.list-setting {
  margin-top: 30px;
}
.list-setting-item {
  display: flex;
  margin: 0 0 16px;
  padding: 16px 24px;
  border-radius: 8px;
  border: solid 1px #efefef;
}
.list-setting-item .ls-item-01 {
  flex: 0 0 30%;
  color: #8aa385;
  font-style: italic;
}
.list-setting-item .ls-item-02 {
  flex: 0 0 50%;
}
.list-setting-item .ls-item-03 {
  flex: 0 0 20%;
  text-align: right;
}
.btn-setting {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-top: 5px;
  background-repeat: no-repeat;
  background-size: 18px;
}
.btn-setting.delete {
  background-image: url('../img/ico-delete.png');
  margin-right: 16px;
}
.btn-setting.edit {
  background-image: url('../img/ico-edit.png');
  margin-left: 16px;
}
.button-popup {
  margin-top: 30px;
  text-align: center;
}
.button-popup a,
.button-popup button {
  display: inline-block;
  margin: 0 16px;
  min-width: 188px;
}
.product-list {
  display: flex;
  align-items: center;
}
.product-list .product-title {
  margin-bottom: 0;
  font-weight: 600;
  text-decoration: none;
  color: #486a41;
}
a.product-list {
  text-decoration: none;
}
.box-chart {
  margin: 16px 0;
  text-align: center;
}
.ci-chart-wrapper {
  display: flex;
  margin-left: -10px;
  margin-right: -10px;
}
.ci-chart-wrapper .ci-chart-box {
  display: flex;
  flex-direction: column;
  padding: 0 10px;
}
.ci-chart-wrapper .ci-chart-box:nth-child(1) {
  width: 25%;
}
.ci-chart-wrapper .ci-chart-box:nth-child(2) {
  width: 25%;
}
.ci-chart-wrapper .ci-chart-box:nth-child(3) {
  width: 50%;
}
.ci-chart-wrapper .ci-chart-box .white-box {
  height: 100%;
}
.page-item {
  display: flex;
  align-items: center;
}
form.page-input {
  margin: 0 8px 0 16px;
  width: 50px;
}
form.page-input .form-control {
  text-align: center;
}

.box-profile-info {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
.profile-avatar {
  padding-right: 20px;
}
.profile-avatar img {
  width: 64px;
  height: 64px;
  border-radius: 100%;
  border: 3px solid #e5e5e5;
}
.profile-name {
  font-size: 20px;
  line-height: 1.37;
  font-weight: 600;
  color: #748d6f;
}

/* ==========================================================================
   Custom Icon
   ========================================================================== */
@font-face {
  font-family: 'avoicon';
  src:  url('../fonts/avoicon.eot?cjkad5');
  src:  url('../fonts/avoicon.eot?cjkad5#iefix') format('embedded-opentype'),
    url('../fonts/avoicon.ttf?cjkad5') format('truetype'),
    url('../fonts/avoicon.woff?cjkad5') format('woff'),
    url('../fonts/avoicon.svg?cjkad5#avoicon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'avoicon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-order:before {
  content: "\e900";
}
.icon-service:before {
  content: "\e901";
}
.icon-product:before {
  content: "\e902";
}
.icon-customer:before {
  content: "\e903";
}
.icon-calendarbefore {
  content: "\e906";
}
.icon-print:before {
  content: "\e907";
}
.icon-deliver:before {
  content: "\e908";
}
.icon-resi:before {
  content: "\e909";
}
.icon-copy:before {
  content: "\e90b";
}
.icon-scan {
  width: 18px;
  margin: 0 8px 0 12px;
}


/* ==========================================================================
   Helper classes
   ========================================================================== */
.hidden,
[hidden] {
  display: none !important;
}
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto;
}
.invisible {
  visibility: hidden;
}
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}
.clearfix::after {
  clear: both;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 1615px) {
  .button-over button {
    margin: 0;
    width: 100%;
  }
  .button-over button:nth-child(2) {
    margin-top: 10px;
  }
}

@media (max-width: 1440px) {
  .table-data .table-head .th-order-05 {
    width: 7.7%;
  }
  .table-data .table-head .th-order-07 {
    width: 24.7%;
  }
  .box-drag-wrapper {
    width: 78%;
  }
  .table-data .th-sj-07 {
    width: 14.2%;
  }
  .white-box-left {
    width: 40%;
  }
  .white-box-right {
    width: 60%;
  }
}
@media (max-width: 1366px) {
  .table-data .table-head .th-order-05 {
    width: 8.5%;
  }
  .table-data .table-head .th-order-07 {
    width: 24.4%;
  }
  .box-drag-wrapper {
    width: 80%;
  }
  .btn-ellipsis {
    max-width: 140px;
  }
}
@media (max-width: 1280px) {
  .box-drag-wrapper {
    width: 90%;
  }
  .btn-ellipsis {
    max-width: 42px;
  }
}

/* ==========================================================================
   Print styles.
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}