/* Masque le curseur */
html,
body {
	overscroll-behavior-y: none;
}
html {
	caret-color: transparent;
	font-size: 14px;
}
hr {
	margin-bottom: 15px;
	margin-top: 15px;
}
footer {
	margin-top: 10px;
	height: 80px;
}
.cell-line-left {
	border-left: 1px solid #ddd;
}
.cell-line-bottom {
	border-bottom: 1px solid #ddd;
}
.center-elements-in {
	display: flex;
	align-items: center;
	justify-content: center;
}

.full-height {
	height: 100%;
}

.loader {
	border: 16px solid #f3f3f3; /* Light grey */
	border-top: 16px solid #0073f8; /* Blue */
	border-radius: 50%;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	animation: spin 2s linear infinite;
}
.lineChartLoader {
	border: 5px solid #f3f3f3; /* Light grey */
	border-top: 5px solid #0073f8; /* Blue */
	border-radius: 50%;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	animation: spin 2s linear infinite;

	z-index: 4;
	position: absolute;
	top: 15px;
	left: 20px;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.element-centered {
	text-align: center;
}
.text-left {
	text-align: left;
}
/* Personalise le style du selecteur de dates */
.month,
.prev,
.drp-calendar {
	padding-top: 0px !important;
	padding-bottom: 0px !important;
}
.daterangepicker td.active,
.daterangepicker td.active:hover {
	background-color: var(--bleu) !important;
}
.daterangepicker td.start-date {
	border-radius: 24px 0 0 24px !important;
}
.daterangepicker td.end-date {
	border-radius: 0 24px 24px 0 !important;
}
.daterangepicker td.start-date.end-date {
	border-radius: 24px !important;
}
.ltr {
	padding-top: 4px !important;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
	padding-top: 0px !important;
	padding-bottom: 0px !important;
}
.cancelBtn,
.applyBtn {
	border-radius: 24px !important;
}

.bg-green {
	background-color: #208d3d !important;
	color: #ffffff !important;
	print-color-adjust: exact;
}

.bg-red {
	background-color: #d11107 !important;
	color: #ffffff !important;
	print-color-adjust: exact;
}
.bg-orange {
	background-color: #e37315 !important;
	color: #ffffff !important;
	print-color-adjust: exact;
}
.bg-yellow {
	background-color: #e3c015 !important;
	color: #000000 !important;
	print-color-adjust: exact;
}
.bg-grey {
	background-color: #777777 !important;
	color: #ffffff !important;
	print-color-adjust: exact;
}
@media print {
	body {
		-webkit-print-color-adjust: exact;
	}
}

.btn-transparent {
	border-radius: 24px;
	color: var(--bleu) !important;
	background-color: rgba(0, 0, 0, 0);
	border: 0px solid;
	cursor: pointer;
}

.drp-buttons {
	padding-top: 4px !important;
}
.cancelBtn {
	margin-top: 4px !important;
	color: #e03120 !important;
	border: 2px solid #e03120 !important;
	padding-top: 6px !important;
	padding-bottom: 6px !important;
	padding-left: 10px !important;
	padding-right: 10px !important;
}
.cancelBtn:focus,
.cancelBtn:hover,
.cancelBtn:active,
.cancelBtn:visited {
	color: #fff !important;
	background-color: #e03120 !important;
}
.applyBtn,
.btn-success {
	margin-top: 4px !important;
	color: #125eed !important;
	border: 2px solid #125eed !important;
	padding-top: 6px !important;
	padding-bottom: 6px !important;
	padding-left: 10px !important;
	padding-right: 10px !important;
	background-color: rgba(0, 0, 0, 0) !important;
}
.applyBtn:focus,
.applyBtn:hover,
.applyBtn:active,
.applyBtn:visited {
	color: #fff !important;
	background-color: #125eed !important;
}
.daterangepicker {
	background-color: #fff !important;
}

/* Personalise le style des gros bouton switch radiobutton */
.bootstrap-switch {
	-webkit-box-shadow: 4px 3px 15px -3px rgba(0, 0, 0, 0.2);
	box-shadow: 4px 3px 15px -3px rgba(0, 0, 0, 0.2);
}
.bootstrap-switch.bootstrap-switch-focused {
	-webkit-box-shadow: 4px 3px 15px -3px rgba(0, 0, 0, 0.2);
	box-shadow: 4px 3px 15px -3px rgba(0, 0, 0, 0.2);
}

/* Met une ombre derrière tout les boutons bootstrap */
.btn {
	/*transition: all 0.08s ease-in-out;*/
	border-radius: 24px;
	font-weight: bold;
	-webkit-box-shadow: 4px 3px 15px -3px rgba(0, 0, 0, 0.2);
	box-shadow: 4px 3px 15px -3px rgba(0, 0, 0, 0.2);
}
.small-button {
	padding: 7px 12px 6px 12px;
}

.bootstrap-select.btn-group .dropdown-menu {
	min-width: 270px !important;
}

@media screen and (min-width: 780px) {
	/* Floute l'arrrière plan de toutes les modal bootsrap */
	body.modal-open .fullPage {
		-webkit-filter: blur(5px);
		-moz-filter: blur(5px);
		-o-filter: blur(5px);
		-ms-filter: blur(5px);
		filter: blur(5px);
	}
}
/* width */
::-webkit-scrollbar {
	width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #f1f1f100;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #a6b6cd77;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #95a0b8ef;
}
/* Rend les modales légèrement transparente et autres restyles */
.modal-content {
	-webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0) !important;
	background-color: rgba(255, 255, 255, 1);
	box-shadow: 0 0 0 0 rgba(0, 0, 0, 0) !important;
	border: 0px !important;
	border-radius: 24px;
}
/* Rend l'arrière plan des modal légèrement plus flou */
.modal-backdrop.in {
	opacity: 0.2 !important;
}

