/**
 * 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;
   background-color: #FFCC00 !important;
   border-radius: 6px;
   font-weight: normal !important;
   /*font: normal normal normal 22px/32px Fira Sans;*/
   color: #ffffff !important;
   padding: 6px 6px 6px 38px;
   margin-top: 16px !important;
   width: 100%;
}

.wptac-toggler {
   position: absolute;
   left: 10px;
   top: 50%;
   transform: translateY(-50%);
   transition: 0.4s transform;
   font-size: 40px;
}

.wptac-header.expanded {
   background-color: unset !important;
   border-radius: none;
   color: #004C9B !important;
}

.wptac-header.expanded .wptac-toggler {
   transform: translateY(-50%) rotate(90deg);
}

.wptac-pane {
   overflow: hidden;
   max-height: 0;
   min-height: unset !important;
   transition: 0.4s max-height;
} 
