/* Typo
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Larger than tablet */
@media (min-width: 750px) {
	h1 {
		font-size: 18rem;
	}
}


/* Containers
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.leaflet-popup {
	width: 80vw;
	max-width: 350px;
}
@media (min-width: 750px) {
	.leaflet-popup { max-width: 400px; }
}

.leaflet-popup-close-button {
	margin: 5px 5px 0 0;
}

.leaflet-popup-content-wrapper {
	padding: 10px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	-khtml-border-radius: 3px;
	border-radius: 3px;
	box-shadow: 0 0 7px 1px hsla(0,0%,0%,0.5);
}

.leaflet-popup-content {
	width: 100%;
}

#panel {
	background-color: hsla(0,0%,95%,1);
	box-shadow: 0px 3px 5px #000;
	z-index: 1;
	position: absolute;
	width: 100%;
	max-height:  60%;
	overflow: auto;
	padding: 0;
}


/* Info
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.info {
	max-height: 53vh;
	overflow: auto;
}
.info * {
	margin: 5px 0;
}
.info p.date {
	font-family: 'epocapro', 'Whitney SSm A', 'Whitney SSm B';
	font-size: 1.4em;
	font-weight: 600;
}
.info p.lieu {
	font-family: 'epocapro', 'Whitney SSm A', 'Whitney SSm B';
	font-weight: 400;
	font-style: italic;
}
.info .victimes {
	text-align: center;
	display: block;
	padding-top: 5px;
}
.info .victime {
	display: inline-block;
	margin-right: 10px;
}
.info .victime img {
	padding: 10px!important;
	background-color: #fff!important;
	box-shadow: 0px 1px 1px #aaa!important;
	width: 160px;
}
.info .victime p {
	text-align: center;
	font-family: 'epocapro', 'Whitney SSm A', 'Whitney SSm B';
	font-size: 1.1em;
	font-weight: 600;
	line-height: 1.3em;
	margin-bottom: 0;
}
.info p.description {
	font-size: 1.5em;
	font-weight: 300;
	margin: 10px 0;
}


/* Map
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#map {
	height: 100vh;
	obackground-color: yellow;
}
@media (min-width: 550px) {
	#map { max-height: 480px; }
}
@media (min-width: 1200px) {
	#map { max-height: 550px; }
}

.popup-trigger {
	fill: yellow;
	fill-opacity: 0;
}
.disc {
	fill: #CC333F;
	fill-opacity: 0.8;
	stroke: #000;
	stroke-width: 5px;
	stroke-opacity: 1;
}
.disc.selected {
	stroke: #FFF;
	stroke-width: 7px;
}
text {
	fill: #FFF;
	font-family: 'epocapro', 'Whitney SSm A', 'Whitney SSm B';
	font-weight: 600;
	font-size: 1em;
	line-height: 1.4em;
	margin: 0;
}



/* Debug
–––––––––––––––––––––––––––––––––––––––––––––––––– */
#debug {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	background-color: hsla(0,0%,0%,0.2);
	color:  #fff;
	z-index: 9999;
}


/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries 
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons secion and style it 
there. 
*/


/* Larger than mobile */
@media (min-width: 400px) {}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {}

/* Larger than tablet */
@media (min-width: 750px) {
}

/* Larger than desktop */
@media (min-width: 1000px) {}

/* Larger than Desktop HD */
@media (min-width: 1200px) {}
