/* #############################################################
      #
      #  Font name: Segoe UI Variable
      #  Owner: Microsoft Corporation
      #  Link: https://learn.microsoft.com/en-us/windows/apps/design/downloads/#fonts
      #
      ################################################################ */

@font-face {
  font-family: "Segoe UI Variable Display";
  src: url(../fonts/Segoe-UI-Variable-Static-Display-Light.ttf);
  font-weight: 300;
}

@font-face {
  font-family: "Segoe UI Variable Display";
  src: url(../fonts/Segoe-UI-Variable-Static-Display-Semilight.ttf);
  font-weight: 350;
}

@font-face {
  font-family: "Segoe UI Variable Display";
  src: url(../fonts/Segoe-UI-Variable-Static-Display.ttf);
  font-weight: 400;
}

@font-face {
  font-family: "Segoe UI Variable Display";
  src: url(../fonts/Segoe-UI-Variable-Static-Display-Semibold.ttf);
  font-weight: 600;
}

@font-face {
  font-family: "Segoe UI Variable Display";
  src: url(../fonts/Segoe-UI-Variable-Static-Display-Bold.ttf);
  font-weight: 700;
}

/* ################################################################ */

@font-face {
  font-family: "Segoe UI Variable Small";
  src: url(../fonts/Segoe-UI-Variable-Static-Small-Light.ttf);
  font-weight: 300;
}

@font-face {
  font-family: "Segoe UI Variable Small";
  src: url(../fonts/Segoe-UI-Variable-Static-Small-Semilight.ttf);
  font-weight: 350;
}

@font-face {
  font-family: "Segoe UI Variable Small";
  src: url(../fonts/Segoe-UI-Variable-Static-Small.ttf);
  font-weight: 400;
}

@font-face {
  font-family: "Segoe UI Variable Small";
  src: url(../fonts/Segoe-UI-Variable-Static-Small-Semibold.ttf);
  font-weight: 600;
}

@font-face {
  font-family: "Segoe UI Variable Small";
  src: url(../fonts/Segoe-UI-Variable-Static-Small-Bold.ttf);
  font-weight: 700;
}

/* ################################################################ */

@font-face {
  font-family: "Segoe UI Variable Text";
  src: url(../fonts/Segoe-UI-Variable-Static-Text-Light.ttf);
  font-weight: 300;
}

@font-face {
  font-family: "Segoe UI Variable Text";
  src: url(../fonts/Segoe-UI-Variable-Static-Text-Semilight.ttf);
  font-weight: 350;
}

@font-face {
  font-family: "Segoe UI Variable Text";
  src: url(../fonts/Segoe-UI-Variable-Static-Text.ttf);
  font-weight: 400;
}

@font-face {
  font-family: "Segoe UI Variable Text";
  src: url(../fonts/Segoe-UI-Variable-Static-Text-Semibold.ttf);
  font-weight: 600;
}

@font-face {
  font-family: "Segoe UI Variable Text";
  src: url(../fonts/Segoe-UI-Variable-Static-Text-Bold.ttf);
  font-weight: 700;
}

/* ################################################################ */

@font-face {
  font-family: "Segoe Fluent Icons";
  src: url(../fonts/Segoe-Fluent-Icons.ttf);
}

/* ################################################################ */

:root {
  --page-layout: 13in;
  --duration-bg-color: #ffffff;
  --duration-text-color: #ffffff;
  --voucherlogo: url(../logos/logo1.png);
  --app-bg: #202020;
  --text-color: #ffffff;
  --surface-border: #30363d;
  --surface-muted: rgba(30, 30, 30, 0.7);
  --surface-strong: #1f1f1f;
  --panel-bg: #032930;
  --panel-gradient: linear-gradient(180deg, rgba(26, 32, 48, 0.666), transparent);
  --muted-text: #a3a6ac;
  --subtle-text: #6e7681;
  --danger: #fe3159;
  --btn-bg: rgba(255, 255, 255, 0.0605);
  --btn-bg-hover: rgba(255, 255, 255, 0.0837);
  --btn-bg-active: rgba(255, 255, 255, 0.0326);
  --btn-fg-muted: rgba(255, 255, 255, 0.786);
  --switch-track-off: rgba(255, 255, 255, 0.1);
  --switch-track-off-border: rgba(255, 255, 255, 0.5);
  --switch-track-off-hover: rgba(255, 255, 255, 0.16);
  --switch-knob: #ffffff;
  --switch-knob-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
  --switch-track-on: #005fb8;
  --switch-track-on-hover: #0078d4;
}

