
/* .fancy_dropdown_button {
  border: 1px solid #cccccc;
  border-radius: 5px;
  background: white;
  box-shadow: inset 0 -3px 0 #f2f2f2;
  cursor: pointer;
  color: #999999;
  font-size: 14px;
  outline: none;
  padding: 10px 15px;
}

.fancy_dropdown_button:active {
  background: #fafafa;
  box-shadow: inset 0 0 5px #d9d9d9;
} */
.dropdown_wrapper{
  position: relative;
  margin: 1%;
  cursor: pointer;
  /* text-align: center; */
  margin-left: 5%;
  margin-right: 5%;
  box-shadow: 1px 1px 7px rgb(0 0 0 / 8%);
  border: 1px dotted #cccccc;
      border-radius: 1em;
      transition: all .75s;
    /* transition-delay: 0.15s; */

}
.dropdown_wrapper ul {
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  text-align: left;
  transition: all 200ms;
  max-height: 20vh;
      overflow-y: auto;

}

.dropdown_wrapper label.filter_label:hover {
  opacity: .6;
}


.dropdown_wrapper:hover ul {
  /* opacity: 1;
  visibility: visible; */
  /* transition-delay:.25s; */

}

.dropdown_wrapper label {
      padding: 0.2em;
      font-size: 1em;
      margin: 2% !important;
      width: auto;
      white-space: nowrap;
      }

.dropdown_wrapper label:hover {
      cursor: pointer;
    }

.dropdown_wrapper ul {
  position: absolute;
  margin-left: 9%;
  padding: 4px 0;
  top: 105%;
  /* right: 5em; */
  width: 85%;
  /* padding-left: 2%; */
  /* padding-right: 2%; */
  background-color: white;
  border: 1px solid #cccccc;
  border-radius: 0.5em;
  /* overflow: hidden; */
  z-index: 0;
  box-shadow: 0 3px rgba(0, 0, 0, 0.05);
  list-style-type: none;
}
.dropdown_wrapper ul:before {
  content: "";
  position: absolute;
  top: -12px;
  height: 12px;
  width: 100%;
  background-color: transparent;
}
.dropdown_wrapper ul:after {
  content: "";
  position: absolute;
  right: 6px;
  top: -16px;
  height: 0;
  width: 0;
  border: 8px solid transparent;
  border-bottom-color: #cccccc;
}

.dropdown_wrapper li {
  padding: 0.1em 0.3em;
  color: #999999;
  cursor: pointer;
  transition: all 100ms;
}
.dropdown_wrapper li:hover {
  background-color: #e6e6e6;
  color: black;
}
.dropdown_wrapper li:first-of-type:after {
  content: "";
  position: absolute;
  right: 6px;
  top: -15px;
  height: 0;
  width: 0;
  z-index: 1;
  border: 8px solid transparent;
  border-bottom-color: white;
  pointer-events: none;
}
