/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */


/**  single-product .product-slider .quantity {display: none !important;} **/
 .final_price {
    width: 100%;
    display: block;
    float: right;
    margin: 20px 0px;
    font-weight: 700;
}


.weight-total {font-size: 14px;}

.result-slider {
	color: #303133;
	font-weight: 700;
	display: inline-block;
}
@media (min-width: 768px) {
.result-slider {
    width: 50%;	
	padding-top: 10px;
	font-size: 1.4em;
	}
	


.product-slider .add_to_cart_button {float: right !important;}
}


@media (max-width: 768px) {
.result-slider {
    width: 100%;
	}


.product-slider .add_to_cart_button {
	    float: none !important;
    margin: 0 auto;
    display: block;
	}
}

#slider-product {width: 100%;}

input[type=range] {
  -webkit-appearance: none;
  margin: 20px 0;
  width: 100%;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 15px;
  cursor: pointer;
  animate: 0.2s;
  background: #984d98;
  border-radius: 25px;
}
input[type=range]::-webkit-slider-thumb {
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 4px 0 rgba(0,0,0, 1);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -3px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: #984d98;
}
.range-wrap{
  width: 100%;
  position: relative;
}

#range {
	width: 100%;
}
.range-value{
  position: absolute;
  top: -40px;
}
.range-value span{
  width: 60px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  background: #984d98;
  color: #fff;
  font-size: 12px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  border-radius: 6px;
}
.range-value span:before{
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid #984d98;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  margin-top: -1px;
}