#flashtext{

  font-size: 30px;
  font-family: var(--font_family);
  color: var(--text_color);
  text-align: center;
  margin-top: 75px;
  margin-bottom: 100px;

}

#flashrestart{
  font-size: 25px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 15px;
  padding-top: 15px;
  user-select: none;
  transition: opacity 0.2s;
}

#flashrestart:focus{
  opacity: 1;
}

#flashstart{
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 40px;
  padding-right: 40px;
  height: 40px;
  text-align: center;
  user-select: none;
  transition: opacity 0.2s;
  font-size: 20px;
}

#flashstart:focus{
  opacity: 1;
}

#flashinput:focus{
  opacity: 1;
}

#flashinputcontainer{
  display: flex;
  justify-content: space-around;
}

#flashinputrestart{
  display: flex;
  flex-direction: column;
}

#flashcontainer{
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  display: flex;
  justify-content: center
}

#flashbox{
  position: relative;
  top: 20%;
  height: 500px;
  width: 500px;
  max-width: 80%;
  background: var(--window_background);
  border: solid 2px var(--window_border);
  display: flex;
  flex-direction: column;
}

#flashanzantitle{
  color: var(--text_color);
  font-size: 30px;
  text-align: center;
}

.flashsettingstext{
  color: var(--text_color);
  font-family: var(--font_family);
  font-size: 20px;
  margin-left: 30px;
  display: flex;
}

.flashvalue{
  color: var(--text_select_color) !important;
  font-weight: bold;
  margin-left: 7px;
}

@media screen and (max-width: 800px) {
  .flashsettingstext{

    font-size: 17px !important;

  }
}


#flashdone{
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  font-size: 20px;
}

.anzanslider{
  margin-left: 30px;
  width: 80%
}

.zuluslider{
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  height: 10px; /* Specified height */
  background: var(--button_background);
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
  cursor: pointer;
  border: solid 2px var(--button_border)
}

.zuluslider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 40px; /* Set a specific slider handle width */
  height: 40px; /* Slider handle height */
  background: var(--text_select_color); /* Green background */
  cursor: pointer; /* Cursor on hover */
  border: none;
  border-radius: 12.5px;

}

.zuluslider::-moz-range-thumb {
  -webkit-appearance: none;
  width: 40px; /* Set a specific slider handle width */
  height: 40px; /* Slider handle height */
  background: var(--text_select_color); /* Green background */
  cursor: pointer; /* Cursor on hover */
  border: none;
  border-radius: 12.5px;

}
