
/* HKA Texas v8.18.2 restaurant dropdown */
.topic-strip .wrap{
  display:flex;
  align-items:center;
  gap:14px;
  overflow:visible;
}
.topic-dropdown{
  position:relative;
  display:inline-block;
  color:#fff;
}
.topic-dropdown summary{
  list-style:none;
  cursor:pointer;
  color:#fff;
  font:inherit;
  white-space:nowrap;
}
.topic-dropdown summary::-webkit-details-marker{display:none}
.topic-dropdown summary::after{
  content:" ▾";
  color:#8a939d;
  font-size:10px;
}
.topic-dropdown-menu{
  display:none;
  position:absolute;
  z-index:1000;
  top:calc(100% + 8px);
  left:-12px;
  min-width:240px;
  padding:8px;
  background:#111318;
  border:1px solid #31363d;
  box-shadow:0 10px 28px rgba(0,0,0,.28);
}
.topic-dropdown-menu::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-10px;
  height:10px;
}
.topic-dropdown-menu a{
  display:block!important;
  padding:8px 10px!important;
  color:#fff!important;
  text-decoration:none!important;
  line-height:1.25!important;
  white-space:nowrap;
}
.topic-dropdown-menu a:hover,
.topic-dropdown-menu a:focus{
  background:#242a31;
}
.topic-dropdown-menu a strong{color:#51cfff}
.topic-dropdown[open] .topic-dropdown-menu,
.topic-dropdown:hover .topic-dropdown-menu,
.topic-dropdown:focus-within .topic-dropdown-menu{
  display:block;
}

@media(max-width:900px){
  .topic-strip .wrap{
    flex-wrap:wrap;
    gap:8px 12px;
  }
  .topic-dropdown{
    position:static;
  }
  .topic-dropdown-menu{
    left:12px;
    right:12px;
    top:auto;
    min-width:0;
    margin-top:7px;
  }
}
