/*
Theme Name: County Connection
Author: Trillium Transit
Author URI: http://trilliumtransit.com
Description: Template for County Connection
Text Domain: transit-base-template
Tags:

This is a specialty theme designed for public transit agencies, to help
develop modular, accessible sites, with custom post types and php utilities
to extract GTFS data. It complements the transit custom posts plugin. This theme
is meant to be modified and customized to fit an agency's needs.

Transit Base Theme is built on Underscores http://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
input,
select,
textarea {
  color: #242a41;
  font-family: Ubuntu, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.45;
}

h2 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 23.2px;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 11.6px 23.2px;
  color: #242a41;
}

address {
  margin: 0 0 23.2px;
}

pre {
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 34.8px;
  max-width: 100%;
  overflow: auto;
  padding: 23.2px;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  background: #fff;
}

blockquote,
q {
  quotes: """";
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}

hr {
  background-color: #868996;
  border: 0;
  height: 1px;
  margin-bottom: 23.2px;
}

ul,
ol {
  margin: 23.2px 0 23.2px 34.8px;
}

ul {
  list-style: disc;
  padding: 0;
}

ol {
  list-style: decimal;
}

li {
  margin-bottom: 5.8px;
}

li>ul,
li>ol {
  margin-bottom: 0;
  margin-top: 0;
  margin-left: 23.2px;
}

dt {
  font-weight: bold;
}

dd {
  margin: 0 23.2px 23.2px;
}

.entry-content img,
.entry-content svg {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
  width: 100%;
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

.hidden {
  display: none;
}

.icon {
  display: inline-block;
}

.icon svg {
  position: relative;
  fill: #242a41;
  width: auto;
}

.icon-small svg {
  height: 16px;
  top: 2px;
  margin-right: 4px;
}

.icon-medium svg {
  height: 20px;
  top: 3px;
  margin-right: 6px;
}

.icon-large svg {
  height: 25px;
  top: 4px;
  margin-right: 8px;
}

.content-wrap {
  padding: 23.2px 0;
  position: relative;
}

table {
  margin: 0 0 23.2px;
  width: 100%;
}

.wp-block-button {
  color: #242a41;
}

button,
.btn,
.wp-block-button__link {
  border: none;
  background: #ffb944;
  color: #242a41;
  padding: 8px 12px;
  -webkit-transition: background 0.1s linear;
  transition: background 0.1s linear;
  border-radius: 0;
}

a.btn,
a.wp-block-button__link {
  text-decoration: none;
}

wp-block-button__link:active,
.wp-block-button__link:focus,
.wp-block-button__link:hover,
.wp-block-button__link:visited {
  color: initial;
}

button:hover,
.btn:hover,
.wp-block-button__link:hover {
  color: #242a41;
  background: #ffaf2b;
}

button.btn-black,
.btn.btn-black {
  background: transparent;
  color: #242a41;
  border: 1px solid #242a41;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: #d31b34;
}

a:hover,
a:focus,
a:active {
  color: #ffb944;
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation .menu-toggle {
  position: absolute;
  right: 15px;
  top: 10px;
  z-index: 4;
}

.main-navigation ul {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation ul li:hover>ul,
.main-navigation ul li.focus>ul {
  left: auto;
}

.main-navigation .nav-menu {
  display: none;
  z-index: 3;
  position: absolute;
  top: 66px;
  left: 0;
  right: 0;
  border-bottom: 3px solid #d31b34;
}

.main-navigation .nav-menu>li {
  margin-bottom: 0;
}

.main-navigation .nav-menu>li>a,
.main-navigation .nav-menu>li .menu>li>a {
  display: block;
  color: #868996;
  background: #fff;
  padding: 15px 15px;
  border-bottom: 1px solid #d3dbdc;
}

.main-navigation .nav-menu>li .menu>li>a {
  padding-left: 30px;
}

.main-navigation .nav-menu>li:hover>a,
.main-navigation .nav-menu>li.focus>a {
  color: #d31b34;
}

.main-navigation .nav-menu>li.current-menu-item>a {
  color: #d31b34;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

.submenu {
  display: none;
  clear: both;
  background: #fff;
  right: 0;
  left: 0;
  top: 66px;
  z-index: 1;
}

.submenu.active {
  display: block;
}

.submenu .submenu-desktop {
  display: none;
}

.submenu h2,
.submenu h3 {
  font-family: 'Merriweather', serif;
  font-weight: bold;
}

.submenu .menu {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.submenu .menu li {
  margin-bottom: 0;
}

.submenu .menu li a {
  color: #868996;
}

.submenu .menu li:hover>a,
.submenu .menu li.focus>a {
  color: #d31b34;
}

@media screen and (min-width: 992px) {
  .menu-toggle {
    display: none;
  }

  .main-navigation {
    margin: 0;
  }

  .main-navigation .nav-menu {
    display: block;
    position: static;
    float: right;
    padding-top: 0;
    margin: 0;
    border-bottom: none;
  }

  .main-navigation .nav-menu .page-item-submenu {
    position: relative;
  }

  .main-navigation .nav-menu>li {
    float: left;
    border-top: 3px solid #fff;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
    padding: 14px 11px 20px;
  }

  .main-navigation .nav-menu>li a,
  .main-navigation .nav-menu>li .menu>li>a {
    padding: 0;
    border-bottom: none;
  }

  .main-navigation .nav-menu>li a .fa-chevron-down,
  .main-navigation .nav-menu>li .menu>li>a .fa-chevron-down {
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }

  .main-navigation .nav-menu>li.active {
    border-top-color: #d31b34;
    border-right-color: #d3dbdc;
    border-left-color: #d3dbdc;
    background: #fff;
  }

  .main-navigation .nav-menu>li.active a .fa-chevron-down {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .main-navigation .nav-menu>li:last-child a {
    border-bottom: none;
  }

  .submenu {
    border-bottom: 3px solid #d31b34;
    position: absolute;
    padding: 23.2px 0;
  }

  .submenu.submenu-small {
    position: absolute;
    width: 300px;
    right: -1px;
    border-left: 1px solid #d3dbdc;
    border-right: 1px solid #d3dbdc;
    top: 57px;
    left: auto;
    padding: 0;
  }

  .submenu .submenu-desktop {
    display: block;
  }

  .submenu .submenu-mobile {
    display: none;
  }

  .submenu .fare-table-wrapper {
    height: 425px;
  }

  .submenu .menu {
    padding: 0 15px 15px;
  }

  .submenu .menu li {
    padding: 9px 0;
  }
}

@media screen and (min-width: 1200px) {
  .submenu .fare-table-wrapper {
    height: 394px;
  }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 0 0 23.2px;
  overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #242a41;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.content-area:before,
.content-area:after,
.comment-content:before,
.comment-content:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.content-area:after,
.comment-content:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  /* Make sure select elements fit in widgets. */
}

