html, body {
	width: 100%;
	height: 100%;
	overflow: hidden;
	margin: 0;
	border: 0;
	padding: 0;
	background-color:var(--btn-default-background-color,#FFF);
}
#videoContainer.video-private {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: grey;
	color: var(--btn-default-background-color,#FFF);
}

.media-private{
	display: flex;
	align-items: center; 	
	justify-content: center;
	background-color: grey;
	color: var(--btn-default-background-color,#FFF);
	height: 100%;
	width: 100%;
}
.media-thumbnail{
	background-position:center center;
	background-repeat: no-repeat;
	background-size:100%;
	height:100%;
	width:100%;
	cursor:pointer;
}
.media-thumbnail:hover{
	opacity:0.8;
}
.direct-link-overflow{
	overflow-x:hidden;
	white-space:nowrap;
	text-overflow:ellipsis;
}
.download-link-width{
	width: 90px !important;
}
.media-link{
    height: 100%;
    width: 100%;
    display: block;
}

.speed-option-wrapper{
	position: relative;
}

.player-icon-class {
	/* min-width: 36px; */
	/* width: 5%; */
	height: 100%;
    vertical-align: middle;
    position: relative;
}

.video-with-overlay .overlay {
	background-color: transparent;
	transform: translateY(0%) !important;
	-webkit-transform: translateY(0%) !important;
	pointer-events: none;
	opacity: 0.7;
	-webkit-transition: opacity 0.3s ease-in-out;
	-moz-transition: opacity 0.3s ease-in-out;
	-ms-transition: opacity 0.3s ease-in-out;
	-o-transition: opacity 0.3s ease-in-out;
	transition: opacity 0.3s ease-in-out;
}

.video-with-overlay:hover .overlay {
	opacity: 0.9;
}

.video-with-overlay .overlay img {
	display: block;
	position: relative;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	height: 50%;
	width: 50%;
}

#bodyOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width : 100%;
	height: 100%;
	z-index: 2147483647;		/* This ensures the overlay is visible in fullscreen */
	background: transparent;
	background-color: transparent;
	opacity: 0.9;
}
.bodyOverlayIcon {
	position: absolute;
	font-size: 23vw;
	width: auto;
	height: auto;
	color: var(--btn-default-background-color,#FFF);
	background-color: black;
	cursor: pointer;
}

#subtitle-icon {
    display: inline-block;
    padding: 0;
    text-align: center;
    cursor: pointer;
    font-variant: small-caps;
    margin-top: 7px;
}

#di_reactCaptions {
	position: absolute;
    bottom: 41px;
    /* transform: translateX(-50px); */
    left: 25%;
    /* background: black; */
    min-height: 1.5em;
    font-size: 1.5em;
    height: auto;
    width: 50%;
    /* max-width: 70%; */
    margin: 0px auto;
}

.liveHumanCaptionsStyle{
	position: absolute;
    bottom: 41px;
    /* transform: translateX(-50px); */
    left: 25%;
    /* background: black; */
    min-height: 1.5em;
    font-size: 1.5em;
    height: auto;
    width: 50%;
    /* max-width: 70%; */
    margin: 0px auto;
}

@media screen and (max-width: 600px) {
	#di_reactCaptions {
		font-size: 1em;
	}

}

#di_reactCaptions span {
	background: black;
	color: var(--btn-default-background-color,#FFF);
	padding: 0.2em;
}

.fullscreen-video-wrapper #di_reactCaptions {
	bottom: 101px;
}

#header {
	position: absolute;
	top: 0; 
	width: 100%;
	height: 8%;
	z-index: 10;
	display: none;
}

#header.embedded {
	height: 6%;
}

.instLogo {
	float: right;
	max-height: 100%;
	background-repeat: no-repeat;
	max-width: 18%;
  	max-height: 100%;
}

.instInfo {
	display: inline-block;
	float: left;
	font-family: Segoe UI,Helvetica,sans-serif;
	margin-left: 2%;
	
	width: 80%;
	
	position: relative;
  	top: 50%;
  	transform: translateY(-50%);
  	-webkit-transform: translateY(-50%);
  	max-height: 100%;
}

.instInfo.embedded {
	font-size: 2.2vw;
}

#container{
	width: 100%;
	height: 100% !important; /* jw-flag-aspect-mode uses "height: auto !important", we need to override it. */
	background-color: whitesmoke;		/* keep this value for the background-color as the one in #videoContainer,
										so that the color is consistent */
}

#videoContainer {
	width:100%;
    position: relative;
	background-color: #1C1D23;
	max-width: none !important;
	max-height: none !important;
	/* display: flex; */
}
.mobileVideoContainer#videoContainer{
	display: flex;
}
:root .minVideos{
	padding:14px;
}
.minVideos {
	display:grid;
	position: relative;
	height: 100%;
	float: left;
	flex-basis: 25%;
	flex-grow: 0.9;
	flex-shrink: 1;
	padding: 20px;
}
.maxVideos {
	position: relative;
	height: 100%;
	float: right;
	align-items: center;
	display: flex;
	padding:5px;
}
.midVideos{
	height: 85%;
}
.maxStream {
	margin-right: auto;
	margin-left: auto;
	box-shadow: 0 0 5px black;
}

.maxStream:-webkit-full-screen{
    object-fit: contain;
}
.maxStream:fullscreen{
    object-fit: contain;
}
.maxStream:-moz-full-screen{
    object-fit: contain;
}
.maxStream:-ms-fullscreen{
    object-fit: contain;
}

.fullscreen-video-wrapper{
	height: 100%;
	width: 100%;
	background-color: #1C1D23;
	position: relative;
	display: flex;
	flex-basis: 0;
	justify-content: flex-end;
}
.maxStream.in-fullscreen{
	height: 100% !important;
	width: 100% !important;
}
.minStream {
	margin-left: auto;
	margin-right: auto;
	border: 2px solid #1C1D23;
	box-shadow: 0 0 5px #1C1D23;
	max-height: 21em;
	width: 98%;
}
.midStream{
	border: 2px solid #1C1D23;
	box-shadow: 0 0 5px #1C1D23;
	max-width: 38%;
}

.minStream.twoStreamsMinMax{
	height: auto;
	max-height: 50%;
	max-width: 95% !important; 
}

.maxVideos.twoStreamsMinMax{
	width: 65%;
}

