/**
 * Headwall WP Tutorials : Accordion (WPTACC)
 *
 * wpt-accordion.css
 * 
 * https://wp-tutorials.tech/refine-wordpress/wordpress-accordion-without-a-plugin/
 */

.wptac-container {
   /* You can add CSS for the accorion container here */
}

.wptac-header {
   cursor: pointer;
   position: relative;
}

.wptac-toggler {
   position: absolute;
   right: 10px;
   top: 50%;
   transform: translateY(-50%);
   transition: 0.4s transform;
}

.wptac-header.expanded .wptac-toggler {
   transform: translateY(-50%) rotate(180deg);
}

.wptac-pane {
   overflow: hidden;
   max-height: 0;
   min-height: unset !important;
   transition: 0.4s max-height;
}