*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  display: none;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

a {
  color: #000;
  text-decoration: none;
}

p {
  margin: 0 0 25px 0;
}

img {
  display: block;
  width: 100%;
}

@-moz-keyframes bounce-down {

  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  40% {
    -moz-transform: translate(-50%, -30px);
    transform: translate(-50%, -30px)
  }

  60% {
    -moz-transform: translate(-50%, -15px);
    transform: translate(-50%, -15px);
  }
}

@-webkit-keyframes bounce-down {

  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  40% {
    -webkit-transform: translate(-50%, -30px);
    transform: translate(-50%, -30px);
  }

  60% {
    -webkit-transform: translate(-50%, -15px);
    transform: translate(-50%, -15px);
  }
}

@keyframes bounce-down {

  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  40% {
    -moz-transform: translate(-50%, -30px);
    -ms-transform: translate(-50%, -30px);
    -webkit-transform: translate(-50%, -30px);
    transform: translate(-50%, -30px);
  }

  60% {
    -moz-transform: translate(-50%, -15px);
    -ms-transform: translate(-50%, -15px);
    -webkit-transform: translate(-50%, -15px);
    transform: translate(-50%, -15px);
  }
}

@-webkit-keyframes bounce-up {

  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  40% {
    -webkit-transform: translate(-50%, 30px);
    transform: translate(-50%, 30px);
  }

  60% {
    -webkit-transform: translate(-50%, 15px);
    transform: translate(-50%, 15px);
  }
}

@keyframes bounce-up {

  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }

  40% {
    -moz-transform: translate(0, 30px);
    -ms-transform: translate(0, 30px);
    -webkit-transform: translate(0, 30px);
    transform: translate(0, 30px);
  }

  60% {
    -moz-transform: translate(0, 15px);
    -ms-transform: translate(0, 15px);
    -webkit-transform: translate(0, 15px);
    transform: translate(0, 15px);
  }
}

/* ==========================

============================= */

html {
  width: 100%;
  height: 100%;
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 87.5%;
  overflow: -moz-scrollbars-vertical;
  overflow-y: hidden;
}

body {
  width: 100%;
  min-height: 100%;
  font-family: 'Zilla Slab', serif;
  font-size: 21px;
  font-weight: 400;
  color: #000;
  margin: 0;
  text-rendering: optimizeLegibility;
  background: #fff;
}

#page {
  overflow: hidden;
}

@media (max-width: 75em) {

  html,
  body {
    overflow-y: scroll;
  }
}

.preloader-holder {
  position: fixed;
  display: block;
  opacity: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #f1f1f1;
  z-index: 1111000;
  display: flex;
}

.preloader-gif {
  width: 300px;
  height: 300px;
  background: url(../img/sketch/sketch-preloader.gif) no-repeat;
  background-size: contain;
  background-position: center center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .4s;
}

.lang-popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1110999;
}

.lang-align {
  position: absolute;
  top: 100px;
  left: 50%;
  width: 500px;
  transform: translateX(-50%);
  z-index: 2000;
  background-color: #efefef;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  -moz-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
}

.lang-head {
  width: 100%;
  position: relative;
  height: 53px;
  margin: .5em 0 1.5em;
}

.lang-head .close {
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  opacity: 0.3;
}

.lang-head .close:hover {
  opacity: 1;
}

.lang-head .close:before,
.lang-head .close:after {
  position: absolute;
  left: 11px;
  content: ' ';
  height: 24px;
  width: 2px;
  background-color: #333;
}

.lang-head .close:before {
  transform: rotate(45deg);
}

.lang-head .close:after {
  transform: rotate(-45deg);
}

.lang-head h2 {
  color: #999;
  margin: 0;
  font-weight: lighter;
  letter-spacing: 1px;
  text-transform: inherit;
  text-align: center;
  line-height: 50px;
}

.lang-popup img {
  width: 32px;
  display: block;
  margin: 0 auto;
}

.lang-select {
  padding: 5px 35px 40px;
}

.lang-popup span {
  font-size: 0.7em;
  line-height: 1.1;
  display: block;
  margin-top: 0.6em;
}

.head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 9001;
  background-color: transparent;
  transition: all .5s ease-out;
  transform: translateY(0);
  padding: 15px 10px 10px;
}

.mobile-fb {
  display: none;
}

@media(max-width: 75em) {
  .head {
    background-color: #fff;
    height: 80px;
  }

  .mobile-fb {
    position: absolute;
    bottom: 0;
    padding: 0 0 25px 25px;
    max-width: 64px;
    display: block;
  }
}

