@import url(http://fonts.googleapis.com/css?family=Raleway:400,600,700);
@import url(https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900);

@font-face {
  font-weight: normal;
  font-style: normal;
  font-family: 'codropsicons';
  src:url('../fonts/codropsicons/codropsicons.eot');
  src:url('../fonts/codropsicons/codropsicons.eot?#iefix') format('embedded-opentype'),
    url('../fonts/codropsicons/codropsicons.woff') format('woff'),
    url('../fonts/codropsicons/codropsicons.ttf') format('truetype'),
    url('../fonts/codropsicons/codropsicons.svg#codropsicons') format('svg');
}

*, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; }
.clearfix:before, .clearfix:after { content: ''; display: table; }
.clearfix:after { clear: both; }

html, body {
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100%;
}

body {
  color: #fff;
  background: #f5f8fa;
  font-weight: 400;
  font-size: 1em;
  font-family: 'Raleway', Arial, sans-serif;
  padding: 1px;
}

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

a:hover,
a:focus {
  color: #afb3b8;
  outline: none;
}

.content {
  min-height: 250px;
  margin: 0 auto;
  padding-bottom: 2em;
}

.content--tiny {
  max-width: 800px;
}

.container {
  text-align: center;
/*  padding: 5.25em 0.5em 0;*/
  overflow-x: hidden;
  overflow-y: hidden;
}
.svg-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    z-index: 200;
}
.indexsvg{
  margin: auto;
  width: 100%;
  max-height: 100vh;
}

#waves {
  display: none;
  margin: auto;
  width: 100%;
  height: 100%;
  position: absolute;
  border: 1px solid transparent;
  bottom: 0;
  left: 0;
  z-index: 1;
}
#waves canvas {
  width: 100%;
  height: 100%;
  z-index: 1;
}
.activity-run, .activity-read, .activity-guitar, .activity-cook, .activity-travel, .activity-basketball{
  width: 30%;
  border-radius: 50%;
  transition: all 0.5s;
  padding: 5px
}
.activity-travel, .activity-basketball{
  cursor: default;
}
.control-buttons{
  position: fixed;
  z-index: 10000;
  top: 20px;
  right: 20px;
  button{
    display: block;
    margin-right: 5px;
  }
}
button{
  background: transparent;
  color: #ccd6dd;
  border: none;
}

/*#btnRestart{
  position: fixed;
  z-index: 10000;
  top: 50%;
  right: 50%;
  transform:translate(-50%,-50%);
  margin: 0;
  padding: 0;
}*/

.control-buttons button i{
  transition: all 0.6s;
}

.control-buttons button i:hover{
  color: #231f20;
  transition: all 0.6s;
}

#speakerphone-volume{
  visibility: hidden;
}

.box{
  width: 50px;
  height: 50px;
  background: hsl(120,50%,50%);
  position: absolute;
  bottom: 0;
  right: 0;
  transition: 0.1s;
  opacity: 0.1;
  border-radius: 50%;
}

.photobg{
  background-image: url('../images/icons/lfbg.svg');
  background-position: center center;
  background-size: 100%;
  width: 135px;
  height: 160px;
  position: absolute;
  top: -55px;
  left: 82px;
}

.logo-ani{
  width: 50px;
  height: auto;
  cursor: pointer;
/*  margin-top: 21vh;*/
  z-index: 11;
  -webkit-animation: spinAround 2s linear infinite;
  -moz-animation: spinAround 2s linear infinite;
  animation: spinAround 2s linear infinite;
  position: relative;
}

@-webkit-keyframes spinAround {
  from {
    -webkit-transform: rotate(0deg)
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes spinAround {
  from {
    -moz-transform: rotate(0deg)
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@keyframes spinAround {
  from {
    transform: rotate(0deg)
  }
  to {
    transform: rotate(360deg);
  }
}
.saying-container {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    z-index: 20000;
}

.saying-text{
  font-size: 12px;
  font-family: 'Lato',sans-serif;
  letter-spacing: 0.5px;
  font-weight: 100;
  margin: 10px 0;
  font-style: italic;
  border-top: 1px dotted rgba(0,0,0,.3);
  padding-top: 10px;
  color: #231f20;
}



.runner { 
  position: absolute;
  z-index: 2000;
  display: block; 
  margin: 0 auto; 
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}

.runner canvas{
    -ms-transform: rotate(-45deg); /* IE 9 */
  -webkit-transform: rotate(-45deg); /* Chrome, Safari, Opera */
  transform: rotate(-45deg);
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 1px solid #1c9ccd;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #1c9ccd;
  cursor: pointer;
}

/* All the same stuff for Firefox */
input[type=range]::-moz-range-thumb {
  border: 1px solid #1c9ccd;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #1c9ccd;
  cursor: pointer;
}

/* All the same stuff for IE */
input[type=range]::-ms-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 8px;
  width: 8px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: transparent;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  background: transparent;
}

input[type=range]::-ms-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  background: transparent;
}

.speed-range{
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
  background: transparent;
}

#play-guitar{
  cursor: pointer;
}
.bottom-wave-container{
  width:100vw;
  height:100vh;
  overflow:hidden;
  z-index: 1;
}
.bottom-wave,
.bottom-wave::before,
.bottom-wave::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250vw;
  height: 250vw;
  z-index: 1;
  margin-left: -125vw;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  background-image:
    -webkit-linear-gradient(
      rgba(150,255,255,0.2),
      rgba(240,240,100,0.2)
    );
  background-image:
    -ms-linear-gradient(
      rgba(150,255,255,0.2),
      rgba(240,240,100,0.2)
    );
  background-image:
    linear-gradient(
      rgba(150,255,255,0.2),
      rgba(240,240,100,0.2)
    );
  border-radius: 38% 42%;
  box-shadow: inset 0 0 10vw rgba(255,255,255,0.2);
  -webkit-animation: spin 16s infinite linear;
  -ms-animation: spin 16s infinite linear;
          animation: spin 16s infinite linear;
}

