body {
	background: linear-gradient(to bottom, #000000, #333333);
	background: -webkit-linear-gradient(top, #000000, #333333);
	background: -moz-linear-gradient(top, #000000, #333333);
	background: -o-linear-gradient(top, #000000, #333333);
	background: -ms-linear-gradient(top, #000000, #333333);
	background-color: #333333;
	height: 100vh;
	margin: 0;
	font-family: Arial, sans-serif;
	color: #ffffff;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
	overflow: auto;
}

#devicesButton {
	position: absolute;
	top: 0;
	z-index: 10;
}

#devicesList {
	color: #fff;
}

#control {
	height: 100vh;
}

.div_media {
	height: 50vh;
	position: relative;
	top: 50px;
}

#videoMedia {
	position: absolute;
	top: 0;
}

#localMedia {
	overflow: auto;
}

#remoteVideos {
	overflow: auto;
}

.containers {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 10px;
	row-gap: 10px;
	border-radius: 5px;
	cursor: pointer;
}

.vid {
	flex: 0 1 auto;
	height: 360px;
	border-radius: 10px;
	cursor: pointer;
}

.div_logo {
	margin-top: 0px;
}

.div_logo img {
	max-width: 100%;
}

.div_shadow {
	text-shadow: 1px 0 1px #000,
				 0 1px 1px #000,
				 -1px 0 1px #000,
				 0 -1px 1px #000;
}

.shadow_white {
	text-shadow: 1px 0 1px #bebebe,
				 0 1px 1px #bebebe,
				 -1px 0 1px #bebebe,
				 0 -1px 1px #bebebe;
}

.div_assist {
	text-align: center;
	color: #fff;
	font-size: 1.3rem;
	font-weight: 600;
}

.div_title {
	text-align: center;
	color: #fff;
	font-size: 1.7rem;
	font-weight: 800;
	line-height: 1;
	margin-top: 25px;
}

.div_text {
	color: rgba(255,255,255,0.8);
	text-align: center;
	line-height: 1;
	margin-top: 25px;
}

.login_form {
	background: #fff;
	border-radius: 5px;
	margin: 0 auto;
	padding: 25px;
}

.form-group {
	margin-bottom: 25px;
}

.text_div {
	width: 100%;
	text-align: center;
	color: #ADB5BD;
	font-weight: bold;
}

.text_div a {
	text-decoration: none;
	color: #3483FF
}

.show_mobile {
	display: none;
}

.hide_mobile {
	display: none;
}

.bottom {
  position: fixed;
  bottom: 15px;
  width: 100%;
  left: 0;
}

.div_info {
	color: #fff;
}

.btn.btn-disabled {
	background: rgba(139, 136, 136, 0.25);
	border-color: #bebebe;
	margin-left: 10px;
	color: #fff;
}

.btn.btn-disabled:hover {
	background: rgba(139, 136, 136, 0.25);
	border-color: #bebebe;
	cursor: default;
}

.btn-connected i.bi-circle-fill {
	color: green;
}

.btn.btn-gray {
	background-color: #797676;
	border-color: #bebebe;
}

.btn.btn-gray:hover {
	background-color: #958f8f;
	border-color: #bebebe;
}

.btn.btn-btn_connected {
	background-color: #559745;
	border-color: #334f2c;
}

.btn.btn-btn_connected:hover {
	background-color: #406b35;
	border-color: #334f2c;
}

.btn.btn-red {
	background-color: #d9534f;
	border-color: #ac2925;
}

.btn.btn-red:hover {
	background-color: #c9302c;
	border-color: #ac2925;
}  

.btn-circle {
	border-radius: 50%;
}

.btn-lg {
	font-size: 2rem;
}

.btn-i {
	margin-left: 10px;
	margin-right: 10px;
}

.btn-i i {
	color: #dadada;
}

.head-content, .bottom-content {
	z-index: 10;
}

.head-content {
	position: relative;
}

.hidden {
	display: none !important;
}

#user_video {
	position: absolute;
	left: 0;
	top: 60px;
	width: 100%;
	height: auto;
	z-index: 10;
}

@media (max-width: 767px) {
	.login_form {
		margin-top: 25px;
	}
	.show_mobile {
		display: block;
	}
	.hide_mobile {
		display: none;
	}
	.div_logo {
		margin-top: 15px;
	}
}

@media (min-width: 768px) {
	.login_form {
		margin-top: 50px;
	}	
	.show_mobile {
		display: none;
	}
	.hide_mobile {
		display: block;
	}
	.login {
		display: flex;
    	align-items: center;
    	justify-content: center;
    	height: 100vh;
	}
}