.midVideos.twoStreams{
	display: -webkit-flex; 
	display: -moz-flex;
	-moz-justify-content: space-around;
    -webkit-justify-content: space-around;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.midVideos.showThumbnail{
	height: 75%;
}
.mid-stream-row{
	width: 100%;
	height: 50%;
	display: block;
}
.maxStream.showThumbnail {
	margin: auto;
}
.minStream.showThumbnail {
	width: auto;
	margin: auto;
	margin-bottom: 1.5%;
	max-width: 100%;
}

.overflow-stream{
	display: none !important;
}
.surplus-button{
	position : relative;
	margin-left : auto;
	margin-right : auto;
}
.surplus-button:hover{
	cursor:pointer;
}
.thumbnailContainer{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 11%;
	background-repeat: no-repeat;
	clear: both;
	border: 2px solid black;
	box-shadow: 0 0 5px black;
}

.thumbnailRow {
	position: absolute;
	height: 100%;
	width: 100%;
}

.thumbnailRow img {
	height: 100%;
	width: auto;
}

.thumbnailRow img:hover{
	cursor: pointer;
}
.thumbnail-container{
	display: inline-block;
	height: 98%;
	width: auto;
	border: 1px solid #ababab;
    border-radius: 4px;
    margin-right: 10px;
}
.thumbnail-time{
	height: 25%;
	width: 30%;
	position: relative;
	bottom: 20px;
	border: 1px solid black;
	background: black;
	color: var(--btn-default-background-color,#FFF);
	text-align: center;
	opacity: 0.85;
}
.thumbnail-time-with-caption{
	height: 25%;
	width: 40%;
	position: relative;
	bottom: 15px;
	border: 1px solid black;
	background: black;
	color: var(--btn-default-background-color,#FFF);
	text-align: center;
	opacity: 0.85;
}
.maxOverlay {
	position: absolute;
	top: 0;
	left: 0;
	background-color: transparent;
	z-index: 100;
	font-size: 15vw;
}

.minOverlay {
	position: absolute;
	top: 0;
	left: 0;
	background-color: transparent;
	z-index: 100;
	font-size: 6vw;
}

.videoSubWrapper{
	float: right;
	height: 5%;
	width: 100%;
	background-color: #2a2a2a;
	display: flex;
	align-items: center;
}

#notSupported {
	text-align: center;
	font-size : 30px;
}
.hover-option{
	z-index: 1;
}
video {
	display: block;
	margin: 0;
	padding: 0;
	object-fit: fill;
}
#tnPreview {
	position: relative;
	top: -120px;
	height: 100px;
	width: 150px;
	background-repeat: no-repeat;
	visibility: hidden;
}

.playbar-wrapper {
	float: left;
	position: fixed;
	height: 4.5%;
	bottom: 0px; 
	max-height: 50px;
	z-index: 2147483647;	/* this ensures that the playbar is visible when fullscreened */
}

@media screen and (max-width: 600px) {
	.playbar-wrapper {
		width: 100%;
		position: fixed;
		height: 7.5%;
		bottom: 0px; 
		max-height: 40px;
		z-index: 2147483647;	/* this ensures that the playbar is visible when fullscreened */
	}
}
.player {
	background: #1a1a1a;
	box-sizing: border-box;
	border-radius: 0;
	-moz-box-sizing: border-box;
	position: relative;
	z-index: 10;
	opacity: 1;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	-webkit-transition: opacity 0.2s ease-in;
	transition: opacity 0.2s ease-in;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	width: 100%;
	margin:auto;
	height: 75%;
	padding:10px 10px 10px 19px !important;
}

.player.embedded {
	height: 5%;
}

.player .play-pause {
	/*font-size: 3rem;
	line-height: 175%;*/
	display: inline-block;
	float: left;
	text-shadow: 0 0 0 #fff;
	color: rgba(255,255,255,0.8);
	padding: 0;
	text-align: center;
	font-variant: small-caps;
}

.player .back-10-second{
	display: inline-block;
	float: left;
	text-shadow: 0 0 0 #fff;
	color: rgba(255,255,255,0.8);
	padding: 0;
	text-align: center;
	font-variant: small-caps;
}

.player .confusion{
	display: inline-block;
	float: right;
	text-shadow: 0 0 0 #fff;
	color: rgba(255,255,255,0.8);
	padding: 0;
	text-align: center;
	font-variant: small-caps;
}

.sidebar-icons {
    stroke: #ffffff;
    fill: none;
    height: 1em;
    width: 1em;
    margin-right: 5%;
    margin-bottom: -1.5%;
}

.sidebar-icons:hover {
    stroke: #ffffff;
    fill: none;
}

.play-pause.embedded {
	font-size: 2vw;
}

.player .time {
	font-weight: bold;
	display: table-cell;
	color: #f0e9e9;
	font-variant: small-caps;
    font-size: 1em !important;
	vertical-align: middle;
	width: 100%;
 	text-align: center;
}

@media screen and (max-width: 800px) {
	.player .time {
		font-weight: bold;
		color: #616161;
		font-variant: small-caps;
		font-size: 0.8em;
		
		width: 100%;
	 	text-align: left !important;
	}
}
@media screen and (max-width: 500px) {
	.player .time {
		font-weight: bold;
		color: #616161;
		font-variant: small-caps;
		font-size: 0.6em;
		
		width: 100%;
	 	text-align: left !important;
	}
}

.time.embedded {
	font-size: 1.5vw;
	margin-top: 0.4%;
}

.player .progress {
	width: 101%;
	height: 8px;
	background: #676767 !important;
	float: left;
	cursor: pointer;
	padding: 0;
	position: relative;
	font-variant: normal;
	margin-bottom: 0;
	overflow: visible;
	border-radius:5px !important;
}

.progress {
	height: 100%;
	width: 100%;
	background:#FFFFFF59;
	cursor: pointer;
	padding: 0;
	position: relative;
	font-variant: normal;
	margin-bottom: 0;
	border-radius:4px !important;
	overflow: visible;
}

#progressButtonSlider{
	    background: white;
    border-radius: 30px !important;
    width: 14px;
    height: 14px;
    position: absolute;
    z-index: 100;
    text-decoration: overline;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.player .progress-time-wrapper {
	display: inline-block;
	float: left;
	width: 100%;
	height: 20%;
	/* border-right: 1px solid #3a3a3a; */
	padding-left: 2%;
	padding-right: 2%;
}

.player .progress-bar {
	background: #dadada !important;
	border-radius: 5px !important;
	height: 8px;
	position: relative;
	width: 0;
	transition: none;
}

.progress-bar {
	background:white;
	border-radius: 5px;
	height: 100%;
	position: relative;
	width: 0;
	transition: none;
}

.place-holder-image{
	margin-left: auto;
	margin-right: auto;
	display: block;
	width: 100%;
}
.player .button-holder {
	width: 0px;
	height: 120%;
	position: relative;
}

.button-holder {
	width: 0px;
	height: 120%;
	position: relative;
	left: 100%;
}

.player .progress-button {
	background: var(--btn-default-background-color,#FFF);
	border-radius: 30px !important;
	width: 12px;
	height: 12px;
	position: absolute;
	z-index: 100;
	text-decoration: overline;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}



/*.player .play, .player .pause-button .volume {
	-webkit-transition: all 0.2s ease-out;
}*/

.player .play .pause-button, .player .pause .play-button {
	display: none;
}

.player .volume {
	position: relative;
	float: left;
}

#volumeHolderOfVideo {
	pointer-events: none;
}

.player .volume-holder {
	height: 100px;
	width: 100%;
	background: black;
	position: absolute;
	/*display: none;*/
	background: #1a1a1a;
	left: 0;
	border-radius: 5px 5px 0 0;
	top: -100px;
	opacity: 0;
}

.player .volume-bar-holder {
	background: #676767;
	width: 20px;
	margin: 15px auto;
	height: 80px;
	border-radius: 5px;
	position: relative;
	cursor: pointer;
}

.player .volume-button {
	background: #fff;
	box-shadow: 0 0 20px rgba(0,0,0,0.3);
	border-radius: 30px !important;
	width: 20px;
	height: 20px;
}

.player .volume-button-holder {
	position: relative;
	top: -10px;	
}

.player .volume-bar {
	background: #dadada;
	border-radius: 5px;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
}

.player .volume-icon {
	width: 100% !important;		/* Need this because of wrapper */
}

.player .fullscreen {
	display: inline-block;
	/*float: right;*/
	text-shadow: 0 0 0 #fff;
	color: rgba(255,255,255,0.8);
	padding: 0;
	text-align: center;
	cursor: pointer;
	font-variant: small-caps;
}

.fullscreen.embedded {
	font-size: 2vw;
}

.player .external {
	font-size: 1.7vw;
	float: right;
	display: none;
	text-shadow: 0 0 0 #fff;
	color: rgba(255,255,255,0.8);
	padding: 0;
	text-align: center;
	cursor: pointer;
	font-variant: small-caps;
}

.external.embedded {
	display: inline-block;
	font-size: 2vw;
}

.player .subtitle {
	font-size: 1.7vw;
	display: inline-block;
	float: right;
	/*text-shadow: 0 0 0 #fff;*/
	color: rgba(255,255,255,0.8);
	padding: 0;
	text-align: center;
	cursor: pointer;
	font-variant: small-caps;
}
.subtitle.embedded {
	font-size: 2vw;
}

.player .menuitem {
	height : 33px;
	display : table-row;
	width : 100%;
	cursor:pointer;
	/* border-radius:5px !important; */
}

@media screen and (max-width: 800px) {
	.player .menuitem {
		height : 20px;
		display : table-row;
		width : 100%;
		cursor:pointer;
		/* border-radius:5px !important; */
	}
}

.player .menuitem-label {
	font-size: 14px;
	display: table-cell;
	text-align: left;
	vertical-align: middle;
	padding: 0 6px;
}

@media screen and (max-width: 800px) {
	.player .menuitem-label {
		font-size: 2vw;
		display: table-cell;
		text-align: left;
		vertical-align: middle;
		padding: 0 6px;
	}
}

.player .menuitem-content {
	font-size: 13px;
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}

@media screen and (max-width: 800px) {
	.player .menuitem-content {
		font-size: 2vw;
		display: table-cell;
		text-align: center;
		vertical-align: middle;
	}
}


.player .menuitem-textselection{
	font-size: 13px;
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}

.player .settings {
	font-size: 1.7vw;
	display: inline-block;
	float: right;
	text-shadow: 0 0 0 #fff;
	color: rgba(255,255,255,0.8);
	padding: 0;
	text-align: center;
	cursor: pointer;
	font-variant: small-caps;
}
.player .thumbnail-icon {
	font-size: 1.7vw;
	display: inline-block;
	float: right;
	text-shadow: 0 0 0 #fff;
	color: rgba(255,255,255,0.8);
	padding: 0;
	text-align: center;
	cursor: pointer;
	font-variant: small-caps;
}

.caption-not-visible{
	display: none;
}
.player .audio-description{
	font-size: 2.2vw;
	display: inline-block;
	float: right;
	text-shadow: 0 0 0 #fff;
	color: rgba(255,255,255,0.8);
	padding: 0;
	text-align: center;
	cursor: pointer;
	font-variant: small-caps;
}
#audioDescriptionButton{
	opacity: 0.5;
}
.thumbnail-icon.embedded {
	font-size: 2vw;
}

.player .speed {
	position: relative;
	color: #fff;
	font-weight: bold;
	display: inline-block;
	float: left;
	color: #616161;
	padding: 0;
	font-variant: small-caps;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
	height: 100%;
	font-size: 1vw;
}

.speed.embedded {
	font-size: 2vw;
}

.player .speed-holder {
	width: 100%;
	left: 0;
	border-radius: 5px 5px 0 0;
	opacity: 0;
}

.player .caption-holder {
	width: 100%;
	left: 0;
	border-radius: 5px 5px 0 0;
	opacity: 0;
}

.player .quality {
	position: relative;
	color: #616161;
	font-weight: bold;
	display: inline-block;
	float: left;
	font-variant: small-caps;
	text-align: center;
	vertical-align: middle;
	cursor: pointer;
}

.player .quality-icon{
	width: 100%;			/* Need this because of wrapper */
}

.player .settings-icon{
	width: 100%;			
}

.player .flash-fallback {
	/*font-size: 3rem;
	line-height: 175%;*/
	font-size: 2.2vw;
	display: inline-block;
	float: left;
	text-shadow: 0 0 0 #fff;
	color: rgba(255,255,255,0.8);
	padding: 0;
	text-align: center;
	cursor: pointer;
	font-variant: small-caps;
}

.player .table-of-contents-button {
	/*font-size: 3rem;
	line-height: 175%;*/
	font-size: 2.2vw;
	display: inline-block;
	float: right;
	text-shadow: 0 0 0 #fff;
	color: rgba(255,255,255,0.8);
	padding: 0;
	text-align: center;
	cursor: pointer;
	font-variant: small-caps;
}

