.qst-contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.qst-contact-form .qst-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.qst-contact-form .qst-2col {
    flex-direction: row;
    gap: 24px;
}

.qst-contact-form .qst-3col {
    flex-direction: row;
    gap: 24px;
}

.qst-contact-form .qst-2col > div,
.qst-contact-form .qst-1col > div {
    flex: 1;
    grid-gap: 8px;
    display: flex;
    flex-direction: column;
}


.qst-contact-form .qst-3col > div {
    flex: 1;
    grid-gap: 8px;
    display: flex;
    flex-direction: column;
}


.qst-contact-form .qst-3col > div select{
    height: 100%
}


.qst-contact-form .w-border{
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 25px;
}

.qst-contact-form label ,
.qst-contact-form .label {
    color: #D7DADF;
    font-size: 12.64px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
}

.qst-contact-form .req {
    color: #FB5012;
    margin-left: 3px;
}

.qst-field-note{
    margin-top: 0;
    margin-bottom: 0;
    color: #8C97A2;
    /* Regular/Small/Regular */
    font-size: 14.22px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px; /* 126.582% */
}

.qst-contact-form input,
.qep-f-input,
.qst-contact-form select,
.breakdance select.qep-qgc-addon-variant,
.qst-contact-form textarea {
    width: 100%;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: #001127;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    padding: 12px 16px;
    box-shadow: none !important;
    outline: none !important;
}

.breakdance select.qep-qgc-addon-variant:focus {
    width: 100%;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    background: #001127!important;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    padding: 12px 16px;
    box-shadow: none !important;
    outline: none !important;
}

.qst-contact-form input:focus,
.qst-contact-form select:focus,
.breakdance select.qep-qgc-addon-variant:focus,
.qep-f-input:focus,
.qst-contact-form textarea:focus{
    border-color:rgba(255, 255, 255, 1);
    outline: none !important;
    border: 1px solid #5B9DFF;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05), 0 0 0 4px rgba(0, 102, 255, 0.24)!important;
}

.qst-contact-form select,
.breakdance select.qep-qgc-addon-variant {
    appearance: none;
    -webkit-appearance: none;
    background-color: #001127;
    color: #fff;
}

.qst-contact-form select option,
.breakdance select.qep-qgc-addon-variant option {
    background-color: #001127;
    color: #fff;
}

.qst-contact-form input::placeholder,
.qst-contact-form select::placeholder,
.qst-contact-form textarea::placeholder {
  color: #677684;

}

.qst-contact-form textarea,
textarea.qep-f-input {
    min-height: 120px;
    resize: vertical;
}

.qst-contact-form button,
button.qep-f-button {
    width: 100%;
    border: none;
    border-radius: 8px;
    background: #06F;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    padding: 12px 35px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0;
}

.qst-contact-form select,
select.qep-qgc-addon-variant{
    appearance: none;
     -webkit-appearance: none;
     -moz-appearance: none;
     padding-right: 40px;
     background-position: right 12px center; /* moves arrow inward */
     background-repeat: no-repeat;
     background-size: 16px;
     background-image: url('/wp-content/plugins/quantum-site-tools-from-functions-qep/assets/images/chevron-down.png');
}

.qst-contact-form button:hover,
button.qep-f-button:hover{
    background: #246EF4;
}


/* Container */
.qep-checkbox {
    
}

.qst-row-label{
    margin-top: 0;
    margin-bottom: 1.5rem;
}

/* Label layout */
.qep-checkbox label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #D7DADF;
    font-size: 0.79rem;
}

.qep-checkbox-wrap{
    display: flex;
    grid-gap: 12px;
    flex-wrap: wrap;
}

/* Remove default checkbox style */
.qep-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 16px;
    padding: 0;
    height: 16px;
    border: 2px solid #555;
    border-radius: 4px;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
    background: transparent;
}

/* Inner fill */
.qep-checkbox input[type="checkbox"]::before {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: inherit;
    background: #06F;
    transform: scale(0);
    transform-origin: center;
    transition: transform 0.15s ease-out;
}

