

/* ==========================================================================
   normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css
   ========================================================================== */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type='checkbox'],input[type='radio']{box-sizing:border-box;padding:0}input[type='number']::-webkit-inner-spin-button,input[type='number']::-webkit-outer-spin-button{height:auto}input[type='search']{-webkit-appearance:none}input[type='search']::-webkit-search-cancel-button,input[type='search']::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}

.fade-in-image {
  animation: fadeIn 5s;
  -webkit-animation: fadeIn 5s;
  -moz-animation: fadeIn 5s;
  -o-animation: fadeIn 5s;
  -ms-animation: fadeIn 5s;
}


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

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

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

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

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


html {
    overflow-y: scroll;
}

body {
    position: relative;
    left: 0%;
    top: 0%;
    right: auto;
    bottom: auto;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    margin-top: 0px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-align-self: stretch;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    
    text-align: center;
    background-clip: content-box;
    -webkit-text-fill-color: inherit;
    -o-object-fit: fill;
    object-fit: fill;

    background-color: black;
    color: white;
    overflow-anchor: none;
}

canvas {
    width: 100%;
    height: auto;
   // background-color: white;
    z-index: 10;
    box-shadow:
        rgba(222, 231, 239, 0.7) 2px 6px 12px -2px,
        rgba(219, 226, 232, 0.1) 2px 3px 7px -3px;

}

.mydiv
{
    display: block;
    perspective: 1000px;
    perspective-origin: 50% 50%;
    transform-origin: 50% 50% 0;
    font-size: 22pt;
    line-height: 120%;
    width:100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mydiv > div {
}

h1 {
    position: relative;
    font-size: 26pt;
    line-height: 120%;
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
    left: 35%;
    width: 30%;
//    transform: rotateY(-5deg) translateZ(50px);
}

h1:after
{
    text-align: center;
    content: "";
    position: absolute;
    left: 30%;
    right: 0;
    height: 50px;
    width: 40%;
    color: #fff;
    border-bottom: thin solid #fff;
}

p {
    font-size: 12pt;
    line-height: 1.25em;
}

a {
    color: #f81
}

b {
    color: #f81
}

div.trigger
{
    display: block;
    font-size: 16px;
    border-right: 10px solid white;
    margin-right: -5%;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 1.1em;
    opacity: 50%;
    cursor:pointer;
}

div.trigger:hover
{
    opacity: 100%;
    transition: opacity 0.25s ease-in-out;
}

div.trigger.expanded
{
    background-color: #222;
    opacity: 75%;
    color: #f80;
    border-right: 10px solid #f80;
    transition: all 0.25s ease-in-out;
}

div.trigger.expanded:hover
{
    opacity: 100%;
    transition: opacity 0.25s ease-in-out;
}

div.scrollable
{
    overflow: auto;
}

div.collapsible
{
    position: absolute;
    top: 0;
    margin: 0px;
    padding: 0px;
    opacity: 0%;
    transition: all 1s ease-in-out;
}

div.collapsible.visible
{
    opacity: 0%;
}

div.collapsible.expanded
{
    position: absolute;
    top: 0;
    opacity: 100%;
//    transition: opacity 0.5s ease-in-out;
}


.bullet {
    font-size: 18px;
    line-height: 130%;
    margin-top: 0;
    margin-bottom: 3px;
    margin-left: 0;
    padding-left: 1.5em;
    list-style-type:none;
    background-image: url("/images/circle.png");
    background-size: 8px;
    background-position: 0% 25%;
    background-clip: padding-box;
    background-repeat: no-repeat;
}

.twoD
{
    position: relative;
    right: 10%;
    color: #fff;
    text-align: right;
    font-size: 10px;
}

.gray
{
    background: #333;
}

.thumb
{
    width: 70%;
    height: auto;
      box-shadow:
        rgba(22, 31, 39, 0.42) 0px 6px 12px -2px,
        rgba(19, 26, 32, 0.08) 0px 3px 7px -3px;
      border-radius: 10px;
      border: 1px solid;
      border-color:
        rgb(53, 60, 126)
        rgb(53, 60, 126)
        rgb(84, 94, 104);
}

.tag {
  opacity: 0;
  transition: all 1s ease-in-out;
  transform: rotateY(0deg) translateX(0px) translateY(0px) translateZ(-500px);
}

.tag.visible {
  opacity: 1;
  transform: rotateY(0deg) translateX(0px) translateY(0px) translateZ(0px);
}

.leftBank {
    position: relative;
    float: left;
    text-align: right;
    vertical-align: middle;
    left: 10%;
    width: 35%;
    opacity: 0;
    transform-origin: 100% 0%;
    transform: rotateY(0deg) translateX(0px) translateY(0px) translateZ(0px);
    height: 100%;
    margin: 5px 5px 5px 5px;
    transition: all 2s ease-in-out;
}

.leftBank.visible {
  opacity: 1;
  transform: rotateY(10deg) translateX(0px) translateY(0px) translateZ(0px);
}


.rightBank {
    position: relative;
    float: right;
    text-align: left;
    opacity: 0;
    transform-origin: 0% 0%;
    transform: rotateY(0deg) translateX(0px) translateY(0px)  translateZ(0px);
    height: auto;
    right: 15%;
    width: 35%;
    height: 100%;
    padding: 0 0 0 0;
    font-size: 16pt;
    margin: 5px 5px 5px 5px;
    transition: all 2s ease-in-out;
}

.rightBank.visible {
  opacity: 1;
  transform: rotateY(-10deg) translateX(0px) translateY(0px) translateZ(0px);
}

.scrolldown {
      position: fixed;
      left: 50%;
      bottom: 20px;
      width: 30px;
      height: 30px;
      border-radius: 10px;
      background-color: #555;
      z-index: 200;
}

.logo {
  position: absolute;
  float: right;
  left: 33%;
  right: 33%;
  top: 10em;
  bottom: auto;
  display: block;
  width: auto;
  height: auto;
  max-width: 33%;
  pointer-events: none;
  transform-origin: 80% 0%;
  transform: rotateY(10deg) translateX(0px) translateY(0px) translateZ(100px);
  transition: transform 0.5s ease-in-out;

  mix-blend-mode: exclusion;
  -webkit-mix-blend-mode: exclusion;
}

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


body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
//  background: $primary;
}
*/

