@font-face {
    font-family: "Avenir";
    src: url("../fonts/avenir-roman-webfont.woff2") format("woff2");
}

#sliderContainer {
    max-width: 960px;
    font-size: 24px;
    line-height: 36px;
    font-weight: bold;
    font-family: 'Avenir', Arial, sans-serif;
    color: #231F20;
}

#totals {
    font-family: 'Avenir', Arial, sans-serif;
    margin-top: -8px
}

#summary {
    font-family: 'Avenir', Arial, sans-serif;
}

#count {
    font-weight: bold;
    color: #009FDA;
}

#acres {
    font-weight: bold;
    color: #009FDA;
}


.label {
    font-family: 'Avenir', Arial, sans-serif;
    font-weight: bold;
    color: #231f20;
}

.closing {
    stroke-width: 0.5px;
    fill: #009FDA;
    stroke: #fff;
    fill-opacity: 0.85;
}

polygon.st0,
path.st0 {
    fill: #ccc;
    stroke: #fff;
    stroke-width: 1px;
    transition: all 1s;
}

.active {
    fill: steelblue;
}

.hover {
    fill: #333333;
    opacity: .8;
    cursor: pointer;
}

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.arrow-holder {
  position: relative;
  height: 50px;
  width: 500px;
}

.arrow {
  float: left;
  margin-right: 15px;
	width: 0; 
	height: 0; 
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
}

.arrow-right {
	border-left: 15px solid #009FDA;
}


@-webkit-keyframes flash {
  0%   { opacity: 1; }
  100% { opacity: 0; }
}

#arrow1 {
  -webkit-animation: flash 2.5s infinite;
}

#arrow2 {
  -webkit-animation: flash 2.5s infinite .5s;
}

#arrow3 {
  -webkit-animation: flash 2.5s infinite 1s;
}

#arrow4 {
  -webkit-animation: flash 2.5s infinite 1.5s;
}

#arrow5 {
  -webkit-animation: flash 2.5s infinite 2s;
}


div.tooltip {
    position: absolute;
    text-align: center;
    padding: 5px;
    font: 12px sans-serif;
    background: snow;
    border: 0px;
    pointer-events: none;
    border: 1px solid #000;
}

.highlight {
    fill: steelblue;
}

rect {
    fill: none;
    pointer-events: all;
}

/*
.text {
    stroke: #333;
    text-anchor: middle;
    font-family: 'Avenir', Arial, sans-serif;
    src: url(../fonts/AvenirNextLTPro-Regular.otf) format("opentype");
    stroke-width: 0.5;
    fill: #333;
    font-size: 14px;
}
*/

input[type=range] {
    width: 100%;
    margin: 13.8px 0;
    background-color: transparent;
    -webkit-appearance: none;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    background: #58595b;
    border: 0.2px solid #010101;
    border-radius: 1.3px;
    width: 100%;
    height: 8.4px;
    cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
    margin-top: -14px;
    width: 16px;
    height: 36px;
    background: #009fda;
    border: 1px solid white;
    border-radius: 3px;
    cursor: pointer;
    -webkit-appearance: none;
}

input[type=range]:focus::-webkit-slider-runnable-track {
    background: #231f20;
}

input[type=range]::-moz-range-track {
    background: #58595b;
    border: 0.2px solid #010101;
    border-radius: 1.3px;
    width: 100%;
    height: 8.4px;
    cursor: pointer;
}

input[type=range]::-moz-range-thumb {
    width: 16px;
    height: 36px;
    background: #009fda;
    border: 1px solid white;
    border-radius: 3px;
    cursor: pointer;
}

input[type=range]::-ms-track {
    background: transparent;
    border-color: transparent;
    border-width: 14.8px 0;
    color: transparent;
    width: 100%;
    height: 8.4px;
    cursor: pointer;
}

input[type=range]::-ms-fill-lower {
    background: #2a6495;
    border: 0.2px solid #010101;
    border-radius: 2.6px;
}

input[type=range]::-ms-fill-upper {
    background: #58595b;
    border: 0.2px solid #010101;
    border-radius: 2.6px;
}

input[type=range]::-ms-thumb {
    width: 16px;
    height: 36px;
    background: #009fda;
    border: 1px solid white;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 0px;
    /*Needed to keep the Edge thumb centred*/
}

input[type=range]:focus::-ms-fill-lower {
    background: #58595b;
}

input[type=range]:focus::-ms-fill-upper {
    background: #231f20;
}

/*TODO: Use one of the selectors from https://stackoverflow.com/a/20541859/7077589 and figure out
how to remove the virtical space around the range input in IE*/

@supports (-ms-ime-align:auto) {
    /* Pre-Chromium Edge only styles, selector taken from hhttps://stackoverflow.com/a/32202953/7077589 */
    input[type=range] {
        margin: 0;
        /*Edge starts the margin from the thumb, not the track as other browsers do*/
    }
}
