/*-------------------------------------------------------------------------*/
/* Realm
/*-------------------------------------------------------------------------*/
.realm {
	margin: 0;
	font-size: 1rem;
}

.realm .realm_online {}

/*-------------------------------------------------------------------------*/
/* Realm bar
/*-------------------------------------------------------------------------*/
.poll_bar,
.realm_bar {
	width: 100%;
	height: 9px;
	margin: 0.5rem 0 0 0;
	padding: 1px;
	box-shadow: inset 1px 1px 1px 0 rgba(0, 0, 0, 0.15), inset 0 0 6px 0 rgba(8, 7, 6, 0.15), 1px 1px 1px 0 rgba(181, 165, 142, 0.03);
	-moz-box-shadow: inset 1px 1px 1px 0 rgba(0, 0, 0, 0.15), inset 0 0 6px 0 rgba(8, 7, 6, 0.15), 1px 1px 1px 0 rgba(181, 165, 142, 0.03);
	-webkit-box-shadow: inset 1px 1px 1px 0 rgba(0, 0, 0, 0.15), inset 0 0 6px 0 rgba(8, 7, 6, 0.15), 1px 1px 1px 0 rgba(181, 165, 142, 0.03);
	border-radius: 0px;
	-moz-border-radius: 0px;
	-webkit-border-radius: 0px;
	background-color: rgba(21, 18, 17, 0.5);
}

.poll_bar .poll_bar_fill,
.realm_bar .realm_bar_fill {
	width: auto;
	height: 100%;
	border-radius: 1px;
	-moz-border-radius: 1px;
	-webkit-border-radius: 1px;
	background-size: 100% 100%;
	background-image: url(../../images/graphics/realm-bar-fill.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}

/*-------------------------------------------------------------------------*/
/* Online realm bar
/*-------------------------------------------------------------------------*/
#ucp_characters h1,
.online_realm_button {
	color: #766e64;
	padding: 0.9375rem;
	font-size: 0.75rem;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.02), inset 0 -25px 0 rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.02), inset 0 -25px 0 rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(0, 0, 0, 0.02), inset 0 -25px 0 rgba(0, 0, 0, 0.1);
	font-weight: bold;
	font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
	text-shadow: 0 0 4px rgba(0, 0, 0, 0.30), 0 2px 0 #000000;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	text-transform: uppercase;
	background-color: rgba(255, 255, 255, 0.02);
	transition: color 400ms, box-shadow 400ms, background-color 400ms;
	-o-transition: color 400ms, box-shadow 400ms, background-color 400ms;
	-ms-transition: color 400ms, box-shadow 400ms, background-color 400ms;
	-moz-transition: color 400ms, box-shadow 400ms, background-color 400ms;
	-webkit-transition: color 400ms, box-shadow 400ms, background-color 400ms;
}

#ucp_characters h1:hover,
.online_realm_button:hover {
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.6),inset 0 0 0 1px rgba(0, 0, 0, 0.02),inset 0 -25px 0 rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.6),inset 0 0 0 1px rgba(0, 0, 0, 0.02),inset 0 -25px 0 rgba(0, 0, 0, 0.1);
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.6),inset 0 0 0 1px rgba(0, 0, 0, 0.02),inset 0 -25px 0 rgba(0, 0, 0, 0.1);
	background-color: rgba(255, 255, 255, 0.03);
}

/*-------------------------------------------------------------------------*/
/* Realm switcher
/*-------------------------------------------------------------------------*/
.realm-switcher {
	width: auto;
	height: auto;
	top: 15px;
	left: 15px;
	z-index: 9;
	position: absolute;
}

.realm-switcher .switcher-btn {
	width: 12px;
	height: 12px;
	margin: 0 5px 0 0;
	display: inline-block;
	overflow: hidden;
	border-radius: 1px;
	-moz-border-radius: 1px;
	-webkit-border-radius: 1px;
	background-color: #5a654a;
	transition: background-color 200ms ease-in-out;
	-o-transition: background-color 200ms ease-in-out;
	-ms-transition: background-color 200ms ease-in-out;
	-moz-transition: background-color 200ms ease-in-out;
	-webkit-transition: background-color 200ms ease-in-out;
}

.realm-switcher .switcher-btn:hover {
	cursor: pointer;
	background-color: #778463;
}

.realm-switcher .switcher-btn.active {
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4), 0 2px 0 0 #000;
	-moz-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4), 0 2px 0 0 #000;
	-webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.4), 0 2px 0 0 #000;
	background-color: #b1c793;
}