.Select {
  display: block;
  position: relative;
  box-sizing: border-box;
  }

.Select--mimicry:focus {
  outline: none;
  }

  .Select select {
    display: block;
    position: absolute;
    appearance: none;
    outline: none;
    border: none;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 3;
    font-size: 16px;
    }

  .Select__container {
    line-height: 19px;
    font-size: 16px;
    padding: 13px 40px 12px 12px;
    color: var(--text_primary);
    box-sizing: border-box;
    height: 44px;
    position: relative;
    z-index: 2;
    }

  .Select--disabled .Select__container {
    opacity: .4;
    }

    .Select:not(.Select--multiline) .Select__title {
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      }

    .Select--not-selected .Select__title {
      color: var(--field_text_placeholder);
      }

    .Select--disabled.Select--not-selected .Select__title {
      color: var(--text_secondary);
    }

    .Select--align-right .Select__title {
      text-align: right;
      }

    .Select--align-center .Select__title {
      text-align: center;
      }

    .Select .Icon {
      position: absolute;
      top: 50%;
      margin-top: -12px;
      right: 10px;
      color: var(--icon_secondary);
      }

.Select--multiline .Select__container {
  height: auto;
  min-height: 44px;
  }
