@-webkit-keyframes slidein {
  0% {
    top: -400px;
    opacity: 0;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
@keyframes slidein {
  0% {
    top: -600px;
    opacity: 0;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
@-webkit-keyframes slideout {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: -600px;
    opacity: 0;
  }
}
@keyframes slideout {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: -600px;
    opacity: 0;
  }
}
body {
  background: #eee;
  font-family: "Tahoma", "Arial", sans-serif;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-size:.9em;
  margin-top: -2em;
}
h1 {
  width: 480px;
  margin:3em auto 1em auto;
  font-size: 1em;
  color:#666;
}
body #scene {
  display: flex;
  align-items: center;
  justify-content: left;
  width: 480px;
  height: 500px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  overflow: visible;
}
body #scene #left-zone {
  background: #fff;
  height: 75%;
  flex-grow: 0;
  display: flex;
  width: 75px;
  align-items: center;
  justify-content: left;
}
body #scene #left-zone .list {
  display: flex;
  list-style: none;
  align-content: stretch;
  flex-direction: column;
  flex-grow: 1;
  margin: 0;
  padding: 0;
}
body #scene #left-zone .list li.item input[type=radio] {
  display: none;
}
body #scene #left-zone .list li.item input[type=radio] ~ label {
  display: block;
  opacity: 0.5;
  height: 50px;
  text-align: center;
  line-height: 50px;
}
body #scene #left-zone .list li.item input[type=radio] ~ label:first-letter {
  text-transform: uppercase;
}
body #scene #left-zone .list li.item input[type=radio] ~ label:hover {
  opacity: 0.75;
  cursor: pointer;
}
body #scene #left-zone .list li.item input[type=radio] ~ label.label_pointer:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin: 0 15px;
  background-image: url("pointer.png");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
}
body #scene #left-zone .list li.item input[type=radio] ~ label.label_infobesity:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin: 0 15px;
  background-image: url("infobesity.png");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
}
body #scene #left-zone .list li.item input[type=radio] ~ label.label_trump:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin: 0 15px;
  background-image: url("trump.png");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
}
body #scene #left-zone .list li.item input[type=radio] ~ label.label_liar:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin: 0 15px;
  background-image: url("liar.png");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
}
body #scene #left-zone .list li.item input[type=radio] ~ label.label_blinkers:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin: 0 15px;
  background-image: url("blinkers.png");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
}
body #scene #left-zone .list li.item input[type=radio] ~ label.label_trollface:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin: 0 15px;
  background-image: url("trollface.png");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
}
body #scene #left-zone .list li.item input[type=radio] ~ label.label_trap:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin: 0 15px;
  background-image: url("trap.png");
  background-position: center;
  background-size: 75% 75%;
  background-repeat: no-repeat;
}

body #scene #left-zone .list li.item input[type=radio] ~ .content {
  position: absolute;
  left: 50%;
  margin-left:-150px;
  padding-top:3em;
  top: -700px;
  width: 370px;
  height: 500px;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-name: slideout;
          animation-name: slideout;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

body #scene #left-zone h2 {
  text-align: center;
}

body #scene #left-zone .list li.item input[type=radio] ~ .content.content_pointer .picto {
  height: 100px;
  width: 100px;
  background-image: url("pointer.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body #scene #left-zone .list li.item input[type=radio] ~ .content.content_pointer h2 {
  color: #D64541;
}
body #scene #left-zone .list li.item input[type=radio] ~ .content.content_infobesity .picto {
  height: 100px;
  width: 100px;
  background-image: url("infobesity.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body #scene #left-zone .list li.item input[type=radio] ~ .content.content_infobesity h2 {
  color: #F5D76E;
}
body #scene #left-zone .list li.item input[type=radio] ~ .content.content_trump .picto {
  height: 100px;
  width: 100px;
  background-image: url("trump.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body #scene #left-zone .list li.item input[type=radio] ~ .content.content_trump h2 {
  color: #00B16A;
}
body #scene #left-zone .list li.item input[type=radio] ~ .content.content_liar .picto {
  height: 100px;
  width: 100px;
  background-image: url("liar.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body #scene #left-zone .list li.item input[type=radio] ~ .content.content_liar h2 {
  color: #F27935;
}
body #scene #left-zone .list li.item input[type=radio] ~ .content.content_blinkers .picto {
  height: 100px;
  width: 100px;
  background-image: url("blinkers.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body #scene #left-zone .list li.item input[type=radio] ~ .content.content_blinkers h2 {
  color: #3579F2;
}
body #scene #left-zone .list li.item input[type=radio] ~ .content.content_trollface .picto {
  height: 100px;
  width: 100px;
  background-image: url("trollface.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body #scene #left-zone .list li.item input[type=radio] ~ .content.content_trollface h2 {
  color: #353579;
}
body #scene #left-zone .list li.item input[type=radio] ~ .content.content_trap .picto {
  height: 100px;
  width: 100px;
  background-image: url("trap.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
body #scene #left-zone .list li.item input[type=radio] ~ .content.content_trap h2 {
  color: #F53579;
}
body #scene #left-zone .list li.item input[type=radio] ~ .content h2:first-letter {
  text-transform: uppercase;
}
body #scene #left-zone .list li.item input[type=radio] ~ .content p {

}
body #scene #left-zone .list li.item input[type=radio]:checked ~ label {
  opacity: 1;
  -webkit-animation: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
          animation: all 1s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
body #scene #left-zone .list li.item input[type=radio]:checked ~ label.label_pointer {
  color: #D64541;
  border-right: solid 4px #D64541;
}
body #scene #left-zone .list li.item input[type=radio]:checked ~ label.label_infobesity {
  color: #F5D76E;
  border-right: solid 4px #F5D76E;
}
body #scene #left-zone .list li.item input[type=radio]:checked ~ label.label_trump {
  color: #00B16A;
  border-right: solid 4px #00B16A;
}
body #scene #left-zone .list li.item input[type=radio]:checked ~ label.label_liar {
  color: #F27935;
  border-right: solid 4px #F27935;
}
body #scene #left-zone .list li.item input[type=radio]:checked ~ label.label_blinkers {
  color: #3579F2;
  border-right: solid 4px #3579F2;
}
body #scene #left-zone .list li.item input[type=radio]:checked ~ label.label_trollface {
  color: #353579;
  border-right: solid 4px #353579;
}
body #scene #left-zone .list li.item input[type=radio]:checked ~ label.label_trap {
  color: #F53579;
  border-right: solid 4px #F53579;
}
body #scene #left-zone .list li.item input[type=radio]:checked ~ .content {
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-name: slidein;
          animation-name: slidein;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
          animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
body #scene #middle-border {
  background-color: #eee;
  height: 75%;
  flex-grow: 1;
  max-width: 2px;
  z-index: 0;
}
body #scene #right-zone {
  background: #fff;
  height: 100%;
  flex-grow: 3;
}
blockquote {
  background-color: #eee;
  padding: 12px;
  font-style: italic;
}
.credit {
  text-align: right;
  position: absolute;
  z-index:1000;
  font-size:.8em;
  padding-right:.5em;
  color:#aaa;
  top: 550px;
  width: 480px;
  left: 50%;
  margin-left: -240px;
}
.credit a {
  color:#aaa;
}