table.route-data thead tr th {
    font-weight: 400;
    color: grey;
    position: relative;
}

table.route-data thead tr th strong {
    font-weight: 600;
    color: #000;
}
table.route-data thead tr th span.toggle-sign {
    cursor: pointer;
    position: absolute;
    right: -10px;
    background: black;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    display: flex;
    justify-content: center;
    align-self: center;
    height: 20px;
    line-height: 16px;
    font-weight: bold;
    font-size: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.toggle-containers-m .toggle-container {
    margin-bottom: 10px;
}

.toggle-containers-m .toggle-container .toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.toggle-containers-m .toggle-container .toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-containers-m .toggle-container .toggle-switch .switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.toggle-containers-m .toggle-container .toggle-switch .switch-slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: 0.4s;
    transition: 0.4s;
}

.toggle-containers-m .toggle-container .toggle-switch input:checked + .switch-slider {
    background-color: #2196F3;
}

.toggle-containers-m .toggle-container .toggle-switch input:focus + .switch-slider {
    box-shadow: 0 0 1px #2196F3;
}

.toggle-containers-m .toggle-container .toggle-switch input:checked + .switch-slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.toggle-containers-m .toggle-container .toggle-switch .switch-slider {
    border-radius: 34px;
}

.toggle-containers-m .toggle-container .toggle-switch .switch-slider:before {
    border-radius: 50%;
}

.time-of-week {
    text-transform: capitalize;
}

.table-wrapper {
    overflow-x: auto;

}
.table-wrapper-routes .fake-scrollbar {
    overflow-x: auto;
    overflow-y: hidden;
    height: 20px;
}

@media (max-width: 768px) {
    .tabs.gtfs-tables {
        max-width: 100%;
        display: flex;
    }

}



/* Style the tab content */
.tabcontent.gtfs-tables {
    display: none;
    padding: 0;
    border: 3px solid;
}
.tabcontent.gtfs-tables.active {
    display: block;
}


.tabs.gtfs-tables .tablinks {
    border: 3px solid #001641;
    border-bottom: 0;
    background: transparent;
    color: #001641;
    text-align: center;
    padding: 20px 25px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    border-radius: 0;
}

.tabs.gtfs-tables .tablinks.active {
    color: #fff;
    background: #001641;
}
.hidden-column {
    display: none;
}
