:root {
	--width-menu: 200px;
}

div.page_wrapper {
	width: 100%;
	overflow-x: hidden;
}

.content {
	margin-top: 40px !important;
	padding-left: var(--width-menu);
}

@media (min-width: 768px) {
	.container {
	    width: calc(750px - var(--width-menu)); 
	}
}
@media (min-width: 992px) {
	.container {
    	width: calc(970px - var(--width-menu)); 
	}
}
@media (min-width: 1200px) {
	.container {
	    width: 970px; 
	}
}

@media (min-width: 1400px) {
	.container {
	    width: 1170px; 
	}
}

.menu_wrapper {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-content: stretch;
	width: var(--width-menu);
}

/* Fixed sidenav, full height */
.sidenav {
  height: 100%;
  width: var(--width-menu);
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #271529;
  overflow-x: hidden;
  padding-top: 20px;
}

.sidemenu-logo {
	display: block;
	width: 200px;
	margin-bottom: 20px;
}

/* Style the sidenav links and the dropdown button */
.sidenav a, .dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  color: var(--clr-white);
  display: block;
  border: none;
  background: none;
  width:100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}

/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover {
  color: var(--clr-gold);
}

/* Main content */
.main {
  margin-left: var(--width-menu); /* Same as the width of the sidenav */
  font-size: 20px; /* Increased text to enable scrolling */
  padding: 0px 10px;
}

/* Add an active class to the active dropdown button */
.dropdown-btn.active {
  background-color: #271529;
  color: white;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
  display: none;
  /*background-color: #262626;*/
  padding-left: 8px;
}

/* Optional: Style the caret down icon */
.fa-caret-down {
  float: right;
  padding-right: 8px;
}