/*-------------------------------------------------------------------
/- Window
/------------------------------------------------------------------*/

#infoWindow,
#settingsWindow {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: scroll;
	display: block;
	text-align: center;
	background: rgba(0,0,0,0.5);
	color: rgba(255,255,255,0.8);
	opacity: 1;
	transition: 0.5s all;
	z-index: 100;
}

/*-------------------------------------------------------------------
/- Back Button
/------------------------------------------------------------------*/

.backButton {
	position: fixed;
	top: 20px;
	left: 20px;
	margin: 0;
	padding: 10px;
	overflow: hidden;
	display: block;
	border-radius: 50%;
	line-height: 0;
	cursor: pointer;
	transition: 0.3s all;
	z-index: 1000;
}

.backButton img {
	width: 30px;
	height: 30px;
}

/*-------------------------------------------------------------------
/- Info Panel
/------------------------------------------------------------------*/

#infoPanel,
#settingsPanel {
	display: inline-block;
	width: 100%;
	min-height: 100%;
	height: auto;
	box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14), 0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -5px rgba(0, 0, 0, 0.4);
	overflow: hidden;
	transition: 0.3s all;
	z-index: 101;
}

#infoPanel > div {
	width: 100% !important;
	margin: 0;
}

/*-------------------------------------------------------------------
/- Header
/------------------------------------------------------------------*/

#infoPanel #infoPanel-header {
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	padding: 20px;
	height: 90px;
	font-weight: 300;
	font-size: 28px;
	letter-spacing: 1px;
	color: #FFFFFF;
}

#infoPanel #infoPanel-icon {
	width: 40px;
	margin-right: 10px;
}

/*-------------------------------------------------------------------
/- Body
/------------------------------------------------------------------*/

#infoPanel-body {
	display: block;
	padding: 10px 20px;
	font-size: 14px;
}

#infoPanel-body .divider {
	height: 2px;
	padding: 0 !important;
	margin: 20px 0;
}

#infoPanel-body .subtitle {
	display: flex;
	width: 100%;
	padding: 10px;
	font-weight: bold;
	text-align: left;
	text-transform: uppercase;
	font-size: 16px;
	border-radius: 5px;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	color: rgba(255,255,255,0.8);
}

#infoPanel-body .subtitle img.seriesIcon {
	display: flex;
	flex-grow: 0;
	height: 20px;
	width: 20px;
	margin-right: 10px;
	opacity: 0.4;
}

#infoPanel-body .subtitle span.text {
	display: flex;
	flex-grow: 1;
}

#infoPanel-body .subtitle img.arrow {
	display: flex;
	flex-grow: 0;
	height: 20px;
	width: 20px;
	opacity: 0.8;
}

#infoPanel-body .collapsible {
	display: block;
	padding: 10px;
	overflow: hidden;
}

#infoPanel-body .subtitle,
#infoPanel-body .collapsible {
	margin: 10px 0;
}

#infoPanel-body table {
	width: 100%;
	border-spacing: 3px;
}

#infoPanel-body table tr:nth-child(odd) {
	background: rgba(0,0,0,0.15);
}

#infoPanel-body table th,
#infoPanel-body table td {
	padding: 5px;
	margin: 0;
}

#infoPanel-body table th {
	text-transform: uppercase;
	color: rgba(255,255,255,0.8);
}

#infoPanel-body table td {
	text-align: left;
}

/*-------------------------------------------------------------------
/- Body - No Data
/------------------------------------------------------------------*/

#stageBans-noData,
#killThrows-noData,
#shotocordNotes-noData,
#customNotes-noData {
	width: 100%;
	text-align: center;
	font-weight: 300;
	font-size: 16px;
}

#customNotes-noData {
	padding-bottom: 10px;
}

/*-------------------------------------------------------------------
/- Body - Character Stats
/------------------------------------------------------------------*/

#infoPanel-charStats table tr th:nth-child(2),
#infoPanel-charStats table tr td:nth-child(2) {
	width: 100px;
	text-align: center;
}

#infoPanel-charStats .source,
.infoPanel-fastestOptions .source {
	padding-top: 10px;
	text-align: left;
	font-size: 10px;
}

/*-------------------------------------------------------------------
/- Body - TSRK Percents / Recommended Stage Bans
/------------------------------------------------------------------*/

.infoPanel-tsrkPercents .stageListingContainer,
#infoPanel-stageBans .stageListingContainer {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	height: auto;
}

.stageListing {
	display: flex;
	flex-grow: 1;
	margin: 5px;
	width: 48%;
	background: black;
	overflow: hidden;
	border-radius: 5px;
	color: #FFFFFF;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.stageListing .name,
.stageListing .percent {
	display: flex;
	padding: 7px;
	font-weight: bold;
}

.stageListing .name {
	flex-grow: 1;
	padding: 7px 10px;
}

.stageListing .percent {
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-grow: 0;
	background: rgba(0,0,0,0.3);
	width: 50px;
}

.tsrkPercents-buttonContainer {
	display: block;
	width: 100%;
}

#stageBans-notesContainer,
#killThrows-notesContainer {
	background-color: rgba(0,0,0,0.1);
	display: block;
	width: 100%;
	margin: 5px;
	margin-top: 15px;
	text-align: left;
	line-height: 1.5;
}

.stageBans-notesHeader,
#stageBans-notesBody,
.killThrows-notesHeader,
#killThrows-notesBody {
	display: block;
	margin: 0;
	display: block;
	width: 100%;
	padding: 10px;
}

.stageBans-notesHeader,
.killThrows-notesHeader {
	background: rgba(0,0,0,0.2);
	font-weight: bold;
	text-transform: uppercase;
}

