.main {
  display: block;
  background-color:none;
}
img {
  border-style: none;
}

/* edit-demo
------------------------- */

.edit-demo {
  clear: both;
  font-size: 0.92rem;
}

/* example
------------------------- */

.example {
  margin: 40px 0;
}

.example__code pre { margin: 0 0 20px; }

/* gh-button
------------------------- */

.gh-button {
  display: inline-block;
  background: none;
  border: none;
  color: #333;
  font-size: 1.1rem;
}

.gh-button__title,
.gh-button__stat {
  float: left;
  font-weight: bold;
  line-height: 20px;
  padding: 5px 10px;
  border: 1px solid #D5D5D5;
}

.gh-button__icon,
.gh-button .github-logo {
  height: 21px;
  fill: #333;
  display: inline-block;
  vertical-align: bottom;
}

.gh-button__title {
  background-color: #EEE;
  background-image: linear-gradient(#FCFCFC, #EEE);
  border-radius: 4px 0 0 4px;
}

.gh-button .github-logo {
  margin-right: 0.2em;
}

.gh-button__stat {
  border-left: 0;
  border-radius: 0 4px 4px 0;
  background: white;
}

.gh-button:hover { color: #333; }

.gh-button:hover .gh-button__title {
  background-color: #DDD;
  background-image: linear-gradient(#EEE, #DDD);
}

.gh-button:hover .gh-button__stat {
  color: #4078C0;
}

.gh-button:hover .gh-button__icon--star {
  fill: #4078C0;
}

/* shirt-promo
------------------------- */

.shirt-promo {
  margin: 40px 0;
}

.shirt-promo__title {
  font-size: 1.6rem;
}

.shirt-promo__image {
  display: block;
  max-width: 100%;
  margin-bottom: 10px;
}

/* showcase-item
------------------------- */

.showcase-item__link {
  display: block;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: #DDD;
}

.showcase-item__link::after {
  content: '';
  display: block;
  clear: both;
}

.showcase-item__image {
  width: 80px;
  float: left;
  display: block;
}

.showcase-item__image svg {
  display: block;
  border-radius: 5px;
  width: 100%;
  height: auto;
}

.showcase-item__text {
  float: left;
  width: calc(100% - 120px);
  padding-left: 10px;
}

.showcase-item__title {
  margin: 0;
  font-size: 1.4rem;
}

.showcase-item__description {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .showcase-item {
    float: left;
    width: 48.5%;
  }

  .showcase-item:nth-child(2n+1) {
    margin-right: 3%;
  }

  .showcase-item__image {
    width: 120px;
  }

  .showcase-item__text {
    padding-left: 20px;
  }

  .showcase-item__title {
    font-size: 2rem;
  }

  .showcase-item__description {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}

/* showcase
------------------------- */

.showcase-item-list {
  padding: 0;
  list-style: none;
}

.showcase-item-list::after {
  content: '';
  display: block;
  clear: both;
}

.showcase-item .infinite-scroll-illo {
  padding: 5px;
}

.showcase__banner__image {
  display: block;
  max-width: 100%;
  margin-top: 10px;
  border-radius: 5px;
}

/* site-footer
------------------------- */

.site-footer {
  padding: 40px 0;
  margin-top: 60px;
}

.site-footer__copy {
  font-size: 1.2rem;
}

.site-footer .twitter-logo {
  width: 1.3rem;
  height: 1.3rem;
  vertical-align: middle;
}

/* socks-promo
------------------------- */

.socks-promo {
  margin: 40px 0;
}

.socks-promo__image {
  display: block;
  max-width: 100%;
  border-radius: 5px;
}

.socks-promo .duo__cell { margin-bottom: 0; }

/* flickity-illo
------------------------- */

.flickity-illo { background: #ED0; }

/* infinite-scroll-illo
------------------------- */

.infinite-scroll-illo__page {
  stroke: #333;
  stroke-width: 20;
  stroke-miterlimit: 10;
}

.infinite-scroll-illo__page--back { fill: white; }
.infinite-scroll-illo__page--front1 { fill: #C25; }
.infinite-scroll-illo__page--front2 { fill: #E62; }
.infinite-scroll-illo__page--front3 { fill: #EA0; }

/* isotope-illo
------------------------- */

.isotope-illo { background: #222; }

/* base
------------------------- */

* {
  box-sizing: border-box;
}

body {
  font-family: 'Work Sans', -apple-system, Helvetica, Arial, sans-serif;
  color: #444;
  line-height: 1.5;
  margin: 0;
  padding: 0;
}

.export body { font-family: -apple-system, Helvetica, Arial, sans-serif; }

/* font size on html for rem */
html { font-size: 14px; }

a {
  color: #19F;
  text-decoration: none;
}

a:hover {
  color: #C25;
}

h1,
h2,
h3 {
  line-height: 1.2;
}

/* ---- code ---- */

pre,
code,
kbd {
  font-family: Consolas, Menlo, monospace;
  font-size: 14px;
  background: #FAFAFA;
  border: 1px solid #DDD;
  white-space: pre-wrap;
}

pre {
  padding: 10px;
  border-radius: 5px;
  overflow: auto;
}

code,
kbd {
  padding: 2px 3px;
  line-height: 1.2;
  border-radius: 3px;
}

pre code {
  padding: 0;
  line-height: 1.5;
  background: none;
  border: none;
}

/* ---- button ---- */

button {
  font: inherit;
}

/* ---- hr ---- */

hr {
  border: none;
  border-top: 1px solid #DDD;
  margin: 40px 0;
}

/* ---- table ---- */

th,
td {
  padding: 3px 20px 3px 0;
}

th {
  text-align: left;
  color: #AAA;
  font-weight: normal;
}

td {
  border-top: 1px solid #DDD;
}

tr:nth-child(2) td {
  border-top: 3px double #DDD;
}

/* ---- main ---- */

.main {
  position: relative; /* for page-nav */
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.main__page {
  padding-bottom: 40px;
  border-bottom: 20px solid #19F;
  margin-bottom: 40px;
}

/* ---- page-title ---- */

.page-title {
  font-size: 26px;
  margin: 0 auto;
  color:#fff;
  text-align:center;
  padding-top:38px;
  padding-bottom:68px;
}

/* ---- main ---- */

.main h2 {
  font-size: 1.6rem;
  font-weight: normal;
  border-top: 4px solid #19F;
  padding-top: 1rem;
  margin-top: 3rem;
}

.main h3 {
  font-size: 1.4rem;
  border-top: 1px solid #DDD;
  padding-top: 1rem;
  margin-top: 2.5rem;
}

.main a {
  text-decoration: underline;
}

.main .call-out h2:first-child {
  margin-top: 0.5rem;
  padding-top: 0;
  border-top: none;
}

.main li {
  margin: 4px 0;
}

/* ---- data-license-property ---- */

*[data-license-property] {
  color: #C25;
}

/* ---- hide-small ---- */

@media screen and (max-width: 640px) {
  .hidden-small {
    display: none;
  }
  #footer_delimiter_1 {
   display:none;
  }
}

@media screen and (min-width: 768px) {

  html { font-size: 16px; }

  .container {
	margin: 0 auto;
	width:100%;
	max-width:920px;
  }

  .main h2 {
    font-size: 2.4rem;
    padding-top: 2rem;
  }

  .main h3 {
    font-size: 1.6rem;
    padding-top: 1.5rem;
  }

  pre,
  code,
  kbd {
    font-size: 15px;
  }
}

/* syntax highlight
------------------------- */

code .string { color: #0A2; }

code .number, /* integer */
code .cp, /* doctype */
code .literal {
  color: #07D;
} /* boolean */
code .keyword { color: #E31; } /* keyword */
code .kd, /* storage */
code .attribute { color: #D31; } /* markup attribute */
code .title { color: #39A; }
code .params { color: #98D; }
code .p { color: #EDB; } /* punctuation */
code .o { color: #F63; }   /* operator */
code .nb { color: #A9A; } /* support */
code .subst { color: #A58; } /* template string substring */

/* comment */
code .comment {
  color: #999;
  font-style: italic;
}

code .tag { color: #37B; } /* Markup open tag */

code .id { color: #567; } /* css id */
code .class { color: #B27; }  /* CSS class */
code .rules { color: #431; }
code .value { color: #555; } /* CSS value */
code .tag .value { color: #0A2; }

code .nd,
code .pseudo { color: #38D; } /* CSS pseudo selector */
code .hexcolor { color: #F63; }
code .at_rule { color: #088; }

code .built_in { color: #E08; }

code .infinite-scroll,
code .infinite-scroll_keyword, /* new InfiniteScroll() */
code .infscroll_var {
  color: #D0D;
} /* infScroll */

code .jquery_var { color: #D70; } /* $container */

code .infinite-scroll { text-decoration: underline; }

/* web fonts
------------------------- */

/* Work Sans Regular */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/WorkSans.woff2') format('woff2');
}

/* Work Sans Italic */
@font-face {
  font-family: 'Work Sans';
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  src: url('../fonts/WorkSans-Italic.woff') format('woff');
}

/* Work Sans Semi-bold */
@font-face {
  font-family: 'Work Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/WorkSans.woff2') format('woff2');
}

/* article
------------------------- */

.article {
  margin-bottom: 40px !important;
  text-align:center;
  width:100%; 
  max-width:248px; 
  float:left; 
  margin-right:20px;
  background-color: #474747 !important;
}

.article div {
  border:10px solid #474747;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  background-color:#fff;
  margin:0 auto;
  vertical-align:center;
  font-family: 'Montserrat', sans-serif;
  text-align:center !important;
}

.article img {
  height:48px; 
  padding:8px; 
  margin-top:6px;
}

.fundal-audio {
	background-color: #474747 !important;
	border:0;
	padding:0;
}

@media only screen and (max-width: 600px) {
	.article {
	  width:100% !important;
	  max-width: 100% !important;
	}
	audio {
	  width:100% !important;
	  max-width: 100% !important;
	  margin-bottom: -6px !important;
	  border-top:8px solid #474747;
	}
	.article img {
	  height:48px; 
	}
}

/* .button--big-ol
------------------------- */

.button--big-ol {
  display: block;
  padding: 20px;
  background-color: #C25;
  background-image: linear-gradient(hsla(0, 0%, 0%, 0), hsla(0, 0%, 0%, 0.15));
  border: none;
  border-radius: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  color: white;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 10px hsla(0, 0%, 0%, 0.2);
}

.main .button--big-ol {
  text-decoration: none;
}

.button.button--big-ol:hover {
  color: white;
  background-color: #19F;
}

.button.button--big-ol:active {
  color: white;
  background-color: #07D;
  box-shadow: inset 0 2px 20px hsla(0, 0%, 0%, 0.4);
}

/* container
------------------------- */

.container {
  padding-left: 16px;
  padding-right: 16px;
  max-width: 1120px;
}

.container--wide {
  max-width: 1370px;
}

.container .duo.example {
  max-width: none;
}

/* desktop */
@media screen and (min-width: 960px) {
  .container {
  }
}

/* demo-status
------------------------- */

.demo-status {
  font-size: 1.2rem;
  background: #FAFAFA;
  border: 1px solid #DDD;
  padding: 10px 20px;
  border-radius: 5px;
  margin-top: 14px; /* hack */
}

.full-page-demo-footer {
	padding-top:12px;
	padding-bottom:12px;
	padding-left:12px; 
	padding-right:12px;
	box-shadow: 0 0 20px rgba(0,0,0,0.4) !important;
	width:100%; text-align:center; 
	font-size:14px; 
	color:#fff; 
	background:#032754;
	border-top-left-radius:12px;
	border-top-right-radius:12px;
	font-family: 'Montserrat', sans-serif;
}

/* buy-button
------------------------- */

.buy-button {
  background: #EEE;
}

.main .buy-button {
  text-decoration: none;
}

.buy-button__price {
  background: #19F;
}

.buy-button:hover { text-decoration: none; }

.buy-button:hover .buy-button__price {
  background: #C25;
}

/* showcase overwrites
------------------------- */

.showcase-item__link {
  background: white;
}

.showcase-item__link:hover {
  background: #19F;
  color: white;
}

/* site-footer
------------------------- */

.site-footer {
  margin-top: 0;
  background: #EEE;
  position: relative;
  z-index: 1; /* above page-nav */
}

/* ---- twitter-logo ---- */

.site-footer .twitter-logo { fill: #19F; }
.site-footer a:hover .twitter-logo { fill: #C25; }

/* ---- mfzy-logo ---- */

.site-footer .mfzy-logo__body-fill { fill: #19F; }
.site-footer .mfzy-logo__stripes { display: none; }

.site-footer a:hover .mfzy-logo__stripes { display: inline; }

/* ---- mfzy-wordmark ---- */

.mfzy-wordmark { stroke: #19F; }
.mfzy-brand__link:hover .mfzy-wordmark { stroke: #333; }

@media screen and (min-width: 960px) {

  /* sidebar brand */

  .site-footer .mfzy-brand {
    position: absolute;
    left: 20px;
    top: 60px;
    width: 160px;
  }

  .site-footer .mfzy-logo {
    display: block;
    width: 108px;
    height: 108px;
    margin: 0 auto 5px;
  }

  .site-footer .mfzy-wordmark {
    display: block;
    margin: 0 auto;
  }
}

/* hero
------------------------- */

.hero {
  padding: 20px 0;
  background: #19F;
  color: white;
  min-height: 320px;
}

.hero__masthead {
  position: relative;
}

.hero .container::after {
  content: '';
  display: block;
  clear: both;
}

.hero .infinite-scroll-illo {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 80px;
}

.hero .infinite-scroll-illo__page {
  stroke: #036;
}

.hero__text {
  padding-left: 100px;
}

.hero__title {
  font-size: 2rem;
  margin: 0;
  line-height: 1;
  padding-top: 10px;
}

.hero__new-badge {
  display: inline-block;
  padding: 5px 10px;
  vertical-align: top;
  border-radius: 1em;
  background: #C25;
  color: white;
  text-align: center;
  font-weight: bold;
  font-style: normal;
  font-size: 1rem;
}

.hero__tagline {
  font-size: 1.2rem;
  line-height: 1.2;
  margin: 0;
  color: white;
}

.hero .chunky-button--fill {
  background-color: #06C;
  color: white;
}

.hero .chunky-button--fill .chunky-button__icon svg {
  fill: white;
}

.hero .chunky-button--fill:hover {
  background-color: #EA0;
}

.hero .chunky-button--outline {
  border-color: #05B;
  color: white;
}

.hero .chunky-button--outline .chunky-button__icon svg {
  fill: white;
}

.hero .chunky-button--outline:hover {
  background: #EA0;
}

@media screen and (min-width: 768px) {
  .hero .infinite-scroll-illo {
    width: 260px;
    height: 260px;
  }

  .hero__text {
    padding-left: 300px;
  }

  .hero__new-badge {
    position: relative;
    top: -10px;
    width: 70px;
    height: 70px;
    background: #C25;
    color: white;
    border-radius: 35px;
    margin: 0;
  }

  .hero__new-badge__new {
    display: block;
    font-size: 0.85rem;
    margin-top: 4px;
    text-transform: uppercase;
    transform: skewY(-15deg);
  }

  .hero__new-badge__version {
    display: block;
    font-size: 2.4rem;
    line-height: 0.8;
    font-weight: bold;
    transform: skewY(-15deg);
  }

  .hero__title {
    font-size: 4.2rem;
    padding-top: 25px;
  }

  .hero__tagline {
    font-size: 2rem;
  }

  .hero__button-row {
    margin-top: 60px;
  }
}

/* image-grid
------------------------- */

.image-grid {
  max-width: 1200px;
}

.image-grid__item,
.image-grid__col-sizer {
  width: 32%;
}

.image-grid__gutter-sizer { width: 2%; }

.image-grid__item {
  margin-bottom: 20px;
  float: left;
}

/* hide by default */
.image-grid.are-images-unloaded .image-grid__item {
  opacity: 0;
}

.image-grid__image {
  display: block;
  max-width: 100%;
}

/* loader-ellips
------------------------- */

.loader-ellips {
  font-size: 20px;
  position: relative;
  width: 4em;
  height: 1em;
  margin: 10px auto;
}

.loader-ellips__dot {
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  background: #555;
  position: absolute;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}

.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
  left: 0;
}
.loader-ellips__dot:nth-child(3) { left: 1.5em; }
.loader-ellips__dot:nth-child(4) { left: 3em; }

@keyframes reveal {
  from { transform: scale(0.001); }
  to { transform: scale(1); }
}

@keyframes slide {
  to { transform: translateX(1.5em); }
}

.loader-ellips__dot:nth-child(1) {
  animation-name: reveal;
}

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
  animation-name: slide;
}

/* stylelint-disable-next-line no-duplicate-selectors */
.loader-ellips__dot:nth-child(4) {
  animation-name: reveal;
  animation-direction: reverse;
}

/* loader-wheel
------------------------- */

.loader-wheel {
  font-size: 64px; /* change size here */
  position: relative;
  height: 1em;
  width: 1em;
  padding-left: 0.45em;
  overflow: hidden;
  margin: 0 auto;
  animation: loader-wheel-rotate 0.5s steps(12) infinite;
}

.loader-wheel i {
  display: block;
  position: absolute;
  height: 0.3em;
  width: 0.1em;
  border-radius: 0.05em;
  background: #333; /* change color here */
  opacity: 0.8;
  transform: rotate(-30deg);
  transform-origin: center 0.5em;
}

@keyframes loader-wheel-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* scroller
------------------------- */

.scroller {
  height: 400px;
  padding: 10px 10px 100px;
  overflow-y: scroll;
  border: 1px solid #DDD;
  border-radius: 5px;
}

/* ---- scroller-item ---- */

.scroller-item {
  height: 200px;
  margin-bottom: 10px;
  padding: 20px;
  background: #19F;
  border-radius: 5px;
  color: white;
  font-size: 3rem;
  line-height: 1;
}

.scroller-item--height2 { height: 250px; }
.scroller-item--height3 { height: 300px; }

.scroller-item--magenta { background: #C25; }
.scroller-item--red { background: #E21; }
.scroller-item--gold { background: #EA0; }
.scroller-item--green { background: #6C6; }

/* ---- prefill ---- */

.scroller--prefill { height: 500px; }

.scroller--prefill .scroller-item,
.scroller--prefill .scroller-item--height2,
.scroller--prefill .scroller-item--height3 { height: 80px; }

/* scroller-status
------------------------- */

.scroller-status {
  display: none;
  padding-top:20px;
  padding-bottom:20px;
}

.scroller-status__message {
  text-align: center;
  color: #777;
}

/* page-nav
------------------------- */

.page-nav {
  font-size: 0.85rem;
  line-height: 1.2;
}

.page-nav__list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0 10px 0 0;
}

.page-nav__item {
  margin: 0.2rem 0;
  overflow-wrap: break-word;
}

.page-nav__item--h3,
.page-nav__item--h4 {
  padding-left: 15px;
}

@media screen and (min-width: 960px) {
  .page-nav {
    position: absolute;
    left: 0;
    top: 0;
    width: 200px;
    height: 100%;
  }

  .page-nav__list {
    display: block;
    margin: 0;
    padding: 20px;
  }

  /* activate sticky */
  .page-nav::after {
    content: 'sticky';
    display: none;
  }

  .page-nav.is-sticky .page-nav__list {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    top: 0;
  }

  .page-nav__item a {
    display: block;
    padding: 2px 0;
    text-decoration: none;
  }
}

/* site nav
------------------------- */

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  background: #19F;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* bottom nav */
.main ~ .site-nav {
  position: relative;
  margin-top: 80px;
  z-index: 2; /* on top of page-nav */
}

.site-nav__item a {
  display: block;
  padding: 10px 20px;
  color: white;
}

.site-nav__item--homepage {
  font-weight: bold;
}

.site-nav__item a:hover {
  background: #C25;
  color: white;
}

.site-nav__item a:active {
  background: white;
  color: #8C8;
}

/* selected */
.page--style .site-nav__item--style a,
.page--options .site-nav__item--options a,
.page--api .site-nav__item--api a,
.page--events .site-nav__item--events a,
.page--extras .site-nav__item--extras a,
.page--license .site-nav__item--license a {
  background: #FFF;
  color: #19F;
}

/* size at which it can fit */
@media screen and (min-width: 768px) {
  .site-nav__item {
    width: auto;
    font-size: 1.2rem;
  }

  .site-nav__item a {
    padding: 20px 25px;
  }
}

/* site-scroll
------------------------- */

.site-scroll__button {
  margin: 60px auto;
  padding: 20px 40px;
}

.masonry-small .image-grid__item {
  margin-bottom: 10px;
}

.infinite-scroll-last {
	color:#ecffd9;
	padding-bottom:48px;
}
.infinite-scroll-last mark {
	padding-top:8px;
	padding-bottom:8px;
	padding-left:12px;
	padding-right:12px;
	background-color:#032754; !important;
	color:#fff !important;
	font-family: 'Montserrat', sans-serif; 
	border: 3px solid #fff;
	border-radius:8px;
	box-shadow: 0 0 20px rgba(0,0,0,0.4) !important;
}