.modal-backdrop {
	background-color: rgba(0, 0, 0, 1);
}

.unclickable {
	pointer-events: none;
	-webkit-user-select: none;
}

.no-padding {
	padding: 0px;
}

.hiddenSection {
	transition: opacity 0.2s ease-in, height 0.2s ease-in-out,
		padding 0.2s ease-in-out;

	transition-delay: 0s, 0s, 0s;
	transition-property: opacity, height, padding;

	pointer-events: none;
	padding: 0px !important;
	height: 0px !important;

	opacity: 0;
}
.visibleSection {
	transition: opacity 0.2s ease-in, height 0.2s ease-in-out,
		padding 0.2s ease-in-out;

	transition-delay: 0s, 0s, 0s;
	transition-property: opacity, height, padding;

	opacity: 1;
}
.hiddenDiv {
	transition: opacity 0.2s ease-in, width 0.2s ease-in-out,
		padding 0.2s ease-in-out;

	transition-delay: 0s, 0s, 0s;
	transition-property: opacity, width, padding;

	padding: 0px !important;
	width: 0px !important;

	opacity: 0;
}
.hiddenDivNoAnim {
	padding: 0px !important;
	height: 0px !important;
	margin: 0px !important;
	display: none;
	opacity: 0;
}

.divArrowsOverlay {
	position: absolute;
	font-size: 40px;
	z-index: 1;
	right: 26px;
	top: 10px;
}

.visibleDiv {
	transition: opacity 0.2s ease-in, width 0.2s ease-in-out,
		padding 0.2s ease-in-out;

	transition-delay: 0s, 0s, 0s;
	transition-property: opacity, width, padding;

	opacity: 1;
}
.edit-button {
	z-index: 4;
	position: absolute;
	top: -10px;
	right: -10px;
}
.expand-button {
	z-index: 4;
	position: absolute;
	top: 10px;
	right: 10px;
}
.small-top-spacer {
	margin-top: 10px;
}
.medium-top-spacer {
	margin-top: 15px;
}
.large-top-spacer {
	margin-top: 20px;
}
.small-bottom-spacer {
	margin-bottom: 10px;
}
.medium-bottom-spacer {
	margin-bottom: 15px;
}
.large-bottom-spacer {
	margin-bottom: 20px;
}

