@keyframes shakeLR {
  0% {
    transform: translateX(0px);
  }
  10% {
    transform: translateX(10px);
  }
  20% {
    transform: translateX(0px);
  }
  30% {
    transform: translateX(10px);
  }
  40% {
    transform: translateX(0px);
  }
}
@keyframes shakeUD {
  0% {
    transform: translateY(0px);
  }
  10% {
    transform: translateY(10px);
  }
  20% {
    transform: translateY(0px);
  }
  30% {
    transform: translateY(10px);
  }
  40% {
    transform: translateY(0px);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes denied {
  0% {
    transform: translateX(0px);
  }
  25% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(0px);
  }
  75% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0px);
  }
}
body {
  font-size: 20px;
}
@media screen and (max-width: 414px) {
  body {
    font-size: 18px;
  }
}

#container {
  max-width: 1000px;
  margin: 0 auto;
}
#container img {
  width: 100%;
}
#container section {
  margin-bottom: 50px;
}
@media screen and (max-width: 414px) {
  #container section {
    margin-bottom: 30px;
  }
}
#container section .question {
  position: relative;
  border: 2px solid #d4829a;
  background: #fff;
  border-radius: 10px;
  color: #333;
  font-size: 1.5rem;
  margin: 100px 0 50px 100px;
}
@media screen and (max-width: 414px) {
  #container section .question {
    margin: 100px 0 20px 0;
  }
}
#container section .question .circle {
  position: absolute;
  top: -50px;
  left: -100px;
  display: inline-block;
  width: 3em;
  height: 3em;
  line-height: 3em;
  background: #d4829a;
  color: #fff;
  border-radius: 50%;
  font-size: 2em;
  text-align: center;
}
@media screen and (max-width: 414px) {
  #container section .question .circle {
    top: -50px;
    left: -10px;
    font-size: 1.5em;
  }
}
#container section .question .q_txt {
  padding: 1em 1em 2em 50px;
}
@media screen and (max-width: 414px) {
  #container section .question .q_txt {
    padding: 3em 0.5em 1em 0.5em;
  }
}
#container section .answer ul {
  display: block;
  width: calc( 100% - 100px );
  margin-left: auto;
}
@media screen and (max-width: 414px) {
  #container section .answer ul {
    width: 100%;
  }
}
#container section .answer ul li {
  background: #eee;
  border-radius: 0.5em;
  margin: 1em 0;
  padding: 0.7em 1em;
  font-size: 1em;
  text-align: center;
  border-width: 2px;
  border-style: solid;
  border-right-color: #aaa;
  border-bottom-color: #aaa;
  border-top-color: #efefef;
  border-left-color: #efefef;
  cursor: pointer;
}
#container section .answer ul li.selected {
  background: #d4829a;
  color: #fff;
  border-right-color: #efffff;
  border-bottom-color: #efffff;
  border-top-color: #8f5365;
  border-left-color: #8f5365;
}
#container section .answer ul.yesno {
  display: flex;
  gap: 1em;
}
#container section .answer ul.yesno li {
  flex: 1;
}
#container section .attention {
  color: #f00;
  text-align: center;
}
#container section .attention input[type=checkbox] {
  display: none;
}
#container section .attention label {
  display: none;
}
#container section.cta .img_wrap.cv {
  position: relative;
}
#container section.cta .img_wrap.cv .cv__limited {
  position: absolute;
  left: 0;
  bottom: 5%;
  width: 30%;
  animation: shakeLR 2s infinite;
}
#container section.cta .cvBtn {
  position: relative;
  margin-top: 50px;
}
#container section.cta .cvBtn img[class^=cvBtn-] {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 800px;
  cursor: pointer;
}
@media screen and (max-width: 414px) {
  #container section.cta .cvBtn img[class^=cvBtn-] {
    width: 100%;
  }
}

canvas {
  width: 100%;
}/*# sourceMappingURL=enquete-2.css.map */