.player .resize-video {
	/*font-size: 3rem;
	line-height: 175%;*/
	font-size: 2.2vw;
	display: inline-block;
	float: right;
	text-shadow: 0 0 0 #fff;
	color: rgba(255,255,255,0.8);
	padding: 0;
	cursor: pointer;
	font-variant: small-caps;
	text-align: center;
}

.player .quality-holder {
	width: 100%;
	/* background: #a3a3a3; */
	border-radius: 5px 5px 0 0;
	opacity: 0;
	font-size: 1vw;
	background: rgba(0,0,0,0.8);
}

.player .settings-holder-wrapper {
	margin-bottom: 5px;
	position: absolute; 
	height: 50px; 
	width: 180px; 
	right: 10px;
	bottom: 48px; 
	display: none;
	color: var(--btn-default-background-color,#FFF);
	/* background: rgba(0,0,0,0.8); */
	/* border-radius:5px !important; */
}
@media screen and (max-width: 800px) {
	.player .settings-holder-wrapper {
		margin-bottom: 5px;
		position: absolute; 
		height: 50px; 
		width: 180px; 
		right: 5%; 
		bottom: 100%; 
		display: none;
		color: var(--btn-default-background-color,#FFF);
		background: rgba(0,0,0,0.8);
		/* border-radius:5px !important; */
	}
}

.player .playspeed-menu-holder {
	display : none;
	height : 155px;
	background: rgba(0,0,0,0.8);
}
.player .quality-menu-holder{
	background: rgba(0,0,0,0.8);
}

.player .sub-menu-holder{
	display : none;
	background: rgba(0,0,0,0.8);
}


.player .settings-holder{
	width: 180px;
	height: 50px;
	border-radius: 5px 5px 0 0;
	display:none;
	font-size: 1vw;
	background: rgba(0,0,0,0.7);
	color: inherit;
}

@media screen and (max-width: 800px) {
	
	.player .settings-holder{
		width: 100%;
		height: 20%;
		border-radius: 5px 5px 0 0;
		display:none;
		font-size: 1vw;
		border-radius:5px !important;
		color: inherit;
	}	
	
}
table {
	width: 100%;
}
td:hover {
	background-color: #2a2a2a !important;
}
.selected {
}
tr > td:last-child {
	border: none;
}

video::-webkit-media-controls {
	display: none !important;
}
.player::-moz-full-screen {
	z-index: 2147483647 !important;
} 

.speed-text {
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	left: 40%;
	font-size: 2vw;
}

.svg-player-icon {
	stroke: none;
    fill: #e7e9eb !important;
    color: #d6dcdf;
    -webkit-transition: fill 200ms;
    transition: fill 200ms;
    position:absolute;
    top:50%;
    bottom:50%;
    /* transform:translate(-50%, -50%);
    -webkit-transform:translate(-50%, -50%); */
}

#volume-icon-max {
	left:50%;
}

@media all and (-ms-high-contrast:none)
{
	*::-ms-backdrop, .svg-player-icon { transform:translate(0%, -50%); } /* IE11 */
	
	*::-ms-backdrop, #volume-icon-max, #volume-icon-min, #volume-icon-mid, #volume-icon-mute {
		left:0;
	}
}

.svg-player-icon:hover {
    stroke: none;
    fill: #949494;
    color: #949494;
    cursor: pointer;
}

#subtitle-icon.off .svg-player-icon {
    fill: #949494;
}

#subtitle-icon.disabled {
	cursor: not-allowed;
	pointer-events: none;
}

#subtitle-icon.disabled svg, #subtitle-icon.disabled:hover svg {
    fill: #6a6a6a;
    cursor: not-allowed;
    stroke: #0d0808;
}

#di_chatDisplayPlayerButton.disabled {
	cursor: not-allowed;
	pointer-events: none;
}

#di_chatDisplayPlayerButton.disabled path, #di_chatDisplayPlayerButton.disabled:hover path {
    fill: #6a6a6a;
    cursor: not-allowed;
    stroke: #0d0808;
}

#settingsBtn.disabled {
	cursor: not-allowed;
	pointer-events: none;
}

#settingsBtn.disabled svg, #settingsBtn.disabled:hover svg {
    fill: #6a6a6a;
    cursor: not-allowed;
    stroke: #0d0808;
}

.time-wrapper{
	position: relative;
	display: table;
	float: left;
	height: 100%;
	width: 8%;
}

#countDownOverlay{
	position: absolute;
	left: 0;
	top: 0;
	width: 100% !important;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
    align-items: center;
}

#liveStreamCountDown{
	position: absolute;
	left: 0;
	top: 0;
	width: 100% !important;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#liveStreamSpinner{
	height: 70%;
	background: url(/Dashboard/icons/spinning-circles.svg) no-repeat;
	background-position: center
}

#previewImage{
	height: 100%;
	width: 100%;
	position: absolute;
}

#previewPlay{
	height:15%;				
	width: 10%;
	opacity: 0.85;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 1000;
}

#previewPlay:focus-visible{
	outline: 10px solid white;
}

#previewPlay:hover{
	cursor: pointer;
}

#seekIconPreview{
	height: 100%;
	width: 100%;
	text-align: center;
}

#previewLoading{
	font-size: 12vh;
	display: inline-block;
	line-height: 125%;
}

.svg-preview-icon{
	stroke: none !important;
	width: 50%;
	height: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	fill: #ffffff;
}

.speed {
   	line-height: 28px;
   	height: 28px;
 	text-align: center !important;
	vertical-align: bottom !important;
}

td {
	width: 100%;
	display: table;
	border-bottom: 1px solid var(--btn-default-background-color,#FFF);
	background-color: #a3a3a3;
}	
.speed-holder {
	line-height: 12px;
}

.speed-holder {
 	line-height: 12px;
}

.toc-text-box:hover{
	cursor: pointer;
	background-color: rgba(206, 219, 239, 1);
}

.toc-notes-wrapper:hover{
	background-color: rgba(206, 219, 239, 1);
}

.DocumentsViewerCloserClass{
	position: absolute;
	right: 45%;
	top: 10%;
	width : 2%;
	height : 45px;
	background-color:grey;
}

.DocumentsViewerCloserSpan{
	position: absolute;
	right: -20%;
	top: 13%;
	position: absolute;
	
}

.LinkedDocumentsViewer {
	position: absolute;
	right: 0;
	top: 0;
	width: 45%;
	/*max-width: 400px;*/
	height: 100%;
	background-color: whitesmoke;
}

.table-of-contents{
	position: absolute;
	right: 0;
	top: 0;
	width: 30%;
	max-width: 400px;
	height: 100%;
	padding-left: 20px;
	background-color: whitesmoke;
	
	opacity: 0.25;
	-webkit-transition: opacity 0.25s ease-in-out;
  	-moz-transition: opacity 0.25s ease-in-out;
  	-ms-transition: opacity 0.25s ease-in-out;
  	-o-transition: opacity 0.25s ease-in-out;
  	transition: opacity 0.25s ease-in-out;
}

.table-of-contents:hover{
  	zoom: 1;
  	filter: alpha(opacity=50);
  	opacity: 1;
	-webkit-transition: opacity 0.25s ease-in-out;
  	-moz-transition: opacity 0.25s ease-in-out;
  	-ms-transition: opacity 0.25s ease-in-out;
  	-o-transition: opacity 0.25s ease-in-out;
  	transition: opacity 0.25s ease-in-out;
}

.mini-sidebar{
	height: 60%;
	padding-left: 5%;
}

#miniTOCContents{
	overflow-y: scroll;
	height: 70%;
}

.edit-note-input{
	margin-bottom: 5px;
	width: 80%;
}

#notesContents{
	overflow-y: scroll;
}

#tocContents{
	overflow-y: scroll;
}

#captionsContents{
	overflow-y: scroll;
}

#ocrContents{
	overflow-y: scroll;
}

#fullTOC{
	height: 85%;
	display: block;
}

#miniTOC{
	display: inline-block;
	height: 85%;
}

#noteInput{
	width: 90%;
}

.toc-text-box{
	width: 100%;
	display: inline-block;
}

.contents-label{
	padding-left: 0%;
	padding-right: 0%;
}

.time-box{
	border: 1px solid #d4d4d4;
    padding: 1px 4px;
    font-size: 10px;
    border-radius: 3px !important;
    margin-right: 2px;
    float: right;
}

.notes-entry{
	word-break: break-word;
	max-width: 75%;
}

.toc-entry{
	word-break: break-word;
	max-width: 75%;
}

.miniTOC-entry{
	max-width: 75%;
	word-break: break-word;
}

.caption-entry{
	float: left;
	max-width: 75%;
}

.toc-notes-wrapper{
	display: flex;
}

.tocHeader{
	background: #1646a0;
    color: #fff;
    text-transform: uppercase;
    font-size: 1em;
    margin-left: -20px;
    margin-right: 0;
    margin-top: 0;
    padding-top: 2%;
    padding-bottom: 2%;
    padding-left: 3%;
}

.miniTOCHeader{
	margin-left: -6%;
	padding-left: 6%;
}

.delete-note-button:hover{
	cursor: pointer;
}

.edit-note-button:hover{
	cursor: pointer;
}

.delete-note-button{
	margin-left: 2px;
	margin-right: 1px;
	float: right;
	font-size: 14px;
	align-self: center;
	visibility: hidden;
}

.edit-note-button{
	margin-left: 2px;
	margin-right: 1px;
	float: right;
	font-size: 14px;
	align-self: center;
	visibility: hidden;
}

.input-button{
	border: none;
    background: transparent;
    padding: 1px 4px;
    width: 10%;
}

