/* main header - top nav start */

.side-header.transparent .top-nav {
}

.side-header .top-nav {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 10px;
  height: 49px;
  transition: all 0.1s;
}

.side-header .top-nav a {
  color: var(--white);
  padding: 0 20px;
  font-size: 14px;
  border-right: 2px solid var(--white);
}

.side-header .top-nav a:first-of-type {
  padding-left: 0;
}

.side-header .top-nav a:last-of-type {
  border-right: none;
}

.side-header .top-nav .search-container {
  display: inline-block;
}

.side-header .top-nav .search-container input[type="text"] {
  padding: 4px 8px;
  font-size: 14px;
  border: none;
  box-shadow: none;
  border-radius: 3px 0 0 3px;
}

.side-header .top-nav .search-container button {
  float: right;
  padding: 4px 8px;
  margin-right: 16px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  border-radius: 0 3px 3px 0;
}

/* main header - top nav end */

.header-spacing {
  /*height: 118px;*/
}

.side-header {
  position: relative;
  width: 100%;
  z-index: 9999;
  background-color: var(--white);
}

.side-header .navbar {
  padding: 0;
  max-height: 70px;
}

.side-header .header-logo {
  display: block;
}

.side-header .header-logo img {
  max-width: 200px;
  height: auto;
}

.side-header .header-buttons .nav-item {
  display: flex;
  align-content: center;
  max-height: 70px;
}

.side-header .header-buttons .nav-item .nav-link {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 22px 25px;
  font-weight: bold;
  text-transform: uppercase;
}

.side-header .header-buttons .nav-item:hover .nav-link {
  background-color: var(--light-gray);
  color: var(--primary-color);
}

.side-header .sidemenu-toggler,
.side-header .search-toggle {
  max-height: 70px;
  background-color: var(--light-gray);
  border: none;
  font-weight: bold;
  text-transform: uppercase;
  padding: 0 20px;
  font-size: 20px;
}

.side-header .sidemenu-toggler {
  min-width: 150px;
}

#header_search_main {
  z-index: 2;
  height: 40px;
  position: relative;
  margin-top: 10px;
}

.side-header .search-toggle,
#header_search_main {
  right: 0;
  transition: all 0.2s ease-in-out;
}

.side-header-menu {
  position: fixed;
  width: 400px;
  height: 99vh;
  background-color: var(--black);
  color: var(--white);
  right: 0%;
  padding: 32px 48px;
  overflow-y: scroll;
  display: none;
}

.side-header-menu .accordion-header {
  border-bottom: 1px solid #554f47;
  padding: 10px 4px;
}

.side-header-menu .accordion-header:last-of-type {
  border-bottom: none;
}

.side-header-menu .accordion-header a {
  width: 82%;
  color: var(--white);
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
}

.side-header-menu .accordion-button {
  width: 16%;
  color: var(--hilite-color);
  box-shadow: none;
  border-left: 2px solid hsla(0, 0%, 100%, 0.15) !important;
  text-align: center;
}

.side-header-menu .accordion-button span,
.side-header-menu .fa {
  font-size: 1.25rem;
  color: var(--hilite-color);
  margin: 0 auto;
}

.side-header-menu .accordion-header a,
.side-header-menu .accordion-header .accordion-button {
  display: inline-flex;
  text-decoration: none;
  line-height: 1;
  padding: 10px 12px;
  transition: 0.1s;
}

.side-header-menu .accordion-header a:hover,
.side-header-menu .accordion-header .accordion-button:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
}

.side-header-menu .accordion-item,
.side-header-menu .accordion-button {
  color: var(--white);
  background-color: transparent;
  border-radius: 0;
  border: none;
}

.side-header .accordion-button.collapsed::after,
.side-header .accordion-button:not(.collapsed)::after {
  font-family: "Font Awesome 5 Free";
  font-size: 1.5rem;
  font-weight: 900;
  content: "\f078";
  color: var(--hilite-color);
}

.side-header-menu ul {
  list-style: none;
  padding-left: 0;
}

.side-header-menu ul li {
  padding: 8px 0;
}

.side-header-menu ul li a {
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: lighter;
  text-decoration: none;
  color: var(--white);
}

.side-header-menu ul li a:hover {
  color: #9ea2a2;
  transition: 0.1s;
}

.side-header-menu .resources-title {
  color: #9ea2a2;
  font-size: 1.5rem;
  font-weight: bold;
}

@media only screen and (max-width: 992px) {
  .side-header.transparent {
    background-color: var(--white);
  }

  .side-header .header-buttons {
    margin-bottom: 20px;
    text-align: center;
  }

  .side-header .header-buttons a {
    display: inline;
    padding: 0;
  }

  .side-header-menu {
    width: 100%;
  }

  .side-header-menu .accordion-header a {
    font-size: 1.1rem;
  }

  .side-header-menu ul li a {
    font-size: 1rem;
  }

  .side-header-menu .resources-title {
    font-size: 1.2rem;
  }

  .side-header .sidemenu-toggler {
    min-width: 120px;
    width: 120px;
    height: 70px;
    font-size: 16px;
  }

  .side-header .header-logo img {
    max-width: 150px;
    height: auto;
  }
}

/*Added*/
.side-header.fixed { 
  position: fixed;  
}   
