@charset "UTF-8";
/*
  per le media query:

  Desktop più piccolo:
  @media all and (max-width: $desktop_small) {

  Layout Tablet:
  @media all and (max-width: $tablet) {

  Layout Mobile:
  @media all and (max-width: $mobile) {

*/
@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:wght@200;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Maven+Pro:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;900&display=swap");
html, body {
  -webkit-text-size-adjust: 100%;
  background-color: #000;
  line-height: 1.29;
  color: #FFF;
  font-family: "Titillium Web";
  font-weight: 400;
}

body, body * {
  box-sizing: border-box;
  border: none;
  margin: 0;
  padding: 0;
  outline: none;
  color: inherit;
  text-decoration: none;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-appearance: none;
}
body::-webkit-input-placeholder, body *::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

body:-moz-placeholder, body *:-moz-placeholder {
  color: inherit;
  opacity: 0.5;
}

body::-moz-placeholder, body *::-moz-placeholder {
  color: inherit;
  opacity: 0.5;
}

body:-ms-input-placeholder, body *:-ms-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

#CybotCookiebotDialog * {
  background-size: auto;
}

a, img, picture {
  display: block;
}

p a {
  display: inline;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-animation: autofill 0s forwards;
  animation: autofill 0s forwards;
}

input::-webkit-input-placeholder {
  line-height: normal !important;
}

textarea {
  display: block;
}

#wrapper {
  height: 100vh;
  height: var(--real100vh);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes float {
  0% {
    transform: translate(0%, 0%);
  }
  25% {
    transform: translate(10%, 10%);
  }
  50% {
    transform: translate(5%, 20%);
  }
  75% {
    transform: translate(-10%, 15%);
  }
  100% {
    transform: translate(0%, 0%);
  }
}
@keyframes topCircleMove {
  0% {
    transform: translate(56vw, 0vh);
  }
  50% {
    transform: translate(105vw, 5vh);
  }
  51% {
    transform: translate(105vw, -120%);
  }
  52% {
    transform: translate(20vw, -120%);
  }
  100% {
    transform: translate(56vw, 0vh);
  }
}
@keyframes bottomLeftCircleMove {
  0% {
    transform: translate(12vw, 80vh);
  }
  50% {
    transform: translate(20vw, -150%);
  }
  51% {
    transform: translate(-150%, -150%);
  }
  52% {
    transform: translate(-150%, 105vh);
  }
  100% {
    transform: translate(12vw, 80vh);
  }
}
.logo {
  position: fixed;
  top: 65px;
  left: 74px;
  z-index: 100;
}
@media all and (max-width: 1800px) {
  .logo {
    top: 45px;
    left: 45px;
  }
}
@media all and (max-width: 1439px) {
  .logo {
    top: 35px;
    left: 35px;
  }
}
@media all and (max-width: 767px) {
  .logo {
    top: 25px;
    left: 25px;
  }
}
.logo img {
  width: 170px;
  height: auto;
}
@media all and (max-width: 1700px) {
  .logo img {
    width: 150px;
  }
}
@media all and (max-width: 1439px) {
  .logo img {
    width: 130px;
  }
}
@media all and (max-width: 499px) {
  .logo img {
    width: 120px;
  }
}

.btn.primary {
  display: inline-block;
  font-family: "Roboto";
  font-weight: 900;
  font-size: 70px;
  padding: 0.25em 0.65em 0.2em;
  line-height: 1;
  border-radius: 0.2em;
  background: #FFF;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  cursor: pointer;
}
.btn.primary.small {
  font-size: 24px;
  background-color: rgba(79, 79, 79, 0.2);
}
@media all and (max-width: 1900px) {
  .btn.primary {
    font-size: 54px;
  }
}
@media all and (max-width: 1800px) {
  .btn.primary {
    font-size: 42px;
  }
}
@media all and (max-width: 1700px) {
  .btn.primary {
    font-size: 38px;
  }
}
@media all and (max-width: 1439px) {
  .btn.primary {
    font-size: 35px;
  }
}
@media all and (max-width: 1279px) {
  .btn.primary {
    font-size: 32px;
  }
}
.btn.secondary, .btn.tertiary {
  display: inline-block;
  font-family: "Roboto";
  font-weight: 900;
  font-size: 30px;
  padding: 0.2em 0.7em 0.15em;
  border-radius: 0.3em;
  background: #000;
  color: #FFF;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.btn.secondary.disabled, .btn.tertiary.disabled {
  pointer-events: none;
  opacity: 0.4;
  transform: scale(0.8);
}
@media all and (max-width: 1700px) {
  .btn.secondary, .btn.tertiary {
    font-size: 26px;
  }
}
@media all and (max-width: 1439px) {
  .btn.secondary, .btn.tertiary {
    font-size: 22px;
  }
}
.btn.tertiary {
  background: #FFF;
  color: #000;
}

