html, body {
        height: 100%;
        margin: 0;
        padding: 0;
        background-color: black;
}

.desktop-show {
	
}

.tour-container {
	/* border: 1px solid black; */
	color: black;
	height: auto;
	width: 100%;
	padding-top: 70px;
	
	
	
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 10px;
	grid-template-areas: 
    	"header header header"
    	"map map map" 
    	"tourWrap tourWrap tourWrap";
    	
    background-color: black;
}

.header-wrapper {
	grid-area: header;
	width: 100%;
	height: 100px;
	/* border: 1px solid #ddd; */
	
}

#header {
	padding: 5px;
	text-align: center;
	font-size: 40px;
	color: white;
	width: 100%;
	height: 99%;
	
	/* border: 1px red solid; */
}

#tourHeaderImg {
	
}

#header img {	
	max-width: 90%;
	width: auto;
	height: 100%;
}

.map-wrapper {
	border: 1px solid #ddd;
	
	grid-area: map;
	
	width: 100%;
	height: 700px;
	margin: 0px;
	padding: 0px;
	
	align-self: center;
	
	
}

#map {
	height: 100%;
}	



.popup {
	font-size: 20px;
	width: 300px;
	height: 230px;
	/* border: 1px red solid; */
	line-height: 1.5;
	text-align: center;
}



.tour-stop-wrapper {
	grid-area: tourWrap;
	/* border: 1px #ddd solid; */
	width: 100%;
	
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-gap: 15px;
	margin-bottom: 0px;
	padding-bottom: 20px;
	margin-top: -10px;
	padding-top: 20px;
	
	
	background-color: white;
}

.tour-stop-card {
	border: 1px #d8d8d8 solid;
	text-align: center;
	width: 95%;
	min-height: 255px;
	height: auto;
	padding-bottom: 10px;
	
	margin: 0 auto;
	
	border-radius: 8px;
	
	position: relative;
	background-color: white;
	
	display: grid;
	grid-template-columns: repeat(1, 1fr);
	grid-template-areas:
		"title"
		"info"
		"."
		"."
		"."
		"tourButton";
}
.tour-stop-card-selected {
	background-color:rgba(194, 238, 255, 0.25);
}

.tour-title {
	grid-area: title;
	width: 100%;
	height: auto;
	background-color: black;
	color: white;
	font-size: 20px;
	padding-top: 17px; padding-bottom: 7px;
	
	border-top-right-radius: 4px; border-top-left-radius: 4px;
}
.tour-info {
	grid-area: info;
	width: 90%;
	height: auto;
	font-size: 16px;
	padding-top: 10px;
	margin: 0 auto;
	line-height: 1.5;
}
.tour-button {
	grid-area: tourButton;
	background-color: #008CBA; /* blue */
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 4px;
    
    margin-top:10px;
    border: 2px #008CBA solid;
    
    transition-duration: 0.4s;
    
    position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	
	width: 33%;
	margin: 0 auto;
}
.tour-button:hover {
	background-color: white;
	color: #008CBA;
	cursor: pointer;
}








@media screen and (min-width: 700px) {
	.tour-stop-wrapper {
		grid-template-columns: repeat(2, 2fr);
	}
	.tour-stop-card {
		height: 290px;
	}
}

@media screen and (min-width: 1024px) {
	.desktop-hide {
		display: none;
	}
	.tour-stop-wrapper {
		grid-template-columns: repeat(3, 3fr);
	}
	.tour-stop-card {
		width: 90%;
		height: 270px;
	}
	.tour-info {
		width: 95%;
	}
}

@media screen and (max-width: 800px) {
	.tour-container {
		padding-top: 20px;
	}

}

@media screen and (max-width: 1023px) {
	.mobile-hide {
		display: none;
	}
	.tour-container {
		grid-template-areas:
			"header header header"
			"tourWrap tourWrap tourWrap" ;
	}
	.tour-stop-card {
		max-width: 400px;
	}
}





