body, html {
  touch-action: manipulation;
  /* -webkit-touch-callout: none; */ /* iOS Safari */
  /*   -webkit-user-select: none; */ /* Safari */
  /*    -khtml-user-select: none; */ /* Konqueror HTML */
  /*      -moz-user-select: none; */ /* Old versions of Firefox */
  /*       -ms-user-select: none; */ /* Internet Explorer/Edge */
  /*           user-select: none; */ /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

* {
  outline: none !important;
	-webkit-overflow-scrolling: touch;
}

input, select, button {
  -webkit-appearance: none;
  border: none;
	background-color: transparent;
}

input:focus,
select:focus,
button:focus {
  box-shadow: none !important;
}

select {
  /* appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none; */
  background-color: transparent;
  border: 0;
}

a {
  text-decoration: unset;
}

.disabled {
  touch-action: none;
  -ms-touch-action: none;
  pointer-events: none;
  /* opacity: .4; */
  filter: grayscale(.6)
}

.disabled > .active {
  display: none;
}

:not(.disabled) > .inactive {
  display: none;
}

.hidden_button{
  opacity: 0;
}

.video-js .vjs-big-play-button {
  height: 1.5em;
  width: 1.5em;
  border-radius: 50%;
  margin-left: -0.75em;
  margin-top: -0.75em;
  background-color: rgba(0,0,0,.7);
}

.video-js .vjs-control-bar {
  overflow: hidden;
  font-size: .8em;
}

.video-js .vjs-progress-control {
  min-width: unset;
}

.y-scrollable {
  overflow-y: scroll;
  scrollbar-width: none; /* Hides the scrollbar */
  -ms-overflow-style: none; /* Hides the scrollbar */
}

.y-scrollable::-webkit-scrollbar {
  display: none; /* Hides the scrollbar */
}

#root {
  flex-grow: 1;
}