/* Navbar */

 /* The navigation menu */
.topnav {
  overflow: hidden;
  background-color: #333;
}

/* Navigation links */
.topnav a {
  float: left;
  display: block;
  font-size: 16px;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add an active class to highlight the current page */
.topnav a.active {
  background-color: #04AA6D;
  color: white;
}



/* The subnavigation menu */
.subnav {
  float: left;
  overflow: hidden;
}

/* Subnav button */
.subnav .subnavbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

/* Add a red background color to navigation links on hover */
.topnav a:hover, .subnav:hover .subnavbtn {
  background-color: lightblue;
}

/* Style the subnav content - positioned absolute */
.subnav-content {
  opacity: 0;
  visibility: hidden;
  transition: 
    opacity 0.5s ease,
    visibility 0s linear 0.5s;
  position: absolute;
  left: 0;
  background-color: lightblue;
  width: 100%;
  z-index: 1;
}

/* Style the subnav links */
.subnav-content a {
  float: left;
  color: white;
  text-decoration: none;
}

/* Add a grey background color on hover */
.subnav-content a:hover {
  background-color: #eee;
  color: black;
}

/* When you move the mouse over the subnav container, open the subnav content */
.subnav:hover .subnav-content {
  opacity: 1;
  visibility: visible;
  transition: 
    opacity 0.5s ease,
    visibility 0s linear 0s;
}
.subnavactif {
	background-color:grey;
}
.subnavoptions {
	color: #fff !important;
    background-color: #000 !important;
	width: 100%;
    overflow: hidden;
}
.baritembutton {
	user-select: none;
	border: none;
	background-color: inherit;
	cursor: pointer;
    white-space: nowrap;
}
.displaycontainer {
	position: relative;
	margin-top:16px;
	margin-bottom:40px;
	background-color:inherit;
}
.xxl{
	background-color:inherit;
	color:red!important;
	font-size:2rem!important;
	position: absolute;
  	right: 0;
  	top: 0;
	user-select: none;
	border: none;
  	display: inline-block;
  	padding: 8px 16px;
}




