.irsDiv {
    width: 100%;
    position: relative;
    z-index: 1;
}

.irs {
    position: relative;
    display: block;
    z-index: 2;
}

.irs-with-grid {
    height: 60px;
}

.irs-line {
    display: block;
    width: 100%;
    height: 5px;
    background: var(--black-200);
    outline: 0;
    border-radius: 3px;
}

.irs-diapason, .irs-bar {
    display: block;
    width: 100%;
    height: 5px;
    background: var(--primary-color-1);
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}

.irs-slider {
    display: block;
    width: 11px;
    height: 11px;
    position: absolute;
    z-index: 10;
    top: -3px;
    background: var(--primary-color-1);
    border-radius: 100%;
}
.irs-slider:hover{
  cursor: pointer;
}

.irs-slider.from:before {
    position: absolute;
    display: block;
    content: "";
    top: -50%;
    left: -200%;
    width: 300%;
    height: 200%;
    background: rgba(0, 0, 0, 0.0);
}

.irs-slider.to:before {
    position: absolute;
    display: block;
    content: "";
    top: -50%;
    left: 0;
    width: 300%;
    height: 200%;
    background: rgba(0, 0, 0, 0.0);
}

.irs-min, .irs-max {
    color: #999;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    top: -20px;
    padding: 1px 3px;
    background: #e1e4e9;
    border-radius: 4px;
    display: none;
    position: absolute;
    cursor: default;
}

.irs-min {
    left: 0;
}

.irs-max {
    right: 0;
}

.irs-from, .irs-to, .irs-single {
    color: #fff;
    font-size: 10px;
    line-height: 1.333;
    text-shadow: none;
    padding: 1px 5px;
    background: var(--primary-color-1);
    border-radius: 4px;
}

.irs-from, .irs-to, .irs-single {
    position: absolute;
    top: -30px;
    left: 0;
    cursor: default;
    white-space: nowrap;
    display: none;
}

.irs-from:after, .irs-to:after, .irs-single:after {
    position: absolute;
    display: block;
    content: "";
    bottom: -6px;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -3px;
    overflow: hidden;
    border: 3px solid transparent;
    background: var(--primary-color-1);
}

.irs-grid {
    position: absolute;
    display: none;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
}

.irs-with-grid .irs-grid {
    display: block;
}

.irs-grid-pol {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 8px;
    background: #000;
}

.irs-grid-pol.small {
    height: 4px;
}

.irs-grid-pol {
    background: #e1e4e9;
}

.irs-grid-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    white-space: nowrap;
    text-align: center;
    font-size: 9px;
    line-height: 9px;
    color: #999999;
}

.irs-hidden-input {
    display: none;
}