/**
* asRange v0.3.4
* https://github.com/amazingSurge/jquery-asRange
*
* Copyright (c) amazingSurge
* Released under the LGPL-3.0 license
*/
.asRange {
display: block;
  position: relative;
  width: 100%;
  height: 7px;
  border-radius:3px;
}
.asRange .asRange-pointer {
  position: absolute;
  left: 30%;
  z-index: 2;
  width: 20px;
  height: 20px;  
  border-radius: 50%;
  cursor: pointer;
  top: -6px;
  margin-left: -7px;
background-color: #fff;
box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12);


}
.asRange .asRange-pointer::before {
	display: block;
	width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  border-radius: inherit;
  cursor: pointer;
}
.asRange .asRange-pointer:after {
  position: absolute;
  display: block;
	width: 20px;
	height: 20px;
  content: "";
  
  border-radius: 50%;
  opacity: 0;
}

.asRange .asRange-pointer.start {
  left: 0;
  margin-left: 4px;
}
.asRange .asRange-pointer.stop {
  left: 100%;
  margin-left: -12px;
}
.asRange .asRange-pointer .asRange-tip {
display: block;
  position: absolute;
  bottom: 7px;
left: 11px;
  width: 28px;
  height: 56px;
  margin-left: -15px;
  font-family: Roboto,RobotoDraft,Helvetica,Arial,sans-serif;
  font-size: 11px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  border-radius: 3px; 
 
  z-index: 1;
  box-sizing: border-box;
  line-height: 31px;
  opacity: 0;
  transform: scale(0);
will-change: transform;
transition: transform .3s cubic-bezier(.4,0,.2,1),opacity .2s cubic-bezier(.4,0,.2,1),-webkit-transform .3s cubic-bezier(.4,0,.2,1);

}

.asRange .asRange-pointer:hover > .asRange-tip {
opacity: 1;
transform: scale(1);
}

.asRange .asRange-pointer .asRange-tip:before {
display: block;
  position: absolute;
  top: -1px;
left: 14px;
  display: inline-block;
  width: 30px;
    height: 30px;
  margin-left: -15px;
  content: "";
  
    border-radius: 50% 50% 0 50%;
    background-color: #797979;
    text-align: center;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
	z-index: -1;
	box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.18);
}



.asRange .asRange-selected {
display: block;
  position: absolute;
  left: 30%;
  z-index: 1;
  width: 40%;
  height: 7px;
  background-color: #bcedd0;
  box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.33);
  border-radius:3px;
}
.asRange .asRange-scale {
  display: none;
}

.asRange-scale {
  position: relative;
  width: 331px;
  height: 8px;
  background-color: #cfcdc7;
  border-radius: 8px;
}
.asRange-scale .asRange-pointer {
  position: absolute;
  left: 30%;
  z-index: 2;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  background-color: #fff;
  border-radius: 50%;
}
.asRange-scale .asRange-pointer:before {
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: -4px;
  left: -4px;
  content: "";
  background: #03a9f4;
  border-radius: inherit;
}
.asRange-scale .asRange-pointer:after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: #fff;
  border-radius: inherit;
}
.asRange-scale .asRange-pointer.start {
  left: 0;
  margin-left: 4px;
}
.asRange-scale .asRange-pointer.stop {
  left: 90%;
  margin-left: -12px;
}
.asRange-scale .asRange-pointer .asRange-tip {
  position: absolute;
  top: -33px;
  left: 0;
  width: 36px;
  height: 20px;
  margin-left: -15px;
  font-family: Roboto,RobotoDraft,Helvetica,Arial,sans-serif;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #5d5c58;
  border: 1px solid #5d5c58;
  border-radius: 3px; 
  -webkit-transition: opacity .3s ease-in-out 0s; 
  transition: opacity .3s ease-in-out 0s;
}
.asRange-scale .asRange-pointer .asRange-tip:before {
  position: absolute;
  bottom: -3px;
  left: 50%;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  content: "";
  background-color: #5d5c58;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}





.asRange-scale .asRange-selected {
  position: absolute;
  left: 30%;
  z-index: 1;
  width: 40%;
  height: 8px;
  background-color: #7ebdcb;
  border-radius: 50%;
}
.asRange-scale .asRange-scale {
  position: absolute;
  bottom: -22px;
  left: 0;
  width: 100%;
  height: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: url("../image/scale.png") no-repeat 0 center transparent;
}
.asRange-scale .asRange-scale li {
  position: absolute;
  top: 18px;
  width: 30px;
  height: 20px;
  padding: 0;
  margin: 0;
  margin-left: -15px;
  text-align: center;
}
.asRange-scale .asRange-scale li:first-child {
  left: 0;
}
.asRange-scale .asRange-scale li:nth-child(2) {
  left: 33.3%;
}
.asRange-scale .asRange-scale li:nth-child(3) {
  left: 66.6%;
}
.asRange-scale .asRange-scale li:last-child {
  left: 100%;
}
.ruller {
	display: flex;
    position: absolute;
    width: 84%;
    bottom: 4px;
    left: 4px;

}
.centiScale {
display: flex;
width: 12%;
height:13px;
border-left: 1px;
border-style: solid;
border-color:rgba(0, 0, 0, 0.3);
}
.miliScale {
width: 25%;
height: 7px;

border-right: 1px;
border-style: solid;
border-color:rgba(0, 0, 0, 0.3);
}
.textSizerPad {
width: 90%;
height: 7px;
border-radius: 3px;
background-color: #cfcfcf;
box-shadow: inset 0px 1px 2px 0px rgba(0, 0, 0, 0.33);
padding-right:10px;
position: relative;
}



.text-sizer-caption {
    position: absolute;
    top: -14px;
    right: 12px;
    background-color: #e8ff00;
	font-size: 11px;
	line-height: 11px;
	height: 14px;
	color: #000;
   
}
.text-sizer-caption:before {
	display: block;
	content: "";
	position: absolute;
    top: 0px;
    left: -7px;
    background-color: #e8ff00;
	width: 20px;
	height: 14px;
	z-index: -451;
	
	
	-moz-transform: skew(-30deg, 0deg);
-webkit-transform: skew(-30deg, 0deg);
-o-transform: skew(-30deg, 0deg);
-ms-transform: skew(-30deg, 0deg);
transform: skew(-30deg, 0deg);
}
.text-sizer-caption:after {
	display: block;
	content: "";
	position: absolute;
    top: 0px;
    right: -6px;
    background-color: #e8ff00;
	width: 20px;
	height: 14px;
	z-index: -452;
	
	
	-moz-transform: skew(30deg, 0deg);
-webkit-transform: skew(30deg, 0deg);
-o-transform: skew(30deg, 0deg);
-ms-transform: skew(30deg, 0deg);
transform: skew(30deg, 0deg);
}