#page.is_scrolling .head {
  opacity: 0;
  transform: translateY(-50px);
}

.logo {
  float: left;
  width: 50%;
}

.logo a {
  display: inline-block;
  text-decoration: none;
  width: 100%;
}

.logo a img {
  max-width: 260px;
}

.all-menu {
  float: right;
}

@media (min-width: 75em) {
  .logo {
    float: left;
    padding-top: 30px;
    padding-left: 30px;
    width: 15%;
  }

  .logo a {
    display: inline-block;
    text-decoration: none;
    width: 260px;
  }

  .all-menu {
    display: none;
  }
}

.all-menu .link {
  display: inline-block;
}

.all-menu .link .text {
  float: left;
  padding-right: 13px;
  font-size: 12px;
  line-height: 12px;
  color: #020202;
  font-weight: 600;
  text-transform: uppercase;
  padding-top: 17px;
}

.all-menu .link .icon-holder {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  background-color: #52ae32;
  -webkit-border-radius: 23px;
  -moz-border-radius: 23px;
  border-radius: 23px;
  transition: background-color 0.2s linear, transform 0.24s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: rotate(0deg);
}

.all-menu .link .icon-holder .icon {
  background: url(../img/kokoto-icon-negative.svg) no-repeat;
  background-size: contain;
  background-position: center center;
  width: 40px;
  height: 40px;
  display: block;
  background-size: 65%;
}

.top-nav {
  display: none;
}

.screen-menu {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  opacity: 1;
  z-index: -1;
}

.screen-menu-nav {
  margin: 80px auto 0;
}

.screen-menu nav ul {
  list-style: none;
  line-height: 35px;
  padding-left: 30px;
}

.screen-lang-picker {
  margin-top: 45px;
  text-align: center;
}

.screen-lang-picker span {
  display: inline-block;
  margin: 0 25px;
}

.screen-menu-footer {
  padding-left: 30px;
  margin: 50px auto 25px;
  width: 100%;
}

@media (min-width: 75em) {
  .screen-menu {
    display: none;
  }

  .top-nav {
    display: block;
    position: absolute;
    top: 40px;
    left: 51%;
    font-size: 0.9em;
    width: 48%;
    z-index: 999;
    -ms-transform: translateX(0) translateY(0);
    -webkit-transform: translateX(0) translateY(0);
    transform: translateX(0) translateY(0);
    transition: transform .4s, opacity .4s ease;
  }

  .top-nav .top-nav-list {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }

  .top-nav li {
    color: #000;
    font-weight: 600;
  }

  .top-nav-list li {
    display: inline-block;
    margin: 0 10px;
  }

  .dropdown {
    position: relative;
  }

  .dropdown-list {
    display: none;
    position: absolute;
    width: 200px;
    padding-top: 15px;
  }

  .dropdown-list li {
    margin: 0;
    display: block;
    background-color: #f3f4f5;
  }

  .dropdown-list li a {
    padding: 15px 10px;
    display: block;
    font-size: 0.9em;
  }

  .dropdown:hover .dropdown-list {
    display: block;
  }

  .dropdown-list li:hover {
    background-color: #52ae32;
  }

  .dropdown-list li:hover a {
    color: #fff;
  }

  .lang-picker {
    font-size: 0.7em;
  }
}

.app-icon {
  width: 140px;
  height: 100px;
  margin: 15px auto 25px;
  display: block;
}

@media (min-width: 75em) {
  .app-icon {
    height: 100px;
    width: 100%;
  }
}

.app-icon-desc {
  text-align: center;
  font-size: .9em;
}

/* ==========================
Splitscreen
============================= */

.hero,
.scroll-down,
.scroll-up {
  display: none;
}

#page.is-ontop .scroll-up {
  opacity: 0;
}

.scroll-up {
  display: block;
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 35px;
  opacity: 1;
  transition: opacity .4s .5s;
  display: block;
  animation: bounce-up 2s infinite;
}

.scroll-up img {
  transform: rotate(180deg);
}

