.details.qvl-data-table {
  position: relative;
  background-color: #ffffff;
  color: rgba(0, 0, 0, 0.85);
  padding-top: 0;
  padding-bottom: 0;
}

.details .qvl-data-table__shell {
  display: grid;
  gap: 1rem;
}

.details .qvl-data-table__filter-bar {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
  position: sticky;
  top: var(--qvl-data-table-sticky-top, 60px);
  z-index: 30;
  padding-block: 8px;
  background: #ffffff;
}

.details .qvl-data-table__filter-bar::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: var(--qvl-data-table-sticky-table-gap, 0px);
  background: #ffffff;
  pointer-events: none;
}

.details .qvl-data-table__filter-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.details .qvl-data-table__search-spacer {
  display: none;
  flex: 1 1 auto;
  min-width: 0;
}

.details .qvl-data-table__search-spacer.is-active {
  display: block;
}

.details .qvl-data-table__filter {
  position: relative;
}

.details .qvl-data-table__filter-control {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 3px;
  box-sizing: border-box;
}

.details .qvl-data-table__filter.has-selection .qvl-data-table__filter-control {
  overflow: hidden;
  background: linear-gradient(210deg, #4d4d5b 0%, #9798a9 53.98%, #585768 100%);
}

.details .qvl-data-table__filter-button {
  position: relative;
  display: inline-flex;
  width: auto;
  min-width: 0px;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  gap: 4px;
  padding: 6px 9px;
  background: #ffffff;
  border: 1px solid #8a8a8a;
  border-radius: 3px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.details .qvl-data-table__filter-button:hover {
  background: #f5f5f5;
  border-color: #8a8a8a;
}

.details .qvl-data-table__filter.is-open .qvl-data-table__filter-button {
  background: #f5f5f5;
  border-color: #8a8a8a;
  color: #1f1f1f;
}

.details .qvl-data-table__filter.has-selection .qvl-data-table__filter-button {
  flex: 1 1 auto;
  margin: -1px 0 -1px -1px;
  background: transparent;
  border-color: transparent;
  border-radius: 0;
  color: #ffffff;
  justify-content: flex-start;
  text-align: left;
}

.details .qvl-data-table__filter.has-selection .qvl-data-table__filter-button:hover,
.details .qvl-data-table__filter.has-selection.is-open .qvl-data-table__filter-button {
  background: transparent;
  border-color: transparent;
  color: #ffffff;
}

.details .qvl-data-table__filter-label {
  display: block;
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
  font-size: 12px;
  line-height: 1.5;
}

.details .qvl-data-table__filter-icon {
  display: block;
  flex-shrink: 0;
  width: 12px;
  height: 8px;
  background: url('../../../images/qvl/arrow-down.png') center / 12px 8px no-repeat;
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.details .qvl-data-table__filter-icon svg {
  display: none;
}

.details .qvl-data-table__filter.is-open .qvl-data-table__filter-icon--closed {
  transform: rotate(180deg);
}

.details .qvl-data-table__filter.has-selection .qvl-data-table__filter-icon {
  display: none;
  opacity: 0;
  pointer-events: none;
}

.details .qvl-data-table__filter-badge {
  margin-left: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  background: #8a8a8a;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
}

.details .qvl-data-table__filter-badge[hidden] {
  display: none;
}

.details .qvl-data-table__filter.has-selection .qvl-data-table__filter-badge {
  background: #ffffff;
  color: #585768;
}

.details .qvl-data-table__filter-clear-one {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: 26px;
  padding: 0;
  box-sizing: border-box;
  background: #ffffff;
  border: 1px solid #8a8a8a;
  border-left: 0;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  opacity: 1;
  transition: opacity 180ms ease;
}

.details .qvl-data-table__filter.has-selection .qvl-data-table__filter-clear-one {
  padding-right: 4px;
  background: transparent;
  border-color: transparent;
  border-radius: 0;
}

.details .qvl-data-table__filter.has-selection .qvl-data-table__filter-clear-one-icon {
  filter: brightness(0) invert(1);
}

.details .qvl-data-table__filter-clear-one:hover {
  opacity: 1;
}

.details .qvl-data-table__filter.is-open .qvl-data-table__filter-clear-one {
  opacity: 1;
}

.details .qvl-data-table__filter-clear-one-icon {
  display: block;
  width: 14px;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}

.details .qvl-data-table__filter-clear-one[hidden] {
  display: none;
}

.details .qvl-data-table__dropdown {
  position: absolute;
  left: 0px;
  top: 100%;
  z-index: 40;
  margin-top: 0.5rem;
  display: none;
  min-width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px) saturate(140%);
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  padding: 10px 0 0;
  width: -moz-max-content;
  width: max-content;
  min-width: 102px;
}

.details .qvl-data-table__filter.is-align-right .qvl-data-table__dropdown {
  left: auto;
  right: 0;
}

.details .qvl-data-table__filter.is-open .qvl-data-table__dropdown {
  display: block;
}

.details .qvl-data-table__filter[data-filter-type='single'] .qvl-data-table__dropdown {
  padding-top: 0;
}

.details .qvl-data-table__dropdown-list {
  margin: 0px;
  display: grid;
  list-style-type: none;
  padding: 0px;
  gap: 4px;
  max-height: 280px;
  overflow-y: auto;
}

.details .qvl-data-table__dropdown-actions {
  margin-top: 12px;
  padding: 0 10px 10px;
}

.details .qvl-data-table__dropdown-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: 82px;
  height: 22px;
  padding: 0;
  background: url('../../../images/qvl/apply-bg.png') center / 100% 100% no-repeat;
  border: 0;
  border-radius: 0;
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition:
    opacity 180ms ease;
}

.details .qvl-data-table__dropdown-apply:hover {
  opacity: 0.92;
}

.details .qvl-data-table__dropdown--rules {
  width: -moz-max-content;
  width: max-content;
  max-width: calc(100vw - 32px);
  padding: 0;
  overflow: hidden;
}

.details .qvl-data-table__rules {
  display: grid;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  gap: 8px;
  padding: 10px;
}

.details .qvl-data-table__rules-mode {
  display: inline-flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  overflow: hidden;
}

.details .qvl-data-table__rules-mode-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-width: 0px;
  background-color: transparent;
  height: 20px;
  padding: 0 14px;
  color: #666666;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.details .qvl-data-table__rules-mode-button.is-active {
  background: linear-gradient(210deg, #4d4d5b 0%, #9798a9 53.98%, #585768 100%);
  color: #ffffff;
}

.details .qvl-data-table__rules-list {
  display: grid;
  gap: 10px;
}

.details .qvl-data-table__rule-row {
  display: grid;
  gap: 10px;
}

.details .qvl-data-table__rule-grid {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
}

.details .qvl-data-table__rule-select-shell,
.details .qvl-data-table__rule-input {
  width: 100%;
}

.details .qvl-data-table__rule-select-shell {
  position: relative;
  width: 120px;
}

.details .qvl-data-table__rule-select-button,
.details .qvl-data-table__rule-input {
  height: 20px;
  padding: 0 10px;
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  color: #666666;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  box-sizing: border-box;
}

.details .qvl-data-table__rule-input {
  width: 100%;
  min-width: 0;
}

.details .qvl-data-table__rule-select-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.details .qvl-data-table__rule-select-label {
  display: block;
  text-align: left;
}

.details .qvl-data-table__rule-select-icon {
  width: 8px;
  height: 5px;
  flex: 0 0 8px;
  background: url('../../../images/qvl/arrow-down.png') center / 8px 5px no-repeat;
  transition: transform 160ms ease;
  transform-origin: center;
}

.details .qvl-data-table__rule-select-shell.is-open .qvl-data-table__rule-select-icon {
  transform: rotate(180deg);
}

.details .qvl-data-table__rule-input::-moz-placeholder {
  color: #999999;
}

.details .qvl-data-table__rule-input::placeholder {
  color: #999999;
}

.details .qvl-data-table__rule-select-button:focus,
.details .qvl-data-table__rule-input:focus {
  outline: none;
  border-color: #8a8a8a;
  box-shadow: none;
}

.details .qvl-data-table__rule-select-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 2;
  display: none;
  min-width: 100%;
  width: -moz-max-content;
  width: max-content;
  max-width: min(280px, calc(100vw - 40px));
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #dcdcdc;
  border-radius: 4px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px) saturate(140%);
}

