/* Compact tab picker for phones. Paired with assets/js/lumen-tab-filter.js. */

.lumen-tabpick { display: none; }

@media (max-width: 768px) {
  /* the stacked column of category buttons is what pushed the results off screen */
  .wpb_tabs_nav { display: none !important; }

  .lumen-tabpick {
    display: block;
    position: sticky;
    z-index: 40;
    background: #F5F0F2;
    padding: 12px 0 14px;
    margin: 0 0 6px;
  }

  .lumen-tabpick-label {
    display: block;
    font-family: "Tenor Sans", Optima, Candara, "Segoe UI", sans-serif;
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: 13px;
    color: #5F4857;
    margin: 0 0 8px;
  }

  .lumen-tabpick-select {
    /* 16px keeps iOS from zooming the page when the control is tapped, and the
       theme sets its own select size, so this one has to outrank it */
    width: 100%;
    min-height: 52px;
    font-size: 16px !important;
    font-family: Lora, Georgia, serif;
    color: #2A1B27;
    background: #fff;
    border: 1px solid #3B2438;
    border-radius: 2px;
    padding: 12px 44px 12px 14px;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 10'%3E%3Cpath d='M1 1l7 7 7-7' fill='none' stroke='%233B2438' stroke-width='1.6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px 9px;
  }

  .lumen-tabpick-select:focus {
    outline: 2px solid #3B2438;
    outline-offset: 1px;
  }
}
