@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Cabin:500,600,700,700i");
@import url("../fontello/css/gpg.css");
[type='range'] {
  -webkit-appearance: none;
  margin: 8.5px 0;
  width: 100%;
}

[type='range']:focus {
  outline: 0;
}

[type='range']:focus::-webkit-slider-runnable-track {
  background: white;
}

[type='range']:focus::-ms-fill-lower {
  background: #fff;
}

[type='range']:focus::-ms-fill-upper {
  background: white;
}

[type='range']::-webkit-slider-runnable-track {
  cursor: pointer;
  height: 3px;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  width: 100%;
  box-shadow: 0 0 0 #000, 0 0 0 #0d0d0d;
  background: #fff;
  border: 0 solid #000;
  border-radius: 10px;
}

[type='range']::-webkit-slider-thumb {
  box-shadow: 0 0 0 #000, 0 0 0 #0d0d0d;
  background: #fff;
  border: 2px solid #2e68a3;
  border-radius: 20px;
  cursor: pointer;
  height: 17px;
  width: 17px;
  -webkit-appearance: none;
  margin-top: -7px;
}

[type='range']::-moz-range-track {
  cursor: pointer;
  height: 3px;
  -moz-transition: all .2s ease;
  transition: all .2s ease;
  width: 100%;
  box-shadow: 0 0 0 #000, 0 0 0 #0d0d0d;
  background: #fff;
  border: 0 solid #000;
  border-radius: 10px;
}

[type='range']::-moz-range-thumb {
  box-shadow: 0 0 0 #000, 0 0 0 #0d0d0d;
  background: #fff;
  border: 2px solid #2e68a3;
  border-radius: 20px;
  cursor: pointer;
  height: 17px;
  width: 17px;
}

[type='range']::-ms-track {
  cursor: pointer;
  height: 3px;
  -ms-transition: all .2s ease;
  transition: all .2s ease;
  width: 100%;
  background: transparent;
  border-color: transparent;
  border-width: 8.5px 0;
  color: transparent;
}

[type='range']::-ms-fill-lower {
  box-shadow: 0 0 0 #000, 0 0 0 #0d0d0d;
  background: #f2f2f2;
  border: 0 solid #000;
  border-radius: 20px;
}

[type='range']::-ms-fill-upper {
  box-shadow: 0 0 0 #000, 0 0 0 #0d0d0d;
  background: #fff;
  border: 0 solid #000;
  border-radius: 20px;
}

[type='range']::-ms-thumb {
  box-shadow: 0 0 0 #000, 0 0 0 #0d0d0d;
  background: #fff;
  border: 2px solid #2e68a3;
  border-radius: 20px;
  cursor: pointer;
  height: 17px;
  width: 17px;
  margin-top: 0;
}

/* Container used for styling the custom select, the buttom class below adds the
 * bg gradient, corners, etc. */
.custom-select {
  position: relative;
  display: block;
}

/* This is the native select, we're making everything but the text invisible so
 * we can see the button styles in the wrapper */
.custom-select select {
  width: 100%;
  margin: 0;
  outline: none;
  padding: .6em .8em .5em .8em;
  /* Prefixed box-sizing rules necessary for older browsers */
  box-sizing: border-box;
  /* Font size must be 16px to prevent iOS page zoom on focus */
  font-size: 16px;
}

/* Custom arrow sits on top of the select - could be an image, SVG, icon font,
 * etc. or the arrow could just baked into the bg image on the select. */
.custom-select::after {
  content: " ";
  position: absolute;
  top: 50%;
  right: 1em;
  z-index: 2;
  /* These hacks make the select behind the arrow clickable in some browsers */
  pointer-events: none;
  display: none;
}

/* Firefox <= 34 has a false positive on @supports( -moz-appearance: none )
 * @supports ( mask-type: alpha ) is Firefox 35+
 */
@supports ((-webkit-appearance: none) or (-moz-appearance: none) or (appearance: none)) or ((-moz-appearance: none) and (mask-type: alpha)) {
  /* Show custom arrow */
  .custom-select::after {
    display: block;
  }
  /* Remove select styling */
  .custom-select select {
    padding-right: 2em;
    /* Match-01 */
    /* inside @supports so that iOS <= 8 display the native arrow */
    background: none;
    /* Match-04 */
    /* inside @supports so that Android <= 4.3 display the native arrow */
    border: 1px solid transparent;
    /* Match-05 */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  .custom-select select:focus {
    border-color: #aaa;
    /* Match-03 */
  }
}

.custom-select::after {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 7px solid #666;
  margin-top: -3px;
}

/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
* 1. Change the default font family in all browsers (opinionated).
* 2. Prevent adjustments of font size after orientation changes in IE and iOS.
*/
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
* Remove the margin in all browsers (opinionated).
*/
body {
  margin: 0;
}

/* HTML5 display definitions
========================================================================== */
/**
* Add the correct display in IE 9-.
* 1. Add the correct display in Edge, IE, and Firefox.
* 2. Add the correct display in IE.
*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block;
}

/**
* Add the correct display in IE 9-.
*/
audio,
canvas,
progress,
video {
  display: inline-block;
}

/**
* Add the correct display in iOS 4-7.
*/
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
  vertical-align: baseline;
}

/**
* Add the correct display in IE 10-.
* 1. Add the correct display in IE.
*/
template,
[hidden] {
  display: none;
}

/* Links
========================================================================== */
/**
* 1. Remove the gray background on active links in IE 10.
* 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
*/
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
* Remove the outline on focused links when they are also active or hovered
* in all browsers (opinionated).
*/
a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
========================================================================== */
/**
* 1. Remove the bottom border in Firefox 39-.
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
* Prevent the duplicate application of `bolder` by the next rule in Safari 6.
*/
b,
strong {
  font-weight: inherit;
}

/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
  font-weight: bolder;
}

/**
* Add the correct font style in Android 4.3-.
*/
dfn {
  font-style: italic;
}

/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
* Add the correct background and color in IE 9-.
*/
mark {
  background-color: #ff0;
  color: #000;
}

/**
* Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}

/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
========================================================================== */
/**
* Remove the border on images inside links in IE 10-.
*/
img {
  border-style: none;
}

/**
* Hide the overflow in IE.
*/
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
========================================================================== */
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
* Add the correct margin in IE 8.
*/
figure {
  margin: 1em 40px;
}

/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/* Forms
========================================================================== */
/**
* 1. Change font properties to `inherit` in all browsers (opinionated).
* 2. Remove the margin in Firefox and Safari.
*/
button,
input,
select,
textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
* Restore the font weight unset by the previous rule.
*/
optgroup {
  font-weight: bold;
}

/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/
button,
input {
  /* 1 */
  overflow: visible;
}

/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/
button,
select {
  /* 1 */
  text-transform: none;
}

/**
* 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
*    controls in Android 4.
* 2. Correct the inability to style clickable types in iOS and Safari.
*/
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
* Change the border, margin, and padding in all browsers (opinionated).
*/
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
*    `fieldset` elements in all browsers.
*/
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
* Remove the default vertical scrollbar in IE.
*/
textarea {
  overflow: auto;
}

/**
* 1. Add the correct box sizing in IE 10-.
* 2. Remove the padding in IE 10-.
*/
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
* Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
*/
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
* Correct the text style of placeholders in Chrome, Edge, and Safari.
*/
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

body {
  color: #111;
  font-family: 'Cabin', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}

.units {
  font-size: smaller;
  font-variant: small-caps;
  font-weight: 500;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
  overflow: hidden;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  position: relative;
  width: 100%;
  min-height: 100%;
  background-color: #e1e5e9;
  -webkit-overflow-scrolling: touch;
}

.alert {
  padding: 1rem 1rem 1.2rem;
  text-align: center;
}

.alert .alert-title {
  position: relative;
  margin-top: 0;
  margin-bottom: .9rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.alert .close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.alert .alert-body {
  font-size: 1.4rem;
}

.alert .alert-link {
  font-weight: 700;
}

.alert .alert-link:link, .alert .alert-link:visited, .alert .alert-link:focus, .alert .alert-link:hover, .alert .alert-link:active {
  color: #2e68a3;
  text-decoration: none;
}

.alert-bicycle {
  background-color: #f0a438;
}

.alert-success {
  background-color: #60a244;
}

.alert-warning {
  background-color: #efa722;
}

.alert-info {
  background-color: #2e68a3;
}

.alert-danger {
  background-color: #e23331;
}

.app-header {
  display: flex;
  position: relative;
  flex: none;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
}

.brand {
  display: flex;
  flex: 0 0 90px;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  background-color: #2e68a3;
  color: white;
  font-size: 1.5rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .brand {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .brand {
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: inherit;
  }
}

.body-map .brand {
  display: block;
  position: absolute;
  top: 5px;
  left: 10px;
  background-color: inherit;
  z-index: 10;
}

.brand .logo {
  display: flex;
  flex: 0 0 66px;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  height: 66px;
  margin-right: 24px;
  margin-left: 24px;
  background-image: url("../images/logo.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.brand .logo a {
  display: block;
  width: 100%;
  height: 100%;
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-devicepixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx) {
  .brand .logo {
    background-image: url("../images/logo@2x.png");
  }
}

@media (max-width: 767px) {
  .brand .logo {
    margin-right: 12px;
    margin-left: 12px;
  }
}

@media (max-width: 480px) {
  .brand .logo {
    width: 50px;
    max-width: 50px;
    height: 50px;
    margin: 0;
    background-image: url("../images/logo-blue.png");
  }
}

@media only screen and (max-width: 480px) and (-moz-min-device-pixel-ratio: 1.5), only screen and (max-width: 480px) and (-webkit-min-device-pixel-ratio: 1.5), only screen and (max-width: 480px) and (min-devicepixel-ratio: 1.5), only screen and (max-width: 480px) and (min-resolution: 1.5dppx) {
  .brand .logo {
    background-image: url("../images/logo-blue@2x.png");
  }
}

.body-map .brand .logo {
  width: 46px;
  max-width: 46px;
  height: 46px;
  margin: 0;
  background-image: url("../images/logo.png");
}

@media only screen and (-moz-min-device-pixel-ratio: 1.5), only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-devicepixel-ratio: 1.5), only screen and (min-resolution: 1.5dppx) {
  .body-map .brand .logo {
    background-image: url("../images/logo@2x.png");
  }
}

.brand .slogan-start, .brand .slogan-end {
  min-width: 250px;
}

@media (max-width: 480px) {
  .brand .slogan-start, .brand .slogan-end {
    display: none;
  }
}

.body-map .brand .slogan-start, .body-map .brand .slogan-end {
  display: none;
}

.brand .slogan-start {
  text-align: right;
}

.primary-nav {
  position: relative;
  display: flex;
  flex: 0 0 60px;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  background-color: #fbfcfd;
}

@media (max-width: 480px) {
  .primary-nav {
    justify-content: center;
    margin-left: 30px;
    padding-top: 5px;
    padding-right: 5px;
    background-color: inherit;
  }
}

.body-map .primary-nav {
  display: none;
}

@media (max-width: 767px) {
  .primary-nav #explore-header-link {
    display: none;
  }
}

.primary-nav .nav-item {
  margin-right: 25px;
  margin-left: 25px;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  color: #000;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.primary-nav .nav-item:link, .primary-nav .nav-item:visited, .primary-nav .nav-item:focus, .primary-nav .nav-item:hover, .primary-nav .nav-item:active {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 480px) {
  .primary-nav .nav-item {
    border-width: 2px 0;
    font-size: 1.4rem;
  }
}

.primary-nav .nav-item.on {
  border-bottom-color: #000;
  font-weight: 700;
}

.primary-nav .android-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  width: 155px;
}

