.custom-select {
  position: relative;
  width: 100%;
}

.custom-select-trigger {
  width: 100%;
  height: 32px;

  display: flex;
  align-items: center;

  padding: 0px 12px;
  border-radius: 8px;
  border: 1px solid #bfc0c5;

  color: var(--main-color);
  font-size: var(--h3-font-size-mobile);
  font-weight: var(--h3-font-weight);
  line-height: var(--h3-line-height-mobile);
  text-align: left;

  appearance: none;
  background: transparent url('./../../assets/address/arrows_button_down.png') no-repeat right 12px center;
  background-size: 12.69px 6.34px;

  cursor: pointer;
  position: relative;
  z-index: 1;
}

.custom-select-trigger span {
  overflow: hidden;
  white-space:nowrap;
  text-overflow:ellipsis;
}

.custom-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 4px;
  max-height: 200px;
  overflow-y: auto;
  display: none;
  z-index: 2;
}

.custom-option {
  padding: 10px;
  cursor: pointer;
  white-space: nowrap;
}

.custom-option:hover {
  background-color: #f1f1f1;
}

.custom-select.open .custom-options {
  display: block;
}

@media (min-width: 1280px) {
  .custom-select-trigger {
    width: 221px;
    height: 45px;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #bfc0c5;

    font-family: Ubuntu;
    font-size: 18px;
    font-weight: 300;
    line-height: 23.4px;
    text-align: left;

    outline: none;
  }
}
