@charset "UTF-8";

.irs {
    --cnvs-range-slider-top:25px;
    --cnvs-range-slider-bottom:16px;
    --cnvs-range-slider-line_height:12px;
    --cnvs-range-slider-handle_width:16px;
    --cnvs-range-slider-handle_height:18px;
    --cnvs-range-slider-custom_radius:4px;
    --cnvs-range-slider-line_color:var(--cnvs-contrast-200);
    --cnvs-range-slider-bar_color:var(--cnvs-themecolor);
    --cnvs-range-slider-handle_color_1:var(--cnvs-range-slider-bar_color);
    --cnvs-range-slider-handle_color_2:var(--cnvs-contrast-500);
    --cnvs-range-slider-minmax_text_color:var(--cnvs-contrast-600);
    --cnvs-range-slider-minmax_bg_color:var(--cnvs-range-slider-line_color);
    --cnvs-range-slider-label_color_1:var(--cnvs-range-slider-bar_color);
    --cnvs-range-slider-label_color_2:white;
    --cnvs-range-slider-grid_color_1:var(--cnvs-range-slider-line_color);
    --cnvs-range-slider-grid_color_2:var(--cnvs-range-slider-minmax_text_color);
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    display: block;
    font-family: Arial, sans-serif;
    font-size: 12px;
    position: relative;
    user-select: none;
}

.irs-line {
    display: block;
    outline: 0 !important;
    overflow: hidden;
    position: relative;
}

.irs-bar {
    display: block;
    left: 0;
    position: absolute;
    width: 0
}

.irs-shadow {
    display: none;
    left: 0;
    position: absolute;
    width: 0
}

.irs-handle {
    box-sizing: border-box;
    cursor: default;
    display: block;
    position: absolute;
    z-index: 1
}

.irs-handle.type_last { z-index: 2 }

.irs-max, .irs-min {
    cursor: default;
    display: block;
    position: absolute;
}

.irs-min { left: 0 }

.irs-max { right: 0 }

.irs-from, .irs-single, .irs-to {
    cursor: default;
    display: block;
    left: 0;
    position: absolute;
    top: 0;
    white-space: nowrap
}

.irs-grid {
    bottom: 0;
    display: none;
    height: 20px;
    left: 0;
    position: absolute;
    width: 100%;
}

.irs-with-grid .irs-grid { display: block }

.irs-grid-pol {
    background: #000;
    height: 8px;
    left: 0;
    position: absolute;
    top: 0;
    width: 1px;
}

.irs-grid-pol.small { height: 4px }

.irs-grid-text {
    bottom: 0;
    color: #000;
    font-size: 9px;
    left: 0;
    line-height: 9px;
    padding: 0 3px;
    position: absolute;
    text-align: center;
    white-space: nowrap;
}

.irs-disable-mask {
    background: rgba(0, 0, 0, 0);
    cursor: default;
    display: block;
    height: 100%;
    left: -1%;
    position: absolute;
    top: 0;
    width: 102%;
    z-index: 2
}

.lt-ie9 .irs-disable-mask {
    background: #000;
    cursor: not-allowed
}

.irs-disabled { opacity: .4 }

.irs-hidden-input {
    background: 0 0 !important;
    border-color: transparent !important;
    border-style: solid !important;
    display: block !important;
    font-size: 0 !important;
    height: 0 !important;
    left: 0 !important;
    line-height: 0 !important;
    margin: 0 !important;
    outline: 0 !important;
    overflow: hidden;
    padding: 0 !important;
    position: absolute !important;
    top: 0 !important;
    width: 0 !important;
    z-index: -9999 !important;
}

.irs--flat { height: 40px }

.irs--flat.irs-with-grid { height: 60px }

.irs--flat .irs-line {
    background-color: var(--cnvs-range-slider-line_color);
    border-radius: var(--cnvs-range-slider-custom_radius);
    height: var(--cnvs-range-slider-line_height);
    top: var(--cnvs-range-slider-top);
}

.irs--flat .irs-bar {
    background-color: var(--cnvs-range-slider-bar_color);
    height: var(--cnvs-range-slider-line_height);
    top: var(--cnvs-range-slider-top);
}

.irs--flat .irs-bar--single { border-radius: var(--cnvs-range-slider-custom_radius) 0 0 var(--cnvs-range-slider-custom_radius) }

.irs--flat .irs-shadow {
    background-color: var(--cnvs-range-slider-line_color);
    bottom: var(--cnvs-range-slider-bottom);
    height: 1px;
}