.primary-nav .android-link:link, .primary-nav .android-link:visited, .primary-nav .android-link:focus, .primary-nav .android-link:hover, .primary-nav .android-link:active {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 480px) {
  .primary-nav .android-link {
    display: none;
  }
}

.primary-nav .android-link .image {
  height: 100%;
  width: auto;
}

.primary-nav .slogan-start {
  text-align: right;
}

.app-footer {
  display: flex;
  position: relative;
  flex: 0 0 auto;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  padding: 20px 20px 10px;
  background-color: rgba(250, 252, 255, 0.8);
  text-align: center;
}

@media (max-width: 767px) {
  .app-footer {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .app-footer {
    padding-right: calc((100vw - 310px) / 2);
    padding-left: calc((100vw - 310px) / 2);
    background-color: #2e68a3;
    color: rgba(255, 255, 255, 0.9);
  }
}

.body-map .app-footer {
  width: 340px;
  max-width: 340px;
  margin: 0;
  padding: 0;
}

@media (max-width: 480px) {
  .body-map .app-footer {
    display: none;
  }
}

.app-footer h2 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.app-footer p {
  margin: 0 0 20px;
  font-size: 1.3rem;
  font-weight: 500;
}

@media (max-width: 480px) {
  .app-footer p {
    font-size: 1.2rem;
  }
}

.footer-subscribe {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 45px;
}

.footer-subscribe .subscribe-form {
  display: flex;
  flex: 0 0 40px;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  max-width: 480px;
  margin-right: auto;
  margin-left: auto;
}

.footer-subscribe .subscribe-input {
  flex: 1;
  margin-right: 10px;
  padding: 0 1em;
  font-size: 1.3rem;
}

.footer-subscribe .subscribe-btn {
  flex: 0 0 auto;
  border: 0;
  padding: 0 1em;
  background-color: #60a244;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 2.5;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-subscribe .subscribe-btn[disabled], .footer-subscribe .subscribe-btn[disabled]:hover {
  background-color: #b5d9a6;
}

.body-map .footer-subscribe {
  display: none;
}

.footer-follow {
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
}

.footer-follow .social-sites {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  padding: 0;
  list-style: none;
}

.footer-follow li {
  margin: 0 20px;
  font-size: 3rem;
}

.footer-follow a:link, .footer-follow a:visited, .footer-follow a:focus, .footer-follow a:hover, .footer-follow a:active {
  color: inherit;
  text-decoration: none;
}

.body-map .footer-follow {
  display: none;
}

.footer-about {
  width: 100%;
  max-width: 480px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.65;
}

.footer-about .goto-about:link, .footer-about .goto-about:visited, .footer-about .goto-about:focus, .footer-about .goto-about:hover, .footer-about .goto-about:active {
  color: inherit;
  text-decoration: none;
}

.body-map .footer-about {
  display: none;
}

.footer-compact {
  display: none;
  background-color: #2e68a3;
  color: #fff;
}

.body-map .footer-compact {
  display: flex;
  flex: 0 0 60px;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}

.body-map-explore .footer-compact .explore-link {
  display: none;
}

.body-map-directions .footer-compact .directions-link {
  display: none;
}

.footer-compact a {
  padding: 0 2em;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-compact a:link, .footer-compact a:visited, .footer-compact a:focus, .footer-compact a:hover, .footer-compact a:active {
  color: inherit;
  text-decoration: none;
}

.tns-nav {
  bottom: -16px;
  margin-bottom: 4px;
  margin-top: 4px;
  text-align: center;
}

.tns-nav button {
  width: 18px;
  height: 18px;
  margin: 0;
}

.tns-nav button {
  width: 18px;
  height: 18px;
}

.tns-nav button:before {
  font-size: 18px;
}

.tns-nav > [aria-controls] {
  width: 6px;
  height: 6px;
  padding: 0;
  margin: 0 4px;
  border-radius: 50%;
  background: #ccc;
  border: 0;
}

.tns-nav > .tns-nav-active {
  background: #666;
}

.body-home .the-map {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #2e68a3;
  opacity: .7;
  z-index: -1;
}

.body-home .the-map::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(46, 104, 163, 0.2);
  content: '';
  z-index: 500;
}

@media (max-width: 480px) {
  .body-home .the-map {
    display: none;
  }
}

.body-map .the-map {
  position: relative;
  flex: 0 0 100vh;
  align-self: flex-end;
  order: 10;
  width: calc(100vw - 340px);
  border-left: 1px solid #ddd;
  z-index: auto;
}

@media (max-width: 480px) {
  .body-map .the-map {
    flex: 1 1 auto;
    order: auto;
    width: 100%;
    border: 0;
  }
  .body-map .the-map .leaflet-control-zoom {
    display: none;
  }
}

.the-map .leaflet-top .leaflet-control {
  margin-bottom: 10px;
}

.the-map .leaflet-bar {
  border-radius: 0;
}

@media (min-width: 481px) {
  .the-map .leaflet-bar {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  }
}

.the-map .leaflet-bar a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 0;
}

.the-map .leaflet-control-zoom-in,
.the-map .leaflet-control-zoom-out {
  font-size: 18px;
  text-indent: inherit;
}

.the-map .leaflet-control-layers {
  margin-right: 10px;
  margin-bottom: 10px;
  position: relative;
  background: #fff;
  border-radius: 0;
  line-height: 2;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
}

.the-map .leaflet-control-layers .leaflet-control-layers-separator {
  margin: 14px -20px;
}

.the-map .leaflet-control-layers .leaflet-control-layers-selector {
  top: 0;
  margin-top: 0;
  margin-right: 15px;
}

.the-map .leaflet-control-layers-expanded {
  padding: 0;
}

.the-map .leaflet-control-layers-list {
  display: none;
  padding: 12px 20px 12px 15px;
}

.the-map .leaflet-minimize {
  box-sizing: content-box;
  color: #000;
  cursor: pointer;
  position: absolute;
  border-radius: 0;
  border-bottom: 1px solid #ddd;
  border-left: 1px solid #ddd;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  text-align: center;
  z-index: 99999;
}

.the-map .leaflet-minimize.minimized {
  position: static;
  border: 0;
}

.awesome-marker i {
  margin-top: 4px;
  font-size: 18px;
}

.awesome-marker-icon-darkred {
  background-position: -612px 0;
  opacity: .3;
}

.route-tooltip .leaflet-popup-tip-container {
  display: none;
}

.route-tooltip .leaflet-popup-content-wrapper {
  border-radius: 0;
}

.route-tooltip .leaflet-popup-content {
  margin: 2px 4px;
}

.poi-popup .leaflet-popup-content-wrapper,
.bikeshare-popup .leaflet-popup-content-wrapper,
.event-popup .leaflet-popup-content-wrapper {
  border-radius: 0;
}

.poi-popup .leaflet-popup-close-button,
.bikeshare-popup .leaflet-popup-close-button,
.event-popup .leaflet-popup-close-button {
  top: 8px !important;
  right: 8px !important;
  font-size: 2rem !important;
}

.poi-popup .leaflet-popup-content,
.bikeshare-popup .leaflet-popup-content,
.event-popup .leaflet-popup-content {
  margin: 16px;
  min-width: 200px;
  color: #111;
  font-family: 'Cabin', sans-serif;
  line-height: 1.5;
}

.poi-popup .leaflet-popup-content .bikeshare-logo,
.bikeshare-popup .leaflet-popup-content .bikeshare-logo,
.event-popup .leaflet-popup-content .bikeshare-logo {
  margin-bottom: .5rem;
}

.poi-popup .leaflet-popup-content h4,
.bikeshare-popup .leaflet-popup-content h4,
.event-popup .leaflet-popup-content h4 {
  margin-top: 0;
  width: 90%;
  font-size: 1.6rem;
  font-weight: 600;
}

.poi-popup .leaflet-popup-content h4.bikeshare-name,
.bikeshare-popup .leaflet-popup-content h4.bikeshare-name,
.event-popup .leaflet-popup-content h4.bikeshare-name {
  margin-top: inherit;
  margin-bottom: 0;
}

.poi-popup .leaflet-popup-content p,
.bikeshare-popup .leaflet-popup-content p,
.event-popup .leaflet-popup-content p {
  font-size: 1.4rem;
  font-weight: 500;
}

.poi-popup .leaflet-popup-content p.bikeshare-address,
.bikeshare-popup .leaflet-popup-content p.bikeshare-address,
.event-popup .leaflet-popup-content p.bikeshare-address {
  margin-top: .5rem;
  color: #555;
}

.poi-popup .leaflet-popup-content p.bikeshare-status,
.bikeshare-popup .leaflet-popup-content p.bikeshare-status,
.event-popup .leaflet-popup-content p.bikeshare-status {
  font-weight: 600;
}

.poi-popup .leaflet-popup-content p.bikeshare-status, .poi-popup .leaflet-popup-content p.bikeshare-bikes, .poi-popup .leaflet-popup-content p.bikeshare-docks, .poi-popup .leaflet-popup-content p.bikeshare-trikes,
.bikeshare-popup .leaflet-popup-content p.bikeshare-status,
.bikeshare-popup .leaflet-popup-content p.bikeshare-bikes,
.bikeshare-popup .leaflet-popup-content p.bikeshare-docks,
.bikeshare-popup .leaflet-popup-content p.bikeshare-trikes,
.event-popup .leaflet-popup-content p.bikeshare-status,
.event-popup .leaflet-popup-content p.bikeshare-bikes,
.event-popup .leaflet-popup-content p.bikeshare-docks,
.event-popup .leaflet-popup-content p.bikeshare-trikes {
  margin: .5rem 0;
}

.poi-popup .leaflet-popup-content p.links,
.bikeshare-popup .leaflet-popup-content p.links,
.event-popup .leaflet-popup-content p.links {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}

.poi-popup .leaflet-popup-content .destination-website-link,
.poi-popup .leaflet-popup-content .destination-directions-link,
.bikeshare-popup .leaflet-popup-content .destination-website-link,
.bikeshare-popup .leaflet-popup-content .destination-directions-link,
.event-popup .leaflet-popup-content .destination-website-link,
.event-popup .leaflet-popup-content .destination-directions-link {
  cursor: pointer;
}

