
@keyframes slideUp {
    0% {
        bottom:-40%;
    }
    100% {
        bottom:0;
    }
}
@-moz-keyframes slideUp {
    0% {
        bottom:-40%;
    }
    100% {
        bottom:0;
    }
}
@-webkit-keyframes slideUp {
    0% {
        bottom:-40%;
    }
    100% {
        bottom:0;
    }
}
@-o-keyframes slideUp {
    0% {
        bottom:-40%;
    }
    100% {
        bottom:0;
    }
}
.pickerView-wrap * {
    margin:0;
    padding:0;
    list-style: none;
    -webkit-box-sizing: border-box;
    -ms-box-sizing:border-box;
    -moz-box-sizing:border-box;
    box-sizing: border-box;
    font-size: 0;
}
.pickerView-wrap {
    position: fixed;
    left:0;
    top:0;
    height:100%;
    width:100%;
}
.pickerView-mask {
    height:100%;
    width:100%;
    background:rgba(0,0,0,.4);
}
.pickerView-box {
    padding: 1.6rem;
    width:100%;
    position: absolute;
    left:0;
    bottom:0;
    border-radius: 12px 12px 0 0;
    background: var(--White, #FFF);
    animation: slideUp 0.3s;
}
.pickerView-box-header {
}
.pickerView-box-header-title {
    color: var(--Gray90, #212121);
    text-align: center;
    font-family: Pretendard;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%; /* 1.5rem */
    letter-spacing: -0.02rem;
}
.pickerView-box-content-wrap {
    margin-bottom: 1.6rem;
    height: 178px;
    width:100%;
    overflow: hidden;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.pickerView-box-content {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    position: relative;
}
.pickerView-box-content-mask {
    position: absolute;
    left: 0;
    bottom:0;
    height: 100%;
    margin: 0 auto;
    width: 100%;
    z-index: 3;
    background-image: -webkit-linear-gradient(180deg, rgba(255, 255, 255, .98) 25%, rgba(255, 255, 255, 0.70) 100%);
    background-image: linear-gradient(180deg, rgba(255, 255, 255, .98) 25%, rgba(255, 255, 255, 0.70) 100%);
    /*background-position: top, bottom;*/
    background-size: 100%;
    background-repeat: no-repeat;
}
.pickerView-box-content-indicator {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 36px;
    position: absolute;
    left: 0;
    z-index: 0;
    background: var(--BlueGray05, #ECEFF1);
}
.pickerView-box-content:first-child .pickerView-box-content-indicator{
    border-radius: 0.6rem 0 0 0.6rem;
}
.pickerView-box-content:last-child .pickerView-box-content-indicator{
    border-radius: 0 0.6rem 0.6rem 0;
}
.pickerView-items {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 1;
    padding: 102px 0;
    padding: 102px 0px;
}
.pickerView-item {
    touch-action: manipulation;
    text-align: center;
    font-size: 18px;
    height: 34px;
    line-height: 34px;
    overflow:hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    color: var(--Gray90, #212121);
    font-weight: 400;
    letter-spacing: -0.025rem;
}

.btn{
    display: flex;
    height: 46px;
    min-height: 40px;
    padding: 10px 16px;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 6px;
    background: var(--Primary, #14AE5C);
    color: #FFF;
    font-size: 1.6rem;
}