html[data-theme="light"] {
  --app-bg: #eef2f7;
  --text-color: #17202b;
  --surface-border: #c4ced9;
  --surface-muted: #ffffff;
  --surface-strong: #ffffff;
  --panel-bg: #dceefe;
  --panel-gradient: linear-gradient(180deg, rgba(200, 218, 238, 0.9), transparent);
  --muted-text: #3f5468;
  --subtle-text: #607286;
  --btn-bg: #ffffff;
  --btn-bg-hover: #f3f6fb;
  --btn-bg-active: #e9eef7;
  --btn-fg-muted: #31475f;
  --switch-track-off: #d8e0ea;
  --switch-track-off-border: #7d8fa6;
  --switch-track-off-hover: #c8d4e2;
  --switch-knob: #ffffff;
  --switch-knob-shadow: 0 1px 2px rgba(15, 23, 42, 0.28);
  --switch-track-on: #005fb8;
  --switch-track-on-hover: #0078d4;
}

html {
  overflow: hidden;
  background-color: var(--app-bg);
}

* {
  font-family: "Segoe UI Variable Text";
  color: var(--text-color);
  font-size: 14px;
  -webkit-tap-highlight-color: transparent;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
}

.flex {
  display: flex;
}

.block {
  display: block;
}

.hidden {
  display: none;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.icon {
  font-family: "Segoe Fluent Icons" !important;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: currentColor;
  user-select: none;
}

button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  background-color: #155d6c;
  color: #ffffff;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  width: 100%;
  height: 32px;
  gap: 8px;
  padding: 0 24px;
}

button:hover {
  opacity: 0.9;
}

button:active {
  opacity: 0.8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

button:disabled {
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.1581);
  border: none;
}

.btn-standard {
  flex-direction: row;
  width: auto;
  background-color: var(--btn-bg);
  color: var(--text-color);
  border-top: 1px solid rgba(255, 255, 255, 0.093);
  border-left: 1px solid rgba(255, 255, 255, 0.0698);
  border-right: 1px solid rgba(255, 255, 255, 0.0698);
  border-bottom: 1px solid rgba(255, 255, 255, 0.0698);
}

.btn-standard:hover {
  background-color: var(--btn-bg-hover);
}

.btn-standard:active {
  background-color: var(--btn-bg-active);
  color: var(--btn-fg-muted);
  border: 1px solid rgba(255, 255, 255, 0.093);
}

.btn-standard:disabled {
  background-color: rgba(255, 255, 255, 0.0419);
  color: rgba(255, 255, 255, 0.3628);
  border: 1px solid rgba(255, 255, 255, 0.093);
}

h1 {
  font-size: 24px;
}

p {
  font-family: "Segoe UI Variable Small";
  font-size: 12px;
}

aside {
  flex-direction: column;
  flex-shrink: 0;
  width: 300px;
  height: 100vh;
  border-right: 1px solid var(--surface-border);
}

.input-container {
  height: 32px;
  border-radius: 4px;
  overflow: hidden;
}

.input-line {
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5442);
}

.input-container .input:focus + .input-line,
.voucher-textarea .textarea:focus + .input-line {
  height: 2px;
  background-color: #282828;
}

.input-error {
  height: 2px;
  background-color: #fe3159;
}

.input {
  width: 100%;
  height: 100%;
  background-color: var(--surface-muted);
  border: 1px solid var(--surface-border);
  padding: 0 11px;
  border-radius: 4px;
}

.input:focus {
  border: 1px solid var(--surface-border);
}

