body{
    font-family: "Open Sans", sans-serif;
    padding-top: var(--ion-safe-area-top);
    padding-top: calc(3rem + env(--safe-area-inset-top));
}
.topPadder {
    top: env(safe-area-inset-top);
    padding-top: var(--ion-safe-area-top);
    padding-top: calc(3rem + env(--safe-area-inset-top));
}
a {
    text-decoration: none;
    color: #007bff;
    font-family: "Open Sans", sans-serif;
}
.popupBox {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 1px solid #ccc;
    padding: 20px;
    z-index: 1000;
    display: none;
    border-radius: 10px;
}
.inputBox {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.popupMessage {
    color: red;
    font-weight: 700;
    font-family: "Open Sans", sans-serif;
}
.dashboard1 {
    margin-left: auto;
    margin-right:auto;
    text-align: center;
    display:flex;
    width:auto;
    max-width: 850px;
}
.dashboardContainer {
    max-width: 800px;
    width:auto;
    margin: 0  10px;
    padding: 20px;
    border: 1px solid #232fd8;
    border-radius: 5px;
    background-color: #221a1a;
    text-align:center;
    color:#efefef;

}

.current_favourite {
    border:#576e86 solid 2px;
}
.old_favourite {
    border:#1715a1 solid 2px;
}
.dashboardTitle {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
    display: block;
    text-align: center;
    color: white;
}
#drop-area {
    border: 2px dashed #ccc;
    border-radius: 5px;
    padding: 20px;
    text-align: center;
    margin-top: 20px auto;
    width:400px;
    height:200px;
    line-height:200px;
    cursor:pointer;
}
#drop-area.highlight {
    border-color: #333;
}
.thumb {
    max-width: 100%;
    margin-top: 10px;
}
.form-control-input {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}
.form-control-button {
    display: inline-block;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
}
#drop-area.drag-over {
  background-color: #eee;
}

.nav {
    color: white;
    padding: 10px;
    text-align: center;
    margin-bottom:10px;
}

.topButton {
    color: white;
    background-color: #007bff;
    font-family: "Open Sans", sans-serif;
    padding: 5px 15px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.topButton:hover {
    background-color: #0056b3;
}
.preview-image {
  object-fit: cover;
  width: 100px;
  height: 100px;
  margin: 10px;
  border: 1px solid #ddd;
}
#preview-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width:106x;
  height:106x;
  padding:3px;
  border:#0056b3 solid 1px;
}
.formForm {
    display: table;
    width: 100%;
}
.formLabel {
  font-weight: bold;
  margin-bottom: 5px;
  display: table-cell;
}
.formInput {
  display: table-cell;
  padding: 5px;
}
.formRow {
  display: table-row;
}
.favourite-list {
  display: flex;
  flex-wrap: wrap;
  flex:1;
}
.list-item {
    padding: 5px 10px;
    text-align:center;
    margin-bottom:5px;
    border: 1px solid #eee;
}
.favourite-item {
  padding: 5px 5px;
  width:100%;
  text-align:center;
  margin-bottom:5px;
}
.favourite-item img {
  max-width: 100px;
  max-height: 100px;
  margin-right: 10px;
  vertical-align: middle;
}
.menuBar {
    background-color: #f8f9fa;
    padding: 10px;
    border-bottom: 1px solid #eee;
    text-align:center;
    margin-bottom:20px;
}




    /* Navbar container */

.navbar {
    display: grid;
    grid-template-columns: auto auto auto auto;
    grid-template-rows:auto;
    padding: 10px;
    color: rgb(88, 125, 226);
    font-size:1.5rem;
    white-space: nowrap; /* keeps items in one line */
}

.navbar a, .dropdown button {
    display: grid-inline;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    text-align: center;
    font-family: "Open Sans", sans-serif;
}

.navbar a:hover, .dropdown button:hover {
    border-bottom: 1px solid #575757;
}

.dropdown {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto;
  position: relative;
}

