.obss-combobox {
  width: 320px;
  position: relative;
}

.obss-combobox > button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  width: 100%;
  height: 56px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 16px;
  padding-right: 33px;
  border-radius: 5px;
  border: 2px solid #e5e8eb;
}

.obss-combobox-label {
  pointer-events: none;
  transition: 0.2s;
  position: absolute;
  top: 16px;
  left: 18px;
  font-family: var(--font-family-default-medium);
  font-size: 16px;
  line-height: 24px;
  color: rgba(138, 147, 155, 1);
}

.obss-combobox.has-value .obss-combobox-label {
  transition: 0.2s;
  top: -12px !important;
  left: 12px !important;
  background-color: #fff;
  padding: 0 5px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 26px;
  margin: 0;
}

.grey-background .obss-combobox > button {
  background-color: var(--color-gray-100);
}

.grey-background .obss-combobox.has-value .obss-combobox-label {
  background-color: var(--color-gray-100);
}

.obss-combobox-selected-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 5px;
  pointer-events: none;
  font-family: var(--font-family-default-medium);
  font-size: 16px;
  line-height: 24px;
  display: none;
  color: var(--color-primary);
}

.obss-combobox.has-value .obss-combobox-selected-text {
  display: block;
}

.obss-combobox button::after {
  content: url(../images/down-arrow.svg);
  pointer-events: none;
  position: absolute;
  right: 10px;
  width: 16px;
  height: 16px;
  display: block;
}

.obss-combobox.obss-combobox-open button::after {
  transform: rotate(180deg);
}

.obss-combobox-options {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.obss-combobox.obss-combobox-open .obss-combobox-options {
  display: block;
}

.obss-combobox-options label {
  display: flex;
  position: relative;
  margin-bottom: 0;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 55px;
  color: var(--color-primary);
  font-family: var(--font-family-default-book);
  font-size: 16px;
  line-height: 26px;
  padding: 5px 19px;
}

.obss-combobox-options label:hover {
  background-color: #f1f1f1;
}

.obss-combobox-options label input[type="checkbox"] {
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  vertical-align: middle;
  border: 1px solid #ddd;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  justify-content: center;
  display: none;
}

.obss-combobox-multi-select
  .obss-combobox-options
  label
  input[type="checkbox"] {
  display: flex;
}

.obss-combobox-options label input[type="checkbox"]:checked {
  background-color: #3498db;
}

.obss-combobox-options label input[type="checkbox"]:checked::before {
  content: "\2713";
  font-size: 18px;
  color: #fff;
  display: block;
}
