* {
    font-family: helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.jeuTotal {
    border: 4px solid green;
	
}

.tout {
    background: rgb(105, 171, 84);
    height: 100%;
    padding: 10px;
    margin: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    background-position: bottom;
    background-size: cover;
    background-blend-mode: overlay;
}

.wrapper {
    width: 100%;
    height: auto;
    text-align: center;
    color: #ffee00;
}


aside.results {
    background: linear-gradient(45deg, rgba(0, 110, 46, 0) 5%, rgba(0, 110, 46, 1) 45%, rgba(0, 110, 46, 1) 55%, rgba(0, 110, 46, 0) 95%);
    padding: 5px 0;
}
aside.list {
    position:fixed;
    /* transform:translateY(0); */
    top:-100vh;
    left:0;
    width:100vw;
    height:100vh;
    padding-top:15px;
    background:#000;
    transition: transform .3s linear;
    overflow: hidden;
}
aside.list div {
    width:100%;
    height:100%;
    overflow-y:auto;
}
aside.list.open {
    transform:translateY(100vh);
}
#boutonGeneration {
    position: relative;
    display: block;
    margin: 16px auto 0;
    background-color: rgba(0, 110, 46, 1);
    padding: 10px 6px;
    font-size: 20px;
    cursor: pointer;
    width: 245px;
    box-shadow: 0 0 15px -2px #0f3523;
    color: gold;
    border-radius: 25px;
	   margin-bottom: 10px;
}

button:active {
    background: #29654f;
    outline: none !important;
    opacity: 1;
    color: #fff;
}

button:focus {
    outline: none !important;
    opacity: 1;
}

button::-moz-focus-inner {
    border: 0;
}
#inutile {
    position: absolute;
    top:1%;
    left:1%;
}
.grille {
    text-align: center;
    max-width: 400px;
    margin: 15px auto 20px;
    background: #ffc4004d;
    border-radius: 40px;
    box-shadow: 0 0 20px 0 darkgreen;
    padding: 8px 0;
				margin-bottom: 15px;
}

.kulki {
    display: inline-block;
    width: 39px;
    height: 39px;
    border-radius: 50%;
    background-color: yellow;
    background: radial-gradient(circle at 35% 30%, white 2%, #fbfb35 17%, #e3e012 40%, rgb(72, 71, 4) 100%);
    line-height: 38px;
    text-align: center;
    font-weight: bold;
    color: black;
    font-size: 1em;
    box-shadow: 7px 21px 15px -21px black;
    transition: all .66s;
    margin: 7px
}

.selected {
    background: radial-gradient(circle at 35% 30%, #bfc8ef 2%, #5b6eb1 23%, #334c78 40%, rgb(11, 17, 63) 100%);
    box-shadow: 0px 21px 15px -14px black;
    color: #ffe100;
}

.dots::after {
    content: " .";
    display: inline-block;
    text-align: left;
    width: 30px;
    padding-left: 8px;
    animation: dots 1.6s steps(4) infinite;
}

@keyframes dots {

    0%,
    100% {
        content: "";
    }

    25% {
        content: ".";
    }

    50% {
        content: ". .";
    }

    75% {
        content: ". . .";
    }
}

@media (max-width:640px) {
    section {
        text-align: center;
        max-width: 500px;
        margin: 7px auto 0;
        background: #ffc4004d;
        border-radius: 40px;
        box-shadow: 0 0 20px 0 darkgreen;
        padding: 9px;
    }

    .kulki {
        display: inline-block;
        width: 33px;
        height: 33px;
        border-radius: 50%;
        background-color: yellow;
        background: radial-gradient(circle at 35% 30%, white 2%, #fbfb35 17%, #e3e012 40%, rgb(72, 71, 4) 100%);
        line-height: 32px;
        text-align: center;
        font-weight: bold;
        color: black;
        font-size: .9em;
        box-shadow: 7px 21px 15px -21px black;
        transition: all .66s;
        margin: 5px
    }
    
    #boutonGeneration {
        margin-top: 10px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 10px;
        font-size: 12px;
        width: 180px
    }
    .selected {
        background: radial-gradient(circle at 35% 30%, #bfc8ef 2%, #5b6eb1 23%, #334c78 40%, rgb(11, 17, 63) 100%);
        box-shadow: 0px 21px 15px -14px black;
        color: #ffe100;
    }
    #pokaz {
        position: relative;
        left:0;
        top:0;
    }
}