/*! armazon.css - MIT License - http://git.io/armazon */
/*
	Note: The best way to structure the use of media queries is to create the queries
	near the relevant code. For example, if you wanted to change the styles for buttons
	on small devices, paste the mobile query code up in the buttons section and style it
	there.

	Default mobile-first approach:
		@media (min-width: 400px) {} 	// Larger than mobile
		@media (min-width: 550px) {} 	// Larger than phablet (also point when grid becomes active)
		@media (min-width: 750px) {} 	// Larger than tablet
		@media (min-width: 1000px) {} 	// Larger than desktop
		@media (min-width: 1200px) {} 	// Larger than Desktop HD
*/
html,
body {
  margin: 0;
  padding: 0;
}
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  font-size: 62.5%;
}
body {
  font-size: 1.6em;
  line-height: 1.45;
  background: #fafafa;
  color: #282828;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: #d31200;
}
a:active,
a:hover {
  outline: 0;
  color: #282828;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
  display: block;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 4em;
}
hr {
  height: 0;
  margin: 20px 0;
  border: none;
  border-top: dotted #bbbbbb 1px;
}
pre {
  overflow: auto;
}
code {
  padding: .25rem .5rem;
  margin: 0 .25rem;
  font-size: 80%;
  white-space: nowrap;
  background: #e1e1e1;
  color: #666666;
  border: solid #bbbbbb 1px;
  border-radius: 2px;
}
pre > code {
  display: block;
  padding: 10px;
  white-space: pre;
  line-height: 1.3;
}
code,
kbd,
pre,
samp {
  font-family: monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
.button,
button,
html input[type="button"],
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  display: inline-block;
  padding: 0 4rem;
  height: 4rem;
  line-height: 4rem;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: .3rem;
  text-align: center;
  color: #666666;
  background: #fafafa;
  border: solid #bbbbbb 1px;
  white-space: nowrap;
  border-radius: 3px;
}
.button:hover,
.button:focus,
button:hover,
button:focus,
html input[type="button"]:hover,
html input[type="button"]:focus,
input[type="button"]:hover,
input[type="button"]:focus,
input[type="reset"]:hover,
input[type="reset"]:focus,
input[type="submit"]:hover,
input[type="submit"]:focus {
  text-decoration: none;
  border: solid #666666 1px;
  color: #000;
  outline: 0;
}
.button-main,
input.button-main,
html input.button-main {
  border-color: #d31200;
  color: #d31200;
}
.button-main:hover,
input.button-main:hover,
html input.button-main:hover,
.button-main:focus,
input.button-main:focus,
html input.button-main:focus {
  color: #fff;
  background-color: #d31200;
  border-color: #d31200;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: solid #bbbbbb 1px;
  margin: 0 1px;
  padding: 10px;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
input[type="date"],
input[type="time"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  height: 4rem;
  padding: .5rem 1rem;
  background-color: #fafafa;
  border: solid #bbbbbb 1px;
  border-radius: none;
  box-shadow: none;
  display: block;
  width: 100%;
  max-width: 30rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select {
  border: none;
  outline: 1px solid #bbbbbb;
  outline-offset: -1px;
  border-radius: 0;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
}
textarea {
  min-height: 8rem;
}
input[type="date"]:focus,
input[type="time"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border: solid #d31200 1px;
  outline: 0;
}
select:focus {
  border: none;
  outline: solid #d31200 1px;
  outline-offset: -1px;
  border-radius: 0;
}
label,
legend {
  display: block;
  margin-bottom: .5rem;
}
fieldset {
  padding: 0;
  border-width: 0;
}
input[type="checkbox"],
input[type="radio"] {
  display: inline;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}
th,
td {
  padding: 1rem 2rem;
  text-align: left;
  border-bottom: dotted #bbbbbb 1px;
  vertical-align: baseline;
}
th:first-child,
td:first-child {
  padding-left: 0;
}
th:last-child,
td:last-child {
  padding-right: 0;
}
ul {
  list-style: circle;
}
ol {
  list-style: decimal;
}
ol,
ul {
  padding: 0 0 0 20px;
}
ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1rem 0 1rem 2rem;
}
li {
  margin: 0 0 .5rem 0;
}
dl dd {
  margin: 0 0 1rem 20px;
}
/*
h1, h2, h3, h4, h5, h6 {
	font-weight: 300;
}
h1 { font-size: 4.0rem; line-height: 1.2;  letter-spacing: -.1rem;}
h2 { font-size: 3.6rem; line-height: 1.25; letter-spacing: -.1rem; }
h3 { font-size: 3.0rem; line-height: 1.3;  letter-spacing: -.1rem; }
h4 { font-size: 2.4rem; line-height: 1.35; letter-spacing: -.08rem; }
h5 { font-size: 1.8rem; line-height: 1.5;  letter-spacing: -.05rem; }
h6 { font-size: 1.5rem; line-height: 1.6;  letter-spacing: 0; }
*/
/*
// Larger than phablet
@media (min-width: @grid-breakpoint) {
	h1 { font-size: 5.0rem; }
	h2 { font-size: 4.2rem; }
	h3 { font-size: 3.6rem; }
	h4 { font-size: 3.0rem; }
	h5 { font-size: 2.4rem; }
	h6 { font-size: 1.5rem; }
}
*/
button,
.button,
input,
textarea,
select,
fieldset {
  margin: 0 0 1rem 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre {
  margin: 0 0 10px 0;
}
blockquote,
figure,
table,
ul,
ol,
dl,
form {
  margin: 0 0 20px 0;
}
.row {
  clear: both;
  overflow: auto;
  margin: 0 auto 10px auto;
  width: 100%;
}
[class^="column-"] {
  float: left;
  width: 100%;
}
@media (min-width: 640px) {
  [class^="column-"] {
    margin: 0 2% 0 0;
  }
  [class^="column-"]:last-child {
    margin-right: 0;
  }
  .column-one-sixth {
    width: 15%;
  }
  .column-one-fourth {
    width: 23.5%;
  }
  .column-one-third {
    width: 32%;
  }
  .column-one-half {
    width: 49%;
  }
  .column-two-thirds {
    width: 66%;
  }
  .column-three-fourths {
    width: 74.5%;
  }
  .column-five-sixths {
    width: 83%;
  }
  .shift-one-sixth {
    margin-left: 17%;
  }
  .shift-one-fourth {
    margin-left: 25.5%;
  }
  .shift-one-third {
    margin-left: 34%;
  }
  .shift-one-half {
    margin-left: 51%;
  }
  .shift-two-thirds {
    margin-left: 68%;
  }
  .shift-three-fourths {
    margin-left: 76.5%;
  }
  .shift-five-sixths {
    margin-left: 85%;
  }
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
}
.full-width {
  width: 100%;
}
.max-full-width {
  max-width: 100%;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
#app-menu {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
}
#app-menu aside {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  position: relative;
}
#app-menu aside nav {
  position: absolute;
  left: -300px;
  background: #fff;
  height: 100%;
  width: 300px;
  overflow: scroll;
}
#app-menu aside nav h2 {
  padding: 0 .5rem;
  height: 60px;
  line-height: 60px;
  margin: 0 20px 20px 20px;
  border-bottom: solid #d4d4d4 1px;
  font-weight: 400;
}
#app-menu aside nav h2 span.close-menu {
  float: right;
  cursor: pointer;
  color: #d31200;
  font-size: 1.8rem;
}
#app-menu aside nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#app-menu aside nav ul li {
  display: block;
  margin: 0 20px;
  height: 4rem;
  line-height: 4rem;
  border-bottom: dotted #d4d4d4 1px;
}
#app-menu aside nav ul li i {
  margin: 0 1rem 0 .5rem;
  color: #666666;
}
#app-menu aside nav ul li:last-child {
  border-bottom: none;
}
#app-menu.closed {
  width: 0%;
  -webkit-transition-delay: 0.5s;
  /* Safari */
  transition-delay: 0.5s;
}
#app-menu.closed aside {
  -webkit-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
  background: rgba(0, 0, 0, 0);
}
#app-menu.closed aside nav {
  left: -300px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  box-shadow: none;
}
#app-menu.open {
  width: 100%;
  -webkit-transition: none;
  transition: none;
}
#app-menu.open aside {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background: rgba(0, 0, 0, 0.35);
}
#app-menu.open aside nav {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  left: 0;
  box-shadow: 1px 0 0 rgba(0, 0, 0, 0.1), 4px 0 0 rgba(0, 0, 0, 0.1);
}
body {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 1.5rem;
}
hr {
  display: none;
}
h1,
h2 {
  font-size: 1.6rem;
}
h1 {
  font-weight: 400;
  cursor: pointer;
}
h1 i {
  color: #d31200;
}
h1 a {
  color: #000;
  margin: 0 0 0 .5rem;
}
h2 {
  font-weight: 100;
}
#app-main header {
  z-index: 3;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  line-height: 60px;
  overflow: hidden;
  background: #fafafa;
  padding: 0 20px;
  border-bottom: solid #d4d4d4 1px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.04);
}
#app-main header h1 {
  float: left;
}
#app-main header h2 {
  float: right;
}
#app-main main {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: scroll;
  padding: 60px 0 50px 0;
}
#app-main main section {
  width: 100%;
  height: 100%;
}
#app-main main section h3 {
  display: none;
}
#app-main footer {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  line-height: 50px;
  overflow: hidden;
  background: #fafafa;
  padding: 0 20px;
  border-top: solid #d4d4d4 1px;
  box-shadow: 0 -3px 0 rgba(0, 0, 0, 0.04);
  font-size: 1.2rem;
}
.container {
  width: 100%;
  max-width: 980px;
  min-width: 320px;
  margin: 0 auto;
}
#list {
  padding: 0 0 20px 0;
}
#list table td {
  padding: 1rem 0;
  margin: 0;
  text-align: center;
  vertical-align: top;
}
#list table td small {
  display: block;
  font-size: 1.2rem;
  font-weight: 300;
  height: 20px;
  line-height: 20px;
  color: #666666;
  overflow: hidden;
}
#list table td strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 100;
  height: 25px;
  line-height: 25px;
  overflow: hidden;
}
#list table td strong a {
  font-weight: 300;
}
#list table td strong a i {
  display: inline;
}
#list table td i {
  display: block;
}
#list table td b {
  display: block;
}
#list table td.list-number {
  width: 60px;
}
#list table td.list-star {
  width: 40px;
  font-size: 2.6rem;
  vertical-align: middle;
  color: #bbbbbb;
}
#list table td.list-desc {
  text-align: left;
  padding: 1rem .5rem 1rem 1rem;
}
#list table td.list-status {
  width: 70px;
}
#list ul {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  height: 52px;
  width: 62px;
}
#list ul li {
  display: block;
  float: left;
  margin: 0;
  padding: .3rem 0 0 0;
  height: 50px;
  width: 30px;
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}
#list ul li i {
  font-size: 1.2rem;
}
#list ul li b {
  font-size: 1.8rem;
  font-weight: 300;
}
#list ul li.list-status-anchors {
  background: #fff;
  color: #282828;
  text-shadow: none;
}
#favourites #favourites-empty {
  width: 310px;
  text-align: center;
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: #666666;
}
#favourites #favourites-empty span.fa-stack {
  color: #bbbbbb;
  margin: 0 0 1rem 0;
}
#map {
  height: 100%;
  width: 100%;
}
.station-marker {
  display: block;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4), 0 3px 0 0 rgba(0, 0, 0, 0.1);
  cursor: pointer;
  height: 26px;
  width: 62px;
}
.station-marker span {
  display: block;
  width: 30px;
  height: 24px;
  line-height: 24px;
  float: left;
  text-align: center;
}
.station-marker .station-bikes {
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.station-marker .station-anchors {
  background: #fff;
  color: #282828;
}
.station-marker.small-marker {
  height: 12px;
  width: 12px;
  border-radius: 12px;
}
.station-marker.small-marker span {
  display: none;
}
#station-overlay-marker {
  display: block;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4), 0 3px 0 0 rgba(0, 0, 0, 0.1);
  height: 20px;
  width: 20px;
  border-radius: 20px;
}
.station-status-0 {
  background: #bb0303;
  border: solid #a20303 1px;
}
.station-status-28 {
  background: #d30606;
  border: solid #ba0505 1px;
}
.station-status-42 {
  background: #f24e0c;
  border: solid #da460b 1px;
}
.station-status-58 {
  background: #f38e0c;
  border: solid #db800b 1px;
}
.station-status-72 {
  background: #ffa810;
  border: solid #f69c00 1px;
}
.station-status-86 {
  background: #f4ca0f;
  border: solid #dfb80a 1px;
}
.station-status-99 {
  background: #b3da0d;
  border: solid #9fc20c 1px;
}
.station-status-100 {
  background: #79ee0a;
  border: solid #6dd609 1px;
}
#station-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
  padding: 20px;
  z-index: 2000;
}
#station-overlay #station-overlay-content {
  width: 100%;
  height: 100%;
  max-width: 980px;
  margin: 0 auto;
  background: #fafafa;
  border: solid #808080 1px;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
  position: relative;
  padding: 70px 0 0 0;
}
#station-overlay #station-overlay-content #station-overlay-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  line-height: 60px;
  padding: 10px 20px 0 20px;
}
#station-overlay #station-overlay-content #station-overlay-header h2 {
  float: left;
  width: 100%;
  font-weight: 400;
  border-bottom: solid #d4d4d4 1px;
  padding: 0 0 0 .5rem;
}
#station-overlay #station-overlay-content #station-overlay-header span#station-overlay-close {
  position: absolute;
  top: 10px;
  right: 30px;
  cursor: pointer;
  color: #d31200;
  font-size: 1.8rem;
}
#station-overlay #station-overlay-content #station-overlay-main {
  clear: both;
  width: 100%;
  height: 100%;
  padding: 200px 0 0 0;
}
#station-overlay #station-overlay-content #station-overlay-main #station-overlay-inner {
  height: 200px;
  width: 100%;
  position: absolute;
  top: 70px;
  padding: 20px 25px;
  overflow: auto;
}
#station-overlay #station-overlay-content #station-overlay-main #station-overlay-inner h3 {
  font-size: 1.6rem;
  font-weight: 300;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  height: 3rem;
  margin: 0 0 1rem 0;
}
#station-overlay #station-overlay-content #station-overlay-main #station-overlay-inner ul {
  float: left;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
}
#station-overlay #station-overlay-content #station-overlay-main #station-overlay-inner ul li {
  margin: 0;
  padding: 0;
  height: 24px;
}
#station-overlay #station-overlay-content #station-overlay-main #station-overlay-inner ul i {
  color: #666666;
  margin: 0 .5rem 0 0;
}
#station-overlay #station-overlay-content #station-overlay-main #station-overlay-inner #station-overlay-status {
  width: 102px;
  height: 82px;
  float: left;
  margin: 0 2rem 0 0;
}
#station-overlay #station-overlay-content #station-overlay-main #station-overlay-inner #station-overlay-status span {
  display: block;
  float: left;
  text-align: center;
  height: 80px;
  width: 50px;
  overflow: hidden;
  padding: 7px 0;
}
#station-overlay #station-overlay-content #station-overlay-main #station-overlay-inner #station-overlay-status span i {
  display: block;
  height: 20px;
}
#station-overlay #station-overlay-content #station-overlay-main #station-overlay-inner #station-overlay-status span strong {
  display: block;
  font-size: 2.6rem;
  font-weight: 300;
  height: 45px;
  letter-spacing: -2px;
}
#station-overlay #station-overlay-content #station-overlay-main #station-overlay-inner #station-overlay-status span.station-bikes {
  color: #fff;
}
#station-overlay #station-overlay-content #station-overlay-main #station-overlay-inner #station-overlay-status span.station-anchors {
  background: #fff;
}
#station-overlay #station-overlay-content #station-overlay-main #station-overlay-map {
  width: 100%;
  height: 100%;
  background: #eee;
}
#station-overlay.closed {
  -webkit-transition: background-color 0.3s ease-out, left 0.3s ease-out 0.3s;
  transition: background-color 0.3s ease-out, left 0.3s ease-out 0.3s;
  background-color: rgba(0, 0, 0, 0);
  left: -100%;
}
#station-overlay.open {
  -webkit-transition: background-color 0.3s ease-out 0.3s, left 0.3s ease-out;
  transition: background-color 0.3s ease-out 0.3s, left 0.3s ease-out;
  background: rgba(0, 0, 0, 0.35);
  left: 0;
}
#loading-overlay {
  z-index: 3000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
}
#loading-overlay.closed {
  -webkit-transition: top 0.6s ease-in 1s;
  transition: top 0.6s ease-in 1s;
  top: -100%;
}
#loading-overlay #loading-main {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 140px;
  margin: 0 auto;
}
#loading-overlay #loading-main h1 {
  text-align: center;
}
#loading-overlay #loading-main ul {
  width: 60px;
  list-style: none;
  position: relative;
  margin: 0 0 0 45px;
  height: 10px;
}
#loading-overlay #loading-main ul li {
  display: block;
  float: left;
  width: 10px;
  height: 10px;
  background: #d31200;
  position: absolute;
  top: 0;
  animation: loading 1s infinite;
  transform: scale(0.2);
  opacity: .2;
}
#loading-overlay #loading-main ul li:nth-child(1n) {
  left: 0px;
  animation-delay: 0s;
}
#loading-overlay #loading-main ul li:nth-child(2n) {
  left: 20px;
  animation-delay: 0.2s;
}
#loading-overlay #loading-main ul li:nth-child(3n) {
  left: 40px;
  animation-delay: 0.4s;
}
@keyframes loading {
  0% {
    transform: scale(0.2);
    opacity: .2;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.2);
    opacity: .2;
  }
}
