.DialogOverlay {
	background-color: rgba(0, 0, 0, 0.7);
	position: fixed;
	inset: 0;
	animation: overlayShow 150ms cubic-bezier(0.16, 1, 0.3, 1);
}
.DialogContent {
	background-color: #fff;
	border-radius: 6px;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90vw;
	max-width: 500px;
	max-height: 85vh;
	padding: 25px;
	animation: contentShow 150ms cubic-bezier(0.16, 1, 0.3, 1);
}
.DialogContent:focus {
	outline: none;
}
.FormCol {
	display: flex;
	gap: 10px;
}
.FormField {
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
	gap: 10px;
}
.FormControl {
	border-radius: 5px;
	border: 1px solid #000;
	height: 38px;
	width: -webkit-fill-available;
}
.FormPasswordWrapper {
	position: relative;
}
.FormPasswordWrapper > div {
	position: absolute;
	top: 50%;
	right: 10px;
	transform: translateY(-50%);
	display: flex;
	gap: 10px;
}
.FormPasswordWrapper > div > button {
	padding: 0;
	color: #000;
	cursor: pointer;
	font-size: 22px;
}
.FormPasswordWrapper > div > button:hover,
.FormPasswordWrapper > div > button:focus {
	background-color: rgba(0, 0, 0, 0);
	border: none;
	color: #000;
}
.FormSubmit {
	margin-top: 20px;
	width: 100%;
	text-align: center;
	justify-content: center;
}
.FormError {
	color: red;
	height: 18px;
	font-size: 14px;
	display: flex;
	align-items: center;
}
.RadioGroupRoot {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.RadioGroupRoot button {
	border-radius: 50%;
	border: 1px solid #0247bb;
	height: 16px;
	padding: 10px;
}
.RadioGroupRoot button:focus,
.RadioGroupRoot button:hover {
	background-color: rgba(0, 0, 0, 0);
}
.RadioGroupItem {
	background-color: #fff;
	width: 25px;
	height: 25px;
	border-radius: 100%;
	box-shadow: 0 2px 10px #000;
}
.RadioGroupItem:hover {
	background-color: #0247bb;
}
.RadioGroupItem:focus {
	box-shadow: 0 0 0 2px #000;
}
.RadioGroupIndicator {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	position: relative;
}
.RadioGroupIndicator:after {
	content: "";
	display: block;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background-color: #0e93ee;
	position: absolute;
	transform: translateY(1%) translateX(2%);
}
.RadioLabel {
	color: #000;
	font-size: 15px;
	line-height: 1;
	padding-left: 15px;
}
.ButtonW100 {
	width: 100% !important;
}
.EventFormNextStep {
	margin-top: 20px !important;
	display: flex !important;
	justify-self: flex-end;
}
.EventFormActions {
	display: flex;
	justify-content: space-between;
}
.slider-wrapper {
	width: 100%;
	overflow: hidden;
}
.slider {
	display: flex;
	transition: transform 0.45s ease-in-out;
}
.step {
	width: 100%;
	flex-shrink: 0;
}
.wpem-theme-button.disabled {
	background-color: #6ec1e4;
}
.wpem-theme-button.disabled:hover,
.wpem-theme-button.disabled:active {
	background-color: #6ec1e4;
}
.QRCodeContainer {
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
} /*# sourceMappingURL=styles.css.map */
.LabeledQRCodeContainer {
	margin-top: 1rem;
}

.LabeledQRCodeContainer p {
	font-weight: 700;
	font-size: 1.1rem;
}

.checkbox-container {
	display: flex;
	align-items: start;
	gap: 0.25rem;
}

.checkbox-container input {
	margin-top: 0.2rem;
	cursor: pointer;
}

.checkbox-container label {
	font-size: 0.9rem;
}

.checkbox-parent-container {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	margin-bottom: 0.25rem;
}

.finish-message {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
	gap: 0.5rem;
	color: #22c55e;
}
.error-message {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
	gap: 0.5rem;
	color: #ef4444;
}
.finish-message-container {
	height: 100%;
	display: flex;
	flex-direction: column;
}
.finish-message-btn-cont {
	display: flex;
	justify-content: end;
}

.toast-root {
	background-color: #fff;
	border-radius: 8px;
	padding: 1rem 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
	min-width: 280px;
	max-width: 360px;
	animation: slide-in 0.3s ease;
}

.toast-success {
	border-left: 4px solid #22c55e;
	color: #15803d;
}

.toast-error {
	border-left: 4px solid #ef4444;
	color: #b91c1c;
}

.toast-close {
	position: absolute;
	top: 8px;
	right: 12px;
	background: none;
	border: none;
	font-size: 1rem;
	color: #64748b;
	cursor: pointer;
}

.toast-viewport {
	position: fixed;
	bottom: 1rem;
	right: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	z-index: 10000;
}

.join-button-contents {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	justify-content: center;
	font-size: 0.9rem;
}

@keyframes slide-in {
	from {
	opacity: 0;
	transform: translateX(100%);
	}
	to {
	opacity: 1;
	transform: translateX(0);
	}
}
