.item {
    display: block;
    padding: 1rem;
    color: #000;
    margin: 15px;
    background: #ffffff;
    border-radius: .75rem;
    border-right: 3px solid #25bce6;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
	height: 91%;
}
.item:hover {
    text-decoration: none;
    box-shadow: 0 0 30px rgba(0,0,0,0.2);
    transform: scale(1.1);
    color: #000;
}
.item h2 {
    font-size: 1.5rem;
    color: #124e8f;
    font-weight: bold;
}
.item p {
    margin-bottom: .25rem;
}
.item p:last-child {
    margin-bottom: 0;
}

.item p > span:first-child {
    font-weight: bold;
}


.item-page p > span:first-child {
    font-weight: bold;
}


#map {
	height: 500px;
}

/**/

.map-categories {
	position: absolute;
	top: 1rem;
	right: 1rem;
	width: 200px;
	background: rgba(255,255,255,0.95);
	z-index: 9999;
	box-shadow: 0 0 30px rgba(0,0,0,0.1);
}
.map-categories > div {
	padding: .25rem;
	border-bottom: 1px solid #ddd;
}
.map-categories label {
	margin: 0;
}

.map-categories-toggle {
	display: none;
}

@media (max-width: 991px) {
	.map-categories {
		display: none;
		margin-top: 30px;
	}
	
	.map-categories-toggle {
		display: block;
		position: absolute;
		top: 1rem;
		right: 1rem;
		z-index: 9999;
		background: #007bff;
		border: 0;
		color: #fff;
		padding: .25rem .5rem 0;
	}
}