/* ============================================================
   TPX CUSTOMER JOURNEY – RESPONSIVE
   rem scales via :root font-size: 0.052086vw.
   @media breakpoints must be in px (browser requirement).
   ============================================================ */

/* ---- 1600px ---- */
@media (max-width: 1600px) {
}

/* ---- 1440px ---- */
@media (max-width: 1440px) {
  #tpxPreloader .tpx-preloader-gif {
    /* px — not rem: must not scale with syncFontScale() rem changes */
    width: 250px;
    object-fit: contain;
  }
}

/* ---- 1280px ---- */
@media (max-width: 1280px) {
}

/* ---- 1024px ---- */
@media (max-width: 1024px) and (orientation: landscape) {
  .step-panel-card {
    gap: 10rem;
    transform: scale(0.85);
  }
  
}
@media (max-width: 1024px) and (orientation: portrait) {
  .step-panel-card {
    gap: 10rem;
  }
}

/* ---- Rotate message bar (#turn .turn-msg-box) ---- */
.turn-msg-box {
  display: none;
}

@media only screen and (orientation: portrait) {
  #turn {
    display: block;
  }
}

@media only screen and (orientation: landscape) {
  #turn {
    display: none;
  }
}

@media only screen and (max-width: 1024px) {
  #tpxPreloader .tpx-preloader-gif {
    /* px — not rem: must not scale with syncFontScale() rem changes */
    width: 180px;
    object-fit: contain;
  }
  #turn .turn-msg-box {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    background: var(--color-blue-deep);
    margin: 0;
    color: var(--color-white);
    padding: 12px 40px 12px 20px;
    min-height: 50px;
    position: relative;
    line-height: 1.35;
  }

  #turn .Mobile-rotation-icon {
    width: 35px;
    height: auto;
    margin-right: 20px;
    flex-shrink: 0;
  }

  #turn #close {
    right: 20px;
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  #turn #close .cross-btn {
    width: 14px;
    height: 11px;
    display: block;
    object-fit: contain;
  }

  #turn {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
  }
}

@media only screen and (max-width: 360px) {
  #turn .turn-msg-box {
    font-size: 13px;
  }
}
