.kc-application-types {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: 10px;
	margin-bottom: 20px;
}

.kc-application-types .separator {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 10px;
	color: var(--e-global-color-primary);
	font-size: 14px;
	font-weight: 700;
}

.kc-application-types .separator::before,
.kc-application-types .separator::after {
	content: '';
	flex-grow: 1;
	height: 1px;
	opacity: 0.8;
	background-color: var(--e-global-color-secondary);
}

.kc-application-types label {
	display: flex;
	justify-content: center;
	cursor: pointer;
	color: var(--e-global-color-primary);
	font-size: 18px;
	font-weight: 700;
	line-height: 30px;
	border: 1px solid var(--e-global-color-accent);
	border-radius: 100px;
	padding: 14px 40px;
	transition-property: background-color, color;
	transition-duration: 0.2s;
	transition-timing-function: ease-in-out;
}

.kc-application-types label:is(:hover, :has(input:checked)) {
	background-color: var(--e-global-color-accent);
	color: #fff;
}

.kc-application-types input[type='radio'] {
	opacity: 0;
	position: absolute;
	width: 0;
	height: 0;
}

@media screen and (max-width: 480px) {
	.kc-application-types label {
		font-size: 14px;
	}
}
