/**
 * Headwall WP Tutorials : Accordion (WPTACC)
 *
 * wpt-accordion.css
 */

.wptac-container {
   /* You can add CSS for the accorion container here */
}

.wptac-header {
    cursor: pointer;
    position: relative;
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 24px !important;
	background: #f6f6f6;
	border: none !important;
	border-radius: 0;
	font-size: 18px;
	margin-bottom: 0px !important;
}
.wptac-header.expanded {
    margin-bottom: 0 !important;
    background: #71b2e4;
	color:#fff;
    border-radius: 0;
    border-bottom: 0 !important;
}
.wp-block-group.expanded{
    padding: 24px;
	border: 1px solid #e6e6e6;
    border-radius: 0 ;
}

.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;
}