/* Mobile Devices */
/* Utils */
.pos-fix-left {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 60%;
  background-color: var(--background-theme);
  z-index: 9;

  word-break: break-all;
}

.heart-icon {
  color: var(--red-variant);
}

.pos-abs-top-right-custom {
  position: absolute;
  top: 4px;
  right: 4px;
}

.grid-min-col-1 {
  display: grid;
  grid-template-columns: 1fr;
}

@media screen and (min-width: 767px) {
  .pc-grid-col-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .pc-grid-col-2-20-80 {
    display: grid;
    grid-template-columns: 20fr 80fr;
  }

  .filters {
    position: static;
    width: auto;
  }
}

/*

 For Component Library :-( Upcoming Feature)

.slider[type="range"]{
   -webkit-appearance: none;
   appearance: none;
   width: 100%;
   border-radius: 2px;
   background: transparent;
  


}

.slider[type="range"]::-webkit-slider-thumb{
    appearance: none;
    -webkit-appearance: none;
    border:1px solid var(--dark-text-color);
    height: 36px;
    width: 16px;
    border-radius: 4px;
    background: var(--background-theme);
    cursor: grab;
    margin: -14px;
    box-shadow: var(--universal-box-shadow);
   
 
 
 }
 .slider[type="range"]::-moz-range-thumb{
    appearance: none;
    -webkit-appearance: none;
    border:1px solid var(--dark-text-color);
    height: 36px;
    width: 16px;
    border-radius: 4px;
    background: var(--background-theme);
    cursor: grab;
   
 
 
 }
 .slider[type="range"]::-moz-range-thumb{
    appearance: none;
    -webkit-appearance: none;
    border:1px solid var(--dark-text-color);
    height: 36px;
    width: 16px;
    border-radius: 4px;
    background:transparent;
    cursor: grab;
   
 
 
 }

 .slider[type="range"]::-ms-thumb{
    appearance: none;
    -webkit-appearance: none;
    border:1px solid var(--dark-text-color);
    height: 36px;
    width: 16px;
    border-radius: 4px;
    background: var(--background-theme);
    cursor: grab;
   
 
 
 }


.slider[type="range"]:-webkit-slider-runnable-track{
    width: 100%;
    height: 8.4px;
    box-shadow: var(--universal-box-shadow);
    background:var(--dark-text-color);
}
.slider[type=range]:focus::-webkit-slider-runnable-track {
    background:var(--cta-background-color);
  }


 .slider[type="range"]::-webkit-slider-thumb:focus{
     cursor:grabbing;
 }




*/
