@import 'https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en';
.btn {
  position: relative;
  display: inline-block;
  margin: 30px auto;
  padding: 0;
  overflow: hidden;
  border-width: 0;
  outline: none;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.6);
  text-transform: uppercase;
  text-decoration: none;
  background-color: #fff;
  color: #333;
  transition: background-color 0.3s;
}
.btn > * {
  position: relative;
}
.btn span {
  display: block;
  padding: 12px 24px;
}
.btn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0;
  padding-top: 0;
  border-radius: 100%;
  background-color: rgba(236,240,241,0.3);
  transform: translate(-50%, -50%);
}
.btn:active:before {
  width: 120%;
  padding-top: 120%;
  transition: width 0.2s ease-out, padding-top 0.2s ease-out;
}
.btn:hover,
.btn:focus {
  background-color: #f5f5f5;
}
#appFooter {
  margin-top: 2em;
  width: 100%;
  left: 0;
  bottom: 0;
  box-sizing: border-box;
  box-shadow: inset 0 9px 16px -12px #222;
  padding: 4em 3em;
  background: #d3d3d3;
}
#appFooter .descr br {
  clear: both;
}
#appFooter .descr a {
  margin-left: 0.5em;
}
#appFooter .descr a.licenseBadge {
  margin-left: 0;
  margin-right: 1em;
  margin-top: 0.3em;
  display: block;
  float: left;
}
#appFooter .descr strong {
  margin: 0 0.5em;
}
#appFooter .footerCont {
  margin: auto;
  max-width: pageWidthLimit;
}
@media only screen and (min-width: 600px) {
  #appFooter .footerCont {
    display: flex;
    flex-flow: space-between;
  }
}
#appFooter .footerCont div {
  flex: 1 1;
}
@media only screen and (max-width: 800px) {
  #appFooter .footerCont .projLogoCont {
    width: 7em;
    max-width: 100%;
    margin: 1em auto;
  }
}
@media only screen and (min-width: 600px) {
  #appFooter .footerCont .projLogoCont {
    border-left: 1px solid #8a8a8a;
    padding-left: 1.3em;
    margin-left: 1.3em;
    flex: 0 1 9em;
  }
}
#appFooter .footerCont .projLogoCont a {
  opacity: 0.4;
  display: block;
  text-decoration: none;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s materialBezier;
}
#appFooter .footerCont .projLogoCont a img {
  max-width: 100%;
  max-height: 100%;
  filter: saturate(0%);
  -webkit-filter: saturate(0%);
  transition: all 0.3s materialBezier;
}
#appFooter .footerCont .projLogoCont a:hover {
  opacity: 1;
  filter: none;
}
#appFooter .footerCont .projLogoCont a:hover img {
  filter: saturate(100%);
  -webkit-filter: saturate(100%);
}
html,
body {
  background-color: #fafafa;
  margin: 0;
}
body {
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
}
h1,
h2 {
  font-family: 'Roboto', 'Helvetica', 'Arial', sans-serif;
}
ul {
  list-style: none;
  padding: 0;
}
a {
  color: #2196f3;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
section,
h1 {
  max-width: 900px;
  margin: auto;
}
.cover {
  max-width: none;
  display: block;
  padding: 8em 2em;
  background: #C9D3D7 url("img/pattern_small.png");
  box-shadow: inset 0 -7px 16px -12px #222;
  margin-bottom: 2em;
}
@media only screen and (max-width: 800px) {
  .cover {
    padding: 4em 2em;
  }
}
.cover .inside {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: auto;
}
@media only screen and (max-width: 800px) {
  .cover .inside {
    flex-direction: column;
  }
}
.cover h1 {
  font-size: 3em;
  font-weight: 300;
  color: #008FC3;
}
.cover .logo {
  width: 15em;
  height: 15em;
}
@media only screen and (max-width: 800px) {
  .cover .logo {
    max-width: 8em;
    max-height: 8em;
    width: 70vw;
    height: 70vw;
    margin-top: 2em;
  }
}
.cover .logo img {
  max-width: 100%;
  max-height: 100%;
}
.summary ul li {
  font-size: 0.9em;
  display: inline-block;
  line-height: 1.5em;
}
.summary ul li:after {
  content: '|';
  margin: 0 0.3em;
}
.summary ul li:last-of-type:after {
  content: none;
}
.summary ul li a {
  text-decoration: none;
  color: #555;
}
.summary ul li a:hover {
  text-decoration: underline;
  color: #333;
}
.card {
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
}
.card ul.list {
  padding: 1em 0;
}
.card ul.list > li {
  margin: 1em 2em;
  padding: 1em;
  border-bottom: 1px solid #999;
}
.card h2 {
  font-weight: 300;
  margin: 0;
}
.card h2 a {
  text-decoration: none;
  color: inherit;
}
.card h2 span {
  font-variant: small-caps;
}
.card h2 small {
  display: block;
  font-size: 0.5em;
  opacity: 0.6;
  font-family: "Lucida Console", Monaco, monospace;
}
.card ul.features {
  display: table;
}
.card ul.features li {
  display: table-row;
  margin: 0.5em;
  font-size: 0.9em;
}
.card ul.features li div {
  display: table-cell;
  padding: 0.5em;
  vertical-align: text-top;
}
.card ul.features li .prop {
  font-variant: small-caps;
  opacity: 0.8;
}
.card ul.features li small {
  opacity: 0.5;
  font-size: 0.8em;
}
.model-pics img {
  max-width: 100%;
}
/*# sourceMappingURL=styles.css.map */
