.main-popup-wrap {
	position: relative;
	z-index: 2000;
}

.main-popup {
	position: absolute;
	top: 120px;
	left: 120px;
	width: 420px;
	max-width: calc(100vw - 32px);
	background: #fff;
	border: 1px solid #333;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.main-popup-img-wrap {
	width: 100%;
	background: #fff;
	overflow: hidden;
}

.main-popup-img-wrap a {
	display: block;
	width: 100%;
}

.main-popup-img-wrap img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: fill;
}

.main-popup-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 42px;
	background: #222;
}

.main-popup-footer button {
	flex: 1;
	height: 42px;
	border: 0;
	background: #222;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
}

.main-popup-footer button+button {
	border-left: 1px solid rgba(255, 255, 255, 0.35);
}

@media (max-width: 767px) {
	.main-popup {
		top: 72px !important;
		left: 16px !important;
		width: calc(100vw - 32px) !important;
		height: auto !important;
	}

	.main-popup-img-wrap {
		height: auto;
	}
}