* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: middle;
	background: transparent;
	font-family: "Rubik";
}

:root {
	--mainAreaWidth: 100vw;
	--mainAreaHeight: 100vh;
	--sideAreaWidth: 20vw;
	--sideAreaHeight: 100vh;
	--sideAreaTop: 20px;
	--sideAreaRight: 30px;
}

html, body {
	margin: 0px;
	font-size: 18px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: #fff;
}

#hurl {
	font-weight: bold;
	font-size: 16px;
	cursor: pointer;
}

video:fullscreen {
	object-fit: contain;
}

#myVideo.mirror {
	transform: rotateY(180deg);
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
}

#mainArea {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: nowrap;
	width: var(--mainAreaWidth);
	height: var(--mainAreaHeight);
	transition: width .1s;
}

#sideArea {
	display: flex;
	flex-flow: column;
	position: fixed;
	justify-content: start;
	top: var(--sideAreaTop);
	right: var(--sideAreaRight);
	width: var(--sideAreaWidth);
	height: var(--mainAreaHeight);
}

#sideArea .videoWrapper {
	height: var(--sideAreaWidth);
	width: var(--sideAreaWidth);
	flex-grow: 0;
	background-size: contain;
}

.videoWrapper {
	flex-grow: 1;
}

video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.fa-microphone-slash, .fa-video-slash {
	color: #e74c3c !important;
}

#message {
	background: #fff;
	position: fixed;
	bottom: 6rem;
	left: 0px;
	right: 0px;
	z-index: 100;
	width: 21rem;
	margin: auto;
	padding: 1rem 2rem;
	box-sizing: border-box;
	border-radius: 1rem;
	opacity: 0;
	transition: opacity 250ms;
	transition-delay: 250ms;
}

#allowaccess {
	background: #fff;
	position: fixed;
	bottom: 6rem;
	left: 0px;
	right: 0px;
	z-index: 100;
	width: 21rem;
	margin: auto;
	padding: 1rem 2rem;
	box-sizing: border-box;
	border-radius: 1rem;
	opacity: 0;
	transition: opacity 250ms;
	transition-delay: 250ms;
	text-align: center;
	opacity: 1;
}

#message a {
	color: inherit;
	font-style: normal;
}

#mininfo {
	color: #777777;
	font-size: 14px;
}

#subtle {
	font-size: 14px;
	color: #777777;
}

#logo {
	width: 48px;
	margin-right: 0.5rem;
}

#logo svg {
	width: 100%;
}

#buttons {
	background: rgba(255, 255, 255, .7);
	opacity: 0;
	position: fixed;
	bottom: 1rem;
	left: 0px;
	right: 0px;
	z-index: 100;
	width: 21rem;
	margin: auto;
	padding: 1rem 2rem;
	box-sizing: border-box;
	border-radius: 1rem;
	display: flex;
	justify-content: space-between;
	transition: opacity 250ms;
}

.fas {
	background: none;
	border: none;
	cursor: pointer;
	height: 40px;
	width: 40px;
	transition: .3s;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: .7;
}

.fas:hover {
	transform: scale(1.2);
	transition: .3s;
}

.fa-microphone {
	background-image: url('micon.png');
}

.fa-microphone-slash {
	background-image: url('micoff.png');
	opacity: .3;
}

.fa-video {
	background-image: url('camon.png');
}

.fa-video-slash {
	background-image: url('camoff.png');
	opacity: .3;
}

.fa-sync-alt {
	background-image: url('switch.png');
}

.fa-desktop {
	background-image: url('share.png');
}

.fa-play {
	background-image: url('play.png');
}

#mutebtn {}

#videomutebtn {}

#swapcamerabtn {}

#screensharebtn {}

/* @media only screen and (min-width:1080px) {
	#videoContainer {
		width: 90vw;
	}
} */

/* @media only screen and (max-width: 960px) { */

/* } */

@font-face {
	font-family: 'Rubik';
	src: url('./fonts/rubik/rubik-v8-latin-300.woff2');
	src: url('./fonts/rubik/rubik-v8-latin-300.woff2') format('woff2'), url('./fonts/rubik/rubik-v8-latin-300.woff') format('woff'), url('./fonts/rubik/rubik-v8-latin-300.eot') format('embedded-opentype'), url('./fonts/rubik/rubik-v8-latin-300.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Rubik';
	src: url('./fonts/rubik/rubik-v8-latin-700.woff2');
	src: url('./fonts/rubik/rubik-v8-latin-700.woff2') format('woff2'), url('./fonts/rubik/rubik-v8-latin-700.woff') format('woff'), url('./fonts/rubik/rubik-v8-latin-700.eot') format('embedded-opentype'), url('./fonts/rubik/rubik-v8-latin-700.svg') format('svg');
	font-weight: bold;
	font-style: normal;
}

@media only screen and (orientation: portrait) {
	#mainArea{
		flex-direction: column;
		height: 100vh;
	}
	.videoWrapper{
		height: 10vh;
	}
}

@media only screen and (orientation: landscape) {}