.textarea {
  background-color: transparent;
  border: none;
  resize: none;
}

.voucher-import-row {
  flex-direction: column;
  gap: 8px;
}

.voucher-import-row .btn-standard {
  width: 100%;
  justify-content: center;
}

.extension-status {
  color: var(--muted-text);
  font-size: 11px;
}

.extension-status.ready {
  color: #6ccb5f;
}

.extension-status.error {
  color: var(--danger);
}

.voucher-textarea {
  height: 256px;
  background-color: var(--surface-muted);
  border: 1px solid var(--surface-border);
  border-radius: 4px;
  overflow: hidden;
}

.line-counter {
  color: var(--subtle-text);
  text-align: right;
  width: 46px;
  padding: 8px 16px 8px 0;
  overflow: hidden;
  pointer-events: none;
}

.voucher-editor {
  flex-grow: 1;
  padding: 8px;
}

.heading-container {
  padding: 48px 32px 24px;
  border-bottom: 1px solid var(--surface-border);
}

.heading-container > div {
  display: none;
  flex-direction: column;
  align-items: center;
  padding: 14px 0;
}

.heading-container > div * {
  color: var(--muted-text);
}

.heading-container p {
  padding-top: 4px;
}

.logo-img {
  height: 38px;
  user-select: none;
  pointer-events: none;
}

.form-container {
  flex-direction: column;
  gap: 24px;
  padding: 16px 32px 32px;
  flex: 1;
  min-height: 0;
  overflow-y: auto;
}

.group {
  flex-direction: column;
  gap: 8px;
}

.group-option {
  justify-content: space-between;
  align-items: center;
}

.group-option p {
  color: var(--text-color);
  font-family: "Segoe UI Variable Small";
  font-size: 12px;
}

.group h6,
.group-option h6 {
  font-family: "Segoe UI Variable Small";
  font-size: 12px;
}

.group p {
  color: var(--danger);
}

.voucher-hint {
  color: var(--muted-text);
  font-size: 11px;
}

.details {
  flex-direction: column;
  gap: 24px;
}

.more-settings {
  align-items: center;
  gap: 8px;
  height: 32px;
  border-radius: 4px;
  color: var(--text-color);
  cursor: pointer;
  user-select: none;
}

.more-settings:hover {
  background-color: rgba(255, 255, 255, 0.0605);
}

.more-settings:active {
  background-color: rgba(255, 255, 255, 0.0419);
}

.more-settings-container {
  display: none;
}

#more-settings {
  display: none;
}

#more-settings:checked ~ .more-settings-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.input-select-group .input-container {
  border-radius: 4px 0 0 4px;
}

.input-select-group .input {
  border-radius: 4px 0 0 4px;
}

.select-group select {
  appearance: none;
  border-radius: 0 4px 4px 0;
  width: auto;
  padding: 0 26px 0 8px;
}

.select-group select option {
  color: rgba(0, 0, 0, 0.8956);
}

.select-group .icon {
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  line-height: 10px;
  pointer-events: none;
}

.input.color {
  flex-shrink: 0;
  border-radius: 4px;
  height: 20px;
  width: 38px;
  padding: 0 4px;
  cursor: pointer;
}

.input-switch input {
  display: none;
}

.input-switch label {
  cursor: pointer;
  transition: all 200ms;
  background-color: var(--switch-track-off);
  width: 38px;
  height: 20px;
  border: 1px solid var(--switch-track-off-border);
  border-radius: 10px;
}