#ksButton{
	margin-top: 3%;
	text-align: center;
	position: absolute;
	width: 84%;
	bottom: 0;
}

#ksButtonText{
	border: 1px solid #ddd;
	cursor: pointer;
	width: 45%;
	margin-left: auto;
	margin-right: auto;
	font-size: 1em;
	border-radius: .3125rem;
	max-width: 100px;
	float: left;
}

#ksButtonDownload{
	border: 1px solid #ddd;
	cursor: pointer;
	width: 45%;
	margin-left: auto;
	margin-right: auto;
	font-size: 1em;
	border-radius: .3125rem;
	max-width: 100px;
	float: right;
}

.overlay{
	width: 0;
	height: 0;
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0, 0.3);
    overflow-x: hidden;
    z-index: 100;
    overflow-y: hidden;
}

.downloadOverlay{
	position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0, 0.3);
    overflow-x: hidden;
    z-index: 100;
    overflow-y: hidden;
}

#courseName{
    font-size: 2vh;
    line-height: 1;
    margin-top: 1%;
    color: #333333;
    font-weight: bold;
}
#videoTitle{
    font-size: 3vh;
    line-height: 1;
    margin: 0;
    color: #333333;
    font-weight: 900 !important;
}
#titleText{
	color: var(--btn-default-background-color,#FFF);
	background-color: rgba(0, 0, 0, 0.8);
}


.overlay-window-download{
	height: 75%;
	width: 53%;
	margin-left: auto;
	margin-right: auto;
	top: 50%;
	bottom: 50%;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
	-webkit-transform:translate(-50%, -50%);
	background-color: var(--btn-default-background-color,#FFF);
	overflow-y: auto;
}

.overlay-window{
	height: 75%;
	width: 50%;
	margin-left: auto;
	margin-right: auto;
	top: 50%;
	bottom: 50%;
	left: 50%;
	position: absolute;
	transform: translate(-50%, -50%);
	-webkit-transform:translate(-50%, -50%);
	background-color: var(--btn-default-background-color,#FFF);
	overflow-y: auto;
	padding-bottom: 2%;
}

#ksTableWrapper{
	overflow-y: auto;
	margin-left: 5%;
}

#ksTable{
	width: 98%;
}

#ksHeader{
	font-size: 2em;
	text-align: center;
	background-color: white !important;
}

#ksHeader:hover{
	background-color: white !important;
}

#ksCloseButton{
	margin-top: 2%;
	margin-right: 2%;
}

.overlay-close-button{
	float: right;
}

.overlay-close-button:hover{
	cursor: pointer;
}

.ks-content{
	font-size: 1em;
	padding-left: 3%;
	border-bottom: none;
	width: 80%;
	display: table-cell;
	border: 1px solid #cccccc !important;
	background-color: white !important;
}

.ks-content:hover{
	background-color: white !important;
}

#subclipWindow{
	padding: 2%
}

#subclipSubheading0,#subclipSubheading1, #subclipSubheading2, #subclipSubheading3{
	color: #777777;
	font-size: 1.2em;
	padding-top: 2%;
}

#subclipStart, #subclipEnd{
	resize: none;
	border: 1px solid #aaaaaa;
	margin-top: 2%;
	height: 5%;
	width: 20%;
}

#LinkInput, #LinkInput2{
	resize: none;
	border: 1px solid #aaaaaa;
	margin-top: 2%;
	height: 55%;
	width: 100%;
	cursor: text;
}

#confusionInput{
	resize: none;
	border: 1px solid #aaaaaa;
	margin-top: 2%;
	height: 55%;
	width: 100%;
}
#confusionHeader{
	font-size: 2em;
}
#confusionWindow{
	padding: 2%
}

#downloadWindow{
	padding: 2%;
}
#confusionSubheading{
	color: #777777;
	font-size: 1.2em;
	padding-top: 2%;
}
.overlay-button{
	padding: 10px 20px;
	border-radius : 5px !important;
	color: white !important;
	font-weight: bold;
	background-color: #00af50;
	float: left;
	margin-top: 2%;
}
.overlay-button:hover{
	cursor:pointer;
}
#searchBarSection{
	padding-top: 3%;
	height: 8%;
}

#TOCCloseBtn{
	position: absolute;
	top: 0.5px;
	left: 0.5px;
	font-size: 18px;
	cursor: pointer;
}

#searchBar{
	width: 80%;
}

.text-input{
	border-radius: 5px;
	background: #f1f1f1;
	box-shadow: none;
}

.text-input:hover{
	box-shadow: 0 3px 8px 0 rgba(0,0,0,0.2), 0 0 0 1px rgba(0,0,0,0.08) !important;
}

#searchBarSectionMini{
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	padding-left: 0%;
	padding-right: 0%;
	color: #0e0e0e;
}

#searchBarMini{
	width: 100%;
	border-top-width: 0px;
	border-bottom-width: 0px;
	padding-bottom: 0px;
}

.no-items-found-message{
	text-align: center;
}

/* solution to hide iOS play button, source: http://stackoverflow.com/questions/8911247/hide-iphone-html5-video-play-button */
/* This used to work for parent element of button divs */

/* But it is not enough now, below dont hide play button parent div */

*::-webkit-media-controls-panel {
  display: none!important;
  -webkit-appearance: none;
}

/* Old shadow dom for play button */

*::--webkit-media-controls-play-button {
  display: none!important;
  -webkit-appearance: none;
}

/* New shadow dom for play button */

/* This one works */

*::-webkit-media-controls-start-playback-button {
  display: none!important;
  -webkit-appearance: none;
}


.LinkedDocumentHeader{
	background: #1646a0;
    color: #fff;
    text-transform: uppercase;
    font-size: 1em;
    margin-left: -20px;
    margin-right: 0;
    margin-top: 0;
    padding-top: 3%;
    padding-bottom: 3%;
    padding-left: 3%;
}

.LinkedDocumentContent{
	overflow-y: scroll;
	height:32%;
}

.sk-circle {
  margin: 100px auto;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 22%;
  left: 46%;
  z-index: 2147483648;
}
.sk-circle .sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.sk-circle .sk-child:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #FFFFFF;
  border-radius: 100%;
  -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
          animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}
.sk-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg); }
.sk-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
      -ms-transform: rotate(60deg);
          transform: rotate(60deg); }
.sk-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg); }
.sk-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
      -ms-transform: rotate(120deg);
          transform: rotate(120deg); }
.sk-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
      -ms-transform: rotate(150deg);
          transform: rotate(150deg); }
.sk-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg); }
.sk-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
      -ms-transform: rotate(210deg);
          transform: rotate(210deg); }
.sk-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
      -ms-transform: rotate(240deg);
          transform: rotate(240deg); }
.sk-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
          transform: rotate(270deg); }
.sk-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
      -ms-transform: rotate(300deg);
          transform: rotate(300deg); }
.sk-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
      -ms-transform: rotate(330deg);
          transform: rotate(330deg); }
.sk-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
          animation-delay: -1.1s; }
.sk-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
          animation-delay: -1s; }
.sk-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
          animation-delay: -0.9s; }
.sk-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
          animation-delay: -0.8s; }
.sk-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
          animation-delay: -0.7s; }
.sk-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
          animation-delay: -0.6s; }
.sk-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s; }
.sk-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
          animation-delay: -0.4s; }
.sk-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
          animation-delay: -0.3s; }
.sk-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
          animation-delay: -0.2s; }
.sk-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
          animation-delay: -0.1s; }

@-webkit-keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  } 40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes sk-circleBounceDelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
            transform: scale(0);
  } 40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@media screen and (min-width: 800px) {
	td {
		width: 100%;
		display: table;
		height: 15px;
		border-bottom: 1px solid var(--btn-default-background-color,#FFF);
	}
	
	.speed-holder {
   		line-height: 18px;
	}
	.speed {
	   	line-height: 30px;
	   	height: 30px;
   	   	width: 45px;
	 	text-align: center !important;
		vertical-align: bottom !important;
	}

	.time {
	    font-size: 1.2em !important;
	   	height: 100% !important;
	   	
	}
		
	.playbar-wrapper {
		position: fixed;
		height: 10%;
		bottom: 0px; 
		
	}
	.player {
		width: 100%;
	}
	
	#fullTOC{
		height: 92%;
	}
}

@media screen and (min-width: 1200px) {
	td {
		width: 100%;
		display: table;
		height: 15px;
		border-bottom: 1px solid var(--btn-default-background-color,#FFF);
	}
	
	.speed-holder {
   		line-height: 18px;
	}
	.speed {
	   	line-height: 38px;
	   	height: 38px;
   	   	width: 63px;
	 	text-align: center !important;
		vertical-align: bottom !important;
	}

	.time {
	    font-size: 1.3em !important;
	   	height: 100% !important;
	   	
	}

	
	.playbar-wrapper {
		position: fixed;
		height: 10%;
		bottom: 0px; 
		
	}
	.player {
		width: 100%;
	}
}

body {
font-family: 'Roboto', sans-serif;
}


@media screen and (min-width: 1600px) {
	
	td {
		width: 100%;
		display: table;
		height: 15px;
		border-bottom: 1px solid var(--btn-default-background-color,#FFF);
	}
	
	.speed-holder {
   		line-height: 18px;
	}
	.speed {
	   	line-height: 38px;
	   	height: 38px;
   	   	width: 63px;
	 	text-align: center !important;
		vertical-align: bottom !important;
	}

	.time {
	    font-size: 1.3em !important;
	   	height: 100% !important;
	   	
	}
	
	
	.playbar-wrapper {
		position: fixed;
		height: 10%;
		bottom: 0px; 
		
	}
	.player {
		width: 100%;
	}
	
}

/* Menu item hover states */
/* Used for the Setting Gear submenu items*/
.menuitem:hover {
	background-color: rgba(239, 233, 233, 0.7);
}

.volumeSliderContainer {
    margin-top:2px;
    width: 0; /* Width of the outside container */   
}

#volumeRange{
  border: solid 1px var(--btn-default-background-color,#FFF);
  border-radius: 8px;
  height: 7px;
  width: 100px;
  outline: none;
  transition: background 450ms ease-in;
  -webkit-appearance: none;
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%, rgb(0, 0, 0) 100%, rgb(0, 0, 0) 100%);
}

#countDownLabel{
	font-weight: 700;
    font-size: min(6vw, 50px);
    color: white;
    display: flex;
    align-items: center;
    margin-bottom:130px;
}

