.hospitals-map {
	background-color: white;
	display: none;
	float: left;
	height: 400px;
	width: 100%;
}

@media (min-width: 768px) {
	.hospitals-map {
		height: 500px;
	}
}

@media (min-width: 1024px) {
	.hospitals-map {
		height: 600px;
	}
}

@media (min-width: 1200px) {
	.hospitals-map { 
		height: 700px; 
	}
}

.hospital-inner {
	padding: 10px;
}

.hospital-title {
	color: #E11C17;
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.hospital-label {
	background-color: #E11C17;
	border-radius: 4px;
	color: #fff;
	display: inline-block;
	font-size: 10px;
	left: 50%;
	margin-left: auto !important;
	margin-top: 8px;
	padding: 5px 10px;
	position: absolute;
	text-align: center;
	transform: translateX(-50%);
	white-space: nowrap;
	width: auto;
}

.hospital-inner .hospital-case {
	display: none;
}

.hospital-case {
	background-color: rgba(0, 0, 0, 0.5);
	bottom: 0;
	height: 100%;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 100000;
}

.hospital-case-inner {
	background-color: white;
	left: 50%;
	max-width: 640px;
	position: absolute;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	width: calc(100% - 40px);
}

.hospital-case-inner-inner {
	height: 75vh;
	overflow: scroll;
	padding: 20px;
	width: 100%;
}

@media (min-width: 1024px) { 
	.hospital-case-inner-inner {
		height: auto;
		max-height: 75vh;
	} 
}

.hospital-case-title {
	font-weight: 700;
	color: #802a43;
	font-size: 20px;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.hospital-case-quote-wrap {
	float: left;
	width: 100%;
}

@media (min-width: 768px) {
	.hospital-case-quote-wrap {
		width: calc(100% - 120px);
	}
}

.hospital-case-text {
	float: left;
	width: 100%;
	font-size: 14px;
	line-height: 24px;
}

.hospital-case-text strong {
	color: #323f4b;
	display: block;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 10px;
	text-transform: uppercase;
}

.hospital-case-text-inner { 
	float: left;
	width: 100%;
}

.hospital-case-close {
	background-color: #008fc5;
	border-radius: 100%;
	color: white;
	cursor: pointer;
	font-size: 30px;
	font-weight: 700;
	height: 30px;
	line-height: 28px;
	position: absolute;
	right: -15px;
	text-align: center;
	text-decoration: none;
	top: -15px;
	transition: all 0.25s ease-in-out;
	width: 30px;
}

.hospital-case-close:hover {
	background-color: #802a43;
}