/* 
    Created on : 23-Sep-2024, 6:13:10 PM
    Author     : goswami2
*/

.liveFilter {
  font-family: var(--default-font);
  font-size: 13px;
  position: relative;
}
.liveFilter nav {
  float: right;
}
.liveFilter ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
  clear: both;
}
.liveFilter ul li {
  position: relative;
}
.liveFilter ul li a {
  line-height: 16px;
  padding: 8px 0;
  display: block;
}
.liveFilter li.active a {
  color: #929292;
}
.liveFilter li.active a:hover {
  text-decoration: none;
}
.liveFilter .dropdown {
  display: block;
  width: 20px;
  height: 20px;
  background: url("/assets/themes/ofabee/img/arrow-down.png") 50% no-repeat;
  position: relative;
  float: right;
  top: 0;
  margin-left: 10px;
}
.liveFilter ul li ul {
  position: absolute;
  z-index: 9;
  background: white;
  width: 100%;
  right: 0px;
  padding: 10px;
  display: block;
  opacity: 0;
  z-index: 0;
}
.liveFilter ul li:hover ul {
  opacity: 1;
  transition: opacity 0.5;
  z-index: 10;
}

.liveFilter select {
  width: auto;
  font-size: 13px;
  color: #929292;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: "";
  background: transparent;
  border: none;
  box-shadow: none;
  background-image: url(/assets/themes/ofabee/img/arrow-down.png);
  background-position: calc(100% - 10px) 50%;
  background-repeat: no-repeat;
  white-space: break-spaces;
  width: 100%;
}