.irs--flat .irs-handle {
    background-color: transparent;
    height: var(--cnvs-range-slider-handle_height);
    top: 22px;
    width: var(--cnvs-range-slider-handle_width);
}

.irs--flat .irs-handle > i:first-child {
    background-color: var(--cnvs-range-slider-handle_color_1);
    display: block;
    height: 100%;
    left: 50%;
    margin-left: -1px;
    position: absolute;
    top: 0;
    width: 2px;
}

.irs--flat .irs-handle.state_hover > i:first-child, .irs--flat .irs-handle:hover > i:first-child { background-color: var(--cnvs-range-slider-handle_color_2) }

.irs--flat .irs-max, .irs--flat .irs-min {
    background-color: var(--cnvs-range-slider-minmax_bg_color);
    border-radius: var(--cnvs-range-slider-custom_radius);
    color: var(--cnvs-range-slider-minmax_text_color);
    font-size: 10px;
    line-height: 1.333;
    padding: 1px 3px;
    text-shadow: none;
    top: 0;
}

.irs--flat .irs-from, .irs--flat .irs-single, .irs--flat .irs-to {
    background-color: var(--cnvs-range-slider-label_color_1);
    border-radius: var(--cnvs-range-slider-custom_radius);
    color: var(--cnvs-range-slider-label_color_2);
    font-size: 10px;
    line-height: 1.333;
    padding: 1px 5px;
    text-shadow: none;
}

.irs--flat .irs-from:before, .irs--flat .irs-single:before, .irs--flat .irs-to:before {
    border: 3px solid transparent;
    border-top-color: var(--cnvs-range-slider-label_color_1);
    bottom: -6px;
    content: "";
    display: block;
    height: 0;
    left: 50%;
    margin-left: -3px;
    overflow: hidden;
    position: absolute;
    width: 0;
}

.irs--flat .irs-grid-pol { background-color: var(--cnvs-range-slider-grid_color_1) }

.irs--flat .irs-grid-text { color: var(--cnvs-range-slider-grid_color_2) }

.irs--big { height: 55px }

.irs--big.irs-with-grid { height: 70px }

