/*
	* jQuery Minimun Password Requirements 1.1
	* http://elationbase.com
	* Copyright 2014, elationbase
	* Check Minimun Password Requirements
	* Free to use under the MIT license.
	* http://www.opensource.org/licenses/mit-license.php
*/

#pr-box {
	font-size: 1.2rem;
	position: absolute;
	z-index: 1000;
	display: none;
	width: 28rem;
	max-width: 100%;
}

#pr-box i {
	width: 0;
	height: 0;
	margin-left: 2rem;
	border-left: 0.7rem solid transparent;
	border-right: 0.7rem solid transparent;
	border-bottom: 0.7rem solid #008cff;
}

#pr-box-inner {
	margin-top: 0.6rem;
	-webkit-box-shadow: 0 1rem 4rem -0.3rem rgb(7 22 35 / 10%);
	-moz-box-shadow: 0 1rem 4rem -0.3rem rgb(7 22 35 / 10%);
	box-shadow: 0 1rem 4rem -0.3rem rgb(7 22 35 / 10%);
	-webkit-border-radius: 0.7rem;
	-moz-border-radius: 0.7rem;
	border-radius: 0.7rem;
	overflow: hidden;
}

#pr-box p {
	padding: 1.5rem;
	margin: 0;
	-webkit-border-radius: 0.2rem 0.2rem 0 0;
	-moz-border-radius: 0.2rem 0.2rem 0 0;
	border-radius: 0.2rem 0.2rem 0 0;
}

#pr-box ul {
	padding: 1rem 1.5rem;
	margin: 0;
	-webkit-border-radius: 0 0 0.2rem 0.2rem;
	-moz-border-radius: 0 0 0.2rem 0.2rem;
	border-radius: 0 0 0.2rem 0.2rem;
}

#pr-box ul li {
	list-style: none;
	display: flex;
	align-items: center;
	padding: 0.5rem 0;
}

#pr-box ul li span {
	width: 1.5rem;
	height: 1.5rem;
	float: left;
	border-radius: 100%;
	margin-right: 1.5rem;
}

#pr-box.light {
	color: #2d2f31;
}

#pr-box.light p {
	background-color: #008cff;
	color: #fff;
}

#pr-box.light ul {
	background-color: #fff;
}

#pr-box.light ul li span {
	background-color: #fff;
	border: 0.3rem solid #008cff;
}

#pr-box.light ul li span.pr-ok {
	background-color: #008cff;
	border: 0.3rem solid #008cff;
}

#pr-box.dark {
	color: #f1f1f1;
}

#pr-box.dark p {
	background-color: #008cff;
}

#pr-box.dark ul {
	background-color: #2d2f31;
}

#pr-box.dark ul li span {
	background-color: #2d2f31;
	border: 0.3rem solid #008cff;
}

#pr-box.dark ul li span.pr-ok {
	background-color: #008cff;
	border: 0.3rem solid #008cff;
}
