.fast-popup-wrap {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	z-index: -1;
	transition: opacity 0.3s ease;
}

.fast-popup-wrap.active {
	opacity: 1;
	z-index: 99;
}

.fast-popup-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	background-color: rgba(0, 0, 0, 0.6);
}

.fast-popup-content {
	position: relative;
	z-index: 101;
	background-color: #fff;
	width: 50vw;
	height: 60vh;
	margin: 0 auto;
	display: flex;
}

.fast-popup-content .row {
	display: flex;
	width: 100%;
}

.fast-popup-content .row .col {
	flex: 1;
}

.fast-popup-content .row .col img {
	max-height: 60vh;
	width: auto;
}

.fast-popup-content .close {
	position: absolute;
	top: 0;
	right: 0;
}
