@font-face {
  font-family: 'GillSansMT';
  src: url("../fonts/GillSansMT-ExtraCondensedBold.woff2") format("woff2"), url("../fonts/GillSansMT-ExtraCondensedBold.woff") format("woff");
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html, body {
  width: 100%;
  height: 100vh;
}

.app {
  width: 100%;
  height: 100vh;
  display: block;
  background-image: url("../image/bg.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  font-family: 'GillSansMT';
}

.block-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.canvas-block {
  z-index: 3;
  position: absolute;
  width: 100%;
  left: 0%;
  bottom: 0;
  -webkit-transition: opacity 1s ease;
  transition: opacity 1s ease;
}

.canvas-block #canvas {
  width: 100%;
  display: block;
}

.main-block {
  opacity: 1;
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease .5s;
  transition: all ease .5s;
}

.main-block_hide {
  opacity: 0;
}

.progress {
  position: absolute;
  width: 25%;
  left: 65%;
  top: 5%;
}

.progress .part {
  width: 5.5%;
  position: absolute;
  top: 4%;
  left: 1%;
}

.progress .part-main {
  left: 6.5%;
  top: 4.3%;
  width: 10%;
  height: 88.2%;
  background-image: url(../image/bar-inner.png);
  background-size: 5% 100%;
  background-repeat: repeat-x;
  -webkit-transition: all ease .4s;
  transition: all ease .4s;
}

.progress .part-right {
  width: 19%;
  top: -5.5%;
  left: 10%;
  -webkit-transition: all ease .4s;
  transition: all ease .4s;
}

.progress .orgazm {
  position: absolute;
  top: 100%;
  width: 45%;
  left: 27%;
}

.notice {
  position: absolute;
  width: 20%;
  left: 2.2%;
  top: 5%;
}

.mouse-block {
  position: absolute;
  top: 25%;
  left: 75%;
  width: 5%;
}

.mouse-block .mouse {
  position: absolute;
  width: 140%;
  top: 115%;
  left: -10%;
  z-index: 2;
}

.mouse-block .arrow2 {
  position: absolute;
  top: 240%;
  left: 0;
  width: 100%;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}

.button {
  position: absolute;
  bottom: 40%;
  width: 20%;
  left: 60%;
  z-index: 10;
  opacity: 0;
  -webkit-transition: all ease .4s;
  transition: all ease .4s;
}

.button:hover {
  width: 22%;
}

.button img {
  -webkit-animation: btnpulse 1s ease;
          animation: btnpulse 1s ease;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.button_active {
  -webkit-animation: btn 1s ease;
          animation: btn 1s ease;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes btn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes btn {
  from {
    opacity: 0;
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes btnpulse {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes btnpulse {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
