ion-picker {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  left: 0;
  top: 0;
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  contain: strict;
  user-select: none;
  z-index: 1000; }

.picker-toolbar {
  width: 100%;
  contain: strict;
  z-index: 1; }

.picker-wrapper {
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: translate3d(0,  100%,  0);
  display: flex;
  position: absolute;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  contain: strict;
  overflow: hidden;
  z-index: 10; }

.picker-columns {
  display: flex;
  position: relative;
  justify-content: center;
  margin-bottom: var(--ion-safe-area-bottom);
  contain: strict;
  overflow: hidden; }

.picker-col {
  display: flex;
  position: relative;
  flex: 1;
  justify-content: center;
  height: 100%;
  box-sizing: content-box;
  contain: content; }

.picker-opts {
  position: relative;
  flex: 1;
  max-width: 100%; }

.picker-prefix {
  position: relative;
  flex: 2;
  min-width: 45%;
  max-width: 50%;
  text-align: end;
  white-space: nowrap; }

.picker-suffix {
  position: relative;
  flex: 2;
  min-width: 45%;
  max-width: 50%;
  text-align: start;
  white-space: nowrap; }

.picker-opt {
  left: 0;
  top: 0;
  display: block;
  position: absolute;
  width: 100%;
  border: 0;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  contain: strict;
  overflow: hidden;
  will-change: transform; }

.picker-opt.picker-opt-disabled {
  pointer-events: none; }

.picker-opt-disabled {
  opacity: 0; }

.picker-opts-left {
  justify-content: flex-start; }

.picker-opts-right {
  justify-content: flex-end; }

.picker-above-highlight,
.picker-below-highlight {
  display: none;
  pointer-events: none; }

.picker-button {
  border: 0;
  font-family: inherit; }

.picker-opt:active, .picker-opt:focus,
.picker-button:active,
.picker-button:focus {
  outline: none; }

.picker-md {
  font-family: var(--ion-font-family, inherit); }

.picker-md .picker-wrapper {
  height: 260px;
  border-top: 0.55px solid rgba(var(--ion-item-border-color-rgb, 0, 0, 0), 0.13);
  background: var(--ion-background-color, #fff); }

.picker-md .picker-toolbar {
  display: flex;
  justify-content: flex-end;
  height: 44px;
  background: var(--ion-background-color, #fff); }

.picker-md .picker-button,
.picker-md .picker-button.activated {
  margin: 0;
  padding: 0 1.1em;
  height: 44px;
  background: transparent;
  color: var(--ion-color-primary, #3880ff);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  box-shadow: none; }

.picker-md .picker-columns {
  height: 216px;
  perspective: 1800px; }

.picker-md .picker-col {
  padding: 0 8px;
  transform-style: preserve-3d; }

.picker-md .picker-prefix,
.picker-md .picker-suffix,
.picker-md .picker-opts {
  top: 77px;
  transform-style: preserve-3d;
  color: var(--ion-item-text-color, var(--ion-text-color, #000));
  font-size: 22px;
  line-height: 42px;
  pointer-events: none; }

.picker-md .picker-opt {
  margin: 0;
  padding: 0;
  height: 43px;
  transition-timing-function: ease-out;
  background: transparent;
  color: var(--ion-item-text-color, var(--ion-text-color, #000));
  font-size: 22px;
  line-height: 42px;
  backface-visibility: hidden;
  pointer-events: auto; }

.picker-md .picker-prefix,
.picker-md .picker-suffix,
.picker-md .picker-opt.picker-opt-selected {
  color: var(--ion-color-primary, #3880ff); }

.picker-md .picker-above-highlight {
  left: 0;
  top: 0;
  transform: translate3d(0,  0,  90px);
  position: absolute;
  width: 100%;
  height: 81px;
  border-bottom: 1px solid rgba(var(--ion-item-border-color-rgb, 0, 0, 0), 0.13);
  background: linear-gradient(to bottom, var(--ion-background-color, #fff) 20%, rgba(var(--ion-background-color-rgb, 255, 255, 255), 0.8) 100%);
  z-index: 10; }

.picker-md .picker-below-highlight {
  left: 0;
  top: 115px;
  transform: translate3d(0,  0,  90px);
  position: absolute;
  width: 100%;
  height: 119px;
  border-top: 1px solid rgba(var(--ion-item-border-color-rgb, 0, 0, 0), 0.13);
  background: linear-gradient(to top, var(--ion-background-color, #fff) 30%, rgba(var(--ion-background-color-rgb, 255, 255, 255), 0.8) 100%);
  z-index: 11; }
