@keyframes select-scroll-showup {
    0% {
        bottom: -273px
    }
    to {
        bottom: 0
    }
}

@keyframes select-scroll-hidedown {
    0% {
        bottom: 0
    }
    to {
        bottom: -273px
    }
}

.picker {
    position: relative;
    left: 0;
    top: 0;
    z-index: 100;
    width: 100%;
    height: 213px;
    overflow: hidden;
    text-align: center;
    font-size: 14px;
}

#picker-date + .picker {
    height: 250px;
}

.picker .picker-panel {
    position: absolute;
    z-index: 600;
    width: 100%;
    height: 273px;
}

.picker .picker-panel.up {
    bottom: 0;
    animation: select-scroll-showup .3s 0s linear
}

.picker .picker-panel.down {
    bottom: -273px;
    animation: select-scroll-hidedown .3s 0s linear
}

.picker .picker-panel .picker-choose {
    position: relative;
    height: 60px;
    color: #999;
    visibility: hidden;
}

#picker-date + .picker .picker-panel .picker-choose {
    visibility: visible;
    height: 40px;
}

.picker .picker-panel .cancel, .picker .picker-panel .confirm {
    position: absolute;
    top: 6px;
    padding: 16px;
    font-size: 14px
}

#picker-date + .picker .picker-panel .cancel,
#picker-date + .picker .picker-panel .confirm{
    padding-bottom: 0;
}

.picker .picker-panel .confirm {
    right: 0;
    color: #007bff
}

.picker .picker-panel .cancel {
    left: 0
}

.picker .picker-panel .picker-title {
    margin: 0;
    line-height: 60px;
    font-weight: 400;
    text-align: center;
    font-size: 18px;
    color: #333
}

#picker-date + .picker .picker-panel .picker-title{
    display: none;
}

.picker .picker-panel .picker-content {
    position: relative;
    top: 20px
}

.picker .picker-panel .mask-bottom, .picker .picker-panel .mask-top {
    z-index: 10;
    width: 100%;
    height: 68px;
    pointer-events: none;
    transform: translateZ(0);
    border: solid rgba(0, 0, 0, .1);
}

.picker .picker-panel .mask-top {
    position: absolute;
    top: 0;
    border-width: 0 0 1px;
    background: linear-gradient(0deg, rgba(241, 242, 244, .4), rgba(241, 242, 244, .8));
}

.picker .picker-panel .mask-bottom {
    position: absolute;
    bottom: 1px;
    border-width: 1px 0 0;
    background: linear-gradient(180deg, rgba(242, 243, 245, .4), rgba(242, 243, 245, .8))
}

#picker-unit + .picker .picker-panel .mask-top{
    border-bottom: 2px solid #0499db;
    background: linear-gradient(0deg, rgba(238, 238, 238, .4), rgba(238, 238, 238, .9));
}

#picker-unit + .picker .picker-panel .mask-bottom{
    border-top: 2px solid #0499db;
    background: linear-gradient(180deg, rgba(238, 238, 238, .4), rgba(238, 238, 238, .9));
}

body.crea-account .picker .picker-panel .mask-bottom{
    background: linear-gradient(180deg, rgba(238, 238, 238, .4), rgba(238, 238, 238, .8));
}

body.crea-account .picker .picker-panel .mask-top{
    background: linear-gradient(0deg, rgba(238, 238, 238, .4), rgba(238, 238, 238, .8));
}

.picker .picker-panel .border-bottom-1px:after, .picker .picker-panel .border-bottom-1px:before, .picker .picker-panel .border-top-1px:after, .picker .picker-panel .border-top-1px:before {
    content: "";
    display: block;
    position: absolute;
    transform-origin: 0 0
}

.picker .picker-panel .border-bottom-1px:after {
    border-bottom: 1px solid #ebebeb;
    left: 0;
    bottom: 0;
    transform-origin: 0 bottom;
    width: 300%;
    transform: scale(.5) translateZ(0)
}

.picker .picker-panel .border-top-1px:before {
    width: 300%;
    transform: scale(.5) translateZ(0);
    border-top: 1px solid #ebebeb;
    left: 0;
    top: 0;
    transform-origin: 0 top
}

.picker .picker-panel .wheel-wrapper {
    display: -ms-flexbox;
    display: flex;
    padding: 0 16px
}

.picker .picker-panel .wheel {
    -ms-flex: 1;
    flex: 1;
    -ms-flex-preferred-size: -8 e;
    flex-basis: -8 e;
    width: 1%;
    height: 173px;
    overflow: hidden;
    font-size: 20px
}

.picker .picker-panel .wheel-scroll {
    padding: 0;
    margin-top: 68px;
    line-height: 36px;
    list-style: none
}

.picker .picker-panel .wheel-item {
    list-style: none;
    height: 36px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333
}

.picker .picker-footer {
    height: 20px
}

.picker-input {
    border: solid rgba(0, 0, 0, 0.12);
    width: 100%;
    border-width: 0 0 1px;
    padding: 16px 0.75rem 8px 0.75rem;
    height: inherit;
    margin: 30px 0;
}

.picker-input span.empty{
    color: rgba(0, 0, 0, 0.38);
}

body.ios #picker-date + .picker{
    background-color: #eee;
}