.small-left-spacer {
	margin-left: 5px;
}
.small-right-spacer {
	margin-right: 5px;
}
.medium-left-spacer {
	margin-left: 15px;
}
.medium-right-spacer {
	margin-right: 15px;
}
.label-a-la-ligne {
	display: flex;
	margin-top: 5px;
	margin-bottom: 0px;
}
.div-center-elements {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.force-no-border-radius {
	-webkit-border-radius: 0px !important;
	-moz-border-radius: 0px !important;
	border-radius: 0px !important;
}
.fa-1_5x {
	font-size: 1.5em;
}
.text-bold {
	font-weight: bold !important;
}
.shadow {
	-webkit-box-shadow: 4px 3px 15px -3px rgba(0, 0, 0, 0.2);
	box-shadow: 4px 3px 15px -3px rgba(0, 0, 0, 0.2);
}
.shadowAround {
	-webkit-box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
	box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
}
.roundCorner {
	overflow: hidden !important;
	-webkit-border-radius: 8px !important;
	-moz-border-radius: 8px !important;
	border-radius: 8px !important;
}
.largeRoundCorner {
	overflow: hidden !important;
	-webkit-border-radius: 24px !important;
	-moz-border-radius: 24px !important;
	border-radius: 24px !important;
}

@media screen and (max-width: 400px) {
	.zoneAffichageCourbes {
		width: 100%;
		height: calc(100% - 180px);
		min-height: 1px;
		margin: 0% auto;
	}

	.date-selector-display {
		display: none;
	}
}
@media screen and (min-width: 401px) and (max-width: 600px) {
	.zoneAffichageCourbes {
		width: 100%;
		height: calc(100% - 180px);
		min-height: 1px;
		margin: 0% auto;
	}

	.date-selector-display {
		display: revert;
	}
}
@media screen and (min-width: 601px) and (max-width: 768px) {
	.zoneAffichageCourbes {
		width: 100%;
		height: calc(100% - 180px);
		min-height: 1px;
		margin: 0% auto;
	}

	.date-selector-display {
		display: revert;
	}
}
@media screen and (min-width: 768px) {
	.zoneAffichageCourbes {
		width: 100%;
		height: calc(100% - 180px);
		min-height: 1px;
		margin: 0% auto;
	}
	.date-selector-display {
		display: revert;
	}
}

.align-bottom {
	bottom: 0;
}

.align-right {
	right: 0;
}

.align-left {
	left: 0;
}

.legend-line-chart {
	padding: 15px;
	background-color: white;
}
.legend-block {
	display: inline-block;
	padding: 15px;
}

.position-absolute {
	position: absolute;
}

.TOR {
	margin: 0px;
	font-family: "Rubik", sans-serif;
	font-size: 15px;
	text-align: right;
}

#zone0 {
	padding: 10px;
}

#zoneSpacing {
	padding: 10px;
}
.divDrawJauge {
	position: absolute;
	right: 0;
	left: 0;
	margin-right: auto;
	margin-left: auto;
	height: calc(100% - 20px);
	width: calc(100% - 20px);
}
.col-centered {
	float: none;
	margin: 0 auto;
}
.fullscreen {
	z-index: 1111;
	width: 100% !important;
	height: 100% !important;
	position: fixed;
	top: 0;
	left: 0;
}

@media screen and (min-width: 0px) and (max-width: 900px) {
	#bar {
		display: block;
	} /* show it on small screens */
}
@media screen and (min-width: 901px) and (max-width: 10000px) {
	#bar {
		display: none;
	} /* hide it elsewhere */
}

