.app-header {
  height: 52px;
  background: #006fbd;
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 12px;
  width: 100%;
}

.app-header-left {
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}

.app-header-right {
  width: 56px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
}

.app-header-title-wrap {
  flex: 1;
  min-width: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.15;
}

.app-header-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
}

.app-header-subtitle {
  font-size: 10px;
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 3px;
  white-space: nowrap;
}

.app-header-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: background 0.2s;
}

.app-header-menu:hover {
  background: rgba(255, 255, 255, 0.15);
}

.app-header-menu:active {
  opacity: 0.6;
}

.app-header-back {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: background 0.2s;
}

.app-header-back:hover {
  background: rgba(255, 255, 255, 0.15);
}

.app-header-back:active {
  opacity: 0.6;
}

@media (max-width: 768px) {
  .app-header {
    height: 52px;
    padding: 0 8px;
  }

  .app-header-left,
  .app-header-right {
    width: 44px;
  }

  .app-header-title {
    font-size: 15px;
  }

  .app-header-subtitle {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
  }

  .app-header-menu {
    width: 36px;
    height: 36px;
    font-size: 16px;
    border-radius: 6px;
    -webkit-tap-highlight-color: transparent;
  }

  .app-header-menu:hover {
    background: transparent;
  }

  .app-header-menu:active {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .app-header-menu {
    width: 32px;
    height: 32px;
    font-size: 15px;
    -webkit-tap-highlight-color: transparent;
  }
  .app-header-back {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}
.dashboard-sync-banner {
  margin: 12px 16px 8px;
  padding: 10px 14px;
  border: 1px solid #f0b429;
  background: #fff7e6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-sync-banner-content {
  flex: 1;
}

.dashboard-sync-banner-title {
  font-size: 14px;
  font-weight: 700;
  color: #ad6800;
  margin-bottom: 2px;
}

.dashboard-sync-banner-text {
  font-size: 13px;
  line-height: 1.4;
  color: #8c5a00;
}

.dashboard-sync-banner-btn {
  min-width: 96px;
  height: 34px;
  border: none;
  border-radius: 8px;
  background: #1677ff;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 0 12px;
  cursor: pointer;
}

.dashboard-sync-banner-btn:hover {
  background: #0958d9;
}

.dashboard-section {
  display: flex;
  align-items: center;
  height: 38px;
  padding: 0 16px;
  background: #f3f6f9;
  border-bottom: 1px solid #d9e2ec;
  font-size: 14px;
  font-weight: 700;
  color: #0f5f9a;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* desktop 4 cột */
  gap: 24px;
  padding: 24px 16px;
  justify-items: center;
}

.dashboard-item {
  width: 100px; 
  text-align: center;
  cursor: pointer;
}

.dashboard-item-icon {
  font-size: 42px;
  color: #1677ff;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
}

.dashboard-item-icon svg {
  font-size: 36px;
}

.dashboard-item-label {
  font-size: 14px;
  color: #006fbd;
  line-height: 1.3;
}

.dashboard-item:hover .dashboard-item-icon {
  transform: scale(1.1);
  transition: 0.2s;
}

.dashboard-item:hover .dashboard-item-label {
  color: #1677ff;
}

@media (max-width: 768px) {
  .dashboard-item {
    width: 80px;
  }
}

@media (max-width: 480px) {
  .dashboard-item {
    width: 70px;
  }

  .dashboard-item-icon svg {
    font-size: 30px;
  }
  
  .dashboard-item-label {
    font-size: 12px;
  }
  
  .dashboard-grid {
    grid-template-columns: repeat(2, 1fr); /* 👉 2 cột */
  }
}
.customer-page {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

.customer-table-wrap {
  flex: 1;
  width: 100%;
  min-height: 0;
  background: #fff;
  overflow: hidden;
}

.customer-page .ant-table-wrapper {
  width: 100%;
  height: 100%;
}

.customer-page .ant-spin-nested-loading,
.customer-page .ant-spin-container {
  height: 100%;
}

.customer-page .ant-table {
  width: 100%;
  border-radius: 0 !important;
}

.customer-page .ant-table-container {
  border-inline-start: none !important;
  border-radius: 0 !important;
  border-start-start-radius: 0 !important;
  border-start-end-radius: 0 !important;
}

.customer-page .ant-table-header {
  overflow: hidden !important;
  border-radius: 0 !important;
}

.customer-page .ant-table-thead > tr > th:first-child {
  border-start-start-radius: 0 !important;
}

.customer-page .ant-table-thead > tr > th:last-child {
  border-start-end-radius: 0 !important;
}

.customer-page .ant-table-thead > tr > th,
.customer-page .ant-table-tbody > tr > td {
  padding: 6px 8px;
  font-size: 13px;
  color: #000;
  vertical-align: top;
}

.customer-page .ant-table-thead > tr > th {
  font-weight: 700;
  background: lightgray;
  position: sticky;
  top: 0;
  z-index: 1;
}

.customer-page .ant-table-tbody > tr > td {
  background: #fff;
}

.customer-page .ant-table-cell {
  white-space: normal !important;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.customer-page .ant-table-thead > tr > th::before {
  display: none !important;
}

.customer-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 0 14px;
  font-size: 13px;
  color: #666;
  background: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.customer-load-more span {
  color: #8c8c8c;
}

.customer-load-more.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .customer-load-more,
  .customer-page .ant-table-tbody > tr > td,
  .customer-page .ant-table-thead > tr > th {
    font-size: 10px !important;
  }
}
.delivery-page {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
}

.delivery-table-wrap {
  flex: 1;
  width: 100%;
  min-height: 0;
  background: #fff;
  overflow: hidden;
}

.delivery-page .ant-table-wrapper {
  width: 100%;
  height: 100%;
}

.delivery-page .ant-spin-nested-loading,
.delivery-page .ant-spin-container {
  height: 100%;
}

.delivery-page .ant-table {
  width: 100%;
  border-radius: 0 !important;
}

.delivery-page .ant-table-container {
  border-inline-start: none !important;
  border-radius: 0 !important;
  border-start-start-radius: 0 !important;
  border-start-end-radius: 0 !important;
}

.delivery-page .ant-table-header {
  overflow: hidden !important;
  border-radius: 0 !important;
}

.delivery-page .ant-table-thead > tr > th:first-child {
  border-start-start-radius: 0 !important;
}

.delivery-page .ant-table-thead > tr > th:last-child {
  border-start-end-radius: 0 !important;
}

.delivery-page .ant-table-thead > tr > th,
.delivery-page .ant-table-tbody > tr > td {
  padding: 6px 8px;
  font-size: 14px;
  color: #000;
  vertical-align: top;
}

.delivery-page .ant-table-thead > tr > th {
  font-weight: 700;
  background: lightgray;
  position: sticky;
  top: 0;
  z-index: 1;
}

.delivery-page .ant-table-tbody > tr > td {
  background: #fff;
}

.delivery-page .ant-table-cell {
  white-space: normal !important;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.delivery-page .ant-table-thead > tr > th::before {
  display: none !important;
}

.delivery-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 0 14px;
  font-size: 13px;
  color: #666;
  background: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.delivery-load-more.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .delivery-load-more,
  .delivery-page .ant-table-tbody > tr > td,
  .delivery-page .ant-table-thead > tr > th {
    font-size: 10px !important;
  }
}
.customer-tree-popover {
  max-width: calc(100vw - 32px);
  left: 8px !important;
}

.customer-tree-popover .ant-popover-inner-content {
  padding: 0;
  margin-left: 0 !important;
}

.customer-tree-popover .ant-popover-inner {
  border-radius: 12px;
  overflow: hidden;
  margin-left: -6px;
}

.customer-dropdown-wrap {
  width: calc(100vw - 56px);
  max-width: 420px;
  max-height: 380px;
  overflow: hidden;
  background: #fff;
}

.customer-dropdown-wrap .ant-table {
  font-size: 12px !important;
}

.customer-dropdown-wrap .ant-table-thead > tr > th {
  padding: 10px 8px;
  font-weight: 700;
  background: #fafafa;
  white-space: nowrap;
}

.customer-dropdown-wrap .ant-table-tbody > tr > td {
  padding: 9px 8px;
  vertical-align: middle;
}

.customer-dropdown-wrap .ant-table-cell {
  white-space: normal;
  word-break: keep-all;
}

.customer-dropdown-wrap .ant-table-row-expand-icon-cell {
  width: 28px;
  min-width: 28px;
  padding-left: 6px !important;
  padding-right: 2px !important;
}

.customer-dropdown-wrap .customer-parent-row {
  font-weight: 700;
  background: #fff;
}

.customer-dropdown-wrap .customer-branch-row {
  background: #fafafa;
}

.customer-dropdown-wrap .customer-branch-row td {
  font-weight: 400;
  color: #333;
}

.customer-dropdown-wrap .ant-table-tbody > tr:hover > td {
  background: #eaf4ff !important;
}

.customer-dropdown-wrap .ant-table-body {
  overflow-y: auto !important;
}

.customer-parent-row {
  font-weight: 600;
  cursor: pointer;
}

.customer-branch-row {
  cursor: pointer;
}

.customer-branch-row td {
  background: #fafafa;
}
.product-autocomplete-popover {
  width: auto;
  max-width: calc(100vw - 32px);
}

.product-autocomplete-popover .ant-popover-inner {
  border-radius: 12px;
  overflow: hidden;
}

.product-autocomplete-popover .ant-popover-inner-content {
  padding: 0;
}

.product-autocomplete-popover .ant-table-wrapper {
  width: calc(100vw - 48px);
  max-width: 420px;
}

.product-autocomplete-popover .ant-table {
  font-size: 12px;
}

.product-autocomplete-popover .ant-table-thead > tr > th {
  background: #f5f5f5 !important;
  font-weight: 700;
  padding: 10px 8px;
  white-space: nowrap;
}

.product-autocomplete-popover .ant-table-tbody > tr > td {
  padding: 9px 8px;
  vertical-align: top;
}

.product-autocomplete-popover .ant-table-row {
  cursor: pointer;
}

.product-autocomplete-popover .ant-table-tbody > tr:hover > td {
  background: #e6f4ff !important;
}

.product-autocomplete-popover .ant-table-cell {
  white-space: normal;
  word-break: break-word;
}

.product-autocomplete-popover .ant-table-body {
  overflow-y: auto !important;
}
.add-cpo-page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.add-cpo-form {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.add-cpo-page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.add-cpo-tabs {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.add-cpo-tabs .tab {
  flex: 1;
  text-align: center;
  padding: 12px;
  cursor: pointer;
}

.add-cpo-tabs .tab.active {
  color: #1677ff;
  border-bottom: 2px solid #1677ff;
}

.add-cpo-content {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.add-cpo-content section {
  scroll-margin-top: 70px;
  margin-bottom: 16px;
}

section {
  margin-bottom: 32px;
}

.full-width {
  width: 100%;
}

.add-cpo-card .ant-picker,
.add-cpo-card .ant-select,
.add-cpo-card .ant-input {
  width: 100%;
}

.clickable-row {
  cursor: pointer;
}

.clickable-row:hover {
  background: #f5fbff;
}

.cpo-form-item {
  margin-bottom: 0 !important;
}

.cpo-form-item .ant-form-item-control-input {
  min-height: unset;
}

.cpo-field {
  padding: 10px 12px 8px;
  border-bottom: 1px solid #d9d9d9;
  background: #fff;
}

.cpo-field-label {
  font-size: 14px;
  font-weight: 700;
  color: #0070c0;
  margin-bottom: 4px;
  line-height: 18px;
}

.cpo-field-label span {
  color: red;
  margin-left: 1px;
}

.cpo-field .ant-input,
.cpo-field .ant-select-selector,
.cpo-field input {
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  background: transparent !important;

  font-size: 16px;
  color: #000;
}

.cpo-field .ant-select-selection-item,
.cpo-field .ant-select-selection-placeholder {
  padding-inline-end: 0 !important;
}

.cpo-field .ant-select-arrow {
  right: 0;
}

.cpo-field .ant-input:focus,
.cpo-field .ant-select-focused .ant-select-selector {
  box-shadow: none !important;
}

.cpo-field .ant-form-item-explain {
  padding-top: 4px;
}

.cpo-field textarea {
  padding: 0 !important;
  resize: none !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;

  font-size: 16px !important;
}

.upload-btn {
  padding-left: 0 !important;
  height: auto !important;
}

.cpo-field .ant-upload-list {
  margin-top: 8px;
}

.cpo-field .ant-upload-list-item {
  padding-left: 0 !important;
}

.cpo-field-value {
  margin-top: 2px;
  font-size: 14px;
  line-height: 18px;
  color: #000;
}

.italic {
  font-style: italic;
}

.disabled-row {
  opacity: 0.6;
}


/*** ItemsDetailPage **/
.items-detail-page {
  height: 100vh;
  background: #fff;
  display: flex;
  flex-direction: column;
}

.items-detail-content {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 0;
  /* overflow-y: auto; */
  height: calc(100vh - 52px);
  border-left: 1px solid #000;
  border-right: 1px solid #000;
  border-top: 1px solid #000;
}

.sample-detail-content {
  overflow-y: auto !important;
}

.virtual-list-wrap {
  height: 100%;
}

.items-search {
  position: sticky;
  top: 0;
  z-index: 20;

  border-radius: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid #000 !important;

  height: 34px;

  background: #fff !important;

  font-style: italic;
}

.item-detail-block {
  position: relative;
  padding-top: 8px;
}

.item-detail-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: #d9d9d9;
  border-bottom: 1px solid #000;
}

.item-detail-block + .item-detail-block::before {
  border-top: 1px solid #000;
}

.item-line {
  min-height: 40px;
  padding: 6px 10px;
  border-bottom: 1px solid #d9d9d9;
}

.item-line.full {
  width: 100%;
}

.item-label {
  font-size: 14px;
  font-weight: 700;
  color: #0070c0;
  line-height: 18px;
}

.item-label span {
  color: red;
}


.item-label em {
  display: block;
  margin-left: 4px;
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  color: #333;
}

.item-value {
  font-size: 14px;
  color: #000;
  line-height: 20px;
}

.item-select {
  width: 100%;
}

.item-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid #d9d9d9;
}

.item-grid.yellow {
  background: #fff2cc;
}

.item-cell {
  min-height: 42px;
  padding: 6px 10px;
}

.item-cell:first-child {
  border-right: 1px solid #d9d9d9;
}

.tax-radio {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-top: 4px;
}

.note-line {
  min-height: 58px;
  padding: 6px 10px;
}

.note-textarea {
  min-height: 28px !important;
  padding: 0 !important;
  line-height: 18px !important;
  resize: none !important;
  overflow-y: hidden !important;
}

.items-detail-page .ant-input,
.items-detail-page .ant-select-selector {
  box-shadow: none !important;
}

.add-new-item-wrap {
  position: sticky;
  bottom: 0;
  z-index: 30;

  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  background: #fff;
}

.add-new-item-fixed {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 8px 12px;
  border-top: 1px solid #e8e8e8;
  z-index: 10;
}

.add-new-item-btn {
  height: 44px;
  border-radius: 8px;
  font-weight: 600;
  /* height: 36px !important;
  color: #0070c0 !important;
  font-weight: 700 !important;
  padding: 0 !important; */
}
.field-error {
  animation: fieldBlink 1.2s ease 3;
}
@keyframes fieldBlink {
  0% {
    background: transparent;
  }

  50% {
    background: #fff7e6;
    box-shadow: 0 0 0 2px #ffd666 inset;
  }

  100% {
    background: transparent;
  }
}

@keyframes addBtnFade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-info-wrap input,
.product-code {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  line-height: 1.8;
}

.product-name {
  font-size: 12px;
  color: #555;
  display: inline-block;
  width: calc(100% - 45px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
}

.product-name-row {
  line-height: 18px;
}

.product-name.expanded {
  display: inline;
  white-space: normal;
}

.show-more-btn {
  margin-left: 4px;
  color: #1677ff;
  font-size: 12px;
  cursor: pointer;
  display: inline-block;
  width: 40px;
}

.product-packing {
  font-size: 12px;
  color: #555;
  line-height: 1.4;
}

.currency-text {
  min-width: 36px;
  font-size: 14px;
}

.price-row,
.qty-row {
  display: flex;
  align-items: center;
  gap: 2px;
}

.price-row .ant-input,
.qty-row .ant-input {
  width: 120px;
  padding-right: 0 !important;
}

.currency-select {
  width: 64px;
}

.unit-select {
  width: 70px;
}

.currency-select .ant-select-selector,
.unit-select .ant-select-selector {
  padding: 0 !important;
}

.unit-text {
  display: inline-block;
  min-width: 28px;
  white-space: nowrap;
}

.view-radio-group.ant-radio-group-disabled {
  opacity: 1;
}

.view-radio-group .ant-radio-wrapper-disabled {
  color: rgba(0, 0, 0, 0.88) !important;
}

.view-radio-group .ant-radio-disabled + span {
  color: rgba(0, 0, 0, 0.88) !important;
}

.view-radio-group .ant-radio-disabled .ant-radio-inner {
  background-color: #fff;
  border-color: #1677ff;
}

.view-select.ant-select-disabled .ant-select-selector {
  background: #fff !important;
  color: rgba(0, 0, 0, 0.88) !important;
}

.view-select.ant-select-disabled .ant-select-selection-item {
  color: rgba(0, 0, 0, 0.88) !important;
}

.view-datepicker.ant-picker-disabled {
  background: #fff !important;
  color: rgba(0,0,0,.88) !important;
}

.view-datepicker.ant-picker-disabled input {
  color: rgba(0,0,0,.88) !important;
  cursor: default;
}
/*** ItemsDetailPage **/
.cpo-management-page {
  flex: 1;
  width: 100%;
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  background: #f5f5f5;
  font-size: 14px;
}

.cpo-management-refresh {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.cpo-management-content {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.cpo-management-detail-loading {
  position: fixed;
  top: 52px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(1px);
  cursor: wait;
  pointer-events: all;
}

.cpo-management-filter-panel {
  position: relative;
  background: #fff;
  padding: 12px 12px 10px;
  border-bottom: 1px solid #e8e8e8;
}

.cpo-management-search {
  height: 38px;
  border-radius: 0;
}

.cpo-management-search-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #444;
  font-size: 16px;
}

.cpo-management-search-actions .anticon {
  cursor: pointer;
}

.cpo-management-clear-icon {
  color: #bfbfbf;
}

.cpo-management-status-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 10px;
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
  border: 1px solid #d7dce2;
  background: #fff;
}

.cpo-management-status {
  flex: 1 1 0;
  height: 30px;
  min-width: 0;
  padding: 0 4px;
  border: 0;
  border-right: 1px solid #d7dce2;
  border-radius: 0;
  background: #fff;
  color: #222;
  appearance: none;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  text-overflow: clip;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.cpo-management-status:first-child {
  flex: 0.65 1 0;
}

.cpo-management-status:last-child {
  flex: 1.35 1 0;
  border-right: 0;
}

.cpo-management-status.active {
  background: #337ab7;
  border-color: #337ab7;
  color: #fff;
  font-weight: 700;
  box-shadow: none;
}

.cpo-management-status:disabled {
  cursor: wait;
  opacity: 0.8;
}

.cpo-management-range {
  width: 100%;
  margin-top: 10px;
  border-radius: 0;
}

.cpo-management-range.ant-picker {
  border-radius: 0;
}

.cpo-management-range .ant-picker {
  width: 100%;
}

.cpo-management-range-dropdown .ant-picker-panel-container {
  max-width: calc(100vw - 24px);
  overflow: hidden;
}


.cpo-management-result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  color: #666;
  font-size: 12px;
  background: #fafafa;
  border-bottom: 1px solid #ededed;
}

.cpo-management-list {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 10px 10px 16px;
}

.cpo-management-row {
  box-sizing: border-box;
  padding-bottom: 10px;
}

.cpo-management-swipe,
.cpo-management-swipe .adm-swipe-action-content {
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
}

.cpo-management-swipe .adm-swipe-action-content {
  background: #fff;
}

.cpo-management-loading {
  display: flex;
  justify-content: center;
  padding: 50px 0;
}

.cpo-management-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cpo-management-card {
  height: 126px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  padding: 12px;
  margin-bottom: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}

.cpo-management-card.loading {
  opacity: 0.6;
  pointer-events: none;
}

.cpo-management-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.cpo-management-customer {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  word-break: break-word;
}

.cpo-management-customer small {
  color: #555;
  font-size: 12px;
  font-weight: 400;
}

.cpo-management-customer span,
.cpo-management-customer small,
.cpo-management-info-left div {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
}

.cpo-management-customer span,
.cpo-management-info-left div {
  -webkit-line-clamp: 1;
}

.cpo-management-customer small {
  -webkit-line-clamp: 1;
}

.cpo-management-tag {
  flex: 0 0 auto;
  display: inline;
  padding: 0.2em 0.6em 0.3em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25em;
}

.cpo-management-tag-warning {
  background: #f0ad4e;
}

.cpo-management-tag-info {
  background: #5bc0de;
}

.cpo-management-tag-success {
  background: #5cb85c;
}

.cpo-management-tag-danger {
  background: #d9534f;
}

.cpo-management-tag-default {
  background: #777;
}

.cpo-management-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 8px;
  gap: 12px;
  font-size: 13px;
}

.cpo-management-info-left {
  flex: 1;
  min-width: 0;
}

.cpo-management-info-left div {
  line-height: 1.4;
  word-break: break-all;
}

.cpo-management-info-right {
  flex-shrink: 0;
  text-align: right;
}

.cpo-management-info-right strong {
  font-weight: 700px;
  font-size: 15px;
}

.cpo-management-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 8px;
  color: #222;
  font-size: 13px;
  padding-top: 9px;
  border-top: 1px solid #f0f0f0;
}

.cpo-management-total-row span {
  color: #666;
}

.cpo-management-total-row strong {
  font-weight: 700;
  font-size: 15px;
}

.modal-po {
  margin-top: 10px;
  padding: 8px;
  background: #f5f6f8;
  border: 1px solid #e5e7eb;
  font-weight: 700;
}

@media (max-width: 768px) {
  .cpo-management-filter-panel {
    padding: 10px;
  }

  .cpo-management-status {
    height: 30px;
    min-width: 0;
    padding: 0 3px;
    font-size: 12px;
    line-height: 30px;
  }

  .cpo-management-range-dropdown {
    left: 10px !important;
    right: 10px !important;
    width: calc(100% - 20px) !important;
    max-width: calc(100vw - 20px);
  }

  .cpo-management-range-dropdown .ant-picker-panel-container,
  .cpo-management-range-dropdown .ant-picker-panel-layout,
  .cpo-management-range-dropdown .ant-picker-date-panel {
    width: 100%;
  }

  .cpo-management-range-dropdown .ant-picker-panels {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
  }

  .cpo-management-range-dropdown .ant-picker-panel {
    width: 100%;
  }

  .cpo-management-range-dropdown .ant-picker-panel + .ant-picker-panel {
    border-left: 0;
    border-top: 1px solid #f0f0f0;
  }

  .cpo-management-range-dropdown .ant-picker-header,
  .cpo-management-range-dropdown .ant-picker-body {
    padding-left: 8px;
    padding-right: 8px;
  }

  .cpo-management-range-dropdown .ant-picker-content {
    width: 100%;
    table-layout: fixed;
  }
}

:root {
  --adm-radius-s: 4px;
  --adm-radius-m: 8px;
  --adm-radius-l: 12px;
  --adm-font-size-1: 9px;
  --adm-font-size-2: 10px;
  --adm-font-size-3: 11px;
  --adm-font-size-4: 12px;
  --adm-font-size-5: 13px;
  --adm-font-size-6: 14px;
  --adm-font-size-7: 15px;
  --adm-font-size-8: 16px;
  --adm-font-size-9: 17px;
  --adm-font-size-10: 18px;
  --adm-color-primary: #1677ff;
  --adm-color-success: #00b578;
  --adm-color-warning: #ff8f1f;
  --adm-color-danger: #ff3141;
  --adm-color-yellow: #ff9f18;
  --adm-color-orange: #ff6430;
  --adm-color-wathet: #e7f1ff;
  --adm-color-text: #333333;
  --adm-color-text-secondary: #666666;
  --adm-color-weak: #999999;
  --adm-color-light: #cccccc;
  --adm-color-border: #eeeeee;
  --adm-color-background: #ffffff;
  --adm-color-highlight: var(--adm-color-danger);
  --adm-color-white: #ffffff;
  --adm-color-box: #f5f5f5;
  --adm-color-text-light-solid: var(--adm-color-white);
  --adm-color-text-dark-solid: #000000;
  --adm-color-fill-content: var(--adm-color-box);
  --adm-font-size-main: var(--adm-font-size-5);
  --adm-font-family: -apple-system, blinkmacsystemfont, 'Helvetica Neue',
    helvetica, segoe ui, arial, roboto, 'PingFang SC', 'miui',
    'Hiragino Sans GB', 'Microsoft Yahei', sans-serif;
  --adm-border-color: var(--adm-color-border);
}
html[data-prefers-color-scheme='dark'] {
  --adm-color-primary: #3086ff;
  --adm-color-success: #34b368;
  --adm-color-warning: #ffa930;
  --adm-color-danger: #ff4a58;
  --adm-color-yellow: #ffa930;
  --adm-color-orange: #e65a2b;
  --adm-color-wathet: #0d2543;
  --adm-color-text: #e6e6e6;
  --adm-color-text-secondary: #b3b3b3;
  --adm-color-weak: #808080;
  --adm-color-light: #4d4d4d;
  --adm-color-border: #2b2b2b;
  --adm-color-box: #0a0a0a;
  --adm-color-background: #1a1a1a;
  --adm-color-background-body: var(--adm-color-background);
  --adm-border-color: var(--adm-color-border);
}
:root {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
  background-color: var(--adm-color-background-body);
}
body {
  color: var(--adm-color-text);
  font-size: var(--adm-font-size-main);
  font-family: var(--adm-font-family);
}
a,
button {
  cursor: pointer;
}
a {
  color: var(--adm-color-primary);
  transition: opacity ease-in-out 0.2s;
}
a:active {
  opacity: 0.8;
}
.adm-plain-anchor {
  color: unset;
  transition: none;
}
.adm-plain-anchor:active {
  opacity: unset;
}
body.adm-overflow-hidden {
  overflow: hidden !important;
}
div.adm-px-tester {
  --size: 1;
  height: calc(var(--size) / 2 * 2px);
  width: 0;
  position: fixed;
  left: -100vw;
  top: -100vh;
  -webkit-user-select: none;
          user-select: none;
  pointer-events: none;
}

.adm-swipe-action {
  --background: var(--adm-color-background);
  background: var(--background);
  cursor: -webkit-grab;
  cursor: grab;
  overflow: hidden;
  touch-action: pan-y;
}
.adm-swipe-action-track {
  position: relative;
  overflow: visible;
}
.adm-swipe-action-actions {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: auto;
  white-space: nowrap;
}
.adm-swipe-action-actions-right {
  left: 100%;
  top: 0;
  height: 100%;
}
.adm-swipe-action-actions-left {
  right: 100%;
  top: 0;
  height: 100%;
}
.adm-swipe-action-action-button.adm-button {
  --border-radius: 0;
  --border-width: 0;
  --text-color: var(--adm-color-text-light-solid);
  padding-left: 20px;
  padding-right: 20px;
}

.adm-button {
  --color: var(--adm-color-text-light-solid);
  --text-color: var(--adm-button-text-color, var(--adm-color-text));
  --background-color: var(--adm-button-background-color, var(--adm-color-background));
  --border-radius: var(--adm-button-border-radius, 4px);
  --border-width: var(--adm-button-border-width, 1px);
  --border-style: var(--adm-button-border-style, solid);
  --border-color: var(--adm-button-border-color, var(--adm-color-border));
  color: var(--text-color);
  background-color: var(--background-color);
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  height: auto;
  padding: 7px 12px;
  margin: 0;
  font-size: var(--adm-font-size-9);
  line-height: 1.4;
  text-align: center;
  border: var(--border-width) var(--border-style) var(--border-color);
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: opacity ease 0.15s;
  -webkit-user-select: none;
          user-select: none;
}
.adm-button:focus {
  outline: none;
}
.adm-button::before {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(calc(var(--border-width) * -1), calc(var(--border-width) * -1));
  width: 100%;
  height: 100%;
  background-color: var(--adm-color-text-dark-solid);
  border: var(--border-width) var(--border-style) var(--adm-color-text-dark-solid);
  border-radius: var(--border-radius);
  opacity: 0;
  content: ' ';
  box-sizing: content-box;
}
.adm-button:active::before {
  opacity: 0.08;
}
.adm-button-default.adm-button-fill-outline {
  --background-color: transparent;
  --border-color: var(--adm-color-text);
}
.adm-button-default.adm-button-fill-none {
  --background-color: transparent;
  --border-width: 0px;
}
.adm-button:not(.adm-button-default) {
  --text-color: var(--adm-color-text-light-solid);
  --background-color: var(--color);
  --border-color: var(--color);
}
.adm-button:not(.adm-button-default).adm-button-fill-outline {
  --text-color: var(--color);
  --background-color: transparent;
}
.adm-button:not(.adm-button-default).adm-button-fill-none {
  --text-color: var(--color);
  --background-color: transparent;
  --border-width: 0px;
}
.adm-button-primary {
  --color: var(--adm-color-primary);
}
.adm-button-success {
  --color: var(--adm-color-success);
}
.adm-button-danger {
  --color: var(--adm-color-danger);
}
.adm-button-warning {
  --color: var(--adm-color-warning);
}
.adm-button-block {
  display: block;
  width: 100%;
}
.adm-button-disabled {
  cursor: not-allowed;
  opacity: 0.4;
}
.adm-button-disabled:active::before {
  display: none;
}
.adm-button.adm-button-mini {
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: var(--adm-font-size-main);
}
.adm-button.adm-button-mini.adm-button-shape-rounded {
  padding-left: 9px;
  padding-right: 9px;
}
.adm-button.adm-button-small {
  padding-top: 3px;
  padding-bottom: 3px;
  font-size: var(--adm-font-size-7);
}
.adm-button.adm-button-large {
  padding-top: 11px;
  padding-bottom: 11px;
  font-size: var(--adm-font-size-10);
}
.adm-button.adm-button-shape-rounded {
  --border-radius: 1000px;
}
.adm-button.adm-button-shape-rectangular {
  --border-radius: 0;
}
.adm-button-loading {
  vertical-align: bottom;
}
.adm-button-loading-wrapper {
  display: flex;
  height: 1.4em;
  align-items: center;
  justify-content: center;
}
.adm-button-loading-wrapper > .adm-loading {
  opacity: 0.6;
}

.adm-dot-loading {
  display: inline-block;
}

.sync-progress-block {
  margin-bottom: 36px;
}

.sync-progress-title {
  font-size: 24px;
  margin-bottom: 12px;
}

.sync-progress-title-text {
  font-weight: 700;
}

.sync-progress-count {
  font-weight: 400;
}

.sync-progress-bar {
  display: flex;
  gap: 6px;
  padding: 12px 14px;
  border: 2px solid #2b73e0;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  background: #fff;
}

.sync-progress-bar.error {
  border-color: #ff7875;
}

.sync-progress-box {
  flex: 1;
  height: 56px;
  background: #c8d8ea;
}

/* .sync-progress-box.active {
  background: #2b73e0;
} */

.sync-progress-meta {
  margin-top: 12px;
  min-height: 32px;
}

.sync-progress-status {
  font-size: 14px;
  color: #555;
}

.sync-progress-success {
  font-size: 14px;
  color: #389e0d;
  font-weight: 600;
}

.sync-progress-error-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sync-progress-error-text {
  font-size: 14px;
  color: #cf1322;
  line-height: 1.4;
}
.sync-page-root {
  padding: 28px 36px 20px;
  background: #f5f5f5;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 100%;
}

.sync-page-content {
  flex: 1;
}

.sync-page-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 26px;
}

.sync-page-footer {
  display: flex;
  justify-content: flex-end;
  padding-top: 12px;
  margin-top: auto;
  border-top: 1px solid #e5e5e5;
}
html,
body,
#root {
  margin: 0;
  padding: 0;
  min-height: 100%;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f3f3f3;
  color: #000;
}

button {
  font: inherit;
}

.app-page {
  min-height: 100vh;
  height: 100vh;
  background: #f3f3f3;
  display: flex;
  justify-content: center;
  padding: 0;
  box-sizing: border-box;
}

.app-card {
  width: 100%;
  max-width: 980px;
  height: 100%;
  background: #fff;
  border: 1px solid #222;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.app-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  width: 100%;
  min-height: 0;
}

.app-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.app-sidebar {
  position: absolute;
  top: 0;
  left: 0;
  width: 260px;
  height: 100%;
  background: #ffffff;
  border-right: 1px solid #d9d9d9;
  display: flex;
  flex-direction: column;
  z-index: 20;
  transition: transform 0.22s ease-out;
  box-shadow: 4px 0 18px rgba(0, 0, 0, 0.08);
}

.app-sidebar.closed {
  transform: translateX(-100%);
}

.app-sidebar.open {
  transform: translateX(0);
}

.app-sidebar-logo {
  height: 116px;
  padding: 18px 16px;
  border-bottom: 1px solid #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  cursor: pointer;
  transition: transform 0.15s ease;
}

.app-sidebar-logo:hover {
  opacity: 0.9;
}

.app-sidebar-logo-image {
  max-width: 220px;
  /* max-height: 72px; */
  width: auto;
  height: auto;
  object-fit: contain;
  transform: scale(0.97);
}

.app-sidebar-user-card {
  margin: 16px 14px 0;
  padding: 14px 12px;
  border: 1px solid #ececec;
  border-radius: 10px;
  background: #fafafa;
}

.app-sidebar-user-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.5;
  color: #1f1f1f;
  word-break: break-word;
}

