HEX
Server: nginx/1.24.0
System: Linux webserver 6.8.0-59-generic #61-Ubuntu SMP PREEMPT_DYNAMIC Fri Apr 11 23:16:11 UTC 2025 x86_64
User: wpuser (1002)
PHP: 8.3.6
Disabled: NONE
Upload Files
File: /opt/wpsites/datainsightnow.com/wp-content/plugins/essential-blocks/blocks/popup/src/style.scss
.eb-popup-container {
	.eb-popup-button {
		a.eb-popup-button-anchor {
			padding: 15px 30px;
			background-color: rgb(121, 103, 255);
			display: inline-flex;
			align-items: center;
			justify-content: center;
			color: #ffffff;
			text-decoration: none;
			text-align: center;
			font-size: 16px;
			font-weight: normal;
			line-height: 1.3;
			border-radius: 5px;
			cursor: pointer;
			p {
				padding: 0;
				margin: 0;
			}
			.eb-popup-button-icon-left {
				margin-right: 8px;
			}
			.eb-popup-button-icon-right {
				margin-left: 8px;
			}
		}
		&.alignment-left {
			text-align: left;
		}
		&.alignment-right {
			text-align: right;
		}
		&.alignment-center {
			text-align: center;
		}
	}
}

.eb-popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.8);
	z-index: 999;
}

.modal-main-wrap,
.modal-main-wrap * {
	box-sizing: border-box;
}

.modal-main-wrap {
	display: none;
	height: 100vh;
	width: 100vw;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	overflow: auto;
}

.eb-modal-container {
	min-height: 100vh;
	width: 100vw;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 999;
	padding: 50px;
	display: flex;
	flex-wrap: wrap;
	&.eb_popup_top_left {
		align-items: flex-start;
		justify-content: flex-start;
	}
	&.eb_popup_top_center {
		align-items: flex-start;
		justify-content: center;
	}
	&.eb_popup_top_right {
		align-items: flex-start;
		justify-content: flex-end;
	}
	&.eb_popup_middle_left {
		align-items: center;
		justify-content: flex-start;
	}
	&.eb_popup_middle_center {
		align-items: center;
		justify-content: center;
	}
	&.eb_popup_middle_right {
		align-items: center;
		justify-content: flex-end;
	}
	&.eb_popup_bottom_left {
		align-items: flex-end;
		justify-content: flex-start;
	}
	&.eb_popup_bottom_center {
		align-items: flex-end;
		justify-content: center;
	}
	&.eb_popup_bottom_right {
		align-items: flex-end;
		justify-content: flex-end;
	}
}

.eb-popup-content-editor {
	margin: 0 auto;
}

.eb-popup-content,
.eb-popup-content-editor {
	width: auto;
	height: auto;
	background-color: #ffffff;
	box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2);
	position: relative;
	padding: 10px 15px;
}

.eb-popup-close-icon {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 16px;
	line-height: 1.3;
	font-weight: 600;
	color: #000000;
	cursor: pointer;
	z-index: 999;
}

.eb-popup-active {
	display: block;
}

.eb-popup-inactive {
	display: none;
}

.eb-popup-before-content {
	text-align: center;
}