/**
 * Playable City Panel Stylesheet.
 *
 * Implements default styling for all media.
 *
 * @package Playable_City_Panel
 */



/*
--------------------------------------------------------------------------------
Structural
--------------------------------------------------------------------------------
*/
#playable-city-panel-wrapper {
	width: 100%;
	z-index: 999;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	position: absolute;
}

#playable-city-panel {
	display: none;
	position: relative;
	width: 100%;
	height: 260px;
	z-index: 1;
	overflow-y: scroll;
	background: #000;
	background: rgba(0, 0, 0, 0.9);
	color: #999;
}

#playable-city-panel .panel-content {
	width: 60%;
	margin: 0 auto;
	padding-top: 1.5em;
	text-align: left;
	font-size: 0.85em;
}

#playable-city-panel .playable-city-panel-left {
	width: 31%;
	float: left;
	margin-bottom: 2em;
	padding: 0 1%;
}

#playable-city-panel .playable-city-panel-left.pcp-header {
	width: 35%;
}

#playable-city-panel .pcp-close {
	position: absolute;
	right: 20%;
	top: 1.5em;
}



/*
--------------------------------------------------------------------------------
Panel Markup
--------------------------------------------------------------------------------
*/
#playable-city-panel h2 {
	font-size: 1.2em;
	margin: 0 0 0.5em;
	padding: 0;
	color: #E86362;
	text-align: left;
}

#playable-city-panel p {
	margin: 0.5em 0;
	padding: 0;
}

#playable-city-panel .pcp-forgot p {
	margin: 0 0 0.5em 0;
}

#playable-city-panel a {
	text-decoration: none;
	color: #E86362;
}

#playable-city-panel a:hover {
	color: #E86362;
}

#playable-city-panel ul {
	margin: 0 0 5px 0;
	padding: 0;
	line-height: 1.6em;
	list-style: none;
}

#playable-city-panel form {
	margin: 0;
}

#playable-city-panel label {
	float: left;
	clear: both;
	width: 97%;
	display: block;
}

#playable-city-panel input#bp-login-widget-user-login,
#playable-city-panel input#bp-login-widget-user-pass,
#playable-city-panel input.playable-city-panel-field {
	width: 97%;
	margin-bottom: 0.5em;
}

#playable-city-panel .forgetmenot {
	margin-bottom: 0.5em;
}

#playable-city-panel .pcp-close a:before {
	content: "\f158";
	font: normal 20px/1 dashicons;
	speak: none;
	vertical-align: middle;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

#playable-city-panel .pcp-close a span {
	position: absolute;
	margin: -1px;
	padding: 0;
	height: 1px;
	width: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	border: 0;
}



/*
--------------------------------------------------------------------------------
Responsiveness
--------------------------------------------------------------------------------
*/

@media all and (max-width: 980px) {

	#playable-city-panel {
		height: 360px;
	}

	#playable-city-panel .panel-content {
		width: 80%;
	}

	#playable-city-panel .panel-content .playable-city-panel-left.pcp-header {
		width: 100%;
		height: auto;
		min-height: 0;
		margin-bottom: 1em;
	}

	#playable-city-panel .panel-content .playable-city-panel-left.pcp-login-form,
	#playable-city-panel .panel-content .playable-city-panel-left.pcp-forgot {
		width: 49%;
	}

	#playable-city-panel .pcp-close {
		right: 10%;
	}

}



@media all and (max-width: 768px) {

	#playable-city-panel .panel-content {
		width: 98%;
	}

	#playable-city-panel .pcp-close {
		right: 1%;
	}

}



@media all and (max-width: 480px) {

	#playable-city-panel .panel-content .playable-city-panel-left.pcp-login-form,
	#playable-city-panel .panel-content .playable-city-panel-left.pcp-forgot {
		float: none;
		clear: left;
		width: 100%;
		min-height: 0;
		margin-bottom: 15px;
	}

	#playable-city-panel .panel-content .playable-city-panel-left.pcp-login-form {
		padding-bottom: 10px;
	}

	#playable-city-panel .panel-content .playable-city-panel-left.pcp-forgot {
		padding-top: 0;
	}

}