.bottom-wave::before {
  width: 105%;
  height: 95%;
  margin-top: -125vw;
  -webkit-transform-origin: 49% 51%;
  -ms-transform-origin: 49% 51%;
          transform-origin: 49% 51%;
  background-image:
    -webkit-linear-gradient(
      rgba(255,180,150,0.2),
      rgba(180,200,255,0.2)
    );
  background-image:
    -ms-linear-gradient(
      rgba(255,180,150,0.2),
      rgba(180,200,255,0.2)
    );
  background-image:
    linear-gradient(
      rgba(255,180,150,0.2),
      rgba(180,200,255,0.2)
    );
  border-radius: 40% 38%;
  -webkit-animation: spin 13s infinite linear;
  -ms-animation: spin 13s infinite linear;
          animation: spin 13s infinite linear;
}

.bottom-wave::after {
  width: 102%;
  height: 98%;
  margin-top: -125vw;
  -webkit-transform-origin: 51% 49%;
  -ms-transform-origin: 51% 49%;
          transform-origin: 51% 49%;
  background-image:
    -webkit-linear-gradient(
      rgba(100,240,150,0.2),
      rgba(80,200,255,0.2)
    );
  background-image:
    -ms-linear-gradient(
      rgba(100,240,150,0.2),
      rgba(80,200,255,0.2)
    );
  background-image:
    linear-gradient(
      rgba(100,240,150,0.2),
      rgba(80,200,255,0.2)
    );
  border-radius: 48% 42%;
  -webkit-animation: spin 10s infinite linear;
  -ms-animation: spin 10s infinite linear;
          animation: spin 10s infinite linear;
}

@-webkit-keyframes spin {
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@-ms-keyframes spin {
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}
@keyframes spin {
  100% { -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@-webkit-keyframes rotateOne {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-ms-keyframes rotateOne {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes rotateOne {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes capRotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-30deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-ms-keyframes capRotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-30deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@keyframes capRotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(-30deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
#menu-2{
  display: none;
  z-index: 1000;
}
.control-buttons-2{
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: none;
  position: absolute;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
#outer-dotted-circle, #SVGID_4_, #menu-1{
  display: none;
}
/*.svg-container {
    width: 100%;
    z-index: 2;
    margin: auto;
    padding-top: 50px;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
}*/
#menu-2{
  display: block;
}
.activity-run, .activity-read, .activity-guitar, .activity-cook, .activity-travel, .activity-basketball{
  width: 50px;
  border-radius: 50%;
  transition: all 0.5s;
  padding: 5px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}
.control-buttons{
  top: 70px;
  right: 20px;
  font-size: 18px;
  width: 20px;
}
button{
  padding: 0 0 10px 0;
}
#play-button{
  display: block !important;
}
#reverse-button{
  display: block !important;
}
.fa-caret-right{
  display: none;
}
.fa-caret-left{
  display: none;
}
.menu-2 ul li a {
    padding: 0.25em;
    font-size: 2em;
    line-height: 46px;
}
input[type=range]::-webkit-slider-thumb {
  height: 5px !important;
  width: 5px !important;
}
/* All the same stuff for Firefox */
input[type=range]::-moz-range-thumb {
  height: 5px !important;
  width: 5px !important;
}
input[type=range]::-ms-thumb {
  height: 5px;
  width: 5px;
}
}

@media screen and (max-width: 480px) {
.control-buttons-2{
  display: block;
}
button{
  padding: 20px;
}
.control-buttons{
  display: none;
}
.activity-run, .activity-read, .activity-guitar, .activity-cook, .activity-travel, .activity-basketball{
  width: 35px;
  border-radius: 50%;
  transition: all 0.5s;
  padding: 0;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
}
.morph-shape-2 {
    width: 90%;
}
.menu-2__inner {
    padding: 95px 0;
}
.menu-2.menu-2--open {
    -webkit-transform: translate3d(-50%, 40px, 0);
    transform: translate3d(-50%, 40px, 0);
}
.speed-range{
  top: -10px;
}
}




