/* Core variables */
/**
 * Variables
*/
/* Typography */
/* Breakpoints */
/* Paths */
/* Grid setup */
/* Colour palette */
/* Components */
/* CSS Reset */
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,
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 {
  border: none;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

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

audio,
canvas,
video {
  display: inline-block;
}

body {
  margin: 0;
}

ul {
  list-style-type: none;
}

a {
  background: transparent;
  text-decoration: none;
}

button,
input {
  line-height: normal;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

textarea:focus,
input:focus {
  outline: 0;
}

input {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* CSS print */
/**
 * Print Stylesheet
*/
@media print {
  @page {
    margin: 1cm;
  }
  body {
    background: #fff;
    color: #000;
  }

  a {
    page-break-inside: avoid;
  }

  blockquote {
    page-break-inside: avoid;
  }

  table,
pre {
    page-break-inside: avoid;
  }

  ul, ol, dl {
    page-break-before: avoid;
  }
}
/* Fonts */
/**
 * Fonts
*/
/* montserrat-regular - latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/montserrat-v14-latin-regular.0eb53b.eot);
  /* IE9 Compat Modes */
  src: local("Montserrat Regular"), local("Montserrat-Regular"), url(../fonts/montserrat-v14-latin-regular.0eb53b.eot?#iefix) format("embedded-opentype"), url(../fonts/montserrat-v14-latin-regular.b71748.woff2) format("woff2"), url(../fonts/montserrat-v14-latin-regular.0659a9.woff) format("woff"), url(../fonts/montserrat-v14-latin-regular.fa100f.ttf) format("truetype"), url(../fonts/montserrat-v14-latin-regular.22d856.svg#Montserrat) format("svg");
  /* Legacy iOS */
}
/* montserrat-700 - latin */
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  src: url(../fonts/montserrat-v14-latin-700.b5a875.eot);
  /* IE9 Compat Modes */
  src: local("Montserrat Bold"), local("Montserrat-Bold"), url(../fonts/montserrat-v14-latin-700.b5a875.eot?#iefix) format("embedded-opentype"), url(../fonts/montserrat-v14-latin-700.7dbcc8.woff2) format("woff2"), url(../fonts/montserrat-v14-latin-700.99271a.woff) format("woff"), url(../fonts/montserrat-v14-latin-700.e06b80.ttf) format("truetype"), url(../fonts/montserrat-v14-latin-700.fac85a.svg#Montserrat) format("svg");
  /* Legacy iOS */
}
/* Components */
/* ************************ 
  Animations
************************  */
circle {
  opacity: 0;
  transition: opacity 0.3s ease;
}
circle.is-visible {
  opacity: 1;
  transition: opacity 0.3s ease;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anime-fadein {
  -webkit-animation: fadeIn 0.9s ease-out forwards;
          animation: fadeIn 0.9s ease-out forwards;
}

@-webkit-keyframes slideInBottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  60% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInBottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  60% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.anime-slideinbottom {
  -webkit-animation: slideInBottom 0.9s ease-out forwards;
          animation: slideInBottom 0.9s ease-out forwards;
}

@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(236, 202, 184, 0.5);
  }
  75% {
    box-shadow: 0 0 0 12px rgba(236, 202, 184, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(236, 202, 184, 0);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(236, 202, 184, 0.5);
  }
  75% {
    box-shadow: 0 0 0 12px rgba(236, 202, 184, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(236, 202, 184, 0);
  }
}
.anime-pulse {
  -webkit-animation: pulse 1.25s infinite;
          animation: pulse 1.25s infinite;
}

/* ************************ 
  Button
************************  */
.c-button {
  text-transform: uppercase;
  padding: 14px;
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
  letter-spacing: 0.1rem;
  font-size: 1.4rem;
  font-weight: 700;
  min-width: 200px;
  max-width: 250px;
  border: none;
  outline: none;
  cursor: pointer;
  margin: 0 auto;
}

.c-button--primary {
  background-color: #eccab8;
  color: #000;
}

.c-button--secondary {
  background-color: transparent;
  color: #eccab8;
}

/* ************************ 
  Controls
************************  */
.c-controls {
  position: fixed;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  left: 0;
  right: 0;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s;
  max-width: 400px;
}
.c-controls.is-visible {
  opacity: 1;
  transition: opacity 0.3s;
}
.c-controls > div {
  flex-grow: 1;
  flex-basis: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-controls__mute {
  padding: 20px 0 20px 10px;
}
.c-controls__mute.is-muted {
  box-shadow: inset 0 -3px 0 0 #eccab8;
  background: rgba(255, 255, 255, 0.1);
}
.c-controls__mute.is-muted span::before {
  transform: scale(0.5) translate(-15px, 0) rotate(36deg);
  opacity: 0;
}

.c-controls__play {
  padding: 10px 0 10px 16px;
  margin-bottom: 20px;
}

.c-controls__transcript {
  padding: 24px 0 26px;
}

.c-controls__transcript.is-active {
  box-shadow: inset 0 -3px 0 0 #eccab8;
  background: rgba(255, 255, 255, 0.1);
}

.c-mute__button {
  border: none;
  background: transparent;
  outline: none;
  cursor: pointer;
  height: 30px;
  width: 30px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  padding: 0;
}
.c-mute__button > span {
  display: block;
  width: 8px;
  height: 8px;
  background: #eccab8;
  margin: 0 0 0 2px;
}
.c-mute__button > span::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #eccab8 transparent transparent;
  border-width: 10px 14px 10px 15px;
  left: -13px;
  top: 5px;
}
.c-mute__button > span::before {
  content: "";
  transform: rotate(45deg);
  border-radius: 0 50px 0 0;
  position: absolute;
  width: 14px;
  height: 14px;
  border-style: double;
  border-color: #eccab8;
  border-width: 7px 7px 0 0;
  left: 18px;
  top: 7px;
  transition: all 0.2s ease-out;
}

.c-play__button {
  border: none;
  background: transparent;
  box-sizing: border-box;
  width: 0;
  height: 38px;
  border-color: transparent transparent transparent #eccab8;
  transition: 100ms all ease;
  cursor: pointer;
  border-style: solid;
  border-width: 18px 0 18px 30px;
  outline: none;
}

.c-play__button.is-playing {
  border-style: double;
  border-width: 0 0 0 18px;
}

.c-play__button:hover {
  border-color: transparent transparent transparent #eccab8;
}

.c-transcript__button {
  border-radius: 0;
  height: 20px;
  width: 30px;
  outline: none;
  border: none;
  cursor: pointer;
  position: relative;
  background: transparent;
  border-bottom: 4px solid #eccab8;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #eccab8;
}
.c-transcript__button::before {
  content: "";
  border-top-color: #eccab8;
  z-index: 1;
  border-bottom: 6px solid transparent;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #eccab8;
  height: 0;
  left: 5px;
  width: 0;
  position: absolute;
  top: 16px;
}
.c-transcript__button::after {
  content: "";
  height: 20px;
  width: 30px;
  position: absolute;
  left: -4px;
  top: -4px;
  border-bottom: 4px solid transparent;
  border-left: 4px solid #eccab8;
  border-right: 4px solid #eccab8;
  border-top: 4px solid transparent;
}
.c-transcript__button span {
  width: 30px;
  height: 8px;
  background: transparent;
  display: block;
  position: absolute;
  left: -4px;
  top: 2px;
  border-bottom: 3px solid #eccab8;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3px solid #eccab8;
}

/* ************************ 
  AR/VR enter buttons 
************************  */
.c-enter {
  position: absolute;
  right: 20px;
  top: 20px;
  display: flex;
  justify-content: flex-end;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.3s;
}

.c-enter.is-visible {
  opacity: 1;
  transition: opacity 0.3s;
}

.c-enter-ar,
.c-enter-vr {
  font-weight: bold;
  width: 100%;
  line-height: 16px;
}

.c-enter-vr {
  display: none;
}

.c-enter-vr-button,
.c-enter-vr-modal,
.c-enter-vr-modal a {
  color: #eccab8;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  outline: 0;
}

.c-enter-vr-button {
  background-color: #eccab8;
  color: #000;
}

.c-enter-ar-button {
  background-color: #eccab8;
  color: #000;
}

.c-enter-ar-button,
.c-enter-vr-button {
  cursor: pointer;
  transition: background-color 0.05s ease;
  z-index: 9999;
  border-radius: 20px;
  touch-action: manipulation;
  padding: 10px 20px;
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 2.8px;
}

.c-enter-ar-button:active,
.c-enter-ar-button:hover,
.c-enter-vr-button:active,
.c-enter-vr-button:hover {
  background-color: #6cedfc;
  color: #000;
}

.c-enter-vr-button.resethover {
  background-color: rgba(0, 0, 0, 0.35);
}

[data-c-enter-vr-no-webvr] .c-enter-vr-button {
  border-color: #000;
  opacity: 0.65;
}

[data-c-enter-vr-no-webvr] .c-enter-vr-button:active,
[data-c-enter-vr-no-webvr] .c-enter-vr-button:hover {
  background-color: rgba(0, 0, 0, 0.35);
  cursor: not-allowed;
}

/* ************************ 
  Loader screen 
************************  */
.c-loader {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s linear;
}

.c-loader.is-visible {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s linear;
}

.c-loader__svg {
  width: 60px;
}

.c-loader__path {
  stroke: #eccab8;
  stroke-dasharray: 176;
  stroke-dashoffset: 176;
  -webkit-animation: dash 1.8s linear infinite;
          animation: dash 1.8s linear infinite;
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dashoffset: 176;
  }
  100% {
    stroke-dashoffset: 355;
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dashoffset: 176;
  }
  100% {
    stroke-dashoffset: 355;
  }
}
.c-loader__instructions {
  position: absolute;
  width: 80%;
  left: 10%;
  bottom: 20px;
  padding: 10px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  color: #eccab8;
  display: block;
  margin: 0 auto;
}

/* ***************** 
  Overlay 
********************  */
.c-overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 3000;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s linear;
}

.c-overlay.is-visible {
  visibility: visible;
  opacity: 1;
  transition: all 0.3s linear;
}

.c-overlay__content {
  position: absolute;
  width: 80%;
  left: 10%;
  bottom: 20px;
  padding: 10px 0;
  font-weight: 400;
  text-align: center;
  color: #eccab8;
  display: block;
  margin: 0 auto;
  opacity: 1;
}
.c-overlay__content.is-hidden {
  opacity: 0;
  transition: all 0.3s linear;
}

.c-close__button {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 32px;
  height: 32px;
  opacity: 1;
}

.c-close__button:hover {
  opacity: 1;
}

.c-close__button::before,
.c-close__button::after {
  position: absolute;
  left: 15px;
  top: 0;
  content: "";
  height: 33px;
  width: 2px;
  background-color: #eccab8;
}

.c-close__button::before {
  transform: rotate(45deg);
}

.c-close__button::after {
  transform: rotate(-45deg);
}

.c-overlay__text {
  margin-bottom: 20px;
}

.c-overlay__logo {
  max-width: 320px;
  margin: 0 auto 20px;
  transform: scale(1);
  transition: scale 1s ease;
}
.is-hidden .c-overlay__logo {
  transform: scale(0);
  transition: scale 1s ease;
}

.c-overlay__logo img {
  width: 100%;
}

.c-overlay__title {
  display: inline-block;
  margin-bottom: 20px;
}

.c-overlay__paragraph {
  margin: 0 0 20px;
}

/* ************************ 
  Animations
************************  */
.c-transcript {
  position: absolute;
  max-width: 400px;
  max-height: 240px;
  overflow-y: scroll;
  z-index: 1000;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  color: #fff;
  bottom: 100px;
  padding: 0 20px;
  opacity: 0;
  transition: 300ms opacity ease;
  background: transparent;
}

.c-transcript.is-open {
  opacity: 1;
  transition: 300ms opacity ease;
}

.c-transcript__paragraph {
  margin: 0 0 10px;
}

/* Browser specific styles */
/**
 * Shame
*/
.a-orientation-modal {
  display: none !important;
}

::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px;
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: #eccab8;
  /* rgba(236, 202, 184, 1); */
}

.c-button--start {
  -webkit-tap-highlight-color: transparent;
}

/* General styles */
html {
  /* 1rem = 10px */
  font-size: 62.5%;
}

body {
  background: #333;
  color: #eccab8;
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
}