@media only screen and (max-width: 500px) {
  .mobileVideoContainer #countDownLabel {
    font-size: min(6vw, 50px);
  }
}

@media only screen and (max-width: 720px) {
  .mobileVideoContainer #countDownLabel {
    font-size: min(5vw, 50px);
  }
  .mobileVideoContainer .waitingCountDownCircle {
  	width: 22VW;
    height: 22VW;
  	font-size: min(4vw, 30px) !important;
  }
}
@media only screen and (max-width: 720px) {
  .mobileVideoContainer #countDownLabel {
    font-size: min(5vw, 50px);
  }
  .mobileVideoContainer .waitingCountDownCircle {
  	width: 20VW;
    height: 20VW;
  	font-size: min(4vw, 30px);
  }
}

@media only screen and (min-width: 720px) {
	.mobileVideoContainer .waitingCountDownCircle {
  	width: 14VW;
    height: 14VW;
  	font-size: min(3vw, 30px);
  }
}

@media only screen and (max-width: 899px) {
  .mobileVideoContainer #countDownLabel {
    font-size: min(5vw, 50px);
  }
}

@media only screen and (max-width: 1000px) {
  .mobileVideoContainer #countDownLabel {
    font-size: min(4vw, 50px);
  }
}
@media only screen and (min-width: 1000px) {
  .mobileVideoContainer #countDownLabel {
    font-size: min(3vw, 50px);
  }
}

@media only screen and (min-width: 1200px) {
  .mobileVideoContainer #countDownLabel {
    font-size: min(2vw, 40px);
  }
}

#countDownPreposition{
	color: var(--btn-default-background-color,#FFF);
}
#countDownText{
	color: var(--btn-default-background-color,#FFF);
	font-family: Monospace;
	font-weight: bold
}

#sessionEndMessageText{
	font-size: 4vw;
}

#livestreamIsPrivateMessageText{
	font-size: 4vw;
}

#invalidLandingMessageText{
    font-size: 4vw;
}

#aspect-ratio-container{
	/*display: flex;
	flex-direction: column;*/
	width:100%;
	position:relative;
}
#aspect-ratio-container-fullScreen{
	width:100%;
}

#sidebar-icon.sidebar-icon {
	min-width: 40px;
    width: 5%;
    height: 100%;
    vertical-align: middle;
    position: relative;
    display: inline-block;
    /*float: right;*/
    text-shadow: 0 0 0 #fff;
    color: rgba(255,255,255,0.8);
    padding: 0;
    text-align: center;
    cursor: pointer;
    font-variant: small-caps;
}
/*
.svg-setting-icon {
	left: 50%;
    transition: fill 200ms;
    position: absolute;
    top: 50%;
    bottom: 50%;
    -webkit-transform: translate(-50%, -50%);
    /*stroke: none;
}*/

.svg-setting-icon {
    stroke: #f6f0f0cc;
    fill: #f6f6f6db;
}
.svg-setting-icon:hover {
	stroke:var(--btn-default-background-color,#FFF);
    fill: var(--btn-default-background-color,#FFF);
}

.svg-caption-icon {
    stroke: var(--btn-default-background-color,#FFF);
    fill:var(--primary-color-text,#000000);
}
.svg-caption-icon:hover {
    stroke:var(--primary-color-text,#000000);
    fill: var(--btn-default-background-color,#FFF);
}

.svg-sidebar-icon {
    stroke: #f6f0f0cc;
    fill: #f6f6f6db;
}

.svg-sidebar-icon path {
    stroke: #f6f0f0cc;
    fill: #f6f6f6db;
}
.svg-sidebar-icon:hover {
	stroke: var(--btn-default-background-color,#FFF);
    fill: var(--btn-default-background-color,#FFF);
}

.svg-sidebar-icon path:hover {
	stroke: var(--btn-default-background-color,#FFF);
    fill: var(--btn-default-background-color,#FFF);
}

.svg-fullscreen-icon {
    stroke: #f6f0f0cc;
    fill: #f6f6f6db;
}
.svg-fullscreen-icon:hover {
	stroke: var(--btn-default-background-color,#FFF);
    fill: var(--btn-default-background-color,#FFF);
}

.table-content-background {
	background-color: #f5f5f5;
	height: 100%;
    width: 0%;
}

.aspect-ratio-16-9-container > .video-wrapper {
    padding: 0;
    margin-left: 0; 
    margin-right: 0; 
    
}

.player-wrapper {
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.fullscreen-content{
	
}


.tocHeader {
    background:var(--btn-default-inner-text-color, #42296E);
    color:var(--btn-default-background-color,#FFF);
    text-transform: uppercase;
    font-size: 1em;
    margin: 0;
    padding: 11px;
    padding-right: 0;
    cursor: pointer;
    border: 1px solid var(--btn-default-background-color,#FFF);
    border-top-style: none;
    border-left-style: none;
    border-right-style: none;
    position: relative;
}



.tocHeaderClickArea {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}


.LinkedDocumentContentLiveStream{
	overflow-y: scroll;
}
#uploadBtnContainer{
	margin-top:10px;
}

#uploadBtnContainer #uploadBtn{
	display:block;
	margin:0 auto;
}

.modal {
	top:32px;
}

#player-container .spinner.loading {
	background-color:var(--primary-color-text,#000000);
}

.subsection> table td{
	display: table-cell;
	background-color: #f9f9f9;
}

.subsection> table td:hover{
	display: table-cell;
	background-color: #f9f9f9 !important;
}

 .datepicker table td{
 	display: table-cell;
	background-color: #f9f9f9;
 } 
 
 
 #documentItemLinks .delete-icon {
 	 margin-right: 10px;
     cursor: pointer;
     color: red;
 }
 
  #documentItemLinks .show-document {
	display: block;
	cursor: pointer;
 }

  
  .not-visible {
    display: none;
    background-color: whitesmoke;
  }
  
  .LinkedDocumentsViewerLivePlayer{
	width: 0%;
	height: 100%;
	background-color: whitesmoke;

  }
  
  
  @media only screen and (max-width: 968px)  {
	#sidebar-icon{
		display:none;
	}
	
	
}

.document-padding {
	    padding-left: 20px;
}
/**
* make live stream player larger
*
*/
#right-playbar {
	float: right;
    height: 100%;
}

#playerContainer, #di_reactChatInjection {
	background-color: white;
}

#di_reactChatInjection {
	width: 25%;
	height: 67%;
	max-width: none !important;
	max-height: none !important;
	position: absolute;
    right: 0%;
    z-index: 9999;
    transition: width 0.2s ease-in-out;
}
.chatanimate {
	    animation: slide-in 0.2s forwards;
}
@keyframes slide-in {
	0% {width : 0%;}
	100% {width : 25%;}
}

@keyframes slide-out {
	0% {width : 25%;}
	100% {width : 0%;}
}

.chat-open-transition {
	transition: width 0.15s ease-in-out;
}

#di_reactChatInjection.mobileChatInjection {
	width: 100%;
	margin-top:65px;
}

@media only screen and (max-width: 768px) {
	#di_reactChatInjection {
		width: 100%;
		height: -webkit-fill-available;
		max-width: none !important;
		max-height: none !important;
		 position: absolute;
	    right: 0%;
	    z-index: 9999;
	}
}

.aspect-ratio-16-9-container {
	max-width: none !important;
	max-height: none !important;
}

#player-container.player-wrapper {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    max-width: none !important;
    max-height: none !important;
    margin-top: -4em;
    z-index: 999;
    position: relative;
    background: black;
    height: -webkit-fill-available;
}

.InIFrame #player-container{
	height:100% important;
}

@media screen and (max-width: 992px) {
	.aspect-ratio-16-9-container {
	    display: block;
	    margin-left: auto;
	    margin-right: auto;
		max-width: none !important;
		max-height: none !important;
	}
}
.mobilContainer{
	height:98% !important;
}

/*
#externalPlayerBtn {
	font-size: 1.7vw;
    display: inline-block;
     float: right; 
    padding: 0;
    text-align: center;
    cursor: pointer;
    font-variant: small-caps;

}

#qualityMenuBtn {
	font-size: 1.6em;
    display: inline-block;
     float: right; 
    padding: 0;
    text-align: center;
    cursor: pointer;
    font-variant: small-caps;
}*/

.quality-menu {
	position: absolute;
	bottom: 1.9em;
	right: 0.5em;

	width: 7em;

	z-index: 1;
}

.quality-menu-item {
	display: flex;
	padding: 0.3em;
}

/* .quality-menu-item.selected {
	background: #949494;
} */

.quality-menu-item i {
	margin-top: 0.4em;
	margin-right: 0.2em;
	opacity: 0;
}

.quality-menu-item.selected i {
	opacity: 1;
}


.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

#fullscreen-video-container {
	width: 100%;
	height: 100%;
}

.safari-only {
	flex-basis: 100%;
}

.inline-block {
	display:inlne-block;
}

.player .settings-holder-wrapper {
    position: absolute;
    height: 50px;
    width: 180px;
    right: 10px;
    bottom: 40px;
    display: none;
    color: var(--btn-default-background-color,#FFF);;
    background: rgba(0,0,0,0.8);
	margin-bottom: 5px;
}

.player .settings-holder {
    width: 180px;
    height: 50px;
    border-radius: 5px 5px 0 0;
    /*display: none;*/
    font-size: 1vw;
    background: rgba(0,0,0,0.9);
    color: inherit;
}

.player .menuitem {
    height: 36px;
    display: flex;
    align-items: center;
    width: 100%;
    cursor: pointer;
    padding: 14px 9px;
    padding-right: 2px;
}

.player .menuitem-label {
    font-size: 13px;
    font-weight: bold;
}

.player .menuitem-content {
    font-size: 13px;
    margin-left: auto;
}

.table-content-background {
	background-color: #f5f5f5;
	height: 100%;
    width: 0%;
    border-bottom:1px solid var(--primary-color-text,#000000);
}

.quality-menu-holder .glyphicon, .sub-menu-holder .glyphicon {
    padding-left: 12px;
    padding-right: 14px;
    margin-right: 5px;
}

.player .quality-menu-holder {
    width: unset !important;
    background-color: #000000;
    padding-right: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
    right: 38px;
    bottom: 108px;
    border-radius: 8px !important;
    border: 1px solid rgba(140, 140, 140, 1);
    position: absolute;
}



.stream-menu-holder .glyphicon, .sub-menu-holder .glyphicon {
    padding-left: 12px;
    padding-right: 14px;
    margin-right: 5px;
}

.player .stream-menu-holder {
    display: none;
    height: 55px;
    background: rgba(0,0,0,0.8);
}


#streamPausedMessage {
	font-size: 4vw !important;
	background-image: url(/Dashboard/icons/liveStreamPlaceholders/liveStreamInititalBackground.gif) !important;
    background-size: cover;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid grey;
    min-height: 200px;
    padding: 20px;
    color:white;
}

#di_chatDisplayPlayerButton span {
	display: block;
    margin-top: 7px;
    font-size: 25px;
    color: #ffffffcc;
}

#di_chatDisplayPlayerButton span:hover {
	display: block;
    margin-top: 7px;
    font-size: 25px;
    color:var(--btn-default-background-color,#FFF);;
}

#svg-live-icon {
	width: 18px;
    height: 24px;
    display: inline-block;
    padding-top: 4px;
}

#live-text {
	font-size: 15px; 
	color:var(--btn-default-background-color,#FFF);
	display: inline-block;
}

#exitFullscreenButton {
	display: none;
}

#LoginDropdownPage {
    display: block;
    overFlow: auto !important;
    background: rgb(249, 249, 249) !important;
}

