.HelpBtn {
    margin: auto;
}

.closeHelp {
    background-color: lightblue;
    border-radius: 20px;
    font-weight: 800;
    border: 2px solid black;
}

.overlayBouton {
    display: none;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
}

.Astuce {
    position: absolute;
    border: 3px solid white;
    background-image: url("../Images/Classique/bg_astuce.png");
    background-attachment: fixed;
    background-size: cover;
    border-radius: 20px;
    z-index: 10;
}

.HelpBtn {
    -webkit-touch-callout: none;
      -webkit-user-select: none;
       -khtml-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
          -webkit-tap-highlight-color: transparent;
}
  
.HelpBtn {
    width: 80px;
    height: 26px;
    cursor: pointer;
    border: 1.5px solid black;
    color: rgba(255, 255, 255, 0.818);
    font-size: 13px;
    border-radius: 4px;
    box-shadow: inset 0px 3px 5px rgba(255,255,255,0.5), 0px 0px 10px rgba(0,0,0,0.15);
    background: linear-gradient(45deg, rgba(2,0,36,0) 5%, rgba(255,255,255,.5) 6%, rgba(255,255,255,0) 9%, rgba(255,255,255,.5) 10%, rgba(255,255,255,0) 17%, rgba(255,255,255,.5) 19%, rgba(255,255,255,0) 21%);
    background-size: 150%;
    background-position: right;
    transition: 1s;
}
  
.HelpBtn:hover {
    background-position: left;
    color: white;
    box-shadow: inset 0px 3px 5px rgba(255,255,255,1), 0px 0px 10px rgba(0,0,0,0.25);
}
  
.HelpBtn:focus {
    outline: none;
}

@media (min-width: 1000px){
    .Astuce {
        width: 200px;
        height: 190px;
    }

    .TxtAstuce {
        background-color: rgba(255, 255, 255, 0.551);
        font-size: 0.85em;
        margin: 0;
        padding: 5px 15px 5px 15px;
    }
}

@media (max-width: 1000px){
    .Astuce {
        width: 240px;
        height: 235px;
    }

    .TxtAstuce {
        background-color: rgba(255, 255, 255, 0.551);
        font-size: 1em;
        padding: 5px 15px 5px 15px;
    }
}

@media (max-width: 500px){
    .Astuce {
        width: 220px;
        height: 235px;
    }

    .TxtAstuce {
        background-color: rgba(255, 255, 255, 0.551);
        font-size: 0.9em;
        padding: 5px 15px 5px 15px;
    }
}

/* open prep and close prep button */

.openPrep, .closePrep {
    background-color: #FCFCFD;
    border-radius: 4px;
    border-width: 0;
    box-shadow: rgba(45, 35, 66, 0.4) 0 2px 4px,rgba(45, 35, 66, 0.3) 5px 4px 13px -3px,#D6D6E7 0 -3px 0 inset;
    box-sizing: border-box;
    color: #36395A;
    cursor: pointer;
    font-family: "JetBrains Mono",monospace;
    height: 22px;
    line-height: 0;
    list-style: none;
    overflow: hidden;
    padding-left: 7px;
    padding-right: 7px;
    margin-top: -20px;
    transition: box-shadow .15s,transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    will-change: box-shadow,transform;
    font-size: 15px;
}

.openPrep:hover, .closePrep:hover {
    box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
    transform: translateY(-2px);
}

.openPrep:focus, .closePrep:focus {
    box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, #D6D6E7 0 -3px 0 inset;
}

.openPrep:active, .closePrep:active {
    box-shadow: #D6D6E7 0 3px 7px inset;
    transform: translateY(2px);
}