.widget select {
  max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Site-wide elements
--------------------------------------------------------------*/
.footer {
  clear: both;
  background: #ffb944;
  padding-bottom: 20px;
}

.footer a {
  color: #242a41;
}

.footer .menu {
  list-style-type: none;
  margin: 0;
}

@media screen and (min-width: 768px) {

  .page .content-area,
  .post-type-archive-meeting .content-area,
  .single-meeting .content-area,
  .single-procurement .content-area {
    float: right;
    margin: 0 0 0 -25%;
    width: 100%;
  }

  .page .content-area:last-child .site-main,
  .post-type-archive-meeting .content-area:last-child .site-main,
  .single-meeting .content-area:last-child .site-main,
  .single-procurement .content-area:last-child .site-main {
    margin: 0;
  }

  .page .site-main,
  .post-type-archive-meeting .site-main,
  .single-meeting .site-main,
  .single-procurement .site-main {
    margin: 0 0 0 25%;
  }

  .page .sidebar,
  .post-type-archive-meeting .sidebar,
  .single-meeting .sidebar,
  .single-procurement .sidebar {
    float: left;
    overflow: hidden;
    width: 25%;
  }
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
#header {
  border-bottom: 5px solid #ffb944;
  height: 66px;
  position: relative;
}

#header .site-branding {
  position: absolute;
  bottom: 15px;
  z-index: 1;
}

#header .site-branding .site-title {
  margin: 0;
}

#header .site-branding .site-title img {
  width: auto;
  height: 23px;
}

#header .site-branding-background {
  position: absolute;
  bottom: -1px;
  margin-left: 130px;
  z-index: 0;
  height: 24px;
}

.header-red-border {
  margin-top: 5px;
  border-bottom: 5px solid #d31b34;
}

@media screen and (min-width: 321px) {
  #header .site-branding .site-title img {
    height: 27px;
  }

  #header .site-branding-background {
    margin-left: 200px;
  }
}

