
.timeselector {
    text-align: center!important;
    display: grid;
    grid-template-columns: 45px 10px 45px;
    position: relative;
    background-color: #fff;
    z-index: 99!important;
    padding-bottom: 5px;
    padding-top: 5px;
    margin: 0;
    font-size: 14px;
    border-radius: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    margin-top: 1px;
    font-family: inherit;
}
@media screen and (min-width: 390px) {
    .timeselector {
        grid-template-columns: 55px 10px 55px;
    }
}
/* @media screen and (min-width: 1180px) {
    .timeselector {
        z-index: 98!important;
    }
} */

.timeselector-separator {
    padding: 0 2px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 800;
    font-size: 20px;
}
@media screen and (min-width: 390px) {
    .timeselector-separator {
        font-size: 20px;
    }
}
.timeselector-value {
    font-weight: 400;
    text-align: center;
    cursor: pointer;
    font-size: 18px;
}

.timeselector-button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    cursor: pointer;
    opacity: .8;
}
.timeselector-button:hover {
    opacity: 1;
}

.arrow-up {
    border-top: 3px solid;
    border-right: 3px solid;
    width: 13px;
    height: 13px;
    transform: rotate(-45deg);
}
.arrow-down {
    border-top: 3px solid;
    border-right: 3px solid;
    width: 13px;
    height: 13px;
    transform: rotate(135deg);
}
