body {
  background: url(../images/bg.jpg);
  background-size: cover;
  min-height: 100vh;
  -webkit-animation: 100s background infinite linear;
  animation: 100s background infinite linear;
  font-family: Proxima Nova Rg;
  position: relative;
}

@-webkit-keyframes background {
  100% {
    background-position: -5000px;
  }
}

@keyframes background {
  100% {
    background-position: -5000px;
  }
}

.flex-container {
  width: 800px;
  margin: 0 auto;
  height: 100vh;
  display: flex;
  align-items: center;
}

.quiz-wrap {
  background: #ffffff;
  box-shadow: 0px 20px 50px rgba(0, 0, 0, 0.5);
  border-radius: 40px;
  width: 100%;
  height: 400px;
  box-sizing: border-box;
  padding: 60px 15px;
}

.quiz-title {
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #000000;
  margin-bottom: 20px;
  max-width: 550px;
}
.full-white > div {
  background: #fff;
  border: 1px solid #000;
  color: #000;
  transition: 0.3s ease all;
}
.quiz-input {
  margin-bottom: 60px;
}

.quiz-input input {
  border: none;
  border-bottom: 1px solid #cbcbcb;
  display: block;
  outline: none;
  text-align: center;
  width: 327px;
  max-width: 100%;
  height: 40px;
  box-sizing: border-box;
  padding: 10px 2px;
}

.quiz-button {
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 29px;
  cursor: default;
  text-transform: uppercase;
  color: #ffffff;
  background: linear-gradient(90.15deg, #fd2b74 30.67%, #ff5d3b 129.91%);
  background-size: cover;
  border-radius: 35px;
  min-width: 327px;
  max-width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease all;
  opacity: 0.35;
}

.gps {
  width: 66px;
}

.quiz-button.active {
  opacity: 1;
  cursor: pointer;
}

.step {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.step.active {
  display: flex;
}

.quiz-gps {
  display: flex;
  width: 100%;
  justify-content: center;
}

.gps {
  position: relative;
  display: inline-block;
}

.gps-marker {
  height: 66px;
  width: 66px;
  background: url(../fonts/gps-marker.svg);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-animation: 1.5s marker-spin infinite linear;
  animation: 1.5s marker-spin infinite linear;
}

.gps-circle {
  height: 66px;
  width: 66px;
  background: url(../images/gps-circle.png);
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.counter {
  padding: 15px 0 0 50px;
  width: 160px;
  text-align: center;
}

@-webkit-keyframes marker-spin {
  0% {
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
  50% {
    background-size: 50% 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
  100% {
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
}

@keyframes marker-spin {
  0% {
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
  50% {
    background-size: 50% 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
  100% {
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
  }
}

.quiz-buttons {
  margin-top: 66px;
}

.quiz-buttons-title {
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  color: #000000;
  margin-bottom: 16px;
}

.buttons-wrap {
  display: flex;
}

.yes {
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  line-height: 34px;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(90.15deg, #fd2b74 30.67%, #ff5d3b 129.91%);
  border-radius: 35px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  padding: 0 30px;
  min-width: 173px;
  box-sizing: border-box;
  height: 70px;
  margin-left: 20px;
  cursor: pointer;
}

.no {
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  line-height: 34px;
  text-align: center;
  text-transform: uppercase;
  border: 1px solid #000000;
  box-sizing: border-box;
  border-radius: 35px;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  max-width: 100%;
  padding: 0 30px;
  min-width: 173px;
  height: 70px;
  transition: 0.3s ease all;
  cursor: pointer;
  background-color: #fff;
}

.no:hover {
  font-style: normal;
  font-weight: normal;
  line-height: 34px;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(90.15deg, #fd2b74 30.67%, #ff5d3b 129.91%);
  border-radius: 35px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}
.full-white > div:hover {
  font-style: normal;
  font-weight: normal;
  line-height: 34px;
  text-align: center;
  text-transform: uppercase;
  background: linear-gradient(90.15deg, #fd2b74 30.67%, #ff5d3b 129.91%);
  border-radius: 35px;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
  border: none;
}
.step-2 a:hover ~ .yes {
  background: #fff;
  border: 1px solid #000;
  color: #000;
}

.quiz-wrap.usernamed {
  background-color: #fff;
  background-image: url(../images/usernames.jpg);
  background-position: -75%;
  background-repeat: no-repeat;
  -webkit-animation: 50s background infinite linear;
  animation: 50s background infinite linear;
}

.quiz-text {
  font-style: normal;
  font-weight: normal;
  font-size: 28px;
  line-height: 34px;
  text-align: center;
  margin-bottom: 60px;
  width: 650px;
  max-width: 100%;
  color: #000000;
}

a {
  text-decoration: none;
}

.quiz-wrap {
  position: relative;
}

#timer {
  content: attr(data-before);
  display: block;
  font-style: normal;
  font-weight: bold;
  font-size: 32px;
  line-height: 39px;
  text-align: center;
  position: absolute;
  top: -80px;
  color: #ffffff;
  width: 68px;
  left: calc(50% - 34px);
  transition: 0.8s ease all;
  /* opacity: 0; */
}

.quiz-wrap.timered:before {
  opacity: 1;
}

.credits {
  position: absolute;
  right: 60px;
  top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s ease all;
  opacity: 0;
}

.credits.active {
  opacity: 1;
}

.credits-text {
  background: #ffffff;
  border-radius: 20px;
  font-style: normal;
  font-size: 22px;
  line-height: 27px;
  padding: 20px 40px;
  color: #000000;
  max-width: 475px;
  box-sizing: border-box;
}

.credits-button {
  height: 20px;
  width: 20px;
  position: relative;
  left: -30px;
  top: -2px;
  cursor: pointer;
  transition: 0.3s ease all;
}

.credits-button:hover {
  transform: rotate(90deg);
}

.credits-button span {
  width: 25px;
  height: 2px;
  display: block;
  background: #fff;
}

.credits-button span:nth-child(1) {
  position: relative;
  transform: rotate(45deg);
  top: 8px;
  left: -2px;
}

.credits-button span:nth-child(2) {
  position: relative;
  transform: rotate(-45deg);
  top: 6px;
  left: -2px;
}
