/* variables */
  
  /* custom stles for UiSlider */
  .noUi-target {
    cursor: pointer;
  }
  .noUi-target :focus {
    outline: none;
  }
  
  .noUi-horizontal {
    height: 9px;
  }
  
  .noUi-connect {
    background: var(--Mau_2);
  }
  
  .noUi-base {
    background: #DEDEDE;
  }
  
  .noUi-horizontal .noUi-handle {
    top: -6px;
    right: -15px;
    width: 22px;
    height: 22px;
    background: var(--Mau_2);
    border: 2px solid var(--Mau_2);
    border-radius: 50%;
    box-shadow: unset;
    cursor: pointer;
    transition: transform 0.1s;
  }
  .noUi-horizontal .noUi-handle:before, .noUi-horizontal .noUi-handle:after {
    content: none;
  }
  .noUi-horizontal .noUi-handle:hover {
    transform: scale(1.1);
  }
  
  /* styles for filter */
  .price-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 370px;
    border-radius: 10px;
  }
  
  .price-slider .filter__label {
    position: relative;
    cursor: pointer;
  }
  .price-slider .filter__label:before {
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: #999999;
    font-size: 12px;
    line-height: 35px;
  }
  .price-slider .filter__label:nth-child(1):before {
    content: "Từ";
  }
  .price-slider .filter__label:nth-child(2):before {
    content: "Đến";
  }
  .price-slider .filter__label:nth-child(1)::after,
  .price-slider .filter__label:nth-child(2)::after{
    content: 'k';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--Mau_2);
    font-size: 13px;
  }
  .price-slider .filter__input {
    height: 35px;
    border: 1px solid #d9d9d9;
    border-radius: 5px;
    padding: 0 10px 0 40px;
    cursor: pointer;
    max-width: 105px;
    margin-bottom: 0;
    font-weight: 600;
    color: var(--Mau_2);
    box-shadow: unset;
  }
  .price-slider .filter__input:focus {
    background: #f1f1f1;
  }
  
  .price-slider .filter__slider-price {
    width: 100%;
    margin: 20px 5px 0;
  }