﻿/*input range*/
input[type='range'] {
    width: 210px;
    cursor: pointer;
    outline: none;
}

    input[type='range'],
    input[type='range']::-webkit-slider-runnable-track,
    input[type='range']::-webkit-slider-thumb {
        -webkit-appearance: none;
        background: none;
    }

        input[type='range']::-webkit-slider-runnable-track {
            width: 200px;
            height: 1px;
            background: #003D7C;
        }

        input[type='range']:nth-child(2)::-webkit-slider-runnable-track {
            background: none;
        }

        input[type='range']::-webkit-slider-thumb {
            position: relative;
            height: 15px;
            width: 15px;
            margin-top: -7px;
            background: #fff;
            border: 1px solid #003D7C;
            border-radius: 25px;
            z-index: 1;
        }

        input[type='range']:nth-child(1)::-webkit-slider-thumb {
            z-index: 2;
        }

.rangeslider input {
    position: absolute;
}

.rangeslider .right {
    float: right;
    margin-right: 30px;
}

.rangeslider span {
    left: 0;
}
/*Tree*/
.jstree-icon.jstree-themeicon {
    display: none;
}
/*.dropdown-menu {
  position: inherit !important;
  transform: none !important;
  top: inherit;
  left: inherit;
}*/