.dropdown-content {
    display: none;
    grid-template-columns: auto;
    position: absolute;
    min-width: 160px;
    z-index: 1;
}
.dropdown-content a {
    display: block;
    color: white;
    padding: 12px 16px;
    text-decoration: none;
}

.dropdown-content a:hover {
    background-color: #575757;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

:root {
--bg: #0f172a; /* slate-900 */
--bg-2: #111827; /* gray-900 */
--fg: #e5e7eb; /* gray-200 */
--muted: #94a3b8; /* slate-400 */
--accent: #38bdf8; /* sky-400 */
--ring: rgba(56, 189, 248, 0.45);
--menu-shadow: 0 10px 25px rgba(0,0,0,.25), 0 2px 6px rgba(0,0,0,.18);
--radius: 14px;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
margin: 0;
font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, "Helvetica Neue", Noto Sans, Arial, "Apple Color Emoji", "Segoe UI Emoji";
background: linear-gradient(180deg, var(--bg), #0b1024 60%);
color: var(--fg);
}

.topbar {
position: sticky;
top: 0;
z-index: 50;
background: rgba(17, 24, 39, 0.7);
backdrop-filter: saturate(140%) blur(10px);
border-bottom: 1px solid rgba(148, 163, 184, 0.15);
border-radius: 10px;
}
.nav {
    display: grid;
    grid-template-columns: auto 1fr auto; /* left menu | spacer | right controls */
    align-items: center; /* grid property */
    gap: 12px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 14px;
}

.menu-list {
    display: grid; /* grid! */
    grid-auto-flow: column; /* lay out items horizontally */
    grid-auto-columns: max-content;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item > a,
.menu-item > button.menu-link {
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--fg);
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: .2px;
    cursor: pointer;
}


.menu-item > a:hover,
.menu-item > button.menu-link:hover,
.menu-item > a:focus-visible,
.menu-item > button.menu-link:focus-visible {
outline: none;
background: rgba(148, 163, 184, 0.12);
box-shadow: 0 0 0 3px var(--ring);
}

.menuSelected {
    background: rgba(148, 163, 184, 0.16);
    box-shadow: 0 0 0 3px var(--ring);
    font-weight: 700;
}
/* Profile (desktop) */
.profile {
    position: relative;
    justify-self: end; /* grid property to push to the right */
}


.profile-btn {
    display: grid; /* grid, not flex */
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    align-items: center;
    /*gap: 10px;*/
    border: 1px solid rgba(148,163,184,.25);
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(148,163,184,.12), rgba(148,163,184,.06));
    color: var(--fg);
    cursor: pointer;
}

.cart-btn {
    display: grid; /* grid, not flex */
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    align-items: center;
    /*gap: 10px;*/
    border: 1px solid rgba(148,163,184,.25);
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(148,163,184,.12), rgba(148,163,184,.06));
    color: var(--fg);
    cursor: pointer;
}
.cartImage {
    width:75px; height:75px; vertical-align:middle;
}
.avatar {
    width: 26px; height: 26px; border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #90cdf4, #1e3a8a);
    border: 2px solid rgba(148,163,184,.35);
}

.chev { width: 14px; height: 14px; }


/* Profile submenu */
.submenu {
    position: absolute;
    left: 0;
    top: -30px;
    z-index: 9000;
    top: calc(100%);
    display: none; /* toggled by JS/hover */
    min-width: 225px;
    background: var(--bg-2);
    border: 1px solid rgba(148, 163, 184, .25);
    border-radius: var(--radius);
    box-shadow: var(--menu-shadow);
    overflow: hidden;
}

.submenu.open { display: block; z-index:9001; }

