/*
 * n01.css
 *
 * Copyright (C) 1996-2020 by Ohno Tomoaki. All rights reserved.
 */

body {
	font-family: Arial;
	background-color: #000;
	color: #000;
	overflow: hidden;
}

#remoteVideoWrapper {
	position: relative;;
	overflow: hidden;
	background-color: #000;
	text-align: center;
}

#localVideoWrapper {
	position: absolute;
	overflow: hidden;
	text-align: center;
	z-index: 1;

	border-radius: 10px;
}

#localVideo, #remoteVideo {
	position: relative;
}

.mic_icon {
	position: absolute;
	background-color: rgba(255, 255, 255, 0.4);
	opacity: 0.7;
}

.setting_icon {
	position: absolute;
	background-color: rgba(255, 255, 255, 0.4);
	opacity: 0.7;
}

.cam_load,
.cam_load:before,
.cam_load:after {
	border-radius: 50%;
	width: 2.5vmin;
	height: 2.5vmin;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation: cload 1.8s infinite ease-in-out;
	animation: cload 1.8s infinite ease-in-out;
}
.cam_load {
	position: absolute;
	top: -5vmin;
	right: 0;
	bottom: 0;
	left: 0;

	color: rgba(160, 160, 160, 0.5);
	font-size: 1vmin;
	margin: auto;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation-delay: -0.16s;
	animation-delay: -0.16s;
}
.cam_load:before,
.cam_load:after {
	content: '';
	position: absolute;
	top: 0;
}
.cam_load:before {
	left: -3.5vmin;
	-webkit-animation-delay: -0.32s;
	animation-delay: -0.32s;
}
.cam_load:after {
	left: 3.5vmin;
}
@-webkit-keyframes cload {
	0%,
	80%,
	100% {
		box-shadow: 0 2.5em 0 -1.3em;
	}
	40% {
		box-shadow: 0 2.5em 0 0;
	}
}
@keyframes cload {
	0%,
	80%,
	100% {
		box-shadow: 0 2.5em 0 -1.3em;
	}
	40% {
		box-shadow: 0 2.5em 0 0;
	}
}

.modal_window {
	font-size: 30px;
	width: 80%;
	position: fixed;
	display: none;
	z-index: 10;
	box-shadow: 0 10px 30px rgba(0,0,0,0.8);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}

.message_table {
	width: 100%;
	background-color: #ffffff;
	color: #000000;
	table-layout: fixed;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}
.message_table td {
	-ms-touch-action: none;
	touch-action: none;
}
.message_msg {
	padding: 1% 2% 6% 2%;
	text-align: left;
	word-wrap: break-word;
}

.msg_button {
	cursor: default;
	background-color: #fff;
	color: #006cff;
	border: 1px solid #006cff;
	vertical-align: middle;
	text-align: center;
	
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
}
.msg_button:active {
	background-color: #006cff;
	color: #fff;
}

.message_btn_ok {
	width: 100%;
}
