/**
 * Angular JS slider directive
 *
 * (c) Rafal Zajac <rzajac@gmail.com>
 * http://github.com/rzajac/angularjs-slider
 *
 * Licensed under the MIT license
 */

/* Slider colors */

/* Slider size parameters */

rzslider {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 4px;
    margin: 30px 0 15px 0;
    vertical-align: middle;
}

rzslider span {
    position: absolute;
    display: inline-block;
    white-space: nowrap;
}

rzslider span.rz-base {
    width: 100%;
    height: 100%;
    padding: 0;
}

rzslider span.rz-bar {
    z-index: 0;
    width: 100%;
    height: 14px;
    background: #F6F6F6;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border: 1px solid #d4d7de;
}

rzslider span.rz-bar.rz-selection {
    z-index: 1;
    width: 0;
    background: #B4E7DE;
}

rzslider span.rz-pointer {
    top: -18px;
    z-index: 2;
    width: 14px;
    height: 32px;
    cursor: pointer;
    background-color: #333333;
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 0;
}

/*rzslider span.rz-pointer:after {*/

/*position: absolute;*/

/*top: 12px;*/

/*left: 12px;*/

/*width: 8px;*/

/*height: 8px;*/

/*background: #ffffff;*/

/*-webkit-border-radius: 4px;*/

/*-moz-border-radius: 4px;*/

/*border-radius: 4px;*/

/*content: '';*/

/*}*/

rzslider span.rz-pointer:hover:after {
    background-color: #ffffff;
}

rzslider span.rz-pointer.rz-active:after {
    background-color: #451aff;
}

rzslider span.rz-bubble {
    top: 33px;
    padding: 1px 3px;
    color: #55637d;
    cursor: default;
}

rzslider span.rz-bubble.rz-selection {
    top: 16px;
}

rzslider span.rz-bubble.rz-limit {
    color: #55637d;
}

/*Tolltip*/

rzslider span.rz-bubble .rz-tooltip {
    top: -52px;
}

.rz-tooltip {
    position: relative;
    display: inline;
}

.rz-tooltip {
    position: absolute;
    width: 45px;
    background: #FFFFFF;
    height: 32px;
    line-height: 35px;
    text-align: center;
    /* visibility: hidden; */
    box-shadow: 0px 0px 1px #808080;
    z-index: 10;
}

.rz-tooltip:after {
    content: '';
    position: absolute;
    top: calc( 100% - 5px);
    left: calc( 50% - 5px);
    background: white;
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 1px solid rgb(219, 219, 219);
    border-right: 1px solid rgb(221, 224, 227);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

span.rz-bubble.rz-tooltip {
    top: -71px;
}

.sliderDot {
    position: relative;
    left: 5px;
}

.sliderDot span {
    top: 19px;
    position: absolute;
    font-size: 9px;
    font-weight: bold;
    color: #333333;
}

/*.rz-tooltip:hover.rz-tooltip{*/

/*visibility: visible;*/

/*opacity: 0.8;*/

/*bottom: 30px;*/

/*left: 50%;*/

/*margin-left: -76px;*/

/*z-index: 999;*/

/*}*/

.toolTipInput {
    top: 0;
    position: absolute;
    width: 46px !important;
    z-index: 1000;
    padding-right: 0 !important;
    padding-left: 0px;
    /*12px !important; /* Changed to "0px" by Vardan  */
    border: none !important;
}

/*Vardan*/

.toolTipInput.error-input {
    color: #E11F3A;
}

.toolTipInput:focus {
    box-shadow: none !important;
}

/*.arrowDown {*/

/*width: 0;*/

/*height: 0;*/

/*border-left: 20px solid transparent;*/

/*border-right: 20px solid transparent;*/

/*border-top: 20px solid #f00;*/

/*}*/

.analysisSlider {}

.arrow_box {
    position: relative;
    background: #ffffff;
    border: 1px solid #dedede;
    top: -80px;
    height: 37px;
    width: 50px;
    z-index: 0;
}

.arrow_box:after,
.arrow_box:before {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.arrow_box:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-color: #ffffff;
    border-width: 10px;
    margin-left: -10px;
}

.arrow_box:before {
    border-color: rgba(222, 222, 222, 0);
    border-top-color: #dedede;
    border-width: 11px;
    margin-left: -11px;
}