.details .qvl-data-table__rule-select-shell.is-open .qvl-data-table__rule-select-menu {
  display: block;
}

.details .qvl-data-table__rule-select-option {
  display: flex;
  height: 100%;
  width: 100%;
  align-items: center;
  border-width: 0px;
  background-color: transparent;
  padding: 0px;
  color: inherit;
  font: inherit;
  line-height: inherit;
  text-align: left;
  cursor: pointer;
}

.details .qvl-data-table__rule-row-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-width: 0px;
  background-color: transparent;
  width: 14px;
  min-width: 14px;
  min-height: 14px;
  padding: 0;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 180ms ease;
}

.details .qvl-data-table__rule-row-remove:hover {
  opacity: 1;
}

.details .qvl-data-table__rule-row-remove-icon {
  display: block;
  width: 14px;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}

.details .qvl-data-table__rule-row-remove[hidden] {
  display: none;
}

.details .qvl-data-table__rules-add {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-width: 0px;
  background-color: transparent;
  padding: 0px;
  width: -moz-fit-content;
  width: fit-content;
  color: rgba(0, 0, 0, 0.78);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
}

.details .qvl-data-table__rules-add-icon {
  font-size: 18px;
  line-height: 1;
}

.details .qvl-data-table__dropdown--rules .qvl-data-table__dropdown-actions {
  margin-top: 12px;
  padding: 0 10px 10px;
}

