@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedInRight {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.out {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
  animation-duration: 0.6s;
}
.in {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
  animation-duration: 0.6s;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  animation-name: tada;
  animation-duration: 1.5s;
}
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
    opacity: 0;
  }
}
.out-down {
  animation-name: slideOutDown;
  animation-duration: 0.6s;
}
@keyframes shadow-blink {
  0% {
    box-shadow: 0 0 0 var(--shadow-color);
  }
  50% {
    box-shadow: 0 0 10px var(--shadow-color);
  }
  100% {
    box-shadow: 0 0 0 var(--shadow-color);
  }
}
h1 {
  font-family: 'Oswald';
  font-style: normal;
  text-align: center;
  color: #d100ad;
  font-weight: 400;
  font-size: 32px;
  line-height: 40px;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 40px;
    line-height: 59px;
  }
}
h2 {
  font-family: 'Jost';
  font-style: normal;
  text-align: center;
  color: #160197;
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 54px;
    line-height: 78px;
  }
}
h3 {
  font-family: 'Jost';
  font-style: normal;
  text-align: center;
  color: #013497;
  font-weight: 600;
  font-size: 28px;
  line-height: 36px;
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 35px;
    line-height: 51px;
  }
}
h4 {
  font-weight: 400;
  color: #013497;
  margin: 15px 0;
  text-align: justify;
  font-size: 18px;
  line-height: 24px;
}
@media screen and (min-width: 768px) {
  h4 {
    font-size: 22px;
    line-height: 28px;
  }
}
h6 {
  font-weight: 600;
}
.advice div {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  text-align: center;
  color: #3E5DFF;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .advice div {
    font-size: 24px;
  }
}
.advice .card-footer {
  display: block;
  text-align: center;
}
.card {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 576px) {
  .card {
    width: 80%;
  }
}
@media screen and (min-width: 768px) {
  .card {
    width: 70%;
  }
}
@media screen and (min-width: 1200px) {
  .card {
    width: 60%;
  }
}
.card-footer {
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px 30px;
}
.anketa,
.question,
#test-result {
  margin-top: 60px;
}
.anketa .card-footer {
  justify-content: center;
}
.question img {
  max-width: 100%;
}
.question .questions-counter {
  color: #676767;
  font-size: 16px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .question .questions-counter {
    font-size: 24px;
  }
}
.question .variants {
  margin-top: 30px;
}
.question .variants .answer-variant {
  margin: 20px 0;
  padding: 0;
  display: flex;
  border: 1px solid transparent;
}
.question .variants .answer-variant:hover {
  border: 1px solid rgba(0, 147, 225, 0.2);
  border-radius: 16px;
}
.question .variants label {
  font-family: 'Jost';
  font-style: normal;
  text-align: center;
  color: #0029FF;
  font-weight: 600;
  font-size: 20px;
  line-height: 26px;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
}
.question .variants label span {
  flex-shrink: 0;
  font-weight: 900;
  margin-right: 20px;
  border: 2px solid transparent;
  border-radius: 100px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .question .variants label {
    font-size: 24px;
    line-height: 30px;
  }
}
.question .variants input:checked ~ label {
  color: #4FB200;
  transition: all 0.2s ease-in-out;
}
.question .variants input:checked ~ label span {
  border: 2px solid #0093E1;
}
.question .select-variant-warning {
  text-align: center;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 600;
  color: #BA3D15;
  text-shadow: 0 0 20px #ffff00;
  visibility: hidden;
}
.question .select-variant-warning.tada {
  visibility: visible;
}
/*# sourceMappingURL=test.css.map */