.ios-popup {
	display: none;
	position: fixed;
	bottom: 10px;
	right: 20px;
	background-color: rgba(0, 0, 0, 0.8);
	color: white;
	padding: 10px 15px;
	border-radius: 8px;
	font-size: 14px;
	z-index: 1000;
}

.popup-arrow {
	position: absolute;
	bottom: -8px;
	right: 25px;
	border-width: 8px 8px 0;
	border-style: solid;
	border-color: rgba(0, 0, 0, 0.8) transparent transparent;
}

.close-popup {
	position: absolute;
	top: 4px;
	right: 4px;
	background: none;
	border: none;
	font-size: 18px;
	color: white;
	cursor: pointer;
}


@media screen and (max-width: 767px) {
	.ios-popup {
		right: 50%;
		transform: translateX(50%);
	}

	.popup-arrow {
		right: 50%;
		transform: translateX(50%);
	}
}
