.collapsible {
  
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    padding: .25rem 1rem;
    border: 1px solid #498dbd;
    color: #498dbd;
    font-size: .9375rem;
    cursor: pointer;
    border-radius: .375rem;
    transition: all .2s ease-in-out;

}

.active, .collapsible:hover {
  background-color: #498dbd;
	color: #fff;
}

.content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
}