@-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;
    }
}

body {
    /* background: #eee; */
    font-family: "Tahoma";
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body #scene {
    display: flex;
    align-items: center;
    justify-content: left;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    /* background-color: #fff; */
    overflow: hidden;
}

body #scene #left-zone {
    /* background: #fff; */
    height: 100%;
    flex-grow: 0;
    display: flex;
    width: 250px;
    align-items: center;
    justify-content: left;
    position: absolute;
    right: 0px;
    border-left: 1px solid #fff;
}

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;
    color: #fff;
    padding-left: 35px;
    text-align: left;
}

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;
    padding-left: 35px;
    text-align: left;
}

body #scene #left-zone .list li.item input[type=radio]~label.label_strawberry:before {
    content: " ";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: -60px;
    background-image: url("../images/white.webp");
    background-position: center;
    background-size: 40% 40%;
    background-repeat: no-repeat;
}

body #scene #left-zone .list li.item input[type=radio]~label.label_banana:before {
    content: " ";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: -60px;
    background-image: url("../images/white.webp");
    background-position: center;
    background-size: 40% 40%;
    background-repeat: no-repeat;
}

body #scene #left-zone .list li.item input[type=radio]~label.label_apple:before {
    content: " ";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: -60px;
    background-image: url("../images/white.webp");
    background-position: center;
    background-size: 40% 40%;
    background-repeat: no-repeat;
}

body #scene #left-zone .list li.item input[type=radio]~label.label_orange:before {
    content: " ";
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    margin-left: -60px;
    background-image: url("../images/white.webp");
    background-position: center;
    background-size: 40% 40%;
    background-repeat: no-repeat;
}

body #scene #left-zone .list li.item input[type=radio]~.content {
    position: absolute;
    right: 350px;
    top: 100%;
    width: 750px;
    height: 100%;
    -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;
    background: transparent;
}

body #scene #left-zone .list li.item input[type=radio]~.content.content_strawberry .picto {
    height: 100px;
    width: 100px;
    background-image: url("https://d30y9cdsu7xlg0.cloudfront.net/png/83067-200.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

body #scene #left-zone .list li.item input[type=radio]~.content.content_strawberry h1 {
    color: #d64541;
}

body #scene #left-zone .list li.item input[type=radio]~.content.content_banana .picto {
    height: 100px;
    width: 100px;
    background-image: url("https://d30y9cdsu7xlg0.cloudfront.net/png/53209-200.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

body #scene #left-zone .list li.item input[type=radio]~.content.content_banana h1 {
    color: #f5d76e;
}

body #scene #left-zone .list li.item input[type=radio]~.content.content_apple .picto {
    height: 100px;
    width: 100px;
    background-image: url("https://d30y9cdsu7xlg0.cloudfront.net/png/14333-200.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

body #scene #left-zone .list li.item input[type=radio]~.content.content_apple h1 {
    color: #00b16a;
}

body #scene #left-zone .list li.item input[type=radio]~.content.content_orange .picto {
    height: 100px;
    width: 100px;
    background-image: url("https://d30y9cdsu7xlg0.cloudfront.net/png/9636-200.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

body #scene #left-zone .list li.item input[type=radio]~.content.content_orange h1 {
    color: #f27935;
}

body #scene #left-zone .list li.item input[type=radio]~.content h1:first-letter {
    text-transform: uppercase;
}

body #scene #left-zone .list li.item input[type=radio]~.content p {
    /* max-width: 50%;
    text-align: center; */
}

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_strawberry {
    /* color: #d64541;
    border-right: solid 4px #d64541; */
    color: #fff;
    font-size: 16px;
    text-align: left;
    padding-left: 35px;
}

body #scene #left-zone .list li.item input[type=radio]:checked~label.label_banana {
    color: #fff;
    font-size: 16px;
    text-align: left;
    padding-left: 35px;
    /* border-right: solid 4px #f5d76e; */
}

body #scene #left-zone .list li.item input[type=radio]:checked~label.label_apple {
    color: #fff;
    font-size: 16px;
    text-align: left;
    padding-left: 35px;
    /* border-right: solid 4px #00b16a; */
}

body #scene #left-zone .list li.item input[type=radio]:checked~label.label_orange {
    color: #fff;
    font-size: 16px;
    text-align: left;
    padding-left: 35px;
    /* border-right: solid 4px #f27935; */
}

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;
}

@media (max-width: 560px) {
    body #scene #left-zone {
        width: 130px;
    }
    body #scene #left-zone .list li.item input[type=radio]~.content {
        right: 150px;
        width: 215px;
    }
}