@charset "utf-8";
/* CSS Document */

:root {
 --colour-interactive: rebeccapurple;
 --colour-bg: #f1f1f1;
}
 *, *::before, *::after {
 box-sizing: border-box;
 margin: 0;
}

details {
	margin-bottom: 2px;
	border: 2px none var(--colour-interactive);
}
details div {
	border-top: 2px solid red;
	padding: 8px;
}
summary {
	padding: 8px 10px;
	color: var(--colour-interactive);
	font-weight: bold;
}
 summary:focus-visible {
 color: var(--colour-bg);
 background-color: var(--colour-interactive);
 outline: 2px solid transparent;
}
.widget__btn {
	position: relative;
	padding: 0px 10px 14px 10px;
	font-size: 12px;
	font-weight: bold;
	color: inherit;
	background-color: transparent;
	cursor: pointer;
}
.widget__btn[aria-expanded] {
	display: flex;
	align-items: center;
	margin-bottom: 2px;
	border: 1px solid  #666;
	width: 100%;
	text-align: left;
	padding-top: 12px;
	margin-bottom: 10px;
}
 .widget__btn[aria-expanded]::before, .widget__btn[aria-expanded]::after {
 content: '';
 position: absolute;
 background-color: var(--colour-interactive);
}
 .widget__btn[aria-expanded]::before {
 right: 20px;
 height: 20px;
 width: 6px;
 transition: transform ease-in 200ms;
}
 .widget__btn[aria-expanded]::after {
 right: 13px;
 height: 6px;
 width: 20px;
}
 .widget__btn[aria-expanded='true']::before {
 transform: scaleY(0);
}
 .widget__btn[aria-expanded]:focus-visible {
 color: var(--colour-bg);
 background-color: var(--colour-interactive);
 outline: 2px solid transparent;
}
 .widget__btn[aria-expanded]:focus-visible::before, .widget__btn[aria-expanded]:focus-visible::after {
 background-color: var(--colour-bg);
}
.widget__panel[role='region'] {
	position: relative;
	top: -2px;
	border: 2px none red;
	border-top: none;
	padding: 0px;
}
 [role='tablist'] {
 display: flex;
 gap: 2px;
}
 [role='tab'] {
 border: 1px none var(--colour-interactive);
 border-bottom: none;
 border-radius: 3px 3px 0 0;
}
 [role='tab'][aria-selected='true']::before, [role='tab'][aria-selected='true']::after {
 content: '';
 position: absolute;
 left: 0;
 width: 100%;
}
 [role='tab'][aria-selected='true']::before {
 top: 0;
 height: 0;
 border-top: 3px none var(--colour-interactive);
}
 [role='tab'][aria-selected='true']::after {
 bottom: -1px;
 width: 100%;
 height: 3px;
 background-color: #F00;
}
 [role='tabpanel'] {
 padding: 20px 0px;
 border-top: 1px solid #333;
}
 [role='tab']:focus-visible {
 outline: 2px solid var(--colour-interactive);
 outline-offset: -8px;
}
 [role='tabpanel']:focus-visible {
 position: relative;
 outline: 2px solid var(--colour-interactive);
 z-index: 1;
}
 [hidden], [data-expanded='false'] + .widget__panel {
 display: none;
}
 @media screen and (forced-colors: active) {
 .widget__btn[aria-expanded]::before, .widget__btn[aria-expanded]::after {
 background-color: ButtonText;
}
 [role='tab'][aria-selected='true']::after {
 background-color: Window;
}
}