.poi-popup .leaflet-popup-content .destination-website-link:link, .poi-popup .leaflet-popup-content .destination-website-link:visited, .poi-popup .leaflet-popup-content .destination-website-link:focus, .poi-popup .leaflet-popup-content .destination-website-link:hover, .poi-popup .leaflet-popup-content .destination-website-link:active,
.poi-popup .leaflet-popup-content .destination-directions-link:link,
.poi-popup .leaflet-popup-content .destination-directions-link:visited,
.poi-popup .leaflet-popup-content .destination-directions-link:focus,
.poi-popup .leaflet-popup-content .destination-directions-link:hover,
.poi-popup .leaflet-popup-content .destination-directions-link:active,
.bikeshare-popup .leaflet-popup-content .destination-website-link:link,
.bikeshare-popup .leaflet-popup-content .destination-website-link:visited,
.bikeshare-popup .leaflet-popup-content .destination-website-link:focus,
.bikeshare-popup .leaflet-popup-content .destination-website-link:hover,
.bikeshare-popup .leaflet-popup-content .destination-website-link:active,
.bikeshare-popup .leaflet-popup-content .destination-directions-link:link,
.bikeshare-popup .leaflet-popup-content .destination-directions-link:visited,
.bikeshare-popup .leaflet-popup-content .destination-directions-link:focus,
.bikeshare-popup .leaflet-popup-content .destination-directions-link:hover,
.bikeshare-popup .leaflet-popup-content .destination-directions-link:active,
.event-popup .leaflet-popup-content .destination-website-link:link,
.event-popup .leaflet-popup-content .destination-website-link:visited,
.event-popup .leaflet-popup-content .destination-website-link:focus,
.event-popup .leaflet-popup-content .destination-website-link:hover,
.event-popup .leaflet-popup-content .destination-website-link:active,
.event-popup .leaflet-popup-content .destination-directions-link:link,
.event-popup .leaflet-popup-content .destination-directions-link:visited,
.event-popup .leaflet-popup-content .destination-directions-link:focus,
.event-popup .leaflet-popup-content .destination-directions-link:hover,
.event-popup .leaflet-popup-content .destination-directions-link:active {
  color: #2e68a3;
  text-decoration: none;
}

.poi-popup .leaflet-popup-content .destination-description-tours,
.bikeshare-popup .leaflet-popup-content .destination-description-tours,
.event-popup .leaflet-popup-content .destination-description-tours {
  margin: 0 0 2.4rem;
  list-style: none;
  -webkit-padding-start: 0;
  padding-inline-start: 0;
  font-size: 1.4rem;
  font-weight: 500;
}

.poi-popup .leaflet-popup-content .destination-description-tours-header,
.bikeshare-popup .leaflet-popup-content .destination-description-tours-header,
.event-popup .leaflet-popup-content .destination-description-tours-header {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  font-weight: 700;
}

.directions-form-element {
  width: 100%;
  max-width: 680px;
  margin: 30px auto;
}

