  #confirmResult{
    position: fixed;
    width: 200px;
    height: 200px;
    display: block;
    background: #fff;
    border: 5px solid black;
    border-radius:50%;
    top:calc(50vh - 100px);
    left:calc(50vw - 100px);
    transform: scale(0);
    transition: all ease-in-out 0.3s;
    font-size: 45px;
    text-align: center;
    padding-top: 20px;
  }
  #confirmResult.affich{
    transform: scale(1);
  }
  #blur{
    width: 100vw;
    height: 0vh;
    background: rgba(0,0,0,0);
    position: fixed;
    top:0px;
    left:0px;
    transition: background ease-in-out 1s;
    display: block;
  }
  #blur.affich{
    background: rgba(0,0,0,0.5);
    height: 100vh;
    transition: background ease-in-out 1s;
  }
  #blur.affich.error{
    background: rgba(255,0,0,0.5);
  }
  #confetti-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    height: 0px;
    width: 0px;
    /*background: red;
    color: white;
    z-index: 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: sans-serif;
    box-shadow: 0px 0px 8px 1px rgba(0, 0, 0, 0.5);
    cursor: pointer;*/
  }
  .confetti {
    height: 5px;
    width: 5px;
    position: absolute;
    opacity: 0.75;
    z-index: 0;
    /* gpu acceleration */
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
    .confetti.blue {
    background: #fff100!important;
      box-shadow: 0px 0px 10px #fff100;
    }
    .confetti.green {
    background: #fc6000!important;
      box-shadow: 0px 0px 10px #fc6000;
    }
    .confetti.yellow {
    background: #ffd900!important;
      box-shadow: 0px 0px 10px #ffd900;
    }
    .confetti.red {
    background: #ffb60b!important;
      box-shadow: 0px 0px 10px #ffb60b;
    }
    .confetti.pink {
    background: #fffffa!important;
      box-shadow: 0px 0px 10px #fffffa;
    }
    .confetti.circle {
    border-radius: 50%;
    }
    .confetti.rectangle {
    padding: 0 1px;
    }