/* Global elements */
body {
  background: #515253;
  color: #0c0d0e;
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  font-size: 16px;
}
a {
  color: #3489c8;
}
strong {
  font-weight: 800;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 800;
  line-height: 1em;
  margin: 1rem 0;
}
p,
table {
  margin: 0.5rem 0;
}
h1 {
  font-size: 2em;
}
h2 {
  font-size: 2em;
}
h3 {
  font-size: 2em;
  font-weight: 300;
}
h4 {
  font-size: 1.5em;
  font-weight: 300;
}
h5 {
  font-size: 1em;
}
table {
  width: 100%;
}
th,
td {
  padding: 0.5em;
}
th {
  text-align: left;
}
tbody tr:nth-child(odd) {
  background-color: #f2f2f3;
}
code,
pre {
  background: #f2f2f3;
  color: #515253;
  font-family: monospace;
}
/* Buttons */
.button {
  font-family: inherit;
  font-size: inherit;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  border: none;
  border-bottom: 2px solid;
  border-radius: 3px;
  cursor: pointer;
  padding: 0.5em 1.5em;
  text-decoration: none;
  box-sizing: border-box;
  color: #2e2f30;
  background-color: #f2f2f3;
  border-color: #d9d9dc;
}
.button:hover:enabled,
.button:active:enabled {
  color: #2e2f30;
  background-color: #d9d9dc;
  border-color: #c2c2c7;
}
.button[disabled] {
  opacity: 0.5;
  font-weight: normal;
  cursor: default;
}
.button p {
  margin: 0.5em 0;
}
.button-primary {
  color: #fefefe;
  background-color: #3489c8;
  border-color: #2f7bb4;
}
.button-primary:hover:enabled,
.button-primary:active:enabled {
  color: #fefefe;
  background-color: #2f7bb4;
  border-color: #2a6fa2;
}
.button-success {
  color: #fefefe;
  background-color: #34ae5a;
  border-color: #2f9d51;
}
.button-success:hover:enabled,
.button-success:active:enabled {
  color: #fefefe;
  background-color: #2f9d51;
  border-color: #2a8d49;
}
.button-warning {
  color: #fefefe;
  background-color: #deb768;
  border-color: #d8aa4d;
}
.button-warning:hover:enabled,
.button-warning:active:enabled {
  color: #fefefe;
  background-color: #d8aa4d;
  border-color: #d39f35;
}
.button-danger {
  color: #fefefe;
  background-color: #e62426;
  border-color: #d7191a;
}
.button-danger:hover:enabled,
.button-danger:active:enabled {
  color: #fefefe;
  background-color: #d7191a;
  border-color: #c21717;
}
.button-ghost {
  color: inherit;
  background-color: transparent;
  border-color: rgba(0,0,0,0);
}
.button-ghost:hover:enabled,
.button-ghost:active:enabled {
  color: inherit;
  background-color: rgba(0,0,0,0.4);
  border-color: rgba(0,0,0,0.4);
}
.fab,
.far,
.fas {
  font-weight: normal;
}
/* Global classes */
.success {
  color: #34ae5a;
}
.warning {
  color: #deb768;
}
.danger {
  color: #e62426;
}
.well {
  border: 1px solid;
  margin: 1em 0;
  padding: 0.5em 1em;
  background: #f2f2f3;
  border: 1px solid rgba(0,0,0,0.25);
}
.success-well {
  background: #34ae5a;
  color: #fefefe;
}
.warning-well {
  background: #deb768;
  color: #fefefe;
}
.danger-well {
  background: #e62426;
  color: #fefefe;
}
.hidden {
  display: none !important;
}
.form {
  margin-bottom: 2em;
}
.label {
  display: block;
}
.input {
  display: block;
  box-sizing: border-box;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  border: 2px solid #d9d9dc;
  border-radius: 3px;
  padding: 0.25em;
}
.input-inline {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  max-width: 20em;
  min-width: 1em;
}
.label-inline {
  display: inline-block;
  vertical-align: middle;
}
.float-left {
  float: left;
  margin-right: 1em;
  margin-bottom: 0.5em;
}
.float-right {
  float: right;
  margin-left: 1em;
  margin-bottom: 0.5em;
}
.float-clear {
  clear: both;
}
.flex-container {
  display: flex;
}
.flex-grow {
  flex: 1 0;
}
.flex-fixed {
  flex: 0 0;
}
.normal {
  font-weight: normal;
}
.align-right {
  text-align: right;
}
.align-middle {
  vertical-align: middle;
}
.spacer {
  margin-right: 1em;
}
.dragscroll {
  cursor: grab;
  cursor: -o-grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: auto;
  background-color: rgba(0,0,0,0.15);
}
.modal-container {
  position: relative;
  background: #fefefe;
  border: 1px solid rgba(0,0,0,0.25);
  margin: 5em auto 0 auto;
  padding: 2em;
  max-width: 30em;
}
.modal-close {
  position: absolute;
  top: 0px;
  right: 5px;
  font-size: 2em !important;
  cursor: pointer;
}
/* Sticky header */
@media screen and (min-device-width: 480px) {
  .sticky-body.sticky-fixed {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
  }
  .sticky-body.sticky-fixed .sticky-container {
    box-sizing: border-box;
    background: #fefefe;
    border-bottom: 2px solid #d9d9dc;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);
    max-width: 1370px;
    margin: 0 auto;
    padding: 1em 6em;
  }
}
/* Layout */
html,
body {
  margin: 0;
  padding: 0;
}
.container {
  background: #fefefe;
  max-width: 1370px;
  margin: 0 auto;
}
.header-container {
  padding: 0 6em;
  padding-top: 5em;
  padding-bottom: 4em;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: -0.5em;
}
.column {
  flex: 0;
  margin: 0.5em;
}
/* Header */
.header {
  background: #f2f2f3;
}
.hero {
  color: #f2f2f3;
  background-size: cover;
  background-position: center;
}
.hero h1,
.hero h2,
.hero h3 {
  text-shadow: 0 0 20px #000;
}
.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-device-width: 480px) {
  .nav {
    justify-content: center;
  }
}
.logo img {
  height: 3.5em;
}
.links > * {
  margin: 0.25em;
  display: inline-block;
}
@media screen and (max-device-width: 480px) {
  .links > * {
    display: block;
    width: 100%;
  }
}
.jumbotron {
  padding-bottom: 2em;
  letter-spacing: 0.1em;
  text-align: center;
}
.jumbotron h1 {
  font-size: 3em;
  margin-bottom: 1rem;
}
.downloads {
  padding-bottom: 2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.downloads > * {
  width: 9em;
}
.news {
  padding: 2em 6em;
  text-align: center;
}
.news p {
  margin: 0;
}
/* Footer */
.footer {
  background: #f2f2f3;
}
@media screen and (max-device-width: 480px) {
  .footer {
    padding: 1em 1em;
  }
}
/* Content */
.modules-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.modules-nav h2 {
  margin: 0;
}
.modules-sticky {
  padding-bottom: 1em;
}
.content {
  padding: 3em 6em;
}
@media screen and (max-device-width: 480px) {
  .content {
    padding: 1em 1em;
  }
}
/* Plugins */
.plugins {
  margin: 2em auto;
}
.plugins td,
.plugins th {
  white-space: nowrap;
}
.plugin-name {
  width: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 18em;
}
.plugin-author {
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 12em;
}
.plugin-action {
  text-align: right;
}
.actions {
  margin: -0.25em;
}
.actions > * {
  margin: 0.25em;
}
/* Rack */
.rack {
  margin-left: -6em;
  margin-right: -6em;
  padding: 0 97.5px;
  background: url("images/rail.png");
  background-size: 15px 190px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 2em;
  margin-bottom: 2em;
}
a.rack-plugin {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  margin-right: 37.5px;
  min-width: 180px;
  color: inherit;
  text-decoration: inherit;
}
a.rack-plugin:hover {
  opacity: 0.5;
}
.rack-module {
  display: block;
  height: 190px;
  margin-right: 7.5px;
}
.rack-info {
  font-size: 1.25em;
  position: absolute;
  top: 0;
  left: 0;
  margin: 1em;
  padding: 0.5em 1em;
  background: rgba(0,0,0,0.75);
  color: #fff;
}
.rack-name {
  font-weight: 700;
}
/* Social */
.social-container {
  display: flex;
  flex-wrap: wrap;
  margin: -1em;
  margin-top: 2em;
}
.social {
  margin: 1em;
  height: 450px;
  width: 330px;
  flex: 1 0 auto;
}
.social.social-twitter {
  overflow: auto;
}
/* Feature page */
.feature-header {
  margin-top: 2em;
  margin-bottom: 4em;
  font-size: 1.5rem;
  text-align: center;
  position: relative;
}
.feature-header h1 {
  font-size: 4rem;
  line-height: 6rem;
  margin: 0;
}
.feature-header h3 {
  font-size: 2rem;
  margin: 0;
}
.feature-header .product-action {
  position: absolute;
  right: 0;
}
.feature-showcase {
  margin-bottom: 6em;
  margin-left: -6em;
  margin-right: -6em;
}
.feature-showcase > * {
  display: block;
  width: 100%;
}
.feature-description {
  text-align: center;
  margin-bottom: 4em;
  margin-left: 10%;
  margin-right: 10%;
  font-size: 1.5rem;
}
.feature-demos {
  margin-bottom: 4em;
}
.feature-demos > * {
  margin-bottom: 2em;
}
.feature-vimeo {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.feature-vimeo iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.feature-soundcloud > * {
  width: 100%;
  height: 155px;
}
.feature-h {
  margin-bottom: 2rem;
}
.feature-manual {
  margin-bottom: 2rem;
}
@media all and (min-width: 1100px) {
  .feature-manual {
    column-count: 2;
    column-gap: 2em;
  }
}
.feature-legend {
  margin-bottom: 1em;
}
.feature-legend img {
  width: 100%;
}
.feature-links {
  text-align: right;
}
.feature-link-name {
  margin-right: 1em;
}
