.corner-popup-box {
	position: fixed;
	max-width: 90%;
	z-index: 999999;
	opacity: 0;
	transition: all 0.4s ease;
}

.corner-popup-box.corner-popup-v-bottom {
	transform: translateY(120%);
}

.corner-popup-box.corner-popup-v-bottom.corner-popup-visible {
	transform: translateY(0);
	opacity: 1;
}

.corner-popup-box.corner-popup-v-top {
	transform: translateY(-120%);
}

.corner-popup-box.corner-popup-v-top.corner-popup-visible {
	transform: translateY(0);
	opacity: 1;
}

.corner-popup-box.corner-popup-v-center {
	transform: translateY(calc(-50% + 80px));
}

.corner-popup-box.corner-popup-v-center.corner-popup-visible {
	transform: translateY(-50%);
	opacity: 1;
}

.corner-popup-box img {
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.corner-popup-close {
	position: absolute;
	top: -10px;
	right: -10px;
	background: red;
	color: #fff;
	width: 26px;
	height: 26px;
	padding: 0;
	border: none;
	text-align: center;
	line-height: 26px;
	border-radius: 50%;
	font-size: 16px;
	cursor: pointer;
	z-index: 2;
	min-height: unset;
	max-height: unset;
	margin: 0;
}

.corner-popup-close:hover {
	background: #c00;
}
