* { padding: 0; margin: 0; }

@font-face {
    font-family: 'Roboto', sans-serif;
    src: url('https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i');
}

ul,
li {
    margin: 0;
    padding: 0;
}


@media (prefers-color-scheme: dark) {
    body {
        color: #eee;
        background: #121212;
    }

    a {
        color: white;
    }

    a:link {
        color: lightblue;
        background-color: transparent;
        text-decoration: underline;
    }

    a:visited {
        color: lightblue;
        background-color: transparent;
        text-decoration: underline;
    }

    a:hover {
        color: darkcyan;
        background-color: transparent;
        text-decoration: underline;
    }

    a:active {
        color: darkcyan;
        background-color: transparent;
        text-decoration: underline;
    }

    .menu {
        border-radius: 8px;
        background-color: lightgrey;
        height: fit-content;
        color: black;
    }

    .menu a:link,
    .menu a:visited {
        color: darkcyan;
        background-color: transparent;
        text-decoration: underline;
    }

    .menu a:hover {
        color: blue;
        background-color: transparent;
        text-decoration: underline;
    }

    .menu a:active {
        color: yellow;
        background-color: transparent;
        text-decoration: underline;
    }

    .menu-colors {
        background-color: lightgrey;
        color: black;
    }

    .menu-colors a:link,
    .menu-colors a:visited {
        color: darkcyan;
        text-decoration: underline;
    }

    .menu-colors a:hover {
        color: blue;
        text-decoration: underline;
    }

    .menu-colors a:active {
        color: yellow;
        text-decoration: underline;
    }

    pre code {
        background-color: #eee;
        color: black;
        border: 2px solid #999;
        display: block;
        padding: 1px;
        width: 100%;
    }

    ul,
    .collapsible {
        color: white;
        cursor: pointer;
        padding-top: 10px;
        padding-bottom: 10px;
        width: 100%;
        float: center;
        outline: none;
        font-size: 125%;
        background-color: transparent;
    }

    .collapsible-outline {
        border: 2px;
        border-style: solid;
        border-radius: 10px;
        border-color: white;
    }

    .collapsible-outline-2 {
        border: 0;
        border-style: none;
        border-radius: 10px;
    }

    .collapsible:hover {
        background-color: slategray;
    }

    .collapsible:after {
        content: url("/img/arrow-down-white.png");
        margin-left: 5px;
        float: center;
        background-color: transparent;
    }

    .active:after {
        content: url("/img/arrow-up-white.png");
        margin-left: 5px;
    }
}

@media (prefers-color-scheme: light) {
    body {
        color: #121212;
        background: #eee;
    }

    a {
        color: white;
    }

    a:link,
    a:visited {
        color: darkcyan;
        background-color: transparent;
        text-decoration: underline;
    }

    a:hover {
        color: blue;
        background-color: transparent;
        text-decoration: underline;
    }

    a:active {
        color: yellow;
        background-color: transparent;
        text-decoration: underline;
    }

    .menu {
        border-radius: 8px;
        background-color: gray;
        height: fit-content;
        color: white;
    }

    .menu a:link,
    .menu a:visited {
        color: lightcyan;
        background-color: transparent;
        text-decoration: underline;
    }

    .menu a:hover {
        color: blue;
        background-color: transparent;
        text-decoration: underline;
    }

    .menu a:active {
        color: yellow;
        background-color: transparent;
        text-decoration: underline;
    }


    .menu-colors {
        background-color: gray;
        color: white;
    }

    .menu-colors a:link,
    .menu-colors a:visited {
        color: lightcyan;
        background-color: transparent;
        text-decoration: underline;
    }

    .menu-colors a:hover {
        color: blue;
        background-color: transparent;
        text-decoration: underline;
    }

    .menu-colors a:active {
        color: yellow;
        background-color: transparent;
        text-decoration: underline;
    }


    pre code {
        background-color: darkslategray;
        color: white;
        border: 2px solid #999;
        display: block;
        padding: 1px;
        width: 100%;
    }

    .collapsible {
        color: black;
        cursor: pointer;
        width: 100%;
        float: center;
        outline: none;
        font-size: 125%;
        background-color: transparent;
    }

    .collapsible-outline {
        border: 2px;
        border-style: solid;
        border-radius: 10px;
        border-color: black;
    }

    .collapsible-outline-2 {
        border: 0;
        border-style: none;
        border-radius: 10px;
    }

    .collapsible:hover {
        background-color: silver;
    }

    .collapsible:after {
        content: url("/img/arrow-down-black.png");
        margin-left: 5px;
        color: black;
        float: center;
        background-color: transparent;
    }

    .active:after {
        content: url("/img/arrow-up-black.png");
        margin-left: 5px;
    }

}

.column {
    float: left;
    width: 50%;
}

.full-width {
    padding-bottom: 10px;
}

.collapsible.active {
    background-color: transparent;
}

.content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: transparent;
    margin-right: auto;
    margin-left: auto;
    padding-inline-start: 0;
}

/* MAIN CSS */

