/* All code is Copyright 2013-2021 Aaron Scott Dishno Ed.D., HTTP3D Inc. - WalkTheWeb, and the contributors */
/* "3D Browsing" is a USPTO Patented (Serial # 9,940,404) and Worldwide PCT Patented Technology by Aaron Scott Dishno Ed.D. and HTTP3D Inc. */
/* Read the included GNU Ver 3.0 license file for details and additional release information. */

.wtw3dinternet-chatbox {
	border:1px solid #afafaf;
	border-radius:10px;
	width:340px;
	min-height:50px;
	text-align:left;
	vertical-align:middle;
	margin:10px;
}
.wtw3dinternet-chatboxshadow {
	border-left:4px solid #A9CCE3;
	border-top:4px solid #A9CCE3;
	border-right:4px solid #5499C7;
	border-bottom:4px solid #5499C7;
	border-radius:10px;
	min-height:50px;
	text-align:left;
	vertical-align:middle;
	margin:0px 1px 1px 0px;
}
.wtw3dinternet-chattext {
	border:1px solid #afafaf;
	border-radius:5px;
	width:95%;
	min-height:50px;
	max-height:300px;
	text-align:left;
	vertical-align:top;
	margin:2%;
	overflow-y:auto;
	overflow-x:hidden;
	background-color:#ffffff;
	color:#000000;
	
	overflow-wrap: break-word;
	word-wrap: break-word;
	-ms-word-break: break-all;
	/* This is the dangerous one in WebKit, as it breaks things wherever */
	word-break: break-all;
	/* Instead use this non-standard one: */
	word-break: break-word;
	/* Adds a hyphen where the word breaks, if supported (No Blink) */
	-ms-hyphens: auto;
	-moz-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto;
}
.wtw3dinternet-chattextarea {
	margin:0px 3% 0px 3%;
}
.wtw3dinternet-chatdisplayname {
	margin:10px;
	color:#FBF8C6;
	font-weight:bold;
}
.wtw3dinternet-chatdisplaynameblink {
	animation: wtw3dinternet-chatblinker 1s linear infinite;
	margin:10px;
	color:#FBF8C6;
	font-weight:bold;
	opacity: .3;
}
@keyframes wtw3dinternet-chatblinker {
  50% {
    color:yellow;
	opacity: 1;
  }
}
.wtw3dinternet-chattyping {
	animation: wtw3dinternet-chattypingblinker 1s linear infinite;
	margin:5px;
	color:#afafaf;
	font-weight:normal;
	font-size:.8em;
	opacity: .5;
	display:block;
	height:20px;
}
@keyframes wtw3dinternet-chattypingblinker {
  50% {
    color:gray;
	opacity: 1;
  }
}
.wtw3dinternet-chatthem {
	color:blue;
	font-size:1em;
}
.wtw3dinternet-chatme {
	color:black;
	font-size:1em;
}
.wtw3dinternet-chatgreennote {
	color:green;
	font-size:.8em;
}
.wtw3dinternet-chatrednote {
	color:green;
	font-size:.8em;
}
.wtw3dinternet-chatnote {
	color:gray;
	font-size:.8em;
}
.wtw3dinternet-chatrequestcount {
	float:right;
	margin:10px;
	border:3px solid #a0a0a0;
	border-radius:10px;
	min-height:20px;
	min-width:20px;
	text-align:center;
	color:black;
	font-weight:bold;
	background-color:#c0c0c0;
}
.wtw3dinternet-chatbuttonaccept {
	margin:10px;
	display:inline-block;
	border:2px solid green;
	border-radius:10px;
	padding:5px;
	background-color:#ffffff;
	color:green;
}
.wtw3dinternet-chatbuttonaccept:hover {
	color:black;
	background-color:#FBF8C6;
	cursor:pointer;
}
.wtw3dinternet-chatbuttondecline {
	margin:10px;
	display:inline-block;
	border:2px solid red;
	border-radius:10px;
	padding:5px;
	background-color:#ffffff;
	color:red;
}
.wtw3dinternet-chatbuttondecline:hover {
	color:black;
	background-color:#FBF8C6;
	cursor:pointer;
}
.wtw3dinternet-chattextsend {
	margin:10px;
	display:inline-block;
	border:2px solid green;
	border-radius:10px;
	padding:5px 30px 5px 30px;
	background-color:#ffffff;
	color:green;
}
.wtw3dinternet-chattextsend:hover {
	color:black;
	background-color:#FBF8C6;
	cursor:pointer;
}
.wtw3dinternet-chatcenter {
	text-align:center;
}
.wtw3dinternet-chathr {
	width:20%;
	margin-left:2%;
	height: 1px;
    border: 0; 
	border-top: 1px solid #ccc;
	padding: 0;
}
.wtw3dinternet-button {
	font-size:1.2em;
	font-weight:bold;
	text-align:center;
	margin:10px;
	padding:5px;
	border: 3px solid blue;
	border-radius:15px;
	color:white;
}
.wtw3dinternet-button:hover {
	cursor:pointer;
	border: 3px solid green;
	color:yellow;
}
