#epafw-warp *[tooltip] {
    position: relative;
}
#epafw-warp *[tooltip]:hover::after {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 4px 4px 4px 0;
    bottom: 22px;
    color: #fff;
    content: attr(tooltip);
    padding: 8px;
    position: absolute;
    z-index: 98;
    left: 2px;
    font-size: 14px;
    min-width: 160px;
    max-width: 240px;
    text-shadow: none;
    line-height: 1.5em;
}
#epafw-warp *[tooltip]:hover::before {
    border: solid;
    border-color: rgba(0, 0, 0, 0.8) transparent;
    border-width: 6px 6px 0;
    bottom: 16px;
    content: "";
    left: 2px;
    position: absolute;
    z-index: 99;
}
#epafw-warp .tooltip-element {
    color: #fff;
    background: #000;
    width: 16px;
    height: 16px;
    border-radius: 8px;
    display: inline-block;
    text-align: center;
    line-height: 16px;
    margin: 0 5px;
    font-size: 12px;
}

#epafwp-price-summary {
    margin: 20px 0;
}
#epafwp-price-summary p {
    margin-bottom: 8px;
}
#epafwp-price-summary p span {
    float: right;
}
#epafwp-total-price span {
    font-weight: bold;
}

/* For range input */
#epafw-warp .rendered-form .epafw-form-field input[type="range"] {
    appearance: none;
    margin: 15px 0;
    width: 200px;
    height: 7px;
    background: rgba(71, 64, 64, 0.6);
    border-radius: 5px;
    display:block;
    background-repeat: no-repeat !important; 
  }
  
  /* Input Thumb */
  #epafw-warp .rendered-form .epafw-form-field input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #000000 !important;
    cursor: pointer;
    box-shadow: 0 0 2px 0 #555;
    transition: background .3s ease-in-out;
  }
  
  #epafw-warp .rendered-form .epafw-form-field input[type="range"]::-moz-range-thumb {
    appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px 0 #555;
    transition: background .3s ease-in-out;
  }
  
  #epafw-warp .rendered-form .epafw-form-field input[type="range"]::-ms-thumb {
    appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 2px 0 #555;
    transition: background .3s ease-in-out;
  }
  
  #epafw-warp .rendered-form .epafw-form-field input[type="range"]::-webkit-slider-thumb:hover {
    background: #ff0200;
  }
  
  #epafw-warp .rendered-form .epafw-form-field input[type="range"]::-moz-range-thumb:hover {
    background: #ff0200;
  }
  
  #epafw-warp .rendered-form .epafw-form-field input[type="range"]::-ms-thumb:hover {
    background: #ff0200;
  }
  
  /* Input Track */
  #epafw-warp .rendered-form .epafw-form-field input[type=range]::-webkit-slider-runnable-track  {
    -webkit-appearance: none;
    box-shadow: none;
    border: none;
  }
  
  #epafw-warp .rendered-form .epafw-form-field input[type=range]::-moz-range-track {
    appearance: none;
    box-shadow: none;
    border: none;
  }
  
  #epafw-warp .rendered-form .epafw-form-field input[type="range"]::-ms-track {
    appearance: none;
    box-shadow: none;
    border: none;
  }
  