.theme-bg-color{
    background-color: #3d8080;
    color: white;
}
.theme-text-color{
    color: #3d8080;
}
.header-nav{
    background-color: #3d8080;
    color: white;
    width: 100%;
    height: 60px;
    box-sizing: border-box;
    position: sticky;
    top: 0;
    z-index: 2;
}
.header-nav ul{
    list-style: none;
    display: inline-block;
    font-size: 15px;
    margin: 0px;
    padding: 15px 0px 15px 20px;
}
.header-nav ul li{
    display: inline;
}
.header-nav ul li img{
    display: inline-block;
    max-width: 12%;
    height: 100%;
    margin-right: 20px;
}
.header-nav ul li a{
    padding: 0px 5px 0px 5px;
    color: white;
    margin-left: 15px;
    text-decoration:none;
}
.header-nav ul li a:hover{
    text-decoration:none;
    border-bottom: 3px solid black;
}
#dash:hover{
    border-bottom: none;
}

.forecolor{
    color: red;
}
.backkcolor{
    background-color: yellow;
}
.searchText{
    color: black;
}
.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
}

#sidebar {
    min-width: 200px;
    max-width: 200px;
    max-height: 1200px;
    position: sticky;
  top: 0;
    color: white;
    transition: all 0.3s;
    padding-left: 5px;
    display:none;
}

#sidebar.active {
    margin-left: -200px;
    
}

#sidebar .sidebar-header {
    padding: 5px;
    background: #3d8080;
}

#sidebar ul.components {
    padding: 5px 0;
    border-bottom: 1px solid #3d8080;
}

#sidebar ul li ul{
    border-bottom: 1px solid lightgray;
}
#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 15px;
    font-size: 1em;
    display: block;
    color: white;
}

#sidebar ul li a:hover {
    color: #3d8080;
    background: white;
}

#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: white;
    background: #3d8080;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #3d8080;
}

ul.CTAs {
    padding: 20px;
}

ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

a.download {
    background: #fff;
    color: #3d8080;
}

a.article,
a.article:hover {
    background: #3d8080 !important;
    color: #fff !important;
}

/* ------------- DROPDOWN CHECKBOX STYLE ------------- */

.selectBox {
  position: relative;
}

.selectBox select {
  width: 100%;
  font-weight: bold;
}

.overSelect {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.checkboxes {
    height: 200px;
    overflow-y: scroll;
  border: 1px #dadada solid;
}

.checkboxes label {
  display: block;
}

.checkboxes label:hover {
  background-color: #3d8080;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    min-height: 100vh;
    transition: all 0.3s;
    margin: 0px;
    padding: 0px;
}

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 10px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 30%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  color: white;
}

.modal-body {padding: 2px 16px;}

.modal-footer {
    height: 40px;
  padding: 2px 16px;
  color: white;
}
.singlesearchdiv{
    display:flex;position:sticky; top:2.4rem; z-index:1;
}
/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media (max-width: 768px) {
    .header-nav{
        display:none;
    }
    #sidebar {
        margin-left: -250px;
        z-index: 3;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #sidebarCollapse span {
        display: none;
    }
}