@charset "UTF-8";
/* CSS Document */

/* STYLES MENU MINI BOUTON GENERIQUE */

.miniMenu {
	display: flex;
	position: relative;
	flex: 0 0 auto;
	align-items:center;
}

.miniMenuButton {
	width: 1rem;
	height: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	flex: 0 0 auto;
}

.scaleHover:hover {
	transform: scale(1.25)
}

.miniMenuList {
	position: fixed;
	min-width: 8rem;
	max-width: 16rem;
	max-height: 16rem;
	overflow-y: auto;
	display: none;
	flex-direction: column;
	padding: 0.25rem;
	border-radius: 0.8rem;
	background: var(--COL_BUTTON_OUT);
	z-index: 99;
	box-shadow: 0 0.2rem 0.8rem rgba(0,0,0,0.5);
}

.miniMenuList.open {
	display: flex;
}

.miniMenuItem {
	height: 1.2rem;
	display: flex;
	align-items: center;
	padding: 0 0.45rem;
	border-radius: 0.6rem;
	cursor: pointer;
	font-size: 0.7rem;
	font-weight: 100;
	white-space: nowrap;
	color: var(--COL_TEXT);
	gap: 0.5rem;
	justify-content: space-between;
}

.miniMenuItem:hover {
	background: var(--COL_BUTTON_OVER);
	color: var(--COL_TEXT_NEG);
}

.miniMenuItem.noHover:hover {
	background: inherit;
	color: inherit;
	cursor: default;
}

.miniMenuItem:hover svg {
	fill: var(--COL_TEXT_NEG);
}


.miniPlus {
	height: 0.5rem;
	width: 0.5rem;
	display: flex;
	flex-direction: row;
	align-items: center;
}

.miniPlus svg {
	fill: var(--COL_TEXT);
}

.miniPlus:hover svg {
	fill: var(--COL_TEXT_NEG);
}


/* STYLES MENU CONTEXTUEL */

.contextMenu {
	position: fixed;
	min-width: 8rem;
	max-width: 16rem;
	max-height: 16rem;
	overflow-y: auto;
	display: none;
	flex-direction: column;
	padding: 0.25rem;
	border-radius: 0.8rem;
	background: var(--COL_BUTTON_OUT);
	z-index: 99999;
	box-shadow: 0 0.2rem 0.8rem rgba(0,0,0,0.5);
}

.contextMenu.open {
	display: flex;
}

.contextMenuItem {
	display: flex;
	align-items: center;
	padding: 0 0.45rem;
	border-radius: 0.6rem;
	cursor: pointer;
	font-size: 0.7rem;
	font-weight: 100;
	white-space: nowrap;
	color: var(--COL_TEXT);
	gap: 0.5rem;
	justify-content: space-between;
}

.contextMenuItem:hover {
	background: var(--COL_BUTTON_OVER);
	color: var(--COL_TEXT_NEG);
}

.contextMenuItem.noHover {
	color: var(--COL_TEXT_INACTIF) !important;
}

.contextMenuItemNoHover {
	display: flex;
	align-items: center;
	padding: 0 0.45rem;
	border-radius: 0.6rem;
	cursor: default;
	font-size: 0.7rem;
	font-weight: 100;
	white-space: nowrap;
	color: var(--COL_TEXT_INACTIF) !important; /* doublon nécessaire a cause du pointer-event none sur .noHover */
	gap: 0.5rem;
	justify-content: space-between;

}

