.ctsfw-faqs-acc {
--acc-border: #e5e7eb;
--acc-text: #111827;
--acc-muted: #6b7280;
--acc-focus: #1d4ed8;
--acc-bg: #ffffff;
--acc-bg-alt: #f9fafb;
color: var(--acc-text);
background: var(--acc-bg);
border-top: 1px solid var(--acc-border);
}
.ctsfw-faqs-acc__item {
border-bottom: 1px solid var(--acc-border);
}
.ctsfw-faqs-acc__heading {
margin: 0;
}
.ctsfw-faqs-acc__button {
all: unset;
display: flex;
align-items: center;
justify-content: space-between;
gap: 1rem;
width: 100%;
cursor: pointer;
padding: 1rem 0;
line-height: 1.35;
}
.ctsfw-faqs-acc__button:focus {
outline: 2px solid var(--acc-focus);
outline-offset: 2px;
border-radius: 2px;
}
.ctsfw-faqs-acc__label {
font-size: 1.125rem;
font-weight: 500;
} .ctsfw-faqs-acc__icon {
position: relative;
width: 1.25rem;
height: 1.25rem;
flex: none;
}
.ctsfw-faqs-acc__icon::before,
.ctsfw-faqs-acc__icon::after {
content: "";
position: absolute;
left: 50%;
top: 50%;
width: 1.25rem;
height: 2px;
background: var(--acc-muted);
transform: translate(-50%, -50%);
transition: transform 200ms ease;
}
.ctsfw-faqs-acc__icon::after {
transform: translate(-50%, -50%) rotate(90deg);
}
.ctsfw-faqs-acc__button[aria-expanded="true"] .ctsfw-faqs-acc__icon::after {
transform: translate(-50%, -50%) rotate(0deg);
} .ctsfw-faqs-acc__panel {
padding: 0 0 1rem 0;
background: var(--acc-bg);
}
.ctsfw-faqs-acc__panel-inner {
padding: 0.25rem 0 0 0;
} .ctsfw-faqs-acc__notice {
margin: 0.75rem 0;
padding: 0.75rem 1rem;
background: var(--acc-bg-alt);
border: 1px solid var(--acc-border);
font: 14px/1.45 system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}  .ctsfw-faqs-acc .ctsfw-faqs-acc__content .ctsfw-faqs-acc__image {
margin: 0;
width: 30% !important; max-width: 30% !important; } .ctsfw-faqs-acc .ctsfw-faqs-acc__content .ctsfw-faqs-acc__img,
.ctsfw-faqs-acc .ctsfw-faqs-acc__content .ctsfw-faqs-acc__image img {
display: block;
width: 100% !important;
max-width: 100% !important;
height: auto !important;
border-radius: 4px;
} @media (min-width: 768px) {
.ctsfw-faqs-acc .ctsfw-faqs-acc__content .ctsfw-faqs-acc__image {
float: right;
margin: 0 0 1rem 1.25rem; } .ctsfw-faqs-acc .ctsfw-faqs-acc__content::after {
content: "";
display: table;
clear: both;
}
} @media (max-width: 767.98px) {
.ctsfw-faqs-acc__content {
display: flex;
flex-direction: column;
gap: 0.75rem;
}
.ctsfw-faqs-acc .ctsfw-faqs-acc__content .ctsfw-faqs-acc__image {
float: none;
margin: 0;
align-self: flex-start; }
} @media (prefers-reduced-motion: reduce) {
.ctsfw-faqs-acc__icon::before,
.ctsfw-faqs-acc__icon::after {
transition: none;
}
} .ctsfw-faqs-acc__panel[hidden] {
display: none !important;
}