.item-img {
	min-width: 100%;
	min-height: 100%;
    max-width: 300px;
	margin: auto;
	display: block;
}
.item-caption {
	background: none repeat scroll 0 0 #dddddd;
	opacity: 0;
	bottom:0;
	left:0;
	top:0;
	right: 0;
	position: absolute;
	text-align: center;
}
.item-caption:hover {
	background: none repeat scroll 0 0 #dddddd;
	opacity: 0.75;
	bottom:0;
	left:0;
	top:0;
	right: 0;
	position: absolute;
	text-align: center;
	-webkit-transition: opacity .3s ease-in;
    -moz-transition: opacity .3s ease-in;
    -o-transition: opacity .3s ease-in;
    -ms-transition: opacity .3s ease-in;
    transition: opacity .3s ease-in;
}
.item-caption-info {
	margin-top:30%;
}
.item-container {
	padding: 0 !important;
	border-radius: 4px;
	height: 300px;
	margin: 15px;
}

body {
	font-family: 'Josefin Sans', sans-serif !important;
}

@media screen and (max-width: 768px) {
    .item-caption {
    	background: none repeat scroll 0 0 #dddddd;
		opacity: 0.75;
		bottom:0;
		left:0;
		top:0;
		right: 0;
		position: absolute;
		text-align: center;
		-webkit-transition: opacity .3s ease-in;
	    -moz-transition: opacity .3s ease-in;
	    -o-transition: opacity .3s ease-in;
	    -ms-transition: opacity .3s ease-in;
	    transition: opacity .3s ease-in;
	}
}

select {
    padding:4px;
    padding-right: 15px !important;
    margin: 0;
    background: #fff;
    color:#888;
    border:none;
    outline:none;
    display: inline-block;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    cursor:pointer;
    width: 150px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

/* Targetting Webkit browsers only. FF will show the dropdown arrow with so much padding. */
@media screen and (-webkit-min-device-pixel-ratio:0) {
    select {padding-right:18px}
}

label {position:relative}
.dropDown:after {
    content:"\f078";   
    font-family: "FontAwesome";
    font-size: 11px;
    color:#aaa;
    right:4px; top:8px;
    padding:0 0 2px;
    position:absolute;
    pointer-events:none;
}
.dropDown:before {
    content:'';
    right:0; top:4px;
    width:23px; height:18px;
    position:absolute;
    pointer-events:none;
    display:block;
}