.submenu ul {
    display: grid; /* vertical stack via grid */
    grid-auto-rows: minmax(40px, auto);
    margin: 0; padding: 6px;
    list-style: none;
    gap: 4px;
    z-index: 9002;
}
.submenu a {
    display: grid; /* grid line-up */
    grid-template-columns: 22px 1fr;
    align-items: center; /* grid property */
    gap: 10px;
    text-decoration: none;
    color: var(--fg);
    padding: 10px 10px;
    border-radius: 10px;
    z-index: 9003;
}
.submenu a:hover,
.submenu a:focus-visible {
    outline: none;
    background: rgba(148, 163, 184, 0.12);
    box-shadow: 0 0 0 3px var(--ring);
}

.submenu svg { width: 18px; height: 18px; }

/* Hover support (desktop, pointer devices) */
@media (hover: hover) and (pointer: fine) {
    .profile:hover .submenu { display: block; }
}


/* Hamburger */
.hamburger {
    display: none; /* shown on small screens */
    justify-self: end; /* grid property */
    border: 1px solid rgba(148,163,184,.25);
    background: linear-gradient(180deg, rgba(148,163,184,.12), rgba(148,163,184,.06));
    border-radius: 12px;
    padding: 8px 10px;
    cursor: pointer;
}

.hamburger svg { width: 22px; height: 22px; }

