.height-100{
  height: 100vh
}

.active{
  background-color: aliceblue;
}  

.dropdown-menu{
  min-width: 20rem;
  max-width: 20rem;
}

.range-control{
  position: relative
}

input[type=range]{ 
  display: block;
  width: 100%;
  margin: 0;
  -webkit-appearance: none;
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track{ 
  position: relative;
  height: 12px;
  border: 1px solid #b2b2b2;
  border-radius: 5px;
  background-color: #e2e2e2;
  box-shadow: inset 0 1px 2px 0 rgba(0, 0, 0, 0.1);
}

input[type=range]::-webkit-slider-thumb{ 
  position: relative;
  top: -5px;
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  -webkit-appearance: none;
  background-color: #fff;
  box-shadow: inset 0 -1px 2px 0 rgba(0, 0, 0, 0.25);
  border-radius: 100%;
  cursor: pointer;
}

output{ 
  position: absolute;
  top: -32px;
  width: 77px;  
  padding: 3px 9px;
  border: 1px solid var(--light);
  background-color: var(--secondary);
  border-radius: .5rem;
  color: var(--light);  
  text-align: center;
}

input[type=range] + output{ 
  display: block;
  transform: translateX(-50%);
}

.dropdown-item{
  padding: 0.45rem 1.5rem;
}

.tail-select>.select-label>.label-inner{
  padding: 3px 6px;
}

.grabbable{
  cursor: grab;
}

.pointer{
  cursor: pointer;
}

#sideNav tr:not(.separator) *{
  cursor: pointer;
}