/*
 * (C) Copyright 2014-2015 Kurento (http://kurento.org/)
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */
@CHARSET "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

* {
  font-family: "Roboto", sans-serif;
}

body {
	margin: 0;
	overflow: hidden;
}

.bg-video {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0, 0));
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 50px 0;
}

.profile-contact {
	margin: 0 0 100px 0 ;
	text-align: center;
	color: #fff;
}

.profile-contact img {
	display: inline-block;
	background: #2F4050;
	height:100px;
	width: 100px;
	margin: 20px 0;
	border-radius: 50%;
	object-fit: cover;
}

.contact-name {
	display: block;
	font-size: 1.2em;
	font-weight: bold;
}

div.buttons-group {
	position: absolute;
	left: 50%;
	bottom: 50px;
	display: flex;
	justify-content: center;	
	z-index: 20;
	transform: translateX(-50%);
}

.btn {
	height: 35px;
	width: 35px;
	font-size: 1.5em;
	border-radius: 50%;
	padding: 10px;
	transition: all 200ms;
	color: #ffffff;
	text-decoration: none;
	margin: 0 10px;
	box-shadow: 0 3px 6px rgba(0,0,0, .1);
	
	display: flex;
	justify-content: center;
	align-items: center;
}

.btn:hover {
	box-shadow: 0 0 6px rgba(0,0,0, .1);
	
}

.btn:active {
	transform: translateY(3px);
}

.btn-success {
	background-color: rgba(255,255,255, .1);
}

.btn-success:hover {
	background-color: #007521; 
}

.btn-danger:hover{
	background-color: #c11d00;
}

.btn-danger {
	background-color: #e22200;
}

#videoOutput {
	height: auto !important;
}

@media (max-width:640px){
	#videoOutput{
	height:100% !important;
	}
}

#videoBig {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: black;
	width: 100% !important;
	z-index: 1;
}

div#videoSmall {
	padding: 0px;
	position: absolute;
	left: 10px;
	top: 10px;
	cursor: pointer;
	z-index: 10;
}

#videoSmall{
	display: block;
	font-size: 14px;
	line-height: 1.42857143;
	color: #555;
	background-color: #fff;
	background-image: none;
	border: 1px solid #ccc;
	border-radius: 4px;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
	-webkit-transition: border-color ease-in-out .15s, box-shadow
		ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

div.dragged {
	cursor: all-scroll !important;
	border-color: blue !important;
	z-index: 10 !important;
}
