.nut-oldpicker {
  &__content {
    display: block;
    position: relative;
    text-align: center;
    overflow-y: hidden;
    &:hover {
      cursor: grab;
    }
  }

  &__bar {
    display: flex;
    height: 56px;
    align-items: center;
    justify-content: space-between;
  }
  &__column {
    display: flex;
    position: relative;
    height: 252px;
  }
  &__columnitem {
    width: 0;
    flex-grow: 1;
    height: 100%;
  }
  &__left {
    color: $picker-cancel-color;
    font-size: $picker-bar-cancel-font-size;
  }
  &__right {
    color: $picker-ok-color;
    font-size: $picker-bar-ok-font-size;
  }

  &__title {
    color: $picker-bar-title-color;
    font-size: $picker-bar-title-font-size;
    font-weight: $picker-bar-title-font-weight;
  }

  &__button {
    cursor: pointer;
    padding: $picker-bar-button-padding;
    display: flex;
    align-items: center;
    height: 100%;
  }
  &__wrapper {
    display: block;
  }
  &__item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
  }
  &__hairline {
    position: absolute;
    top: 108px;
    height: 34px;
    width: 100%;
    border: $picker-item-active-line-border;
    border-left: 0;
    border-right: 0;
  }

  &__list {
    position: relative;
    display: block;
    width: 100%;
    height: 252px;
    overflow: hidden;
    text-align: center;
  }

  &-roller {
    display: block;
    position: absolute;
    top: 108px;
    width: 100%;
    height: $picker-item-height;
    z-index: 1;
    transform-style: preserve-3d;

    &-item {
      display: block;
      backface-visibility: hidden;
      -moz-backface-visibility: hidden;
      -webkit-backface-visibility: hidden;
      position: absolute;
      top: 0;
      width: 100%;
      height: $picker-item-height;
      line-height: $picker-item-height;
      color: $picker-item-text-color;
      font-size: $picker-item-text-font-size;

      &-hidden {
        visibility: hidden;
        opacity: 0;
      }
    }
  }

  &-content {
    display: block;
    position: absolute;
    top: 108px;
    width: 100%;
    height: $picker-item-height;
    color: $picker-item-active-text-color;
    z-index: 2;
    overflow: hidden;
    border-left: 0;
    border-right: 0;
  }
  &-list-panel {
    display: block;
    transform-style: preserve-3d;
  }
  &-item {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    height: $picker-item-height;
    line-height: $picker-item-height;
    text-align: center;
    font-size: 16px;
  }
}
