:host {
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 0px;
  padding-bottom: 0px;
  height: 200px;
  outline: none;
  font-size: 22px;
  scroll-snap-type: y mandatory;
  /**
   * Need to explicitly set overflow-x: hidden
   * for older implementations of scroll snapping.
   */
  overflow-x: hidden;
  overflow-y: scroll;
  text-align: center;
}
@supports (margin-inline-start: 0) or (-webkit-margin-start: 0) {
  :host {
    padding-left: unset;
    padding-right: unset;
    -webkit-padding-start: 16px;
    padding-inline-start: 16px;
    -webkit-padding-end: 16px;
    padding-inline-end: 16px;
  }
}

/**
 * Hide scrollbars on Chrome and Safari
 */
/* width */
:host::-webkit-scrollbar {
  width: 5px;
}

/* Track */
:host::-webkit-scrollbar-track {
  background: #FFF;
}

/* Handle */
:host::-webkit-scrollbar-thumb {
  background: var(--gasco-color-medium, #999999);
  border-radius: 4px;
}

:host .picker-item {
  height: 34px;
  line-height: 34px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  scroll-snap-align: center;
  cursor: default;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #072531;
}

:host .picker-item-empty {
  scroll-snap-align: none;
}

:host(.picker-column-active) .picker-item.picker-item-active {
  color: var(--gasco-color-base);
}

@media (any-hover: hover) {
  :host(:focus) {
    outline: none;
  }
}
:host .picker-item-active {
  color: var(--gasco-color-base);
}