.app-sidebar-user-row .label {
  min-width: 52px;
  font-weight: 700;
  color: #111;
}

.app-sidebar-role {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #d9d9d9;
  font-size: 13px;
  font-weight: 700;
  color: #0f5f9a;
  text-transform: uppercase;
}

.app-sidebar-footer {
  margin-top: auto;
  padding: 13px;
  border-top: 1px solid #ececec;
  background: #fff;
}

.app-sidebar-logout {
  width: 100%;
  height: 42px;
  border-radius: 10px !important;
  font-size: 13px;
  font-weight: 700;
}

.app-sync-btn {
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  border: none;
  border-radius: 50%;
  background: #4d6dff;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.app-table-wrap {
  background: #f5f5f5;
}

/* Scrollbar cho table */
.app-table-scroll .ant-table-body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.app-table-scroll .ant-table-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.03);
  border-radius: 999px;
}

.app-table-scroll .ant-table-body::-webkit-scrollbar-thumb {
  background: rgba(0, 111, 189, 0.4);
  border-radius: 999px;
  transition: all 0.2s ease;
}

.app-table-scroll .ant-table-body::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 111, 189, 0.65);
}

/* Login page */
#components-login {
  min-height: 100vh;
  width: 100%;
  background: linear-gradient(135deg, #eef5fb 0%, #f8fbff 55%, #eaf3fb 100%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px;
  padding-top: 120px;
}

