.optiontext{
  color: var(--text_color);
  text-align: center;
  font-size: 20px;
  margin-top: 5px;
  font-family: var( --font_family);
}

#options{
  display: flex;
  justify-content: space-around;
}

#optionsinner{
  display: flex;
}

.difficultyrow{
  display: flex;
  flex-direction: column;
}

.option{
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  background: var(--window_background);
  border-radius: 10px;
  border: solid 2px var(--window_border);
  margin: 10px;
}

.optionbutton{
  margin: 5px !important;
  font-size: 20px;
}

.buttonrow{
  display: flex;
  justify-content: space-around;
}

.textselected{
  color: var(--text_select_color) !important;
  opacity: 1 !important;
}


#customtimecontainer{
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(3px);
  z-index: 100
}

#customtimelabel{
  position: relative;
  margin-bottom: 20px;
  margin-top: 0px;
}

#customtime{
  position: relative;
  width: 300px;
  height: 200px;
  overflow-y: scroll;
  background: var(--window_background);
  border-radius: 10px;
  border: solid 2px var(--window_border);
  overflow-x: hidden;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

#customtimeoptions{
  display: flex;
  align-items: center;
  justify-content: center;
}

#customtimeoptions .zulubutton{
  margin: 10px;
  margin-bottom: 15px;
}

#customtimeoptions .numinput{
  width: 150px !important;
  margin-bottom: 20px;
}

#customtimeinp{
  margin-left: auto !important;
  margin-right: auto !important;
}

#customtimedone{
  margin-top: 15px;
  width: 200px;
}


@media screen and (max-width: 1100px) {
  #optionsinner{
    display: block;
  }
}