.circle.circle01 {
  width: 495px;
  height: 495px;
  position: fixed;
  bottom: -100px;
  right: -140px;
  animation: float 40s ease-in-out infinite;
}
@media all and (max-width: 1700px) {
  .circle.circle01 {
    width: 400px;
    height: 400px;
  }
}
@media all and (max-width: 1279px) {
  .circle.circle01 {
    width: 300px;
    height: 300px;
  }
}
@media all and (max-width: 767px) {
  .circle.circle01 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    right: -120px;
  }
}
.circle.circle01 > * {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.circle.circle01 .pink {
  border: 4px solid #FF00E5;
  border-radius: 100%;
}
.circle.circle01 .filled {
  top: 70px;
  left: 70px;
  right: 70px;
  bottom: 70px;
  animation: rotate 20s linear infinite;
}
@media all and (max-width: 1700px) {
  .circle.circle01 .filled {
    top: 50px;
    left: 50px;
    right: 50px;
    bottom: 50px;
  }
}
@media all and (max-width: 1279px) {
  .circle.circle01 .filled {
    top: 40px;
    left: 40px;
    right: 40px;
    bottom: 40px;
  }
}
@media all and (max-width: 767px) {
  .circle.circle01 .filled {
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
  }
}
.circle.circle01 .filled:after {
  content: " ";
  display: block;
  width: 70px;
  height: 70px;
  border-radius: 100%;
  background: #6CD7FF;
  position: absolute;
  bottom: 0%;
  right: 50%;
}
@media all and (max-width: 1700px) {
  .circle.circle01 .filled:after {
    width: 50px;
    height: 50px;
  }
}
@media all and (max-width: 1279px) {
  .circle.circle01 .filled:after {
    width: 40px;
    height: 40px;
  }
}
@media all and (max-width: 767px) {
  .circle.circle01 .filled:after {
    width: 30px;
    height: 30px;
  }
}
.circle.circle01 .white {
  animation: rotate 30s linear infinite;
}
.circle.circle01 .white:after {
  content: " ";
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  border: 2px solid #FFF;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media all and (max-width: 1700px) {
  .circle.circle01 .white:after {
    width: 100px;
    height: 100px;
  }
}
@media all and (max-width: 1279px) {
  .circle.circle01 .white:after {
    width: 80px;
    height: 80px;
  }
}
@media all and (max-width: 767px) {
  .circle.circle01 .white:after {
    width: 50px;
    height: 50px;
  }
}
.circle.circle02 {
  width: 220px;
  height: 220px;
  animation: topCircleMove 400s ease-out infinite;
  position: fixed;
  top: 0;
  left: 0;
}
@media all and (max-width: 1700px) {
  .circle.circle02 {
    width: 200px;
    height: 200px;
  }
}
@media all and (max-width: 1279px) {
  .circle.circle02 {
    width: 170px;
    height: 170px;
  }
}
.circle.circle02 > * {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.circle.circle02 .filled {
  animation: rotate 28s linear infinite reverse;
  top: 0px;
  left: -70px;
}
@media all and (max-width: 1700px) {
  .circle.circle02 .filled {
    left: -50px;
  }
}
@media all and (max-width: 1279px) {
  .circle.circle02 .filled {
    left: -35px;
  }
}
.circle.circle02 .filled:after {
  content: " ";
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 100%;
  background: #6CD7FF;
  position: absolute;
  top: -20%;
  right: 30%;
}
@media all and (max-width: 1700px) {
  .circle.circle02 .filled:after {
    width: 55px;
    height: 55px;
  }
}
@media all and (max-width: 1279px) {
  .circle.circle02 .filled:after {
    width: 40px;
    height: 40px;
  }
}
.circle.circle02 .white {
  animation: float 30s linear infinite reverse;
}
.circle.circle02 .white:after {
  content: " ";
  display: block;
  width: 220px;
  height: 220px;
  border-radius: 100%;
  border: 2px solid #FFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media all and (max-width: 1700px) {
  .circle.circle02 .white:after {
    width: 180px;
    height: 180px;
  }
}
@media all and (max-width: 1279px) {
  .circle.circle02 .white:after {
    width: 160px;
    height: 160px;
  }
}
.circle.circle03 {
  width: 84px;
  height: 84px;
  animation: bottomLeftCircleMove 300s ease-out infinite;
  position: fixed;
  top: 0;
  left: 0;
}
@media all and (max-width: 1700px) {
  .circle.circle03 {
    width: 70px;
    height: 70px;
  }
}
@media all and (max-width: 1279px) {
  .circle.circle03 {
    width: 45px;
    height: 45px;
  }
}
.circle.circle03 > * {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.circle.circle03 .filled {
  animation: rotate 18s linear infinite reverse;
  top: -30px;
  right: -30px;
}
@media all and (max-width: 1700px) {
  .circle.circle03 .filled {
    top: -26px;
    right: -26px;
  }
}
@media all and (max-width: 1279px) {
  .circle.circle03 .filled {
    top: -18px;
    right: -18px;
  }
}
.circle.circle03 .filled:after {
  content: " ";
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background: #FFF;
  position: absolute;
  top: 0%;
  right: -5%;
}
@media all and (max-width: 1700px) {
  .circle.circle03 .filled:after {
    width: 30px;
    height: 30px;
  }
}
@media all and (max-width: 1279px) {
  .circle.circle03 .filled:after {
    width: 20px;
    height: 20px;
  }
}
.circle.circle03 .pink {
  animation: float 30s linear infinite reverse;
}
.circle.circle03 .pink:after {
  content: " ";
  display: block;
  width: 84px;
  height: 84px;
  border-radius: 100%;
  border: 2px solid #FF00E5;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media all and (max-width: 1700px) {
  .circle.circle03 .pink:after {
    width: 70px;
    height: 70px;
  }
}
@media all and (max-width: 1279px) {
  .circle.circle03 .pink:after {
    width: 50px;
    height: 50px;
  }
}

:root {
  --real100vh: 100vh;
}

@keyframes glowPink {
  0% {
    text-shadow: 14px 5px 34px #FF00E5, 7px 5px 0px #FF00E5;
  }
  50% {
    text-shadow: 14px 5px 50px #FF00E5, 7px 5px 0px #FF00E5;
  }
  100% {
    text-shadow: 14px 5px 34px #FF00E5, 7px 5px 0px #FF00E5;
  }
}
@keyframes clock {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.page-template-template-quiz #hiddenForm,
.page-template-template-quiz-answers #hiddenForm {
  display: none;
}
.page-template-template-quiz #hiddenForm input,
.page-template-template-quiz-answers #hiddenForm input {
  color: #000;
}
.page-template-template-quiz .stepsTimeline,
.page-template-template-quiz-answers .stepsTimeline {
  position: absolute;
  left: 74px;
  width: 170px;
  display: flex;
  flex-direction: column;
  top: 50%;
  transform: translateY(-50%);
  align-items: center;
}
@media all and (max-width: 1800px) {
  .page-template-template-quiz .stepsTimeline,
.page-template-template-quiz-answers .stepsTimeline {
    left: 45px;
  }
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .stepsTimeline,
.page-template-template-quiz-answers .stepsTimeline {
    width: 150px;
  }
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .stepsTimeline,
.page-template-template-quiz-answers .stepsTimeline {
    width: 130px;
    left: 35px;
  }
}
@media all and (max-width: 1023px) {
  .page-template-template-quiz .stepsTimeline,
.page-template-template-quiz-answers .stepsTimeline {
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    flex-direction: row;
    width: auto;
    top: auto;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .stepsTimeline,
.page-template-template-quiz-answers .stepsTimeline {
    bottom: 25px;
  }
}
.page-template-template-quiz .stepsTimeline .line,
.page-template-template-quiz-answers .stepsTimeline .line {
  position: absolute;
  top: 66px;
  bottom: 66px;
  left: 50%;
  width: 4px;
  margin-left: -2px;
}
@media all and (max-width: 1023px) {
  .page-template-template-quiz .stepsTimeline .line,
.page-template-template-quiz-answers .stepsTimeline .line {
    bottom: auto;
    left: 66px;
    right: 66px;
    height: 4px;
    width: auto;
    margin-top: -2px;
    margin-left: 0;
    top: 50%;
  }
}
.page-template-template-quiz .stepsTimeline .line span,
.page-template-template-quiz-answers .stepsTimeline .line span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0%;
  background: url(../images/vertical-line.svg);
  background-size: 100% 430px;
  background-position: top center;
}
@media all and (max-width: 1023px) {
  .page-template-template-quiz .stepsTimeline .line span,
.page-template-template-quiz-answers .stepsTimeline .line span {
    bottom: 0;
    height: auto;
    right: auto;
    width: 0%;
    background: url(../images/horizontal-line.svg);
    background-size: 430px 100%;
    background-position: left center;
  }
}
.page-template-template-quiz .stepsTimeline .item,
.page-template-template-quiz-answers .stepsTimeline .item {
  width: 132px;
  height: 132px;
  position: relative;
  margin-bottom: 95px;
  display: flex;
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .stepsTimeline .item,
.page-template-template-quiz-answers .stepsTimeline .item {
    width: 112px;
    height: 112px;
    margin-bottom: 75px;
  }
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .stepsTimeline .item,
.page-template-template-quiz-answers .stepsTimeline .item {
    width: 90px;
    height: 90px;
    margin-bottom: 65px;
  }
}
@media all and (max-width: 1023px) {
  .page-template-template-quiz .stepsTimeline .item,
.page-template-template-quiz-answers .stepsTimeline .item {
    margin-bottom: 0;
    margin-right: 65px;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .stepsTimeline .item,
.page-template-template-quiz-answers .stepsTimeline .item {
    margin-right: 35px;
    width: 60px;
    height: 60px;
  }
}
.page-template-template-quiz .stepsTimeline .item:last-child,
.page-template-template-quiz-answers .stepsTimeline .item:last-child {
  margin-bottom: 0;
  margin-right: 0;
}
.page-template-template-quiz .stepsTimeline .item .circle,
.page-template-template-quiz-answers .stepsTimeline .item .circle {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 100%;
  border: 2px solid #FFF;
  background: #000;
  opacity: 0;
}
.page-template-template-quiz .stepsTimeline .item .icon,
.page-template-template-quiz-answers .stepsTimeline .item .icon {
  width: 100%;
  height: 100%;
  position: relative;
}
.page-template-template-quiz .stepsTimeline .item .icon .lottie,
.page-template-template-quiz-answers .stepsTimeline .item .icon .lottie {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  transition: all 0.3s;
}
.page-template-template-quiz .stepsTimeline .item .icon .lottie.disabled,
.page-template-template-quiz-answers .stepsTimeline .item .icon .lottie.disabled {
  transition-duration: 0;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  /* Firefox 10+ */
  filter: gray;
  /* IE6-9 */
  -webkit-filter: grayscale(100%);
  /* Chrome 19+ & Safari 6+ */
  -webkit-transition: all 0.6s ease;
  /* Fade to color for Chrome and Safari */
  -webkit-backface-visibility: hidden;
  /* Fix for transition flickering */
}
.page-template-template-quiz .stepsTimeline .item.team .icon .lottie.disabled,
.page-template-template-quiz-answers .stepsTimeline .item.team .icon .lottie.disabled {
  opacity: 0.5;
}
.page-template-template-quiz .stepsTimeline .item.game .icon .lottie,
.page-template-template-quiz-answers .stepsTimeline .item.game .icon .lottie {
  width: 240%;
}
.page-template-template-quiz .stepsTimeline .item.game .icon .lottie.disabled,
.page-template-template-quiz-answers .stepsTimeline .item.game .icon .lottie.disabled {
  opacity: 0.5;
}
.page-template-template-quiz .stepsTimeline .item.finish .icon .lottie,
.page-template-template-quiz-answers .stepsTimeline .item.finish .icon .lottie {
  width: 210%;
}
.page-template-template-quiz .timer,
.page-template-template-quiz-answers .timer {
  position: absolute;
  top: 44px;
  right: 74px;
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 100;
}
@media all and (max-width: 1800px) {
  .page-template-template-quiz .timer,
.page-template-template-quiz-answers .timer {
    top: 30px;
    right: 45px;
  }
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .timer,
.page-template-template-quiz-answers .timer {
    top: 23px;
  }
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .timer,
.page-template-template-quiz-answers .timer {
    top: 18px;
    right: 35px;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .timer,
.page-template-template-quiz-answers .timer {
    top: 10px;
    right: 10px;
  }
}
.page-template-template-quiz .timer .numbers,
.page-template-template-quiz-answers .timer .numbers {
  display: flex;
  font-family: "Maven Pro";
  font-weight: 700;
  font-size: 25px;
  line-height: 1;
  margin-right: 24px;
  opacity: 0;
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .timer .numbers,
.page-template-template-quiz-answers .timer .numbers {
    font-size: 20px;
    margin-right: 22px;
  }
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .timer .numbers,
.page-template-template-quiz-answers .timer .numbers {
    font-size: 16px;
    margin-right: 18px;
  }
}
.page-template-template-quiz .timer .numbers span,
.page-template-template-quiz-answers .timer .numbers span {
  width: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .timer .numbers span,
.page-template-template-quiz-answers .timer .numbers span {
    width: 15px;
  }
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .timer .numbers span,
.page-template-template-quiz-answers .timer .numbers span {
    width: 12px;
  }
}
.page-template-template-quiz .timer .icon,
.page-template-template-quiz-answers .timer .icon {
  width: 76px;
  height: 76px;
  border-radius: 100%;
  overflow: hidden;
  box-shadow: -4px 3px 34px #FF00E5;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .timer .icon,
.page-template-template-quiz-answers .timer .icon {
    width: 56px;
    height: 56px;
  }
}
.page-template-template-quiz .timer .icon .iconCutter,
.page-template-template-quiz-answers .timer .icon .iconCutter {
  width: 36px;
  height: 36px;
  overflow: hidden;
  margin-top: 1%;
  position: relative;
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .timer .icon .iconCutter,
.page-template-template-quiz-answers .timer .icon .iconCutter {
    width: 26px;
    height: 26px;
  }
}
.page-template-template-quiz .timer .icon .iconCutter .lottie,
.page-template-template-quiz-answers .timer .icon .iconCutter .lottie {
  width: 239%;
  position: absolute;
  top: 47.5%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-template-template-quiz .timer .icon .iconCutter .animation,
.page-template-template-quiz-answers .timer .icon .iconCutter .animation {
  width: 33px;
  height: 33px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .timer .icon .iconCutter .animation,
.page-template-template-quiz-answers .timer .icon .iconCutter .animation {
    width: 23px;
    height: 23px;
  }
}
.page-template-template-quiz .timer .icon .iconCutter .animation span,
.page-template-template-quiz-answers .timer .icon .iconCutter .animation span {
  position: absolute;
}
.page-template-template-quiz .timer .icon .iconCutter .animation span:nth-child(1),
.page-template-template-quiz-answers .timer .icon .iconCutter .animation span:nth-child(1) {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 100%;
  border: 2px solid #FFF;
}
.page-template-template-quiz .timer .icon .iconCutter .animation span:nth-child(2),
.page-template-template-quiz-answers .timer .icon .iconCutter .animation span:nth-child(2) {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  margin-top: -1px;
  margin-left: -1px;
  border-radius: 1px;
  background: #FFF;
  height: 26%;
  transform-origin: center 1px;
  transform: rotate(-90deg);
}
.page-template-template-quiz .timer .icon .iconCutter .animation span:nth-child(3),
.page-template-template-quiz-answers .timer .icon .iconCutter .animation span:nth-child(3) {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  margin-top: -1px;
  margin-left: -1px;
  border-radius: 1px;
  background: #FFF;
  height: calc(50% - 3px);
  transform-origin: center 1px;
  animation: clock 2s infinite linear;
}
.page-template-template-quiz .QuizSteps,
.page-template-template-quiz-answers .QuizSteps {
  width: 100%;
  height: 100%;
  position: relative;
}
.page-template-template-quiz .QuizSteps .step,
.page-template-template-quiz-answers .QuizSteps .step {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  visibility: hidden;
  max-width: 900px;
}
.page-template-template-quiz .QuizSteps .step[data-id=intro],
.page-template-template-quiz-answers .QuizSteps .step[data-id=intro] {
  text-align: center;
  width: 100%;
}
.page-template-template-quiz .QuizSteps .step[data-id=intro] h1,
.page-template-template-quiz-answers .QuizSteps .step[data-id=intro] h1 {
  font-family: Roboto;
  font-style: normal;
  font-weight: 900;
  font-size: 226px;
  line-height: 1;
  text-transform: uppercase;
  color: #FFF;
  margin-left: -14px;
  margin-top: 8vh;
  text-shadow: 14px 5px 34px #FF00E5, 7px 5px 0px #FF00E5;
  white-space: nowrap;
  animation: glowPink 1.5s infinite;
  opacity: 0;
}
@media all and (max-width: 1900px) {
  .page-template-template-quiz .QuizSteps .step[data-id=intro] h1,
.page-template-template-quiz-answers .QuizSteps .step[data-id=intro] h1 {
    font-size: 160px;
  }
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .QuizSteps .step[data-id=intro] h1,
.page-template-template-quiz-answers .QuizSteps .step[data-id=intro] h1 {
    font-size: 140px;
  }
}
@media all and (max-width: 1279px) {
  .page-template-template-quiz .QuizSteps .step[data-id=intro] h1,
.page-template-template-quiz-answers .QuizSteps .step[data-id=intro] h1 {
    font-size: 120px;
  }
}
@media all and (max-width: 1023px) {
  .page-template-template-quiz .QuizSteps .step[data-id=intro] h1,
.page-template-template-quiz-answers .QuizSteps .step[data-id=intro] h1 {
    font-size: 90px;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=intro] h1,
.page-template-template-quiz-answers .QuizSteps .step[data-id=intro] h1 {
    font-size: 80px;
    white-space: normal;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=intro] h2,
.page-template-template-quiz-answers .QuizSteps .step[data-id=intro] h2 {
  font-weight: 700;
  font-size: 56px;
  margin-top: 10px;
  white-space: nowrap;
  opacity: 0;
}
@media all and (max-width: 1900px) {
  .page-template-template-quiz .QuizSteps .step[data-id=intro] h2,
.page-template-template-quiz-answers .QuizSteps .step[data-id=intro] h2 {
    font-size: 42px;
  }
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .QuizSteps .step[data-id=intro] h2,
.page-template-template-quiz-answers .QuizSteps .step[data-id=intro] h2 {
    font-size: 36px;
  }
}
@media all and (max-width: 1279px) {
  .page-template-template-quiz .QuizSteps .step[data-id=intro] h2,
.page-template-template-quiz-answers .QuizSteps .step[data-id=intro] h2 {
    font-size: 30px;
  }
}
@media all and (max-width: 1023px) {
  .page-template-template-quiz .QuizSteps .step[data-id=intro] h2,
.page-template-template-quiz-answers .QuizSteps .step[data-id=intro] h2 {
    font-size: 25px;
    white-space: normal;
    padding: 0 20px;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=intro] h2,
.page-template-template-quiz-answers .QuizSteps .step[data-id=intro] h2 {
    padding: 0 25px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=intro] .btn,
.page-template-template-quiz-answers .QuizSteps .step[data-id=intro] .btn {
  margin-top: 130px;
  opacity: 0;
}
@media all and (max-width: 1900px) {
  .page-template-template-quiz .QuizSteps .step[data-id=intro] .btn,
.page-template-template-quiz-answers .QuizSteps .step[data-id=intro] .btn {
    margin-top: 8vh;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=intro] .btn,
.page-template-template-quiz-answers .QuizSteps .step[data-id=intro] .btn {
    margin-top: 40px;
  }
}
@media all and (max-width: 1023px) {
  .page-template-template-quiz .QuizSteps .step[data-id=profile],
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] {
    padding-bottom: 70px;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=profile],
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] {
    padding-bottom: 30px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=profile] .box,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box {
  padding: 20px;
  background: #FFF;
  color: #000;
  border-radius: 30px;
  padding: 50px 40px;
  text-align: center;
  width: 900px;
  overflow: hidden;
  position: relative;
  opacity: 0;
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .QuizSteps .step[data-id=profile] .box,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box {
    padding: 40px 40px;
  }
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .QuizSteps .step[data-id=profile] .box,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box {
    padding: 35px;
    border-radius: 20px;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=profile] .box,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box {
    max-width: calc(100vw - 50px);
    max-height: calc(100vh - 200px);
    max-height: calc(var(--real100vh) - 200px);
    padding: 25px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=profile] .box h2,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box h2 {
  font-family: "Roboto";
  font-weight: 900;
  font-size: 60px;
  margin-bottom: 30px;
}
@media all and (max-width: 1900px) {
  .page-template-template-quiz .QuizSteps .step[data-id=profile] .box h2,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box h2 {
    font-size: 54px;
  }
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .QuizSteps .step[data-id=profile] .box h2,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box h2 {
    font-size: 40px;
  }
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .QuizSteps .step[data-id=profile] .box h2,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box h2 {
    font-size: 35px;
    margin-bottom: 25px;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=profile] .box h2,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=profile] .box .field,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .field {
  margin-bottom: 20px;
  position: relative;
}
.page-template-template-quiz .QuizSteps .step[data-id=profile] .box .field input,
.page-template-template-quiz .QuizSteps .step[data-id=profile] .box .field select,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .field input,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .field select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.7em;
  width: 100%;
  font-size: 22px;
  line-height: 1;
  font-family: "Titillium Web";
  font-weight: 400;
  padding: 0.6em 1em 0.5em;
  transition: border-color 0.3s;
}
.page-template-template-quiz .QuizSteps .step[data-id=profile] .box .field input.invalid,
.page-template-template-quiz .QuizSteps .step[data-id=profile] .box .field select.invalid,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .field input.invalid,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .field select.invalid {
  border-color: #FF00E5;
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .QuizSteps .step[data-id=profile] .box .field input,
.page-template-template-quiz .QuizSteps .step[data-id=profile] .box .field select,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .field input,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .field select {
    font-size: 18px;
  }
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .QuizSteps .step[data-id=profile] .box .field input,
.page-template-template-quiz .QuizSteps .step[data-id=profile] .box .field select,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .field input,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .field select {
    font-size: 16px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=profile] .box .field .loading,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .field .loading {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  border: 1px solid rgba(0, 0, 0, 0.1);
  top: 50%;
  right: 15px;
  margin-top: -11px;
  animation: rotate 0.5s infinite;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.page-template-template-quiz .QuizSteps .step[data-id=profile] .box .field .loading.visible,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .field .loading.visible {
  opacity: 1;
}
.page-template-template-quiz .QuizSteps .step[data-id=profile] .box .field .loading:after,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .field .loading:after {
  content: " ";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background: #000;
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
}
.page-template-template-quiz .QuizSteps .step[data-id=profile] .box .privacy,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .privacy {
  display: flex;
  margin-top: 30px;
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .QuizSteps .step[data-id=profile] .box .privacy,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .privacy {
    margin-top: 25px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=profile] .box .privacy span,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .privacy span {
  display: block;
  flex-grow: 0;
  padding-top: 2px;
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .QuizSteps .step[data-id=profile] .box .privacy span,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .privacy span {
    padding-top: 3px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=profile] .box .privacy span input,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .privacy span input {
  width: 16px;
  height: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  transition: background-color 0.1s;
  cursor: pointer;
}
.page-template-template-quiz .QuizSteps .step[data-id=profile] .box .privacy span input:checked,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .privacy span input:checked {
  background: rgba(0, 0, 0, 0.5);
}
.page-template-template-quiz .QuizSteps .step[data-id=profile] .box .privacy div,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .privacy div {
  text-align: left;
  font-size: 18px;
  color: #32403B;
  line-height: 22px;
  padding-left: 9px;
  cursor: pointer;
  text-decoration: underline;
}
.page-template-template-quiz .QuizSteps .step[data-id=profile] .box .privacy div:first-child,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .privacy div:first-child {
  padding-left: 0;
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .QuizSteps .step[data-id=profile] .box .privacy div,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .privacy div {
    font-size: 16px;
  }
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .QuizSteps .step[data-id=profile] .box .privacy div,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .privacy div {
    font-size: 14px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=profile] .box .mailError,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .mailError {
  position: absolute;
  background: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 105px;
  left: 0;
  right: 0;
  z-index: 1;
  color: #FF00E5;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .QuizSteps .step[data-id=profile] .box .mailError,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .mailError {
    height: 90px;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=profile] .box .mailError,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .mailError {
    height: 85px;
    padding: 0 25px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=profile] .box .mailError.visible,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .mailError.visible {
  opacity: 1;
}
.page-template-template-quiz .QuizSteps .step[data-id=profile] .box .btn,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .btn {
  margin-bottom: 30px;
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .QuizSteps .step[data-id=profile] .box .btn,
.page-template-template-quiz-answers .QuizSteps .step[data-id=profile] .box .btn {
    margin-bottom: 25px;
  }
}
@media all and (max-width: 1023px) {
  .page-template-template-quiz .QuizSteps .step[data-id=countdown],
.page-template-template-quiz-answers .QuizSteps .step[data-id=countdown] {
    padding-bottom: 70px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=countdown] .circle,
.page-template-template-quiz-answers .QuizSteps .step[data-id=countdown] .circle {
  width: 346px;
  height: 346px;
  border-radius: 100%;
  position: relative;
  border: 5px solid #FFF;
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .QuizSteps .step[data-id=countdown] .circle,
.page-template-template-quiz-answers .QuizSteps .step[data-id=countdown] .circle {
    width: 310px;
    height: 310px;
  }
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .QuizSteps .step[data-id=countdown] .circle,
.page-template-template-quiz-answers .QuizSteps .step[data-id=countdown] .circle {
    width: 280px;
    height: 280px;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=countdown] .circle,
.page-template-template-quiz-answers .QuizSteps .step[data-id=countdown] .circle {
    width: 250px;
    height: 250px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=countdown] .circle .progress,
.page-template-template-quiz-answers .QuizSteps .step[data-id=countdown] .circle .progress {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-template-template-quiz .QuizSteps .step[data-id=countdown] .circle .item,
.page-template-template-quiz-answers .QuizSteps .step[data-id=countdown] .circle .item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 159px;
  line-height: 1;
  font-family: "Maven Pro";
  font-weight: 700;
  color: #FFF;
  opacity: 0;
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .QuizSteps .step[data-id=countdown] .circle .item,
.page-template-template-quiz-answers .QuizSteps .step[data-id=countdown] .circle .item {
    font-size: 135px;
  }
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .QuizSteps .step[data-id=countdown] .circle .item,
.page-template-template-quiz-answers .QuizSteps .step[data-id=countdown] .circle .item {
    font-size: 115px;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=countdown] .circle .item,
.page-template-template-quiz-answers .QuizSteps .step[data-id=countdown] .circle .item {
    font-size: 100px;
  }
}
@media all and (max-width: 1023px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question],
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] {
    padding-bottom: 70px;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question],
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] {
    padding-bottom: 30px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=question] .box,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box {
  width: 1130px;
  max-width: calc(100vw - 636px);
  border-radius: 30px;
  background: #FFF;
  padding: 75px 70px;
  color: #000;
  overflow: auto;
}
@media all and (max-width: 1900px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box {
    padding: 65px 50px;
    width: 1090px;
  }
}
@media all and (max-width: 1800px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box {
    max-width: calc(100vw - 520px);
    width: 1050px;
  }
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box {
    padding: 50px;
    max-width: calc(100vw - 480px);
    width: 980px;
  }
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box {
    border-radius: 20px;
    padding: 40px;
    max-width: calc(100vw - 400px);
    width: 900px;
  }
}
@media all and (max-width: 1023px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box {
    max-width: calc(100vw - 70px);
    max-height: calc(100vh - 290px);
    max-height: calc(var(--real100vh) - 290px);
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box {
    max-width: calc(100vw - 50px);
    max-height: calc(100vh - 200px);
    max-height: calc(var(--real100vh) - 200px);
    padding: 25px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=question] .box .heading,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .heading {
  display: flex;
}
.page-template-template-quiz .QuizSteps .step[data-id=question] .box .heading .numberContainer,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .heading .numberContainer {
  position: relative;
  padding-right: 25px;
  padding-left: 25px;
  flex-shrink: 0;
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .heading .numberContainer,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .heading .numberContainer {
    padding-left: 15px;
    padding-right: 5px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=question] .box .heading .numberContainer .hash,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .heading .numberContainer .hash {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 84px;
  font-weight: 700;
  font-style: italic;
  color: #6CD7FF;
  opacity: 0.5;
  line-height: 1;
  margin-top: -0.26em;
  margin-left: -0.2em;
}
@media all and (max-width: 1900px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .heading .numberContainer .hash,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .heading .numberContainer .hash {
    font-size: 64px;
    margin-left: -0.1em;
  }
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .heading .numberContainer .hash,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .heading .numberContainer .hash {
    font-size: 54px;
    margin-left: 0;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .heading .numberContainer .hash,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .heading .numberContainer .hash {
    font-size: 45px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=question] .box .heading .numberContainer .number,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .heading .numberContainer .number {
  font-size: 159px;
  font-weight: 700;
  line-height: 1;
  font-family: "Maven Pro";
  color: #FF00E5;
  position: relative;
  margin-top: -0.2em;
  margin-left: -0.06em;
}
@media all and (max-width: 1900px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .heading .numberContainer .number,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .heading .numberContainer .number {
    font-size: 120px;
  }
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .heading .numberContainer .number,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .heading .numberContainer .number {
    font-size: 110px;
  }
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .heading .numberContainer .number,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .heading .numberContainer .number {
    font-size: 90px;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .heading .numberContainer .number,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .heading .numberContainer .number {
    font-size: 70px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=question] .box .heading .questionTitle,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .heading .questionTitle {
  flex-grow: 1;
  font-size: 45px;
  line-height: 1.28;
  font-family: "Lato";
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-top: -0.07em;
}
@media all and (max-width: 1900px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .heading .questionTitle,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .heading .questionTitle {
    font-size: 36px;
    line-height: 1.23;
  }
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .heading .questionTitle,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .heading .questionTitle {
    font-size: 32px;
  }
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .heading .questionTitle,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .heading .questionTitle {
    font-size: 26px;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .heading .questionTitle,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .heading .questionTitle {
    font-size: 22px;
    margin-top: -4px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=question] .box .answers,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers {
  list-style: none;
  display: block;
  margin-top: 13px;
}
.page-template-template-quiz .QuizSteps .step[data-id=question] .box .answers .answerItem,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem {
  display: block;
  margin-bottom: 20px;
}
@media all and (max-width: 1900px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .answers .answerItem,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem {
    margin-bottom: 18px;
  }
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .answers .answerItem,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem {
    margin-bottom: 16px;
  }
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .answers .answerItem,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem {
    margin-bottom: 14px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=question] .box .answers .answerItem:last-child,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem:last-child {
  margin-bottom: 0;
}
.page-template-template-quiz .QuizSteps .step[data-id=question] .box .answers .answerItem .answer,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem .answer {
  background: radial-gradient(72.05% 72.05% at 50% 50%, rgba(255, 255, 255, 0.3) 0%, rgba(231, 231, 231, 0.3) 100%), #FFFFFF;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.15), 0px 4px 4px -2px rgba(0, 0, 0, 0.11);
  border-radius: 15.3407px;
  font-size: 28px;
  line-height: 1.2;
  padding: 21px 33px;
  cursor: pointer;
  display: flex;
}
@media all and (max-width: 1900px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .answers .answerItem .answer,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem .answer {
    font-size: 22px;
    line-height: 1.3;
    padding: 18px 33px;
  }
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .answers .answerItem .answer,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem .answer {
    font-size: 20px;
    padding: 14px 26px;
    border-radius: 12px;
  }
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .answers .answerItem .answer,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem .answer {
    font-size: 16px;
    padding: 10px 22px;
    border-radius: 10px;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .answers .answerItem .answer,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem .answer {
    padding: 10px 15px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=question] .box .answers .answerItem .answer .letter,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem .answer .letter {
  font-size: 35px;
  line-height: 1;
  color: #6CD7FF;
  font-weight: 700;
  padding-right: 27px;
  margin-top: -3px;
  display: block;
  flex-shrink: 0;
}
@media all and (max-width: 1900px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .answers .answerItem .answer .letter,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem .answer .letter {
    font-size: 28px;
    margin-top: -1px;
  }
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .answers .answerItem .answer .letter,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem .answer .letter {
    padding-right: 16px;
    font-size: 23px;
    margin-top: 0;
  }
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .answers .answerItem .answer .letter,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem .answer .letter {
    font-size: 18px;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .answers .answerItem .answer .letter,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem .answer .letter {
    padding-right: 10px;
    margin-top: 0px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=question] .box .answers .answerItem .answer .points,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem .answer .points {
  margin-left: auto;
  color: #6CD7FF;
  font-weight: 800;
  font-size: 35px;
  padding-left: 15px;
}
@media all and (max-width: 1900px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .answers .answerItem .answer .points,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem .answer .points {
    font-size: 28px;
  }
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .answers .answerItem .answer .points,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem .answer .points {
    font-size: 23px;
  }
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .QuizSteps .step[data-id=question] .box .answers .answerItem .answer .points,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem .answer .points {
    font-size: 18px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=question] .box .answers .answerItem .answer .points:after,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem .answer .points:after {
  content: "pt";
  font-size: 0.6em;
  font-weight: 900;
}
.page-template-template-quiz .QuizSteps .step[data-id=question] .box .btnWrapper,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .btnWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}
.page-template-template-quiz .QuizSteps .step[data-id=responseAnimation] .animation,
.page-template-template-quiz-answers .QuizSteps .step[data-id=responseAnimation] .animation {
  visibility: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  width: 400px;
}
.page-template-template-quiz .QuizSteps .step[data-id=responseAnimation] .animation.rocket,
.page-template-template-quiz-answers .QuizSteps .step[data-id=responseAnimation] .animation.rocket {
  width: 900px;
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .QuizSteps .step[data-id=responseAnimation] .animation.rocket,
.page-template-template-quiz-answers .QuizSteps .step[data-id=responseAnimation] .animation.rocket {
    width: 50vw;
  }
}
@media all and (max-width: 1023px) {
  .page-template-template-quiz .QuizSteps .step[data-id=responseAnimation] .animation.rocket,
.page-template-template-quiz-answers .QuizSteps .step[data-id=responseAnimation] .animation.rocket {
    width: 70vw;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=responseAnimation] .animation.rocket,
.page-template-template-quiz-answers .QuizSteps .step[data-id=responseAnimation] .animation.rocket {
    width: 100vw;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=responseAnimation] .animation.clap,
.page-template-template-quiz-answers .QuizSteps .step[data-id=responseAnimation] .animation.clap {
  width: 800px;
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .QuizSteps .step[data-id=responseAnimation] .animation.clap,
.page-template-template-quiz-answers .QuizSteps .step[data-id=responseAnimation] .animation.clap {
    width: 40vw;
  }
}
@media all and (max-width: 1023px) {
  .page-template-template-quiz .QuizSteps .step[data-id=responseAnimation] .animation.clap,
.page-template-template-quiz-answers .QuizSteps .step[data-id=responseAnimation] .animation.clap {
    width: 60vw;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=responseAnimation] .animation.clap,
.page-template-template-quiz-answers .QuizSteps .step[data-id=responseAnimation] .animation.clap {
    width: 90vw;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=responseAnimation] .animation.book,
.page-template-template-quiz-answers .QuizSteps .step[data-id=responseAnimation] .animation.book {
  width: 900px;
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .QuizSteps .step[data-id=responseAnimation] .animation.book,
.page-template-template-quiz-answers .QuizSteps .step[data-id=responseAnimation] .animation.book {
    width: 50vw;
  }
}
@media all and (max-width: 1023px) {
  .page-template-template-quiz .QuizSteps .step[data-id=responseAnimation] .animation.book,
.page-template-template-quiz-answers .QuizSteps .step[data-id=responseAnimation] .animation.book {
    width: 70vw;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=responseAnimation] .animation.book,
.page-template-template-quiz-answers .QuizSteps .step[data-id=responseAnimation] .animation.book {
    width: 100vw;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=responseAnimation] .animation .lottie,
.page-template-template-quiz-answers .QuizSteps .step[data-id=responseAnimation] .animation .lottie {
  width: 100%;
}
.page-template-template-quiz .QuizSteps .step[data-id=final],
.page-template-template-quiz-answers .QuizSteps .step[data-id=final] {
  width: 100%;
  max-width: calc(100vw - 300px);
}
@media all and (max-width: 1023px) {
  .page-template-template-quiz .QuizSteps .step[data-id=final],
.page-template-template-quiz-answers .QuizSteps .step[data-id=final] {
    max-width: calc(100vw - 70px);
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=final],
.page-template-template-quiz-answers .QuizSteps .step[data-id=final] {
    max-width: calc(100vw - 50px);
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=final] .finalMessage,
.page-template-template-quiz-answers .QuizSteps .step[data-id=final] .finalMessage {
  display: none;
}
@media all and (max-width: 1279px) {
  .page-template-template-quiz .QuizSteps .step[data-id=final] .finalMessage,
.page-template-template-quiz-answers .QuizSteps .step[data-id=final] .finalMessage {
    margin-top: -5vh;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=final] .finalMessage .title,
.page-template-template-quiz-answers .QuizSteps .step[data-id=final] .finalMessage .title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  font-size: 151px;
  line-height: 1.17;
  color: #FFF;
  text-shadow: 14px 5px 34px #FF00E5, 7px 5px 0px #FF00E5;
  margin-left: -14px;
  opacity: 0;
  text-align: center;
}
@media all and (max-width: 1900px) {
  .page-template-template-quiz .QuizSteps .step[data-id=final] .finalMessage .title,
.page-template-template-quiz-answers .QuizSteps .step[data-id=final] .finalMessage .title {
    font-size: 126px;
    line-height: 1.1;
  }
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .QuizSteps .step[data-id=final] .finalMessage .title,
.page-template-template-quiz-answers .QuizSteps .step[data-id=final] .finalMessage .title {
    font-size: 116px;
  }
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .QuizSteps .step[data-id=final] .finalMessage .title,
.page-template-template-quiz-answers .QuizSteps .step[data-id=final] .finalMessage .title {
    font-size: 100px;
  }
}
@media all and (max-width: 1279px) {
  .page-template-template-quiz .QuizSteps .step[data-id=final] .finalMessage .title,
.page-template-template-quiz-answers .QuizSteps .step[data-id=final] .finalMessage .title {
    font-size: 90px;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=final] .finalMessage .title,
.page-template-template-quiz-answers .QuizSteps .step[data-id=final] .finalMessage .title {
    font-size: 70px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=final] .finalMessage .subtitle,
.page-template-template-quiz-answers .QuizSteps .step[data-id=final] .finalMessage .subtitle {
  text-align: center;
  font-weight: bold;
  font-size: 52px;
  line-height: 1.5;
  opacity: 0;
}
@media all and (max-width: 1700px) {
  .page-template-template-quiz .QuizSteps .step[data-id=final] .finalMessage .subtitle,
.page-template-template-quiz-answers .QuizSteps .step[data-id=final] .finalMessage .subtitle {
    font-size: 42px;
    line-height: 1.2;
    margin-top: 10px;
  }
}
@media all and (max-width: 1439px) {
  .page-template-template-quiz .QuizSteps .step[data-id=final] .finalMessage .subtitle,
.page-template-template-quiz-answers .QuizSteps .step[data-id=final] .finalMessage .subtitle {
    font-size: 32px;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=final] .finalMessage .subtitle,
.page-template-template-quiz-answers .QuizSteps .step[data-id=final] .finalMessage .subtitle {
    font-size: 25px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=final] .btnWrapper,
.page-template-template-quiz-answers .QuizSteps .step[data-id=final] .btnWrapper {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 175px;
}
@media all and (max-width: 1900px) {
  .page-template-template-quiz .QuizSteps .step[data-id=final] .btnWrapper,
.page-template-template-quiz-answers .QuizSteps .step[data-id=final] .btnWrapper {
    margin-top: 8vh;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step[data-id=final] .btnWrapper,
.page-template-template-quiz-answers .QuizSteps .step[data-id=final] .btnWrapper {
    margin-top: 40px;
  }
}
.page-template-template-quiz .QuizSteps .step[data-id=final] .btnWrapper .btn,
.page-template-template-quiz-answers .QuizSteps .step[data-id=final] .btnWrapper .btn {
  opacity: 0;
}
.page-template-template-quiz .QuizSteps .step[data-id=final] .btnWrapper .btn:not(:first-child),
.page-template-template-quiz-answers .QuizSteps .step[data-id=final] .btnWrapper .btn:not(:first-child) {
  margin-left: 30px;
}
.page-template-template-quiz .QuizSteps .step #instructions #step2,
.page-template-template-quiz-answers .QuizSteps .step #instructions #step2 {
  display: none;
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step #ResultWrapper,
.page-template-template-quiz-answers .QuizSteps .step #ResultWrapper {
    max-height: 60vh;
    overflow-y: scroll;
    padding-bottom: 30px;
  }
}
.page-template-template-quiz .QuizSteps .step .nav-tabs,
.page-template-template-quiz-answers .QuizSteps .step .nav-tabs {
  display: flex;
  justify-content: space-between;
  border-bottom: none;
  margin-bottom: 10px;
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step .nav-tabs,
.page-template-template-quiz-answers .QuizSteps .step .nav-tabs {
    flex-direction: column;
  }
}
.page-template-template-quiz .QuizSteps .step .nav-tabs .nav-item,
.page-template-template-quiz-answers .QuizSteps .step .nav-tabs .nav-item {
  flex: 1;
  text-align: center;
  list-style: none;
}
.page-template-template-quiz .QuizSteps .step .nav-tabs .nav-item .nav-link,
.page-template-template-quiz-answers .QuizSteps .step .nav-tabs .nav-item .nav-link {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  color: #4F4F4F;
  background-color: #FFF;
  font-size: 14px;
}
.page-template-template-quiz .QuizSteps .step .nav-tabs .nav-item .nav-link em,
.page-template-template-quiz-answers .QuizSteps .step .nav-tabs .nav-item .nav-link em {
  display: block;
  font-size: 0.7em;
}
@media all and (max-width: 1023px) {
  .page-template-template-quiz .QuizSteps .step .nav-tabs .nav-item .nav-link br,
.page-template-template-quiz-answers .QuizSteps .step .nav-tabs .nav-item .nav-link br {
    display: none;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step .nav-tabs .nav-item .nav-link,
.page-template-template-quiz-answers .QuizSteps .step .nav-tabs .nav-item .nav-link {
    text-align: left;
    position: relative;
    padding-left: 40px;
    min-height: 46px;
    line-height: 22px;
  }
}
.page-template-template-quiz .QuizSteps .step .nav-tabs .nav-item .nav-link span,
.page-template-template-quiz-answers .QuizSteps .step .nav-tabs .nav-item .nav-link span {
  font-size: 20px;
  font-weight: 700;
  display: block;
  height: 30px;
  line-height: 30px;
  width: 30px;
  text-align: center;
  border-radius: 15px;
  background-color: #FF00E5;
  color: #FFF;
  margin: 0 auto 10px;
}
@media all and (max-width: 767px) {
  .page-template-template-quiz .QuizSteps .step .nav-tabs .nav-item .nav-link span,
.page-template-template-quiz-answers .QuizSteps .step .nav-tabs .nav-item .nav-link span {
    display: inline-block;
    position: absolute;
    left: 5px;
    margin-bottom: 0;
  }
}
.page-template-template-quiz .QuizSteps .step .nav-tabs .nav-item .nav-link.active,
.page-template-template-quiz-answers .QuizSteps .step .nav-tabs .nav-item .nav-link.active {
  color: #FFF;
  background-color: #6CD7FF;
  border-color: #6CD7FF;
}
.page-template-template-quiz .QuizSteps .step .nav-tabs .nav-item .nav-link:hover,
.page-template-template-quiz-answers .QuizSteps .step .nav-tabs .nav-item .nav-link:hover {
  color: #FFF;
  background-color: #FF00E5;
  border-color: #FF00E5;
}
.page-template-template-quiz .QuizSteps .step .nav-tabs .nav-item .nav-link:hover span,
.page-template-template-quiz-answers .QuizSteps .step .nav-tabs .nav-item .nav-link:hover span {
  background-color: #6CD7FF;
}
.page-template-template-quiz .QuizSteps .step .tab-content,
.page-template-template-quiz-answers .QuizSteps .step .tab-content {
  padding-top: 10px;
  border-top: 1px solid rgba(79, 79, 79, 0.3);
}
.page-template-template-quiz .QuizSteps .step .tab-content .tab-pane,
.page-template-template-quiz-answers .QuizSteps .step .tab-content .tab-pane {
  display: none;
}
.page-template-template-quiz .QuizSteps .step .tab-content .tab-pane.show.active,
.page-template-template-quiz-answers .QuizSteps .step .tab-content .tab-pane.show.active {
  display: block;
}
.page-template-template-quiz .QuizSteps .step .tab-content .tab-pane h3,
.page-template-template-quiz-answers .QuizSteps .step .tab-content .tab-pane h3 {
  font-size: 30px;
  margin-bottom: 10px;
  margin-top: 20px;
}
.page-template-template-quiz .QuizSteps .step .tab-content .tab-pane .claim a,
.page-template-template-quiz-answers .QuizSteps .step .tab-content .tab-pane .claim a {
  display: inline-block;
  color: #FF00E5;
  font-weight: 700;
}
.page-template-template-quiz .QuizSteps .step .btn-group, .page-template-template-quiz .QuizSteps .step #delta_cr_select,
.page-template-template-quiz-answers .QuizSteps .step .btn-group,
.page-template-template-quiz-answers .QuizSteps .step #delta_cr_select {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-template-template-quiz .QuizSteps .step .btn-group .btn-check, .page-template-template-quiz .QuizSteps .step #delta_cr_select .btn-check,
.page-template-template-quiz-answers .QuizSteps .step .btn-group .btn-check,
.page-template-template-quiz-answers .QuizSteps .step #delta_cr_select .btn-check {
  display: none;
}
.page-template-template-quiz .QuizSteps .step .btn-group .btn-check:checked + .btn, .page-template-template-quiz .QuizSteps .step #delta_cr_select .btn-check:checked + .btn,
.page-template-template-quiz-answers .QuizSteps .step .btn-group .btn-check:checked + .btn,
.page-template-template-quiz-answers .QuizSteps .step #delta_cr_select .btn-check:checked + .btn {
  background-color: #6CD7FF;
  color: #FFF;
  border-color: #6CD7FF;
}
.page-template-template-quiz .QuizSteps .step .btn-group .btn, .page-template-template-quiz .QuizSteps .step #delta_cr_select .btn,
.page-template-template-quiz-answers .QuizSteps .step .btn-group .btn,
.page-template-template-quiz-answers .QuizSteps .step #delta_cr_select .btn {
  flex: 1;
  margin-right: 5px;
  color: #4F4F4F;
  border-color: #4F4F4F;
}
.page-template-template-quiz .QuizSteps .step .btn-group .btn:last-child, .page-template-template-quiz .QuizSteps .step #delta_cr_select .btn:last-child,
.page-template-template-quiz-answers .QuizSteps .step .btn-group .btn:last-child,
.page-template-template-quiz-answers .QuizSteps .step #delta_cr_select .btn:last-child {
  margin-right: 0;
}
.page-template-template-quiz .QuizSteps .step .btn-group .btn:hover, .page-template-template-quiz .QuizSteps .step #delta_cr_select .btn:hover,
.page-template-template-quiz-answers .QuizSteps .step .btn-group .btn:hover,
.page-template-template-quiz-answers .QuizSteps .step #delta_cr_select .btn:hover {
  background-color: #FF00E5;
  color: #FFF;
  border-color: #FF00E5;
}
@media all and (max-width: 1023px) {
  .page-template-template-quiz .QuizSteps .step .btn-group .btn, .page-template-template-quiz .QuizSteps .step #delta_cr_select .btn,
.page-template-template-quiz-answers .QuizSteps .step .btn-group .btn,
.page-template-template-quiz-answers .QuizSteps .step #delta_cr_select .btn {
    font-size: 16px;
    flex: 1 1 18%;
  }
}
@media all and (max-width: 499px) {
  .page-template-template-quiz .QuizSteps .step .btn-group .btn, .page-template-template-quiz .QuizSteps .step #delta_cr_select .btn,
.page-template-template-quiz-answers .QuizSteps .step .btn-group .btn,
.page-template-template-quiz-answers .QuizSteps .step #delta_cr_select .btn {
    font-size: 18px;
    flex: 1 1 30%;
  }
  .page-template-template-quiz .QuizSteps .step .btn-group .btn:nth-child(1), .page-template-template-quiz .QuizSteps .step .btn-group .btn:nth-child(2), .page-template-template-quiz .QuizSteps .step #delta_cr_select .btn:nth-child(1), .page-template-template-quiz .QuizSteps .step #delta_cr_select .btn:nth-child(2),
.page-template-template-quiz-answers .QuizSteps .step .btn-group .btn:nth-child(1),
.page-template-template-quiz-answers .QuizSteps .step .btn-group .btn:nth-child(2),
.page-template-template-quiz-answers .QuizSteps .step #delta_cr_select .btn:nth-child(1),
.page-template-template-quiz-answers .QuizSteps .step #delta_cr_select .btn:nth-child(2) {
    flex: 1 1 45%;
  }
  .page-template-template-quiz .QuizSteps .step .btn-group .btn:nth-child(3), .page-template-template-quiz .QuizSteps .step .btn-group .btn:nth-child(4), .page-template-template-quiz .QuizSteps .step .btn-group .btn:nth-child(5), .page-template-template-quiz .QuizSteps .step #delta_cr_select .btn:nth-child(3), .page-template-template-quiz .QuizSteps .step #delta_cr_select .btn:nth-child(4), .page-template-template-quiz .QuizSteps .step #delta_cr_select .btn:nth-child(5),
.page-template-template-quiz-answers .QuizSteps .step .btn-group .btn:nth-child(3),
.page-template-template-quiz-answers .QuizSteps .step .btn-group .btn:nth-child(4),
.page-template-template-quiz-answers .QuizSteps .step .btn-group .btn:nth-child(5),
.page-template-template-quiz-answers .QuizSteps .step #delta_cr_select .btn:nth-child(3),
.page-template-template-quiz-answers .QuizSteps .step #delta_cr_select .btn:nth-child(4),
.page-template-template-quiz-answers .QuizSteps .step #delta_cr_select .btn:nth-child(5) {
    flex: 1 1 30%;
  }
}
.page-template-template-quiz .QuizSteps .step .btn-group, .page-template-template-quiz .QuizSteps .step #delta_cr_select,
.page-template-template-quiz-answers .QuizSteps .step .btn-group,
.page-template-template-quiz-answers .QuizSteps .step #delta_cr_select {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media all and (max-width: 499px) {
  .page-template-template-quiz .QuizSteps .step .btn-group, .page-template-template-quiz .QuizSteps .step #delta_cr_select,
.page-template-template-quiz-answers .QuizSteps .step .btn-group,
.page-template-template-quiz-answers .QuizSteps .step #delta_cr_select {
    justify-content: center;
  }
}
.page-template-template-quiz .QuizSteps .step .btn-group .btn-check, .page-template-template-quiz .QuizSteps .step #delta_cr_select .btn-check,
.page-template-template-quiz-answers .QuizSteps .step .btn-group .btn-check,
.page-template-template-quiz-answers .QuizSteps .step #delta_cr_select .btn-check {
  display: none;
}
.page-template-template-quiz .QuizSteps .step .btn-group .btn-check:checked + .btn, .page-template-template-quiz .QuizSteps .step #delta_cr_select .btn-check:checked + .btn,
.page-template-template-quiz-answers .QuizSteps .step .btn-group .btn-check:checked + .btn,
.page-template-template-quiz-answers .QuizSteps .step #delta_cr_select .btn-check:checked + .btn {
  background-color: #6CD7FF;
  color: #FFF;
  border-color: #6CD7FF;
}
.page-template-template-quiz .QuizSteps .step .btn-group .btn, .page-template-template-quiz .QuizSteps .step #delta_cr_select .btn,
.page-template-template-quiz-answers .QuizSteps .step .btn-group .btn,
.page-template-template-quiz-answers .QuizSteps .step #delta_cr_select .btn {
  flex: 1 1 18%;
  margin-right: 5px;
  color: #4F4F4F;
  border-color: #4F4F4F;
}
.page-template-template-quiz .QuizSteps .step .btn-group .btn:last-child, .page-template-template-quiz .QuizSteps .step #delta_cr_select .btn:last-child,
.page-template-template-quiz-answers .QuizSteps .step .btn-group .btn:last-child,
.page-template-template-quiz-answers .QuizSteps .step #delta_cr_select .btn:last-child {
  margin-right: 0;
}
.page-template-template-quiz .QuizSteps .step .btn-group .btn:hover, .page-template-template-quiz .QuizSteps .step #delta_cr_select .btn:hover,
.page-template-template-quiz-answers .QuizSteps .step .btn-group .btn:hover,
.page-template-template-quiz-answers .QuizSteps .step #delta_cr_select .btn:hover {
  background-color: #FF00E5;
  color: #FFF;
  border-color: #FF00E5;
}
@media all and (max-width: 1023px) {
  .page-template-template-quiz .QuizSteps .step .btn-group .btn, .page-template-template-quiz .QuizSteps .step #delta_cr_select .btn,
.page-template-template-quiz-answers .QuizSteps .step .btn-group .btn,
.page-template-template-quiz-answers .QuizSteps .step #delta_cr_select .btn {
    font-size: 16px;
    flex: 1 1 18%;
  }
}
@media all and (max-width: 499px) {
  .page-template-template-quiz .QuizSteps .step .btn-group .btn, .page-template-template-quiz .QuizSteps .step #delta_cr_select .btn,
.page-template-template-quiz-answers .QuizSteps .step .btn-group .btn,
.page-template-template-quiz-answers .QuizSteps .step #delta_cr_select .btn {
    font-size: 18px;
    flex: 1 1 30%;
    max-width: 30%;
    height: 40px;
    line-height: 30px;
  }
}
.page-template-template-quiz .QuizSteps .step .note,
.page-template-template-quiz-answers .QuizSteps .step .note {
  font-size: 0.7em;
  margin: 20px 0;
  font-style: italic;
}

@media all and (max-width: 1023px) {
  .page-template-template-quiz-answers .QuizSteps .step[data-id=question] {
    padding-bottom: 0;
  }
}
@media all and (max-width: 767px) {
  .page-template-template-quiz-answers .QuizSteps .step[data-id=question] {
    padding-top: 30px;
  }
}
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box {
  width: 80%;
  max-width: 800px;
  padding: 20px;
}
@media all and (max-width: 767px) {
  .page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box {
    max-height: calc(100vh - 100px);
    max-height: calc(var(--real100vh) - 100px);
  }
}
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem .answer {
  cursor: default;
}
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem .answer.best-answer .letter,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem .answer.best-answer .text,
.page-template-template-quiz-answers .QuizSteps .step[data-id=question] .box .answers .answerItem .answer.best-answer .points {
  color: #FF00E5;
}
.page-template-template-quiz-answers .QuizSteps .step[data-id=final] .btnWrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-template-template-quiz-answers .QuizSteps .step[data-id=final] .btnWrapper .btn:not(:first-child) {
  margin-left: 0;
  margin-top: 10px;
}

section.Chart,
section.ChartStatic {
  max-height: calc(100vh - 290px);
  width: calc(100% - 466px);
  position: relative;
}
@media all and (max-width: 1700px) {
  section.Chart,
section.ChartStatic {
    width: calc(100% - 226px);
  }
}
@media all and (max-width: 1023px) {
  section.Chart,
section.ChartStatic {
    width: calc(100% - 170px);
  }
}
@media all and (max-width: 767px) {
  section.Chart,
section.ChartStatic {
    width: calc(100% - 70px);
  }
}
section.Chart:before,
section.ChartStatic:before {
  content: " ";
  display: block;
  position: absolute;
  top: -50px;
  left: -50px;
  right: -50px;
  bottom: -50px;
  opacity: 0.5;
  border-radius: 50px;
  background: #000;
  -webkit-filter: blur(50px);
  -moz-filter: blur(50px);
  -ms-filter: blur(50px);
  -o-filter: blur(50px);
  filter: url("data:image/svg+xml;utf8,<svg height='0' xmlns='http://www.w3.org/2000/svg'><filter id='svgBlur' x='-5%' y='-5%' width='110%' height='110%'><feGaussianBlur in='SourceGraphic' stdDeviation='5'/></filter></svg>#svgBlur");
  filter: blur(50px);
}
@media all and (max-width: 767px) {
  section.Chart:before,
section.ChartStatic:before {
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
  }
}
section.Chart .heading,
section.ChartStatic .heading {
  display: flex;
  margin-bottom: 66px;
  position: relative;
}
section.Chart .heading .title,
section.ChartStatic .heading .title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  font-size: 72px;
  line-height: 0.74;
  text-transform: uppercase;
  text-shadow: 6px 2px 23px #FF00E5, 2px 2px 0px #FF00E5;
  white-space: nowrap;
  padding-right: 32px;
}
@media all and (max-width: 1439px) {
  section.Chart .heading .title,
section.ChartStatic .heading .title {
    font-size: 60px;
  }
}
@media all and (max-width: 1023px) {
  section.Chart .heading .title,
section.ChartStatic .heading .title {
    font-size: 50px;
  }
}
@media all and (max-width: 767px) {
  section.Chart .heading .title,
section.ChartStatic .heading .title {
    font-size: 40px;
  }
}
section.Chart .heading .dots,
section.ChartStatic .heading .dots {
  flex-grow: 1;
  background-image: url(../images/chart-line.png);
  background-position: bottom right;
  background-size: auto 2px;
  background-repeat: no-repeat;
}
section.Chart .contents,
section.ChartStatic .contents {
  position: relative;
}
section.Chart .contents > .item,
section.ChartStatic .contents > .item {
  position: absolute;
  visibility: hidden;
  pointer-events: none;
}
section.Chart .contents .column,
section.ChartStatic .contents .column {
  width: 50%;
  pointer-events: none;
}
section.Chart .contents .column.model,
section.ChartStatic .contents .column.model {
  opacity: 0;
  height: calc(100vh - 450px);
  pointer-events: none;
}
section.Chart .contents .column .columnHeadings,
section.Chart .contents .column .item,
section.ChartStatic .contents .column .columnHeadings,
section.ChartStatic .contents .column .item {
  display: flex;
  overflow: hidden;
  align-items: center;
  opacity: 0;
}
section.Chart .contents .column .columnHeadings > *,
section.Chart .contents .column .item > *,
section.ChartStatic .contents .column .columnHeadings > *,
section.ChartStatic .contents .column .item > * {
  white-space: nowrap;
}
section.Chart .contents .column .columnHeadings.top3,
section.Chart .contents .column .item.top3,
section.ChartStatic .contents .column .columnHeadings.top3,
section.ChartStatic .contents .column .item.top3 {
  overflow: visible;
}
section.Chart .contents .column .columnHeadings.top3 .cup,
section.Chart .contents .column .item.top3 .cup,
section.ChartStatic .contents .column .columnHeadings.top3 .cup,
section.ChartStatic .contents .column .item.top3 .cup {
  position: absolute;
  width: 71px;
  height: 81px;
  left: -75px;
  top: 30px;
}
section.Chart .contents .column .columnHeadings.top3 .cup .lottie,
section.Chart .contents .column .item.top3 .cup .lottie,
section.ChartStatic .contents .column .columnHeadings.top3 .cup .lottie,
section.ChartStatic .contents .column .item.top3 .cup .lottie {
  width: 71px;
  height: 81px;
}
@media all and (max-width: 1023px) {
  section.Chart .contents .column .columnHeadings.top3 .cup,
section.Chart .contents .column .item.top3 .cup,
section.ChartStatic .contents .column .columnHeadings.top3 .cup,
section.ChartStatic .contents .column .item.top3 .cup {
    width: 45px;
    height: 40px;
    left: 53px;
    top: 22px;
  }
  section.Chart .contents .column .columnHeadings.top3 .cup .lottie,
section.Chart .contents .column .item.top3 .cup .lottie,
section.ChartStatic .contents .column .columnHeadings.top3 .cup .lottie,
section.ChartStatic .contents .column .item.top3 .cup .lottie {
    width: 45px;
    height: auto;
  }
}
@media all and (max-width: 767px) {
  section.Chart .contents .column .columnHeadings.top3 .cup,
section.Chart .contents .column .item.top3 .cup,
section.ChartStatic .contents .column .columnHeadings.top3 .cup,
section.ChartStatic .contents .column .item.top3 .cup {
    left: 38px;
    top: 26px;
  }
}
section.Chart .contents .column .columnHeadings.top3 .rank .number,
section.Chart .contents .column .item.top3 .rank .number,
section.ChartStatic .contents .column .columnHeadings.top3 .rank .number,
section.ChartStatic .contents .column .item.top3 .rank .number {
  color: #FF00E5;
}
section.Chart .contents .column .columnHeadings.top3 .score .points .number,
section.Chart .contents .column .item.top3 .score .points .number,
section.ChartStatic .contents .column .columnHeadings.top3 .score .points .number,
section.ChartStatic .contents .column .item.top3 .score .points .number {
  color: #FF00E5;
}
section.Chart .contents .column .columnHeadings .rank,
section.Chart .contents .column .item .rank,
section.ChartStatic .contents .column .columnHeadings .rank,
section.ChartStatic .contents .column .item .rank {
  width: 120px;
}
section.Chart .contents .column .columnHeadings .rank .hash,
section.Chart .contents .column .item .rank .hash,
section.ChartStatic .contents .column .columnHeadings .rank .hash,
section.ChartStatic .contents .column .item .rank .hash {
  font-style: italic;
  font-weight: bold;
  font-size: 40px;
  line-height: 1;
  color: #6CD7FF;
  padding-right: 6px;
}
section.Chart .contents .column .columnHeadings .rank .number,
section.Chart .contents .column .item .rank .number,
section.ChartStatic .contents .column .columnHeadings .rank .number,
section.ChartStatic .contents .column .item .rank .number {
  font-family: "Maven Pro";
  font-style: normal;
  font-weight: bold;
  font-size: 50px;
  line-height: 1;
  color: #FFF;
}
section.Chart .contents .column .columnHeadings .name,
section.Chart .contents .column .item .name,
section.ChartStatic .contents .column .columnHeadings .name,
section.ChartStatic .contents .column .item .name {
  width: auto;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: "Lato";
  font-style: normal;
  line-height: 1;
  letter-spacing: -0.5px;
  padding: 10px 20px;
}
section.Chart .contents .column .columnHeadings .name .nickname,
section.Chart .contents .column .item .name .nickname,
section.ChartStatic .contents .column .columnHeadings .name .nickname,
section.ChartStatic .contents .column .item .name .nickname {
  font-weight: 800;
  font-size: 30px;
  margin-bottom: 8px;
}
section.Chart .contents .column .columnHeadings .name .company,
section.Chart .contents .column .item .name .company,
section.ChartStatic .contents .column .columnHeadings .name .company,
section.ChartStatic .contents .column .item .name .company {
  font-weight: normal;
  font-size: 20px;
  color: #939393;
}
section.Chart .contents .column .columnHeadings .score,
section.Chart .contents .column .item .score,
section.ChartStatic .contents .column .columnHeadings .score,
section.ChartStatic .contents .column .item .score {
  width: 155px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
section.Chart .contents .column .columnHeadings .score .points .number,
section.Chart .contents .column .item .score .points .number,
section.ChartStatic .contents .column .columnHeadings .score .points .number,
section.ChartStatic .contents .column .item .score .points .number {
  font-family: "Maven Pro";
  font-style: normal;
  font-weight: bold;
  font-size: 50px;
  line-height: 1;
  color: #6CD7FF;
}
section.Chart .contents .column .columnHeadings .score .points .pt,
section.Chart .contents .column .item .score .points .pt,
section.ChartStatic .contents .column .columnHeadings .score .points .pt,
section.ChartStatic .contents .column .item .score .points .pt {
  font-family: "Lato";
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.5px;
}
section.Chart .contents .column .columnHeadings .score .time,
section.Chart .contents .column .item .score .time,
section.ChartStatic .contents .column .columnHeadings .score .time,
section.ChartStatic .contents .column .item .score .time {
  font-family: "Lato";
  font-style: normal;
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.5px;
  margin-top: 5px;
}
@media all and (max-width: 1700px) {
  section.Chart .contents .column .columnHeadings .rank,
section.Chart .contents .column .item .rank,
section.ChartStatic .contents .column .columnHeadings .rank,
section.ChartStatic .contents .column .item .rank {
    width: 75px;
  }
  section.Chart .contents .column .columnHeadings .rank .hash,
section.Chart .contents .column .item .rank .hash,
section.ChartStatic .contents .column .columnHeadings .rank .hash,
section.ChartStatic .contents .column .item .rank .hash {
    font-size: 26px;
  }
  section.Chart .contents .column .columnHeadings .rank .number,
section.Chart .contents .column .item .rank .number,
section.ChartStatic .contents .column .columnHeadings .rank .number,
section.ChartStatic .contents .column .item .rank .number {
    font-size: 32px;
  }
  section.Chart .contents .column .columnHeadings .name .nickname,
section.Chart .contents .column .item .name .nickname,
section.ChartStatic .contents .column .columnHeadings .name .nickname,
section.ChartStatic .contents .column .item .name .nickname {
    font-size: 26px;
  }
  section.Chart .contents .column .columnHeadings .name .company,
section.Chart .contents .column .item .name .company,
section.ChartStatic .contents .column .columnHeadings .name .company,
section.ChartStatic .contents .column .item .name .company {
    font-size: 18px;
  }
  section.Chart .contents .column .columnHeadings .score,
section.Chart .contents .column .item .score,
section.ChartStatic .contents .column .columnHeadings .score,
section.ChartStatic .contents .column .item .score {
    width: 120px;
  }
  section.Chart .contents .column .columnHeadings .score .points .number,
section.Chart .contents .column .item .score .points .number,
section.ChartStatic .contents .column .columnHeadings .score .points .number,
section.ChartStatic .contents .column .item .score .points .number {
    font-size: 36px;
  }
  section.Chart .contents .column .columnHeadings .score .points .pt,
section.Chart .contents .column .item .score .points .pt,
section.ChartStatic .contents .column .columnHeadings .score .points .pt,
section.ChartStatic .contents .column .item .score .points .pt {
    font-size: 12px;
  }
  section.Chart .contents .column .columnHeadings .score .time,
section.Chart .contents .column .item .score .time,
section.ChartStatic .contents .column .columnHeadings .score .time,
section.ChartStatic .contents .column .item .score .time {
    font-size: 16px;
  }
}
@media all and (max-width: 1439px) {
  section.Chart .contents .column .columnHeadings .rank,
section.Chart .contents .column .item .rank,
section.ChartStatic .contents .column .columnHeadings .rank,
section.ChartStatic .contents .column .item .rank {
    width: 55px;
  }
  section.Chart .contents .column .columnHeadings .rank .hash,
section.Chart .contents .column .item .rank .hash,
section.ChartStatic .contents .column .columnHeadings .rank .hash,
section.ChartStatic .contents .column .item .rank .hash {
    font-size: 20px;
  }
  section.Chart .contents .column .columnHeadings .rank .number,
section.Chart .contents .column .item .rank .number,
section.ChartStatic .contents .column .columnHeadings .rank .number,
section.ChartStatic .contents .column .item .rank .number {
    font-size: 26px;
  }
  section.Chart .contents .column .columnHeadings .name .nickname,
section.Chart .contents .column .item .name .nickname,
section.ChartStatic .contents .column .columnHeadings .name .nickname,
section.ChartStatic .contents .column .item .name .nickname {
    font-size: 20px;
  }
  section.Chart .contents .column .columnHeadings .name .company,
section.Chart .contents .column .item .name .company,
section.ChartStatic .contents .column .columnHeadings .name .company,
section.ChartStatic .contents .column .item .name .company {
    font-size: 14px;
  }
  section.Chart .contents .column .columnHeadings .score,
section.Chart .contents .column .item .score,
section.ChartStatic .contents .column .columnHeadings .score,
section.ChartStatic .contents .column .item .score {
    width: 90px;
  }
  section.Chart .contents .column .columnHeadings .score .points .number,
section.Chart .contents .column .item .score .points .number,
section.ChartStatic .contents .column .columnHeadings .score .points .number,
section.ChartStatic .contents .column .item .score .points .number {
    font-size: 30px;
  }
  section.Chart .contents .column .columnHeadings .score .points .pt,
section.Chart .contents .column .item .score .points .pt,
section.ChartStatic .contents .column .columnHeadings .score .points .pt,
section.ChartStatic .contents .column .item .score .points .pt {
    font-size: 10px;
  }
  section.Chart .contents .column .columnHeadings .score .time,
section.Chart .contents .column .item .score .time,
section.ChartStatic .contents .column .columnHeadings .score .time,
section.ChartStatic .contents .column .item .score .time {
    font-size: 12px;
  }
}
@media all and (max-width: 1023px) {
  section.Chart .contents .column .columnHeadings .rank,
section.Chart .contents .column .item .rank,
section.ChartStatic .contents .column .columnHeadings .rank,
section.ChartStatic .contents .column .item .rank {
    width: 75px;
  }
  section.Chart .contents .column .columnHeadings .rank .hash,
section.Chart .contents .column .item .rank .hash,
section.ChartStatic .contents .column .columnHeadings .rank .hash,
section.ChartStatic .contents .column .item .rank .hash {
    font-size: 26px;
  }
  section.Chart .contents .column .columnHeadings .rank .number,
section.Chart .contents .column .item .rank .number,
section.ChartStatic .contents .column .columnHeadings .rank .number,
section.ChartStatic .contents .column .item .rank .number {
    font-size: 32px;
  }
  section.Chart .contents .column .columnHeadings .name .nickname,
section.Chart .contents .column .item .name .nickname,
section.ChartStatic .contents .column .columnHeadings .name .nickname,
section.ChartStatic .contents .column .item .name .nickname {
    font-size: 26px;
  }
  section.Chart .contents .column .columnHeadings .name .company,
section.Chart .contents .column .item .name .company,
section.ChartStatic .contents .column .columnHeadings .name .company,
section.ChartStatic .contents .column .item .name .company {
    font-size: 18px;
  }
  section.Chart .contents .column .columnHeadings .score,
section.Chart .contents .column .item .score,
section.ChartStatic .contents .column .columnHeadings .score,
section.ChartStatic .contents .column .item .score {
    width: 120px;
  }
  section.Chart .contents .column .columnHeadings .score .points .number,
section.Chart .contents .column .item .score .points .number,
section.ChartStatic .contents .column .columnHeadings .score .points .number,
section.ChartStatic .contents .column .item .score .points .number {
    font-size: 36px;
  }
  section.Chart .contents .column .columnHeadings .score .points .pt,
section.Chart .contents .column .item .score .points .pt,
section.ChartStatic .contents .column .columnHeadings .score .points .pt,
section.ChartStatic .contents .column .item .score .points .pt {
    font-size: 12px;
  }
  section.Chart .contents .column .columnHeadings .score .time,
section.Chart .contents .column .item .score .time,
section.ChartStatic .contents .column .columnHeadings .score .time,
section.ChartStatic .contents .column .item .score .time {
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  section.Chart .contents .column .columnHeadings .rank,
section.Chart .contents .column .item .rank,
section.ChartStatic .contents .column .columnHeadings .rank,
section.ChartStatic .contents .column .item .rank {
    width: 55px;
  }
  section.Chart .contents .column .columnHeadings .rank .hash,
section.Chart .contents .column .item .rank .hash,
section.ChartStatic .contents .column .columnHeadings .rank .hash,
section.ChartStatic .contents .column .item .rank .hash {
    font-size: 20px;
  }
  section.Chart .contents .column .columnHeadings .rank .number,
section.Chart .contents .column .item .rank .number,
section.ChartStatic .contents .column .columnHeadings .rank .number,
section.ChartStatic .contents .column .item .rank .number {
    font-size: 26px;
  }
  section.Chart .contents .column .columnHeadings .name .nickname,
section.Chart .contents .column .item .name .nickname,
section.ChartStatic .contents .column .columnHeadings .name .nickname,
section.ChartStatic .contents .column .item .name .nickname {
    font-size: 20px;
  }
  section.Chart .contents .column .columnHeadings .name .company,
section.Chart .contents .column .item .name .company,
section.ChartStatic .contents .column .columnHeadings .name .company,
section.ChartStatic .contents .column .item .name .company {
    font-size: 14px;
  }
  section.Chart .contents .column .columnHeadings .score,
section.Chart .contents .column .item .score,
section.ChartStatic .contents .column .columnHeadings .score,
section.ChartStatic .contents .column .item .score {
    width: 90px;
  }
  section.Chart .contents .column .columnHeadings .score .points .number,
section.Chart .contents .column .item .score .points .number,
section.ChartStatic .contents .column .columnHeadings .score .points .number,
section.ChartStatic .contents .column .item .score .points .number {
    font-size: 30px;
  }
  section.Chart .contents .column .columnHeadings .score .points .pt,
section.Chart .contents .column .item .score .points .pt,
section.ChartStatic .contents .column .columnHeadings .score .points .pt,
section.ChartStatic .contents .column .item .score .points .pt {
    font-size: 10px;
  }
  section.Chart .contents .column .columnHeadings .score .time,
section.Chart .contents .column .item .score .time,
section.ChartStatic .contents .column .columnHeadings .score .time,
section.ChartStatic .contents .column .item .score .time {
    font-size: 12px;
  }
}
section.Chart .contents .column .columnHeadings,
section.ChartStatic .contents .column .columnHeadings {
  padding: 0 0 10px;
}
section.Chart .contents .column .columnHeadings .rank,
section.Chart .contents .column .columnHeadings .name,
section.Chart .contents .column .columnHeadings .score,
section.ChartStatic .contents .column .columnHeadings .rank,
section.ChartStatic .contents .column .columnHeadings .name,
section.ChartStatic .contents .column .columnHeadings .score {
  padding: 0;
  text-align: center;
  font-family: "Lato";
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.5px;
  color: #535353;
}
section.Chart .contents .column .item,
section.ChartStatic .contents .column .item {
  padding: 18px 0;
  position: relative;
}
section.Chart .contents .column .item:after,
section.ChartStatic .contents .column .item:after {
  content: " ";
  display: block;
  height: 1px;
  background: #4F4F4F;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
section.Chart .contents .column:not(.model):nth-child(even),
section.ChartStatic .contents .column:not(.model):nth-child(even) {
  position: absolute;
  top: 0;
  left: 0;
  padding-right: 50px;
}
section.Chart .contents .column:not(.model):nth-child(odd),
section.ChartStatic .contents .column:not(.model):nth-child(odd) {
  position: absolute;
  top: 0;
  right: 0;
  padding-left: 50px;
}
section.Chart .contents .column:not(.model):nth-child(2) .columnHeadings, section.Chart .contents .column:not(.model):nth-child(3) .columnHeadings,
section.ChartStatic .contents .column:not(.model):nth-child(2) .columnHeadings,
section.ChartStatic .contents .column:not(.model):nth-child(3) .columnHeadings {
  opacity: 1;
}

section.ChartMessage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
section.ChartMessage .title {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  font-size: 151px;
  line-height: 1.17;
  color: #FFF;
  text-shadow: 14px 5px 34px #FF00E5, 7px 5px 0px #FF00E5;
  opacity: 0;
  text-align: center;
}
@media all and (max-width: 1900px) {
  section.ChartMessage .title {
    font-size: 126px;
    line-height: 1.1;
  }
}
section.ChartMessage .subtitle {
  text-align: center;
  font-weight: bold;
  font-size: 52px;
  line-height: 1.5;
  opacity: 0;
}

.page-template-template-chart-static #wrapper {
  overflow: auto;
  justify-content: flex-start;
  padding-top: 130px;
  padding-bottom: 130px;
}
.page-template-template-chart-static #wrapper section.ChartStatic {
  max-height: none;
}
.page-template-template-chart-static #wrapper section.ChartStatic .contents {
  display: flex;
}
.page-template-template-chart-static #wrapper section.ChartStatic .contents .column {
  position: relative !important;
  top: 0 !important;
  left: 0 !important;
}
.page-template-template-chart-static #wrapper section.ChartStatic .contents .column:nth-child(1) {
  padding-left: 0;
  padding-right: 50px;
}
.page-template-template-chart-static #wrapper section.ChartStatic .contents .column:nth-child(2) {
  padding-right: 0;
  padding-left: 50px;
}
.page-template-template-chart-static #wrapper section.ChartStatic .contents .column .columnHeadings,
.page-template-template-chart-static #wrapper section.ChartStatic .contents .column .item {
  opacity: 1;
}
.page-template-template-chart-static #wrapper section.ChartStatic .contents .column .columnHeadings .cup,
.page-template-template-chart-static #wrapper section.ChartStatic .contents .column .item .cup {
  transform: rotate(-10deg);
}
@media all and (max-width: 1023px) {
  .page-template-template-chart-static #wrapper section.ChartStatic .contents {
    flex-wrap: wrap;
  }
  .page-template-template-chart-static #wrapper section.ChartStatic .contents .column {
    width: 100%;
    position: static !important;
    top: auto !important;
    left: auto !important;
  }
  .page-template-template-chart-static #wrapper section.ChartStatic .contents .column:nth-child(1) {
    padding-left: 0;
    padding-right: 0;
  }
  .page-template-template-chart-static #wrapper section.ChartStatic .contents .column:nth-child(2) {
    padding-right: 0;
    padding-left: 0;
  }
  .page-template-template-chart-static #wrapper section.ChartStatic .contents .column:nth-child(2) .columnHeadings {
    display: none;
  }
}

section.policy {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.policy.hidden {
  z-index: -100;
  pointer-events: none;
  opacity: 0;
}
section.policy .blend {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
}
section.policy .box {
  width: 1130px;
  max-width: calc(100vw - 636px);
  border-radius: 30px;
  background: #FFF;
  padding: 75px 70px;
  color: #000;
  overflow: auto;
  position: relative;
}
@media all and (max-width: 1900px) {
  section.policy .box {
    padding: 65px 50px;
    width: 1090px;
  }
}
@media all and (max-width: 1800px) {
  section.policy .box {
    max-width: calc(100vw - 520px);
    width: 1050px;
  }
}
@media all and (max-width: 1700px) {
  section.policy .box {
    padding: 50px;
    max-width: calc(100vw - 480px);
    width: 980px;
  }
}
@media all and (max-width: 1439px) {
  section.policy .box {
    border-radius: 20px;
    padding: 40px;
    max-width: calc(100vw - 400px);
    width: 900px;
  }
}
@media all and (max-width: 1023px) {
  section.policy .box {
    max-width: calc(100vw - 50px);
    max-height: calc(100vh - 200px);
  }
}
section.policy .box h4 {
  font-family: "Roboto";
  font-weight: 900;
  font-size: 50px;
  margin-bottom: 30px;
  display: block;
  text-align: center;
}
@media all and (max-width: 1900px) {
  section.policy .box h4 {
    font-size: 40px;
  }
}
@media all and (max-width: 1700px) {
  section.policy .box h4 {
    font-size: 30px;
  }
}
@media all and (max-width: 1439px) {
  section.policy .box h4 {
    font-size: 22px;
    margin-bottom: 25px;
  }
}
section.policy .box p {
  font-size: 18px;
}
@media all and (max-width: 1900px) {
  section.policy .box p {
    font-size: 17px;
  }
}
@media all and (max-width: 1700px) {
  section.policy .box p {
    font-size: 16px;
  }
}
@media all and (max-width: 1439px) {
  section.policy .box p {
    font-size: 15px;
  }
}
section.policy .box p a {
  text-decoration: underline;
}
section.policy .box .btnWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
@media all and (max-width: 1439px) {
  section.policy .box .btnWrapper {
    margin-top: 25px;
  }
}

/*# sourceMappingURL=style.css.map */