#components-login .login-form {
  width: 100%;
  max-width: 360px;
  padding: 32px 28px 28px;
  background: #fff;
  border: 1px solid #e6eef5;
  border-radius: 16px;
  box-shadow: 0 14px 36px rgba(0, 111, 189, 0.14);
  animation: loginFadeScale 0.35s ease-out;
  transform-origin: center;
}

@keyframes loginFadeScale {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

#components-login .ant-form-item:first-child {
  text-align: center;
  margin-bottom: 26px;
}

#components-login .ant-form-item:first-child img {
  max-width: 190px;
  height: auto !important;
  object-fit: contain;
  animation: loginLogoFade 0.45s ease-out;
}

@keyframes loginLogoFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#components-login .ant-row,
#components-login .ant-col {
  width: 100%;
}

#components-login .ant-form-item {
  margin-bottom: 16px;
}

#components-login .ant-input-affix-wrapper {
  height: 42px;
  border-radius: 10px;
  border-color: #d9e5ef;
  background: #fbfdff;
}

#components-login .ant-input-affix-wrapper:hover,
#components-login .ant-input-affix-wrapper-focused {
  border-color: #006fbd;
  box-shadow: 0 0 0 2px rgba(0, 111, 189, 0.12);
}

#components-login .site-form-item-icon {
  color: #006fbd;
}