/* Mobile panel */
.mobile-panel {
    display: none; /* toggled */
    grid-template-rows: auto; /* grid container */
    padding: 10px 14px 16px;
    background: rgba(17, 24, 39, 0.88);
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.mobile-panel.open { display: grid; }


.mobile-links {
    display: grid; /* grid stack */
    grid-auto-rows: minmax(42px, auto);
    gap: 8px;
    margin: 0; padding: 0; list-style: none;
}

.mobile-links a,
.mobile-links button.menu-link {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(148,163,184,.22);
    background: linear-gradient(180deg, rgba(148,163,184,.10), rgba(148,163,184,.04));
    color: var(--fg);
    text-decoration: none;
    font-weight: 600;
}

.mobile-links a:hover,
.mobile-links button.menu-link:hover,
.mobile-links a:focus-visible,
.mobile-links button.menu-link:focus-visible {
    outline: none;
    background: rgba(148,163,184,0.16);
    box-shadow: 0 0 0 3px var(--ring);
}


/* Responsive behavior */
@media (max-width: 760px) {
    .menu-list { display: none; }
    .profile { display: none; }
    .hamburger { display: grid; } /* grid, not flex */
    .nav { grid-template-columns: 1fr auto; }    
}
@media (max-width: 400px) {
    .navbar { grid-template-columns: auto auto; grid-template-rows: auto auto; gap: 6px; }
    .nav { grid-template-columns: 1fr; }
}
/* Integrations */
.btn { display:inline-block; padding:10px 14px; border-radius:10px; border:1px solid #111827; text-decoration:none; color:#111827; font-weight:600; background:#fff; }
.grid { display:grid; gap:12px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); padding:16px; }
.gridHide { display:none;}
.card { border:1px solid #e5e7eb; border-radius:14px; overflow:hidden; box-shadow: 0 1px 2px rgba(0,0,0,.05); background:#fff; }
.thumb { width:100%; aspect-ratio:16/9; object-fit:cover; display:block; }
.meta { padding:10px 12px; }
.title { font-size:14px; line-height:1.3; font-weight:600; margin:0 0 6px 0; }
.url { font-size:12px; color:#2563eb; text-decoration:none; word-break:break-all; }
.toolbar { display:flex; gap:8px; justify-content:center; padding:12px 16px; }
.toolbar button { padding:10px 14px; border-radius:10px; border:1px solid #d1d5db; background:#fff; cursor:pointer; font-weight:600; }
.toolbar button[disabled] { opacity:.5; cursor:not-allowed; }
.integration-button {padding:5px 8px; border-radius:10px; border: 1px solid #d1d5db; background:#fff; cursor:pointer; font-weight:600;}
.empty { padding:32px; text-align:center; color:#6b7280; }

    .select-wrap {
      position: sticky;
      top: var(--sticky-offset);
      z-index: 999; /* keep above nearby content when stuck */
      width: min(420px, 100%);
      margin: 16px 0;
    }

    .select-field {
      position: relative;
      display: grid;
      align-items: center;
      border-radius: var(--radius);
      background:
        radial-gradient(120% 120% at 10% 10%, rgba(43,211,255,.1), transparent 55%),
        linear-gradient(180deg, rgba(43,211,255,.12), rgba(43,211,255,.04));
      box-shadow:
        0 0 0 1px var(--neon) inset,
        0 0 16px 2px var(--neon-glow),
        0 6px 22px rgba(0,0,0,.35);
    }

    .select-field select {
      /* reset default look */
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;

      border: none;
      background: transparent;
      color: var(--text);
      width: 100%;
      padding: 14px 48px 14px 14px; /* right padding for the icon */
      font-size: 1rem;
      border-radius: var(--radius);
      outline: none;
      text-shadow: 0 1px 0 rgba(0,0,0,.25);
    }

    /* Slight highlight ring on focus, keyboard-friendly */
    .select-field:has(select:focus-visible) {
      box-shadow:
        0 0 0 2px #fff2 inset,
        0 0 0 3px var(--neon) inset,
        0 0 20px 3px var(--neon-glow);
    }

    /* Font Awesome arrow */
    .select-field .fa-solid {
      position: absolute;
      right: 12px;
      pointer-events: none; /* clicks pass through to the select */
      font-size: 0.95rem;
      opacity: .9;
      filter: drop-shadow(0 0 6px var(--neon-glow));
      color: var(--neon);
    }

    /* Optional: hover effect for some tactile feedback */
    .select-field:hover {
      box-shadow:
        0 0 0 1px var(--neon) inset,
        0 0 22px 4px var(--neon-glow),
        0 10px 28px rgba(0,0,0,.45);
      /*transform: translateY(-1px);*/
      transition: box-shadow .18s ease, transform .18s ease;
    }

    /* Make sure long option text truncates nicely */
    .select-field select {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .select-field select option:hover {
        box-shadow: 0 0 10px 100px #000 inset;
        color:#152c44;
    }

    /* High-contrast users still see a clear focus */
    @media (prefers-contrast: more) {
      .select-field:has(select:focus-visible) {
        box-shadow: 0 0 0 3px var(--neon) inset;
      }
    }

     .integration-dropdown{
    max-width: 920px;
    margin: 0 auto;
    border-radius: var(--radius);
    box-shadow: 0 8px 28px rgba(0,0,0,.35);
    overflow: hidden;
    border: 1px solid #222833;
  }

  /* Header bar */
  .integration-bar{
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    background: linear-gradient(180deg, #1a1f28, var(--bar-bg));
    color: var(--bar-fg);
    padding: 14px 16px;
    cursor: pointer;
    user-select: none;
  }
  .integration-bar:focus-visible{
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }

  /* Custom checkbox (Enable) */
  .integration-enable{
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .integration-enable input{
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
  }
  .integration-enable .box{
    width: 18px; height: 18px;
    border-radius: 6px;
    border: 2px solid var(--accent);
    display: inline-grid; place-items: center;
    background: #0f1420;
    box-shadow: 0 0 12px var(--accent-soft) inset;
  }
  .integration-enable .box::after{
    content: "";
    width: 10px; height: 10px;
    clip-path: polygon(14% 54%, 0 68%, 38% 100%, 100% 22%, 86% 10%, 38% 72%);
    background: transparent;
    transition: background .18s ease;
  }
  .integration-enable input:checked + .box::after{
    background: var(--accent);
  }
  .integration-enable .label{
    font-size: .95rem;
    opacity: .9;
  }

  .integration-title{
    font-weight: 600;
    letter-spacing: .2px;
  }

  /* Down arrow */
  .integration-arrow{
    transition: transform .18s ease;
    display: inline-grid; place-items: center;
  }
  .integration-dropdown.open .integration-arrow{
    transform: rotate(180deg);
  }

  /* Panel (holds videos) */
  .integration-panel{
    background: #0f1420;
    border-top: 1px solid #1e2531;
    padding: 14px 16px;
  }
  .integration-panel[hidden]{
    display: none !important;
  }

  /* =========================================
   MOBILE ENHANCEMENTS
   Place at end of webapp.css
   ========================================= */

/* Base touch targets & readable sizes */
:root {
  --tap: 12px;           /* extra padding for touch */
  --fs-title: 1.1rem;    /* mobile title size */
  --fs-body: 0.98rem;    /* mobile body size */
}

/* Slightly tighten large containers on tablets/phones */
@media (max-width: 1024px) {
  .dashboard1 {
    max-width: 100%;
    padding: 0 12px;
  }
  .dashboardContainer {
    margin: 0 8px;
    padding: 16px;
  }
}

/* Phone-first layout */
@media (max-width: 760px) {
  html, body { font-size: 16px; }

  /* Global paddings */
  body { padding-bottom: 64px; } /* breathing room below long lists */

  /* Titles & text */
  .dashboardTitle {
    font-size: calc(var(--fs-title) + 0.1rem);
    margin: 12px 0 14px;
  }
  .popupBox {
    width: min(94vw, 520px);
    padding: 16px;
  }

  /* Navbar: menu list hidden in your base CSS at <=760px; ensure layout is clean */
  .topbar { border-radius: 0; }
  .nav {
    grid-template-columns: 1fr auto; /* brand/left | hamburger */
    padding: 8px 10px;
    gap: 8px;
  }
  .hamburger { padding: 10px 12px; }
  .mobile-panel { padding: 8px 10px 12px; }
  .mobile-links a,
  .mobile-links button.menu-link {
    padding: 12px;
    font-size: 1rem;
  }

  /* Profile & cart condense into mobile panel; keep any quick actions tappable */
  .profile, .cart-btn { display: none !important; }

  /* Dashboard blocks stack */
  .dashboard1 {
    display: block;
    text-align: left;
  }
  .dashboardContainer {
    padding: 14px;
    border-radius: 10px;
  }

  /* Drop area becomes fluid and shorter on phones */
  #drop-area {
    width: 100%;
    height: 150px;
    line-height: 150px;
    padding: 10px;
    margin: 10px 0;
  }

  /* Preview grid becomes tight, images a bit smaller */
  #preview-container {
    width: 100%;
    height: auto;
    padding: 6px;
    border-width: 1px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-start;
  }
  .preview-image {
    width: 84px;
    height: 84px;
    margin: 4px;
  }

  /* Form layout: table-like rows -> vertical stack */
  .formForm { display: block; }
  .formRow { display: block; margin-bottom: 10px; }
  .formLabel {
    display: block;
    margin-bottom: 6px;
    font-size: 0.95rem;
  }
  .formInput {
    display: block;
    padding: 0;
  }
  .form-control-input, .inputBox {
    font-size: var(--fs-body);
    padding: 12px;
  }
  .form-control-button,
  .topButton,
  .btn,
  .toolbar button {
    padding: 12px 14px;
    font-size: 1rem;
    border-radius: 12px;
    cursor: pointer;
  }

  /* Card grid collapses to single column comfortably */
  .grid {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }
  .card { border-radius: 12px; }
  .meta { padding: 10px; }
  .title { font-size: 1rem; }

  /* Favourites list stacks neatly */
  .favourite-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .favourite-item { text-align: left; }
  .favourite-item img {
    max-width: 80px;
    max-height: 80px;
    margin: 0 8px 0 0;
  }

  /* Sticky select control: keep width fluid and offset comfortable */
  :root { --sticky-offset: 8px; }
  .select-wrap {
    width: 100%;
    margin: 10px 0 14px;
  }
  .select-field select { padding: 12px 44px 12px 12px; }

  /* Integration dropdown (YouTube/TikTok panel) */
  .integration-dropdown { border-radius: 12px; }
  .integration-bar {
    grid-template-columns: auto 1fr auto;
    padding: 12px;
    gap: 10px;
  }
  .integration-enable .label { font-size: 1rem; }
  .integration-panel { padding: 10px; }

  /* Thumbnail image ratio holds on small screens */
  .thumb { aspect-ratio: 16/9; }

  /* Popup message spacing */
  .popupMessage { margin-top: 6px; }
}

/* Ultra-small devices */
@media (max-width: 400px) {
  .nav { grid-template-columns: 1fr auto; padding: 6px 8px; }
  .hamburger svg { width: 20px; height: 20px; }

  /* Buttons fill width where helpful */
  .btn,
  .topButton,
  .form-control-button,
  .toolbar button {
    width: 100%;
  }

  /* Make drop area a bit shorter on the tiniest phones */
  #drop-area {
    height: 130px;
    line-height: 130px;
  }
}

/* Better hit area for links/buttons on touch screens */
@media (hover: none) and (pointer: coarse) {
  a, button, .menu-item > a, .menu-item > button.menu-link {
    padding: max(10px, var(--tap)) max(12px, var(--tap));
  }
}
.favItem {
    padding:20px;
    border-radius:10px; 
    margin-bottom:10px;
}

.automationIncluded {
    border: 2px solid #22c55e;
}
.automationExcluded {
    border:1px solid #efefef; 
}

/* QR Selector */
  /* Sticky dock at the very top */
  .qrSelect-dock {
    position: sticky;
    top: var(--dock-top);
    z-index: 999; /* over everything except popups that are at 9999+ */
    background: transparent;   /* keep transparent to show page behind */
    padding: 6px 0;
  }

  .qrSelect {
    position: relative;
    max-width: 640px;
    margin: 0 auto; /* center; remove if you want full width */
    /*font-size: var(--qr-font-size);*/
    font-size:18px;
  }

  /* Trigger: transparent, underlined */
  .qrSelect-trigger {
    all: unset;
    display: flex;
    align-items: center;
    gap: 0.4em;
    width: 100%;
    cursor: pointer;
    color: var(--qr-text);
    border-bottom: 2px solid currentColor;
    padding: 0.4em 0;
    line-height: 1.3;
    background: transparent;
  }
  .qrSelect-trigger:hover,
  .qrSelect-trigger:focus-visible {
    border-color: var(--qr-accent);
  }
  .qrSelect-caret {
    margin-left: auto;
    font-size: 0.9em;
    line-height: 1;
  }

  /* Flyout list: FIXED overlay so it goes over below content */
  .qrSelect-list {
    position: fixed;      /* <- key change */
    display: none;        /* toggled via JS */
    margin: 0;
    padding: 6px 0;
    list-style: none;
    max-height: 260px;    /* JS updates max-height dynamically */
    overflow: auto;
    background: rgba(1, 27, 112, 0.98);
    backdrop-filter: saturate(160%) blur(2px);
    border: 3px solid rgba(0,0,0,0.88);
    border-radius: 10px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.14);
    outline: none;
    z-index: 2147483647; /* ensure on top of everything */
  }

  .qrSelect-option {
    padding: 10px 12px;
    cursor: pointer;
    transition: background 120ms ease, color 120ms ease;
    line-height: 1.25;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .qrSelect-option:hover,
  .qrSelect-option.is-active,
  .qrSelect-option[aria-selected="true"] {
    background: var(--qr-accent);
    color: #fff;
  }

  @media (max-width: 520px) {
    .qrSelect { max-width: 100%; }
    .qrSelect-option { padding: 12px 14px; }
  }

  /* END QR Selector */

  /*Store Items*/
.storeSidebar {
  text-align:left;
  margin-bottom:20px;
  align-items:center;
  vertical-align: middle;
}
.storeSidebarWrapper { position:relative; top:25%; padding:10px;}