.details .qvl-data-table__dropdown-option {
  position: relative;
  height: 24px;
  padding: 0 10px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 12px;
  line-height: 1;
  transition:
    background-color 140ms ease,
    box-shadow 140ms ease,
    color 140ms ease;
}

.details .qvl-data-table__dropdown-option:hover {
  background: #f5f5f5;
}

.details .qvl-data-table__dropdown-option.is-selected {
  background: linear-gradient(210deg, #4d4d5b 0%, #9798a9 53.98%, #585768 100%);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.details .qvl-data-table__dropdown-option.is-selected:hover {
  background: linear-gradient(210deg, #4d4d5b 0%, #9798a9 53.98%, #585768 100%);
}

.details .qvl-data-table__dropdown-checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.details .qvl-data-table__dropdown-option-label {
  display: flex;
  height: 100%;
  width: 100%;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  white-space: nowrap;
}

.details .qvl-data-table__dropdown-option--multiselect .qvl-data-table__dropdown-option-label {
  gap: 8px;
  min-height: 16px;
  line-height: 16px;
}

.details .qvl-data-table__filter[data-filter-type='multiselect'] .qvl-data-table__dropdown-list {
  gap: 12px;
}

.details
  .qvl-data-table__filter[data-filter-type='multiselect']
  .qvl-data-table__dropdown-option--multiselect {
  height: 16px;
  min-height: 16px;
}

.details .qvl-data-table__dropdown-option--multiselect .qvl-data-table__dropdown-option-label::before {
  content: '';
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  background: #ffffff;
  border-radius: 2px;
  border: 1px solid #dcdcdc;
  box-sizing: border-box;
}

.details .qvl-data-table__dropdown-option--multiselect.is-selected .qvl-data-table__dropdown-option-label::before {
  background:
    url('../../../images/qvl/right.png') center center no-repeat,
    linear-gradient(136deg, #535263 0%, #9b9cad 50.64%, #6f6f83 100%);
  border: 0;
}

.details .qvl-data-table__dropdown-option--multiselect.is-selected {
  background: transparent;
  box-shadow: none;
  color: rgba(0, 0, 0, 0.85);
}

.details .qvl-data-table__dropdown-option--multiselect.is-selected:hover {
  background: transparent;
}

.details .qvl-data-table__dropdown-option--multiselect:hover {
  background: transparent;
}

.details .qvl-data-table__dropdown-option--single-select:hover {
  background: transparent;
}

.details .qvl-data-table__dropdown-option-text {
  display: block;
  text-align: left;
  white-space: nowrap;
}

.details
  .qvl-data-table__filter[data-filter-type='multiselect']
  .qvl-data-table__dropdown-option-text {
  line-height: 16px;
}

.details .qvl-data-table__filter[data-filter-type='multiselect'] .qvl-data-table__dropdown-actions {
  margin-top: 12px;
  padding-top: 0;
  padding-right: 10px;
  padding-bottom: 12px;
  padding-left: 10px;
}

.details .qvl-data-table__search {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-left: 0;
  z-index: 35;
}

.details .qvl-data-table__search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.details .qvl-data-table__search-toggle-icon {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}

.details .qvl-data-table__search-panel {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: calc(100% + 10px);
  right: 0;
  left: auto;
  width: 250px;
  max-width: calc(100vw - 32px);
  height: 44px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 4px;
}

.details .qvl-data-table__search.is-align-left .qvl-data-table__search-panel {
  right: auto;
  left: 0;
}

.details .qvl-data-table__search-panel[hidden] {
  display: none;
}

.details .qvl-data-table__search-field {
  position: relative;
  width: 230px;
  max-width: 100%;
  height: 24px;
}

.details .qvl-data-table__search-input {
  display: block;
  width: 100%;
  white-space: nowrap;
  height: 24px;
  padding: 0 56px 0 10px;
  background: #ffffff;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  color: #666666;
  font-size: 12px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

.details .qvl-data-table__search-input::-moz-placeholder {
  color: #999999;
}

.details .qvl-data-table__search-input::placeholder {
  color: #999999;
}

.details .qvl-data-table__search-input:focus {
  outline: none;
  border-color: #dcdcdc;
}

.details .qvl-data-table__search-clear {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  right: 24px;
  width: 20px;
  height: 20px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  transform: translateY(-50%);
}

.details .qvl-data-table__search-clear[hidden] {
  display: none;
}

.details .qvl-data-table__search-clear-icon {
  width: 14px;
  height: 14px;
  -o-object-fit: contain;
     object-fit: contain;
}

.details .qvl-data-table__search-submit {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  right: 2px;
  width: 20px;
  height: 20px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  transform: translateY(-50%);
}

.details .qvl-data-table__search-submit-icon {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.details .qvl-data-table__filter-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  width: auto;
}

.details .qvl-data-table__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  height: 36px;
  padding: 0 18px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  border-radius: 4px;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.details .qvl-data-table__action--clear {
  background: #ffffff;
  border: 1px solid #8a8a8a;
  color: rgba(0, 0, 0, 0.85);
}

.details .qvl-data-table__action--clear:hover {
  background: #f5f5f5;
  border-color: #8a8a8a;
}

.details .qvl-data-table__action--clear:disabled {
  background: #f5f5f5;
  border-color: rgba(0, 0, 0, 0.08);
  color: rgba(0, 0, 0, 0.4);
  cursor: not-allowed;
}

.details .qvl-data-table__action--clear:disabled:hover {
  background: #f5f5f5;
  border-color: rgba(0, 0, 0, 0.08);
}

.qvl-actions-wrap {
  margin-top: clamp(40px, 5.2083vw, 100px);
  padding: 120px 0;
  background: linear-gradient(180deg, #e7ebf1 0%, #ffffff 36.86%, #ffffff 100%);
}

.qvl-actions {
  position: relative;
  --qvl-actions-button-width: 240px;
  margin-top: 0;
  background: transparent;
}

.qvl-actions__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  padding-block: 0;
}

.qvl-actions__action-group {
  position: relative;
}

.qvl-actions__action-group:hover,
.qvl-actions__action-group:focus-within {
  z-index: 10;
}

.qvl-actions__action-desc {
  position: absolute;
  left: 0;
  width: 100%;
  top: calc(100% + 20px);
  margin: 0;
  max-width: none;
  padding: 10px 14px;
  border: 1px solid #c7c8ca;
  border-radius: 6px;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
  font-size: 12px;
  line-height: 18px;
  color: #666666;
  text-align: center;
  white-space: normal;
  overflow-wrap: break-word;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.qvl-actions__action-desc::before,
.qvl-actions__action-desc::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
}

.qvl-actions__action-desc::before {
  top: -10px;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #c7c8ca;
  border-left: 10px solid transparent;
}

.qvl-actions__action-desc::after {
  top: -8px;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
  border-left: 8px solid transparent;
}

.qvl-actions__action-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  gap: 8px;
  padding: 18px 24px;
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
  background: linear-gradient(
    180deg,
    rgba(230, 233, 237, 0.68) 0%,
    #eff1f4 36.86%,
    rgba(230, 233, 237, 0) 100%
  );
  box-shadow: 0 10px 20px 0 #c7cbcf;
  transition: box-shadow 0.25s ease;
}

.qvl-actions__action-btn:hover {
  box-shadow: none;
}

.qvl-actions__action-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(360deg, #d6d9e0 0%, #e1e5eb 50%, #f1f3f5 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  box-sizing: border-box;
  z-index: 2;
}

.qvl-actions__action-btn.active {
  border-radius: 10px;
  background: transparent;
}

.qvl-actions__action-btn.active::before {
  border-radius: inherit;
  background: linear-gradient(236deg, #cc1377 0%, #a81a5c 34%, #29307f 100%);
}

.qvl-actions__action-btn.active::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 9px;
  background: #eaecef url('../../../images/details/active-bg.png') center / 100% 100% no-repeat;
  pointer-events: none;
  z-index: 1;
}

.qvl-actions__action-icon {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 3;
}

.qvl-actions__action-text {
  font-weight: 500;
  position: relative;
  z-index: 3;
  font-size: 24px;
  line-height: 1.2;
  color: #303030;
  white-space: nowrap;
}

.qvl-actions__action-group:hover .qvl-actions__action-desc,
.qvl-actions__action-group:focus-within .qvl-actions__action-desc {
  opacity: 1;
}

.qvl-actions__action-btn.active .qvl-actions__action-text {
  color: #ffffff;
}

@media (min-width: 768px) {
  .qvl-actions__action-group:hover .qvl-actions__action-desc,
  .qvl-actions__action-group:focus-within .qvl-actions__action-desc {
    opacity: 1;
  }

  .qvl-actions__action-btn {
    width: var(--qvl-actions-button-width);
    gap: 10px;
    padding: 20px 32px;
  }

  .qvl-actions__action-btn::before {
    border-radius: inherit;
  }

  .qvl-actions__action-icon {
    width: 40px;
    height: 40px;
  }

  .qvl-actions__action-text {
    font-size: 24px;
  }

  .qvl-actions__action-desc {
    font-size: 13px;
    line-height: 20px;
    top: auto;
    bottom: calc(100% + 16px);
  }

  .qvl-actions__action-desc::before {
    top: auto;
    bottom: -10px;
    border-top: 10px solid #c7c8ca;
    border-right: 10px solid transparent;
    border-bottom: 0;
    border-left: 10px solid transparent;
  }

  .qvl-actions__action-desc::after {
    top: auto;
    bottom: -8px;
    border-top: 8px solid #ffffff;
    border-right: 8px solid transparent;
    border-bottom: 0;
    border-left: 8px solid transparent;
  }
}

@media (min-width: 1280px) {
  .qvl-actions {
    --qvl-actions-button-width: 300px;
  }

  .qvl-actions__action-btn {
    gap: 12px;
    padding: 23px 40px;
  }

  .qvl-actions__action-icon {
    width: 40px;
    height: 40px;
  }

  .qvl-actions__action-text {
    font-size: 24px;
  }

  .qvl-actions__action-desc {
    font-size: 14px;
    line-height: 22px;
    bottom: calc(100% + 18px);
  }
}

@media (min-width: 1440px) {
  .qvl-actions {
    --qvl-actions-button-width: 320px;
  }

  .qvl-actions__action-btn {
    padding: 28px 52px;
  }

  .qvl-actions__action-btn::before {
    border-radius: inherit;
  }

  .qvl-actions__action-icon {
    width: 40px;
    height: 40px;
  }

  .qvl-actions__action-text {
    font-size: 24px;
  }

  .qvl-actions__action-desc {
    font-size: 16px;
    line-height: 23px;
    bottom: calc(100% + 20px);
  }
}

@media (min-width: 1860px) {
  .qvl-actions {
    --qvl-actions-button-width: 360px;
  }

  .qvl-actions__action-btn {
    width: var(--qvl-actions-button-width);
    height: 100px;
    padding: 0 40px;
  }
}

@media (max-width: 767px) {
  .qvl-actions-wrap {
    padding: 72px 0;
  }

  .qvl-actions {
    margin-top: 0;
  }

  .qvl-actions__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .qvl-actions__action-group {
    width: 100%;
  }

  .qvl-actions__action-btn {
    width: 100%;
    height: auto;
    gap: 10px;
    padding: 18px 20px;
    box-shadow: 0 8px 16px 0 rgba(199, 203, 207, 0.8);
  }

  .qvl-actions__action-icon {
    width: 24px;
    height: 24px;
  }

  .qvl-actions__action-text {
    font-size: 18px;
    line-height: 1.2;
  }

  .qvl-actions__action-desc {
    position: relative;
    top: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    margin-top: 10px;
    opacity: 1;
    font-size: 13px;
    line-height: 20px;
    text-align: left;
  }

  .qvl-actions__action-desc::before,
  .qvl-actions__action-desc::after {
    display: block;
  }

  .qvl-actions__action-desc::before {
    top: -10px;
    bottom: auto;
    border-top: 0;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #c7c8ca;
    border-left: 10px solid transparent;
  }

  .qvl-actions__action-desc::after {
    top: -8px;
    bottom: auto;
    border-top: 0;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #ffffff;
    border-left: 8px solid transparent;
  }
}

.details .qvl-data-table__table-wrap {
  position: relative;
  width: 100%;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background: #ffffff;
  overflow: hidden;
}

.details .qvl-data-table__sticky-head {
  position: sticky;
  top: var(--qvl-data-table-sticky-table-top, 120px);
  z-index: 25;
  margin-bottom: -16px;
  isolation: isolate;
  overflow: hidden;
  background: #eaecef;
}

.details .qvl-data-table__sticky-head::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #eaecef;
  border-top: 1px solid #d8d8d8;
  border-right: 0;
  border-left: 0;
  border-bottom: 0;
}

.details .qvl-data-table__sticky-table {
  position: relative;
  z-index: 1;
  background: #eaecef;
}

.details .qvl-data-table__sticky-head .qvl-data-table__th {
  background: transparent;
}

.details .qvl-data-table__table-scroll {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

.details .qvl-data-table__sticky-table,
.details .qvl-data-table__table {
  font-size: 0.875rem;
  line-height: 1.25rem;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 100%;
  width: 100%;
  color: #1f1f1f;
}

.details .qvl-data-table__tbody .qvl-data-table__row.is-alt {
  background: #f6f8fa;
}

.details .qvl-data-table__tbody .qvl-data-table__row[hidden] {
  display: none;
}

.details .qvl-data-table__th {
  text-align: center;
  vertical-align: middle;
  height: 40px;
  padding-inline: 12px;
  padding-block: 0;
  background: #eaecef;
  border-bottom: 1px solid #d8d8d8;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #303030;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
}

.details .qvl-data-table__th:hover {
  background: #ececec;
  color: #1a1a1a;
}

.details .qvl-data-table__th.is-not-sortable {
  cursor: default;
}

.details .qvl-data-table__th.is-not-sortable:hover {
  background: #eaecef;
  color: #303030;
}

.details .qvl-data-table__th.is-sorted {
  color: #1a1a1a;
}

.details .qvl-data-table__th.is-sorted .qvl-data-table__sort-mark {
  opacity: 1;
}

.details .qvl-data-table__th-inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 100%;
}

.details .qvl-data-table__sort-mark {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: calc(100% + 6px);
  width: 14px;
  height: 14px;
  min-width: 14px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 14px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.details .qvl-data-table__th:not(.is-not-sortable):not(.is-sorted) .qvl-data-table__sort-mark {
  opacity: 0.4;
}

.details .qvl-data-table__th.is-sorted-asc .qvl-data-table__sort-mark {
  transform: translateY(-50%) rotate(180deg);
}

.details .qvl-data-table__td {
  height: 40px;
  padding: 0 12px;
  border-bottom: 1px solid #d8d8d8;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: #666666;
  white-space: nowrap;
  vertical-align: middle;
}

.details .qvl-data-table__highlight {
  padding: 0 1px;
  background: #fff2a8;
  color: inherit;
}

.details .qvl-data-table__empty {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
}

.details .qvl-data-table__empty[hidden] {
  display: none;
}

.details .qvl-data-table__empty-text {
  margin: 0px;
  font-size: 16px;
  line-height: 1.5;
}

.details .qvl-data-table__empty-link {
  margin-top: 0.75rem;
  display: inline-block;
  border-width: 0px;
  background-color: transparent;
  padding: 0px;
  color: #303030;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  text-decoration: underline;
}

.details .qvl-data-table__empty-link:hover {
  color: #80a8ff;
}

.details .qvl-data-table__floating-scroll {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 40;
  display: block;
  height: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: rgba(28, 38, 63, 0.3) 0 -10px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: auto;
  scrollbar-color: rgba(0, 0, 0, 0.45) transparent;
}

.details .qvl-data-table__floating-scroll::-webkit-scrollbar {
  height: 16px;
}

.details .qvl-data-table__floating-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.details .qvl-data-table__floating-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.45);
  border-radius: 999px;
}

.details .qvl-data-table__floating-scroll[hidden] {
  display: none;
}

.details .qvl-data-table__floating-scroll-inner {
  height: 1px;
}

.details .qvl-data-table__pagination {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 36px;
}

.details .qvl-data-table__pagination[hidden] {
  display: none;
}

.details .qvl-data-table__pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 24px;
  padding: 0;
  border: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60px 24px;
  font-size: 0;
  cursor: pointer;
  transition: opacity 160ms ease;
}