#tsrkPercents-moreDetails-ryu,
#tsrkPercents-moreDetails-ken {
	margin: 5px;
	padding: 15px;
}

/*-------------------------------------------------------------------
/- Body - Fastest Options
/------------------------------------------------------------------*/

.infoPanel-fastestOptions table tr th:nth-child(1),
.infoPanel-fastestOptions table tr td:nth-child(1) {
	width: 40%;
}

.infoPanel-fastestOptions table tr th:nth-child(2),
.infoPanel-fastestOptions table tr td:nth-child(2) {
	width: 100px;
	text-align: center !important;
}

/*-------------------------------------------------------------------
/- Body - Kill Confirms
/------------------------------------------------------------------*/

#infoPanel-killConfirms table tr th:nth-child(2),
#infoPanel-killConfirms table tr td:nth-child(2),
#infoPanel-killConfirms table tr th:nth-child(3),
#infoPanel-killConfirms table tr td:nth-child(3) {
	width: 100px;
	text-align: center;
}

/*-------------------------------------------------------------------
/- Body - Kill Options
/------------------------------------------------------------------*/

#infoPanel-killOptions table tr th:nth-child(2),
#infoPanel-killOptions table tr td:nth-child(2) {
	width: 100px;
	text-align: center;
}

/*-------------------------------------------------------------------
/- Body - Kill Throws
/------------------------------------------------------------------*/

#infoPanel-killThrows .throwsContainer {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	width: 100%;
	height: auto;
}

.throwListing {
	display: flex;
	flex-grow: 1;
	margin: 5px;
	width: 48%;
	background: black;
	overflow: hidden;
	border-radius: 500px;
	color: #FFFFFF;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
}

.throwListing .name,
.throwListing .icon {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
	padding: 5px;
}

.throwListing .name {
	font-weight: bold;
	text-transform: uppercase;
	text-align: left;
	flex-grow: 1;
	padding: 5px 15px;
}

.throwListing .icon {
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-grow: 0;
	background: rgba(0,0,0,0.3);
	border-radius: 100%;
	width: 35px;
}

.throwListing .icon img {
	width: 100%;
	height: 100%;
}

/*-------------------------------------------------------------------
/- Body - Tumble Percents
/------------------------------------------------------------------*/

#infoPanel-tumble table tr th:nth-child(2),
#infoPanel-tumble table tr td:nth-child(2),
#infoPanel-tumble table tr th:nth-child(3),
#infoPanel-tumble table tr td:nth-child(3) {
	width: 100px;
	text-align: center;
}

/*-------------------------------------------------------------------
/- Body - Ptilt Jab Lock
/------------------------------------------------------------------*/

#infoPanel-ptiltJabLock table tr th:nth-child(1),
#infoPanel-ptiltJabLock table tr td:nth-child(1) {
	width: 100px;
	text-align: center;
}

/*-------------------------------------------------------------------
/- Body - Jab12 Crescent
/------------------------------------------------------------------*/

#infoPanel-jabCrescent table tr th,
#infoPanel-jabCrescent table tr td {
	width: 50%;
	text-align: center;
}

/*-------------------------------------------------------------------
/- Body - Notes
/------------------------------------------------------------------*/

#infoPanel-shotocordNotes {
	text-align: left;
}

#shotocordNotes-container,
#customNotes-displayContainer {
	display: block;
	text-align: left;
	width: 100%;
	height auto;
	padding: 0 5px;
}

#infoPanel-shotocordNotes ul,
#infoPanel-shotocordNotes ol,
#infoPanel-customNotes ul,
#infoPanel-customNotes ol {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
}

#infoPanel-shotocordNotes ul li,
#infoPanel-shotocordNotes ol li,
#infoPanel-customNotes ul li,
#infoPanel-customNotes ol li {
	padding: 5px 0;
}

#customNotes-displayContainer {
	padding-bottom: 10px;
}

#customNotes-limitBar {
	display: block;
	padding: 0;
	margin: 10px 0;
	position: relative;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 5px;
}

#customNotes-limitBar #customNotes-limitBarVisual {
	display: block;
	position: relative;
	height: 100%;
	width: 90%;
	transition: 0.3s all;
}

.editorButton {
	padding: 10px 20px;
	margin-top: 10px;
}

/*-------------------------------------------------------------------
/- Body - Inkling Uthrow Uair
/------------------------------------------------------------------*/

#infoPanel-inklingUthrowUair table tr th,
#infoPanel-inklingUthrowUair table tr td {
	width: 50%;
	text-align: center;
}

/*-------------------------------------------------------------------
/- Responsive Styling
/------------------------------------------------------------------*/

/*Extra small devices (portrait phones, less than 576px)*/
@media only screen and (max-width: 575px) {
	
}

/*Small devices (landscape phones, 576px and up)*/
@media only screen and (min-width: 576px) {
	
}

/*Medium devices (tablets, 768px and up)*/
@media only screen and (min-width: 768px) {
	#infoWindow,
	#settingsWindow {
		padding: 30px;
	}
	.backButton {
		top: 30px;
		left: 30px;
	}
	#infoPanel {
		border-radius: 5px;
		max-width: 700px;
		min-height: 0;
	}
	#infoPanel #infoPanel-header {
		font-weight: 100;
		font-size: 35px;
	}
}

/*Large devices (desktops, 992px and up)*/
@media only screen and (min-width: 992px) {
	
}

/*Extra large devices (large desktops, 1200px and up)*/
@media only screen and (min-width: 1200px) {
	
}

/*Extra large devices (extra large desktops, 1500px and up)*/
@media only screen and (min-width: 1500px) {
	
}



