.combo_box {
  position: relative;
  width: 100%;
}

.option_selected {
  background: #25232a;
  border-radius: 5px;
  color: #f0f0f0;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 5px 8px;
  cursor: pointer;
}

.option {
  background: #161519;
  color: #f0f0f0;
  font-size: 1.5rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 5px 8px;
  cursor: pointer;
}

.option:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.option_img {
  width: 40px;
}

.option_text {
  margin-left: 10px;
}

.options {
  position: absolute;
  width: 100%;
  z-index: 1;
  filter: drop-shadow(0 0 16px rgb(19, 19, 19));
}

.option:hover {
  background-color: #2d2b33;
}

.options a {
  text-decoration: none;
}

.hidden {
  display: none;
}