.hiddenDropDown{
	display:none !important;
}

#time-tooltip {
   width: fit-content;
    background-color: black;
    text-align: center;
    display: none;
    padding: 5px 6px;
    color: white;
    z-index: 1;
    transition: opacity 0.3s;
    top: -23%;
    font-size: 15px;
    position: absolute;
}

#time-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
}

#time-tooltip:hover {
  visibility: visible;
  opacity: 1;
}

#volumehover-container {
	float:left;
}

#emoticons-popoup:focus-visible,
#bi_sendMessage:focus-visible,
#predefinedResponse:focus-visible  {
	outline: 2px solid #7fceff !important;
    border: 1px solid #7fceff !important;
    outline-offset:0;
}

#emoticons-popoup:focus-visible,
#bi_sendMessage:focus-visible,
#predefinedResponse:focus-visible {
	outline: 2px solid #7fceff !important;
    border: 1px solid #7fceff !important;
    outline-offset:0;
}

#viewsLivestreamVideoDropdown{
    display: none;
    position: absolute;
    background-color: #000000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
    bottom: 41px;
    right: 196px;
    border-radius: 8px !important;
    border: 1px solid rgba(140, 140, 140, 1);
    position: absolute;
}
.dropdown-content li {
    padding: 10px;
    color: white;
    cursor: pointer;
    position: relative;
    display:flex;
}

.liveStreamTitleDiv{
    color: white;
    font-size: 24px;
    position: absolute;
    left: 1.3%;
    background-color: none;
    padding: 5px 1px;
    z-index: 1;
    height: 31;
}
.dynamicStreamsContainer {
    display: grid;
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: repeat(2, 1fr) !important;
    /* width: 100% !important; */ /* Full width */
    height: 100vh !important; /* Full height */
    gap: 0px !important; /* Remove extra spacing */
}

.videoContainer {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.playButton{
	background: url(/Dashboard/icons/liveStreamPlaceholders/livestreamPauseIcon.svg) no-repeat center;
    display: inline-block;
    height: 22px;
    width: 22px;
    background-size: contain;
}
#pauseButton{
    height: 24px;
    width: 24px;
}
.livestreamCaptionIcon{
	background: url(/Dashboard/icons/liveStreamPlaceholders/livestreamCaptionIcon.svg) no-repeat center;
    display: inline-block;
    height: 24px;
    width: 24px;
    background-size: contain;
}

.mobileLivestreamPlayerCaptionIcon{
	background: url(/Dashboard/icons/liveStreamPlaceholders/mobileLivestreamPlayerCaptionIcon.svg) no-repeat center;
    display: inline-block;
    height: 24px;
    width: 24px;
    background-size: contain;
}

.mobileLiveStreamPlayerSettingsIcon{
	background: url(/Dashboard/icons/liveStreamPlaceholders/mobileLiveStreamPlayerSettingsIcon.svg) no-repeat center;
    display: inline-block;
    height: 28px;
    width: 28px;
    background-size: contain;
}

.liveStreamSelectedIcon{
	background: url(/Dashboard/icons/liveStreamPlaceholders/liveStreamSelectedIcon.svg) no-repeat center;
    display: inline-block;
    height: 21px;
    width: 21px;
    background-size: contain;
}

.livestreamToggleStreams{
	background: url(/Dashboard/icons/liveStreamPlaceholders/liveStreamToggleStreams.svg) no-repeat center;
    display: inline-block;
    height: 28px;
    width: 28px;
    background-size: contain;
}

.livestreamVolumeIcon{
	background: url(/Dashboard/icons/liveStreamPlaceholders/livestreamVolumeIcon.svg) no-repeat center;
    display: inline-block;
    height: 24px;
    width: 24px;
    background-size: contain;
}
.livestreamChatIcon{
	background: url(/Dashboard/icons/liveStreamPlaceholders/livestreamChatIcon.svg) no-repeat center;
    display: inline-block;
    height: 24px;
    width: 24px;
    background-size: contain;
}
.livestreamSettingIcon{
	background: url(/Dashboard/icons/liveStreamPlaceholders/livestreamSettingIcon.svg) no-repeat center;
    display: inline-block;
    height: 24px;
    width: 24px;
    background-size: contain;
}

.custom-radio{
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid white;
    border-width: thin;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    margin-right: 11px !important;
}

        /* Create the custom fill color using ::before */
.custom-radio::before  {
	content: '';
	display: block;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background-color: var(--modal--menu-color);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);}

        /* Change the fill color when the radio button is checked */
 .custom-radio:checked::before {
            background-color: #0B6F85; /* Change to desired fill color */
        }
        
.custom-radio:hover::before{
	background-color:#737373;
}
        
.custom-radio:focus {
            outline: none !important;
            box-shadow: none;
}
        /* Remove default active styles */
.custom-radio:active {
            outline: none;
            box-shadow: none;
 }
 
 
 .custom-radio-whiteScreen{
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #6F6F6F;
    border-width: thin;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    margin-top:0px !important;
}

        /* Create the custom fill color using ::before */
.custom-radio-whiteScreen::before  {
	content: '';
	display: block;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background-color: var(--modal--menu-color);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);}

        /* Change the fill color when the radio button is checked */
 .custom-radio-whiteScreen:checked::before {
            background-color: #0B6F85; /* Change to desired fill color */
        }
        
.custom-radio-whiteScreen:hover::before{
	background-color:#737373;
}
        
.custom-radio-whiteScreen:focus {
            outline: none !important;
            box-shadow: none;
}
        /* Remove default active styles */
.custom-radio-whiteScreen:active {
            outline: none;
            box-shadow: none;
 }
 
.livestreamBgGif {
    background-image: url('/Dashboard/icons/liveStreamPlaceholders/liveStreamInititalBackground.gif');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.liveStreamEmptyChatGif{
    background-image: url('/Dashboard/icons/liveStreamPlaceholders/liveStreamEmptychat.gif');
    background-size: cover;
    background-position: center;
    width:60%;
    height:55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.chatTitle{
	color: black;
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: 0px;
    margin-bottom: 10px;
}
.chatDescription{
	color: black;
    font-weight: 400;
    font-size: 15px;
    line-height: 150%;
    letter-spacing: 0px;
    text-align: center;
}
.emptyChatDiv {
	align-content: center;
}
#allStreamsLost{
	background-image: url('/Dashboard/icons/liveStreamPlaceholders/livestreamConnectionLost.svg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
#hangTightPlaceholder{
	font-family: Geominist;
    font-weight: 700;
    font-size: 3vw;
    color: white;
    margin: 0;
    text-align: left;
}

#descriptionPlaceholderLiveDiv{
font-family: Geominist;
    font-weight: 700;
    font-size: 3vw;
    color: white;
    text-align: center;
    margin: 20px 10px;
}

.countdown-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 4rem;
    z-index: 9999;
}

