.accordion-wrapper {
    margin-bottom: 30px;
}
.accordion {
    background-color: #eee;
    color: #444;    
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    font-weight: bolder;
    transition: 0.4s;
}
.active,
.accordion:hover {
    background-color: #ccc;
}
.intro-blurb {
    padding-left: 25px !important; 
    padding-right: 25px !important;    
    color: #5a96b9;
    font-weight: bolder;    
}
.panel {
    padding: 10px 18px 10px 18px;
    display: none;
    background-color: white;
    /*overflow: hidden; */
    color: #000;
    height: auto;
}
.panel ul {
    padding: 15px;
}
.panel li {
    padding: 5px;
}
.panel a {
    text-decoration: none;
    font-style: italic;
}
.panel a:hover {
    font-weight: bolder;
}
.sub-menu-button:hover {
    color: #fff !important;
    background-color: lightgreen !important;
}
.faq-funnel-button {
    font-weight: bolder;
    color: lightgreen;
}

/* ********** scroll to top ********** */

#scrollToTopBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed position */
  bottom: 20px; /* Distance from bottom */
  right: 30px; /* Distance from right */
  z-index: 99; /* Ensure it's on top of other elements */
  border: none;
  outline: none;
  background-color: #555;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
  font-size: 18px;
}
#scrollToTopBtn:hover {
  background-color: lightgreen;  
}
#scrollToTopBtn:hover > .scroll-up {
  background-color: lightgreen;
  color: #fff;
}