/* Checkmark */
.qep-checkbox input[type="checkbox"]::after {
    content: "";
    background-image: url(https://quantumepaynew.tempurl.host/wp-content/uploads/2026/02/Checkbox-base.svg);
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 11px;
    color: #fff;
    transform: translate(-50%, -55%) scale(0);
    transition: transform 0.15s ease-out;
    width: 100%;
        height: 100%;
        left: 0;
}

/* Checked state */
.qep-checkbox input[type="checkbox"]:checked {
    border-color: #06F;
    box-shadow: 0 0 8px rgba(0, 102, 255, 0.7);
    transform: scale(1.05);
}

.qep-checkbox input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.qep-checkbox input[type="checkbox"]:checked::after {
    transform: unset !important;
    
}

/* Hover + focus */
.qep-checkbox input[type="checkbox"]:hover {
    border-color: #06F;
}

.qep-checkbox input[type="checkbox"]:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.4);
}


.qep-loading-wrap{
    position: fixed;
    z-index: 9999;
    display: none;
    visibility: hidden;
    opacity: 0;
    top: 0;
    transition: .4s all ease-in;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(25px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.qep-loading-wrap.active{
    display: flex;
    opacity: 1;
    visibility: visible;
}

.loading-text{
    color: var(--Text-text-primary_on-brand, #FFF);
    text-align: center;

    
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 144.444% */
    text-align: center;
}


.loading-text {
  
  text-align: center;
}

.loading-text .dot {
  opacity: 0;
  animation: loadingDots 1.2s infinite;
}

.loading-text .dot:nth-child(1) { animation-delay: 0s; }
.loading-text .dot:nth-child(2) { animation-delay: 0.2s; }
.loading-text .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes loadingDots {
  0%   { opacity: 0; }
  30%  { opacity: 1; }
  60%  { opacity: 0; }
  100% { opacity: 0; }
}


.is-hidden {
  display: none!important;
}

.is-visible {
  display: flex!important;
  flex-direction: column;
}


/* Thank-you wrapper: no space when hidden (because .is-hidden = display:none) */
.thank-you-main-wrapper {
  /* nothing special needed here */
}

/* When it becomes visible, animate in */
.qep-section.is-visible {
  animation: qepTyFadeIn 0.4s ease-out;
}

/* Fade + slight slide up */
@keyframes qepTyFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Base step state: hidden by default via display:none in JS */
.qep-step {
  /* nothing special needed here, JS controls display */
}

/* When a step becomes active, we show it and animate in */
.qep-step.is-active {
  animation: qepStepIn 0.35s ease-out;
}

@keyframes qepStepIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.qep-qm-row{position:relative;margin-top:6px;display:inline-flex;align-items:center;gap:8px}
.qep-qm-link{background:transparent;border:0;padding:0;cursor:pointer;color:var(--Text-text-secondary_subtle,#B2B9C1);font-size:14.22px;font-style:normal;font-weight:108;line-height:18px;text-decoration-line:underline;text-decoration-style:solid;text-decoration-skip-ink:none;text-decoration-thickness:auto;text-underline-offset:auto;text-underline-position:from-font}

.qep-qm-pop{
  position:absolute;
  right:0;
  bottom:calc(100% + 10px);
  min-width:220px;
  max-width:320px;
  padding:10px 12px;
  border-radius:10px;
  background:#001127;
  color:#fff;
  font-size:12px;
  line-height:1.35;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
  z-index:9999;
  text-align: left;
  display:block;
  opacity:0;
  transform:translateY(6px);
  pointer-events:none;
  visibility:hidden;
  transition: opacity 220ms ease, transform 220ms ease, visibility 0s linear 220ms;
}

.qep-qm-row.is-open .qep-qm-pop{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
  visibility:visible;
  transition: opacity 220ms ease, transform 220ms ease, visibility 0s;
}


#get-started-header-success{
    display:none;
}

.qep-custom-submit-row td{
    padding-top:16px;
}



/*CHECKOUT*/
.qep-submit-to-qg{
    width:100%;
    cursor:pointer;
    transition:opacity .2s ease;
}

.qep-submit-to-qg:hover{
    opacity:.92;
}

.qep-submit-to-qg:disabled{
    opacity:.7;
    cursor:not-allowed;
}

.qep-submit-error{
    margin-top:12px;
    color:#b42318;
    font-size:14px;
    line-height:1.5;
}

.qep-qg-overlay{
    position:fixed;
    inset:0;
    z-index:999999;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.45);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .2s ease, visibility .2s ease;
}

.qep-qg-overlay.is-active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
}

.qep-qg-spinner{
    width:72px;
    height:72px;
    border-radius:50%;
    border:6px solid rgba(0,102,255,.18);
    border-top-color:#06F;
    animation:qepSpin .8s linear infinite;
    box-shadow:0 8px 30px rgba(0,0,0,.08);
    background:transparent;
}

#qep-submit-to-qg{
    width: 100%;
}

@keyframes qepSpin{
    to{ transform:rotate(360deg); }
}

.form-row.qep-field-error label {
  color: #ff4d4f !important;
}

input.qep-input-error,
select.qep-input-error,
textarea.qep-input-error {
  border-color: #ff4d4f !important;
  box-shadow: 0 0 0 1px #ff4d4f !important;
}


#quantum-checkout-wrapper {
  min-height: 500px;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .25s ease, transform .25s ease;
}

