body.ui-normalize .ui-range {
  padding:  18px 0;
  position: relative;
  width:    100%;
}

/* Component: ui-range */
.vue-slider-wrap {
    position: relative;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.vue-slider-wrap.vue-slider-disabled {
    opacity: .5;
    cursor: not-allowed;
}
.vue-slider-wrap.vue-slider-disabled .vue-slider-dot {
    cursor: not-allowed;
}
.vue-slider-wrap .vue-slider {
    position: relative;
    display: block;
    border-radius: 15px;
    background-color: #ccc;
}
.vue-slider-process {
    position: absolute;
    border-radius: 15px;
    background-color: #2d9f6e;
    transition: all 0s;
    z-index: 1;
}
.vue-slider-horizontal .vue-slider-process {
    width:  0;
    height: 100%;
    top:    0;
    left:   0;
}
.vue-slider-vertical .vue-slider-process {
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
}
.vue-slider-horizontal-reverse .vue-slider-process {
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
}
.vue-slider-vertical-reverse .vue-slider-process {
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
}
.vue-slider-dot {
    position: absolute;
    border-radius: 20px;
    width: 12px !important;
    height: 24px !important;
    background-color: #1bbf7a;
    box-shadow: 0 2px 6px -1px rgba(45,159,110,.6);
    transition: all 0s;
    cursor: pointer;
    margin-top: -2px;
    z-index: 3;
}
.vue-slider-horizontal .vue-slider-dot {
    left: 0;
}
.vue-slider-vertical .vue-slider-dot {
    bottom: 0;
}
.vue-slider-horizontal-reverse .vue-slider-dot {
    right: 0;
}
.vue-slider-vertical-reverse .vue-slider-dot {
    top: 0;
}
.vue-slider-dot::after {
    content:     attr(data-rangevalue);
    display:     none;
    font-size:   12px;
    white-space: nowrap;
    position:    absolute;
    color:       #000;
    z-index:     9;
}
.vue-slider-dot.vue-slider-tooltip-top::after  {
    top:       5px;
    left:      50%;
    transform: translate(-50%, calc(-100% - 10px));
}
.vue-slider-dot.vue-slider-tooltip-bottom::after  {
    top:       100%;
    left:      50%;
    transform: translate(-50%, 10px);
}
.vue-slider-dot.vue-slider-tooltip-left::after  {
    top:       50%;
    left:      0;
    transform: translate(calc(-100% - 10px), -50%);
}
.vue-slider-dot.vue-slider-tooltip-right::after  {
    top:       50%;
    left:      100%;
    transform: translate(10px, -50%);
}
.vue-slider-dot.vue-slider-tooltip-from::before {
    content:   'от' !important;
    transform: translate(50%, calc(100% - 10px)) !important;
    font-size: 11px;
    top:       35px !important;
    color:     #989898;
    left:      inherit !important;
}
.vue-slider-dot.vue-slider-tooltip-to::before {
    content:   'до' !important;
    transform: translate(50%, calc(100% - 10px)) !important;
    font-size: 11px;
    top:       35px !important;
    color:     #989898;
    left:      inherit !important;
}
.vue-slider-dot.vue-slider-tooltip-top::before {
    content:   '';
    display:   none;
    position:  absolute;
    top:       -10px;
    left:      50%;
    width:     0;
    height:    0;
    transform: translateX(-50%);
}
.vue-slider-dot.vue-slider-tooltip-bottom::before {
    content: '';
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    width: 0;
    height: 0;
    border-width: 5px;
    border-style: solid;
    border-color: transparent;
    border-bottom-color: #3498db;
    transform: translateX(-50%);
}
.vue-slider-dot.vue-slider-tooltip-left::before  {
    content: '';
    display: none;
    position: absolute;
    top: 50%;
    left: -10px;
    width: 0;
    height: 0;
    border-width: 5px;
    border-style: solid;
    border-color: transparent;
    border-left-color: #3498db;
    transform: translateY(-50%);
}
.vue-slider-dot.vue-slider-tooltip-right::before  {
    content: '';
    display: none;
    position: absolute;
    top: 50%;
    left: 100%;
    width: 0;
    height: 0;
    border-width: 5px;
    border-style: solid;
    border-color: transparent;
    border-right-color: #3498db;
    transform: translateY(-50%);
}
.vue-slider-dot.vue-slider-hover:hover::before, .vue-slider-dot.vue-slider-hover:hover::after {
    display: block;
}
.vue-slider-dot.vue-slider-always::before, .vue-slider-dot.vue-slider-always::after {
    display: block!important;
}
.vue-slider-piecewise {
    list-style: none;
}
.vue-slider-piecewise li {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.16);
    border-radius: 50%;
    z-index: 2;
}
.vue-slider-horizontal .vue-slider-piecewise li {
    top: 0;
}
.vue-slider-vertical .vue-slider-piecewise li {
    left: 0;
}