/* css/timer.css */

#timer-container {
  display: none;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;


}

#timer-contents {
  padding: 1vh 4vw;
  background-color: #ededed;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
}

#timer-container button {
  margin: 0 16px;
  background-color: transparent;
  padding: 0;
}

#timer-display {
  font-size: 3.5em;
  font-family: "Roboto", monospace;
  font-weight: 400;
}

#timer-controls {
  display: flex;
  justify-content: center;
  border-top: 1px solid #fff;
  padding: 2vh 0 1vh 0;
}

#timer-controls button,
#timer-controls button i {
  margin: 0 5px;
  color: #616A7D;

}

#btn-start-timer-box {
  width: 100%;
  display: flex;
  justify-content: center;
}

#btn-start-timer {
  color: #2B3C4B;
  background-color: #ededed;
}

#btn-start-timer:disabled {
  opacity: 0;
}

/* landscape styles: */

@media only screen and (orientation: landscape) {
  #btn-start-timer-box {
    width: 50%;
    right: 0;
    top: 30%;
  }

  #timer-container {
    width: 50%;
    right: 0;
    top: 30%;
    left: inherit;
  }

}