/*------------------------------------*\
    #RANGE
\*------------------------------------*/

.range {
  margin-bottom: 8px;
}

/*
 * Input Reset
 */

input[type=range] {
  -webkit-appearance: none; /* Hides the slider so that custom slider can be made */
  width: 100%; /* Specific width is required for Firefox. */
  background: transparent; /* Otherwise white in Chrome */
}

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

input[type=range]:focus {
  outline: none; /* Removes the blue border. You should probably do some kind of focus styling for accessibility reasons though. */
}

input[type=range]::-ms-track {
  width: 100%;
  cursor: pointer;

  /* Hides the slider so custom styles can be added */
  background: transparent; 
  border-color: transparent;
  color: transparent;
}

/*
 * Handle styles
 */

/* Special styling for WebKit/Blink */
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height            : 24px;
  width             : 24px;
  border-radius     : 16px;
  background        : #d4403b;
  cursor            : pointer;
  margin-top        : -10px; /* You need to specify a margin in Chrome, but in Firefox and IE it is automatic */
  
}

/* All the same stuff for Firefox */
input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  height            : 24px;
  width             : 24px;
  border-radius     : 16px;
  background        : #d4403b;
  cursor            : pointer;
  border: none;
}

/* All the same stuff for IE */
input[type=range]::-ms-thumb {
  -webkit-appearance: none;
  height            : 24px;
  width             : 24px;
  border-radius     : 16px;
  background        : #d4403b;
  cursor            : pointer;
  border            : none;
}

input[type=range]:hover::-webkit-slider-thumb {
  background: #b23733;
  box-shadow: 0px 3px 15px 1px rgba(0, 0, 0, 0.04);
}

input[type=range]:hover::-moz-range-thumb {
  background: #b23733;
  box-shadow: 0px 3px 15px 1px rgba(0, 0, 0, 0.04);
}

input[type=range]:hover::-ms-thumb {
  background: #b23733;
  box-shadow: 0px 3px 15px 1px rgba(0, 0, 0, 0.04);
}

input[type=range]:focus::-webkit-slider-thumb {
  background: #d4403b;
  box-shadow        : 0px 3px 15px 1px rgba(0, 0, 0, 0.04); /* Add cool effects to your sliders! */
}

input[type=range]:focus::-moz-range-thumb {
  background: #d4403b;
  box-shadow        : 0px 3px 15px 1px rgba(0, 0, 0, 0.04); /* Add cool effects to your sliders! */
}

input[type=range]:focus::-ms-thumb {
  background: #d4403b;
  box-shadow        : 0px 3px 15px 1px rgba(0, 0, 0, 0.04); /* Add cool effects to your sliders! */
}


/*
 * Track Styles
 */

input[type=range]::-webkit-slider-runnable-track {
  width        : 100%;
  height       : 6px;
  cursor       : pointer;
  background   : #e9e9e9;
  border-radius: 3px;
  border       : 0.2px solid #e9e9e9;
  transition   : all 0.29s ease-in-out 0s;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: #e9e9e9;
}

input[type=range]::-moz-range-track {
  width        : 100%;
  height       : 6px;
  cursor       : pointer;
  background   : #e9e9e9;
  border-radius: 3px;
  border       : 0.2px solid #e9e9e9;
  transition   : all 0px 3px 15px 1px rgba(0, 0, 0, 0.04);
}

/*
 * Range Labels
 */

.range__labels {
  display        : flex;
  justify-content: space-between;
  padding-top: 4px;
 }

.range__label {
  font-size: 12px;
  text-align: center;
  min-width: 24px;
}


 .range__end-labels {
  font-size: 14px;
  color: $grey--600;
 }

 .range__end-labels--start {
  float: left;
  text-align: left;
  padding-left: 4px;
 }

  .range__end-labels--end {
  float: right;
  text-align: right;
  padding-right: 4px;
 }


 /*------------------------------------*\
    #PANELS
\*------------------------------------*/


.panel {
  position        : relative;
  flex-direction  : column;
  min-width       : 0;
  word-wrap       : break-word;
    background-color: white;
    border          : 0;
  border-radius   :4px;
    box-shadow      : 0px 3px 15px 4px rgba(0, 0, 0, 0.04);
}


.panel__header {
  display: block;
  padding: 1.25em;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.panel__body {
  display: block;
  padding: 1.25em;
  background-color: white;
  border-radius: 4px;
}

.panel__body--np {
  padding: 0;
}

.panel__body-padding {
  padding: 1.25em !important;
}

 
.panel__grey--100 {
  background-color: #fafafa;
}

.panel__blue--600 {
  background-color: #1d77c9;
  color: white;
}

.text__grey--700 {
    color: #5d5c5b;
}
/*------------------------------------*\
//    #SEGMENTED-LIST
//\*------------------------------------*/

.segmented-list--vertical .segmented-list__item {
    border-bottom: 1px solid #e9e9e9;
    }
.segmented-list--vertical .segmented-list__item:last-of-type {
    border-bottom: none;

    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
}
