.custom-select-topCategory {
  background-color: #f3f3f3;
  border-radius: 10px;
  padding: 18px;
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.custom-select-topCategory .select-box {
  position: relative;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0px 5px 20px #0000000d;
  width: 183px;
  height: 56px;
  user-select: none;
  display: flex;
  align-items: center;
}

.custom-select-topCategory .selected-option {
  display: block;
  cursor: pointer;
  padding: 10px;
}

.custom-select-topCategory .options {
  display: none;
  position: absolute;
  background-color: #fff;
  list-style: none;
  padding: 0;
  margin: 0;
  top: 56px; /*tamanho fixo do elemento pai*/
  border-radius: 10px;
  z-index: 201;
  box-shadow: 0px 10px 10px 10px #1818191a;
}

.custom-select-topCategory .options li {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
}

.custom-select-topCategory .options li:hover {
  background-color: #f0f0f0;
}

.custom-select-topCategory .selected-option::after {
  content: url("../img/svg/icons/arrow-down-blue.svg");
  position: absolute;
  right: 10px;
}

.topCategory-filter {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.topCategory-breadcrumb {
  color: #1364ae;
  font-family: "NimbusSans-Bold", sans-serif;
  font-size: 18px;
  line-height: 22px;
}

.topCategory-filterResults {
  color: #646668;
  font-family: "NimbusSans-Regular", sans-serif;
  font-size: 14px;
  line-height: 18px;

  & b {
    font-family: "NimbusSans-Bold", sans-serif;
  }
}


.populares-filter-mob__wrapper {
  position: initial;
  backdrop-filter:unset;
  z-index: 200;
  background: transparent;

}
@media screen and (max-width: 768px) {

  .populares-filter-mob__wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(3px);
    background: rgba(0, 0, 0, 0.3);
  }

  .populares-filter-mob__wrapper.show {
    display: block;
  }     
  .custom-select-topCategory .selected-option::after {
    display: none;
  }
}