body {
  background: #fff;
  padding: 0;
  margin: 0;
  height: 100vh;
  width: 100%;
  position: relative;
  font-family: sans-serif;
  cursor: none;
}

body* {
  padding: 0;
  margin: 0;
}

body .cursor {
  height: 15px;
  width: 15px;
  background-color: royalBlue;
  border-radius: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: fixed;
  z-index: 0;
}

body .cursor.btn-hov {
  background: none;
  border: solid 2px royalBlue;
}

body table {
  border-spacing: 0;
  border-collapse: collapse;
  height: 100%;
  width: 100%;
  position: fixed;
  pointer-events: none;
  z-index: 4;
  opacity: .5;
}

body table td {
  border: dashed 1px red;
}

body button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: normal;
  text-align: center;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  white-space: normal;
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  -webkit-appearance: none;
}

body .u-fit {
  width: 100%;
  height: 100%;
}

body .u-relative {
  position: relative;
}

body .u-absolute {
  position: absolute;
}

body .u-absolute.u-pos-tl {
  top: 0;
  left: 0;
}

body .u-flex {
  display: flex;
}

body .u-flex.u-center-xy {
  justify-content: center;
  align-items: center;
}

body .c-magnetic-btn {
  padding: 0 40px;
  height: 40px;
  border-radius: 40px;
}

body .o-circle {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.015);
  border: 2px solid rgba(0, 0, 0, 0.5);
  border-radius: 50px;
  z-index: -1;
  opacity: 0.2;
  transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: opacity;
}

body .t-btn-label {
  display: inline-block;
  user-select: none;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.5);
  font-size: 13px;
}

body .is-hover .o-circle {
  opacity: 0.4;
}

svg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

svg g.test {
  stroke: black;
  stroke-width: 1;
}

svg g.ceinture {
  opacity: .3;
}

svg g.redline {
  transition: all ease-in-out 3000ms;
}

svg circle {
  transform-origin: 25%;
  transition: all ease-in-out 1s;
}

svg circle.fillwhite {
  fill: white;
}

svg circle.fillblue {
  fill: royalBlue;
}

svg circle.fillgreen {
  fill: seaGreen;
}

svg circle.fillred {
  fill: red;
}

svg circle.circle2 {
  height: 140px;
  width: 140px;
  opacity: .5;
}

svg circle.spe {
  animation: out ease-in-out 4s infinite;
}

svg circle.bounce {
  animation: bounce ease-in-out 9s infinite alternate;
}

svg circle.bounce2 {
  animation: bounce2 ease-in-out 10s infinite alternate;
}

svg circle.bounce3 {
  animation: bounce3 ease-in-out 11s infinite alternate;
}

svg circle.bounce4 {
  animation: bounce4 ease-in-out 12s infinite alternate;
}

svg circle.animfast.bounce {
  animation-duration: 4s;
}

svg circle.animfast.bounce2 {
  animation-duration: 5s;
}

svg circle.animfast.bounce3 {
  animation-duration: 6s;
}

svg circle.animfast.bounce4 {
  animation-duration: 7s;
}

@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0% {
    transform: translate(-3px, 0) rotate(0);
  }
  100% {
    transform: translate(3px, 0) rotate(360deg);
  }
}

@keyframes bounce2 {
  0% {
    transform: translate(0, 3px) rotate(0);
  }
  50% {
    transform: translate(-3px, 3px) rotate(180deg);
  }
  100% {
    transform: translate(0, -3px) rotate(360deg);
  }
}

@keyframes bounce3 {
  0% {
    transform: translate(3px, -3px) rotate(0);
  }
  100% {
    transform: translate(-3px, 3px) rotate(360deg);
  }
}

@keyframes bounce4 {
  0% {
    transform: translate(-3px, 3px) rotate(0);
  }
  100% {
    transform: translate(3px, -3px) rotate(360deg);
  }
}

@keyframes out {
  0% {
    transform: translate(0, 0) rotate(0);
  }
  20% {
    transform: translate(-35px, 20px) rotate(72deg);
  }
  50% {
    transform: translate(-37px, 24px) rotate(180deg);
  }
  80% {
    transform: translate(-35px, 23px) rotate(288deg);
  }
  90% {
    transform: translate(-35.5px, 22x) rotate(324deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

.right-panel {
  height: 100%;
  width: 50%;
  float: right;
  display: inline-block;
  position: relative;
  z-index: 10;
}

.right-panel .content-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
