.switchmodal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 2rem;
	/* background: red; */
	z-index: 9999;

	display: flex;
	justify-content: center;
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 40px;
	border-radius: 32px 0 0 0;

	background-color: var(--cl-foreground);
	color: var(--cl-background);
	background-color: #0c4346;
	color: #ffffff;

	text-align: center;

	height: max-content;
	width: min(90%, 600px);
}

.switchmodal-overlay{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	z-index: 9998;
}

.switchmodal-overlay.disabled {
	display: none;
}

.switchmodal .button-container{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	gap: 1rem;
}

.switchmodal .button{
	padding: .5rem 2rem;
	border: none;
	border-radius: 8px 0 0 0;
	cursor: pointer;
	background-color: #fff;
	border: 2px solid #fff;
	color: #0c4346;
	font-weight: bold;
	transition: background-color 0.3s ease;
}

.switchmodal .button--minimal{
	background-color: transparent;
	border: 2px solid #fff;
	color: #fff;
}

.switchmodal .button:hover{
	background-color: #f0f0f0;
	color: #0c4346;
}

.switchmodal p{
	color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.switchmodal strong{
	width: 100%;
	color: #009982;
	font-size: 32px;
	line-height: 1.2;
	margin-bottom: 8px;
}

.switchmodal.disabled {
	display: none;
}