.noselect {
	-webkit-touch-callout: none; /* iOS Safari */
	-webkit-user-select: none; /* Chrome/Safari/Opera */
	-khtml-user-select: none; /* Konqueror */
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer/Edge */
	user-select: none; /* Non-prefixed version, currently
									not supported by any browser */
}

.form-group input[type="checkbox"] {
	display: none;
}

.form-group input[type="checkbox"] + .btn-group > label span {
	width: 20px;
}

.form-group input[type="checkbox"] + .btn-group > label span:first-child {
	display: none;
}
.form-group input[type="checkbox"] + .btn-group > label span:last-child {
	display: inline-block;
}

.form-group
	input[type="checkbox"]:checked
	+ .btn-group
	> label
	span:first-child {
	display: inline-block;
}
.form-group
	input[type="checkbox"]:checked
	+ .btn-group
	> label
	span:last-child {
	display: none;
}

.ui-icon.inline {
	display: inline-block;
}
​ .ui-widget-header.center {
	text-align: center;
}

.email-style {
	margin-bottom: 5px;
}

.dropdown-menu {
	width: 100%;
}
.texteJauge {
	margin-top: 0;
	margin-bottom: 0px;
	padding: 0px;
	position: absolute;
	bottom: 10px;
}
.text-float-right {
	float: right;
}

.buttonJauge {
	height: 56px;
	padding: 0px;
}

.texteConsigne {
	font-size: 15px;
	margin-bottom: 0px;
}

.iconeTuileInterface {
	height: 70%;
	min-height: 50px;
}

.texteTuileInterface {
	height: 30%;
}

.imgTuileInterface {
	max-height: 100%;
}

@media screen and (max-width: 400px) {
	.bouton-selection-interface {
		padding: 4px 8px 4px 8px;
		height: 100px;
	}
	.cadreTor {
		padding: 4px 8px 4px 8px;
		height: 100px;
	}
	.cadreJauge {
		padding: 4px 8px 4px 8px;
		height: 200px;
	}
	.cadreCourbe {
		padding: 4px 8px 4px 8px;
		height: 400px;
		max-height: 100%;
	}
	.cadreCourbeSolo {
		padding: 4px 8px 4px 8px;
		height: 400px;
		max-height: 100%;
	}
	.cadreCmptClassique {
		padding: 4px 8px 4px 8px;
		height: 100px;
	}
}
@media screen and (min-width: 401px) and (max-width: 668px) {
	.bouton-selection-interface {
		padding: 4px 8px 4px 8px;
		height: 125px;
	}
	.cadreTor {
		padding: 4px 8px 4px 8px;
		height: 125px;
	}
	.cadreJauge {
		padding: 4px 8px 4px 8px;
		height: 250px;
	}
	.cadreCourbe {
		padding: 4px 8px 4px 8px;
		height: 500px;
		max-height: 100%;
	}
	.cadreCourbeSolo {
		padding: 4px 8px 4px 8px;
		height: 500px;
		max-height: 100%;
	}
	.cadreCmptClassique {
		padding: 4px 8px 4px 8px;
		height: 125px;
	}

}
@media screen and (min-width: 669px) and (max-width: 768px) {
	.bouton-selection-interface {
		padding: 4px 8px 4px 8px;
		height: 125px;
	}
	.cadreTor {
		padding: 4px 8px 4px 8px;
		height: 125px;
	}
	.cadreJauge {
		padding: 4px 8px 4px 8px;
		height: 250px;
	}
	.cadreCourbe {
		padding: 4px 8px 4px 8px;
		height: 500px;
		max-height: 100%;
	}
	.cadreCourbeSolo {
		padding: 4px 8px 4px 8px;
		height: 500px;
		max-height: 100%;
	}
	.cadreCmptClassique {
		padding: 4px 8px 4px 8px;
		height: 125px;
	}
}
@media screen and (min-width: 768px) {
	.bouton-selection-interface {
		padding: 4px 8px 4px 8px;
		height: 125px;
	}
	.cadreTor {
		padding: 4px 8px 4px 8px;
		height: 125px;
	}
	.cadreJauge {
		padding: 4px 8px 4px 8px;
		height: 250px;
	}
	.cadreCourbe {
		padding: 4px 8px 4px 8px;
		height: 500px;
		max-height: 100%;
	}
	.cadreCourbeSolo {
		padding: 4px 8px 4px 8px;
		height: 500px;
		max-height: 100%;
	}
	.cadreCmptClassique {
		padding: 4px 8px 4px 8px;
		height: 125px;
	}
}
.cadreElement {
	padding: 4px 8px 4px 8px;
}

