/* pop-up */
.popup-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9;
}

.popup {
	background: #fff;
	padding: 10px;
	max-width: 90%;
	width: auto;
	max-height: 90%;
	height: auto;
	position: fixed;

	img {
		width: 100%;
		height: auto;
		object-fit: contain;
	}
}

.popup .close {
	position: absolute;
	top: 11px;
	right: 11px;
	background: none;
	border: none;
	font-size: 20px;
	cursor: pointer;
	background: #b82624;
	color: white;
	border-radius: 5px;
	padding: 0 6px;
}
.no-scroll {
	overflow-x: hidden;
}
