.widget{position: relative;}

@-webkit-keyframes slidein {
  0% {
    top: -400px;
    opacity: 0;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
@keyframes slidein {
  0% {
    top: -400px;
    opacity: 0;
  }
  100% {
    opacity: 1;
    top: 0px;
  }
}
@-webkit-keyframes slideout {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: -400px;
    opacity: 0;
  }
}
@keyframes slideout {
  0% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: -400px;
    opacity: 0;
  }
}

#scene {
  display: flex;
  align-items: center;
  justify-content: left;
  width: 85%;
  min-height: 400px;
  position: relative;
  top: 50px;
  bottom: 50px;
  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: hidden;
}
#scene #left-zone {
  background: #fff;
  height: 75%;
  flex-grow: 0;
  display: flex;
  width: 35%;
  align-items: center;
  justify-content: left;
}
#scene #left-zone .list {
  display: flex;
  list-style: none;
  align-content: stretch;
  flex-direction: column;
  flex-grow: 1;
  margin: 0;
  padding: 0;
}
#scene #left-zone .list li.item input[type=radio] {
  display: none;
}
#scene #left-zone .list li.item input[type=radio] ~ label {
  display: block;
  opacity: 0.5;
  height: 50px;
  text-align: center;
  line-height: 50px;
}
#scene #left-zone .list li.item input[type=radio] ~ label:first-letter {
  text-transform: uppercase;
}
#scene #left-zone .list li.item input[type=radio] ~ label:hover {
  opacity: 0.75;
  cursor: pointer;
}
#scene #left-zone .list li.item input[type=radio] ~ label.label_1:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("../images/i.png");
  background-position: center;
  background-size: 65% 65%;
  background-repeat: no-repeat;
}
#scene #left-zone .list li.item input[type=radio] ~ label.label_2:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("../images/i2.png");
  background-position: center;
  background-size: 65% 65%;
  background-repeat: no-repeat;
}
#scene #left-zone .list li.item input[type=radio] ~ label.label_3:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("../images/i3.png");
  background-position: center;
  background-size: 65% 65%;
  background-repeat: no-repeat;
}
#scene #left-zone .list li.item input[type=radio] ~ label.label_4:before {
  content: " ";
  display: block;
  position: absolute;
  width: 50px;
  height: 50px;
  margin-left: 15px;
  background-image: url("../images/i4.png");
  background-position: center;
  background-size: 65% 65%;
  background-repeat: no-repeat;
}
#scene #left-zone .list li.item input[type=radio] ~ .content {
  position: absolute;
  left: 35%;
  top: -400px;
  width: 65%;
  min-height: 400px;
  -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;
}
#scene #left-zone .list li.item input[type=radio] ~ .content.content_1 .picto {
  height: 100px;
  width: 100px;
  background-image: url("../images/i.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#scene #left-zone .list li.item input[type=radio] ~ .content.content_1 h1 {
  color: #0075a2; font-size: 28px;
}
#scene #left-zone .list li.item input[type=radio] ~ .content.content_2 .picto {
  height: 100px;
  width: 100px;
  background-image: url("../images/i2.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#scene #left-zone .list li.item input[type=radio] ~ .content.content_2 h1 {
  color: #0075a2; font-size: 28px;
}
#scene #left-zone .list li.item input[type=radio] ~ .content.content_3 .picto {
  height: 100px;
  width: 100px;
  background-image: url("../images/i3.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#scene #left-zone .list li.item input[type=radio] ~ .content.content_3 h1 {
  color: #0075a2; font-size: 28px;
}
#scene #left-zone .list li.item input[type=radio] ~ .content.content_4 .picto {
  height: 100px;
  width: 100px;
  background-image: url("../images/i4.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#scene #left-zone .list li.item input[type=radio] ~ .content.content_4 h1 {
  color: #0075a2; font-size: 28px;
}
#scene #left-zone .list li.item input[type=radio] ~ .content h1:first-letter {
  text-transform: uppercase;
}
#scene #left-zone .list li.item input[type=radio] ~ .content p {
  max-width: 60%;
  text-align: center;
}
#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);
}
#scene #left-zone .list li.item input[type=radio]:checked ~ label.label_1 {
  color: #0075a2;
  border-right: solid 4px #0075a2;
}
#scene #left-zone .list li.item input[type=radio]:checked ~ label.label_2 {
  color: #0075a2;
  border-right: solid 4px #0075a2;
}
#scene #left-zone .list li.item input[type=radio]:checked ~ label.label_3 {
  color: #0075a2;
  border-right: solid 4px #0075a2;
}
#scene #left-zone .list li.item input[type=radio]:checked ~ label.label_4 {
  color: #0075a2;
  border-right: solid 4px #0075a2;
}
#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);
}
#scene #middle-border {
  background-color: #000;
  height: 75%;
  flex-grow: 1;
  max-width: 2px;
  z-index: 0;
}
#scene #right-zone {
  background: #fff;
  height: 100%;
  flex-grow: 3;
}

/*************** media ***********/

@media only screen and (max-width: 800px){
  #scene #left-zone .list li.item input[type=radio]:checked ~ label.label_1 {color: #FFF;}
  #scene #left-zone .list li.item input[type=radio]:checked ~ label.label_2 {color: #FFF;}
  #scene #left-zone .list li.item input[type=radio]:checked ~ label.label_3 {color: #FFF;}
  #scene #left-zone .list li.item input[type=radio]:checked ~ label.label_4 {color: #FFF;}
  label{color: #FFF;}
  #scene #left-zone .list li.item input[type=radio] ~ .content {top:-600px;}
}