/* بهیدو — پاپ‌آپ نتیجه ارسال فرم‌های Elementor Pro Forms */

.behido-form-popup {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.25s ease, visibility 0.25s ease;
}

.behido-form-popup.is-open {
	visibility: visible;
	opacity: 1;
}

.behido-form-popup__overlay {
	position: absolute;
	inset: 0;
	background:rgba(15, 30, 65, 0.85);
}

.behido-form-popup__box {
	position: relative;
	z-index: 1;
	width: 90%;
	max-width: 920px;
	padding: 40px 28px 32px;
	text-align: center;
	transform: translateY(20px);
	transition: transform 0.25s ease;
	border: 2px dashed #2BC273;
	border-radius: 20px;
}

.behido-form-popup.is-open .behido-form-popup__box {
	transform: translateY(0);
}

.behido-form-popup__close {
	position: absolute;
	top: 12px;
	inset-inline-end: 14px;
	background: none;
	border: none;
	font-size: 24px;
	line-height: 1;
	cursor: pointer;
	border-radius: 100% !important;
    width: 24px !important;
    height: 24px !important;
    padding: 2px !important;
    color: rgba(179, 179, 179, 1) !important;
    border-color: rgba(179, 179, 179, 1) !important;
}

.behido-form-popup__close:hover {
	background-color:transparent !important;
}

.behido-form-popup__icon {
	display: none;
	margin-bottom: 16px;
}

.behido-form-popup__icon img {
	max-width: 72px;
	height: auto;
	margin: 0 auto;
}

.behido-form-popup__title {
	display: none;
	margin: 0 0 10px;
	font-size: 20px;
	font-weight: 700;
	color:#2BC273;
}

.behido-form-popup__desc {
	margin: 0 0 20px;
	font-size: 15px;
	line-height: 1.8;
	color: rgba(245, 245, 245, 1);
}

.behido-form-popup__btn {
	display: none;
	padding: 10px 28px;
	border-radius: 35px;
	background: #2BC273;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
}

body.behido-popup-open {
	overflow: hidden;
}
