/* Add a background color to the top navigation */
.topnav {
    background-color: #4b4b4b;
    /* height: 42px; */
    overflow: hidden;
   /* position: fixed;*/
    z-index: 100;
    top: 0;
    width: 100%;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: right;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: 0.4s;
    font-size: 1.5em;
    letter-spacing: 1px;
}

.topnav a.logo {
    float: left;
    padding: 9px 0px 0px 9px;
}

img.logo { opacity: 1.0; margin-top: 0;}

/* Change the color of links on hover */
.topnav a:hover:not(.logo) {
    background-color: rgb(230 53 43);
    color: white;
}

/* Add an active class to highlight the current page */
.active {
    background-color: rgba(1,108,145,1);
    color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive a.icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}


/* ================ Accordion ================= */

/* Style the buttons that are used to open and close the accordion panel */
.accordion, .manage-users {
    text-align: center;
    text-align: -moz-center;
    transition: 0.4s;
    font-size: 1.5rem;
    letter-spacing: 1px;
    background-color: #9c9e9f;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    padding: 18px;
    text-transform: none !important;
    display: inline-block;
}

.blue-btn {
    text-align: center;
    text-align: -moz-center;
    transition: 0.1s;
    font-size: 1.5rem;
    letter-spacing: 1px;
    background-color: rgba(0,134,180,1);
    border: 1px solid rgba(0,134,180,0.3);
    color: #FFFFFF;
    text-decoration: none;
    padding: 10px;
    text-transform: none !important;
    display: inline-block;
    border-radius: 3px;

}

.blue-btn:hover {
    background-color: rgba(0,134,180,0.3);
    color: #000000;
}

/* ================ Skinny Accordion ================= */

/* Style the buttons that are used to open and close the accordion panel */
.skinny {
    padding: 7px 24px !important;
}

/* Add a background color to the button if it is clicked on (add the .active-btn class with JS), and when you move the mouse over it (hover) */
.active-btn, .accordion:hover, .manage-users:hover {
  background-color: #e6352b;
  text-decoration: none !important;
}

.active-btn { width: 100%; }

/* Style the accordion panel. Note: hidden by default */
.accordion-panel {
  display: none;
  overflow: hidden;
}

.accordion:after {
  font-family: 'Font Awesome 5 Free';
  /* Unicode character for "down arrow" sign (+) */
  content: "\f0d7";
  font-weight: 900;
  font-size: 1.0em;
  color: white;
  float: right;
  margin-left: 5px;
  /* margin-top: 3px; */
}

.active-btn:after {
  /* Unicode character for "up arrow" sign (-) */
  content: '\f0d8';
}
