html * {
	font-family: Verdana;
	padding: 0;
	margin: 0;
	outline: none;

	-webkit-user-select: none; /* Safari */        
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* IE10+/Edge */
	user-select: none; /* Standard */
}

body {
	background-color: #000000;
}

/*
.resize-animation-stopper * {
	animation: none !important;
	transition: none !important;
  }
*/

.messageLarge {
	color: #fff;
	background:rgba(68, 68, 68, 0.5);
	width: 250px;
	height: 50px;
	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -50px;
	margin-left: -100px;
	border-radius: 5px;
	text-align: center;

	
}


.header {
	grid-column-start: 1;
	grid-column-end: -1;
}

.toolbar {
	grid-column-start: 1;
	grid-column-end: -1;
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
	background-color: rgb(22, 22, 22);
	border-radius: 5px;
}

.grid-layout-toolbar {
	display: flex;
	grid-template-columns: auto auto auto auto;
	gap: 5px;
}

.grid-item-toolbar {
	border-radius: 5px;
}

.toolbar-buttons {
	display: grid;
	margin: 0;
	position: relative;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	border:none;


	color: rgba(255, 255, 255, 0.692);
	background-color: #47474780;
	border-radius: 50%;
	cursor: pointer;
	width: 7vh;
	height: 7vh;
	min-height: 45px;
	min-width: 45px;
	justify-items: center;
	align-content: center;
	vertical-align: center;
	z-index: 16;
}

.button-icon {
	font-size: calc(.5rem + 1.5vh);


}

.button-label {
	font-size: calc(.2rem + .5vh);



}

.no-touch .toolbar-buttons:hover {
	background-color: #7a7a7a;
}

.toolbar-textbox {
	border: none;
	font-weight: bold;
	text-transform: uppercase;
	color: white;
	text-align: center;
	font-weight: normal;
	background-color: rgb(15, 15, 15);
}

.tile-label {

	color: white;
	background-color: rgba(17, 17, 17, 0);
	position: absolute;
	z-index: 12;
	font-size: 12px;
}
.tile-bottomlabel {

	color: white;
	background-color: rgb(17, 17, 17);
	padding: 2% 2% 2% 4%;
	position: absolute;
	z-index: 12;
	font-size: 12px;
}
.tile-button {

	display: grid;
	margin: 0;
	position: absolute;
	top: 50%;
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	border:none;


	color: rgba(255, 255, 255, 0.76);
	background-color: #53535379;
	border-radius:50%;
	cursor: pointer;
	width: 3vw;
	height: 3vw;
	min-height: 20px;
	min-width: 20px;
	justify-items: center;
	align-content: center;
	vertical-align: center;
	z-index: 30;
}
.tile-icon {
	font-size: 70%;
	z-index: 31;
}

.grid-layout-large {
	margin: 0;
}

.grid-layout-small {
	display:grid;
	/* grid-template-columns: 32vw 32vw 32vw; */
	width: 98%;
	gap: 5px;
	/* grid-auto-rows: 23vw; */
	grid-auto-flow: dense;
	margin: 1vw;
	/* grid-template-columns: repeat(3,1fr); */
	grid-template-columns: repeat(auto-fill, minmax(200px, 3fr));

}

.grid-item {
	position: relative;
	width: minmax(32vw, 200px);
	height: 200px;
	background-color: rgb(39, 39, 39);
	border-radius: 15px;
	overflow: hidden;
	z-index: 1;
	/* transition: width .3s, height .3s; */
	display: grid;
	align-items: center;
	justify-content: center;
	align-content: center;

}

.span-2 {
	grid-column-end: span 2;
	grid-row-end: span 2;
}

.span-3 {
	grid-column-end: span3;
	grid-row-end: span 1;
}

.vid_input {
	margin: 0;
	width: 300px;

	-ms-transform: translateY(-50%);
	transform: translateY(-9.5%);
}



.dot-label {
	height: 10px;
	width: 10px;
	background-color: rgb(255, 0, 0);
	border-radius: 50%;
	display: inline-block
}

.volume-wrapper {
	display: inline-block;
	width: 20px;
	height: 150px;
	padding: 0;
}

.volume-wrapper input {
	width: 150px;
	height: 20px;
	margin: 0;
	transform-origin: 75px 75px;
	transform: rotate(-90deg);
}

/* Place the navbar at the bottom of the page, and make it stick */

.navbar {
	background-color: rgba(51, 51, 51, 0.514);
	overflow: hidden;
	position: fixed;
	display: grid;
	grid-auto-flow: column;
	gap: 7vw;
	justify-content: center;
	bottom: 0;
	width: 100vw;
	height: 10vh;
	min-height: 65px;
	z-index: 15;

}
.toolbar-buttongroup {

display: grid;
grid-auto-flow: column;
gap: 3vw;

}


.slider_container {
	width: 70vw;
	height: calc(20px + 1.5vh);
	position: fixed;
	left: 50%;
	bottom: calc(55px + 9vh);
	transform: translate(-50%, -50%);
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(68, 68, 68, 0.5);
	border-radius: 30px;
	z-index:900;
	transition-duration: 2s;
  }
  
  .slider {
	-webkit-appearance: none;
	width: 96%;
	height: calc(5px + .5vh);
	background: rgba(68, 68, 68, 0.5);
	outline: none;
	z-index: 901;
	border-radius: 15px;
  }
  
  .slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 2vmax;
	height: 2vmax;
	background: #ffffff;
	border-radius: 50%;
	z-index: 902;

  }

  .invisibleClickDiv {
	background-color: rgba(0, 0, 0, 0); 
	width: 100vw; 
	height:100vh; 
	position: fixed; 
	top: 0;
	left: 0;
	z-index: 20;
  }


  .op-context-panel {
	display:none;
  }

  .op-warning {
	  display:none;
  }

  .blank-tile {
	  background-color:rgba(15, 15, 15, 0.568);
	  color: #3a3a3a00;
		font-size: 10vw;

  }

  .ovp-ellipsis {
	  color:rgb(255, 0, 0);
  }

  .ovp-volume-slider {
	color:rgb(255, 0, 0);
  }

  .ovp-volume-slider-value {
	color:rgb(112, 0, 122);
  }