/**
 *
 * Main stylesheet for Powerange.
 * http://abpetkov.github.io/powerange/
 *
 */

/**
 * Horizontal slider style (default).
 */

.slider-range {
    padding-bottom: 32px;
}

.slider-range-value {
    float: right;
    font-size: 26px;
}

textarea.slider-range-int {
    display: inline-block;
    font-size: 26px;
    height: 26px;
    width: 90px;
    border: 0;
    border-bottom: 1px solid #dfe7e9;
    resize: none;
    text-align: center;
    vertical-align: middle;
    padding: 0;
    overflow: hidden;
}

textarea.slider-days {
    width: 33px;
}

.slider-range-int {
    position: relative;
}

span.slider-range-int:after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    border-bottom: 1px dotted rgba(135, 152, 156, 0.5);
}

.slider-range-label {
    padding-top: 5px;
    margin-bottom: 20px;
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #353740;
    cursor: default;
}

.range-bar {
    background-color: #dfe7e9;
    -webkit-border-radius: 3.5px;
    border-radius: 3.5px;
    display: block;
    height: 4px;
    position: relative;
    width: 100%;
}

.range-quantity {
    background: #ed4c4c;
    background: -moz-linear-gradient(left, #e43232 0%, #ed4c4c 100%);
    background: -webkit-linear-gradient(left, #e43232 0%, #ed4c4c 100%);
    background: linear-gradient(to right, #e43232 0%, #ed4c4c 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2cc592', endColorstr='#57e47b', GradientType=1);
    border-radius: 15px;
    display: block;
    height: 100%;
    width: 0;
}

.range-handle {
    background-color: #fff;
    border-radius: 100%;
    height: 28px;
    left: 0;
    top: -13px;
    position: absolute;
    width: 28px;
    -webkit-box-shadow: 0 4px 8px 0 rgba(34, 64, 71, 0.2);
    border: solid 1px rgb(223, 231, 233);
    box-shadow: 0 4px 8px 0 rgba(34, 64, 71, 0.2);
    cursor: pointer;
}

.range-handle:hover {
    border-color: rgb(237, 76, 76);
}

.range-min,
.range-max {
    color: #79929a;
    font-size: 12px;
    height: 20px;
    padding-top: 4px;
    position: absolute;
    text-align: center;
    top: 13px;
}

.range-min {
    left: 0;
}

.range-max {
    right: 0;
}

/**
 * Vertical slider style.
 */

.vertical {
    height: 100%;
    width: 4px;
}

.vertical .range-quantity {
    bottom: 0;
    height: 0;
    position: absolute;
    width: 100%;
}

.vertical .range-handle {
    bottom: 0;
    left: -13px;
    top: auto;
}

.vertical .range-min,
.vertical .range-max {
    left: -10px;
    right: auto;
    top: auto;
}

.vertical .range-min {
    bottom: -30px;
}

.vertical .range-max {
    top: -30px;
}

/**
 * Style for disabling text selection on handle move.
 */

.unselectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/**
 * Style for handle cursor on disabled slider.
 */

.range-disabled {
    cursor: default;
}

@media not all and (min-resolution: .001dpcm) {
    @media {

        textarea.slider-range-int {
            vertical-align: top;
            padding-bottom: 6px;
        }

    }
}
.iosx textarea.slider-range-int {
    vertical-align: top;
    padding-bottom:6px;
}