/*
** ModalViewer
*/
#modal {
	display: block;
	z-index: 11;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	overflow: auto;
	background-color: rgba(0,0,0,0.85);
}
#modal .close {
	position: absolute;
	display: flex;
	top: 0rem;
	right: 2rem;
	z-index: 13;
	color: whitesmoke;
	line-height: 3.0rem;
	font-size: 3.0rem;
	text-align: center;
}
#modal .close::before {
	content: "\002716";
}
#modal .close:hover {
	color: var(--cc-body-hover);
	text-decoration: none;
	cursor: pointer;
}
#modal .image {
	display: block;
	position: relative;
	z-index: 12;
	margin: auto;
	background-color: white;
	cursor: pointer;
	object-fit: scale-down;
}
#modal .video {
	display: block;
	position: relative;
	z-index: 12;
	margin: auto;
	background-color: black;
	width: 80%;
	max-width: 700px;
}
#modal .host {
	display: flex;
	position: relative;
	left: 2rem;
	z-index: 12;
	width: calc(100% - 4rem);
	height: calc(100vh - 7rem);
	background-color: var(--cs-quote-back);
	overflow-y: scroll;
	overflow-x: clip;
	border-radius: 0.5rem;
}
@media screen and (max-width: 700px) {
	#modal .image {
		width: 100%;
	}
	#modal .video {
		width: 100%;
	}
}
