.slider-container {
  /*width: 316px;*/
  height: auto;
  margin: 0 4px 0 0;
  display: inline-block;
}

.slider-container:first-child {
  margin-right: 4px;
  /*margin-right:0px;*/
}

.slider-container:nth-of-type(2) {
  margin-right: 4px;
  /*margin-right:0px;*/
}

.slider-container:last-child {
  margin-right: 0px;
}

.slider-wrapper {
    width: 316px;
    margin: -13px auto 33px;
}

.slider-title {
  width: 100%;
  height: 35px;
  align-items: center;
  display: flex;
}

.s-title {
  text-align: left;
  padding-left: 10px;
  display: flex;
  display: -webkit-box;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
  width: 269px;

  font-family: "MarkOTBold";
  font-size: 18px;
  line-height: 19px;
  color: #2a2a2a;
}






/* ----------------------- */

input::-moz-focus-inner {
  border: 0;
}

input[type=range] {
    width: 100%;
    -webkit-appearance: none;
    background: transparent;
    margin: 18px 0 25px;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  -moz-appearance: none;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-ms-track,
input[type=range]::-moz-range-track {
  display: none;
}

/* ============ THUMB STYLING ============ */

/* Special styling for WebKit/Blink */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  border: 2px solid #f2f2f2;
  height: 34px;
  width: 34px;
  border-radius: 20px;
  background: url('../images/thumb-hash.png') center center #3d9a95;
  cursor: pointer;
  margin-top: -4px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2)
}

/* All the same stuff for Firefox */
input[type=range]::-moz-range-thumb {
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  border: 2px solid #f2f2f2;
  height: 34px;
  width: 34px;
  border-radius: 20px;
  background: url('../images/thumb-hash.png') center center #3d9a95;
  cursor: pointer;
}

/* All the same stuff for IE */
input[type=range]::-ms-thumb {
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  border: 2px solid #f2f2f2;
  height: 34px;
  width: 34px;
  border-radius: 20px;
  background: url('../images/thumb-hash.png') center center #3d9a95;
  cursor: pointer;
}

/* ============ TRACK STYLING ============ */

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 30px;
  cursor: pointer;
  background: url('../images/slider-dots.png') center center #dbdcdd;
  border-radius: 20px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 30px;
  cursor: pointer;
  background: url('../images/slider-dots.png') center center #dbdcdd;
  border-radius: 20px;
}

input[type=range]::-ms-track {
  width: 100%;
  height: 30px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}
input[type=range]::-ms-fill-lower {
  background: #2a6495;
  border-radius: 2.6px;
}
input[type=range]:focus::-ms-fill-lower {
  background: url('../images/slider-dots.png') center center #dbdcdd;
}
input[type=range]::-ms-fill-upper {
  background: url('../images/slider-dots.png') center center #dbdcdd;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
input[type=range]:focus::-ms-fill-upper {
}


/* OUTPUT STYLES */
output {
  position: absolute;
  background: #3d9a95;
  width: 49px;
  height: 28px;
  text-align: center;
  color: #fff;
  border-radius: 12px;
  display: inline-flex;
  left: 0;
  top: 65px;

  margin-left: -1%;
  font-weight: 400;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

output:after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-bottom: 9px solid #3d9a95;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  top: -8px;
  left: 16px;
}

form {
  position: relative;
}

/* ============ FIREFOX SPECIFIC TWEAKS ============ */
@-moz-document url-prefix() {
    output {
        top: 55px;
    }

    .slider-wrapper {
      margin-top: -5px;
    }

    input[type=range] {
        margin: 18px 0 45px;
    }

    /* This removes the dotted outline for inputs in Firefox */
    input[type=range]::-moz-focus-outer {
        border: 0;
    }

}


/* INACTIVE SLIDER */

/* ============ THUMB STYLING ============ */

/* Special styling for WebKit/Blink */
input[type=range].inactive::-webkit-slider-thumb {
  display: none !important;
}

input[type=range].inactive::-moz-range-thumb {
    visibility: hidden !important;
}


output.inactive {
  display: none !important;
}

/* ============ TRACK STYLING ============ */

input[type=range].inactive::-webkit-slider-runnable-track {
  width: 100%;
  height: 30px;
  cursor: pointer;
  background: url('../images/slider-dots-inactive.png') center center #e8e8e8;
  border-radius: 20px;
}

input[type=range].inactive::-moz-range-track {
  width: 100%;
  height: 30px;
  cursor: pointer;
  background: url('../images/slider-dots.png') center center #e8e8e8;
  border-radius: 20px;
}

input[type=range].inactive::-ms-track {
  width: 100%;
  height: 30px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}
input[type=range].inactive::-ms-fill-lower {
  background: #2a6495;
  border-radius: 2.6px;
}
input[type=range].inactive:focus::-ms-fill-lower {
  background: url('../images/slider-dots.png') center center #e8e8e8;
}
input[type=range].inactive::-ms-fill-upper {
  background: url('../images/slider-dots.png') center center #e8e8e8;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}
.table-center {
  display: table;
  margin: -6px auto 0;
}