#quantum-checkout-wrapper.qep-is-hiding {
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
}

#get-started-header-success {
  display: flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
}

#get-started-header-success.is-hidden {
  display: none;
}

#get-started-header-success.qep-is-visible,
#get-started-header-success.is-visible {
  display: flex !important;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}


.snackbar-container.qep-snackbar {
  border-radius: 14px !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22) !important;
  font-family: inherit !important;
  padding: 14px 18px !important;
  min-width: 280px !important;
}

.snackbar-container.qep-snackbar .snackbar {
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  color: #fff!important;
  letter-spacing: 0 !important;
  text-align: center!important;
}

.snackbar-container.qep-snackbar .snackbar ,
.snackbar-container.qep-snackbar .snackbar p{
    text-align: center;
    width: 100%;
}

.snackbar-container.qep-snackbar{
    justify-content: center;
}

.snackbar-container.qep-snackbar.qep-snackbar-success {
  background: #06F !important;
  color: #FFF !important;
}

.snackbar-container.qep-snackbar.qep-snackbar-error {
  background: #D92D20 !important;
  color: #FFF !important;
}

.snackbar-container.qep-snackbar .snackbar-action {
  color: #FFF !important;
}

.qep-delete-account-swal .swal2-icon {
  border: 0 !important;
  width: auto !important;
  height: auto !important;
  margin: 0 auto 24px !important;
}

/*.qep-delete-account-swal .swal2-icon-content {
  display: none !important;
}
*/
.qep-delete-account-swal-icon svg {
  display: block;
  width: 48px;
  height: 48px;
}

.qep-delete-account-swa .swal2-styled.swal2-confirm{
    #D92D20
}

.qep-delete-account-swal .swal2-actions {
  display: flex !important;
  gap: 12px;
  width: 100%;
}

