/* Extra small devices (portrait phones, less than 576px) */
@media screen and (max-width: 575px) { 

}

/* Small devices (landscape phones, 576px and up) */
@media screen and (min-width: 576px) and (max-width: 767px) { 

}

/* Medium devices (tablets, 768px and up) */
@media screen and (min-width: 768px) and (max-width: 991px) { 

}

/* Large devices (desktops, 992px and up) */
@media screen and (min-width: 992px) and (max-width: 1199px) { 

}

/* Extra large devices (large desktops, 1200px and up) */
@media screen and (min-width: 1200px) and (max-width: 1920px) { 

}

/* Extra large devices (large desktops, 1200px and up) */
@media screen and (min-width: 1921px) and (max-width: 2559px) { 

}

/* Hi Res devices */
@media screen and (min-width: 2560px) {

}

.hover-item {
	align-items: center;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	justify-content: center;
	position: relative;
	width: 250px;
}

.hover-item .hover-item-details.fade-in {
	height: 100%;
	opacity: 0.9;
	transition: opacity 400ms, height 200ms;
}

.hover-item .hover-item-details.fade-out {
	height: 0%;
	opacity: 0;
	transition: opacity 200ms, height 400ms;
}

.hover-item .hover-item-details {
	align-items: center;
	background-color: #222;
	box-sizing: border-box;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	-webkit-flex-direction: column;
	flex-direction: column;
	height: 0%;
	left: 0;
	justify-content: center;
	padding: 0 20px;
	position: absolute;
	opacity: 0;
	width: 100%;
}

.hover-item .hover-item-details a,
.hover-item .hover-item-details p {
	color: #fff;
	cursor: pointer;
	font-size: 1.2em;
	line-height: 1em;
}

.hover-item .hover-item-details p {
	text-align: left;
	margin: 0;
}