body {
    text-align: center;
    margin: 0;
    font-family: sans-serif;
    background-color: lightgray;
}

tbody,
tfoot,
thead,
tr,
th,
td,
table {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

a {
    font-weight: bold;
    color: #ff9024;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

#pageHeader {
    color: white;
    text-align: center;
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: solid 0.15em #ff9024;
    background-color: #2e2e2e;
    padding-top: 1em;
}

.button:hover {
    border: 0.1em solid #ff9024;
    color: #ff9024;
    background-color: white;
}

.button {
    cursor: pointer;
    display: inline-block;
    background-color: #ff9024;
    color: white;
    padding: 0.6em 1.2em;
    margin: 1em;
    font-size: 0.9em;
    font-weight: bold;
    border-radius: 0.5em;
    width: 170px;
    border: 0.1em solid #ff9024;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
}

.button .fa {
    margin-right: 0.2em;
}

.selected {
    background-color: white;
    color: #ff9024;
}

.hex {
    cursor: pointer;
}

#pageWrapper {
    max-width: 800px;
    margin: auto;
}

.hex {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    transform-origin: center;
}

.zooming {
    transform: scale(10);
    -webkit-transform: scale(10);
    z-index: 1000;
}

#hexmapsWrapper {
    position: relative;
}

.hexmapHolder {
    opacity: 0;
    width: 100%;
    position: absolute;
    transform-origin: center;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}



.hexinner {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.hexmapMain {
    transform-origin: center;
    margin: auto;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
}

.hexmapVisible {
    transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s;
    opacity: 1;
}

.hexmapInvisible {
    display: none;
}

.hexmapInvisible {
    opacity: 0;
}

@keyframes hexzoomin {
    50% {
        transform: scale(10);
        z-index: 1000;
    }
    100% {
        transform: scale(1);
        z-index: inherit;
    }
}

@-webkit-keyframes hexzoomin {
    50% {
        -webkit-transform: scale(10);
        z-index: 1000;
    }
    100% {
        -webkit-transform: scale(1);
        z-index: inherit;
    }
}

@keyframes hexzoomout {
    33% {
        transform: scale(0);
    }
    66% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

@-webkit-keyframes hexzoomout {
    33% {
        -webkit-transform: scale(0);
    }
    66% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
    }
}

.barChartHolder {
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    color: #2e2e2e;
    width: 100%;
    padding-bottom: 3em;
}

.graphLabel {
    font-size: 1.2em;
    font-weight: bold;
}

.barchart {
    height: 400px;
    margin-top: 1em;
    width: 100%;
}

.barChartHolder {
    margin-top: 2em;
}

.label {
    font-size: 0.75em;
    color: #2e2e2e;
    border-left: 1px solid #2e2e2e;
}

.bar {
    background-color: #2e2e2e !important;
    border-bottom: 1px solid #2e2e2e;
}

.bar:hover {
    background-color: #ff9024 !important;
}

.line {
    color: #2e2e2e;
    font-size: 0.8em;
    opacity: 1 !important;
    margin-left: 0.5em;
}

.balloon {
    background-color: white;
    color: black;
    font-size: 0.8em;
}

.hexcontent {
    transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

.hex:hover .hexcontent {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}