.countdown-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16VW;
    height: 16VW;
    max-height: 260px;
    max-width: 260px;
    background: #D9D9D94D;
    border-radius: 50% !important;
    color: rgb(255 255 255);
    border: 1px solid white;
    font-size: 180px;
}

.countdown-circle-mobile{
	display: flex;
    align-items: center;
    justify-content: center;
    width: 24VW;
    height: 24VW;
    max-height: 260px;
    max-width: 260px;
    background: #D9D9D94D;
    border-radius: 50% !important;
    color: rgb(255 255 255);
    border: 1px solid white;
    font-size: 180px;
}

.countdown-text-containerMobile{
    align-self: baseline;
}

.liveStreamSendMessage {
	background: url("/Dashboard/icons/liveStreamPlaceholders/liveStreamSendMessage.svg") no-repeat center;
	display: inline-block;
	height: 24px;
	width: 24px;
	background-size: contain;
}


.liveStreamPlayIcon {
	background: url("/Dashboard/icons/liveStreamPlaceholders/liveStreamPlayIcon.svg") no-repeat center;
	display: inline-block;
	height: 24px;
	width: 24px;
	background-size: contain;
}


.mobilePlayIcon {
	background: url("/Dashboard/icons/liveStreamPlaceholders/mobilePlayIcon.svg") no-repeat center;
	display: inline-block;
	height: 48px;
	width: 48px;
	background-size: contain;
}


.mobilePauseIcon {
	background: url("/Dashboard/icons/liveStreamPlaceholders/mobilePauseIcon.svg") no-repeat center;
	display: inline-block;
	height: 48px;
	width: 48px;
	background-size: contain;
}



.liveStreamMuteIcon{
	background: url("/Dashboard/icons/liveStreamPlaceholders/liveStreamMuteIcon.svg") no-repeat center;
	display: inline-block;
	height: 24px;
	width: 24px;
	background-size: contain;
}

.liveStreamUnMuteIcon {
	background: url("/Dashboard/icons/liveStreamPlaceholders/liveStreamUnmuteIcon.svg") no-repeat center;
	display: inline-block;
	height: 24px;
	width: 24px;
	background-size: contain;
}


.liveStreamEmojiIcon {
	background: url("/Dashboard/icons/liveStreamPlaceholders/liveStreamEmojiIcon.svg") no-repeat center;
	display: inline-block;
	height: 24px;
	width: 24px;
	background-size: contain;
	margin-top: 4px;
}

.liveStreamChatMoreOptions {
	background: url("/Dashboard/icons/liveStreamPlaceholders/liveStreamChatMoreOptions.svg") no-repeat center;
	display: inline-block;
	height: 24px;
	width: 24px;
	background-size: contain;
	margin-top: 6px !important;
}

.liveStreamChatclose {
	background: url("/Dashboard/icons/liveStreamPlaceholders/liveStreamChatclose.svg") no-repeat center;
	display: inline-block;
	height: 24px;
	width: 24px;
	background-size: contain;
	margin-top: 6px;
}

.iconGalleryView {
	background: url('/Dashboard/icons/liveStreamPlaceholders/livestreamGalleryView.svg') no-repeat center;
	width: 24px;
	height: 24px;
	display: inline-block;
}

.iconPresenterView {
	background: url('/Dashboard/icons/liveStreamPlaceholders/livestreamPresenterView.svg') no-repeat center;
	width: 24px;
	height: 24px;
	display: inline-block;
}

.liveStreamRightArrow {
	background: url('/Dashboard/icons/liveStreamPlaceholders/liveStreamRightArrow.svg') no-repeat center;
	width: 24px;
	height: 24px;
	display: inline-block;
}

#settingsVisibilityComponent{
	color: white;
    background-color: #000000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1;
    bottom: 67px;
    right: 17px;
    border-radius: 8px !important;
    border: 1px solid rgba(140, 140, 140, 1);
    position: absolute;
    padding: 15px;
    width:225px;
}

#mobileSettingsVisibilityComponent{
    margin-left: 4px;
    margin-right: 4px;
    bottom: 14px;
    color: black;
    position: fixed;
    width: 98%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: bottom 0.5s ease-in-out;
    z-index: 999999;
    border-radius: 15px !important;
    border: 1px solid rgba(140, 140, 140, 1);
    padding: 15px;
}

#mobileSettingsVisibilityComponent .menuitem {
	display: flex;
	padding: 3px 0 3px 0;
}

#mobileSettingsVisibilityComponent .menuitem-textselection {
	margin: 4px 0 0 5px;
}

.liveStreamLeftArrow {
	background: url('/Dashboard/icons/liveStreamPlaceholders/liveStreamLeftArrow.svg') no-repeat center;
	width: 24px;
	height: 24px;
	display: inline-block;
}

.liveStreamLeftPurpleArrow {
	background: url('/Dashboard/icons/liveStreamPlaceholders/liveStreamLeftPurpleArrow.svg') no-repeat center;
	width: 24px;
	height: 24px;
	display: inline-block;
	margin-left: -5px;
}

.liveStreamChatVisibilityIcon {
	background: url('/Dashboard/icons/liveStreamPlaceholders/liveStreamChatVisibility.svg') no-repeat center;
	width: 24px;
	height: 24px;
	display: inline-block;
	margin-right: 6px;
    margin-top: -1px;
}

.liveStreamRightPurpleArrow {
	background: url('/Dashboard/icons/liveStreamPlaceholders/liveStreamRightPurpleArrow.svg') no-repeat center;
	width: 24px;
	height: 24px;
	display: inline-block;
}

.livestream-chat-settings {
	padding: 7px 15px 1px 15px;
}

.livestream-chat-settings{
	color: #E0E0E0;
	font-size: 15px;
}

.livestream-chat-settings div {
	color:black;
	font-size: 15px;
	padding: 2px;
	cursor: pointer;
}

.livestream-chat-settings .chat-setting-header {
	display: flex;
	border-bottom: 1px solid #E0E0E0;
	padding: 4px;
}

.chat-setting-header-text {
	font-size: 15px;
	font-weight: 400;	
}

.chat-visibility-option, .chat-setting-option {
	display: flex;
	align-items: center;
	padding: 4px;
	margin-top: 7px;
    margin-bottom: 7px;
}

.chat-setting-option.go-to-visbility {
	justify-content: space-between;
}

.chat-visibility-option div {
	margin-left: 7px;
}

.waitingCountDownCircle{
	display: flex;
    align-items: center;
    justify-content: center;
    width: 22VW;
    height: 22VW;
    max-height: 318px;
    max-width: 318px;
    background: #0000004D;
    border-radius: 50% !important;
    border: 1px solid white;
    font-size: min(3vw, 30px) !important;
}

.mobileVideoContainer .waitingCountDownCircle {
	max-height: 135px;
    max-width: 135px;
}

#largeVideoBox{
	width:75%;
	}
	

@media screen and (min-width:1800px){
 #videoContainer video.maxStream.singleStreamLiveStream {
    width: auto !important;
  }

	#videoContainer video {
    border-radius: 4px;
    height: -webkit-fill-available !important;
    width: inherit !important;
}
}
	
@media screen and (max-width: 500px) {
	/* #smallVideoBox{
	display:none !important;
	} */
 #videoContainer video.maxStream.singleStreamLiveStream {
    width: auto !important;
  }
	#largeVideoBox{
	width:-webkit-fill-available !important;
	}
	#videoContainer video {
    border-radius: 4px;
    height: auto !important;
    width: 100% !important;
}
}

#playerContentContainer{
    width:100%
}

.livestreamVideoBox {
	position: relative;
}

.liveStreamVideoOverlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5); 
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}

.livestreamVideoBox:hover .liveStreamVideoOverlay {
	opacity: 1;
	pointer-events: auto; 
}

.liveStreamPinIcon {
	cursor: pointer;
    background: #2f2f2f;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2sease, background 0.3sease;
}

.liveStreamPinSVG{
	background: url('/Dashboard/icons/liveStreamPlaceholders/liveStreamPinIcon.svg') no-repeat center;
	width: 24px;
	height: 24px;
	display: inline-block;
}

.liveStreamUnPinSVG{
	background: url('/Dashboard/icons/liveStreamPlaceholders/liveStreamUnPinIcon.svg') no-repeat center;
	width: 24px;
	height: 24px;
	display: inline-block;
}

.liveStreamPinIcon:hover {
	transform: scale(1.1);
}

.mobileVideoContainer{
	width:75%;
	height: 33% !important;
    position: relative;
	background-color: black;		/* keep this value for the background-color as the one in #container,
										so that the color is consistent */
	max-width: none !important;
	max-height: none !important;
}

.mobileChatInjection{
    height: -webkit-fill-available;
    top: 33%;
    right:auto !important;
}

.liveStreamFullScreen {
	background: url("/Dashboard/icons/browserCapture/fullScreenNewIcon.svg") no-repeat center;
	display: inline-block;
    height: 24px;
    width: 24px;
	background-size: contain;
}

.liveStreamExitFullScreen {
	background: url("/Dashboard/icons/browserCapture/exitFullScreenIcon.svg") no-repeat center;
	display: inline-block;
    height: 24px;
    width: 24px;
	background-size: contain;
}

#liveStreamMobileFullScreen {
	position: absolute;
    bottom: 29px;
    right: 10px;
    display: flex;
    gap: 10px;
}

#chatSettingsBtn {
	position: relative;
	overflow: visible;
}

#advVideoSettingsList {
	list-style-type: none;
    width: 100%;
    padding: 0;
}

#advVideoSettingsList li > div {
	display: flex;
    justify-content: space-between;
}

