.modal-wrap {
	position: fixed;
	width: 100%;
	height: 100%;
	background: rgb(0, 0, 0, 0.25);
	z-index: 100;
}

.modal-wrap .blur {
	top: 0;
	left: 0;
	position: fixed;
	background-color: rgba(0, 0, 0, 0.25);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	width: 100%;
	height: 100%;
}

.modal-exit {
	position: relative;
	background: var(--g-900);
	border: 1px solid var(--g-700);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	margin: auto;
	margin-top: 1.45rem;
	text-align: center;
	cursor: pointer;
	z-index: 102;
}

.modal-exit::before {
	content: "✕";
	color: var(--l-100);
	font-size: 1.25rem;
	line-height: 2.25rem;
	font-weight: 300;
}

.modal-wrap button {
	padding: 0;
	margin: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: var(--g-900);
	line-height: 2.75rem;
	color: var(--l-100);
	border: 1px solid var(--g-700);
	font-size: 4rem;
	border-radius: 8px;
	cursor: pointer;
	z-index: 102;
	box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.modal-wrap button:nth-of-type(1) {
	left: 10px;
	padding: 0.25rem 0.75rem 0.65rem 0.65rem;
}

.modal-wrap button:nth-of-type(2) {
	right: 10px;
	padding: 0.25rem 0.55rem 0.65rem 0.65rem;
}

.modal-wrap img {
	position: absolute;
	object-fit: cover;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 100%;
	border-radius: 3px;
	z-index: 101;
}

@media only screen and (min-width: 768px) {
	.modal-wrap img {
		max-width: 1000px;
	}
	.modal-wrap button:nth-of-type(1) {
		left: 25px;
	}

	.modal-wrap button:nth-of-type(2) {
		right: 25px;
	}
}
