biselect {
  display: block;
  margin-bottom: 15px;
}
biselect p {
  margin: 0px;
  text-align: center;
  transition: background-color 0.3s ease;
  border-radius: 5px;
  height: 32px;
  width: 100%;
  line-height: 32px;
}
biselect .d_container {
  width: 100%;
  height: 46px;
  display: flex;
  justify-content: space-between;
  border-radius: 8px;
  background-color: #3E3D40;
  border: 1px solid #444444;
  padding: 10px 15px;
  align-items: center;
}
biselect .selected {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 46px;
}
biselect .selected p {
  background-color: #302F32;
}
biselect .not_selected {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 46px;
}
biselect .not_selected p {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
biselect .not_selected p:hover {
  background-color: #38373a;
}/*# sourceMappingURL=biselect.css.map */