
/* Accordion */
#accordion {
  
}

#accordion h3 {
  margin-top: 5px;
  background-color: #ececec;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  padding: 20px;
  cursor: pointer;
  clear: right;
  color: #1a3c60;
  font-weight: 600;
  position: relative;

}
#accordion h3:last-child {
  
}
#accordion h3 + div {
  
  font-size: 16px;
}

#accordion h3 .fa {
  position: absolute;
  top: 21px;
  right: 20px;
  transition: all .2s ease;
}
#accordion h3 .fa.is-moveable {
  transform: rotate(90deg);
}

#accordion > h3:not(:first-child) {
}

#accordion .drawer {
  max-height: 100vh;
  overflow-y: auto;
  cursor: pointer;
  transition: all .5s ease;
}

#accordion p {
  padding: 0.5rem;
}

/* State */
.is-hidden {
  max-height: 0 !important;
}

.is-rotate {
  transform: rotate(90deg);
}