.boutonTuileInterfaceSelection {
	width: 100%;
	padding: 0px;
	border: 0px;
	background-color: rgba(0, 0, 0, 0);
}

.disableTouchAction {
	touch-action: none;
}
.newPanelJauge {
	height: 100%;
	width: 100%;
}
.newPanelCourbe {
	height: 100%;
	width: 100%;
}
.flotr-legend-label {
	padding-left: 10px;
}
.boutonJauge {
	position: relative;
	max-width: 100%;
	white-space: normal;
	font-size: 13px;
	word-wrap: break-word;
	overflow-wrap: break-word;

	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	overflow: hidden;
	text-overflow: ellipsis;
	z-index: 1;
}

.texteBouton {
	position: relative;
	max-width: 100%;
	white-space: normal;
	font-size: 16px;
	/*
	word-wrap: break-word;
	overflow-wrap: break-word;
	*/
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	overflow: hidden;
	text-overflow: ellipsis;
	z-index: 1;
}

.divBoutonJauge {
	padding-left: 8px;
	padding-right: 8px;
	height: 36px;
}

.divJauge {
	position: absolute;
	height: calc(100% - 81px);
	display: block;
	margin-top: 0px;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
	padding-top: 53px;
}
.cadreDiv {
	padding-left: 8px;
	padding-right: 8px;
	min-height: 50%;
}

.tuileDiv {
	padding-left: 7px;
	padding-right: 7px;
}

.no-cursor {
	caret-color: transparent !important;
}
.bootstrap-select .dropdown-toggle:focus {
	outline: 0px !important;
	outline-offset: 0px;
}
.btn:focus {
	outline: 0px !important;
	outline-offset: 0px;
}

.notifTuile {
	padding: 3px 7px 3px 7px;
	font-size: 13px;
	position: absolute;
	z-index: 1;
	right: 0px;
	top: 0px;
	border-radius: 24px;
}
.popover {
	z-index: 9999;
	position: absolute;
	min-width: 200px;
}

.fixed-table-container {
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
	border-radius: 8px;
}

.item {
	position: relative;
}
.item img {
	max-width: 100%;
}

.dropdown-menu.open {
	border-radius: 24px 24px 24px 24px;
	padding: 5px 0px 0px 0px;
	overflow: hidden;
}

.dropdown-menu.inner {
	border-radius: 0px 0px 24px 24px !important;
}

