/*!
 * This file is part of the "A-artik" Theme
 * ----------------------------------------
 * Copyright (c) 2021 The Education University of Hong Kong. All rights reserved.
 * Developed by Nick Lai (https://www.github.com/nixklai/).
 */
div.content {
  /** Record keeper: radios **/
}
div.content input[name=toggle] {
  display: none;
}
div.content div.toggle-area {
  /*** Animation: at idle ***/
  max-height: 0;
  transition: max-height 1s ease-in-out;
  overflow: hidden;
}

/*** Animation: after activated ***/
input[name=toggle]:checked + div.toggle-area {
  max-height: 5000vh;
}

/*# sourceMappingURL=toggle-area.css.map */
