/* Range filter */

input[type=range] {
    -webkit-appearance: none;
  }
  input[type=range]:focus {
    outline: none;
  }
  input[type=range]::-webkit-slider-thumb {
    height: 16px;
    width: 16px;
    border-radius: 16px;
    background: #ec2028;
    -webkit-appearance: none;
  }
  
  input[type=range]::-moz-range-thumb {
    height: 16px;
    width: 16px;
    border-radius: 16px;
    background: #ec2028;
  }
  input[type=range]::-ms-thumb {
    height: 16px;
    width: 16px;
    border-radius: 16px;
    background: #ec2028;
  }
  
  .orange-btn {
    background-color : #FF9960;
    color : #ffffff;
  }
  
  
  .category-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #ec2028;
  }
  
  .checkmark:before{
    background-color:red;
  }
  .category-filter .category-checkbox:checked~.checkmark::before{
    background-color:black;
  }

.checkbox-custom > span {
    color: #34495E;
    padding: 0.5rem 0.25rem;
}

.checkbox-custom > input {
    height: 25px;
    width: 25px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    appearance: none;
    border: 1px solid #ec2028;
    border-radius: 4px;
    outline: none;
    transition-duration: 0.3s;
    background-color: #ffffff;
    cursor: pointer;
  }

.checkbox-custom > input:checked {
    border: 1px solid #ffffff;
    background-color: #ec2028;
}

.checkbox-custom > input:checked + span::before {
    font-family: Montserrat, sans-serif;
    content: '\2713';
    display: block;
    text-align: center;
    color: #ffffff;
    position: absolute;
    left: 1.3rem;
    top: 0.1rem;
    font-size: 16px;
    font-weight: 900;
    height: 0.7rem;;
}

.checkbox-custom > input:active {
    border: 2px solid #34495E;
}