@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,400i,700,700i');
@import url('https://fonts.googleapis.com/css?family=Roboto+Mono:400,400i,700,700i');

/*-------------------------------------------------------------------
/- General
/------------------------------------------------------------------*/

* {
	box-sizing: border-box;
}

html, body {
	margin: 0;
}

body {
	min-height: 100%;
	min-width: 100%;
	font-family: 'Roboto', sans-serif;
	font-weight: 400;
	font-size: 14px;
	padding-top: 80px;
}

a {
	color: #a769f6;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

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

header {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	position: fixed;
	top: 0;
	width: 100%;
	height: 80px;
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.4);
	text-align: left;
	font-weight: 300;
	font-size: 20px;
	color: #FFFFFF;
	z-index: 50;
}

header .logo {
	width: 100%;
	max-width: 250px;
}

/*-------------------------------------------------------------------
/- Footer
/------------------------------------------------------------------*/

footer {
	display: block;
	text-align: center;
	font-size: 12px;
	padding: 25px;
}

footer a.contributorLink {
	display: inline-block;
}

footer .footerDivider {
	display: block;
	width: 25px;
	height: 1px;
	margin: 10px auto;
	padding: 0;
}

/*-------------------------------------------------------------------
/- User Account Bar
/------------------------------------------------------------------*/

.userAccountBar {
	width: 100%;
}

#signedInDisplay,
#signedOutDisplay {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	width: 100%;
	min-height: 80px;
	padding: 10px;
	height: auto;
}

.g-signin2 {
	overflow: hidden;
	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);
	transition: 0.3s all;
}

.g-signin2:hover {
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.4);
}

.g-signin2:active {
	box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.4);
}

.g-signin2 .abcRioButtonIcon {
	border-radius: 5px !important;
}

.userDisplay,
.userButton {
	display: inline-flex;
	height: 50px;
	margin: 5px;
	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);
	transition: 0.3s all;
	font-size: 14px;
	overflow: hidden;
}

.userDisplay {
	justify-content: flex-start;
	align-items: center;
	align-content: center;
}

.userDisplay #userImage {
	display: inline-block;
	height: 100%;
}

.userDisplay #userName {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	padding: 15px;
}

.userButton {
	justify-content: center;
	align-items: center;
	align-content: center;
	padding: 15px;
	text-transform: uppercase;
	font-weight: bold;
	cursor: pointer;
}

.userButton img {
	height: 100%;
}

/*-------------------------------------------------------------------
/- Character Listings
/------------------------------------------------------------------*/

#characterListingContainer {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	min-height: 100%;
	min-width: 100%;
	padding: 5px;
	padding-bottom: 0;
}

.generalNotesListing,
.characterListing {
	display: flex;
	align-items: center;
	align-content: center;
	flex-grow: 1;
	width: 100%;
	height: 60px;
	padding: 10px;
	margin: 2.5px;
	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);
	transition: 0.3s all;
	font-size: 16px;
	cursor: pointer;
}

.generalNotesListing:hover,
.characterListing:hover {
	box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.4);
}

.generalNotesListing {
	justify-content: center;
	text-transform: uppercase;
	font-weight: bold;
}

.characterListing {
	justify-content: flex-start;
}

.characterListing .characterIcon {
	display: inline-block;
	height: 40px;
}

.characterListing .characterNumber {
	font-size: 20px;
	font-weight: bold;
	width: 60px;
	padding: 0 10px;
	text-align: left;
}

.characterListing .characterName {
	font-size: 16px;
	text-transform: uppercase;
}

.noResultsMessage {
	display: block;
	width: 100%;
	padding: 20px;
	text-align: center;
	font-size: 20px;
	font-weight: 300;
	color: rgba(255,255,255,0.3);
}

/*-------------------------------------------------------------------
/- Notify.js
/------------------------------------------------------------------*/

.notifyjs-corner {
	top: 20px !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	margin: 0 !important;
	padding: 5px 20px !important;
	width: 100% !important;
	max-width: 700px !important;
}

.notifyjs-wrapper {
	margin: 0 !important;
	padding: 5px !important;
}

.notifyjs-container {
	padding: 0 !important;
	margin: 0 !important;
}

.notifyjs-material-base {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
	width: auto;
	height: auto;
	max-width: 100%;
	padding: 10px;
	opacity: 1;
	border-radius: 5px;
	box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.4);
	z-index: 1000;
	transition: 1s all;
	background: #607D8B;
	color: #FFFFFF;
}

.notifyjs-material-base .textWrapper {
	display: inline-flex;
	padding: 5px;
	margin-right: 10px;
	width: auto;
}

