.tabs-for-time {
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin-bottom: 0.5rem;
    display: none;
}

.tabs-for-time .tab-item {
    flex: 0 0 50%;
    width: 100%;
    background-color: var(--rd-textcolor-standard);
    color: var(--color-white);
    cursor: pointer;
    font-weight: 300;
    font-size: 1rem;
    border-color: var(--input-border-color)
}

.tabs-for-time .tab-item:first-child {
    border-radius: var(--radius-xs) 0 0 var(--radius-xs);
    border-right: 0 none;
}

.tabs-for-time .tab-item:last-child {
    border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
}

.tabs-for-time .tab-item:after {
    display: none;
}

.tabs-for-time .tab-item.current {
    background-color: var(--color-white);
    color: var(--rd-textcolor-standard);
}

@media only screen and (max-width: 1024px) {
    [data-type="rvkservice_fahrplanauskunftwidget"] .form-time-row .time.arrival-departure {
        visibility: hidden;
        height: 0;
    }

    .tabs-for-time {
        display: flex;
    }
}