.raw-html-embed ul.el-tab-box {
	list-style: none;
	padding: 0;
	margin: 0;
}

.raw-html-embed ul.el-tab-box .el-tab.qst {
	display: flex;
	cursor: pointer;
	justify-content: space-between;
	align-items: center;
	opacity: 1;
    transition: opacity .4s ease 0s;
	border-bottom: solid 1px rgba(0,0,0,0.2);
	padding-bottom: .55rem;
	margin-top: 1.5rem
}

.raw-html-embed ul.el-tab-box .el-tab.qst > strong {
	display: block;
	font-size: clamp(1rem, 22px, 1.25rem);
}

.raw-html-embed ul.el-tab-box .el-tab.qst > svg {
	display: block;
	margin-left: 1rem;
	flex: 0 0 auto;
	font-size: 1rem;
	width: 1em;
    height: 1em;
	transition: transform var(--g-trn-sp) var(--g-trn-tf) 0s;
    transform-origin: 50% 50%;
}

.raw-html-embed ul.el-tab-box .el-tab.active.qst > svg {
	transform: rotate(180deg);
}

.raw-html-embed ul.el-tab-box .ans.el-panel { 
	padding-top: 1rem;
	margin-bottom: .5rem;
	transition: height .5s ease 0s, margin .5s ease 0s, padding .5s ease 0s !important;
}

.raw-html-embed ul.el-tab-box.no-transition .ans.el-panel { 
	transition: none !important;
}

html:not(.cms-content) .raw-html-embed ul.el-tab-box .el-panel:not(.active) {
	display: none;
	visibility: hidden;
}

@media screen and (min-width: 1025px) {
    .raw-html-embed ul.el-tab-box .el-tab.qst:is(:hover, :focus) {
        opacity: .75;
    }
}