#email {
    background: #111;
    font-size: 18pt;
    width: 60%;
}

#submit {
    background: #111;
    font-size: 18pt;
}

$primary: #888;

input[type='range'] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: white;
  &:focus {
    outline: none;
  }
  &::-webkit-slider-thumb {
    -webkit-appearance: none;
  }
  &::-moz-range-thumb {
    border: none;
  }
}

.range-style {
  width: 400px;
  height: 60px;
  padding: 20px;
  background: $primary;
  border-radius: 10px;
  box-shadow: -2px -2px 8px white, 2px 2px 8px rgba(black, 0.5);

  @mixin track-style {
    display: flex;
    align-items: center;
    height: 20px;
    border-radius: 10px;
    box-shadow: inset -2px -2px 8px white, inset 2px 2px 8px rgba(black, 0.5);
  }

  @mixin thumb-style {
    position: relative;
    top: -50%;
    width: 40px;
    height: 40px;
    background-color: $primary;
    background-image: linear-gradient(-45deg, rgba(white, 0.8), transparent);
    border-radius: 50%;
    box-shadow: -1px -1px 2px white, 1px 1px 2px rgba(black, 0.3);
  }
  &::-webkit-slider-runnable-track {
    @include track-style;
  }
  &::-webkit-slider-thumb {
    @include thumb-style;
  }
  &::-moz-range-track {
    @include track-style;
  }
  &::-moz-range-thumb {
    @include thumb-style;
  }
}

.floater
{
    position: relative;
    background: white;
    width: 10%;
    border-radius: 10px;
}

#canvas2
{
//    transform: rotateY(-5deg);
}

#effects
{
    position: fixed;
    left: 2%;
    bottom: 2%;
    opacity: 50%;
    z-index: 2;

    display: flex;
    max-width: 100%;
    margin-top: 0px;
    flex-direction: horizontal;
    justify-content: space-around;
    align-items: stretch;
    align-self: stretch;
    flex: 1;
}

:root {
    --accent: #555;
    --border-width: 6px;
    --border-radius: 55px;
    --font-size: 30px;
}

