.flex_layout.twee_tab_simple .twee_tab_simple_container {
	width: 100%;
}

.twee_tab_simple_switcher {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 8px;
	max-width: 760px;
	margin: 0 auto;
	padding: 8px;
	border: 1px solid rgba(28, 28, 28, .12);
	border-radius: 14px;
	background: rgba(211, 214, 255, .35);
}

#pk_flex_content .twee_tab_simple_button {
	min-height: 58px;
	margin: 0;
	padding: 14px 22px;
	border: 0;
	border-radius: 9px;
	background: transparent;
	box-shadow: none;
	color: var(--Grey-stone, #1c1c1c);
	font: inherit;
	font-size: clamp(17px, 1.5vw, 22px);
	font-weight: 550 !important;
	line-height: 1.2;
	text-align: center;
	cursor: pointer;
	transition: background-color 220ms ease, color 220ms ease, transform 220ms ease;
}

#pk_flex_content .twee_tab_simple_button:hover {
	background: rgba(128, 137, 255, .16);
}

#pk_flex_content .twee_tab_simple_button.is-active {
	background: var(--Purple-rain, #8089ff);
	color: #fff;
}

#pk_flex_content .twee_tab_simple_button:focus-visible {
	outline: 3px solid rgba(128, 137, 255, .42);
	outline-offset: 3px;
}

.twee_tab_simple_panels {
	max-width: 920px;
	margin: 52px auto 0;
}

.twee_tab_simple_panel[hidden] {
	display: none !important;
}

.twee_tab_simple_panel.is-active {
	animation: twee-tab-simple-in 320ms cubic-bezier(.22, 1, .36, 1);
}

.twee_tab_simple_panel > :first-child {
	margin-top: 0;
}

.twee_tab_simple_panel > :last-child {
	margin-bottom: 0;
}

.grey-stone .twee_tab_simple_switcher {
	border-color: rgba(255, 255, 255, .18);
	background: rgba(255, 255, 255, .1);
}

.grey-stone #pk_flex_content .twee_tab_simple_button,
.flex_layout.twee_tab_simple:has(.grey-stone) .twee_tab_simple_button {
	color: #fff;
}

.grey-stone #pk_flex_content .twee_tab_simple_button.is-active,
.flex_layout.twee_tab_simple:has(.grey-stone) .twee_tab_simple_button.is-active {
	color: #fff;
}

@keyframes twee-tab-simple-in {
	from { opacity: 0; transform: translateY(10px); }
	to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 767px) {
	.twee_tab_simple_switcher {
		grid-template-columns: 1fr;
	}

	.twee_tab_simple_panels {
		margin-top: 34px;
	}
}