#components-login .login-form-button {
  width: 100%;
  height: 42px;
  border-radius: 10px;
  background: #006fbd;
  border-color: #006fbd;
  font-weight: 700;
}

#components-login .login-form-button:hover,
#components-login .login-form-button:focus {
  background: #005fa3;
  border-color: #005fa3;
}

@media (max-width: 768px) {
  .app-page {
    padding: 0;
    height: 100vh;
  }

  .app-card {
    max-width: 100%;
    width: 100%;
    border: none;
  }

  .app-sidebar {
    width: 248px;
    box-shadow: 6px 0 20px rgba(0, 0, 0, 0.14);
  }

  .app-sidebar-logo {
    height: 92px;
    padding: 14px 12px;
    -webkit-tap-highlight-color: transparent;
  }

  .app-sidebar-logo:hover {
    opacity: 1;
  }

  .app-sidebar-logo-image {
    max-width: 132px;
    max-height: 52px;
  }

  .app-sidebar-user-card {
    margin: 12px 10px 0;
    padding: 12px 10px;
    border-radius: 8px;
  }

  .app-sidebar-user-row {
    font-size: 10px;
    margin-bottom: 6px;
    gap: 4px;
  }

  .app-sidebar-user-row .label {
    min-width: 46px;
  }

  .app-sidebar-role {
    margin-top: 8px;
    padding-top: 8px;
    font-size: 10px;
  }

  .app-sidebar-footer {
    padding: 10px;
  }

  .app-sidebar-logout {
    height: 38px;
    font-size: 10px;
    border-radius: 8px !important;
  }

  .app-overlay {
    background: rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(1px);
  }
  
  .app-sync-btn {
    width: 26px !important;
    height: 26px !important;
    min-width: 26px !important;
    font-size: 15px;
    background: #4d6dff;
    box-shadow: 0 2px 6px rgba(77, 109, 255, 0.35);
  }

  .app-sync-btn:active {
    transform: scale(0.95);
  }

  #components-login {
    padding: 20px;
    align-items: flex-start;
    padding-top: 140px;
  }

  #components-login .login-form {
    max-width: 340px;
    padding: 28px 24px 24px;
    border-radius: 14px;
    animation: loginFadeMobile 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  }

  #components-login .ant-form-item:first-child img {
    max-width: 175px;
  }
}