body {
    font-size: 120%;
    padding-bottom: 60px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.center {
    text-align: center;
}

h1,
h2,
h3,
h4,
.site-nav {
    font-size: max(1.5vw, 1.10rem);
    margin: 2px;
}

.site-nav a:link,
.site-nav a:visited {
    color: white;
    background-color: transparent;
    text-decoration: underline;
}

.site-nav a:hover {
    color: lightblue;
    background-color: transparent;
    text-decoration: underline;
}

.site-nav a:active {
    color: lightblue;
    background-color: transparent;
    text-decoration: underline;
}

.site-title-a {
    font-size: min(5vw, 3rem);
    text-decoration: underline;
}

.site-title-b {
    font-size: min(5vw, 2rem);
    text-decoration: underline;
}

.site-title-c {
    font-size: min(3vw, 1.2rem);
    text-align: center;
}

.intro {
    font-size: 130%;
    text-decoration: none;
    text-align: left;
}

.sub-intro {
    font-size: 125%;
    text-decoration: none;
}

.header-title-a {
    color: white;
    font-size: min(6vw, 4rem);
}

.header-quote {
    font-size: max(1.25vw, 1.25rem);
    text-decoration: none;
    color: white;
}

.header-quote-smaller {
    font-size: max(1vw, 1rem);
    text-decoration: none;
}

.column-social-icons {
    float: center;
    width: 50px;
    height: 50px;
    padding: 10px;
    align-items: center;
    align-content: center;
}

.address-book-badge {
    float: center;
    width: 35%;
    align-items: center;
    align-content: center;
}

.transit-stats-year {
    font-size: 130%;
    font-weight: bold;
    text-decoration: none;
}

.transit-stats-agency {
    font-size: 120%;
    text-decoration: none;
    text-align: center;
}

.transit-stats-agency-sub {
    font-size: 110%;
    text-decoration: none;
    text-align: center;
}

nav.desktop {
    display: inline;
}

nav.mobile {
    display: none;
}

header {
    display: inline-block;
    height: 130%;
    background-image: url("/img/header.jpg");
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    font-size: 120%;
    color: white;
}

.powerbi-frame {
    height: 900px;
    width: 100%;
}


.cta-table {
    align-content: left;
    text-align: center;
    font-size: x-large;
    margin: auto;
    width: 50%;
}

@media only screen and (max-width: 768px) {
    nav.desktop {
        display: none;
    }

    nav.mobile {
        display: inline;
    }

    header {
        background-position: top center;
        background-size: contain;
    }

    .powerbi-frame {
        height: 400px;
        width: 100%;
    }


    .cta-table {
        align-content: center;
        text-align: center;
        font-size: x-large;
        margin: auto;
        width: 100%;
    }
    
}

.menubtn {
    background-color: lightgrey;
    color: black;
    font-weight: bold;
    padding: 10px;
    font-size: max(1.25vw, 1rem);
    border: none;
    border-radius: 10px;
    text-decoration: underline;
}

.about-menubtn {
    background-color: darkgray;
    color: black;
    font-weight: bold;
    padding: 10px;
    font-size: max(1.25vw, 1rem);
    border: none;
    border-radius: 10px;
    text-decoration: underline;
}

/* Change color of dropdown links on hover */
.menubtn:hover {
    background-color: lightslategray;
    border-radius: 10px;
    color: black;
    text-decoration: underline;
}

/* Dropdown Button */
.dropbtn {
    background-color: lightgrey;
    border-radius: 10px;
    color: black;
    font-weight: bold;
    padding: 10px;
    font-size: max(1.25vw, 1rem);
    border: none;
    text-decoration: underline;
}

.dropbtn:hover {
    background-color: lightslategray;
    border-radius: 10px;
    color: black;
    text-decoration: underline;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    border-radius: 10px;
    position: relative;
    display: inline-block;
    color: black;
    text-decoration: underline;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    font-size: max(1vw, 1rem);
    border-radius: 10px;
    display: none;
    position: absolute;
    background-color: lightgrey;
    color: black;
    min-width: 160px;
    width: 100%;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 1;
    text-decoration: underline;
}

/* Links inside the dropdown */
.dropdown-content a,
.dropdown-content a:visited {
    border-radius: 10px;
    color: black;
    background-color: lightgrey;
    padding: 12px 12px;
    display: block;
    text-decoration: underline;
}

/* Change color of dropdown links on hover */
.dropbtn a:hover {
    background-color: lightslategray;
    color: black;
    text-decoration: underline;
    font-weight: bold;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: lightslategray;
    font-weight: bold;
    color: black;
    text-decoration: underline;
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
    color: black;
    background-color: lightgrey;
}

.custom-select {
    position: relative;
    font-family: Arial;
}

.custom-select select {
    display: none;
    /*hide original SELECT element: */
}

.select-selected {
    background-color: DodgerBlue;
}

/* Style the arrow inside the select element: */
.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,
.select-selected {
    color: #ffffff;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
}

/* Style items (options): */
.select-items {
    position: absolute;
    background-color: DodgerBlue;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.transit-button {
    width: 50%;
}

.transit-button-container {
    display: flex;
    justify-content: center;
}

.incorrect-user-passwd {
    display: none;
    border-radius: 5px;
    padding: 5px;
    margin-top: 5px;
    background-color: #FFCCCC;
    color: black;
    font-weight: bold;
    justify-content: center;
    text-align: center;
    font-size: 90%;
}

.start-hidden {
    display: none;
}


.cta-table tr {
    height: 50px;
}


.cta-Red-line {
    background-color: #c60c30;
    color: #ffffff;
}

.cta-Blue-line {
    background-color: #00a1de;
    color: #ffffff;
}

.cta-Blue-line-inverted {
    background-color: #ffffff;
    color: #00a1de;
}

.cta-Brown-line {
    background-color: #62361b;
    color: #ffffff;
}

.cta-Green-line {
    background-color: #009b3a;
    color: #ffffff;
}

.cta-Green-line-inverted {
    background-color: #009b3a;
    color: #ffffff;
}

.cta-Orange-line {
    background-color: #f9461c;
    color: #ffffff;
}

.cta-Purple-line {
    background-color: #522398;
    color: #ffffff;
}

.cta-Pink-line {
    background-color: #e27ea6;
    color: #ffffff;
}

.cta-Yellow-line {
    background-color: #f9e300;
    color: #000000;
}