/* Global elements */
html {
  scroll-behavior: smooth;
}
body {
  background: #444;
  color: #000;
  font-family: "Gotham Rounded A", "Gotham Rounded B", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
}
a {
  color: #00a0f9;
  text-decoration: none;
}
strong {
  font-weight: 500;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  break-after: avoid;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
table {
  margin: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
h1 {
  font-size: 2em;
}
h2 {
  font-size: 1.7em;
  font-weight: 400;
}
h3 {
  font-size: 1.5em;
}
h4 {
  font-size: 1.5em;
  font-weight: 400;
}
h5 {
  font-size: 1em;
}
h6 {
  font-size: 1em;
  font-weight: 400;
}
th,
td {
  text-align: left;
}
code {
  font-family: monospace;
  font-size: 14px;
  border-radius: 3px;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  break-inside: avoid;
}
hr {
  margin-top: 2em;
  margin-bottom: 2em;
  border: none;
  height: 1px;
  background: #ddd;
}
input[type="checkbox"] {
  position: relative;
  top: 2px;
}
/* Global classes */
.success {
  color: #39c93c;
}
.warning {
  color: #f9b130;
}
.danger {
  color: #f00;
}
.well {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding: 0 1em;
  background: #f2f2f2;
  border: 1px solid rgba(0,0,0,0.25);
  break-inside: avoid;
}
.success-well {
  background: #39c93c;
}
.warning-well {
  background: #f9b130;
}
.danger-well {
  background: #f00;
}
.hidden {
  display: none !important;
}
.label {
  display: block;
}
.input {
  font-family: inherit;
  font-size: inherit;
  display: block;
  width: 100%;
  border: none;
  border-radius: 3px;
  padding: 0.5em 1em;
  box-sizing: border-box;
  background: #f2f2f2;
  color: #888;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.input::-webkit-input-placeholder,
.input::-moz-placeholder,
.input:-ms-input-placeholder,
.input:-moz-placeholder {
  color: #a2a2a2;
}
.input:focus {
  outline: none;
}
.input option {
  color: #000;
}
.input option:disabled {
  color: #888;
}
.input-inline {
  display: inline-block;
  margin-left: 0;
  max-width: 20em;
  min-width: 1em;
}
.label-inline {
  display: inline-block;
  vertical-align: middle;
}
.float-left {
  float: left;
  margin-right: 1rem;
  margin-bottom: 0.5rem;
}
.float-right {
  float: right;
  margin-left: 1rem;
  margin-bottom: 0.5rem;
}
.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: 1rem;
}
.dragscroll {
  cursor: grab;
  cursor: -o-grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}
.uppercase {
  text-transform: uppercase;
}
.muted {
  color: #888;
}
.dotted {
  text-decoration-line: underline;
  text-decoration-style: dotted;
}
.fab,
.far,
.fas {
  font-weight: normal;
}
/* Buttons */
.button {
  font-family: inherit;
  font-size: inherit;
  font-weight: bold;
  display: inline-block;
  text-align: center;
  border: none;
  border-radius: 10em;
  padding: 0.5em 1em;
  text-decoration: none;
  box-sizing: border-box;
  color: #626262;
  background-color: #f2f2f2;
}
a.button,
button.button {
  cursor: pointer;
}
a.button:not(:disabled):hover,
button.button:not(:disabled):hover,
a.button.button-active,
button.button.button-active {
  color: #626262;
  background-color: #c2c2c2;
}
.button[disabled] {
  color: rgba(98,98,98,0.5);
  background-color: rgba(242,242,242,0.5);
}
.button[disabled] {
  font-weight: normal;
  cursor: default;
}
.button p {
  margin: 0.5em 0;
}
.button-group {
  display: inline-flex;
  flex-wrap: wrap;
}
.button-group .button {
  border-radius: 0;
  margin-left: 0.1em;
  margin-right: 0.1em;
}
.button-group .button:first-child {
  border-top-left-radius: 10em;
  border-bottom-left-radius: 10em;
}
.button-group .button:last-child {
  border-top-right-radius: 10em;
  border-bottom-right-radius: 10em;
}
.button-primary {
  color: #fff;
  background-color: #00a0f9;
}
a.button-primary:not(:disabled):hover,
button.button-primary:not(:disabled):hover,
a.button-primary.button-active,
button.button-primary.button-active {
  color: #fff;
  background-color: #0080c7;
}
.button-primary[disabled] {
  color: rgba(255,255,255,0.5);
  background-color: rgba(0,160,249,0.5);
}
.button-success {
  color: #fff;
  background-color: #39c93c;
}
a.button-success:not(:disabled):hover,
button.button-success:not(:disabled):hover,
a.button-success.button-active,
button.button-success.button-active {
  color: #fff;
  background-color: #2ca22f;
}
.button-success[disabled] {
  color: rgba(255,255,255,0.5);
  background-color: rgba(57,201,60,0.5);
}
.button-tag {
  padding: 0em 0.5em;
  font-weight: inherit;
  color: #444;
  background-color: #e5f5fe;
}
a.button-tag:not(:disabled):hover,
button.button-tag:not(:disabled):hover,
a.button-tag.button-active,
button.button-tag.button-active {
  color: #444;
  background-color: #88d1fa;
}
.button-tag[disabled] {
  color: rgba(68,68,68,0.5);
  background-color: rgba(229,245,254,0.5);
}
.button-warning {
  color: #fff;
  background-color: #f9b130;
}
a.button-warning:not(:disabled):hover,
button.button-warning:not(:disabled):hover,
a.button-warning.button-active,
button.button-warning.button-active {
  color: #fff;
  background-color: #e79707;
}
.button-warning[disabled] {
  color: rgba(255,255,255,0.5);
  background-color: rgba(249,177,48,0.5);
}
.button-danger {
  color: #fff;
  background-color: #f00;
}
a.button-danger:not(:disabled):hover,
button.button-danger:not(:disabled):hover,
a.button-danger.button-active,
button.button-danger.button-active {
  color: #fff;
  background-color: #c00;
}
.button-danger[disabled] {
  color: rgba(255,255,255,0.5);
  background-color: rgba(255,0,0,0.5);
}
.button-ghost {
  font-weight: inherit;
  color: #888;
  background-color: transparent;
}
a.button-ghost:not(:disabled):hover,
button.button-ghost:not(:disabled):hover,
a.button-ghost.button-active,
button.button-ghost.button-active {
  color: #000;
  background-color: transparent;
}
.button-ghost[disabled] {
  color: rgba(136,136,136,0.5);
  background-color: rgba(0,0,0,0);
}
.button-ghost-primary {
  font-weight: inherit;
  color: #00a0f9;
  background-color: transparent;
}
a.button-ghost-primary:not(:disabled):hover,
button.button-ghost-primary:not(:disabled):hover,
a.button-ghost-primary.button-active,
button.button-ghost-primary.button-active {
  color: #0080c7;
  background-color: transparent;
}
.button-ghost-primary[disabled] {
  color: rgba(0,160,249,0.5);
  background-color: rgba(0,0,0,0);
}
.button-ghost-success {
  font-weight: inherit;
  color: #39c93c;
  background-color: transparent;
}
a.button-ghost-success:not(:disabled):hover,
button.button-ghost-success:not(:disabled):hover,
a.button-ghost-success.button-active,
button.button-ghost-success.button-active {
  color: #2ca22f;
  background-color: transparent;
}
.button-ghost-success[disabled] {
  color: rgba(57,201,60,0.5);
  background-color: rgba(0,0,0,0);
}
.button-ghost-warning {
  font-weight: inherit;
  color: #f9b130;
  background-color: transparent;
}
a.button-ghost-warning:not(:disabled):hover,
button.button-ghost-warning:not(:disabled):hover,
a.button-ghost-warning.button-active,
button.button-ghost-warning.button-active {
  color: #e79707;
  background-color: transparent;
}
.button-ghost-warning[disabled] {
  color: rgba(249,177,48,0.5);
  background-color: rgba(0,0,0,0);
}
.button-ghost-danger {
  font-weight: inherit;
  color: #f00;
  background-color: transparent;
}
a.button-ghost-danger:not(:disabled):hover,
button.button-ghost-danger:not(:disabled):hover,
a.button-ghost-danger.button-active,
button.button-ghost-danger.button-active {
  color: #c00;
  background-color: transparent;
}
.button-ghost-danger[disabled] {
  color: rgba(255,0,0,0.5);
  background-color: rgba(0,0,0,0);
}
.button-ghost-dark {
  font-weight: inherit;
  color: #fff;
  background-color: transparent;
}
a.button-ghost-dark:not(:disabled):hover,
button.button-ghost-dark:not(:disabled):hover,
a.button-ghost-dark.button-active,
button.button-ghost-dark.button-active {
  color: #ccc;
  background-color: transparent;
}
.button-ghost-dark[disabled] {
  color: rgba(255,255,255,0.5);
  background-color: rgba(0,0,0,0);
}
/* Layout */
html,
body {
  margin: 0;
  padding: 0;
}
.container {
  max-width: 1370px;
  margin: 0 auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: -0.5em;
  justify-content: space-between;
}
.column {
  flex: 1 auto;
  margin: 0.5em;
}
.dual {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.dual-left {
  flex: 1 auto;
}
.dual-right {
  flex: 0 auto;
}
/* Tooltip */
[data-tooltip] {
  position: relative;
}
[data-tooltip]::before {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
  pointer-events: none;
  width: 10em;
  content: attr(data-tooltip);
  font-size: initial;
  color: initial;
  text-align: center;
  padding: 0.5em 0.5em;
  background: #f2f2f2;
  border: 1px solid rgba(0,0,0,0.25);
  opacity: 1;
}
[data-tooltip]:hover::before {
  display: block;
}
/* Header */
.header {
  font-size: 1.2em;
  margin-bottom: 0.5rem;
  background: #171717;
  color: #fff;
  padding: 2em 3em;
}
@media (max-width: 800px) {
  .header {
    padding: 1em 1em;
    text-align: center;
  }
}
.logo img {
  height: 40px;
}
/* Footer */
.footer {
  padding-bottom: 2em;
  background: #171717;
  color: #fff;
  padding: 2em 3em;
}
@media (max-width: 800px) {
  .footer {
    padding: 1em 1em;
  }
}
.footer .logo {
  opacity: 0.5;
}
.footer a {
  color: inherit;
}
.footer ul {
  padding-left: 0;
}
.footer li {
  list-style-type: none;
}
/* 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 {
  background: #fff;
  padding: 2em 3em;
  margin-bottom: 0.5rem;
}
@media (max-width: 800px) {
  .content {
    padding: 1em 1em;
  }
}
.content > hr {
  padding-left: 3em;
  padding-right: 3em;
  margin-left: -3em;
  margin-right: -3em;
}
@media (max-width: 800px) {
  .content > hr {
    padding-left: 1em;
    padding-right: 1em;
    margin-left: -1em;
    margin-right: -1em;
  }
}
/* Front page */
.front {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.25rem;
  margin-right: -0.25rem;
}
@media (max-width: 800px) {
  .front {
    margin-left: 0;
    margin-right: 0;
  }
}
.front-box {
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-grow: 1;
  flex-shrink: 0;
  height: 500px;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  margin-bottom: 0.5rem;
  overflow: hidden;
  color: #fff;
  position: relative;
  text-shadow: #000 0 0 10px;
}
@media (max-width: 800px) {
  .front-box {
    margin-left: 0;
    margin-right: 0;
  }
}
.front-box > * {
  position: absolute;
}
.front-image {
  height: unset;
}
.front-full {
  width: 75%;
}
.front-half {
  width: 40%;
}
@media (max-width: 800px) {
  .front-half {
    width: 75%;
  }
}
.front-third {
  width: 28%;
}
@media (max-width: 800px) {
  .front-third {
    width: 75%;
  }
}
@media not all and (max-width: 800px) {
  .front-hero {
    height: 650px;
  }
}
@media (max-width: 800px) {
  .front-mobile-hidden {
    display: none;
  }
}
.front-overlay {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.66);
}
.front-overlay-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 90%;
  font-size: 1.75em;
}
.front-overlay-bottom {
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.66);
  font-size: 1.2em;
  padding: 1em 2em;
}
.front-overlay-bottom > * {
  margin: 0.25em 0;
}
.front-overlay-hero-top {
  top: 2%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 2.5em;
}
@media (max-width: 800px) {
  .front-overlay-hero-top {
    top: -1%;
  }
}
.front-overlay-hero-bottom {
  bottom: 1%;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 1.75em;
}
@media (max-width: 800px) {
  .front-overlay-hero-bottom {
    bottom: -1%;
  }
}
.front-overlay-ribbon {
  position: absolute;
  left: -50px;
  top: 25px;
  text-align: center;
  width: 200px;
  line-height: 50px;
  text-shadow: none;
  transform: rotate(-45deg);
  box-shadow: 0 2px 3px rgba(0,0,0,0.66);
  background: #ffd815;
  color: #000;
  font-size: 1.4em;
  font-weight: 500;
  text-transform: uppercase;
}
.front-digit {
  display: inline-block;
  width: 1em;
  font-size: 2em;
  font-weight: 500;
  margin: 0 0.05em;
  line-height: 1.2;
  color: #000;
  text-shadow: none;
  border-radius: 0.05em;
  background: linear-gradient(#f6f6f6 49%, #666 49%, #666 51%, #f6f6f6 51%);
}
/* Feature page */
.feature-header {
  margin-top: 1em;
  margin-bottom: 3em;
  font-size: 1.5em;
  text-align: center;
  position: relative;
}
.feature-header h1 {
  font-size: 3em;
  font-weight: 500;
}
.feature-header h3 {
  font-size: 1.4em;
  font-weight: 400;
}
.feature-header .product-action {
  position: absolute;
  right: 0;
}
.product-compare-price {
  font-weight: 300;
  text-decoration: line-through;
}
.product-price {
  font-weight: 500;
}
.feature-showcase {
  margin-top: 3em;
  margin-bottom: 3em;
  margin-left: -3em;
  margin-right: -3em;
}
@media (max-width: 800px) {
  .feature-showcase {
    margin-left: -1em;
    margin-right: -1em;
  }
}
.feature-showcase img {
  display: block;
  width: 100%;
}
.feature-description {
  text-align: center;
  margin-top: 3em;
  margin-bottom: 3em;
  margin-left: 10%;
  margin-right: 10%;
  font-size: 1.5em;
}
.feature-downloads {
  margin-bottom: 1em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.feature-downloads > * {
  width: 10em;
  margin-left: 1em;
  margin-right: 1em;
}
.feature-demos {
  margin-bottom: 4em;
}
.feature-demos > * {
  margin-bottom: 2em;
}
.feature-vimeo,
.feature-youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.feature-vimeo iframe,
.feature-youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.feature-soundcloud > * {
  width: 100%;
  height: 155px;
}
.feature-manual {
  margin-bottom: 2rem;
}
@media all and (min-width: 1100px) {
  .feature-manual {
    column-count: 2;
    column-gap: 2em;
  }
}
.feature-manual img {
  max-width: 100%;
}
.feature-legend {
  margin-bottom: 1rem;
}
.feature-legend img {
  width: 100%;
}
.feature-links {
  text-align: right;
}
.feature-link-name {
  margin-right: 1rem;
}
/* Contact */
.contact-box {
  flex-basis: 14em;
  flex-grow: 1;
}
/* Library */
.library-header {
  font-size: 1.2em;
}
.library-header h2 a {
  color: inherit;
}
.library-header > .row {
  align-items: center;
}
.library-title-back {
  color: #bcbcbc;
  margin-right: 0.5em;
}
.library-title-slash {
  color: #bcbcbc;
  margin-left: 0.5em;
  margin-right: 0.5em;
}
.library-filter > .row {
  margin-top: 1em;
  margin-bottom: 1em;
  align-items: center;
}
.library-filter-search {
  position: relative;
}
.library-filter-search button {
  position: absolute;
  top: 1px;
  right: 0;
}
.library-filter-dropdown {
  position: relative;
}
.library-filter-dropdown button {
  position: absolute;
  top: 2px;
  right: 0;
  pointer-events: none;
}
.library-thumbnails {
  margin-top: 3em;
  display: flex;
  flex-wrap: wrap;
  overflow-x: auto;
}
.library-thumbnails > * {
  flex: 1 auto;
}
.library-thumbnail {
  flex: 1 auto;
  display: flex;
  flex-wrap: nowrap;
  margin-right: 2em;
  margin-bottom: 2em;
  height: 253px;
}
.library-thumbnail-screenshot {
  flex: 0;
}
.library-thumbnail-screenshot img {
  height: 253px;
}
.library-thumbnail-info {
  width: 16em;
  flex: 1 auto;
  margin-top: -1rem;
  margin-left: 1em;
  overflow: hidden;
}
a.library-thumbnail-brand {
  color: inherit;
}
.library-tag {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.library-pagination {
  text-align: center;
}
.library-plugins,
.library-cart {
  overflow-x: auto;
}
.library-plugins-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 3px;
}
.library-plugins-table a {
  color: inherit;
  text-decoration: none;
}
.library-plugins-plugin {
  background: #f2f2f2;
}
.library-plugins-plugin td {
  white-space: nowrap;
  height: 3em;
  padding: 0 1em;
}
.library-plugins-buttons {
  width: 1%;
  white-space: nowrap;
}
.library-plugins-actions {
  width: 1%;
  white-space: nowrap;
}
.library-plugins-modules li {
  list-style-type: none;
}
.library-plugins-module {
  padding: 0.5em 0.5em;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.library-module-screenshot {
  flex: 0 auto;
  margin-right: 2em;
}
.library-module-screenshot img {
  max-height: 760px;
  max-width: 100%;
}
.library-module-info {
  width: 18em;
}
.library-montage-modules {
  display: flex;
  flex-wrap: wrap;
}
.library-montage-module img {
  display: block;
}
.library-info .column {
  flex: 1 20em;
}
.library-banner {
  position: relative;
  margin: -2em -3em 1em -3em;
}
@media (max-width: 800px) {
  .library-banner {
    margin: -1em -1em 0em -1em;
  }
}
.library-banner img {
  width: 100%;
}
.library-banner-close {
  position: absolute;
  top: 0;
  right: 0;
}
/* Fundraiser */
.fundraiser-main {
  flex: 1 0 20em;
}
.fundraiser-image {
  flex: 1 0 10em;
}
.fundraiser-image img {
  max-width: 100%;
}
.fundraiser-payment {
  flex: 0.5 0 10em;
  min-width: 18em;
}
.fundraiser-payment progress {
  width: 100%;
  height: 2em;
}
#fundraiser-quantity {
  width: 6em;
}
