/* Extra classes
-------------------------------------------------------------- */
.hidden {
  display: none;
}

.block {
  display: block;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed !important;
}

.position-unset {
  position: unset;
}

.over-hidden {
  overflow: hidden;
}

.z-5 {
  z-index: 5;
}

.flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.flex-grow {
  flex-grow: 1;
}

.row-reverse {
  flex-direction: row-reverse;
}

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

.justify-end {
  justify-content: flex-end;
}

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

.items-center {
  align-items: center;
}

.flex-wrap {
  flex-wrap: wrap;
}

.gap20 {
  gap: 20px !important;
}

.wg-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  padding: 24px;
  flex-direction: column;
  gap: 24px;
  border-radius: 12px;
  background: var(--White);
  box-shadow: 0px 4px 24px 2px rgba(10, 10, 12, 0.0509803922);
}


@media (max-width: 1440px) {
  .wg-box {
    padding: 24px 15px;
  }
}

.wg-table {
  overflow-x: auto !important;
}
.wg-table::-webkit-scrollbar {
  height: 4px;
}
.wg-table::-webkit-scrollbar-thumb {
  background: var(--Note);
  border-radius: 10px;
}
.wg-table .table-title {
  justify-content: space-between;
}

.wg-table.table-all-attribute > * {
  min-width: 600px;
}
.wg-table.table-all-attribute ul.table-title {
  padding: 12px;
  border-radius: 12px;
  background: var(--Surface-3);
}
.wg-table.table-all-attribute ul.table-title li {
  width: 100%;
}
/* .wg-table.table-all-attribute ul.table-title li:last-child {
  width: 130px;
  flex-shrink: 0;
} */
.wg-table.table-all-attribute .attribute-item {
  padding: 23px 12px 19px;
  border-radius: 12px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wg-table.table-all-attribute .attribute-item > div {
  width: 100%;
}
/* .wg-table.table-all-attribute .attribute-item > div:last-child {
  width: 130px;
  flex-shrink: 0;
} */
.wg-table.table-all-attribute .attribute-item:nth-child(2n+1) {
  background: var(--Surface-3);
}
.wg-table.table-all-attribute .attribute-item:hover {
  background-color: var(--hv-item) !important;
}
.wg-table.table-all-attribute.lg .attribute-item {
  padding: 23px 12px 19px;
}

.divider {
  height: 1px;
  align-self: stretch;
  background: #EDF1F5;
  color: var(--Surface-2);
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.text-tiny {
  color: var(--Main-Dark);
  font-size: 12px;
  line-height: 14.4px;
}

.body-title {
  color: var(--Main-Dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.body-text {
  color: var(--Main-Dark);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

.list-icon-function {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 20px;
}
.list-icon-function .item {
  font-size: 20px;
  cursor: pointer;
}
.list-icon-function .item.eye {
  color: #FF7433;
}
.list-icon-function .item.edit {
  color: #22C55E;
}
.list-icon-function .item.trash {
  color: #DB1215;
}

/* .price-grid-table .wg-table .price-grid-table-row li div.clickable-grid-price:not(.selected-grid-price):hover {
  cursor: pointer;
  color: var(--cf-red);
  text-decoration: underline;
} */