@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: local('Roboto Light'), local('Roboto-Light'), url(fonts/roboto-light.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'), url(fonts/roboto-regular.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  src: local('Roboto Medium'), local('Roboto-Medium'), url(fonts/roboto-medium.ttf) format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold'), url(fonts/roboto-bold.ttf) format('truetype');
}


* {
    box-sizing: border-box;
}
body {
    font-size: 16px;
    font-family: Roboto, sans-serif;
    color: black;
    margin: 0;
    padding: 0;
}
header {
    position: fixed;
    top: 0px;
    left: 0px;
    margin: 0;
    padding: 0 10px;
    width: 100%;
    height: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgb(242,138,0);
    color: white;
    box-shadow: 0px 4px 20px 0px rgba(0,0,0,0.3);
    z-index: 999;
}
main {
    position: relative;
    margin-top: 66px;
}
section {
    margin: 10px 10px 0 10px;
}
h1 {
    margin: 0;
    padding: 0;
    font-weight: normal;
}
h2 {
    font-size: 14px;
    text-transform: uppercase;
}
button {
    margin: 0;
    padding: 0;
    width: 24px;
    height: 24px;
    border: none;
    outline: none;
    background-color: transparent;
}
svg {
    color: #a9a9a9;
}
#stations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 10px;
    background-color: white;
}
#stations ol {
    list-style-type: none;
    padding: 0;
}
#stations li {
    display: flex;
}
.distance {
    flex: 10%;
    text-align: right;
}
.name {
    flex: 80%;
    padding-left: 10px;
}
.favorite {
    flex: 10%;
    text-align: right;
}
.icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    stroke-width: 0;
    stroke: #a9a9a9;
    fill: #a9a9a9;
}
.icon.small {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}
.icon-action,
.icon-search,
.icon-done {
    color: #ffffff;
    fill: #ffffff;
}
.message {
    padding: 10px;
    background-color: rgba(0,0,0,0.1);
    color: rgba(0,0,0,0.8);
    border: 1px solid rgba(0,0,0,0.2);
    text-align: center;
}
