.sb-date .timepic {
    position: absolute;
    top: calc(100% + 18px);
    min-width: 90px;
    right: 0;
    left: 0;
    padding-right: 10px;
    display: none;
    opacity: 0;
    transform: translateY(10%);
    transition: all 0.2s ease-in-out;
    z-index: 10;
    filter: drop-shadow(0 0 4px rgb(0 0 0 / 16%));
}
.sb-date .timepic .timepic-box {
    background: #fff;
    color: var(--primary-color);
    overflow: auto;
    max-height: 215px;
    width: 90%;
    border-top: 8px solid #fff;
    border-bottom: 8px solid #fff;
}
.sb-date .timepic::after {
    content: "";
    position: absolute;
    top: 0;
    left: 45%;
    width: 0;
    height: 0;
    border: 16px solid transparent;
    border-bottom-color: #fff;
    border-top: 0;
    margin-left: -16px;
    margin-top: -12px;
}
.sb-date .timepic.open {
    display: flex;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
}
.sb-date .timepic ul {
    margin: 0;
    padding: 0;
    list-style: none;
    overflow-y: scroll;
    height: 198px;
}
.sb-date .timepic ul li {
    text-align: center;
    display: block;
    font-size: 16px;
    padding: 5px 10px;
    transition: all 0.2s ease-in-out;
    color: var(--primary-color);
    font-weight: 500;
    cursor: pointer;
}
.sb-date .timepic ul li.active,
.sb-date .timepic ul li:hover {
    background-color: #f0f2f5;
    color: var(--primary-color);
}
.timepic-box::-webkit-scrollbar {
    width: 0px;
}
