.store-wrapper {
  --store-primary-code: var(--store-primary-code-theme, 26, 49, 153);
  --store-sidebar-width: 300px;
  --store-sidebar-bg: #f5f5f5;
  --store-sidebar-radius: 5px;
  display: flex;
}
.store-sidebar {
  width: var(--store-sidebar-width);
  background-color: var(--store-sidebar-bg);
  height: 100vh;
  font-size: 14px;
}
.store-sidebar-account {
  text-align: center;
  background: rgba(var(--store-primary-code), 0.1);
  border-radius: var(--store-sidebar-radius);
}
.store-sidebar-account-avatar {
  --avatar-size: 100px;
  display: inline-block;
  border-radius: 50%;
  width: var(--avatar-size);
  height: var(--avatar-size);
  background-color: #fff;
  border: 3px solid #fff;
  overflow: hidden;
}
.store-sidebar-account-avatar img {
  width: 100%;
  height: auto;
}
.store-sidebar-account-info {
  font-size: 0.9rem;
}
.store-sidebar-account-info h3 {
  font-size: 1rem;
}
.store-sidebar-account-balance {
  font-size: 1.1rem;
}
.store-sidebar-account-balance .balance {
  color: #0a53be;
  font-size: 1.2rem;
}
.store-sidebar-menu {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.store-sidebar-menu li {
  padding: 5px 0;
}
.store-sidebar-menu li a {
  color: #000;
  font-size: 1rem;
  padding: 10px;
  border-radius: var(--store-sidebar-radius);
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: bold;
}
.store-sidebar-menu li a:hover,
.store-sidebar-menu li a.active {
  color: var(--theme-color);
  background-color: rgba(var(--store-primary-code), 0.05);
}
.store-content {
  flex: 1;
  background-color: #fff;
}
.store-content .card {
  box-shadow: 0 0 10px 0 rgba(211, 211, 211, 0.64);
  border: 1px solid #ececec;
}
.store-content .card-header {
  border-bottom: 0;
}
.store-content .card-body {
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
}
.store-content .card-body-icon i {
  font-size: 3rem;
  color: rgba(var(--store-primary-code), 0.5);
}
.store-content .card-footer {
  border-top: 0;
}
.store-content table.table {
  margin: 0;
  border: 0 solid #ccc !important;
  text-align: left;
  padding: 0 5px;
}
.store-content table.table .check-column {
  width: 50px;
}
.store-content table.table > thead {
  border-top: 0 solid #ccc;
}
.store-content table.table > thead > tr > th {
  vertical-align: middle;
  color: #575962;
  background-color: rgba(var(--store-primary-code), 0.1);
  text-transform: uppercase;
  font-size: 0.7rem !important;
  font-weight: 500;
  border-bottom: 0 solid #ddd;
}
.store-content table.table tr {
  border: 0;
  transition: all 0.5s ease;
}
.store-content table.table tr:nth-child(odd) > td {
  background-color: #fff;
}
.store-content table.table tr:first-child td.field_order_number {
  border-top: 0 solid #fff;
}
.store-content table.table tr td {
  transition: all 0.5s ease;
  vertical-align: middle;
  border: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 0.9rem;
}
.store-content table.table tr td img {
  max-width: 80px;
  border-radius: 4px;
}
.store-content table.table tr td.field_order_number {
  color: #000;
}
.store-content table.table tr td.field_order_number span {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  height: 20px;
  width: 20px;
  line-height: 20px;
  font-weight: 700;
  background-color: #fff;
}
.store-content table.table tr td.column-image {
  width: 50px;
}
.store-content table.table tr td.column-image img {
  width: 50px;
}
.store-content table.table tr td.column-action {
  width: 160px;
}
.store-content table.table tr.new td {
  background-color: #e1f1ea;
}
.store-content table.table tr:hover td {
  background-color: #eeeff0;
}
.store-content table.table tr:hover td:first-child {
  border-top-left-radius: 5px;
}
.store-content table.table tr:hover td:last-child {
  border-top-right-radius: 5px;
}
.store-content table.table tr:hover td:first-child {
  border-bottom-left-radius: 5px;
}
.store-content table.table tr:hover td:last-child {
  border-bottom-right-radius: 5px;
}
.store-content table.table tr:hover .action-hide {
  opacity: 1;
}
.store-content table.table tr .action-hide {
  opacity: 0;
  color: #ccc;
}
.store-content table.table tr .action-hide a {
  padding: 0 10px;
}
.store-content table.table tr .action-hide span {
  font-size: 11px;
}
.store-content table.table .no-items h4 {
  font-size: 1rem;
}
.store-content .table-responsive {
  margin-bottom: 0;
}
.store-content .rule {
  max-height: 500px;
  overflow-y: auto;
}
.store-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--theme-color);
}
.store-navigation .heading {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}
.store-link .copy-able {
  position: relative;
}
.store-link .copy-able input {
  padding-right: 36px;
}
.store-link .copy-able .button {
  position: absolute;
  top: 50%;
  right: -20px;
  padding: 3px 20px;
  transform: translateX(-50%);
  background-color: var(--theme-color);
  color: #fff;
  cursor: pointer;
  border-radius: var(--store-sidebar-radius);
}
.store-link-result {
  padding: 10px;
  background-color: rgba(var(--store-primary-code), 0.1);
  border-radius: var(--store-sidebar-radius);
}
.store-gird {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.text-theme {
  color: var(--theme-color);
}
.bank-item {
  border: 2px solid #ccc;
  border-radius: var(--store-sidebar-radius);
  padding: 10px;
  cursor: pointer;
  opacity: 0.5;
}
.bank-item.active {
  border-color: var(--theme-color);
  opacity: 1;
}
.form-group label {
  padding-bottom: 0!important;
}
.modal-backdrop.fade.show {
  opacity: 0.5 !important;
  filter: alpha(opacity=50);
}
.modal-header {
  align-items: center;
  background: transparent;
  min-height: 3.5rem;
  border-bottom: 0!important;
}
.modal-header .modal-title {
  font-size: 2rem;
  font-weight: bold;
}
.modal-footer {
  align-items: center;
  background-color: #f6f8fb;
  border-bottom-left-radius: 7px;
  border-bottom-right-radius: 7px;
  border-top: 1px solid #dce1e7;
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding: calc(1.5rem - 0.75rem*0.5);
}

.store-wrapper [class*=label-] {
  height: 20px;
  font-size: 12px;
  border-radius: 4px;
  padding: 2px 8px;
  font-weight: 400;
  line-height: 20px;
  margin-right: 4px;
}
.store-wrapper .label-1 {
  background: rgba(243,116,6,.1);
  color: #ef7733;
}
.store-wrapper .label-2 {
  background: rgba(21,90,169,.1);
  color: #242933;
}
.store-wrapper .label-3 {
  background-color: #a6a6a6;
  color: #fff;
}