.dropdown_con {
  position: relative;
}

.dropdown_con > span {
  cursor: default;
}
.dropdown_con > span::after {
  content: "\276F";
  display: inline-block;
  transform: rotateZ(90deg);
  margin-left: 0.5rem;
}

.dropdown {
  list-style-type: none;
  padding: 0;
  height: 0;
  overflow: hidden;
  background: white;
}

@media (min-width: 992px) {
  .dropdown {
    position: absolute;
    top: 80%;
  }
}

ul.dropdown li a {
  padding: 0.5rem 0.8rem !important;
  color: black !important;
  width: max-content !important;
  white-space: nowrap;
}

.dropdown_con:hover .dropdown {
  height: auto;
}