.details .qvl-data-table__pagination-btn--prev {
  background-image: url('../../../images/qvl/prev.png');
}

.details .qvl-data-table__pagination-btn--next {
  background-image: url('../../../images/qvl/next.png');
}

.details .qvl-data-table__pagination-btn--prev:not(:disabled):hover {
  background-image: url('../../../images/qvl/prev-hover.png');
}

.details .qvl-data-table__pagination-btn--next:not(:disabled):hover {
  background-image: url('../../../images/qvl/next-hover.png');
}

.details .qvl-data-table__pagination-btn.is-disabled,
.details .qvl-data-table__pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.details .qvl-data-table__pagination-pages {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.details .qvl-data-table__pagination-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.82);
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.details .qvl-data-table__pagination-page:hover {
  border: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.82);
}

.details .qvl-data-table__pagination-page.is-active {
  min-width: 32px;
  padding-inline: 6px;
  background: url('../../../images/base/btn-bg.png') center / 100% 100% no-repeat;
  color: #fff;
}

@media (max-width: 767px) {
  .details .qvl-data-table__pagination {
    gap: 8px;
    align-items: center;
  }

  .details .qvl-data-table__pagination-btn {
    width: 48px;
    height: 20px;
    background-size: 48px 20px;
  }

  .details .qvl-data-table__pagination-pages {
    max-width: calc(100vw - 144px);
    gap: 4px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .details .qvl-data-table__pagination-pages::-webkit-scrollbar {
    display: none;
  }

  .details .qvl-data-table__pagination-page {
    min-width: 20px;
    height: 20px;
    font-size: 12px;
  }

  .details .qvl-data-table__pagination-page.is-active {
    min-width: 28px;
    padding-inline: 4px;
  }
}

@media (min-width: 640px) {
  .details.qvl-data-table {
    padding-top: 0;
    padding-bottom: 0;
  }

  .details .qvl-data-table__rule-grid {
    grid-template-columns: 120px minmax(0, 1fr) auto;
    align-items: center;
  }

  .details .qvl-data-table__action {
    height: 36px;
    padding: 0 20px;
    font-size: 16px;
  }

.details .qvl-data-table__th {
    padding-inline: 12px;
    font-size: 14px;
  }
}

@media (min-width: 960px) {
  .details.qvl-data-table {
    padding-top: 0;
    padding-bottom: 0;
  }

  .details .qvl-data-table__filter-icon {
    width: 14px;
    height: 14px;
  }

  .details .qvl-data-table__rule-select-button,
  .details .qvl-data-table__rule-input,
  .details .qvl-data-table__rules-mode-button {
    height: 20px;
  }
}

@media (min-width: 1280px) {
  .details.qvl-data-table {
    padding-top: 0;
    padding-bottom: 0;
  }

  .details .qvl-data-table__filter-actions {
    width: auto;
    justify-content: flex-start;
  }

.details .qvl-data-table__td {
    padding: 0 12px;
    font-size: 12px;
    white-space: nowrap;
  }
}

@media (min-width: 1440px) {
  .details .qvl-data-table__filter-bar {
    flex-wrap: nowrap;
  }

  .details .qvl-data-table__filter-group {
    width: 100%;
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
  }

  .details.qvl-data-table.is-filter-layout-wrapped .qvl-data-table__filter-group {
    flex-wrap: wrap;
  }
}

@media (min-width: 1680px) {
  .details .qvl-data-table__filter.has-selection .qvl-data-table__filter-control {
    border-radius: 4px;
  }

  .details .qvl-data-table__filter-button {
    padding: 6px 10px;
    font-size: 14px;
    border-radius: 4px;
  }

  .details .qvl-data-table__filter-label {
    font-size: 14px;
  }

  .details .qvl-data-table__filter-clear-one {
    width: 28px;
    border-radius: 0 4px 4px 0;
  }
}