#advSettingsOverlay {
	z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
}


.liveStreamMobileUI {
  display: none;
}

.liveStreamPortalUI {
  display: block;
}

@media (max-width: 768px) {
  .liveStreamMobileUI {
    display: block;
  }

  .liveStreamPortalUI {
    display: none;
  }
}
.bottomBarDivider {
    height: 24px;
    width: 0px;
    border-left: 1px solid #676767;
    margin-left: 11px;
    margin-right: 11px;
}

.liveStreamGlyphicon {
    right: 7px;
    width: 1em;
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    -webkit-font-smoothing: antialiased;
    font-style: normal;
    font-weight: normal;
    line-height: 1;
    -moz-osx-font-smoothing: grayscale;
    color: rgb(255, 255, 255);
}
.liveStreamGlyphicon:empty {
    width: 18px;
}

#playPauseIconContainer, #volumeOfVideo,#liveStreamViewButton,#di_chatDisplayPlayerButton, #captionButton, #changeScreenButton, #settingsBtn{
	height:35px;
	width:35px;
	align-self: anchor-center;
    padding: 6px;
    cursor:pointer;
}

#playPauseIconContainer:active, #volumeOfVideo:active,#liveStreamViewButton:active,#di_chatDisplayPlayerButton:active, #changeScreenButton:active, #settingsBtn:active, #captionButton:active{
    background: #737373;
    border-radius: 5px !important; 
    z-index: 1;
   
}
@media (hover: hover) {
    #playPauseIconContainer:hover, #volumeOfVideo:hover,#liveStreamViewButton:hover,#di_chatDisplayPlayerButton:hover, #changeScreenButton:hover, #settingsBtn:hover, #captionButton:hover {
	    background: #737373;
    	border-radius: 5px !important;
    }
}
.video-volume-container{
	display: flex;
	align-items: center;
}


.volume-slider-container {
    width: 100%;
    display:none;
    align-self: center;
    transition: opacity 0.2s ease-in-out;
}

.video-volume-container:hover > .volume-slider-container,
.video-volume-container:focus > .volume-slider-container {
  display:block;
} 

#volumeSlider:focus-visible {
	outline: -webkit-focus-ring-color auto 5px !important;
    outline-offset: 2px !important;
}

#volumeSlider{
	height: 4px !important;
    margin: 0px 5px !important;
    opacity: 1 !important;
    display: flex !important;
    width: -webkit-fill-available;
    border-radius: 5px;
}

#countdownText{
	font-size:11vw;
}

    .dropdown-content li:hover {
      background-color: #444;
    /* border-top-left-radius: 8px;
    border-top-right-radius: 8px; */
    }

.dropdown-content li:first-child:hover {
	background-color: #444;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Hover style for the last list item */
.dropdown-content li:last-child:hover {
	background-color: #444;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}


.liveStreamPlayerTooltips {
	visibility: hidden; 
    width: max-content;
    padding: 8px;
    border-radius: 0.375em;
    background-color: #4C4C4C;
    color: #ffffff;
    position: absolute;
    bottom: 55px;
    transform: translate(-20px, 0px);
    z-index: 1;
    text-overflow: ellipsis;
    font-size: 15px !important;
    font-weight: 100;
}

.liveStreamChatTooltips{
	visibility: hidden; 
	width: max-content;
    padding: 8px;
    border-radius: 0.375em;
    background-color: #4C4C4C;
    color: #ffffff;
    position: absolute;
    transform: translate(-24px, 44px);
    z-index: 1;
    text-overflow: ellipsis;
    font-size: 15px !important;
    font-weight: 100;
}

.liveStreamChatTooltips:after{
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #4C4C4C transparent;
}
.closeChatTooltip{
	width: max-content;
    visibility: hidden;
    padding: 8px;
    border-radius: 0.375em;
    background-color: #4C4C4C;
    color: #ffffff;
    position: absolute;
    transform: translate(22px, 44px);
    z-index: 1;
    text-overflow: ellipsis;
    font-size: 15px !important;
    font-weight: 100;
}
.liveStreamFullScreenTooltip{
	visibility: hidden; 
    width: max-content;
    padding: 8px;
    border-radius: 0.375em;
    background-color: #4C4C4C;
    color: #ffffff;
    position: absolute;
    bottom: 55px;
    transform: translate(-79px, 0px);
    z-index: 1;
    text-overflow: ellipsis;
    font-size: 15px !important;
    font-weight: 100;
}

.liveStreamFullScreenTooltip::after{
	content: "";
    position: absolute;
    top: 100%;
    left: 75%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #4C4C4C transparent transparent transparent;
}

.closeChatTooltip::after{
	content: "";
    position: absolute;
    bottom: 100%;
    left: 61%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #4C4C4C transparent;
}
.liveStreamPlayerTooltips::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #4C4C4C transparent transparent transparent;
}


.fullScreenTransform {
	transform: translate(-61px, 0px);
}
.playToolTipTransform{
	transform: translate(-32px, 0px);
}
 #unpinToolip, #pinToolip {
 	transform: translate(0px, 0px);
 }
 
 #changeViewToolip{
     transform: translate(-44px, 0px) !important;
 }
 
 .stream-placeholder{
   width:100%
 }
 
 #chatSettingsBtn:hover,#livestreamCloseChatButton:hover{
    background: #ECECEC;
    border-radius: 5px !important;
    z-index: 1;
 }
 
 .chat-setting-option:hover{
 background: #ECECEC;
 }
 
 .playButton #playPauseTooltips{
 transform:translate(-42px, 0px)
 }
 
 #livestreamVideoQuality:hover, #livestreamSetting:hover{
	background-color: #444;
}

#livestreamVideoQuality,#livestreamSetting{
    padding-right: 7px;
    padding-left: 7px;
    padding-top: 8px;
    cursor: pointer;
}

#livestreamSettingVisibilityOptions{
	margin-top:5px !important;
}

#liveStreamSettingHeader{
    margin-left: 6px !important;
      margin-bottom: 10px;
}

.liveStreamActiveTab{
	    border-bottom: 2px solid !important;
        color: #42296E !important;
}
.modern-tab{
    height: 42px;
    margin-left: 29px;
    border-bottom: 1px solid #ccc;
    padding-left: 0px;
    display: flex;
}
.tab-list-item{
    flex: 1;
    overflow: hidden;
    position: relative;
    align-self: center;
    padding: 10px 1px 10px 1px;
    color:black;
}

.largeContainer:has(.mobileVideoContainer) {
  height:98% !important;
}

.liveStreamMobileTitleDiv{
	color:black;
	font-weight: 500;
	font-size: 18px;
	line-height: 100%;	
}
.liveStreamDateAndTime{
	font-size:14px;
}
.mobileChatInjection #di_chatMessageTextInputContainer{
	height:71% !important;
}

.countdown-go-text-Mobile{
	font-size:15vw;
	margin:14px !important;
}

.mobileChatInjection #di_masterChatObject{
	display: flex;
    flex-direction: column;
    height: -webkit-fill-available;
    max-height: inherit;
    width: 100%;
}
.mobileChatInjection #di_topbarContainer{
	    padding: 10px 10px 2px 21px !important;
}
.mobileChatInjection .liveStreamEmptyChatGif{
	width:75% !important;
    height: 57% !important;
    min-width: 230px;
    min-height: 140px;
}
.dc_topbarContent{
	font-weight: 600;
    font-size: 18px;
    line-height: 100%;
}
.mobileChatInjection .chatTitle{
	font-size:18px !important;
}
.mobileChatInjection .chatDescription{
	font-size:13px !important;
}
.mobileChatInjection #chatButtonsContainer{
	height:44px;
}
.mobileChatInjection .messageContainerLiveStreamChat{
	border-radius: 4px !important;
    border: 1px solid #6F6F6F;
    padding-top: 4px;
    padding-bottom: 0px;
    padding-left: 10px;
    width: 96%;
    margin-left: 11px;
    display: flex;
    justify-content: space-between;
}
.mobileChatInjection .liveStreamEmojiIcon {
    background: url(/Dashboard/icons/liveStreamPlaceholders/liveStreamEmojiIcon.svg) no-repeat center;
    display: inline-block;
    height: 24px;
    width: 24px;
    background-size: contain;
    margin-top: 3px;
}

.liveStreamYuJaIcon{
	background: url(/Dashboard/icons/liveStreamPlaceholders/liveStreamYuJaIcon.svg) no-repeat center;
    display: inline-block;
    height: 28.37px;
    width: 32px;
    background-size: contain;
    margin-top: 3px;
}
.stream-placeholder{
	border-radius:10px !important;
}

.liveStreamYuJaText{
	font-weight: 400;
    font-size: 15px;
    line-height: 100%;
    text-align: center;
    text-decoration-style: solid;
    text-decoration-thickness: 0%;
    text-decoration-skip-ink: auto;
    border-bottom: 1px solid #42296E;
    color: #42296E;
    margin-left: 7px;
}

.mobileChatInjection video::-webkit-media-controls {
  display: none !important;
}

.mobileChatInjection #chatEmptyImageHolder{
	height:100% !important;
}

.mobileChatInjection .tab-list-item {
    width: 130px;
}

.mobileChatInjection #liveStreamChatTooltips{
 display:none !important;	
}

.mobileChatInjection #di_sendChatMessageSection {
    position: relative;
    height: 77px;
}

.mobileChatInjection .ic_chatAvatar {
    width: 32px;
    height: 32px;
}
video::-webkit-media-controls {
  display: none !important;
}

.chat-setting-header{
	cursor:pointer;
}

video.maxStream.singleStreamLiveStream {
  width: auto !important;
}