.image-contain {
	transition: all 0.3s ease-in-out;
}

.thumbs-mini {
	transform: scale(1);
	transition: all 0.2s ease-in-out;
	box-shadow: 3px 3px 2px #888888;
}
.thumbs-mini:hover {
	transform: scale(1.04);
	transition: all 0.2s ease-in-out;
	box-shadow: 8px 7px 9px #888888;
}

.thumbs-arrow {
	background-color: black;
	width: 30px;
	height: 30px;
	border-radius: 30px;
	opacity: 0.6;
	color: white;
	line-height: 30px;
	font-size: 24px;
	font-family: monospace;
	font-weight: bolder;
	user-select: none;
}

#preview-thumbs {
	position: fixed;
	display: flex;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 1);
	align-items: center;
	text-align: center;
	justify-content: center;
	height: 100vh;
	width: 100%;
	z-index: 9999999;
}

#thumb-loading {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	line-height: 100%;
	background-color: #000;
	background-repeat: no-repeat;
	background-position: center center;
	text-align: center;
	color: #f0f0f0;
	z-index: 10000000;
	opacity: 0.8;
}
