.csf-6693-container {
	position: relative;
}

.csf-6693-toggler {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

.csf-6693-toggler i {
	font-size: 20px;
}

.csf-6693-toggler svg {
	width: 20px;
	height: 20px;
}

.csf-6693-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.csf-6693-popup.is-active {
	opacity: 1;
	visibility: visible;
}

.csf-6693-close {
	position: absolute;
	top: 30px;
	right: 30px;
	background: transparent;
	border: none;
	color: #fff;
	font-size: 30px;
	cursor: pointer;
}

.csf-6693-close svg {
	width: 30px;
	height: 30px;
	fill: #fff;
}

.csf-6693-form {
	display: flex;
	width: 80%;
	max-width: 800px;
	position: relative;
}

.csf-6693-input {
	width: 100%;
	padding: 15px 60px 15px 20px;
	font-size: 24px;
	border: none;
	border-radius: 5px;
	background: #fff;
}

.csf-6693-submit {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: transparent;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #333;
}

.csf-6693-submit svg {
	width: 24px;
	height: 24px;
	fill: #333;
}

/* Editor overrides */
.elementor-editor-active .csf-6693-popup {
	position: absolute;
	background: rgba(0, 0, 0, 0.8);
}