.input-switch label::after {
  content: "";
  display: block;
  pointer-events: none;
  position: absolute;
  transition: all 200ms;
  top: 3px;
  left: 3px;
  background-color: var(--switch-knob);
  box-shadow: var(--switch-knob-shadow);
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.input-switch:hover label {
  background-color: var(--switch-track-off-hover);
}

.input-switch input:focus-visible ~ label {
  outline: 2px solid var(--switch-track-on);
  outline-offset: 2px;
}

.input-switch input:checked ~ label {
  background-color: var(--switch-track-on);
  border-color: var(--switch-track-on);
}

.input-switch input:checked ~ label::after {
  left: 21px;
}

.input-switch:hover input:checked ~ label {
  background-color: var(--switch-track-on-hover);
  border-color: var(--switch-track-on-hover);
}

main {
  flex-grow: 1;
  overflow-x: hidden;
  height: 100vh;
}

.header-section {
  z-index: 1;
  position: sticky;
  top: 0;
  padding: 16px 16px 0;
  background-color: var(--panel-bg);
}

.header-section::after {
  content: "";
  position: absolute;
  left: 0;
  background: var(--panel-gradient);
  width: 100%;
  height: 16px;
}

.header-container {
  justify-content: space-between;
  align-items: center;
  height: 80px;
  padding: 0 32px;
  border-radius: 8px;
}

.header-title-group {
  flex-direction: column;
  gap: 4px;
}

.header-title-row {
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.header-actions {
  align-items: center;
  gap: 8px;
}

.btn-copy-script {
  height: 28px;
  padding: 0 12px;
  font-size: 12px;
  white-space: nowrap;
}

.btn-copy-script-compact {
  width: 32px;
  padding: 0;
}

.preview-stats,
.preview-summary-primary,
.preview-summary-secondary {
  font-family: "Segoe UI Variable Small";
  font-size: 12px;
  color: var(--muted-text);
}

.print-preview-summary {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.preview-summary-secondary {
  font-size: 11px;
  color: var(--subtle-text);
}

.page-layout.page-letter {
  page: letter-sheet;
}

.page-layout.page-legal {
  page: legal-sheet;
}

.voucher-preview-container .voucher-container,
.voucher-preview-container .voucher-container2,
.voucher-preview-container .voucher-container3 {
  outline: 1px dashed #888888;
}

.voucher-preview-container {
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.page-layout {
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 1px;
  background-color: #ffffff;
  width: 8.5in;
  height: var(--page-layout);
  margin: auto;
  padding: calc(0.2in + 1px);
}

.voucher-container,
.voucher-container2,
.voucher-container3 {
  flex-shrink: 0;
  height: 96px;
  width: 154px;
  overflow: hidden;
}
.voucher-container .logo,
.voucher-container2 .logo,
.voucher-container3 .logo {
  background-image: var(--voucherlogo);
  background-size: contain;
  background-repeat: no-repeat;
  user-select: none;
  height: 21px;
}

.voucher-container .logo {
  margin: 18px 0 0 8px;
}

.voucher-container p,
.voucher-container2 p,
.voucher-container3 p {
  font-family: "Segoe UI Variable Display";
  font-weight: bold;
  color: #000000;
  font-size: 19px;
  margin: 2px 0 0 11px;
}
.voucher-container .code::after {
  content: "Voucher code";
  position: absolute;
  left: 2px;
  top: 23px;
  font-weight: normal;
  font-size: 9px;
}
.voucher-container .website {
  position: absolute;
  right: 8px;
  bottom: 6px;
  font-weight: normal;
  font-size: 11px;
}
.voucher-container span {
  user-select: none;
  top: 21px;
  right: 3px;
  font-family: "Segoe UI Variable Display";
  font-weight: normal;
  font-size: 11px;
  text-align: center;
  line-height: 20px;
  color: black;
  background-color: var(--duration-bg-color);
  height: 20px;
  min-width: 44px;
  padding: 0 8px;
  border-radius: 4px;
}
.voucher-container .amount {
  user-select: none;
  top: 3px;
  right: 3px;
  font-family: "Segoe UI Variable Display";
  font-weight: bold;
  font-size: 11px;
  text-align: center;
  line-height: 20px;
  height: 20px;
  min-width: 44px;
  padding: 0 8px;
}

.get-started {
  flex-direction: column;
  gap: 32px;
  align-items: center;
  margin-top: 96px;
}

.get-started > i {
  font-size: 24px;
  line-height: 24px;
}

.get-started > div {
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 80%;
}

.get-started h2 {
  font-size: 16px;
  text-align: center;
}

.get-started p {
  text-align: center;
  width: 60ch;
  max-width: 100%;
  color: var(--muted-text);
}

.get-started u {
  font-size: 12px;
  color: var(--muted-text);
  cursor: pointer;
}

dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.666);
}

dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  flex-direction: column;
  background-color: var(--surface-strong);
  border: 1px solid var(--surface-border);
  border-radius: 8px;
  width: 512px;
  opacity: 0;
  transition: all 200ms;
}

dialog.open {
  transform: translate(-50%, -50%);
  opacity: 1;
}

dialog header {
  justify-content: space-between;
  align-items: center;
  padding: 8px 8px 8px 16px;
}

.btn-close {
  background-color: transparent;
  border: none;
  width: 32px;
  padding: 0 0 0 2px;
  border-radius: 4px;
}

.btn-close:hover {
  background-color: rgba(255, 255, 255, 0.0605);
}

.btn-close:active {
  background-color: rgba(255, 255, 255, 0.0419);
  color: rgba(255, 255, 255, 0.786);
  border: none;
}

dialog .body {
  flex-direction: column;
  gap: 32px;
  padding: 0 8px 0 16px;
}

dialog .body p {
  text-align: left;
  margin: 0;
}

dialog .body * {
  font-size: 12px;
}

dialog .body ol {
  flex-direction: column;
  gap: 16px;
  height: 384px;
  overflow-y: auto;
  overflow-x: hidden;
}

dialog .body ol li {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

dialog .body ol li p {
  width: 60ch;
  max-width: 100%;
}

dialog .body ol li img {
  margin-left: 8px;
  border-radius: 4px;
  border: 1px solid var(--surface-border);
  max-width: calc(100% - 16px);
}

.code-block {
  background-color: var(--surface-muted);
  border: 1px solid var(--surface-border);
  border-radius: 4px;
  padding: 8px 42px 8px 8px;
  margin: 0 8px;
}

.code-block,
.code-block * {
  font-family: Consolas, "Courier New", monospace;
  line-height: 1.6;
}

.code-block button {
  top: 6px;
  right: 6px;
  font-size: 14px;
  line-height: 14px;
  padding: 0;
  width: 32px;
}

dialog button.ok {
  width: calc(100% - 32px);
  margin: 16px;
}

.blue {
  color: #569cd6;
}

.skyblue {
  color: #9cdcfe;
}

.string {
  color: #ce9178;
}

.yellow {
  color: #dcdcaa;
}

.gold {
  color: #ffd700;
}

.magenta {
  color: #da70d6;
}

.orange {
  color: #d7ba7d;
}

@media screen and (min-width: 800px) {
  *::-webkit-scrollbar {
    background-color: transparent;
    width: 8px;
    height: 8px;
  }

  *::-webkit-scrollbar-thumb {
    background-color: rgba(151, 154, 162, 0.5);
    border-radius: 4px;
  }

  *::-webkit-scrollbar-thumb:hover {
    background-color: rgba(151, 154, 162, 0.75);
  }

  *::-webkit-scrollbar-thumb:active {
    background-color: rgb(151, 154, 162);
  }

  *::-webkit-scrollbar-corner {
    background-color: transparent;
  }
}

@media screen and (max-width: 800px) {
  html {
    overflow: auto;
  }

  body {
    flex-direction: column-reverse;
  }

  aside {
    width: 100%;
    height: auto;
    border: none;
  }

  .heading-container {
    padding: 0 5%;
    border-bottom: 1px solid #30363d;
  }

  main {
    height: calc(100vh - 64px);
  }

  .header-section {
    padding: 0;
  }

  .header-container {
    height: 64px;
    padding: 0 5%;
    border-radius: 0;
  }

  #print-btn {
    width: 32px;
    padding: 0;
  }

  .heading-container {
    border-top: 1px solid #30363d;
    border-bottom: none;
  }

  .heading-container > div {
    display: flex;
  }

  .heading-container > img {
    display: none;
  }

  .heading-container > p {
    display: none;
  }

  .form-container {
    padding: 16px 5% 5%;
    height: auto;
  }
}

@media print {
  @page letter-sheet {
    size: 8.5in 11in;
    margin: 0;
  }

  @page legal-sheet {
    size: 8.5in 13in;
    margin: 0;
  }

  @page {
    size: letter;
    margin: 0;
  }

  @top-center {
    content: "";
  }

  @bottom-center {
    content: "";
  }

  html {
    background-color: #ffffff;
  }

  body {
    -webkit-print-color-adjust: exact;
  }

  aside {
    display: none !important;
  }

  .header-section {
    display: none !important;
  }

  main {
    overflow: hidden;
    height: auto;
  }

  .voucher-preview-container {
    gap: 0;
    margin: 0;
  }

  .page-layout {
    page-break-after: always;
  }

  .voucher-preview-container .voucher-container,
  .voucher-preview-container .voucher-container2,
  .voucher-preview-container .voucher-container3 {
    outline: 1px dashed #666666 !important;
  }
}


.half {
  width: 50%;
}

/* custom below */
.spanin {
  display: inline-block;
}

.brand-row {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.theme-control {
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.theme-toggle-label {
  align-items: center;
  gap: 6px;
  color: var(--text-color);
  user-select: none;
}

.theme-icon {
  font-size: 14px;
  line-height: 14px;
}

.theme-toggle-label span {
  font-family: "Segoe UI Variable Small";
  font-size: 12px;
  color: var(--text-color);
}

.theme-switch {
  flex-shrink: 0;
}

/* custom layouts below */

     
.voucher-container2 .spacer {
  padding:12px;
}
.voucher-container2 .logo {
  margin-top: 14px;
  margin-left: 61px;
  /* margin: 14px 15px 0 8px; */
}
.voucher-container2 .code::after {
  content: "Voucher code";
  position: absolute;
  left: 2px;
  top: 23px;
  font-weight: normal;
  font-size: 9px;
}
.voucher-container2 .website {
  position: absolute;
  top: 0px;
  right: 7px;
  text-align: right;
  font-weight: normal;
  font-size: 11px;
}
.voucher-container2 span {
  user-select: none;
  top: 16px;
  right: 3px;
  font-family: "Segoe UI Variable Display";
  font-weight: normal;
  font-size: 11px;
  text-align: right;
  color: black;
  background-color: var(--duration-bg-color);
  min-width: 44px;
  padding: 0 4px;
  border-radius: 2px;
}
.voucher-container2 .amount {
  user-select: none;
  top: 25px;
  right: -1px;
  font-family: "Segoe UI Variable Display";
  font-weight: bold;
  font-size: 11px;
  text-align: right;
  line-height: 20px;
  height: 20px;
  min-width: 44px;
  padding: 0 8px;
}
/* layout3 */
      
.voucher-container3 .spacer {
  padding:11px;
}
.voucher-container3 .logo {
  margin-top: 35px;
  margin-left: 8px;
  /* margin: 14px 15px 0 8px; */
}
.voucher-container3 .code {
  position: absolute;
  right: 7px;
  top: 55px;
}
.voucher-container3 .codeinfo {
  content: "Voucher code";
  position: absolute;
  right: 8px;
  bottom: 5px;
  font-weight: normal;
  font-size: 9px;
}
.voucher-container3 .website {
  position: absolute;
  top: 1px;
  left: -5px;
  text-align: left;
  font-weight: normal;
  font-size: 11px;
}
.voucher-container3 span {
  user-select: none;
  top: 42px;
  right: 3px;
  font-family: "Segoe UI Variable Display";
  font-weight: normal;
  font-size: 11px;
  text-align: right;
  color: black;
  background-color: var(--duration-bg-color);
  min-width: 44px;
  padding: 0 4px;
  border-radius: 2px;
}
.voucher-container3 .amount {
  user-select: none;
  top: 25px;
  right: -1px;
  font-family: "Segoe UI Variable Display";
  font-weight: bold;
  font-size: 11px;
  text-align: right;
  line-height: 20px;
  height: 20px;
  min-width: 44px;
  padding: 0 8px;
}