body {
  text-align: center;
  font-family: "Ubuntu", sans-serif;
  font-size: x-large;
  margin: 0px;
  background-color: #282828;
  color: white;
  text-transform: uppercase;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
button {
  margin: 30px auto;
  padding: 10px;
  width: 300px;
  background-color: rgba(0, 255, 255, 0.67);
  color: white;
  text-align: center;
  display: block;
  cursor: pointer;
  font: inherit;
  border-radius: 6px;
  border: none;
  white-space: nowrap;
  text-transform: uppercase;
}
#startsession, #skipintro, #pauseresume, #autopausestatus, #startbreathingin, #replayround2, #replayround3 {
  display: none;
}
@media (min-height: 1200) and (orientation: portrait) {
  body { font-size: x-large; }
}
@media (min-height: 1600) and (orientation: portrait) {
  body { font-size: xx-large; }
}
iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.iframe-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin-bottom: 40px;
}
#controls-container {
  height: 100px;
}
.disabled-events {
  pointer-events: none;
}
#labelautopause {
  cursor: pointer;
  display: none;
}
input[type=checkbox] {
  cursor: pointer;
  filter: grayscale(100%) invert(80%);
  width: 20px;
  height: 20px;
  line-height: 30px;
  padding: 10px;
  vertical-align: text-bottom;
}
input[type=checkbox]:hover {
  filter: invert(80%);
}
input[type=checkbox]:checked {
  filter: grayscale(100%) ;
}
.disable-textselection {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
label {
  margin: 0px auto;
  white-space: nowrap;
  line-height: 30px;
  padding: 10px;
}
/* Disable selection highlighting https://www.tutorialrepublic.com/faq/how-to-disable-text-selection-highlighting-in-the-browsers-using-css.php*/
::selection {
    color: none;
    background: none;
}
::-moz-selection {
    color: none;
    background: none;
}
