svg { max-height: 100%; }
.travel-map {
	margin-top: 25px;
	font-family: 'Montserrat', sans-serif;
}
.travel-map .alert {
	text-align: center;
	font-size: 24px;
}
.travel-map h1 {
    font-size: 35px;
    margin-bottom: 5px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}
.travel-map h2 {
    font-size: 24px;
	color: #222;
    font-weight: normal;
    text-align: center;
	font-family: 'Arvo', serif;
}
.travel-map button {
	width: auto;
	display: inline-block;
	border: none;
	margin-left: 4px;

}
.travel-map input[type="text"] {
	font-size: 16px;
	vertical-align: top;
	font-family: 'Open Sans', sans-serif;
	padding: 4px 12px;
}
.build-map {
	text-align: center;
}
.places-list ul {
    margin: 10px 0;
    padding: 0;
}
.places-list li {
    list-style: none;
    float: left;
    width: 100%;
    margin: 8px 0;
    cursor: pointer;
    position: relative;
}
.places-list label {
    cursor: pointer;
	word-break: normal;
	margin-bottom: 0;
	font-weight: normal;
}
.tooltip {
	display: none;
	position: absolute;
	color: #fff;
	background: #333;
	border-radius: 3px;
	font-size: 18px;
	font-weight: bold;
	padding: 2px 6px;
}
.tooltip.active {
	display: block;
}
.nav > li {
	width: 100%;	
}
.nav > li.active a,
.nav > li.active a:focus {
	border: solid 1px #eee!important;
	background: #f4f4f4;
}

.cta-text {
	font: 700 40px/1 "Open Sans Condensed",sans-serif !important;
	text-align: center!important;
}

@media (min-width: 480px) {
    .places-list li {
        margin: 8px 0.5%;
        width: 49%;
    }
	.travel-map h1 {
		font-size: 48px;
	}
	.nav > li {
		width: auto;	
	}
}
@media (min-width: 768px) {
    .places-list li {
        margin: 8px 1.0%;
        width: 31%;
    }
}
@media (min-width: 992px) {
    .places-list li {
        width: 23%;
    }
}
.places-list li a {
    text-transform: uppercase;
    color: #ccc;
    font-size: 12px;
}

/* General styles for the modal */

/* 
Styles for the html/body for special modal where we want 3d effects
Note that we need a travel-map wrapping all content on the page for the 
perspective effects (not including the modals and the overlay).
*/
.md-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	width: auto;
	max-width: 630px;
	min-width: 320px;
	height: auto;
	z-index: 2000;
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateX(-50%) translateY(-50%);
	-moz-transform: translateX(-50%) translateY(-50%);
	-ms-transform: translateX(-50%) translateY(-50%);
	transform: translateX(-50%) translateY(-50%);
}

.md-show {
	visibility: visible;
    overflow-y: scroll;
}
@media screen and (max-height: 720px) {
	.md-show {
		height: 100%;
	}
}

.md-close {
	position: absolute;
	top: 5px;
	right: 15px;
	cursor: pointer;
	font-size: 48px;
	font-weight: bold;
	color: #fff;
	z-index: 100;
}

.md-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 1000;
	opacity: 0;
	background: rgba(143,27,15,0.8);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.md-show ~ .md-overlay {
	opacity: 1;
	visibility: visible;
}

/* Content styles */
.md-content {
	color: #fff;
	background: #e74c3c;
	position: relative;
	border-radius: 3px;
	margin: 0 auto;
}

.md-content h3 {
	margin: 0;
	padding: 0.4em;
	text-align: center;
	font-size: 2.4em;
	font-weight: 300;
	opacity: 0.8;
	background: rgba(0,0,0,0.1);
	border-radius: 3px 3px 0 0;

}

.md-content > div {
	padding: 15px 40px 30px;
	margin: 0;
	font-weight: 300;
	font-size: 1.15em;
}
@media screen and (max-width: 480px) {
	.md-content h3 {
		font-size: 2.0;
	}
	.md-content > div {
		font-size: 1em;
	}
	.md-close {
		top: 0;
	}
}


.md-content > div p {
	margin: 0;
	padding: 10px 0;
	text-align: center;
}
.md-content label {
	font-weight: normal;
	font-size: 12px;
	width: 90%;
}
.md-content a {
	color: #fff;
	font-weight: bold;
}
.md-content small {
	font-size: 9px;
}

.md-content label, .md-content input {
    display: inline-block;
    vertical-align: middle!important;
}
.md-content input {
	color: #000;
	vertical-align: middle;
}
.md-content input[type="checkbox"] {
	width: 18px;
	height: 18px;
	vertical-align: top!important;
	float: left;
}
.md-content button {
	display: block;
	margin: 0 auto;
	font-size: 24px;
}

/* Individual modal styles with animations/transitions */

/* Effect 3: Slide from the bottom */
.md-effect-3 .md-content {
	-webkit-transform: translateY(20%);
	-moz-transform: translateY(20%);
	-ms-transform: translateY(20%);
	transform: translateY(20%);
	opacity: 0;
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.md-show.md-effect-3 .md-content {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}