@media screen and (min-width: 768px) {
  #header .site-branding-background {
    margin-left: 200px;
    height: 48px;
  }
}

@media screen and (min-width: 992px) {
  #header .site-branding-background {
    height: 24px;
  }
}

@media screen and (min-width: 1200px) {
  #header .site-branding-background {
    margin-left: 200px;
    height: 48px;
  }
}

/*--------------------------------------------------------------
## Homepage
--------------------------------------------------------------*/
/*******************
# Static Front Page
********************/
.homepage-tool-background {
  background-image: url("images/homepage-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0;
  margin-bottom: 40px;
}

.homepage-tool-container {
  max-width: 700px;
  margin: 0 8px;
  background: #fff;
}

.homepage-tool-container .homepage-tool-controls {
  background: #d3dbdc;
  overflow: hidden;
}

.homepage-tool-container .homepage-tool-control {
  width: 33.3333%;
  float: left;
  background: #d3dbdc;
  border-top: 3px solid #d3dbdc;
  text-align: center;
  padding: 12px 4px;
  cursor: pointer;
  font-size: 14px;
}

.homepage-tool-container .homepage-tool-control.active {
  color: #d31b34;
  background: #fff;
  border-top-color: #d31b34;
}

.homepage-tool-container .homepage-tool-control .fas {
  display: block;
}

.homepage-tool-container .homepage-tool {
  display: none;
  clear: both;
  padding: 23.2px;
}

.homepage-tool-container .homepage-tool.active {
  display: block;
}

.homepage-tool-container .homepage-tool h2,
.homepage-tool-container .homepage-tool h3 {
  font-family: 'Merriweather', serif;
  font-weight: bold;
}

.homepage-tool-container .homepage-tool input[type="text"] {
  width: 100%;
  padding: 4px 6px;
  border-radius: 0;
  border: none;
  border-bottom: 3px solid #868996;
}

.homepage-tool-container .homepage-tool input[type="text"]:focus {
  border-bottom-color: #ffb944;
}

.homepage-tool-container .homepage-tool input[type="text"].bordered {
  border: 1px solid #868996;
}

.homepage-tool-container .homepage-tool input[type="text"].bordered:focus {
  border: 1px solid #868996;
}

#trip-planner {
  max-width: 440px;
  min-width: 270px;
  margin-left: auto;
  margin-right: auto;
}

#trip-planner .form-row {
  margin-bottom: 11.6px;
}

#trip-planner .form-row label {
  display: block;
}

#trip-planner .form-row button.crosshair-icon {
  font-size: 13.6px;
  font-size: 0.85rem;
  float: right;
  border: none;
  background: transparent;
  color: #242a41;
}

#trip-planner .form-row button.crosshair-icon:hover {
  color: #ffb944;
}

#trip-planner .form-row button.crosshair-icon:hover svg {
  fill: #ffb944;
}

#trip-planner #default-settings div>div {
  display: inline-block;
}

#trip-planner #default-settings button {
  font-size: 13.6px;
  font-size: 0.85rem;
  background: transparent;
  color: #868996;
  border: 1px solid #868996;
  padding: 2px 4px;
  margin-left: 20px;
}

#trip-planner #ftime,
#trip-planner #fdate {
  display: inline-block;
  text-align: center;
}

#trip-planner #ftime {
  width: 90px;
  margin-right: 6px;
}

#trip-planner #fdate {
  width: 110px;
}

#bus-tracker {
  max-width: 440px;
  min-width: 270px;
  margin-left: auto;
  margin-right: auto;
}

#bus-tracker .real-time-arrival-label {
  font-size: 12px;
  font-weight: bold;
}

#bus-tracker .real-time-arrival-prediction {
  border-top: 1px solid #cccccc;
  padding: 8px 0;
}

#bus-tracker .results-time {
  font-size: 12px;
  color: #272727;
}

.homepage-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
  border-radius: 6px;
  overflow: hidden;
  height: 200px;
  background-size: auto 100px;
  background-repeat: no-repeat;
  background-position: top 35% center;
}

.homepage-box .homepage-box-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 10px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  font-family: 'Merriweather', serif;
  font-weight: bold;
}

.homepage-box:hover {
  text-decoration: none;
}

.homepage-box.homepage-box-wide {
  height: auto;
}

