.custom-select,
.custom-select-32 {
  position: relative;
}

.selected {
  display: flex;
  align-items: center;
  width: 200px;
  height: 40px;
  padding: 12px 16px;
  border: 1px solid #c2cadb;
  border-radius: 8px;
  color: #5b6371;
  cursor: pointer;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: -0.56px;
  background-color: #fff;
  background-image: url('../image/select/arrow-down.png');
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: right 10px center;
  z-index: 1;
}

.selected::after {
  content: '';

  z-index: 17;

  position: absolute;
  top: 40px;
  left: 50%;

  display: none;

  width: calc(100% - 32px);
  transform: translateX(-50%);
  height: 1px;

  background-color: #d9dfec;
}

.selected.open {
  padding: 12px 16px;
  border: 1px solid #007bff;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  background-color: #fff;
  background-image: url('../image/select/arrow-up.png');
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: right 10px center;
  z-index: 9999999999;
}

.selected.open::after {
  display: block;
}

.selected.filled {
  color: #000000;
  border: 1px solid #007bff;
}

.selected:hover {
  color: #000000;
  background-color: #f2f2f2;
}

.selected.pressed {
  opacity: 0.6;
  color: #000000;
  background-color: #e6e6e6;
}

.options {
  display: none;
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #007bff;
  border-top: none;
  border-radius: 0px 0px 8px 8px;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: -0.56px;
  z-index: 16;
}

.options ul {
  list-style-type: none;
}

.options li {
  margin: 16px;
  color: #5b6371;
  cursor: pointer;
}

.options li:hover {
  color: #007bff;
}

.selected.pressed {
  background-color: #e6e6e6;
}

.options li.selected-option:hover {
  color: #007bff;
  background: #fff;
}

.custom-select.disabled {
  color: #5b6371;
  border-radius: 8px;
  background-color: #f5f6f8;
  cursor: not-allowed;
}

.custom-select.disabled .selected {
  background-image: url('../image/select/arrow-down-disabled.png');
  pointer-events: none;
  border: 1px solid #c2cadb !important;
  background-color: #f5f6f8 !important;
  color: #5b6371 !important;
  cursor: not-allowed !important;
  z-index: 9999999999;
}

.custom-select-32 {
  width: 96px;
  height: 32px;
}

/* 32 */
.selected-32 {
  padding: 8px 12px;
  height: 32px;
  border: 1px solid #c2cadb;
  font-size: 13px;
  line-height: 13px;
  letter-spacing: -0.52px;
  color: #000;
  background-color: #fff;
  background-image: url('../image/select/arrow-down.png');
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: right 10px center;
  z-index: 1;
  box-sizing: border-box;
}

.selected-32.open {
  border: 1px solid #007bff;
  background-color: #fff;
  background-image: url('../image/select/arrow-up.png');
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: right 10px center;
  z-index: 9999999999;
}

.selected-32.open::after {
  display: block;
}

.selected-32.filled {
  color: #000000;
  border: 1px solid #007bff;
}

.selected-32:hover {
  color: #000000;
  background-color: #f2f2f2;
}

.selected-32.pressed {
  opacity: 0.6;
  color: #000000;
  background-color: #e6e6e6;
}

.options-32 {
  display: none;
  /* position: absolute; */
  position: fixed;
  left: 0;
  width: 100%;
  background-color: #fff;
  border: 1px solid #c2cadb;
  border-top: none;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: -0.56px;
  z-index: 9999;
}

.options-32 li {
  margin: 10px;
  color: #5b6371;
  cursor: pointer;
}

.options-32 li:hover {
  color: #007bff;
}

.selected-32.pressed {
  background-color: #e6e6e6;
}

.options-32 li.selected-option:hover {
  color: #007bff;
  background: #fff;
}

.custom-select-32.disabled {
  color: #5b6371;
  border-radius: 8px;
  background-color: #f5f6f8;
  cursor: not-allowed;
}

.custom-select-32.disabled .selected-32 {
  background-image: url('../image/select/arrow-down-disabled.png');
  pointer-events: none;
  border: 1px solid #c2cadb !important;
  background-color: #f5f6f8 !important;
  color: #5b6371 !important;
  cursor: not-allowed !important;
  z-index: 9999999999;
}