.toggle {
    position: relative;
//    border: solid var(--border-width) var(--accent);
    border-radius: var(--border-radius);
    background: white;
    color: black;
    padding: 1px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.toggle>input[type="radio"] {
   display: none;
}

.toggle>label {
    padding: 6px;
    border-radius: var(--border-radius);
    border: solid 3px white;
}

.toggle>label:hover {
    background: yellow;
}

.toggle>label.checked {
    background: yellow;
    border: solid 3px black;
}

#effects:hover
{
    opacity: 100%;
    transition: opacity 0.5s ease-in-out;
}


.cube {
    position: relative;
    transform-style: preserve-3d;
    transform-origin: 50% 50%;
    text-align: center;
    vertical-align: middle;
    left: 25%;
    width: 10%;
    margin: 5px 5px 5px 5px;
    animation-name: spin;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.cube__face {
  position: absolute;
  width: 200px;
  height: 200px;
  transform-origin: 50% 50%;
  background: url("../images/xr-logo.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin: 0;
  border: 2px solid #ddd;
  opacity: 50%;
  transition: all 0.25s ease-in-out;
}

.cube__face:hover
{
    opacity: 0%;
}

.cube__face--front  { transform: rotateY(  0deg) translateZ(100px); }
.cube__face--right  { transform: rotateY( 90deg) translateZ(100px); }
.cube__face--back   { transform: rotateY(180deg) translateZ(100px); }
.cube__face--left   { transform: rotateY(-90deg) translateZ(100px); }
.cube__face--top    { transform: rotateX( 90deg) translateZ(100px); }
.cube__face--bottom { transform: rotateX(-90deg) translateZ(100px); }

p {
    font-size: 12pt;
}

.center-text
{
    position: absolute;
    width: 100%;
    text-align: center;
    left: 0%;
    margin-top: 80px;
    animation-name: spin;
    animation-duration: 10s;
    animation-direction: reverse;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    z-index: 20;
}

@keyframes spin {
    from { transform: rotateY(0deg); }
    to   { transform: rotateY(360deg); }
}

@media screen and (max-width: 991px) {
    h1 {
        font-size: 24px;
        left: 10%;
        width: 80%;
    }
    
    .logo {
        top: 3em;
        transform-origin: 0% 0%;
    }

    
    .mydiv {
        font-size: 12pt;
        line-height: 140%;
    }

    .leftBank {
        font-size: 14pt;
        left: 1%;
        width: 35%;
    }

    .rightBank {
        font-size: 12pt;
        right: 1%;
        width: 55%;
    }

    #principles
    {
        left: 25%;
        width: 50%;
    }

    div.trigger {
        font-size: 8pt;
        padding-top: 4pt;
        padding-bottom: 4pt;
        padding-right: 10px;
    }
    
    .bullet {
        font-size: 11pt;
        background-position: 0% 5%;
    }
    
    #effects
    {
        left: 25%;
        width: 50%;
    }

    #twoD
    {
        font-size: 8pt;
        color: #fff;
    }
    
    .cube {
        left: 5%;
        width: 10%;
        margin: 5px 5px 5px 5px;
    }

    .center-text {
        margin-top: 40px;
    }
    
    .cube__face {
      position: absolute;
      width: 100px;
      height: 100px;
      transform-origin: 50% 50%;
      background: url("../images/xr-logo.png");
      background-size: 100% 100%;
      background-repeat: no-repeat;
      margin: 0;
      border: 2px solid white;
    }

    .cube__face--front  { transform: rotateY(  0deg) translateZ(50px); }
    .cube__face--right  { transform: rotateY( 90deg) translateZ(50px); }
    .cube__face--back   { transform: rotateY(180deg) translateZ(50px); }
    .cube__face--left   { transform: rotateY(-90deg) translateZ(50px); }
    .cube__face--top    { transform: rotateX( 90deg) translateZ(50px); }
    .cube__face--bottom { transform: rotateX(-90deg) translateZ(50px); }

    p {
        font-size: 8pt;
    }

    .toggle {
        margin: 0px;
        padding: 1px;
        padding-top: 5px;
        padding-bottom: 5px;
    }
    
    .toggle>label {
        font-size: 7pt;
        line-height: 7pt;
    }
}

@media screen and (max-width: 767px) {
}

@media screen and (max-width: 479px) {
}