@media screen and (max-width: 540px) {
	.dropdown-menu {
		overflow: hidden;
		left: 12px !important;
		top: 10%;
		background-color: rgba(256, 256, 256, 1);
		padding: 0px !important;
		border-radius: 24px 24px 24px 24px;
		font-size: 18px;
		-webkit-box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
		box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
	}
	.bs-searchbox .form-control {
		height: 50px;

		background-image: url(https://upload.wikimedia.org/wikipedia/commons/thumb/0/0d/OOjs_UI_icon_search.svg/2048px-OOjs_UI_icon_search.svg.png);
		background-size: 30px;
		background-repeat: no-repeat;
		background-position: top 10px right 15px;
		font-weight: 400 !important;
	}

	.bs-searchbox .form-control:focus {
		background-image: url();
	}

	/* Hide scrollbar for Chrome, Safari and Opera */
	.dropdown-menu::-webkit-scrollbar {
		display: none;
		-ms-overflow-style: none;
		scrollbar-width: none; /* Firefox */
	}

	.open > .dropdown-menu {
		position: fixed;
		z-index: 9999;
		top: 64px;
	}

	.dropdown-menu .inner {
		background-color: rgba(256, 256, 256, 1);
		width: 100%;
	}

	.dropdown-menu li {
		padding-left: 15px;
		padding-bottom: 5px;
		padding-right: 15px;
	}

	.dropdown-menu li a {
		display: table-cell;
		vertical-align: middle;
		border-radius: 24px;
		height: 50px;
		max-width: calc(100vw - 60px);
	}

	.dropdown-menu li a span.text {
		display: block !important;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		width: 100%;
	}

	.glyphicon {
		height: 0px !important;
		width: 0px;
		margin: 0px !important;
	}

	.dropdown-menu.open:before {
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background: rgba(0, 0, 0, 0.5);
		content: "";
		z-index: -1;
	}

	.bs-searchbox {
		background-color: rgba(256, 256, 256, 1);
		padding: 12px;
	}
	.bootstrap-select.btn-group.bs-container {
		top: 0px !important;
		bottom: 0px !important;
		left: 0px !important;
		width: 0px !important;
	}

	@media screen and (min-height: 540px) {
		.dropdown-menu.inner {
			height: calc(90vh - 122px);
		}
		.dropdown-menu.open {
			width: calc(100% - 24px);
		}
	}

	@media screen and (max-height: 540px) {
		.dropdown-menu.inner {
			min-height: calc(90vh - 116px) !important;
		}
		.dropdown-menu.open {
			width: calc(100% - 24px);
			min-height: calc(90vh - 58px) !important;
		}
	}
}

/*Mise en forme modales sur mobile*/
/* For Mobile */
@media screen and (max-width: 540px) {
	.modal {
		border-radius: 24px;
		margin: 3%;
	}
	.zone-tableau {
		height: calc(100vh - 167px - 56px);
		overflow-y: scroll;
	}

	.modal-dialog {
		margin: 0px;
		height: 100%;
	}
	.modal-content {
		height: 100%;
	}
	.modal-footer {
		position: absolute;
		bottom: 0px;
		background: rgba(256, 256, 256, 0.8);

		border-radius: 0 0 24px 24px;
		width: 100%;
	}
	.floatingFooterDivOnMobile {
		position: fixed;
		bottom: 0px;
		padding: 0px;
		height: 0px;
		z-index: 6;
		min-height: 60px;
		width: 100%;
		margin-left: -15px;
		margin-right: -15px;
	}
	.dropdown-menu {
		padding: 0px !important;
	}
	.popover-title {
		position: absolute;
		bottom: 0px;
		width: 100%;
		background-color: #c4c2cde0;
		z-index: 1;
		border: 0px;
		border-radius: 0px;
	}
}

/* Mise en forme modales sur tablettes*/
/* For Tablets */
@media screen and (min-width: 540px) {
	.bs-searchbox .form-control {
		background-image: url(https://upload.wikimedia.org/wikipedia/commons/thumb/0/0d/OOjs_UI_icon_search.svg/2048px-OOjs_UI_icon_search.svg.png);
		background-size: 20px;
		background-repeat: no-repeat;
		background-position: top 9px right 9px;
	}

	.bs-searchbox .form-control:focus {
		background-image: url();
	}
	.view {
		width: 600px;
	}

	.modal-footer {
		position: absolute;
		bottom: 0px;
		background: rgba(256, 256, 256, 0.8);
	}
	.floatingFooterDivOnMobile {
		position: fixed;
		bottom: 15px;
		padding: 0px;
		height: 0px;
		z-index: 6;
		width: 100%;
		margin-left: -15px;
		margin-right: -15px;
	}

	.zone-tableau {
		height: calc(100vh - 231px - 56px);
		overflow-y: scroll;
	}

	.modal-content {
		height: calc(100vh - 60px);
	}
	.modal-footer {
		position: absolute;
		bottom: 0px;
		background: rgba(256, 256, 256, 0.8);

		border-radius: 0 0 24px 24px;
		width: 100%;
	}
	.popover-title {
		display: none;
	}
	.bs-searchbox {
		padding-top: 5px;
	}
}

/* activation de l'AM pour les tuiles gridstrap */
.gridstrap-container {
	transform: translate3d(0, 0, 0);
}
.handHover {
	touch-action: none;
	cursor: grab;
}
.handHover:hover {
	touch-action: none;
	cursor: grab;
}
.handHover:focus,
.handHover:active {
	touch-action: none;
	cursor: grabbing;
}

/* menu footer flottant */
.wrapper-menu {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	background-color: #dcdc39;
	font-family: "Open Sans", Verdana, Geneva, Tahoma, sans-serif;
}
.nav-menu {
	z-index: 7;
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	border-radius: 50px !important;
	position: relative;
	padding: 5px;
	transition: 0.2s;
	overflow: hidden;
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.nav-menu-bubble {
	position: absolute;
	bottom: 15px;
	left: 10px;
}
.nav-menu-export {
	position: absolute;
	bottom: 15px;
	right: 10px;
}

.nav-wrapper {
	position: absolute;
	bottom: 0px;
	margin-left: 10px;
	margin-bottom: 90px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: fit-content;
	padding: 0px;
	border: 0px;
	background-color: rgba(255, 255, 255, 0.9);
}
.nav-wrapper-closed {
	height: auto;
	padding: 0px;
}
.nav-wrapper-deployed {
	height: auto;
	padding: 0px;
}
.nav-menu:hover,
.nav-menu:focus {
	border-radius: 50px !important;
}
.bottom-column {
	position: absolute;
	bottom: 0;
	right: 0;
}
.menu-deploy {
	margin: 0;
	padding: 0;
	width: 65px;
	height: 0;
	overflow: hidden;
	transition: 0.2s;
}
.icon-checkbox {
	font-size: 20px;
}
.nav-menu input:checked ~ .menu-deploy {
	width: 240px;
}

.menu-deployed-quadruple-row-and-titles {
	width: 230px;
	height: 256px;
}
.menu-deployed-quintuple-row-and-titles {
	width: 230px;
	height: 310px;
}
.menu-deployed-double-row {
	width: 66px;
	height: 138px;
}
.menu-deployed-single-row {
	width: 66px;
	height: 84px;
}

.menu-deploy li {
	list-style: none;
	margin: 0 10px;
}
.menu-deploy li a {
	text-decoration: none;
	color: #666;
	text-transform: uppercase;
	font-weight: 600;
	transition: 0.2s;
}
.menu-deploy li a:hover {
	color: #161919;
}
.nav-menu input {
	width: 47px;
	height: 43px;
	cursor: pointer;
	opacity: 0;
}
.nav-menu span {
	position: absolute;
	pointer-events: none;
	transition: 0.2s;
}

.rotate-anim-180 {
	transition: 0.2s;
	transform: rotate(180deg);
}

.btn-float-left {
	float: left;
	margin-left: 22px;
	width: 52px;
	padding: 10px 10px;
}
.text-btn-menu {
	left: 0.7em;
	top: 1em;
	position: relative;
	font-size: 12px;
}
.zoneButtonsInterfaceCam {
	position: fixed;
	bottom: 15px;
}
.buttonInterfaceCamScan {
	height: 80px;
	width: 60px;
	padding-left: 0px;
	padding-right: 0px;
}
.buttonInterfaceCamScanLarge {
	height: 80px;
	width: 150px;
	padding-left: 0px;
	padding-right: 0px;
}
.navbar-toggle {
	border: 0px solid transparent !important;
	margin-top: 9px !important;
	margin-bottom: 9px !important;
}
.navbar-toggle:hover,
.navbar-toggle:focus {
	background-color: rgba(0, 0, 0, 0);
}
