/* =============== */
/* = Input Title = */
/* =============== */
input.form-control.input-title {
	height: auto;
	margin-bottom: 25px;
	font-weight: bold;
	text-align: center;
	border: 0px;
	font-size: 1.5em;
	background-color: transparent;
}

input.input-text {
	height: auto;
	font-weight: bold;
	border: 0px;
	background-color: transparent;
}

/* ======================= */
/* = Image PDF Container = */
/* ======================= */
.image-container {
	position: relative;
	width: 100%;
	height: 160px;
	overflow: hidden;
	background-color: #434446;
	background-image: url("https://www.transparenttextures.com/patterns/az-subtle.png");
}

.image-container .image {
	opacity: 1;
	display: block;
	width: 100%;
	height: auto;
	transition: 0.5s ease;
	backface-visibility: hidden;
	background-color: white;
}

.image-container .middle {
	transition: 0.5s ease;
	position: absolute;
	top: 80%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: center;
}

.image-container .middle-hide {
	opacity: 0;
}

.image-container:hover .image {
	opacity: 0.5;
}

.image-container:hover {
	// background-color: #000;
}

.image-container:hover .middle-hide {
	opacity: 1;
}

.image-container .button {
	background-color: rgba(50, 50, 50, 0.75);
	border: #fff solid;
	border-radius: 15px;
	color: #fff;
	font-size: 16px;
	padding: 5px 30px;
}
.image-container .button:hover {
	background-color: rgba(58, 58, 58, 0.5);
}
