html {
}

body {
	background-image: url(/images/background_logo.png);
	background-position: center;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: cover;

	margin: 0px;
	padding: 0px;
	background-color: #00070a;
    font-family: "Roboto Condensed", sans-serif;
	overflow: hidden;
}

input[type=text] {
    background-color: #fff;
	border: 0px;
    width: 240px;
	padding: 0px 0px 0px 10px;
	font-family: "Roboto Condensed", sans-serif;
    font-size: 15px;
    color: #00070a;
	height: 32px;
	margin-right: 6px;
}

button {
	height: 32px;
    font-family: "Roboto Condensed", sans-serif;
	font-size: 15px;
	border: 1px solid #00bbff;
	border-radius: 3px;
	background-color: #ffffff;
	cursor: pointer;
}

button:hover {
	color: #ffffff;
	background-color: #00bbff;
}

.logo-main {
	position: absolute;
	left: 10px;
	top: 10px;
}

#splitter {
	width: 100vw;
	height: 100vh;
	display: flex;
	background-color: transparent;
}

#streams {
	width: 85%;
	height: 100%;
	text-align: center;
}

#streamsContainer {
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
}

#info {
	border-top: 1px solid transparent;
	border-image: linear-gradient(90deg, transparent, #00bbff, transparent);
	border-image-slice: 1;
	text-align: center;
	margin-top: 10px;
	padding: 10px;
	color: #00bbff;
	font-size: 16px;
	width: 375px;
}

#addStreamTitle {
    background-color: #000000;
    border: none;
    width: 100%;
	height: 40px;
	line-height: 40px;
    text-align: center;
	font-family: "Roboto Condensed", sans-serif;
	font-weight: 600;
    font-size: 20px;
    color: #00bbff;
	margin-bottom: 6px;
}

#pipCheckbox {
	vertical-align: middle;
	position: relative;
	bottom: 0px;
}

#closeForm {
	position: relative;
	right: -75px;
	top: 3px;
	cursor: pointer;
	display: none;
}

#streamEntry {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-color: rgba(0, 7, 10, .85);
	-webkit-box-shadow: 0 0 10px 5px #00bbff;
	-moz-box-shadow: 0 0 10px 5px #00bbff;
	box-shadow: 0 0 10px 5px #00bbff;
	z-index: 1000;
}

#addStreamForm {
    border: none;
    width: 100%;
	padding-left: 6px;
	padding-right: 6px;
	padding-bottom: 6px;
}

.addStream {
	margin-bottom: 6px;
	white-space: nowrap;
}

.addButton {
    vertical-align: bottom;
	margin-left: 6px;
	cursor: pointer;
}

.overlay {
	position: absolute;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: transparent;
	display: none;
}

.chat {
	position: relative;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	border: none;
}

.stream {
	position: absolute;
}

.stream-pip {
	position: absolute;
	background-color: #000000;
	-webkit-box-shadow: 4px 4px 8px 0px rgba(0,0,0,0.75);
	-moz-box-shadow: 4px 4px 8px 0px rgba(0,0,0,0.75);
	box-shadow: 4px 4px 8px 0px rgba(0,0,0,0.75);
}

.options img {
	cursor: pointer;
	margin-left: 3px;
}

.swap {
	margin-right: -2px;
}

.stream .options,
.stream-pip .options {
	display: none;
}

.stream-over {
	position: absolute;
	z-index: 100;
}

.stream-over .options {
	background-color: #00bbff;
	border-bottom-left-radius: 18px;
	position: absolute;
	right: -2px;
	top: 0px;
	height: 20px;
	text-align: right;
	padding-left: 10px;
	padding-right: 5px;
	padding-top: 3px;
	white-space: nowrap;
}

.stream iframe,
.stream-over iframe,
.stream-pip iframe {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 99.9%;
	height: 100%;
	border: 2px solid transparent;
	overflow: hidden;
}

.stream-pip iframe {
	border: 2px solid #000000 !important;
}

.stream-over iframe {
	border: 2px solid #00bbff !important;
}

#chats {
	flex: 1;
	height: 100vh;
	border-left: 1px solid transparent;
	border-image: linear-gradient(0deg, transparent, #00bbff, transparent);
	border-image-slice: 1;
	display: flex;
	flex-direction: column;
	visibility: hidden;
}

#chatFrames {
	display: flex;
	flex-direction: column;
	flex: 1;
}

.chatFrame {
	display: flex;
	flex-direction: column;
	transition: flex 500ms ease;
}

.expanded {
	flex: 1;
}

.collapsed {
	flex: none;
}

.chatFrame .header {
	margin: 0; 
	padding: 4px; 
	background-color: #00bbff;
	border-top: 1px solid black;
	border-bottom: 1px solid black;
	font-family: 'Roboto Condensed', sans-serif;
	font-size: .9em;
	font-weight: normal;
	color: #ffffff;
	flex: none;
	cursor: pointer;
}

.chatFrame .expandCollapse {
	width: 16px;
	height: 16px;
	display: inline-block;
	vertical-align: middle;
	margin-top: -.25em;
	position: relative;
	text-indent: -99999px;
	overflow: hidden;
	background-repeat: no-repeat;
	cursor: pointer;
}

.expanded .expandCollapse {
	background-image: url("//code.jquery.com/ui/1.12.1/themes/base/images/ui-icons_ffffff_256x240.png");
	background-position: -65px -16px;
}

.collapsed .expandCollapse {
	background-image: url("//code.jquery.com/ui/1.12.1/themes/base/images/ui-icons_ffffff_256x240.png");
	background-position: -32px -16px;
}


.chatFrame .frame {
	border: none;
}

.expanded .frame {
	flex: 1;
	display: inline;
}

.collapsed .frame {
	flex: none;
	display: none;
}

#about {
	width: 100%;
	height: 30px;
	border-top: 1px solid transparent;
	border-image: linear-gradient(90deg, transparent, #00bbff, transparent);
	border-image-slice: 1;
	text-align: center;
	vertical-align: middle;
	padding-top: 3px;
	white-space: nowrap;
	flex: none;
}

#about img {
	vertical-align: middle;
}

#about div {
	display: inline-block;
	height: 24px;
	color: #ffffff;
	font-size: 15px;
	border-radius: 4px;
	padding: 3px 5px 0px 5px;
}

#about div:hover {
	cursor: pointer;
	background-color: #00bbff;
}