@media (max-width: 480px) {
  .app-sidebar {
    width: 194px;
  }

  .app-sidebar-logo {
    height: 84px;
    padding: 12px 10px;
  }

  .app-sidebar-logo-image {
    max-width: 118px;
    max-height: 46px;
    transform: scale(0.97);
  }

  .app-sidebar-user-card {
    margin: 10px 8px 0;
    padding: 10px 9px;
  }

  .app-sidebar-user-row {
    font-size: 10px;
    line-height: 1.4;
  }

  .app-sidebar-user-row .label {
    min-width: 42px;
  }

  .app-sidebar-role {
    font-size: 10px;
  }

  .app-sidebar-footer {
    padding: 8px;
  }

  .app-sidebar-logout {
    height: 36px;
    font-size: 10px;
  }

  .app-sync-btn {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    font-size: 14px;
    background: #4d6dff;
    box-shadow: 0 2px 6px rgba(77, 109, 255, 0.35);
  }

  .app-sync-btn:active {
    transform: scale(0.95);
  }

  #components-login {
    padding: 18px;
    align-items: flex-start;
    padding-top: 90px;
  }

  #components-login .login-form {
    max-width: 100%;
    padding: 28px 22px 24px;
    border-radius: 14px;
  }

  #components-login .ant-form-item:first-child {
    margin-bottom: 22px;
  }

  #components-login .ant-form-item:first-child img {
    max-width: 165px;
  }

  #components-login .ant-input-affix-wrapper,
  #components-login .login-form-button {
    height: 40px;
    border-radius: 9px;
  }
}

@keyframes loginFadeMobile {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
