/*Info panneau sortie */

      label[for="toggle"] {
        font-size: 3rem;
        position: absolute;
        top: 4px;
        right: 5px;
        z-index: 1;
        cursor: pointer;
      }

      input[type="checkbox"] {
        position: absolute;
        top: -100px;
      }

      aside {
        background-color: turquoise;
        color: white;

        width: 280px;
        height: 40%;
        padding: 0 20px;

        position: fixed;
        top: 42%;
        right: -370px;

        transition: 0.6s all;
      }

      input[type="checkbox"]:checked + aside {
        right: 0px;
      }