@media (max-width: 767px) {
  .directions-form-element {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .directions-form-element {
    margin: 10px auto;
  }
}

.body-home .directions-form-element {
  height: 180px;
  min-height: 180px;
}

.body-map .directions-form-element {
  max-width: 340px;
  margin: 0;
}

@media (max-width: 480px) {
  .body-map .directions-form-element {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

.directions-form {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
  max-width: 680px;
  padding: 0 20px 10px;
  background-color: #2e68a3;
}

.body-home .directions-form {
  height: 180px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.body-map .directions-form {
  width: 340px;
  max-width: 340px;
  height: 140px;
  margin: 0;
  padding: 0 10px 10px;
}

@media (max-width: 480px) {
  .body-map .directions-form {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 767px) {
  .directions-form {
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .directions-form {
    padding: 0 10px;
  }
  .body-home .directions-form {
    box-shadow: initial;
  }
}

.directions-form .isochrone-control {
  display: flex;
}

.directions-form .isochrone-control.hidden {
  display: none;
}

.directions-form .mode-picker {
  display: flex;
  flex: none;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  height: 60px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 3rem;
  text-transform: uppercase;
}

@media (max-width: 480px) {
  .body-home .directions-form .mode-picker {
    font-size: 1.3rem;
  }
}

@media (max-width: 320px) {
  .body-home .directions-form .mode-picker .mode-label {
    display: none;
  }
}

.body-map .directions-form .mode-picker {
  flex-basis: 55px;
  justify-content: space-around;
  margin-right: -10px;
  padding-left: 60px;
}

.body-map .directions-form .mode-picker .mode-label {
  display: none;
}

.directions-form .mode-picker .mode-label {
  margin-left: .16em;
}

.directions-form .mode-picker i {
  font-size: 2.2rem;
}

@media (max-width: 320px) {
  .body-home .directions-form .mode-picker i {
    font-size: 2.5rem;
  }
}

.body-map .directions-form .mode-picker i {
  font-size: 2.5rem;
}

.directions-form .mode-picker i::before {
  line-height: 3rem;
}

.directions-form .mode-picker i.icon-bike::before {
  vertical-align: middle;
}

.directions-form .mode-picker i.icon-transit-on::before, .directions-form .mode-picker i.icon-transit-off::before {
  width: 1.5em;
  vertical-align: middle;
}

.directions-form .mode-toggle {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  margin-right: 60px;
  margin-left: auto;
}

@media (max-width: 480px) {
  .body-home .directions-form .mode-toggle {
    margin-right: 32px;
  }
}

.body-map .directions-form .mode-toggle {
  margin-right: 10px;
}

.directions-form .mode-toggle .mode-option.on {
  border-bottom-color: #fff;
}

.directions-form .mode-toggle .mode-option:first-of-type {
  margin-right: 20px;
}

.body-map .directions-form .mode-toggle .mode-option:first-of-type {
  margin-right: 12px;
}

@media (max-width: 320px) {
  .body-home .directions-form .mode-toggle .mode-option:first-of-type {
    margin-right: 12px;
  }
}

.directions-form .mode-option {
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  opacity: .5;
}

.body-map .directions-form .mode-option {
  padding-right: 2px;
  padding-left: 2px;
}

@media (max-width: 320px) {
  .body-home .directions-form .mode-option {
    padding-right: 2px;
    padding-left: 2px;
  }
}

.directions-form .mode-option.on {
  opacity: 1;
}

.directions-form .mode-option.transit {
  margin-right: auto;
}

.body-map .directions-form .mode-option.transit {
  margin-right: 0;
  margin-left: auto;
}

.directions-form .btn-options {
  display: flex;
  flex: none;
  align-items: center;
  align-self: stretch;
  justify-content: center;
  width: 50px;
  margin-left: auto;
  background-color: #245280;
  cursor: pointer;
}

.directions-form .btn-options i.icon-sliders {
  font-size: 2rem;
}

.directions-form .btn-options i::before {
  margin-right: 0;
}

.body-home .directions-form .btn-options {
  display: none;
}

.directions-form .directions-text-input {
  display: flex;
  position: relative;
  flex: 0 0 40px;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: flex-start;
  margin-bottom: 15px;
  background-color: #fff;
}

.body-map .directions-form .directions-text-input {
  flex: 0 0 30px;
  margin-bottom: 0;
  border: 1px solid #fff;
  background-color: #2e68a3;
}

@media (min-width: 481px) {
  .body-map .directions-form .directions-text-input.directions-from label {
    background-color: #2e68a3;
  }
  .body-map .directions-form .directions-text-input.directions-tab-button label {
    position: relative;
    padding-right: 2rem;
    background-color: #245280;
    cursor: pointer;
  }
  .body-map .directions-form .directions-text-input.directions-tab-button label:after {
    position: absolute;
    right: 4px;
    width: 20px;
    margin: 0;
    padding: 0;
    color: inherit;
    font-family: gpg;
    font-size: .7em;
    line-height: 30px;
    text-align: right;
    content: '\e813';
  }
}

.body-map .directions-form .directions-text-input:after {
  position: absolute;
  width: 30px;
  height: 28px;
  background: linear-gradient(to right, rgba(46, 104, 163, 0) 0%, #2e68a3 30%, #2e68a3 100%);
  content: '';
  right: 0;
}

.body-map .directions-form .directions-text-input.error {
  background-color: rgba(226, 51, 49, 0.5);
}

.body-map .directions-form .directions-text-input.error:after {
  opacity: 0;
}

.body-map .directions-form .directions-text-input.directions-tab-button {
  border-top-width: 0;
}

.body-map-explore .directions-form .directions-text-input.directions-to {
  display: none;
}

.directions-form .directions-text-input label {
  flex: 0 0 5.5rem;
  padding-right: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 40px;
  text-align: right;
  cursor: text;
}

.body-map .directions-form .directions-text-input label {
  flex-basis: 4rem;
  margin-right: .5rem;
  padding-right: .5rem;
  padding-left: .7rem;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 30px;
  color: rgba(255, 255, 255, 0.9);
  text-align: left;
}

.directions-form .directions-text-input input[type=text], .directions-form .directions-text-input input[type=search] {
  flex: 1 0 auto;
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1.4rem;
  background-color: transparent;
  line-height: 40px;
  border-radius: 0;
}

.body-map .directions-form .directions-text-input input[type=text], .body-map .directions-form .directions-text-input input[type=search] {
  padding: 0;
  color: #fff !important;
  font-weight: 500;
  line-height: 28px;
}

.body-map .directions-form .directions-text-input input[type=text].tt-hint, .body-map .directions-form .directions-text-input input[type=search].tt-hint {
  color: rgba(255, 255, 255, 0.7) !important;
}

.body-map .directions-form .directions-text-input input[type=text]::-moz-placeholder, .body-map .directions-form .directions-text-input input[type=search]::-moz-placeholder {
  color: #fff;
}

.body-map .directions-form .directions-text-input input[type=text]:-ms-input-placeholder, .body-map .directions-form .directions-text-input input[type=search]:-ms-input-placeholder {
  color: #fff;
}

.body-map .directions-form .directions-text-input input[type=text]::placeholder, .body-map .directions-form .directions-text-input input[type=search]::placeholder {
  color: #fff;
}

.directions-form .directions-text-input input[type=text]:focus, .directions-form .directions-text-input input[type=search]:focus {
  outline: none;
}

.directions-form .directions-text-input .twitter-typeahead {
  display: flex !important;
  flex: 1;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: flex-start;
}

.directions-form .directions-text-input .tt-hint {
  width: 100%;
  height: 40px;
  line-height: 40px;
  color: rgba(17, 17, 17, 0.7);
}

.body-map .directions-form .directions-text-input .tt-hint {
  height: 28px;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.7) !important;
}

.directions-form .directions-text-input .tt-input {
  flex: 1 0 auto;
}

.body-map .directions-form .directions-text-input .tt-input {
  background-color: #2e68a3;
  color: #fff !important;
  font-weight: 500;
  line-height: 30px;
}

.directions-form .directions-text-input .tt-dropdown-menu {
  width: calc(100% + 5.5rem);
  margin-left: -5.5rem;
  background-color: #fff;
  font-size: 1.4rem;
  line-height: 1.25;
  z-index: 1000 !important;
}

.body-map .directions-form .directions-text-input .tt-dropdown-menu {
  width: calc(100% + 4.5rem);
  margin-left: -4.5rem;
  font-size: 1.3rem;
  line-height: 2;
}

.directions-form .directions-text-input .tt-suggestion {
  padding: .5rem 1em;
  color: #5a5a5a;
}

.directions-form .directions-text-input .tt-suggestion p {
  margin: 0;
}

.body-map .directions-form .directions-text-input .tt-suggestion p {
  text-overflow: ellipsis;
  white-space: nowrap !important;
  overflow: hidden;
}

.directions-form .directions-text-input .tt-highlight {
  font-weight: 700;
  color: #111;
}

.directions-form .directions-text-input .tt-cursor {
  background-color: #ccc;
}

.directions-form .directions-text-input .btn-geolocate {
  padding: 0 .8rem;
  border: 0;
  background-color: transparent;
  color: #777;
  font-size: 1.8rem;
  text-align: center;
  cursor: pointer;
}

.directions-form .directions-text-input .btn-geolocate i.spin {
  display: inline-block;
  -webkit-animation: full-rotation 2s infinite linear;
  animation: full-rotation 2s infinite linear;
}

.body-map .directions-form .directions-text-input .btn-geolocate {
  width: 30px;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.6rem;
  line-height: 1;
  z-index: 10;
}

.directions-form .directions-text-input .btn-reverse {
  width: 30px;
  padding: 0;
  border: 0;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: 2.2rem;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  z-index: 10;
}

.body-home .directions-form .directions-text-input .btn-reverse {
  display: none;
}

.directions-form .directions-to.isochrone-control {
  display: none;
}

.directions-form .directions-to.directions-text-input {
  display: flex;
}

.directions-form #isochrone-slider {
  align-self: center;
  width: 80px;
  margin: 0 1rem 0 0;
  padding: 0;
  background-color: #2e68a3;
}

.directions-form .directions-tab-button.isochrone-control:after {
  background: #2e68a3;
}

.directions-form .directions-tab-button.isochrone-control.disabled #output-directions-within,
.directions-form .directions-tab-button.isochrone-control.disabled #isochrone-slider {
  opacity: .2;
}

.directions-form .directions-to label {
  padding-right: 1em;
  margin-right: .2em;
}

.directions-form #output-directions-within {
  position: relative;
  min-width: 5em;
  margin: 0 2rem 0 .5rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 30px;
  text-align: right;
}

.directions-form #output-directions-within:after {
  content: ' minutes';
}

@-webkit-keyframes full-rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

@keyframes full-rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.place-card {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
  width: 310px;
  margin: 0 0 20px;
  padding: 0 16px 14px;
  background-color: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.body-map .place-card {
  margin-right: auto;
  margin-left: auto;
}

.place-card-photo-container,
.place-card-carousel-container {
  margin-right: -16px;
  margin-left: -16px;
}

.place-card-photo {
  display: block;
  width: 100%;
}

.place-card-info {
  display: flex;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: space-around;
  min-height: 5.6rem;
  padding: .6rem 0 .7rem;
}

.place-card-remove {
  display: none;
  position: absolute;
  top: -7px;
  right: -7px;
  border-radius: 50%;
  background: #2e68a3;
  color: #fff;
  cursor: pointer;
  padding: 0;
  border: 0;
  font-size: 1.2rem;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

@media (min-width: 481px) {
  .place-card:hover .place-card-remove {
    display: block;
  }
}

.place-card-meta {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  line-height: 1.0rem;
}

.place-card.no-origin.destination-card .place-card-meta {
  display: none;
}

.place-card-meta .travel-logistics {
  margin-right: 1em;
  color: #60a244;
  font-size: 1.2rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.place-card.no-origin .place-card-meta .travel-logistics {
  display: none;
}

.place-card-meta .travel-logistics-distance {
  font-weight: 700;
  line-height: 1.4rem;
}

.place-card-meta .tour-label {
  display: none;
  color: #60a244;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.place-card.no-origin.tour-card .place-card-meta .tour-label {
  display: block;
}

.place-card-meta .event-label {
  display: none;
  color: #60a244;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.place-card.no-origin.event-card .place-card-meta .event-label {
  display: block;
}

.place-card-meta .event-date-time {
  display: none;
  flex: none;
  color: #111;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

.place-card.event-card .place-card-meta .event-date-time {
  display: block;
}

.place-card-name {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.place-card-footer {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}

.place-card-actions {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}

.place-card-action {
  width: 90px;
  margin-right: 20px;
  border: 1px solid #2e68a3;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 2.75;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.place-card-action:link, .place-card-action:visited, .place-card-action:focus, .place-card-action:hover, .place-card-action:active {
  color: inherit;
  text-decoration: none;
}

.place-card-action.place-action-go {
  background-color: #2e68a3;
  color: #fff;
}

.place-card-action.place-action-details {
  background-color: transparent;
}

.place-card-badges {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.8rem;
  line-height: 1;
}

.place-card-badges .badge {
  margin-left: .8rem;
}

.place-card .tns-outer {
  position: relative;
}

.place-card .tns-nav {
  display: none;
}

.place-card.no-origin .tns-nav {
  display: block;
  position: absolute;
  top: 100%;
  bottom: initial;
  margin-top: -1px;
  width: 100%;
}

.place-card-compact {
  display: block;
  width: auto;
  height: 8rem;
  padding: 0;
}

.place-card-compact .place-card-link:link, .place-card-compact .place-card-link:visited, .place-card-compact .place-card-link:focus, .place-card-compact .place-card-link:hover, .place-card-compact .place-card-link:active {
  color: inherit;
  text-decoration: none;
}

.place-card-compact .place-card-inner {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 0 1.2rem 0 0;
  z-index: 1;
}

.place-card-compact .place-card-photo-container {
  height: 8rem;
  width: 8rem;
  margin-right: 1.2rem;
  margin-left: 0;
  overflow: hidden;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  flex: none;
  background: #000;
}

.place-card-compact .place-card-photo {
  width: auto;
  height: 100%;
}

.place-card-compact .place-card-info {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  flex: auto;
  padding: 0.6rem 0 0.7rem;
  overflow: hidden;
}

.place-card-compact .event-date-time {
  flex: none;
  color: #111;
  font-size: 1.1rem;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
}

.place-card-compact .place-card-name {
  line-height: 1.4;
  white-space: nowrap;
}

.place-card-compact .place-card-badges {
  margin-top: auto;
}

.place-card-compact .place-card-actions {
  justify-content: space-between;
  margin-top: auto;
}

.place-card-compact .place-card-action {
  flex: auto;
  line-height: 2;
}

.place-card-compact .place-card-action:last-of-type {
  margin-right: 0;
}

.place-card-compact .place-card-action:hover {
  color: #fff;
  background-color: #2e68a3;
  border-color: #2e68a3;
}

.place-card-compact .place-card-route-line {
  display: none;
}

.place-card-compact .place-card-route-line path {
  stroke: #979797;
  stroke-dasharray: 5 8;
  stroke-width: 3px;
}

@media (min-width: 481px) {
  .place-card-compact + .place-card-compact .place-card-route-line {
    display: block;
    position: absolute;
    z-index: 0;
    bottom: 100%;
    left: 4rem;
  }
}

.tour-list.sorting .place-card-compact .place-card-route-line {
  display: none;
}

.place-card.sortable-ghost {
  border: 2px dashed #8B9cae !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

.place-card.sortable-ghost > * {
  opacity: 0 !important;
}

.place-card-drag-handle {
  position: absolute;
  display: none;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 0.4rem;
  margin-top: -1.2rem;
  height: 2.4rem;
  color: #fff;
  text-shadow: 1px 1px #000;
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

@media (min-width: 481px) {
  .place-card-sortable:hover .place-card-drag-handle {
    display: flex;
  }
}

@media (min-width: 481px) {
  .place-card-sortable:hover .place-card-photo {
    opacity: 0.8;
  }
}

.tour-place-card {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  justify-content: flex-start;
  width: 310px;
  margin: 0 0 20px;
  background-color: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.body-map .tour-place-card {
  margin-right: auto;
  margin-left: auto;
}

.body-map .tour-place-card .tour-place-card-photo-container {
  background-color: #fff;
}

.tour-place-card-photo-container {
  flex-flow: column nowrap;
}

.tour-place-card-photo {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.tour-place-card-info {
  flex-flow: column wrap;
  align-items: stretch;
  justify-content: space-around;
  min-height: 5.6rem;
  padding: .6rem 0 .7rem;
}

.tour-place-card-name {
  width: 100%;
  margin: 0;
  padding-left: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}

.tour-place-card-footer {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}

.tour-place-card-actions {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
}

.tour-place-card-action {
  width: 80px;
  margin-right: 12px;
  margin-left: 12px;
  border: 1px solid #2e68a3;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 2.3;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.tour-place-card-action:link, .tour-place-card-action:visited, .tour-place-card-action:focus, .tour-place-card-action:hover, .tour-place-card-action:active {
  color: inherit;
  text-decoration: none;
}

.tour-place-card-action.tour-place-action-go {
  background-color: #2e68a3;
  color: #fff;
}

.tour-place-card-action.tour-place-action-details {
  background-color: transparent;
}

.places {
  width: 340px;
  height: calc(100% - 60px - 140px);
  margin: 0;
  background-color: #e1e5e9;
  overflow: hidden;
  position: relative;
}

@media (min-width: 481px) {
  .body-has-sidebar-banner .places {
    height: calc(100% - 60px - 140px - 50px);
  }
}

@media (max-width: 480px) {
  .places {
    width: 100%;
    max-width: 100%;
  }
}

.body-map-directions .places:not(.tours) {
  display: none;
}

.body-map .places .map-view-btn {
  display: none;
}

.body-home .places {
  flex: 1 0 auto;
  width: 100%;
  max-width: 680px;
  height: auto;
  min-height: 400px;
  margin: 0 auto 30px;
  padding: 0 20px 10px;
  background-color: rgba(250, 252, 255, 0.8);
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  overflow: visible;
}

@media (max-width: 767px) {
  .body-home .places {
    max-width: 350px;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .body-home .places {
    background-color: inherit;
    box-shadow: initial;
  }
}

.places .places-header {
  display: flex;
  position: relative;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
  margin-right: -20px;
  margin-left: -20px;
  padding-right: 20px;
  padding-left: 20px;
}

@media (max-width: 480px) {
  .places .places-header {
    margin-left: 0;
    margin-right: 0;
  }
}

.body-home .places .places-header {
  margin-bottom: 20px;
  background-color: #fbfcfd;
}

@media (max-width: 480px) {
  .body-home .places .places-header {
    background-color: initial;
  }
}

.body-map .places .places-header {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 310px;
  margin: 0 auto;
  padding: .8rem 0;
}

.places .places-header .custom-select::after {
  right: .8rem;
  border-top-color: #fff;
}

.places .filter-toggle.filter-toggle-tabs {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: center;
}

.places .filter-toggle.filter-toggle-tabs .filter-option {
  margin: 0 1.6rem;
  padding: .8rem .4rem;
  border-bottom: 4px solid transparent;
  color: #5a5a5a;
  font-weight: 600;
  cursor: pointer;
}

.places .filter-toggle.filter-toggle-tabs .filter-option:hover {
  color: #111;
}

.places .filter-toggle.filter-toggle-tabs .filter-option.on {
  border-bottom-color: #2e68a3;
  color: #111;
  font-weight: 700;
}

@media (max-width: 767px) {
  .places .filter-toggle.filter-toggle-tabs .filter-option {
    margin: 0 .4rem;
    padding: .6rem .2rem;
    font-size: 1.4rem;
  }
}

.places .filter-toggle.filter-toggle-tabs .filter-divider {
  width: 0;
  height: 2.4rem;
  margin: 0 1.6rem 0.4rem 1.6rem;
  border-color: #e1e5e9;
  border-style: solid;
  border-width: 0 1px;
}

@media (max-width: 767px) {
  .places .filter-toggle.filter-toggle-tabs .filter-divider {
    margin: 0 .4rem;
    border-color: #ccc;
  }
}

.places .filter-toggle.filter-toggle-dropdown {
  width: 12rem;
  min-height: 3.2rem;
  padding: 0 1rem;
  border: 0;
  border-radius: 1px;
  background-color: #2e68a3;
  color: #fff;
  line-height: 3.2rem;
}

.places .filter-toggle.filter-toggle-dropdown .filter-option {
  min-height: 3.2rem;
}

.places .places-content.hidden {
  display: none;
}

.body-map .places .places-content {
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: none;
}

.places h1 {
  margin: 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .places h1 {
    font-size: 2rem;
    line-height: 3;
  }
}

.body-map .places h1 {
  font-size: 1.6rem;
  text-align: left;
}

.places .no-places {
  margin: 1em;
  color: #555;
  font-size: 1.6rem;
  line-height: 1.7;
  text-align: center;
}

.places a.map-view-btn {
  display: block;
  position: absolute;
  top: 1.7rem;
  right: 20px;
  height: 4rem;
  padding-right: 2rem;
  padding-left: 4rem;
  border: 2px solid #2e68a3;
  line-height: 3.8rem;
  text-align: center;
  text-transform: uppercase;
}

.places a.map-view-btn:link, .places a.map-view-btn:visited, .places a.map-view-btn:focus, .places a.map-view-btn:hover, .places a.map-view-btn:active {
  color: #2e68a3;
  text-decoration: none;
}

@media (max-width: 767px) {
  .places a.map-view-btn {
    display: none;
  }
}

.places a.map-view-btn:before {
  content: '\f279';
  position: absolute;
  height: 100%;
  left: 1rem;
  color: #2e68a3;
  font-family: 'gpg';
}

.places a.map-view-btn:hover {
  background-color: #2e68a3;
  color: #fff;
}

.places a.map-view-btn:hover:before {
  color: #fff;
}

.places .place-list {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0;
  padding: 0;
}

@media (max-width: 767px) {
  .places .place-list {
    flex-flow: column nowrap;
    align-items: center;
  }
  .places .place-list[data-filter="All"] .event-card, .places .place-list[data-filter="All"] .tour-card {
    display: none;
  }
}

.preview-card {
  display: flex;
  position: relative;
  flex: 1 0 auto;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  max-width: 680px;
  margin: 0 auto 30px;
}

@media (max-width: 767px) {
  .preview-card {
    width: 310px;
  }
}

.body-map .preview-card {
  display: none;
}

.preview-card-link {
  display: flex;
  flex: 1 0 auto;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 680px;
  padding: 20px 20px;
  background-color: #fff;
}

.preview-card-link:link, .preview-card-link:visited, .preview-card-link:focus, .preview-card-link:hover, .preview-card-link:active {
  color: inherit;
  text-decoration: none;
}

.preview-card-link:hover {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
  .preview-card-link {
    flex-flow: column nowrap;
    align-items: stretch;
  }
  .body-home .preview-card-link {
    background-color: #efa722;
  }
}

.preview-card-link .goto-post:link, .preview-card-link .goto-post:visited, .preview-card-link .goto-post:focus, .preview-card-link .goto-post:hover, .preview-card-link .goto-post:active {
  color: inherit;
  text-decoration: none;
}

.preview-card-link .preview-photo {
  flex: none;
  width: 310px;
  height: auto;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .preview-card-link .preview-photo {
    width: 270px;
    margin-bottom: 4px;
  }
}

.preview-card-link .preview-details {
  display: flex;
  flex: auto;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: space-between;
  width: 50%;
}

@media (max-width: 767px) {
  .preview-card-link .preview-details {
    width: auto;
  }
}

.body-home .preview-card-link .preview-details {
  margin-bottom: calc(4rem + 20px);
}

.preview-card-link .category-heading {
  color: #e23331;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .preview-card-link .category-heading {
    margin: 1.5rem 0;
    text-align: center;
  }
}

.preview-card-link h2 {
  margin: 4px 0;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .preview-card-link h2 {
    margin: 1rem 0;
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: center;
  }
}

.preview-card-link .lede {
  flex: 1;
  margin: 0;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
}

.goto-more-posts {
  position: absolute;
  bottom: 20px;
  right: 20px;
  left: calc(50% + 10px);
  display: block;
  padding: 0 10px;
  border: 0;
  outline: 0;
  background-color: #efa722;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 2.75;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.goto-more-posts:link, .goto-more-posts:visited, .goto-more-posts:focus, .goto-more-posts:hover, .goto-more-posts:active {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 767px) {
  .goto-more-posts {
    left: 20px;
    background-color: #f05223;
    color: #fff !important;
  }
}

.goto-more-posts:hover {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.directions-results {
  width: 340px;
  height: calc(100% - 60px - 140px);
  margin: 0;
  background-color: #e1e5e9;
  overflow: hidden;
  position: relative;
}

@media (min-width: 481px) {
  .body-has-sidebar-banner .directions-results {
    height: calc(100% - 60px - 140px - 50px);
  }
}

.body-home .directions-results,
.body-map-explore .directions-results,
.body-map.body-step-by-step .directions-results {
  display: none;
}

.directions-results .hidden {
  display: none;
}

@media (max-width: 480px) {
  .directions-results {
    flex: 0 1 auto;
    order: 10;
    width: 100%;
    height: auto;
    background-color: #f2f2f2;
    overflow: hidden;
    z-index: 1000;
    box-shadow: 0 0 16px rgba(128, 128, 128, 0.7);
  }
  .directions-results .routes-list {
    height: auto;
  }
  .directions-results .routes-list:empty {
    display: none;
  }
}

.directions-results .back-to-itinerary {
  position: absolute;
  top: 2rem;
  left: 1.2rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  cursor: pointer;
}

@media (max-width: 480px) {
  .directions-results .back-to-itinerary {
    display: none;
  }
}

.directions-results h1 {
  margin: 2.2rem 0;
  padding: 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

@media (max-width: 480px) {
  .directions-results h1:not(.tour-name) {
    display: none;
  }
}

.body-map .directions-results .tour-places {
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: none;
}

.directions-results .tour-places .tour-list {
  margin: 0;
  overflow: auto;
}

@media (min-width: 481px) {
  .directions-results .tour-places .tour-list {
    padding: 0.8rem 1.2rem;
  }
}

.directions-results .tour-places .tour-heading {
  margin-bottom: 1.6rem;
}

@media (max-width: 480px) {
  .directions-results .tour-places .tour-heading {
    min-height: 80px;
    padding: 0.8rem 1.2rem;
    background-color: #fff;
  }
}

.directions-results .tour-places .tour-heading i {
  float: right;
  cursor: pointer;
}

.directions-results .tour-places .tour-heading .tour-label {
  color: #60a244;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.directions-results .tour-places .tour-heading .tour-name {
  margin: 0.6rem 0;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: left;
  text-transform: none;
}

.directions-results .tour-places .tour-heading .tour-name .tour-name-link:link, .directions-results .tour-places .tour-heading .tour-name .tour-name-link:visited, .directions-results .tour-places .tour-heading .tour-name .tour-name-link:focus, .directions-results .tour-places .tour-heading .tour-name .tour-name-link:hover, .directions-results .tour-places .tour-heading .tour-name .tour-name-link:active {
  color: inherit;
  text-decoration: none;
}

.directions-results .tour-places .tour-heading .swipe-hint {
  font-size: 1.3rem;
  font-style: italic;
  color: #777;
}

@media (min-width: 481px) {
  .directions-results .tour-places .tour-heading .swipe-hint {
    display: none;
  }
}

.directions-results .tour-places .place-card {
  width: 100%;
}

.directions-results .tour-places .place-card.selected {
  background-color: #fff;
}

@media (min-width: 481px) {
  .directions-results .tour-places .place-card.selected {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  }
}

.directions-results .tour-places .place-card.selected .place-card-route-line path {
  stroke: #2e68a3;
  stroke-dasharray: none;
}

.directions-results .route-summary, .directions-results .tour-destination-summary {
  display: flex;
  position: relative;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 20px;
  padding: 6px 0 4px;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  overflow: hidden;
}

@media (max-width: 480px) {
  .directions-results .route-summary, .directions-results .tour-destination-summary {
    width: 100vw;
    margin: 0;
    background-color: #fff;
  }
}

.directions-results .route-summary.selected, .directions-results .tour-destination-summary.selected {
  background-color: #fff;
}

@media (min-width: 481px) {
  .directions-results .route-summary.selected, .directions-results .tour-destination-summary.selected {
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  }
}

.directions-results .route-summary.selected .route-name, .directions-results .tour-destination-summary.selected .route-name {
  color: #2e68a3;
  font-weight: 700;
}

.directions-results .route-summary.selected .route-stats, .directions-results .tour-destination-summary.selected .route-stats {
  color: inherit;
}

.directions-results .route-summary.selected .directions-step-walk::before, .directions-results .tour-destination-summary.selected .directions-step-walk::before {
  color: #2e68a3;
}

.directions-results .route-summary.selected .directions-step-transit::before, .directions-results .tour-destination-summary.selected .directions-step-transit::before {
  color: #efa722;
}

.directions-results .route-summary.selected .directions-step-bike::before, .directions-results .tour-destination-summary.selected .directions-step-bike::before {
  color: #6a4388;
}

.directions-results .route-summary .route-name, .directions-results .tour-destination-summary .route-name {
  flex: 1 0 auto;
  margin-bottom: 4px;
  padding: 0 12px;
  color: #829bb5;
  font-size: 1.6rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

@media (max-width: 480px) {
  .directions-results .route-summary .route-name, .directions-results .tour-destination-summary .route-name {
    margin-right: 8rem;
  }
}

.directions-results .route-summary .route-details, .directions-results .tour-destination-summary .route-details {
  display: flex;
  flex: 1 0 auto;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  padding: 0 12px;
  font-size: 1.5rem;
}

.directions-results .route-summary .route-stats, .directions-results .tour-destination-summary .route-stats {
  color: #777;
  text-align: left;
}

.directions-results .route-summary .route-single-mode, .directions-results .tour-destination-summary .route-single-mode {
  position: relative;
}

.directions-results .route-summary .route-single-mode::before, .directions-results .tour-destination-summary .route-single-mode::before {
  position: absolute;
  left: 0;
  width: 20px;
  margin: 0;
  padding: 0;
  color: inherit;
  font-family: gpg;
  font-size: 1em;
  text-align: left;
  content: '';
}

.directions-results .route-summary .route-duration, .directions-results .tour-destination-summary .route-duration {
  font-weight: 500;
}

.directions-results .route-summary .route-distance, .directions-results .tour-destination-summary .route-distance {
  font-weight: 500;
}

.directions-results .route-summary .route-start-stop, .directions-results .tour-destination-summary .route-start-stop {
  color: #777;
  font-weight: 500;
  text-align: right;
}

.directions-results .route-summary .route-per-mode-details, .directions-results .tour-destination-summary .route-per-mode-details {
  display: flex;
  flex: 1 0 auto;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 4px;
  padding: 4px 12px 0;
  color: #777;
  font-size: 1.3rem;
  line-height: 2;
  border-top: 1px solid #e6e6e6;
}

.directions-results .route-summary .route-mode-stats, .directions-results .tour-destination-summary .route-mode-stats {
  position: relative;
  white-space: nowrap;
}

.directions-results .route-summary .route-mode-stats:not(:last-of-type), .directions-results .tour-destination-summary .route-mode-stats:not(:last-of-type) {
  margin-right: 1.8rem;
}

.directions-results .route-summary .route-mode-stats::before, .directions-results .tour-destination-summary .route-mode-stats::before {
  position: absolute;
  left: 0;
  width: 20px;
  margin: 0;
  padding: 0;
  color: inherit;
  font-family: gpg;
  font-size: 1.2em;
  line-height: 1.8;
  text-align: left;
  content: '';
}

.directions-results .route-summary .directions-step-walk, .directions-results .tour-destination-summary .directions-step-walk {
  padding-left: 19px;
}

.directions-results .route-summary .directions-step-walk::before, .directions-results .tour-destination-summary .directions-step-walk::before {
  content: '\e803';
  color: #586879;
}

.directions-results .route-summary .directions-step-transit, .directions-results .tour-destination-summary .directions-step-transit {
  padding-left: 21px;
}

.directions-results .route-summary .directions-step-transit::before, .directions-results .tour-destination-summary .directions-step-transit::before {
  content: '\f238';
  color: #b4955d;
}

.directions-results .route-summary .directions-step-bike, .directions-results .tour-destination-summary .directions-step-bike {
  padding-left: 23px;
}

.directions-results .route-summary .directions-step-bike::before, .directions-results .tour-destination-summary .directions-step-bike::before {
  content: '\e801';
  color: #666666;
}

@media (min-width: 481px) {
  .directions-results .tns-item {
    margin-left: 0 !important;
  }
}

@media (max-width: 480px) {
  .body-step-by-step .directions-form {
    display: none;
  }
  .body-step-by-step .sidebar-banner {
    display: none;
  }
  .body-step-by-step .the-map {
    flex: 1 1 120px;
  }
}

.directions-step-by-step {
  width: 340px;
  height: calc(100% - 60px - 140px);
  margin: 0;
  background-color: #e1e5e9;
  overflow: hidden;
  display: none;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: flex-start;
}

@media (min-width: 481px) {
  .body-has-sidebar-banner .directions-step-by-step {
    height: calc(100% - 60px - 140px - 50px);
  }
}

.body-step-by-step .directions-step-by-step {
  display: block;
}

@media (max-width: 480px) {
  .directions-step-by-step {
    flex: 1 0 auto;
    order: 10;
    height: calc(100% - 120px);
    width: 100%;
    overflow: auto;
    z-index: 100;
  }
  .directions-step-by-step .sidebar-banner {
    display: none;
  }
}

.body-map .directions-step-by-step .directions-step-by-step-content {
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: none;
}

.directions-step-by-step .step-by-step-header {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 480px) {
  .directions-step-by-step .step-by-step-header {
    align-items: stretch;
    width: 100%;
    background-color: #2e68a3;
    color: #fff;
    z-index: 100;
  }
}

.directions-step-by-step .step-by-step-header button {
  flex: 0 0 40px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  cursor: pointer;
}

@media (max-width: 480px) {
  .directions-step-by-step .step-by-step-header button {
    color: #fff;
  }
}

.directions-step-by-step .step-by-step-header h1 {
  flex: 1 1 auto;
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 4;
  text-align: center;
}

@media (max-width: 767px) {
  .directions-step-by-step .step-by-step-header h1 {
    font-size: 2rem;
    line-height: 3;
  }
}

@media (max-width: 480px) {
  .directions-step-by-step .step-by-step-header h1 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 3;
    text-transform: uppercase;
  }
}

.directions-step-by-step .directions-leg {
  display: block;
  padding: 13px 0 13px 43px;
  border-top: 1px solid #ddd;
  background: #fff;
}

.directions-step-by-step .directions-step {
  position: relative;
  padding-right: 20px;
}

.directions-step-by-step .directions-step::before {
  position: absolute;
  top: 1px;
  left: -43px;
  width: 40px;
  margin: 0;
  padding: 0;
  font-family: gpg;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
}

.directions-step-by-step .directions-step + .directions-step {
  margin-top: .75em;
  padding-top: .85em;
  border-top: 1px solid #ddd;
}

.directions-step-by-step .directions-step + .directions-step::before {
  top: 11px;
}

.directions-step-by-step .directions-mode-summary {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: flex-start;
  padding: 1em;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.5;
}

.directions-step-by-step .directions-mode-summary .mode-summary-section {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 200px;
}

.directions-step-by-step .directions-mode-summary .mode-summary-header {
  color: #777;
  font-weight: 700;
}

.directions-step-by-step .directions-mode-summary .mode-summary-item {
  position: relative;
  color: #777;
  font-weight: 500;
}

.directions-step-by-step .directions-mode-summary .mode-summary-item::before {
  position: absolute;
  left: 0;
  width: 20px;
  margin: 0;
  padding: 0;
  color: inherit;
  font-family: gpg;
  font-size: 1em;
  line-height: 3.5rem;
  text-align: center;
}

.directions-step-by-step .directions-mode-summary .mode-summary-item.directions-step-walk::before {
  font-size: 1.3em;
  color: #2e68a3;
}

.directions-step-by-step .directions-mode-summary .mode-summary-item.directions-step-bike::before {
  font-size: 1.3em;
  color: #6a4388;
}

.directions-step-by-step .directions-mode-summary .mode-summary-item.directions-step-transit::before {
  font-size: 1.4em;
  color: #efa722;
}

.directions-step-by-step .directions-mode-summary .mode-summary-footer {
  margin-top: 4px;
  padding-top: 4px;
  border-top: 1px solid #ccc;
  font-weight: 700;
}

.directions-step-by-step .directions-mode-summary .duration {
  flex: none;
  width: 42%;
  text-align: right;
}

.directions-step-by-step .directions-mode-summary .distance {
  flex: none;
  width: 42%;
  text-align: left;
}

.directions-instruction {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.directions-time {
  margin-top: .5em;
  color: #777;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.directions-distance {
  margin-top: .5em;
  color: #777;
  font-size: 1.3rem;
  line-height: 2;
}

.directions-step-origin::before {
  color: #60a244;
  content: '\e80a';
}

.directions-step-destination::before {
  color: #e23331;
  content: '\e80a';
}

.directions-step-walk::before {
  content: '\e803';
}

.directions-step-turn-left::before {
  content: '\e809';
}

.directions-step-turn-right::before {
  content: '\e808';
}

.directions-step-continue::before {
  content: '\e814';
}

.directions-step-bike::before {
  content: '\e801';
}

.directions-step-indego::before {
  padding-top: 2px;
  color: #16216a;
  content: '\e80f';
}

.directions-step-car::before {
  content: '\f1b9';
}

.directions-step-bus::before {
  content: '\f207';
}

.directions-step-transit::before {
  content: '\f238';
}

.directions-step-train::before {
  content: '\f238';
}

.directions-step-rail::before {
  content: '\e81c';
}

.directions-step-subway::before {
  content: '\e811';
}

.directions-step-ferry::before {
  content: '\e816';
}

.directions-step-tram::before {
  content: '\e812';
}

.directions-step-elevator::before {
  content: '\e813';
}

.directions-step-continue::before {
  content: '\e814';
}

.directions-step-clockwise::before {
  content: '\e815';
}

.directions-step-counterclockwise::before {
  content: '\e817';
}

.sidebar-banner {
  display: none;
  flex-flow: row nowrap;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  width: 340px;
  max-width: 340px;
  height: 50px;
  background-color: #60a244;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
}

.body-has-sidebar-banner .sidebar-banner {
  display: flex;
}

@media (max-width: 480px) {
  .sidebar-banner {
    width: 100%;
    max-width: 100%;
  }
}

.sidebar-banner.trip-options-banner {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
}

.sidebar-banner.indego-banner {
  justify-content: space-between;
  padding-right: 10px;
  padding-left: 12px;
  background-color: #16216a;
  text-align: left;
}

.sidebar-banner.indego-banner button {
  flex: 0 0 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: #fff;
  text-align: center;
  cursor: pointer;
}

.sidebar-banner.hidden {
  display: none;
}

.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 30000;
}

.body-modal .modal-overlay {
  display: flex;
}

.modal-panel {
  display: none;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: space-between;
  width: 240px;
  min-height: 360px;
  background-color: #fff;
  box-shadow: 0 0 100px rgba(0, 0, 0, 0.3);
}

.body-modal-share .modal-panel.modal-share,
.body-modal-options .modal-panel.modal-options.visible {
  display: flex;
}

.modal-panel .hidden {
  display: none;
}

.modal-panel .secondary {
  display: none;
}

.modal-header {
  display: flex;
  flex: 0 0 90px;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
}

.modal-header .modal-header-contents {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
}

.modal-sub-menu .modal-header {
  text-transform: none;
}

.modal-options .modal-header {
  background-color: #60a244;
}

.modal-share .modal-header {
  background-color: #2e68a3;
}

.modal-header [class^="icon-"], .modal-header [class*=" icon-"] {
  margin-bottom: .25em;
  font-size: 2.5rem;
}

.modal-footer {
  display: flex;
  flex-flow: row nowrap;
  flex: 0 0 70px;
  align-items: stretch;
  justify-content: stretch;
  border-top: 1px solid #ccc;
}

.modal-footer button {
  flex: 1 1 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  text-transform: uppercase;
  cursor: pointer;
}

.modal-footer button:hover {
  background-color: #eee;
}

.modal-contents {
  flex: 1;
}

.modal-contents p {
  margin: 1.5em;
  line-height: 1.7;
  text-align: center;
}

.modal-contents a {
  color: #2e68a3 !important;
  word-wrap: break-word;
  cursor: pointer;
}

.modal-contents a:link, .modal-contents a:visited, .modal-contents a:focus, .modal-contents a:hover, .modal-contents a:active {
  color: inherit;
  text-decoration: none;
}

.modal-options-timing-tabs {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-around;
  height: 7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.modal-options-timing-tabs li {
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  line-height: 2;
}

.modal-options-timing-tabs li:hover {
  cursor: pointer;
}

.modal-options-timing-tabs li.selected {
  border-bottom-color: #000;
  font-weight: 700;
}

.modal-options-timing-fields {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}

.modal-options-timing-fields li {
  height: 7rem;
  line-height: 5rem;
}

.modal-options-timing-fields select {
  width: 50%;
}

.modal-options-timing-fields .earlier-qtr-hour {
  display: none;
}

.modal-options-timing-fields .current-time {
  display: flex;
}

.modal-options-timing-fields.not-today .earlier-qtr-hour {
  display: flex;
}

.modal-options-timing-fields.not-today .current-time {
  display: none;
}

.modal-list {
  flex: 1 0 210px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.modal-list.modal-list-narrow li {
  padding-left: 80px;
}

.modal-list li {
  position: relative;
  height: 7rem;
  padding-right: 10px;
  padding-left: 50px;
  line-height: 7rem;
  cursor: pointer;
}

.modal-share .modal-list li {
  height: 5rem;
}

.modal-list li .btw {
  margin-left: .8rem;
  color: #777;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
}

.modal-list li:hover {
  background-color: #eee;
}

.modal-list li.selected {
  font-weight: 700;
}

.modal-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 7rem;
  margin: 0;
  padding: 0;
  color: #5a5a5a;
  font-family: gpg;
  font-size: 2rem;
  line-height: 7rem;
  text-align: center;
  content: '';
}

.modal-list li.selected::before {
  color: #60a244;
}

.modal-list li.modal-list-choice.selected::before {
  content: '\e810';
}

.modal-list li.modal-list-indego::before {
  font-size: 3.2rem;
  content: '\e80f';
}

.modal-list li.modal-list-timing::before {
  content: '\e80e';
}

.modal-list li.modal-list-ride::before {
  content: '\e80d';
}

.modal-list li.modal-list-accessibility::before {
  content: '\f193';
}

.modal-list li.modal-list-link::before {
  content: '\e80c';
}

.modal-list li.modal-list-twitter::before {
  content: '\f099';
}

.modal-list li.modal-list-facebook::before {
  content: '\f230';
}

.modal-list li.modal-list-google::before {
  content: '\f0d5';
}

.modal-list li.modal-list-email::before {
  content: '\f0e0';
}

.sk-spinner {
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  flex-flow: row nowrap;
  justify-content: center;
  width: 100%;
}

.sk-spinner.hidden {
  display: none;
}

.sk-spinner.sk-three-bounce .sk-child {
  background-color: #2e68a3;
}

.terms {
  margin: 50px;
}

.terms h1, .terms h2, .terms h3, .terms h4 {
  text-align: center;
}

.body-info, .body-explore, .body-about {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  background-color: #e1e5e9;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.body-info .main, .body-explore .main, .body-about .main {
  display: block;
  max-width: 680px;
  margin: 0 auto 10rem;
}

@media (max-width: 767px) {
  .body-info .main, .body-explore .main, .body-about .main {
    margin-right: 20px;
    margin-left: 20px;
  }
}

@media (max-width: 480px) {
  .body-info .main, .body-explore .main, .body-about .main {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.body-info h1, .body-explore h1, .body-about h1 {
  flex: auto;
  margin: 3rem auto;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .body-info h1, .body-explore h1, .body-about h1 {
    margin: 2rem auto;
    font-size: 2rem;
    line-height: 1.75;
  }
}

.body-info h1 a:link, .body-info h1 a:visited, .body-info h1 a:focus, .body-info h1 a:hover, .body-info h1 a:active, .body-explore h1 a:link, .body-explore h1 a:visited, .body-explore h1 a:focus, .body-explore h1 a:hover, .body-explore h1 a:active, .body-about h1 a:link, .body-about h1 a:visited, .body-about h1 a:focus, .body-about h1 a:hover, .body-about h1 a:active {
  color: inherit;
  text-decoration: none;
}

@media (max-width: 480px) {
  .body-info .preview-card, .body-explore .preview-card, .body-about .preview-card {
    margin-bottom: 15px;
  }
}

.body-info .info-article, .body-explore .info-article, .body-about .info-article {
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 100px;
  padding-bottom: 40px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
  .body-info .info-article, .body-explore .info-article, .body-about .info-article {
    box-shadow: none;
  }
}

@media (max-width: 480px) {
  .body-info .info-article, .body-explore .info-article, .body-about .info-article {
    margin-bottom: 50px;
  }
}

.body-info .info-article-header, .body-explore .info-article-header, .body-about .info-article-header {
  padding: 0 4rem;
}

@media (max-width: 480px) {
  .body-info .info-article-header, .body-explore .info-article-header, .body-about .info-article-header {
    padding: 0 1rem;
  }
}

.body-info .info-article-header .detail-image-carousel-container, .body-explore .info-article-header .detail-image-carousel-container, .body-about .info-article-header .detail-image-carousel-container {
  margin-left: -4rem;
  margin-right: -4rem;
  margin-bottom: -1.6rem;
}

.body-info .info-article-header .detail-image-carousel-extra-image.hidden, .body-explore .info-article-header .detail-image-carousel-extra-image.hidden, .body-about .info-article-header .detail-image-carousel-extra-image.hidden {
  display: none;
}

.body-info .info-article-image-hero, .body-explore .info-article-image-hero, .body-about .info-article-image-hero {
  height: 200px;
  margin-right: -4rem;
  margin-left: -4rem;
}

.body-info .info-place-image-hero, .body-explore .info-place-image-hero, .body-about .info-place-image-hero {
  height: 400px;
  margin-right: -4rem;
  margin-left: -4rem;
}

@media (max-width: 480px) {
  .body-info .info-place-image-hero, .body-explore .info-place-image-hero, .body-about .info-place-image-hero {
    height: 60vw;
  }
}

.body-info .info-article-image-hero,
.body-info .info-place-image-hero, .body-explore .info-article-image-hero,
.body-explore .info-place-image-hero, .body-about .info-article-image-hero,
.body-about .info-place-image-hero {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.body-info .info-article-header-info, .body-explore .info-article-header-info, .body-about .info-article-header-info {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: space-between;
  margin: 24px 0;
}

@media (max-width: 767px) {
  .body-info .info-article-header-info, .body-explore .info-article-header-info, .body-about .info-article-header-info {
    flex-direction: column-reverse;
    align-items: stretch;
  }
}

.body-info .info-place-meta, .body-explore .info-place-meta, .body-about .info-place-meta {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  min-width: 9.6rem;
  margin-left: 3.2rem;
  align-items: center;
}

@media (max-width: 767px) {
  .body-info .info-place-meta, .body-explore .info-place-meta, .body-about .info-place-meta {
    flex-direction: row;
    align-items: center;
    margin: -.8rem 0 .8rem;
  }
}

.body-info .info-place-categories, .body-explore .info-place-categories, .body-about .info-place-categories {
  display: flex;
  flex-flow: column nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 1rem 0;
  padding: 0;
  color: #60a244;
  font-size: 1.6rem;
  list-style: none;
}

@media (max-width: 767px) {
  .body-info .info-place-categories, .body-explore .info-place-categories, .body-about .info-place-categories {
    flex-direction: row;
    margin: 0 .8rem 0 0;
    font-size: 1.5rem;
  }
}

.body-info .info-place-categories .category, .body-explore .info-place-categories .category, .body-about .info-place-categories .category {
  margin-bottom: .8rem;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .body-info .info-place-categories .category, .body-explore .info-place-categories .category, .body-about .info-place-categories .category {
    margin: 0 1.6rem 0 0;
  }
}

@media (max-width: 480px) {
  .body-info .info-place-categories .category, .body-explore .info-place-categories .category, .body-about .info-place-categories .category {
    margin-right: .8rem;
  }
}

.body-info .info-place-activities,
.body-info .info-event-activities, .body-explore .info-place-activities,
.body-explore .info-event-activities, .body-about .info-place-activities,
.body-about .info-event-activities {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
  color: #555;
  font-size: 2.4rem;
  line-height: 1.4;
  list-style: none;
}

@media (max-width: 480px) {
  .body-info .info-place-activities,
  .body-info .info-event-activities, .body-explore .info-place-activities,
  .body-explore .info-event-activities, .body-about .info-place-activities,
  .body-about .info-event-activities {
    font-size: 2rem;
  }
}

.body-info .info-place-activities .activity:not(:last-of-type),
.body-info .info-event-activities .activity:not(:last-of-type), .body-explore .info-place-activities .activity:not(:last-of-type),
.body-explore .info-event-activities .activity:not(:last-of-type), .body-about .info-place-activities .activity:not(:last-of-type),
.body-about .info-event-activities .activity:not(:last-of-type) {
  margin-right: .8rem;
}

@media (max-width: 480px) {
  .body-info .info-place-activities .activity,
  .body-info .info-event-activities .activity, .body-explore .info-place-activities .activity,
  .body-explore .info-event-activities .activity, .body-about .info-place-activities .activity,
  .body-about .info-event-activities .activity {
    margin-right: .1rem;
  }
}

.body-info .info-event-activities, .body-explore .info-event-activities, .body-about .info-event-activities {
  margin-top: 1.6rem;
}

@media (max-width: 767px) {
  .body-info .info-event-activities, .body-explore .info-event-activities, .body-about .info-event-activities {
    margin-top: 0;
  }
}

.body-info .info-article-category, .body-explore .info-article-category, .body-about .info-article-category {
  margin-bottom: 20px;
  color: #e23331;
  font-size: 1.4rem;
  line-height: 1;
  text-transform: uppercase;
}

.body-info .info-article-title, .body-explore .info-article-title, .body-about .info-article-title {
  margin: 0;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.5;
}

.body-info .info-tour, .body-explore .info-tour, .body-about .info-tour {
  color: #777;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 480px) {
  .body-info .info-tour-desktop, .body-explore .info-tour-desktop, .body-about .info-tour-desktop {
    display: none;
  }
}

.body-info .info-event-destinations, .body-explore .info-event-destinations, .body-about .info-event-destinations {
  display: flex;
  flex-flow: row nowrap;
  margin: 1.2rem 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
}

.body-info .info-event-destinations .hidden-extra, .body-explore .info-event-destinations .hidden-extra, .body-about .info-event-destinations .hidden-extra {
  display: none;
}

.body-info .info-event-destinations-at, .body-explore .info-event-destinations-at, .body-about .info-event-destinations-at {
  flex: none;
  margin-right: 0.5em;
}

.body-info .info-event-destinations-list, .body-explore .info-event-destinations-list, .body-about .info-event-destinations-list {
  flex: auto;
}

.body-info .info-event-destination, .body-explore .info-event-destination, .body-about .info-event-destination {
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
}

.body-info .info-event-destination:not(:last-of-type), .body-explore .info-event-destination:not(:last-of-type), .body-about .info-event-destination:not(:last-of-type) {
  border-bottom: 1px solid #ccc;
}

.body-info .info-event-destination .info-event-date, .body-explore .info-event-destination .info-event-date, .body-about .info-event-destination .info-event-date {
  color: #555;
  font-size: 1.5rem;
}

.body-info .info-event-destination-link:link, .body-info .info-event-destination-link:visited, .body-info .info-event-destination-link:focus, .body-info .info-event-destination-link:hover, .body-info .info-event-destination-link:active, .body-explore .info-event-destination-link:link, .body-explore .info-event-destination-link:visited, .body-explore .info-event-destination-link:focus, .body-explore .info-event-destination-link:hover, .body-explore .info-event-destination-link:active, .body-about .info-event-destination-link:link, .body-about .info-event-destination-link:visited, .body-about .info-event-destination-link:focus, .body-about .info-event-destination-link:hover, .body-about .info-event-destination-link:active {
  color: #2e68a3;
  text-decoration: none;
}

.body-info .info-more-link, .body-explore .info-more-link, .body-about .info-more-link {
  font-style: italic;
}

.body-info .info-event-meta, .body-explore .info-event-meta, .body-about .info-event-meta {
  flex: none;
  margin-left: 30px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
}

@media (max-width: 767px) {
  .body-info .info-event-meta, .body-explore .info-event-meta, .body-about .info-event-meta {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
    margin: -12px 0 8px;
    align-items: stretch;
  }
  .body-info .info-event-meta .info-event-time,
  .body-info .info-event-meta .info-event-date:nth-child(2), .body-explore .info-event-meta .info-event-time,
  .body-explore .info-event-meta .info-event-date:nth-child(2), .body-about .info-event-meta .info-event-time,
  .body-about .info-event-meta .info-event-date:nth-child(2) {
    margin-right: 1.6rem;
  }
  .body-info .info-event-meta .info-event-time::before, .body-explore .info-event-meta .info-event-time::before, .body-about .info-event-meta .info-event-time::before {
    content: ' · ';
  }
}

.body-info .info-article-aside, .body-explore .info-article-aside, .body-about .info-article-aside {
  width: 240px;
  margin: 0 0 20px 20px;
  padding: 0 4rem 0 2rem;
  float: right;
  border-left: 2px solid #60a244;
  color: #555;
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
}

.body-info .info-article-aside p, .body-explore .info-article-aside p, .body-about .info-article-aside p {
  margin: 0 0 1em;
}

.body-info .info-article-aside a, .body-explore .info-article-aside a, .body-about .info-article-aside a {
  color: #f05223;
}

@media (max-width: 767px) {
  .body-info .info-article-aside, .body-explore .info-article-aside, .body-about .info-article-aside {
    display: none;
  }
}

.body-info .info-article-section, .body-explore .info-article-section, .body-about .info-article-section {
  padding: 0 4rem;
}

@media (max-width: 480px) {
  .body-info .info-article-section, .body-explore .info-article-section, .body-about .info-article-section {
    padding: 0 1rem;
  }
}

.body-info .info-article-section p, .body-explore .info-article-section p, .body-about .info-article-section p {
  margin: 0 0 1em;
}

.body-info .info-article-section a, .body-explore .info-article-section a, .body-about .info-article-section a {
  color: #f05223;
}

.body-info .info-article-section strong, .body-explore .info-article-section strong, .body-about .info-article-section strong {
  font-weight: 700;
}

.body-info .info-article-section iframe, .body-explore .info-article-section iframe, .body-about .info-article-section iframe {
  max-width: 100%;
}

.body-info .info-place-actions, .body-explore .info-place-actions, .body-about .info-place-actions {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  margin-top: 30px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.4;
}

@media (max-width: 480px) {
  .body-info .info-place-actions, .body-explore .info-place-actions, .body-about .info-place-actions {
    margin-top: 2rem;
    font-size: 1.4rem;
    line-height: 2.6;
  }
}

.body-info .info-place-actions .place-action-go, .body-explore .info-place-actions .place-action-go, .body-about .info-place-actions .place-action-go {
  min-width: 12rem;
  margin-right: 2.4rem;
  padding: 0 1em;
  background-color: #2e68a3;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.body-info .info-place-actions .place-action-go:link, .body-info .info-place-actions .place-action-go:visited, .body-info .info-place-actions .place-action-go:focus, .body-info .info-place-actions .place-action-go:hover, .body-info .info-place-actions .place-action-go:active, .body-explore .info-place-actions .place-action-go:link, .body-explore .info-place-actions .place-action-go:visited, .body-explore .info-place-actions .place-action-go:focus, .body-explore .info-place-actions .place-action-go:hover, .body-explore .info-place-actions .place-action-go:active, .body-about .info-place-actions .place-action-go:link, .body-about .info-place-actions .place-action-go:visited, .body-about .info-place-actions .place-action-go:focus, .body-about .info-place-actions .place-action-go:hover, .body-about .info-place-actions .place-action-go:active {
  color: #fff;
  text-decoration: none;
}

.body-info .info-place-actions .place-website-link, .body-explore .info-place-actions .place-website-link, .body-about .info-place-actions .place-website-link {
  margin-right: 2.4rem;
  padding: 0 1em;
  background-color: #6a4388;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.body-info .info-place-actions .place-website-link:link, .body-info .info-place-actions .place-website-link:visited, .body-info .info-place-actions .place-website-link:focus, .body-info .info-place-actions .place-website-link:hover, .body-info .info-place-actions .place-website-link:active, .body-explore .info-place-actions .place-website-link:link, .body-explore .info-place-actions .place-website-link:visited, .body-explore .info-place-actions .place-website-link:focus, .body-explore .info-place-actions .place-website-link:hover, .body-explore .info-place-actions .place-website-link:active, .body-about .info-place-actions .place-website-link:link, .body-about .info-place-actions .place-website-link:visited, .body-about .info-place-actions .place-website-link:focus, .body-about .info-place-actions .place-website-link:hover, .body-about .info-place-actions .place-website-link:active {
  color: #fff;
  text-decoration: none;
}

.body-info .info-place-actions .place-awe-link, .body-explore .info-place-actions .place-awe-link, .body-about .info-place-actions .place-awe-link {
  height: 38px;
  background-color: #fff;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
}

.body-info .info-place-actions .place-awe-link:link, .body-info .info-place-actions .place-awe-link:visited, .body-info .info-place-actions .place-awe-link:focus, .body-info .info-place-actions .place-awe-link:hover, .body-info .info-place-actions .place-awe-link:active, .body-explore .info-place-actions .place-awe-link:link, .body-explore .info-place-actions .place-awe-link:visited, .body-explore .info-place-actions .place-awe-link:focus, .body-explore .info-place-actions .place-awe-link:hover, .body-explore .info-place-actions .place-awe-link:active, .body-about .info-place-actions .place-awe-link:link, .body-about .info-place-actions .place-awe-link:visited, .body-about .info-place-actions .place-awe-link:focus, .body-about .info-place-actions .place-awe-link:hover, .body-about .info-place-actions .place-awe-link:active {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 480px) {
  .body-info .info-place-actions .place-awe-link, .body-explore .info-place-actions .place-awe-link, .body-about .info-place-actions .place-awe-link {
    height: 36px;
    margin-left: .4rem;
  }
  .body-info .info-place-actions .place-awe-link .image, .body-explore .info-place-actions .place-awe-link .image, .body-about .info-place-actions .place-awe-link .image {
    height: 36px;
  }
}

.body-info .summaries-list h3, .body-explore .summaries-list h3, .body-about .summaries-list h3 {
  margin: 40px 10px;
  font-size: 2rem;
  font-style: italic;
  text-align: center;
}

.body-info .summaries-list .more-link, .body-explore .summaries-list .more-link, .body-about .summaries-list .more-link {
  line-height: 4;
  text-align: center;
}

.body-info .summaries-list .more-link a, .body-explore .summaries-list .more-link a, .body-about .summaries-list .more-link a {
  background-color: #6a4388;
  padding: 1em 4em;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.75;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.body-info .summaries-list .more-link a:link, .body-info .summaries-list .more-link a:visited, .body-info .summaries-list .more-link a:focus, .body-info .summaries-list .more-link a:hover, .body-info .summaries-list .more-link a:active, .body-explore .summaries-list .more-link a:link, .body-explore .summaries-list .more-link a:visited, .body-explore .summaries-list .more-link a:focus, .body-explore .summaries-list .more-link a:hover, .body-explore .summaries-list .more-link a:active, .body-about .summaries-list .more-link a:link, .body-about .summaries-list .more-link a:visited, .body-about .summaries-list .more-link a:focus, .body-about .summaries-list .more-link a:hover, .body-about .summaries-list .more-link a:active {
  color: #fff;
  text-decoration: none;
}

.body-info .faq, .body-explore .faq, .body-about .faq {
  padding-top: 4rem;
  /* Redesign prototype uses `dt` and `dd` but existing About page in database uses
         * `h3` and `p`, so applying the styles to both. */
}

.body-info .faq dt, .body-info .faq h3, .body-explore .faq dt, .body-explore .faq h3, .body-about .faq dt, .body-about .faq h3 {
  color: #e23331;
  font-weight: 700;
  font-size: 1.5rem;
}

.body-info .faq dd, .body-info .faq p, .body-explore .faq dd, .body-explore .faq p, .body-about .faq dd, .body-about .faq p {
  margin: 1em 0 3em 0;
}

.body-info .app-footer, .body-explore .app-footer, .body-about .app-footer {
  flex: none;
  margin-top: auto;
}

.body-info .info-tour-locations, .body-explore .info-tour-locations, .body-about .info-tour-locations {
  margin-top: 4.8rem;
}

.body-info .tour-locations-list, .body-explore .tour-locations-list, .body-about .tour-locations-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  grid-gap: 2.4rem;
  justify-items: stretch;
  align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (max-width: 767px) {
  .body-info .tour-locations-list, .body-explore .tour-locations-list, .body-about .tour-locations-list {
    grid-template-columns: 1fr;
  }
}

.body-info .tour-locations-list > *, .body-explore .tour-locations-list > *, .body-about .tour-locations-list > * {
  margin: 0;
}

.body-home {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  flex-flow: column nowrap;
  align-items: stretch;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.body-map {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  flex-flow: column wrap;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media (max-width: 480px) {
  .body-map {
    flex-wrap: nowrap;
  }
}

.body-extras {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 100px 100px;
  overflow: scroll;
}

.body-extras h1 {
  margin-top: 150px;
  margin-bottom: 60px;
  padding-top: 40px;
  border-top: 2px solid #000;
  font-size: 8rem;
}

.body-extras .modal-panel {
  display: flex;
  margin-bottom: 80px;
}

.body-extras .directions-step-by-step {
  display: block;
  height: auto;
}

.body-extras .step-by-step-header {
  display: none;
}
