.pear-popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 999999;
	align-items: center;
	justify-content: center;
}

.pear-popup-container {
	position: relative;
	max-width: 90%;
	max-height: 90%;
	text-align: center;
}

.pear-popup-image {
	max-width: 100%;
	max-height: 80vh;
	height: auto;
	display: block;
	margin: 0 auto;
}

.pear-popup-desktop {
	max-width: 100%;
	max-height: 80vh;
	height: auto;
	display: block;
	margin: 0 auto;
}

.pear-popup-mobile {
	max-width: 100%;
	max-height: 80vh;
	height: auto;
	display: none;
	margin: 0 auto;
}

.pear-popup-close {
	position: absolute;
	top: -40px;
	right: 0;
	background: none;
	border: none;
	color: #fff;
	font-size: 36px;
	cursor: pointer;
	padding: 0;
	width: 40px;
	height: 40px;
	line-height: 1;
}

.pear-popup-close:hover {
	color: #ccc;
}

.pear-popup-disable {
	display: block;
	margin-top: 15px;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
}

.pear-popup-disable input {
	margin-right: 5px;
}

@media (max-width: 768px) {
	.pear-popup-desktop {
		display: none !important;
	}
	
	.pear-popup-mobile {
		display: block !important;
	}
	
	.pear-popup-close {
		top: -35px;
		font-size: 30px;
	}
}