.irs--big .irs-line {
    background: linear-gradient(to bottom, #ddd - 50%, #fff 150%);
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 12px;
    height: 12px;
    top: 33px;
}

.irs--big .irs-bar {
    background: linear-gradient(to bottom, #fff 0, #428bca 30%, #b9d4ec 100%);
    background-color: #92bce0;
    border: 1px solid #428bca;
    box-shadow: inset 0 0 1px 1px rgba(255, 255, 255, .5);
    height: 12px;
    top: 33px;
}

.irs--big .irs-bar--single { border-radius: 12px 0 0 12px }

.irs--big .irs-shadow {
    background-color: rgba(66, 139, 202, .5);
    bottom: 16px;
    height: 1px;
}

.irs--big .irs-handle {
    background: linear-gradient(to bottom, #fff 0, #b4b9be 30%, #fff 100%);
    background-color: #cbcfd5;
    border: 1px solid rgba(0, 0, 0, .3);
    border-radius: 30px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, .2), inset 0 0 3px 1px #fff;
    height: 30px;
    top: 25px;
    width: 30px;
}

.irs--big .irs-handle.state_hover, .irs--big .irs-handle:hover {
    background: linear-gradient(to bottom, #fff 0, #919ba5 30%, #fff 100%);
    background-color: #939ba7;
    border-color: rgba(0, 0, 0, .45);
}

.irs--big .irs-max, .irs--big .irs-min {
    background-color: #9f9f9f;
    border-radius: 3px;
    color: #fff;
    padding: 1px 5px;
    text-shadow: none;
    top: 0;
}

.irs--big .irs-from, .irs--big .irs-single, .irs--big .irs-to {
    background: linear-gradient(to bottom, #428bca 0, #3071a9 100%);
    background-color: #428bca;
    border-radius: 3px;
    color: #fff;
    padding: 1px 5px;
    text-shadow: none;
}

.irs--big .irs-grid-pol { background-color: #428bca }

.irs--big .irs-grid-text { color: #428bca }

.irs--modern { height: 55px }

.irs--modern.irs-with-grid { height: 55px }

.irs--modern .irs-line {
    background: linear-gradient(to bottom, #e0e4ea 0, #d1d6e0 100%);
    background-color: #d1d6e0;
    border: 1px solid #a3adc1;
    border-bottom-width: 0;
    border-radius: 5px;
    height: 5px;
    top: 25px;
}

.irs--modern .irs-bar {
    background: #20b426;
    background: linear-gradient(to bottom, #20b426 0, #18891d 100%);
    height: 5px;
    top: 25px;
}

.irs--modern .irs-bar--single { border-radius: 5px 0 0 5px }

.irs--modern .irs-shadow {
    background-color: rgba(209, 214, 224, .5);
    bottom: 21px;
    height: 1px;
}

.irs--modern .irs-handle {
    border: 1px solid #a3adc1;
    border-radius: 0 0 3px 3px;
    border-top-width: 0;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, .1);
    height: 13px;
    top: 37px;
    width: 12px;
}

.irs--modern .irs-handle > i:nth-child(1) {
    background: #fff;
    border: 1px solid #a3adc1;
    display: block;
    height: 6px;
    left: 1px;
    position: absolute;
    top: -4px;
    transform: rotate(45deg);
    width: 6px;
}

.irs--modern .irs-handle > i:nth-child(2) {
    background: #e9e6e6;
    background: linear-gradient(to bottom, #fff 0, #e9e6e6 100%);
    border-radius: 0 0 3px 3px;
    box-sizing: border-box;
    display: block;
    height: 12px;
    left: 0;
    position: absolute;
    top: 0;
    width: 10px;
}

.irs--modern .irs-handle > i:nth-child(3) {
    border-left: 1px solid #a3adc1;
    border-right: 1px solid #a3adc1;
    box-sizing: border-box;
    display: block;
    height: 5px;
    left: 3px;
    position: absolute;
    top: 3px;
    width: 4px;
}

.irs--modern .irs-handle.state_hover, .irs--modern .irs-handle:hover {
    background: #c3c7cd;
    background: linear-gradient(to bottom, #fff 0, #919ba5 30%, #fff 100%);
    border-color: #7685a2;
}

.irs--modern .irs-handle.state_hover > i:nth-child(1), .irs--modern .irs-handle:hover > i:nth-child(1) { border-color: #7685a2 }

.irs--modern .irs-handle.state_hover > i:nth-child(3), .irs--modern .irs-handle:hover > i:nth-child(3) { border-color: #48536a }

.irs--modern .irs-max, .irs--modern .irs-min {
    background-color: #d1d6e0;
    border-radius: 5px;
    color: #fff;
    font-size: 10px;
    line-height: 1.333;
    padding: 1px 5px;
    text-shadow: none;
    top: 0;
}

.irs--modern .irs-from, .irs--modern .irs-single, .irs--modern .irs-to {
    background-color: #20b426;
    border-radius: 5px;
    color: #fff;
    font-size: 10px;
    line-height: 1.333;
    padding: 1px 5px;
    text-shadow: none;
}

.irs--modern .irs-from:before, .irs--modern .irs-single:before, .irs--modern .irs-to:before {
    border: 3px solid transparent;
    border-top-color: #20b426;
    bottom: -6px;
    content: "";
    display: block;
    height: 0;
    left: 50%;
    margin-left: -3px;
    overflow: hidden;
    position: absolute;
    width: 0;
}

.irs--modern .irs-grid { height: 25px }

.irs--modern .irs-grid-pol { background-color: #dedede }

.irs--modern .irs-grid-text {
    color: silver;
    font-size: 13px
}

.irs--sharp {
    font-size: 12px;
    height: 50px;
    line-height: 1
}

.irs--sharp.irs-with-grid { height: 57px }

.irs--sharp .irs-line {
    background-color: #000;
    border-radius: 2px;
    height: 2px;
    top: 30px;
}

.irs--sharp .irs-bar {
    background-color: #ee22fa;
    height: 2px;
    top: 30px;
}

.irs--sharp .irs-bar--single { border-radius: 2px 0 0 2px }

.irs--sharp .irs-shadow {
    background-color: rgba(0, 0, 0, .5);
    bottom: 21px;
    height: 1px;
}

.irs--sharp .irs-handle {
    background-color: #a804b2;
    height: 10px;
    top: 25px;
    width: 10px;
}

.irs--sharp .irs-handle > i:first-child {
    border: 5px solid transparent;
    border-top-color: #a804b2;
    display: block;
    height: 0;
    left: 0;
    position: absolute;
    top: 100%;
    width: 0;
}

.irs--sharp .irs-handle.state_hover, .irs--sharp .irs-handle:hover { background-color: #000 }

.irs--sharp .irs-handle.state_hover > i:first-child, .irs--sharp .irs-handle:hover > i:first-child { border-top-color: #000 }

.irs--sharp .irs-max, .irs--sharp .irs-min {
    background-color: #a804b2;
    border-radius: 2px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    opacity: .4;
    padding: 3px 4px;
    top: 0;
}

.irs--sharp .irs-from, .irs--sharp .irs-single, .irs--sharp .irs-to {
    background-color: #a804b2;
    border-radius: 2px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    padding: 3px 4px;
    text-shadow: none;
}

.irs--sharp .irs-from:before, .irs--sharp .irs-single:before, .irs--sharp .irs-to:before {
    border: 3px solid transparent;
    border-top-color: #a804b2;
    bottom: -6px;
    content: "";
    display: block;
    height: 0;
    left: 50%;
    margin-left: -3px;
    overflow: hidden;
    position: absolute;
    width: 0;
}

.irs--sharp .irs-grid { height: 25px }

.irs--sharp .irs-grid-pol { background-color: #dedede }

.irs--sharp .irs-grid-text {
    color: silver;
    font-size: 13px
}

.irs--round { height: 50px }

.irs--round.irs-with-grid { height: 65px }

.irs--round .irs-line {
    background-color: var(--cnvs-range-slider-bar_color);
    border-radius: 4px;
    height: 4px;
    top: 36px;
}

.irs--round .irs-bar {
    background-color: var(--cnvs-range-slider-bar_color);
    height: 4px;
    top: 36px;
}

.irs--round .irs-bar--single { border-radius: 4px 0 0 4px }

.irs--round .irs-shadow {
    background-color: rgba(222, 228, 236, .5);
    bottom: 21px;
    height: 4px;
}

.irs--round .irs-handle {
    background-color: #fff;
    border: 4px solid var(--cnvs-range-slider-bar_color);
    border-radius: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 255, .3);
    height: 24px;
    top: 26px;
    width: 24px;
}

.irs--round .irs-handle.state_hover, .irs--round .irs-handle:hover { background-color: #f0f6ff }

.irs--round .irs-max, .irs--round .irs-min {
    background-color: rgba(0, 0, 0, .1);
    border-radius: 4px;
    color: #333;
    font-size: 14px;
    line-height: 1;
    padding: 3px 5px;
    top: 0;
}

.irs--round .irs-from, .irs--round .irs-single, .irs--round .irs-to {
    background-color: var(--cnvs-range-slider-bar_color);
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    padding: 3px 5px;
    text-shadow: none;
}

.irs--round .irs-from:before, .irs--round .irs-single:before, .irs--round .irs-to:before {
    border: 3px solid transparent;
    border-top-color: var(--cnvs-range-slider-bar_color);
    bottom: -6px;
    content: "";
    display: block;
    height: 0;
    left: 50%;
    margin-left: -3px;
    overflow: hidden;
    position: absolute;
    width: 0;
}

.irs--round .irs-grid { height: 25px }

.irs--round .irs-grid-pol { background-color: #dedede }

.irs--round .irs-grid-text {
    color: silver;
    font-size: 13px
}

.irs--square { height: 50px }

.irs--square.irs-with-grid { height: 60px }

.irs--square .irs-line {
    background-color: #dedede;
    height: 4px;
    top: 31px;
}

.irs--square .irs-bar {
    background-color: #000;
    height: 4px;
    top: 31px;
}

.irs--square .irs-shadow {
    background-color: #dedede;
    bottom: 21px;
    height: 2px;
}

.irs--square .irs-handle {
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    background-color: #fff;
    border: 3px solid #000;
    height: 16px;
    top: 25px;
    transform: rotate(45deg);
    width: 16px;
}

.irs--square .irs-handle.state_hover, .irs--square .irs-handle:hover { background-color: #f0f6ff }

.irs--square .irs-max, .irs--square .irs-min {
    background-color: rgba(0, 0, 0, .1);
    color: #333;
    font-size: 14px;
    line-height: 1;
    padding: 3px 5px;
    top: 0;
}

.irs--square .irs-from, .irs--square .irs-single, .irs--square .irs-to {
    background-color: #000;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    padding: 3px 5px;
    text-shadow: none;
}

.irs--square .irs-grid { height: 25px }

.irs--square .irs-grid-pol { background-color: #dedede }

.irs--square .irs-grid-text {
    color: silver;
    font-size: 11px
}