/*******************************************************

MAIN.CSS

********************************************************/
:root {
  --black: #000000;
  --white: #FFFFFF;
  --yellow: #CCCCCC;
  --offwhite: #EEEEEE;
}

/********************************************************/
/* COURSE-AGENDA HEADING
/********************************************************/
.heading-title-gray {
    background-color: var(--offwhite);
}
.heading-title-silver {
  background-color: var(--offwhite);
}
.heading-title-yellow {
    background-color: var(--yellow);
}
.heading-title {
  display: flex;
  align-items: center;
  padding: 5px 5px 5px 15px;
  /* border-bottom: 1px solid #999; */
  margin-bottom: 10px;
}
.heading-title-text {
  width: 85%;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 0;
}
.heading-arrow-down {
  width: 15%;
  font-size: 18px;
  text-align: center;
}
.heading-arrow-down:hover {
  text-decoration: none;
  color: var(--white);
}
.heading-list-group-item  {
  font-size: 14px;
  line-height: 28px;
  padding: 0;
  text-transform: lowercase;
  border: none;
  padding-left: 15px;
}
#searchForm {
  padding: 10px 0px;
  margin-bottom: 10px;
}