

/* Fixed sidenav, full height */
.sidenav {
  height: 838px;
  width: 250px;
  position: absolute;
  /* z-index: 1; */
  top: 0;
  left: 0;
  background-color: #fff;
  overflow-x: hidden;
  padding: 10px 15px;
  margin-top: 100px
}

/* Style the sidenav links and the dropdown button */
.sidenav a, .dropdown-btn {
  padding: 0px 8px 6px 16px;
  text-decoration: none;
  font-size: 14px;
  color: #4D4D4D;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none
}

.subscriber{
	margin-top: 20px;
	border: 9px solid #f0f0f0;
    border-radius: 5px;
    padding: 20px;
}

.subscriber span{
	font-size: x-large;
    font-weight: 700;
}

.subscriber span.activesubscriber{	
    color: green;
}

.subscriber span.inactivesubscriber{	
    color: red;
}

/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover {
  color: #000;
}
/* On mouse-over */
.sidenav a:focus, .dropdown-btn:focus {
  outline: 1px solid black;
}
/* Main content */
.main-section {
  margin-left: 250px; /* Same as the width of the sidenav */
  font-size: 16px; /* Increased text to enable scrolling */
  padding: 0px 10px;
  min-height: 808px;
  max-height:auto;
  margin-top:27px;
}



/* 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;
}

/* Some media queries for responsiveness */
@media screen and (max-height: 450px) {
  .sidenav a {font-size: 14px;}
}