.uk-range {
    width: 120px;
    min-width: 120px;
}

.uk-switch {
    position: relative;
    display: inline-block;
    height: 34px;
    width: 60px;
    min-width: 60px;
}

/* Hide default HTML checkbox */
.uk-switch input {
    display:none;
}
/* Slider */
.uk-switch-slider {
    background-color: rgba(0,0,0,0.22);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 500px;
    bottom: 0;
    cursor: pointer;
    transition-property: background-color;
    transition-duration: .2s;
    box-shadow: inset 0 0 2px rgba(0,0,0,0.07);
}
/* Switch pointer */
.uk-switch-slider:before {
    content: '';
    background-color: #fff;
    position: absolute;
    width: 30px;
    height: 30px;
    left: 2px;
    bottom: 2px;
    border-radius: 50%;
    transition-property: transform, box-shadow;
    transition-duration: .2s;
}
/* Slider active color */
input:checked + .uk-switch-slider {
    background-color: #39f !important;
}
/* Pointer active animation */
input:checked + .uk-switch-slider:before {
    transform: translateX(26px);
}

/* Modifiers */
.uk-switch-slider.uk-switch-on-off {
    background-color: #f0506e;
}
input:checked + .uk-switch-slider.uk-switch-on-off {
    background-color: #32d296 !important;
}

/* Style Modifier */
.uk-switch-slider.uk-switch-big:before {
    transform: scale(1.2);
    box-shadow: 0 0 6px rgba(0,0,0,0.22);
}
.uk-switch-slider.uk-switch-small:before {
    box-shadow: 0 0 6px rgba(0,0,0,0.22);
}
input:checked + .uk-switch-slider.uk-switch-big:before {
    transform: translateX(26px) scale(1.2);
}

/* Inverse Modifier - affects only default */
.uk-light .uk-switch-slider:not(.uk-switch-on-off) {
    background-color: rgba(255,255,255,0.22);
}

.map, .chart {
    stroke: #f8f8f8;
    stroke-width: 1px;
    stroke-linejoin: round;
}

.muted {
    color: #fff;
    fill: #666;
}

#barChartDiv {
    overflow-y: scroll;
}

#lineChart {
    overflow-x: scroll;
    direction: rtl;
}

#lineChartChildDiv {
    direction: rtl;
}

#lineChartSVG {
    direction: ltr;
}

/*#lineChartParentDiv {*/
/*    width: 5800px;*/
/*}*/

/*#lineChartXAxis {*/
/*    position: absolute;*/
/*    cursor: default;*/
/*}*/

/*#lineChartDiv {*/
/*    direction: rtl;*/
/*}*/