.homepage-box.homepage-box-wide .homepage-box-text {
  background-color: #8EC44B;
  text-align: left;
  font-size: 20px;
  padding: 10px 15px;
  position: relative;
}

.btn-homepage {
  margin-bottom: 11.6px;
  white-space: normal;
  line-height: 1.25;
}

.homepage-news {
  -webkit-box-shadow: 0 1px 4px 0 rgba(13, 20, 45, 0.5);
  box-shadow: 0 1px 4px 0 rgba(13, 20, 45, 0.5);
  border-radius: 5px;
  margin: 11.6px 0 23.2px;
}

.homepage-news .homepage-news-item {
  background: #FFFFFF;
  -webkit-box-shadow: inset 0 -1px 0 0 #D8D8D8;
  box-shadow: inset 0 -1px 0 0 #D8D8D8;
  padding: 10px 15px;
}

.homepage-news .homepage-news-item h4 {
  margin-bottom: 3px;
  font-size: 20px;
  position: relative;
  padding-right: 30px;
}

.homepage-news .homepage-news-item h4 .expand-control {
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  cursor: pointer;
}

.homepage-news .homepage-news-item .news-item-title {
  color: #242a41;
}

.homepage-news .homepage-news-item .news-item-date {
  font-size: 11px;
  padding-bottom: 3px;
}

.homepage-news .homepage-news-item .news-item-excerpt {
  display: none;
}

.homepage-news .homepage-news-item .news-item-excerpt p:last-of-type {
  margin-bottom: 0;
}

