/* Wire · h9311c · Persistent Mobile Bottom Home Icon
 *
 * CSS-owned Home icon for the v230j bottom navigation.
 * Uses ::before so later JS can replace/remove child SVG nodes without
 * making the Home icon disappear.
 */

@media(max-width:820px){
  nav.wire-mobile-nav-v230j
  > a.wire-mobile-nav-item[href="/home"]{
    position:relative!important;
  }

  /* Retire any transient direct child Home SVG so there can never be a
     duplicate when older repair runtimes briefly insert one. */
  nav.wire-mobile-nav-v230j
  > a.wire-mobile-nav-item[href="/home"]
  > svg{
    display:none!important;
  }

  nav.wire-mobile-nav-v230j
  > a.wire-mobile-nav-item[href="/home"]::before{
    content:""!important;
    display:block!important;
    visibility:visible!important;
    opacity:1!important;
    flex:0 0 25px!important;
    width:25px!important;
    min-width:25px!important;
    max-width:25px!important;
    height:25px!important;
    min-height:25px!important;
    max-height:25px!important;
    margin:0!important;
    padding:0!important;
    background-color:currentColor!important;
    -webkit-mask:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m3 11 9-8 9 8M5 10v10h14V10M9 20v-6h6v6'/%3E%3C/svg%3E")
      center/contain no-repeat!important;
    mask:
      url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='m3 11 9-8 9 8M5 10v10h14V10M9 20v-6h6v6'/%3E%3C/svg%3E")
      center/contain no-repeat!important;
    pointer-events:none!important;
  }

  nav.wire-mobile-nav-v230j
  > a.wire-mobile-nav-item[href="/home"].active::before{
    background-color:#fff!important;
  }
}

@media(display-mode:standalone) and (max-width:820px){
  nav.wire-mobile-nav-v230j
  > a.wire-mobile-nav-item[href="/home"]::before{
    display:block!important;
    visibility:visible!important;
    opacity:1!important;
  }
}