.qep-delete-account-swal.swal2-popup{
    max-width: 560px;
    width: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='326' height='132' viewBox='0 0 326 132' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0)'%3E%3Cmask id='mask0' maskUnits='userSpaceOnUse' x='66' y='-62' width='195' height='194'%3E%3Crect width='193.519' height='193.519' transform='translate(66.6088 -61.5957)' fill='url(%23paint0)'/%3E%3C/mask%3E%3Cg mask='url(%23mask0)'%3E%3Cg%3E%3Cline x1='85.8209' y1='-61.5957' x2='85.8209' y2='131.923' stroke='%23D0D5DD' stroke-width='0.2'/%3E%3Cline x1='105.173' y1='-61.5957' x2='105.173' y2='131.923' stroke='%23D0D5DD' stroke-width='0.2'/%3E%3Cline x1='124.525' y1='-61.5957' x2='124.525' y2='131.923' stroke='%23D0D5DD' stroke-width='0.2'/%3E%3Cline x1='143.877' y1='-61.5957' x2='143.876' y2='131.923' stroke='%23D0D5DD' stroke-width='0.2'/%3E%3Cline x1='163.228' y1='-61.5957' x2='163.228' y2='131.923' stroke='%23D0D5DD' stroke-width='0.2'/%3E%3Cline x1='182.58' y1='-61.5957' x2='182.58' y2='131.923' stroke='%23D0D5DD' stroke-width='0.2'/%3E%3Cline x1='201.932' y1='-61.5957' x2='201.932' y2='131.923' stroke='%23D0D5DD' stroke-width='0.2'/%3E%3Cline x1='221.284' y1='-61.5957' x2='221.284' y2='131.923' stroke='%23D0D5DD' stroke-width='0.2'/%3E%3Cline x1='240.636' y1='-61.5957' x2='240.636' y2='131.923' stroke='%23D0D5DD' stroke-width='0.2'/%3E%3Cline x1='66.3682' y1='15.7112' x2='259.887' y2='15.7112' stroke='%23D0D5DD' stroke-width='0.2'/%3E%3Cline x1='66.3682' y1='35.0628' x2='259.887' y2='35.0628' stroke='%23D0D5DD' stroke-width='0.2'/%3E%3Cline x1='66.3682' y1='54.4148' x2='259.887' y2='54.4148' stroke='%23D0D5DD' stroke-width='0.2'/%3E%3Cline x1='66.3682' y1='73.7669' x2='259.887' y2='73.7669' stroke='%23D0D5DD' stroke-width='0.2'/%3E%3Cline x1='66.3682' y1='93.1184' x2='259.887' y2='93.1184' stroke='%23D0D5DD' stroke-width='0.2'/%3E%3Cline x1='66.3682' y1='112.47' x2='259.887' y2='112.47' stroke='%23D0D5DD' stroke-width='0.2'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CradialGradient id='paint0' cx='0' cy='0' r='1' gradientUnits='userSpaceOnUse' gradientTransform='translate(96.7594 0) rotate(90) scale(193.519 101.004)'%3E%3Cstop/%3E%3Cstop offset='0.95' stop-opacity='0'/%3E%3C/radialGradient%3E%3CclipPath id='clip0'%3E%3Crect width='326' height='132'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E")!important;
    background-size: auto;
    background-position: top center;
    border-radius: 12px;
    background-color: #001127!important;

    /* Shadows/shadow-xl */
    box-shadow: 0 20px 24px -4px rgba(16, 24, 40, 0.08), 0 8px 8px -4px rgba(16, 24, 40, 0.03);
}

.qep-delete-account-swal .swal2-actions button {
  flex: 1 1 0;
  width: 100%;
  margin: 0 !important;
  padding: 12px 32px;
  border-radius: var(--radius-md, 8px);
  font-family: "Sequel Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  border: 1px solid transparent;
}

