}
private Pane initFront(final FlipPanel FLIP_PANEL, final StackPane FRONT_PANEL) {
Region settingsButton = new Region();
settingsButton.getStyleClass().add("settings-button");
settingsButton.addEventHandler(MouseEvent.MOUSE_CLICKED, EVENT -> FLIP_PANEL.flipToBack());
VBox componentsFront = new VBox(settingsButton, FRONT_PANEL);
componentsFront.setSpacing(10);
VBox.setVgrow(FRONT_PANEL, Priority.ALWAYS);