.notifyjs-material-base .imageWrapper {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	background: rgba(255,255,255,0.2);
	border-radius: 50%;
	padding: 5px;
	margin-right: 10px;
}

.notifyjs-material-warn .imageWrapper {
	background: rgba(0,0,0,0.2);
}

.notifyjs-material-base .imageWrapper .image {
	display: flex;
	width: 25px;
	height: 25px;
}

.notifyjs-material-base .imageWrapper .image {
	content:url("../images/transparent.png");
}

.notifyjs-material-error .imageWrapper .image {
	content:url("../images/icons/material/x.svg");
}

.notifyjs-material-success .imageWrapper .image {
	content:url("../images/icons/material/check.svg");
}

.notifyjs-material-info .imageWrapper .image {
	content:url("../images/icons/material/info.svg");
}

.notifyjs-material-warn .imageWrapper .image {
	content:url("../images/icons/material/warning.svg");
	opacity: 0.6;
}

.notifyjs-material-error {
	background: #F44336;
}

.notifyjs-material-success {
	background: #4CAF50;
}

.notifyjs-material-info {
	background: #37474F;
}

.notifyjs-material-warn {
	background: #FFEE58;
	color: rgba(0,0,0,0.6);
	font-weight: bold;
}

/*-------------------------------------------------------------------
/- Loading Icon
/------------------------------------------------------------------*/

#loadingIconWindow {
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	z-index: 1000;
	background: none;
	opacity: 1;
	transition: 0.3s all;
}

#loadingIcon {
	display: block;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1000;
	background: rgba(0,0,0,0.5);
	border-radius: 50%;
	padding: 10px;
	opacity: 1;
	transition: 0.3s all;
}

#loadingIcon > div {
  border: 5px solid rgba(255,255,255,0.1);
  border-top: 5px solid white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*-------------------------------------------------------------------
/- Theme Transitions
/------------------------------------------------------------------*/

header {
	transition: 0.3s background;
}

#infoPanel #infoPanel-header,
#infoPanel-body .subtitle,
#infoPanel-body table th,
.sortable-item {
	transition: 0.3s background;
}

/*-------------------------------------------------------------------
/- Buttons
/------------------------------------------------------------------*/

.materialButton {
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: bold;
	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);
	border-radius: 5px;
	transition: 0.3s all;
	cursor: pointer;
}

.materialButton:hover {
	box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.4);
	text-decoration: none;
}

.materialButton:active {
	box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.4);
	text-decoration: none;
}

.purpleButton {
	background: #a769f6;
	color: #FFFFFF;
}

.purpleButton:hover {
	background: #ab80e1;
}

.purpleButton:active {
	background: #9e73d4;
}

.redButton {
	background: #F44336;
}

.redButton:hover {
	background: #f5564a;
}

.redButton:active {
	background: #db3c30;
}

/*-------------------------------------------------------------------
/- Stage Colors
/------------------------------------------------------------------*/

.bf {
	background: rgb(32,150,243) !important;
	color: rgba(0,0,0,0.8) !important;
}

.fd {
	background: rgb(1,87,155) !important;
	color: rgba(255,255,255,0.8) !important;
}

.ps2 {
	background: rgb(46,125,50) !important;
	color: rgba(255,255,255,0.8) !important;
}

.sv {
	background: rgb(255,183,77) !important;
	color: rgba(0,0,0,0.8) !important;
}

.town {
	background: rgb(156,204,101) !important;
	color: rgba(0,0,0,0.8) !important;
}

.kalos {
	background: #7986cb !important;
}

.yStory {
	background: rgb(239,83,80) !important;
	color: rgba(255,255,255,0.8) !important;
}

.lylat {
	background: rgb(26,35,126) !important;
	color: rgba(255,255,255,0.8) !important;
}

.yIsland {
	background: rgb(77,182,172) !important;
	color: rgba(0,0,0,0.8) !important;
}

/* OTHER COLORS */

.success {
	background: #4CAF50 !important;
}

.failure {
	background: #F44336 !important;
}

/*-------------------------------------------------------------------
/- 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) {
	.characterListing {
		width: 49%;
	}
}

/*Medium devices (tablets, 768px and up)*/
@media only screen and (min-width: 768px) {
	.signedInDisplay,
	.signedOutDisplay {
		height: 100px;
	}
	.characterListing {
		width: 32%;
	}
}

/*Large devices (desktops, 992px and up)*/
@media only screen and (min-width: 992px) {
	#characterListingContainer {
		padding: 20px;
		padding-bottom: 0;
	}
	
	.generalNotesListing,
	.characterListing {
		margin: 5px;
	}
}

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

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