.modal {
	top: 50%;
	transform: translateY(-50%);

	width: 100vw;
	max-width: unset;
	background-color: transparent;

	z-index: 1600;
}

.modal .close-button {
	position: absolute;
	top: 15px;
	right: 15px;
	cursor: pointer;
	padding: 8px;
	z-index: 2;
}

.modal .close-button:hover {
	opacity: 0.8;
}

@media (min-width: 768px) {
	.modal {
		width: 700px;
		justify-self: center;
	}
}

@media (min-width: 1440px) {
	.modal {
		width: 1000px;
	}
}
