/**
 * Text Slider Directive - CSS
 **/
.text-size-slider {
  /*line-height: 100%;*/
  width: 250px;
  font-size: 14pt;
}

.text-size-slider .small-letter .med-letter .text-size-slider .big-letter
{
  font-weight: bold;
}

.text-size-slider .slider {
  -webkit-appearance: none;
  /*margin: 0 8px;*/
}

.text-size-slider .slider:focus {
  outline: none;
}

.text-size-slider .slider::-webkit-slider-thumb {
  border: 1px solid #000000;
  cursor: pointer;
  -webkit-appearance: none;
  /*background-color: #00b6f1;*/
  background-color: #005fcc;
  width: 20px;
  height: 12px;
  border-radius: 15%;
  margin-top: -6px;
}

.text-size-slider .slider::-webkit-slider-runnable-track {
  width: 100%;
  height: 2px;
  cursor: pointer;
  background: gray;
  border: 0;
  padding: 0px;
}

.font-sizer {
    color: #005fcc;
}

.sm {
  font-size: 12pt;
}
.md {
  font-size: 14pt;
}
.lg {
  font-size: 16pt;
}

#sample {
  background-color: #b3b1b4;
  border: 1px solid #4a494a;
  border-radius: 5px;
  margin-top: 10px;
  padding: 5px;
}
