

.accordion > input[type="checkbox"] {
  position: absolute;
  left: -100vw;
}

.accordion .content {
  overflow-y: hidden;
  height: 0;
  transition: height 0.3s ease;
}

.accordion > input[type="checkbox"]:checked ~ .content {
  height: auto;
  overflow: visible;
}

.accordion label {
  display: block;
}

#classListDiv {
  font-size: 0.9em;
  color: #333;
}



.accordion {
  background-color: #FFFFFF;
  border:#333 2px solid;
  border-radius: 5px;
  padding: 1px;
}

.accordion > input[type="checkbox"]:checked ~ .content {
  border: 1px solid #e8e8e8;
  border-top: 0;
}

.accordion .handle {
  margin: 0;
  font-size: 1.125em;
  line-height: 1.2em;
}

.accordion label {
  color: #333;
  cursor: pointer;
  font-weight: normal;
  padding: 15px;
  background: #e8e8e8;
}

.accordion label:hover,
.accordion label:focus {
  background: #d8d8d8;
}

.accordion .handle .classNameDiv:before {
  font-family: 'fontawesome';
  content: "\f054";
  display: inline-block;
  margin-right: 10px;
  font-size: .58em;
  line-height: 1.556em;
  vertical-align: middle;
}

.accordion > input[type="checkbox"]:checked ~ .handle .classNameDiv:before {
  content: "\f078";
}


.classNameDiv {
  width:100%; 
  display:flex;
}


*,
*:before,
*:after {
  box-sizing: border-box;
}


p {
  margin: 0 0 1em;
}

h1 {
  font-weight: 600;
  font-size: 1.5em;
}


.sectionTitle {
  text-decoration: underline;
}

.updates {
  color: #ff0000b3;
}


@media only screen and (max-width: 730px) {
  
  #classListDiv {
    font-size: 0.65em;
  }

}

