/* ==========================================================================
   BUTTONS
   ========================================================================== */
/* Barre */
#buttons {
    padding: 1vh 2vh;
    -webkit-user-select: none;
    user-select: none;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
	    display: flex;
	    justify-content: flex-start;
	    align-items: center;
	    overflow-x: auto;
	    overflow-y: hidden;
	    color: var(--color-textButton);
	    background: var(--color-buttons);
}

.bm-context {
	    display: inline-flex;
	    align-items: center;
	    min-height: 3.5vh;
	    margin-right: 2vh;
	    cursor: pointer;
	    user-select: none;
	}
	
	}
	
	#Buttons.hidden {
    display: none;
}
	
	#buttons button,
	.bm-context {
	    flex: 0 0 auto;
	    margin-left: 1vh;
	}
	#buttons button img {
	    display: block;
	    width: 3vh;
	    height: auto;
	}

/*----------------------------------------------------------------------------*/
/* États */
button:disabled,
.bm-disabled {
    opacity: .25;
    cursor: default;
    pointer-events: none;
}
.bm-help-active {
    background: red;
}