@media (min-width: 75em) {
  .hero {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: scale(0.75) translate(-50%, -35%);
    transform-origin: left;
    z-index: 999;
    display: block;
    transition: transform .4s .4s ease;
  }

  .hero .bioduenger {
    width: 180px;
    height: auto;
  }

  #page.is-ontop .hero {
    transform: scale(1) translate(-50%, -50%);
  }

  .scroll-down {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    animation: bounce-down 2s infinite;
    z-index: 999;
    opacity: 0;
    transition: opacity .4s .5s;
    display: block;
  }

  #page.is-ontop .scroll-down {
    opacity: 1;
  }
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  .hero .bioduenger {
    width: 230px;
    height: 100%;
  }
}

.split_page {
  position: relative;
  margin: 0;
  height: 100%;
  width: 100%;
  transform: translate3d(0px, 0px, 0px);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

@media (min-width: 75em) {
  .split_page {
    overflow: hidden;
    margin: 11px;
    height: calc(100vh - 22px);
    width: calc(100vw - 22px);
  }
}

/* ====== left pane ======   */

.left-split {
  /* url(../img/kokokto_back.png) */
  position: relative;
  width: 100%;
  height: 75vh;
  display: block;
  opacity: 0;
  z-index: 1;
  padding: 0;
}

@media(max-width: 75em) {
  .left-split {
    background-color: #52ae32;
    background-image: url(../img/bg-stripe.png);
    background-repeat: no-repeat;
    background-position: bottom left !important;
    background-size: contain;
  }
}

.left-split-image {
  position: relative;
  width: 70%;
  height: 100%;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.product-image {
  width: 50%;
  height: auto;
  display: block;
  margin: 0 auto;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.product-image.squared {
  width: 85%;
}

@media (min-width: 48em) {
  .product-image {
    width: 30%;
  }

  .product-image.squared {
    width: 60%;
    height: auto;
  }
}

@media (min-width: 75em) {
  .product-image {
    width: 40%;
  }
}

.left_split_social {
  display: none;
}

.menu-nav {
  position: absolute;
  display: block;
  height: 100%;
  top: 50%;
  padding: 80px 40px 0 0;
  width: 30%;
  transform: translateY(-50%);
  right: 0;
  z-index: 1000;
}

.menu-nav--list {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
  display: -webkit-flex;
  -webkit-flex-direction: column;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.menu-nav--list_item {
  flex-grow: 1;
  text-align: center;
  position: relative;
  cursor: pointer;
}

.menu-nav--list_item img {
  width: 64px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  transition: opacity .4s ease-out;
}

.menu-nav--list_item span {
  display: block;
  color: rgba(0, 0, 0, 0.65);
  font-weight: 600;
  font-size: .9em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity .4s ease-out;
}

.menu-nav--list_item:hover img {
  opacity: 0;
}

.menu-nav--list_item:hover span {
  opacity: 1;
}

@media (min-width: 75em) {
  .left-split {
    /* url(../img/kokokto_back.png) */
    background: rgba(82, 174, 50, 1) repeat center center !important;
    position: relative;
    width: 100%;
    height: 100vh;
    display: block;
    opacity: 0;
    z-index: 1;
  }

  .left-split-image {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .product-image {
    width: auto;
    height: 70%;
    display: block;
    margin: 0 auto;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    transform-style: preserve-3d;
    backface-visibility: hidden;
  }

  .left_split_social {
    position: absolute;
    bottom: 60px;
    left: 5%;
    width: 90%;
    display: block;
  }

  .left_split_social .justify-row {
    justify-content: space-between;
    align-items: flex-end;
  }

  .left_split_social .copy_box {
    font-size: .8em;
  }

  .left_split_social .copy_box.fb img {
    width: 24px;
    height: 24px;
  }

  .fb-wrap {
    display: inline-block;
    margin-left: 1em;
  }

  .left_split_social .copy_box.myacker img {
    width: 130px;
    height: 58px;
  }

  .left_split_social .shop-link {
    display: inline-block;
    color: #fff;
    border: 2px solid rgba(0, 0, 0, 0.65);
    color: rgba(0, 0, 0, 0.65);
    padding: .4em 1em;
    text-align: center;
    font-weight: 600;
    font-size: 0.8em;
  }

  @media only screen and (min-width: 85em) {
    .left_split_social .shop-link {
      font-size: 1.3em;
    }
  }

  .menu-nav {
    position: fixed;
    display: block;
    height: 445px;
    top: 50%;
    width: 150px;
    transform: translateY(-50%);
    left: 30px;
    z-index: 1000;
  }

  .menu-nav--list {
    list-style: none;
    padding: 0;
    margin: 0;
    height: 100%;
    display: -webkit-flex;
    -webkit-flex-direction: column;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  .menu-nav--list_item {
    flex-grow: 1;
    text-align: center;
    position: relative;
    cursor: pointer;
  }

  .menu-nav--list_item img {
    width: 84px;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    transition: opacity .4s ease-out;
  }

  .menu-nav--list_item span {
    display: block;
    color: rgba(0, 0, 0, 0.65);
    font-weight: 600;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity .4s ease-out;
  }

  .menu-nav--list_item:hover img {
    opacity: 0;
  }

  .menu-nav--list_item:hover span {
    opacity: 1;
  }
}

/* ====== right pane ======   */

.right-split-content {
  height: auto;
  padding: 0 7.5% 2.5em;
}

@media (min-width: 48em) {
  .right-split-content {
    height: auto;
    padding: 0 15% 2.5em;
  }
}

@media (min-width: 75em) {
  .right-split-content {
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 0 20%;
    position: relative;
  }
}

.right-split-intro {
  width: 100%;
  height: auto;
  padding-top: 50px;
  position: relative;
}

.right-split-section:not(:first-child) {
  padding-top: 70px;
  position: relative;
}

.right-split-section:last-child {
  padding-bottom: 70px;
}

@media (min-width: 75em) {
  .right-split-intro {
    padding-top: 50%;
    padding-bottom: 25%;
  }

  .right-split-intro .kokoto-icon {
    margin-top: 0;
  }

  .right-split-section:not(:first-child) {
    padding-top: 150px;
    position: relative;
  }

  .right-split-section:last-child {
    padding-bottom: 150px;
  }
}

.intro-video-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}

.intro-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.scroll-animate {
  opacity: 0;
  transform: translateY(40px)
}

h1 {
  color: #212112;
  line-height: 1;
  text-transform: uppercase;
  font-size: 2em;
  font-weight: 600;
  margin-bottom: 1em;
}

h2 {
  color: #212112;
  line-height: 1;
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 1.5em;
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.65em;
  }
}

.kokoto-icon {
  position: relative;
  width: 100%;
  margin-top: 75px;
}

.kokoto-icon:before {
  content: "";
  position: absolute;
  top: -75px;
  left: 50%;
  height: 80px;
  width: 70px;
  transform: translateX(-50%);
  background: url(../img/kokoto-icon.svg) no-repeat;
  background-size: contain;
  background-position: center;
}

.ingredients-table {
  list-style: none;
  padding-left: 0;
  margin: 70px 0 0;
}

@media (min-width: 48em) {
  .ingredients-table {
    padding-left: 40px;
  }
}

.ingredients-table li {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
}

.ingredients-table img {
  width: 64px;
}

.ingredients-table span {
  margin-left: 1em;
  line-height: 1;
  text-transform: uppercase;
}

.ingredients-link {
  text-align: center;
}

.ingredients-link a span {
  margin-left: 5px;
}

.right-split a {
  color: #52ae32;
  text-decoration: none;
}

.right-split a:hover {
  text-decoration: underline;
}

.sketch-el {
  display: none;
  visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

@media (min-width: 75em) {
  .sketch-el {
    display: block;
    visibility: hidden;
  }
}

.sketch-el img {
  width: 100%;
  margin: 0 auto;
  display: block;
}

.sketch-el.pos1 {
  top: 55%;
  right: 0%;
}

.sketch-el.pos2 {
  top: 75%;
  left: -25%;
}

.sketch-el.pos3 {
  top: 70%;
  left: -35%;
}

.sketch-el.pos4 {
  top: 30%;
  right: 0;
}

.sketch-el.pos5 {
  top: 25%;
  right: -25%;
}

.sketch-el.pos6 {
  top: 0;
  right: -25%;
}

@media (min-width: 75em) {
  .sketch-el {
    position: absolute;
    z-index: -1;
    opacity: 0.75;
    display: block;
    visibility: visible;
  }
}

.video {
  margin-top: 2.5em;
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
  background: url("../img/slide01.jpg");
}

.video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.playbutton {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin-top: -50px;
  margin-left: -50px;
  text-indent: -9999;
  color: transparent;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: 600ms;
  -o-transition-duration: 600ms;
  -webkit-transition-duration: 600ms;
  transition-duration: 600ms;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.playbutton:before {
  content: '';
  position: absolute;
  top: 30px;
  left: 40px;
  display: block;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid #FFF;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: 300ms;
  -o-transition-duration: 300ms;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.playbutton:after {
  content: '';
  opacity: 0;
  position: absolute;
  top: 30px;
  left: 40px;
  display: block;
  width: 30px;
  height: 40px;
  border-left: 10px solid #FFF;
  border-right: 10px solid #FFF;
  -moz-transition-property: all;
  -o-transition-property: all;
  -webkit-transition-property: all;
  transition-property: all;
  -moz-transition-duration: 300ms;
  -o-transition-duration: 300ms;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  -moz-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.playbutton:hover:after {
  opacity: 1;
  width: 150px;
  left: -25px;
}

.playbutton.loading:before {
  opacity: 0;
}

.playbutton.loading:after {
  opacity: 1;
  width: 150px;
  left: -25px;
  border-radius: 3px;
  -webkit-animation: spin 800ms linear infinite;
  -moz-animation: spin 800ms linear infinite;
  -ms-animation: spin 800ms linear infinite;
  -o-animation: spin 800ms linear infinite;
  animation: spin 800ms linear infinite;
}

.playbutton.playing {
  top: 90%;
  left: 90%;
}

.playbutton.playing:after {
  -webkit-animation: endspin 600ms;
  -moz-animation: endspin 600ms;
  -ms-animation: endspin 600ms;
  -o-animation: endspin 600ms;
  animation: endspin 600ms;
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -ms-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
  top: 30px;
  left: 40px;
  width: 30px;
  opacity: 1;
  opacity: .1;
}

.playbutton.playing:before {
  opacity: 0;
}

.playbutton.playing:hover:after {
  opacity: 1;
}

.playbutton.playing.paused:before {
  opacity: 1;
}

.playbutton.playing.paused:after {
  opacity: 0;
}

.history-feed {
  width: 80%;
  margin: 0 auto 45px;
  font-size: 1.45em;
  line-height: 1.4;
}

.history-feed h2 {
  font-family: 'Zilla Slab', serif;
  font-weight: 600 !important;
  text-transform: uppercase;
}

.history-feed p {
  margin-bottom: 35px;
  text-align: justify;
}

.history-feed blockquote {
  padding: 10px 15px 10px 15px;
  margin: 0 0 35px 0;
  border-left: 5px solid #52ae32;
  background-color: none;
}

.history-feed blockquote p {
  margin: 0;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.3;
}

.history-box {
  width: 50%;
  float: left;
  text-align: center;
}

.nomargin {
  margin: 0 !important;
}

.green {
  color: #52ae32;
}

.center {
  text-align: center;
}

@media(max-width: 767px) {
  .history-feed h2 {
    font-size: 1.5em !important;
    line-height: 1.2;
  }

  .history-feed {
    width: 100%;
    font-size: 1.3em;
  }

  .history-feed p {
    text-align: left;
  }
}

/* ==========================
Helper
============================= */

.capture {
  margin-top: 4.5em;
  margin-bottom: 2.5em;
}

.center {
  text-align: center
}

:focus {
  outline: none;
}

.space-wrapper {
  margin: 100px 0;
}

.pcenter {
  line-height: 1.25;
  text-align: center;
}

@media (min-width: 75em) {
  .pcenter {
    text-align: center;
    text-align: justify;
    -moz-text-align-last: center;
    text-align-last: center;
    line-height: 1.25;
  }
}

.marginbottom {
  margin: 0 0 25px 0;
}

.push-bottom {
  margin-bottom: 5em;
}

.small {
  font-size: .8em;
}

.hidden {
  display: none;
}

.green {
  color: #52ae32;
}

.sketchy {
  font-family: "Atma", cursive;
  letter-spacing: 0.0275em;
  font-weight: bold;
  color: #52ae32;
}

@media (min-width: 768px) {
  .row.vertical-align-center {
    display: flex;
    align-items: center;
  }

  .row.vertical-align-bottom {
    display: flex;
    align-items: flex-end;
  }
}

.right-split-content {
  position: relative;
}

.myacker-container {
  width: 155px;
  position: absolute;
  top: 25px;
  right: inherit;
  bottom: inherit;
  left: 50%;
  z-index: 900;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.5s ease-out;
}

.is-ontop .myacker-container {
  opacity: 0.9;
}

.myacker-container a {
  display: inline-block;
}

.myacker-container a img {
  opacity: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: opacity 0.5s ease-out;
}

.myacker-container a:hover img {
  opacity: 1;
}

@media only screen and (min-width: 75em) {
  .myacker-container {
    display: none;
  }
}