body {
}


/* Data result styles */
td {
    margin-left: 10px;
    padding-left: 10px;
}

.result {
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 100%;
    margin-top: 1px;
}

    .result td.number {
        text-align: right;
    }
    .result td, #inputdata th {
        border: 1px solid #ddd;
        padding: 8px;
    }

    .result tr:nth-child(even) {
        background-color: #f2f2f2;
    }

    .result tr:hover {
        background-color: #ddd;
    }

    .result tr.graphrow {
        background-color: #ffffff;
    }

    .result th {
        padding-top: 12px;
        padding-bottom: 12px;
        text-align: center;
        background-color: #4C50AF;
        color: white;
    }

/* spinner */
.spinner {
    margin: 1em auto;
    width: 70px;
    text-align: center;
}

    .spinner > div {
        width: 18px;
        height: 18px;
        background-color: #fff;
        border-radius: 100%;
        display: inline-block;
        -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
        animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    }

    .spinner .bounce1 {
        -webkit-animation-delay: -0.32s;
        animation-delay: -0.32s;
    }

    .spinner .bounce2 {
        -webkit-animation-delay: -0.16s;
        animation-delay: -0.16s;
    }

/* graph styles */
.datachart {
    width: 100%;
}

    .datachart .vtc {
        height: 250px;
        font-size: 12px;
    }

    .datachart .labels {
        stroke: rgba(0, 0, 0, 0.05);
    }

    .datachart .active-line {
        stroke: rgba(0, 0, 0, 0.2);
    }

    .datachart .point {
        stroke-width: 2;
        transition: stroke-width 0.2s;
    }

        .datachart .point.is-active {
            stroke-width: 5;
        }

    .datachart .curve1 .stroke {
        stroke: #fbac91;
        stroke-width: 2;
    }

    .datachart .curve1 .fill {
        fill: #fbac91;
        opacity: 0.05;
    }

    .datachart .curve1 .point {
        fill: #fbac91;
        stroke: #fbac91;
    }

    .datachart .curve2 .stroke {
        stroke: #fbe1b6;
        stroke-width: 2;
    }

    .datachart .curve2 .point {
        fill: #fbe1b6;
        stroke: #fbe1b6;
    }

    .datachart .curve3 .stroke {
        stroke: #7fdfd4;
        stroke-width: 2;
    }

    .datachart .curve3 .point {
        fill: #7fdfd4;
        stroke: #7fdfd4;
    }

    .datachart .tooltip {
        padding: 10px;
        background: #fff;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        pointer-events: none;
    }

        .datachart .tooltip:not(.is-active) {
            display: none;
        }

    .datachart .tooltip-data {
        display: flex;
    }

    .datachart .tooltip-data-item {
        display: flex;
        align-items: center;
    }

        .datachart .tooltip-data-item:not(:first-child) {
            margin-left: 20px;
        }

        .datachart .tooltip-data-item:before {
            content: "";
            display: block;
            width: 15px;
            height: 15px;
            margin-right: 5px;
        }

    .datachart .tooltip-data-item--1:before {
        background: #fbac91;
    }

    .datachart .tooltip-data-item--2:before {
        background: #fbe1b6;
    }

    .datachart .tooltip-data-item--3:before {
        background: #7fdfd4;
    }

/* map styles (extends leaflet */

#map {
    width: 960px;
    height: 500px;
    margin-bottom: 50px;
}

#infoShadow {
    background-color: black;
    position: absolute;
    top: 5px;
    left: 5px;
    width: 250px;
    height: 500px;
    border: solid 1px black;
    display: none;
    opacity: 0.1;
}

#extraInfo {
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 250px;
    height: 500px;
    border: solid 1px black;
    display: none;
}

#closeDiv {
    width: 60px;
    height: 20px;
    float: right;
    border: solid 1px black;
    cursor: pointer;
}

#contactDetails {
    width: 250px;
    height: 480px;
    overflow: scroll;
}

path {
    stroke: #000000ff;
    stroke-width: 1px;
}

    path:hover {
        fill-opacity: 0.1;
    }

.popupheader {
    /* font-size: 14px; */
}

.contacts {
    background-color: white;
    border: 2px solid #ccc
}

#mapTopRight {
    font-size: 18px;
}
.mappopup {
    font-weight: normal;
}

.fade-enter-active, .fade-leave-active {
    transition: opacity 3s;
}

.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
    opacity: 0;
}

.bounce-enter-active {
    animation: bounce-in .5s;
}

.bounce-leave-active {
    animation: bounce-in .5s reverse;
}

@@keyframes bounce-in {
     0% {
         transform: scale(0);
     }

     50% {
         transform: scale(1.5);
     }

     100% {
         transform: scale(1);
     }
 }

#map {
    width: 960px;
    height: 500px;
    margin-bottom: 50px;
}