﻿
.filterTable {
    display: table;
    width: 100%;
}

.chartheader {
    text-align: center;
    display: block;
    margin-top: 10px;
}

.divTable {
    display: table;
    width: 100%;
    height: 50%;
    margin-bottom: 20px;
}

.divTableRow {
    padding: 2px;
}

.divTableCell {
    border: 0px solid #999999;
    display: table-cell;
    /*padding: 3px 10px;*/
    width: 45%;
}

.divSliderCell {
    border: 0px solid #999999;
    display: table-cell;
}

.linkedmapbtn {
    width: 70%;
    height: 48px;
    border: 0px;
    /*padding: 5px;*/
    border-radius: 0.25rem;
    color: #ffffff;
    font: normal normal 600 17px/23px Nunito;
}

.pov {
    background-color: #eb8430;
}

.slider-header {
    /* Layout Properties */
    width: 100%;
    padding-top: 7px;
    padding-bottom: 7px; 
    /* UI Properties */
    text-align: center;
    font: normal normal 600 13px/18px Nunito;
    letter-spacing: 0px;
    color: #ffffff;
    opacity: 1;
    white-space: normal;
    border-radius:5px;
}

.pov-slider-body {
    /*background-color: #cef5ef;*/
}

.ckd {
    background-color: #226491;
}

.ckd-slider-body {
    /*background-color: #efcdf7;*/
}
/* SLIDER BEGIN  */

.linkedmapwrapper {
    position: relative;
    background-color: #ffffff;
    padding: 5px 10px 5px 10px;
    border-radius: 10px;
}

.linkedmapcontainer {
    position: relative;
    width: 100%;
    height: 60px;
}

.linkedmapvalues {
    width: 100%;
    position: relative;
    margin: auto;
    border-radius: 5px;
    text-align: center;
    font-weight: 500;
    font-size: 12px;
}

.rangeMin {
    float: left;
    /*width: 10%;*/
    font: normal normal 600 13px/17px Nunito;
}

.rangeMax {
    float: right;
    /*width: 10%;*/
    font: normal normal 600 13px/17px Nunito;
}


input[type="range"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 99%;
    outline: none;
    position: absolute;
    margin-left: -7%;
    top: 0;
    bottom: 0;
    background-color: transparent;
    pointer-events: none;
}

.slider-track {
    width: 97%;
    height: 2px;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 2%;
    border-radius: 5px;
}

input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    height: 4px;
}

input[type="range"]::-moz-range-track {
    -moz-appearance: none;
    height: 4px;
}

input[type="range"]::-ms-track {
    appearance: none;
    height: 4px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 1.1em;
    width: 1.1em;
    background-color: #ffffff;
    border: 1px solid #000000;
    cursor: pointer;
    margin-top: -9px;
    pointer-events: auto;
    border-radius: 50%;
}

input[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    height: 1.1em;
    width: 1.1em;
    cursor: pointer;
    border-radius: 50%;
    background-color: #3264fe;
    pointer-events: auto;
    border: none;
}

input[type="range"]::-ms-thumb {
    appearance: none;
    height: 1.1em;
    width: 1.1em;
    cursor: pointer;
    border-radius: 50%;
    background-color: #3264fe;
    pointer-events: auto;
}

input[type="range"]:active::-webkit-slider-thumb {
    background-color: #ffffff;
    border: 1px solid #3264fe;
}