.circular-progress {
  position: relative;
  height: 170px;
  width: 170px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.circular-progress:before {
  content: "";
  position: absolute;
  height: 84%;
  width: 84%;
  background-color: #ffffff;
  border-radius: 50%;
}

#timer, #stopwatch, #metronome, #weight-converter{
  height: 330px;
  width: 100%;
  display: flex;
  flex-direction: column;
align-content: center;
justify-content: center;
align-items: center;
gap: 1rem;
padding: 2rem;
}

#timer{
justify-content: space-between;
}

#timerInput, #sleepInput{
width: 200px;
}

#timerProgressText{
  font-size: 2.5rem;
}

#stopwatchText {
  border: 1px solid var(--btncolor);
  padding: 0.5rem 1rem;
  font-size: 2rem;
  border-radius: 0.625rem;
  background: var(--btncolor);
  color: white;
}

#stopwatchLaps {
padding: 0 2rem;
overflow: auto;
/*box-shadow: inset 0px -2px 20px #98272763;*/
display: flex;
flex-direction: column-reverse;
align-items: center;
margin: 0;
border-radius: 0.625rem;
min-height: 100px;
}

#stopwatchLaps li{
  border-bottom: 1px solid black;
}

#weight-converter .row{
 row-gap: 2rem;
}

.tools-widget{
  display: flex;
position: fixed;
top: 4.5rem;
right: 1rem;
background: transparent;
z-index: 99;
flex-direction: column;
gap: 1rem;
}

.tools-widget span{
  border: 1px solid var(--btncolor);
  border-radius: 0.625rem;
  padding: 0.5rem 0.75rem;
  display: inline-flex;
  place-content: center;
background: white;
justify-content: space-between;
font-size: 0.75rem;
}

.tools-widget span::before{
  height: 1.5rem !important;
  width: 1.5rem !important;
  margin: 0 !important;
}

#tools-menu-container .minc-modal-dialog{
  opacity: 0;
  z-index: -9;
}

#tools-menu-container.active[data-active-tool="timer"] #timer-modal{
  opacity: 1;
  z-index: 99999;
}


#tools-menu-container.active[data-active-tool="stopwatch"] #stopwatch-modal{
  opacity: 1;
  z-index: 99999;
}

#tools-menu-container.active[data-active-tool="metronome"] #metronome-modal{
  opacity: 1;
  z-index: 99999;
}

#tools-menu-container.active[data-active-tool="weights"] #weights-modal{
  opacity: 1;
  z-index: 99999;
}



@media only screen and (max-width: 767px) {


}