* {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: 'Lato', Helvetica, sans-serif;
}

body,html {
    width: 100%;
    height: 100%;
}

body {
    background: #ccc;
}

a {
    color: #3498db;
    cursor: pointer;
}
input[type="date"], input[type="submit"] {
    padding: 10px;
    border-radius: 2px;
    font-family: 'Lato', Helvetica, sans-serif;
    font-size: 16px;
}
input[type="submit"] {
    background: rgba(46, 204, 113,1.0);
    color: #fff;
    text-shadow: -1px -1px 0 rgba(39, 174, 96,1.0);
    border-radius: 3px;
    padding: 15px 10px;
}
input[type="submit"]:hover {
    box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, 0.35);
}
input[type="date"] {
    border: 2px #ccc solid;
}

#nlmaps-holder {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 100;
}
.button-holder {
    top: 20px;
    right: 30px;
    position: fixed;
    z-index: 200;
    font-size: 30px;
    line-height: 30px;
    color: #666;
}
.button-holder .button {
    background: #fff;
    padding: 10px;
    width: 50px;
    height: 50px;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
    border-radius: 100%;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 15px;
}
nav {
    background: #f0f0f0;
    position: fixed;
    width: 90%;
    max-width: 600px;
    position: fixed;
    z-index: 150;
    box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.5);
    height: 100%;
    top: 0;
    right: 0;
    opacity: 1;
    padding: 20px;
    box-sizing: border-box;
    font-size: 16px;
    overflow-y: auto;

    -webkit-transition: all 0.35s linear;
    -o-transition: all 0.35s linear;
    -moz-transition: all 0.35s linear;
    -ms-transition: all 0.35s linear;
    -kthtml-transition: all 0.35s linear;
    transition: all 0.35s linear;
}
nav.hidden {
    right: -100%;
    opacity: 0;

    -webkit-transition: all 0.35s linear;
    -o-transition: all 0.35s linear;
    -moz-transition: all 0.35s linear;
    -ms-transition: all 0.35s linear;
    -kthtml-transition: all 0.35s linear;
    transition: all 0.35s linear;
}
nav h1, nav h2, nav p {
    padding: 5px 0;
}
nav h1 {
    font-size: 30px;
    font-weight: 300;
    color: #000;
}
nav h2 {
    font-size: 23px;
    font-weight: 400;
    color: #333;
}
nav .cause-container {
    max-height: 50%;
    overflow-y: auto;
}

.lightbox-background {
    display: none;
    overflow-y: auto;
}
.loading-background, .lightbox-background {
    position: fixed;
    z-index: 300;
    background: rgba(0, 0, 0, 0.75);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.loading-container {
    display: table;
    height: 100%;
    width: 100%;
    text-align: center;
}
.loading-icon {
    display: table-cell;
    vertical-align: middle;
}
.loading-icon img {
    display: inline-block;
    padding: 5px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 100%;
    width: 100px;
    height: auto;
}
.lightbox-container {
    width: 95%;
    max-width: 1600px;
    margin: 35px auto 20px auto;
}
.lightbox {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
    display: none;
    overflow: hidden;
    position: relative;
}
.lightbox .title {
    background: #3498db;
    border-bottom: 2px #2980b9 solid;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
}
.lightbox .title h2 {
    font-size: 25px;
    font-weight: 300;
}
.lightbox .lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
}
.lightbox .lightbox-close span {
    color: #eee;
    font-size: 25px;
}
.lightbox .lightbox-close span:hover {
    color: #e74c3c;
    cursor: pointer;
}
.lightbox p {
    padding: 10px 15px;
    font-size: 16px;
    line-height: 20px;
}

.lightbox .filters {
    background: rgba(236, 240, 241,1.0);
    padding: 10px 15px;
    margin: 5px 0;
}
.lightbox .filters h5 {
    font-size: 18px;
    padding-bottom: 5px;
}
.lightbox .filters .cause-container {
    max-height: 100px;
    overflow-y: auto;
}
.lightbox .filters td {
    vertical-align: top;
    padding: 0 10px;
}

.tooltip {
	display:none;
	position:absolute;
	border:1px solid #333;
	background-color:#161616;
	border-radius:5px;
	padding:10px;
	color:#fff;
    font-size: 14px;
    z-index: 290;
}
.tooltip h4 {
    font-size: 18px;
    padding-bottom: 4px;
}
.tooltip span {
    display: inline-block;
    padding-top: 4px;
    font-size: 12px;
    font-style: italic;
}

.graphTable, .lightbox .filters table {
    border: 0;
    width: 100%;
    border-collapse: collapse;
    box-sizing: border-box;
}
.graphTable td {
    width: 50%;
    text-align: center;
    padding: 10px 15px 15px 15px;
    box-sizing: border-box;
}