.homepage-news .homepage-news-item.open h4 .expand-control {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media screen and (min-width: 375px) {
  .homepage-tool-container .homepage-tool-control {
    font-size: 16px;
  }
}

@media screen and (min-width: 400px) {
  .homepage-box .homepage-box-text {
    font-size: 16px;
  }
}

@media screen and (min-width: 578px) {
  .homepage-box .homepage-box-text {
    font-size: 18px;
  }

  .homepage-tool-container .homepage-tool-control .fas {
    display: inline-block;
  }
}

@media screen and (min-width: 716px) {
  .homepage-tool-container {
    margin: 0 auto;
  }
}

@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
  .homepage-background {
    background-image: url("images/homepage-background@2x.jpg");
  }
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.page-title-huge {
  font-size: 24px;
}

.entry-header h1 {
  margin-top: 0;
}

.sticky {
  display: block;
}

.hentry {
  margin: 0 0 23.2px;
}

.byline,
.updated:not(.published) {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 23.2px 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 23.2px;
}

.excerpt-more {
  padding-left: 10px;
}

article.type-post {
  -webkit-box-shadow: 0 1px 4px 0 rgba(13, 20, 45, 0.5);
  box-shadow: 0 1px 4px 0 rgba(13, 20, 45, 0.5);
  border-radius: 5px;
  margin: 23.2px 0;
  padding: 11.6px 23.2px 23.2px;
}

article.type-post .entry-title {
  margin: 0 0 4px;
}

article.type-post .posted-on {
  color: #242a41;
  font-size: 12px;
}

.tag-link {
  display: inline-block;
  padding: 0 12px;
  height: 26px;
  border-radius: 13px;
  line-height: 26px;
  background: #3452ac;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 4px;
}

.tag-link a {
  color: #fff;
}

.tag-link a:hover {
  text-decoration: none;
}

.tag-link:hover {
  background: #283f85;
}

/* Board of Directors */
.bod {
  margin: 5px 5px 15px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .page-title-huge {
    font-size: 50px;
  }

  /* Board of Directors */
  .bod {
    min-height: 262px;
    width: 175px;
    float: left;
    margin: 5px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
## Sidebar
--------------------------------------------------------------*/
.sidebar-menu-wrapper {
  -webkit-box-shadow: 0 1px 4px 0 rgba(13, 20, 45, 0.5);
  box-shadow: 0 1px 4px 0 rgba(13, 20, 45, 0.5);
  border-radius: 5px;
  margin-top: 23.2px;
  padding: 11.6px 15px 10px;
}

.sidebar-menu-wrapper a {
  color: #242a41;
}

.sidebar-menu-wrapper a:hover {
  text-decoration: none;
  color: #d31b34;
}

.sidebar-menu-wrapper h2 {
  font-size: 22px;
  margin-bottom: 0.5em;
  font-family: 'Merriweather', serif;
  font-weight: bold;
}

.sidebar-menu-wrapper .sidebar-menu {
  list-style-type: none;
  margin: 0;
  font-size: 16px;
}

.sidebar-menu-wrapper .sidebar-menu li {
  padding: 12px 0;
  border-top: 1px solid #cccccc;
  margin: 0;
}

.sidebar-menu-wrapper .sidebar-menu li:first-child {
  border-top: none;
}

.sidebar-menu-wrapper .sidebar-menu li.current-menu-item,
.sidebar-menu-wrapper .sidebar-menu li.current_page_item {
  border-left: 2px solid #d31b34;
  font-weight: bold;
  padding-left: 6px;
}

@media screen and (min-width: 768px) {
  .sidebar-menu-wrapper {
    margin: 63px 30px 23.2px 2px;
  }

  .sidebar-menu-wrapper h2 {
    font-size: 18px;
    margin-bottom: 1em;
  }

  .sidebar-menu-wrapper .sidebar-menu {
    font-size: 12px;
  }

  .sidebar-menu-wrapper .sidebar-menu li {
    padding: 0;
    margin-bottom: 12px;
    border-top: none;
  }
}

/*--------------------------------------------------------------
## Routes
--------------------------------------------------------------*/
.route-circle {
  position: relative;
  margin-right: 5px;
  font-style: normal;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  margin-right: 15px;
  border: 1px solid #fff;
  color: #fff;
  flex-shrink: 0;
}

.route-circle:hover {
  color: #fff;
  text-decoration: none;
}

.route-circle-small {
  font-size: 13px;
  width: 22px;
  height: 22px;
  line-height: 20px;
  border-radius: 11px;
}

.route-circle-medium {
  font-size: 16px;
  width: 32px;
  height: 32px;
  line-height: 28px;
  border-radius: 16px;
}

.route-circle-large {
  font-size: 19px;
  width: 44px;
  height: 44px;
  line-height: 40px;
  border-radius: 22px;
}

.route-sidebar {
  -webkit-box-shadow: 0 1px 4px 0 rgba(13, 20, 45, 0.5);
  box-shadow: 0 1px 4px 0 rgba(13, 20, 45, 0.5);
  border-radius: 5px;
  padding: 11.6px 15px 10px;
  margin-bottom: 23.2px;
}

.route-sidebar h2 {
  margin-bottom: 0;
}

.route-sidebar .sidebar-section-label {
  border: none;
  padding: 0;
}

.route-sidebar .sidebar-section-label legend {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0.5rem 0 0.25rem;
}

.route-sidebar .form-check {
  margin-bottom: 0.25rem;
}

.route-sidebar .form-check-input {
  margin-top: .1rem;
}

.route-sidebar .form-check-input:checked+label {
  font-weight: bold;
}

.route-list-item {
  clear: both;
  padding: 8px;
}

.route-list-item.even-route {
  background-color: #efefef;
}

.route-list-item .route-circle {
  float: left;
}

.route-list-item h2 {
  font-size: 20px;
}

.route-list-item h2 a {
  color: #242a41;
}

.route-list-item h2 a:hover {
  text-decoration: none;
  color: #d31b34;
}

.route-list-item .route-list-stat {
  clear: both;
  font-weight: bold;
}

.route-list-item .route-list-tag {
  padding: 6px 12px;
  border-radius: 4px;
  background: #3452ac;
  display: inline-block;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 5px;
  margin-right: 5px;
}

.route-list-item .route-list-free {
  background: #4cb179;
}

.route-list-item .route-list-suspended {
  background: #d31b34;
}

.single-route .page-header {
  display: flex;
  justify-content: center;
  padding-top: 0.67em
}

.single-route .route-circle {
  margin-right: 15px;
  flex-shrink: 0;
}

.single-route .page-title-huge {
  margin: 0;
}

.single-route .route-stats {
  text-align: center;
  margin-bottom: 5px;
}

.single-route .route-stats .route-stat {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 4px;
  background: #868996;
  display: inline-block;
  color: #ffffff;
  font-weight: bold;
  margin: 0 8px 10px;
}

.single-route .route-stats .route-period {
  background: #3452ac;
}

.single-route .route-stats .route-free {
  background: #4cb179;
}

.single-route .route-stats .route-suspended {
  background: #d31b34;
}

.single-route .route-links {
  text-align: center;
}

.single-route .route-links .route-map-btn {
  margin-bottom: 20px;
}

.single-route .route-links .map-select {
  display: inline-block;
  margin: 0 0 0 20px;
}

.single-route .route-links .map-select select {
  font-size: 25px;
}

.single-route .route-links .map-select label {
  display: block;
  text-align: left;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 0;
}

.single-route .route-major-stops {
  margin: 0 auto;
  max-width: 600px;
  text-align: center;
  margin-bottom: 5px;
}

.single-route .timetable-page {
  margin-top: 11.6px;
}

.single-route .timetable-page .timetable-group {
  margin-top: 23.2px;
  -webkit-box-shadow: 0 1px 4px 0 rgba(13, 20, 45, 0.5);
  box-shadow: 0 1px 4px 0 rgba(13, 20, 45, 0.5);
}

.single-route .timetable-page .timetable-group .timetable-menu {
  margin-bottom: 10px;
  background: #d3dbdc;
}

.single-route .timetable-page .timetable-group .timetable-menu h3 {
  padding-top: 10px;
}

.single-route .timetable-page .timetable-group .timetable-menu .col-md-4 {
  border-top: 3px solid transparent;
}

.single-route .timetable-page .timetable-group .timetable-menu .timetable-menu-link {
  text-align: center;
  display: block;
  padding: 0 6px 6px;
  color: #242a41;
}

.single-route .timetable-page .timetable-group .timetable-menu .active {
  border-top-color: #d31b34;
  background: #fff;
}

.single-route .timetable-page .timetable-group .timetable-menu .active .timetable-menu-link {
  color: #d31b34;
}

.single-route .timetable-page .timetable-group .timetable {
  display: none;
}

.single-route .timetable-page .timetable-group .timetable.active {
  display: block;
}

.single-route .timetable-page .timetable-group .timetable .table-container {
  overflow-x: scroll;
}

.single-route .timetable-page .timetable-group .timetable .table-container::-webkit-scrollbar {
  -webkit-appearance: none;
  height: 8px;
}

.single-route .timetable-page .timetable-group .timetable .table-container::-webkit-scrollbar-track {
  background-color: rgba(57, 57, 57, 0.2);
  border-radius: 4px;
}

.single-route .timetable-page .timetable-group .timetable .table-container::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(156, 156, 156, 0.8);
}

.single-route .timetable-page .timetable-group .timetable .stop-time {
  text-align: center;
}

.single-route .timetable-page .timetable-group .timetable .stop-header {
  text-align: center;
}

.single-route .timetable-page .timetable-group .timetable .run-footer {
  text-align: center;
}

.single-route .timetable-page .timetable-group .timetable table {
  margin-bottom: 0;
}

.single-route .timetable-page .timetable-group .timetable table thead tr {
  background: #ffb944;
}

.single-route .timetable-page .timetable-group .timetable table tbody tr:nth-child(even) {
  background: #e8ecfe;
}

.single-route .timetable-page .timetable-group .timetable table td,
.single-route .timetable-page .timetable-group .timetable table th {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
}

.single-route .timetable-page .timetable-group .timetable .timetable-bottom {
  padding: 0.5em 0;
}

.single-route .timetable-page .map {
  height: 400px;
  margin-top: 23.2px;
}

.major-stop {
  display: inline-block;
  padding: 0 6px;
  margin-bottom: 8px;
}

.major-stop.connection-stop {
  padding: 3px 6px;
  border-radius: 4px;
  background: #ffb944;
}

.map .route-item {
  display: flex;
  align-items: center;
  line-height: 1;
  color: #242a41;
}

.map .route-color-swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  text-align: center;
  line-height: 26px;
  font-size: 14px;
}

.map .popup-title {
  margin: 0 20px 5px 0;
  font-size: 16px;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .route-sidebar h2 {
    font-size: 22px;
  }

  .route-list-item {
    padding: 8px 15px;
  }

  .route-list-item h2 {
    font-size: 36px;
  }

  .route-list-item .route-circle {
    margin-top: 6px;
  }

  .route-list-item .route-list-stat {
    display: inline-block;
    margin-right: 30px;
    clear: none;
  }

  .route-list-item .route-list-item-info {
    margin-left: 70px;
  }

  .single-route .route-circle {
    margin-right: 25px;
    margin-top: 10px;
  }

  .single-route .timetable-page .timetable-group .timetable-menu h3 {
    margin: 7px 0 17px 20px;
  }

  .single-route .timetable-page .timetable-group .timetable-menu .col-md-4 {
    margin-right: 4px;
  }

  .single-route .timetable-page .timetable-group .timetable-menu .timetable-menu-link {
    padding: 19px 10px;
    font-size: 20px;
    font-weight: bold;
  }
}

/*--------------------------------------------------------------
## Fares
--------------------------------------------------------------*/
.clipper-fares {
  background: #caeafc;
}

.cash-fares {
  background: #dff2e3;
}

.pass-fares {
  background: #fef0d9;
}

.tablepress.fare-table {
  line-height: 1;
}

.tablepress.fare-table thead th {
  background: none;
  border-bottom: none;
}

.tablepress.fare-table tbody td {
  border-top: none;
}

.tablepress.fare-table tbody td:nth-child(2) {
  min-width: 58px;
}

.tablepress.fare-table a {
  color: #242a41;
}

@media screen and (min-width: 768px) {
  .tablepress.fare-table {
    height: 394px;
  }
}

/*--------------------------------------------------------------
## Meetings
--------------------------------------------------------------*/
.meeting-archive {
  -webkit-box-shadow: 0 1px 4px 0 rgba(13, 20, 45, 0.5);
  box-shadow: 0 1px 4px 0 rgba(13, 20, 45, 0.5);
  border-radius: 5px;
  margin: 23.2px 0;
  padding: 11.6px 23.2px;
}

.meeting-archive.open .entry-title .fa-chevron-down {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.meeting-archive.initially-open .meeting-archive-content {
  display: block;
}

.meeting-archive .meeting-archive-content {
  display: none;
  padding: 23.2px 0 11.6px;
}

.meeting-archive .meeting-archive-content p:last-of-type {
  margin-bottom: 0;
}

.meeting-archive .entry-title {
  margin: 0;
  position: relative;
  padding-right: 35px;
  cursor: pointer;
}

.meeting-archive .entry-title .fa-chevron-down {
  position: absolute;
  right: 0;
  top: 4px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.meeting-archive .meeting-section-title {
  font-size: 22px;
  text-transform: uppercase;
  margin-top: 12px;
}

.meeting-archive .btn-meeting {
  display: block;
  margin-bottom: 7px;
  text-align: left;
}

.meeting-archive .btn-meeting .fa-arrow-right {
  float: right;
  line-height: 1.5;
}

.meeting-archive .meeting-list {
  margin-top: 0;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
## Alerts
--------------------------------------------------------------*/
.service-advisories {
  height: 45px;
  background: #d31b34;
  width: 100%;
  overflow: hidden;
}

.service-advisories .service-advisory {
  width: 100%;
  float: left;
  font-weight: bold;
  font-size: 12px;
  line-height: 45px;
  color: #fff;
  text-align: center;
}

.service-advisories .service-advisory a {
  color: #fff;
}

.route-alerts {
  -webkit-box-shadow: 0 1px 4px 0 rgba(13, 20, 45, 0.5);
  box-shadow: 0 1px 4px 0 rgba(13, 20, 45, 0.5);
  border-radius: 5px;
  padding: 11.6px 15px 10px;
  margin-bottom: 23.2px;
}

.route-alerts .single-alert:first-of-type {
  border-top: 1px solid #cccccc;
}

.single-alert {
  border-bottom: 1px solid #cccccc;
  padding: 8px 0;
}

.single-alert .alert-title {
  margin-bottom: 0;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.single-alert .alert-title .fa-chevron-down {
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.single-alert .alert-date {
  font-size: 11px;
  color: #242a41;
}

.single-alert .alert-content {
  display: none;
}

.single-alert .alert-content p {
  margin-bottom: 0;
}

.single-alert.open h4 .fa-chevron-down {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.single-alert .entry-title {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .service-advisories .service-advisory {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comments-area {
  border-top: 1px solid #cccccc;
  padding-top: 8px;
}

.comments-link {
  margin-right: 10px;
}

.comments-title,
.reply-title {
  font-size: 1.25rem;
}

/* Comments */
.children,
.comment-list {
  list-style: none;
}

ul.children {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.comment-body {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative;
}

.comment-body p {
  margin-bottom: 2px;
}

.comment-body .comments-title {
  padding-top: 60px;
}

.comment-body .comment-img {
  float: left;
  margin-right: 20px;
  padding-bottom: 25px;
}

.comment-author {
  text-align: left;
}

.comment-reply-link {
  position: absolute;
  top: 0;
  right: 0;
  font-style: italic;
  padding: 5px;
  background: #f5f5f5;
}

.comment-author,
.comment-author a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2px;
}

.comment-metadata time {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-style: italic;
  display: block;
  padding-bottom: 7px;
}

.depth-2 {
  padding-left: 30px;
}

.depth-3 {
  padding-left: 60px;
}

.depth-4 {
  padding-left: 90px;
}

.depth-5 {
  padding-left: 120px;
}

.depth-6 {
  padding-left: 150px;
}

.depth-7 {
  padding-left: 180px;
}

.depth-8 {
  padding-left: 210px;
}

.depth-9 {
  padding-left: 240px;
}

.depth-10 {
  padding-left: 270px;
}

#commentform #author,
#commentform #comment,
#commentform #email,
#commentform #url {
  display: block;
  width: 100%;
}

#commentform input[type="submit"] {
  display: inline-block;
  padding: 8px 15px;
  border: 1px solid #e4e4e4;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: #fff;
  margin-top: 15px;
}

#commentform input[type="submit"]:hover {
  background: #e2fcff;
}

.title-line {
  border-top: 1px dotted #cccccc;
  display: block;
  max-width: 30%;
  margin: 0 auto 25px;
}

/* Responsive */
@media (max-width: 767px) {

  .children,
  .comment-list {
    padding-left: 0;
  }

  .comment-body .comment-img {
    float: none;
    margin: 0;
    width: 100%;
    padding-bottom: 0;
  }

  .comment-img>img {
    display: block;
    margin: 0 auto;
  }

  .comment-author,
  .comment-author a,
  .comment-date {
    text-align: center;
  }

  .depth-10,
  .depth-2,
  .depth-3,
  .depth-4,
  .depth-5,
  .depth-6,
  .depth-7,
  .depth-8,
  .depth-9 {
    padding-left: 0;
  }

  .comment-reply {
    position: relative;
    text-align: center;
    display: block;
    margin-top: 25px;
  }
}

/*# sourceMappingURL=style.css.map */


/* System Map */

.system-map {
  position: relative;
}

.system-map-sidebar-toggle {
  margin-bottom: 10px;
}

.system-map-sidebar {
  overflow-y: scroll;
}

.system-map-sidebar .route-list {
  display: none;
}

.system-map-sidebar .route-list-section {
  margin: 5px;
}

.system-map-sidebar .route-list-header {
  overflow: hidden;
  padding: 5px 15px 0 8px;
  border-bottom: 1px solid #dee2e6;
}

.system-map-sidebar .route-list-header label {
  font-size: 24px;
  font-weight: 700;
}

.system-map-sidebar input {
  flex-shrink: 0;
  margin-top: 8px;
  margin-right: 5px;
}

.system-map-sidebar .route-list-header .expand-control {
  float: right;
  margin-top: 6px;
  cursor: pointer;
  -moz-transition: all 400ms linear;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.system-map-sidebar .route-list-header .expand-control.down {
  -ms-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.system-map-sidebar .route-item {
  font-weight: normal;
  padding: 6px 15px 6px 8px;
  margin: 0;
  display: flex;
}

.system-map-sidebar .route-item .route-circle {
  margin-right: 0;
}

.system-map-sidebar .route-item .route-item-name-wrapper {
  margin-left: 8px;
  line-height: 1;
}

.system-map-sidebar .route-item .route-name {
  line-height: 1;
  font-size: 16px;
}

.system-map-sidebar .route-item .route-description {
  line-height: 1;
  font-size: 12px;
  color: #868996;
}

.system-map-map {
  width: 100%;
  height: 600px;
}

.link-service-map {
  width: 100%;
  height: 600px;
}

.system-map .mapboxgl-popup-content h4 {
  font-size: 1.1rem;
  padding-right: 20px;
}

.map-type-menu {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 5px 3px 3px;
}

.map-type-menu label {
  margin-bottom: 0;
}

.map-type-menu input {
  margin: 0 3px 0 5px;
}

@media (min-width: 768px) {
  .system-map {
    overflow: hidden;
    padding-right: 350px;
  }

  .system-map-sidebar {
    width: 350px;
    float: right;
    margin-right: -350px;
    right: 350px;
    height: 600px;
    overflow-y: scroll;
    border: 1px solid #dee2e6;
  }

  .system-map-sidebar .route-list {
    display: block;
  }
}