/* CONFIRM (Delete) */
.qep-delete-account-swal .swal2-confirm {
  background: var(--Colors-Foreground-fg-error-primary, #D92D20) !important;
  border: 1px solid var(--Colors-Border-border-error-solid, #D92D20) !important;
  color: #FFF !important;
}

/* CANCEL */
.qep-delete-account-swal .swal2-cancel {
  background: var(--Background-bg-secondary-subtle, #142438) !important;
  color: var(--Text-text-secondary_subtle, #B2B9C1) !important;
  border: 1px solid transparent !important;
}

/* HOVER STATES */
.qep-delete-account-swal .swal2-confirm:hover {
  filter: brightness(0.95);
}

.qep-delete-account-swal .swal2-cancel:hover {
  background: #1a2f4a !important;
}

/* FOCUS STATE (clean, not ugly default outline) */
.qep-delete-account-swal .swal2-actions button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(6, 111, 255, 0.3);
}



/*NO UI SLIDER*/


/* ================================
       QEP STEP SLIDER – FINAL
    ================================ */

    .qep-step-slider{
  position:relative;
  width:100%;
  padding:0;
  background:transparent;
}

/* bottom ticks (doesn't affect layout height) */
.qep-step-slider:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
      top: calc(100% + 10px);
  height:14px;
  pointer-events:none;
  opacity:.55;
  background-image:url(https://quantumepaynew.tempurl.host/wp-content/uploads/2026/02/calcu-lines.svg);
    background-size: cover;
}

/* track (default/inactive bar) */
.qep-step-slider .noUi-target{
  height:3px;
  border:0;
  border-radius:999px;
  background:#001127;
  box-shadow:none;
}

/* active fill */
.qep-step-slider .noUi-connects{
  overflow:hidden;
  border-radius:999px;
      background: #142438;
}
.qep-step-slider .noUi-connect{
  height:3px;
  background:#06F;
  border-radius:999px;
}

/* handle */
.qep-step-slider .noUi-horizontal .noUi-handle{
  width:20px;
  height:20px;
  right:-10px;
  top:-8.5px;
  border-radius:50%;
  border:3px solid #fff;
  background:transparent;
  box-shadow:0 8px 14px rgba(0,0,0,.25);
  cursor:grab;
    border-radius: 50%;
border: 5px solid var(--Component-colors-Components-Sliders-slider-handle-border, #06F);
background: var(--Component-colors-Components-Sliders-slider-handle-bg, #FFF);
box-shadow: 0 3.5px 7px -1.75px rgba(16, 24, 40, 0.10), 0 1.75px 3.5px -1.75px rgba(16, 24, 40, 0.06);
}
.qep-step-slider .noUi-horizontal .noUi-handle:active{ cursor:grabbing; }
.qep-step-slider .noUi-handle:before,
.qep-step-slider .noUi-handle:after{ display:none; }

/* inner blue dot */
.qep-step-slider .noUi-horizontal .noUi-handle i{
  position:absolute;
  left:50%;
  top:50%;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#fff;
  transform:translate(-50%,-50%);
}

/* highlight bubble */
.qep-step-slider .noUi-horizontal .noUi-handle b{
  position:absolute;
  left:5px;
  top:4px;
  width:5px;
  height:5px;
  border-radius:50%;
  background:rgba(255,255,255,.95);
}

/* tooltip */
.qep-step-slider .qep-tip{
  position:absolute;
  top:-45px;
  left:0;
  background:#06F;
  color:#fff;
  border-radius:999px;
  padding:4px 12px;
  font-size: 12.64px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 126.582% */
  white-space:nowrap;
  box-shadow:0 12px 24px rgba(0,0,0,.18);
  pointer-events:none;
  z-index:4;
  transform:translateX(-50%) translateX(12px);
}
.qep-step-slider .qep-tip:after{
  content: "";
position: absolute;
left: 0;
bottom: 0px;
width: 0;
height: 0;
border-top: 10px solid #06F;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
right: 0;
/* transform: rotate(28deg); */
margin: auto;
top: calc(100% + 3px);
}

/* optional label */
.qep-step-slider .qep-label{
  margin-top:18px;
  text-align:center;
  font:600 12px/1.2 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#475569;
}
    
    .qep-toggle-wrapper:has(.qep-toggle:last-child.active)::before {
      transform: translateX(100%);
    }


    .qst-3col {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    @media (max-width: 767px) {
        .qst-3col {
            grid-template-columns: 1fr;
        }

        .qst-contact-form .qst-1col,
        .qst-contact-form .qst-2col,
        .qst-contact-form .qst-3col{
            flex-direction: column;
        }


        .qst-contact-form button[type="submit"]{
            margin-top: 40px;
        }

    }


    /* Custom Select */

    .qst-select {
        position: relative;
        width: 100%;
        font-family: 'Sequel Sans', sans-serif;
    }

    .qst-select-display {
        background: #001127;
        border: 2px solid rgba(255,255,255,0.12);
        border-radius: 8px;
        padding: 14px 16px;
        color: #fff;
        cursor: pointer;
        width: 100%;
        border-radius: 8px;
        border: 2px solid rgba(255, 255, 255, 0.12);
        background: #001127;
        color: #fff;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 16px;
        padding: 12px 16px;
        box-shadow: none !important;
        outline: none !important;
        height: 100%;
        height: 50px;
    }

    .qst-select-display {
        display: flex;
        text-align: left;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .qst-select-text {
        flex: 1;
    }

    .qst-select-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease;
    }

    .qst-select.open .qst-select-arrow {
        transform: rotate(180deg);
    }

    .qst-select-dropdown {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        width: 100%;
        background: #001127;
        border: 2px solid rgba(255,255,255,0.12);
        border-radius: 8px;
        box-shadow: 0px 12px 16px -4px rgba(16,24,40,0.08),
                    0px 4px 6px -2px rgba(16,24,40,0.03);
        display: none;
        flex-direction: column;
        padding: 4px 0;
        z-index: 999;
    }

    .qst-select-dropdown.open {
        display: flex;
    }

    .qst-select-item {
        padding: 10px 12px;
        color: #fff;
        border-radius: 6px;
        margin: 2px 6px;
        cursor: pointer;
        text-align: left;
        transition: background 0.15s ease;
    }

    .qst-select-item:hover {
        background: #142438;
    }

    .qst-select-item.active {
        background: #142438;
    }


/*    @media (-webkit-min-device-pixel-ratio: 1.15), (min-resolution: 1.15dppx) {
      body {
        zoom: 0.85;
      }
    }

    @media (-webkit-min-device-pixel-ratio: 1.4), (min-resolution: 1.4dppx) {
      body {
        zoom: 0.6;
      }
    }

    @media (-webkit-min-device-pixel-ratio: 1.65), (min-resolution: 1.65dppx) {
      body {
        zoom: 0.52;
      }
    }

    @media (-webkit-min-device-pixel-ratio: 1.9), (min-resolution: 1.9dppx) {
      body {
        zoom: 0.46;
      }
    }

    @media (-webkit-min-device-pixel-ratio: 2.15), (min-resolution: 2.15dppx) {
      body {
        zoom: 0.42;
      }
    }

    @media (-webkit-min-device-pixel-ratio: 2.4), (min-resolution: 2.4dppx) {
      body {
        zoom: 0.38;
      }
    }*/



    /*GLOBAL SEARCH*/

    #top-header-wrapper {
        position: relative;
        z-index: 1000;
    }

    .quantum-search-panel {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(24, 34, 48, 0.96);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;

        transform: translateY(-24px) scale(.98);

        transition:
            opacity .45s ease,
            transform .65s cubic-bezier(.22,1,.36,1),
            visibility .45s ease;

        z-index: 9999;

        /*border-top: 1px solid rgba(255,255,255,.04);
        box-shadow:
            0 30px 80px rgba(0,0,0,.45),
            inset 0 1px 0 rgba(255,255,255,.03);*/
    }

    .quantum-search-panel.is-active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }

    .quantum-search-inner {
        max-width: 1440px;
        margin: 0 auto;
        padding: 32px 3rem;
    }

    .quantum-search-form {
        display: flex;
        align-items: center;
        gap: 24px;
        /*min-height: 92px;*/
    }

    .quantum-search-input-wrap {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
    }

    .quantum-search-icon {
        width: 18px;
        height: 18px;
        color: rgba(255,255,255,.85);
        flex-shrink: 0;
        margin-right: 18px;
    }

    .quantum-search-form input {
        width: 100%;
        background: transparent !important;
        border: 0 !important;
        outline: 0 !important;
        box-shadow: none !important;

        color: #ffffff;

        font-size: 20.25px;
        font-weight: 400;
        line-height: 1.2;

        padding: 0 !important;
        margin: 0 !important;

        height: auto !important;
    }

    .quantum-search-form input::placeholder {
        color: #677684;
        opacity: 1;
    }

    .quantum-search-close {
        border: 0;
        background: transparent;
        color: rgba(255,255,255,.75);

        width: 42px;
        height: 42px;

        display: flex;
        align-items: center;
        justify-content: center;

        cursor: pointer;

        font-size: 34px;
        line-height: 1;

        transition:
            transform .35s ease,
            opacity .25s ease;
    }

    .quantum-search-close:hover {
        opacity: 1;
        transform: rotate(90deg);
    }

    @media (max-width: 1024px) {

        .quantum-search-panel {
            position: fixed;
            inset: 0;
            top: 0;

            display: flex;
            align-items: flex-start;
            justify-content: center;

            background:
                linear-gradient(
                    180deg,
                    rgba(9,15,28,.96) 0%,
                    rgba(9,15,28,.88) 100%
                );

            transform: scale(1.04);
        }

        .quantum-search-panel.is-active {
            transform: scale(1);
        }

        .quantum-search-inner {
            width: 100%;
            padding: 120px 24px 24px;
        }

        .quantum-search-form {
            min-height: auto;

            background: rgba(255,255,255,.03);

            border: 1px solid rgba(255,255,255,.06);

            border-radius: 24px;

            padding: 22px 24px;

            box-shadow:
                0 20px 60px rgba(0,0,0,.45),
                inset 0 1px 0 rgba(255,255,255,.03);
        }

        .quantum-search-form input {
            font-size: 20px;
        }

    }



    #top-header-wrapper {
        position: relative;
    }

    .quantum-search-panel {
        position: absolute;
        top: 100%;
        left: 0;
    }