/************************************
	* Ajax Form CSS
*************************************/
form input,
form select{
	min-height: 24px;
}
.pr-field{
	position: relative;
	display: inherit;
}
.pr-field .err-icon{
	display: block;
	width: 20px;
	height: 20px;
	background: #ff6f6f;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	font-size: 14px;
	line-height: 20px;
	color: #fff;
	text-align: center;
	font-weight: bold;
	right: 2px;
	top: 1px;
	position: absolute;
	cursor: pointer;
	z-index: 10;
}
.err-icon .pr-tooltip{
	display: none;
	position: absolute;
	bottom: 25px;
	left: -100px;
	background: #a13737;
	color: #fff;
	font-size: 14px;
	padding: 5px;
	border-radius: 3px;
	width: 200px;
	z-index: 11;
}
.err-icon .pr-tooltip:after{
	content: '';
	display: block;
	width: 1px;
	height: 1px;
	border-top: 6px solid #a13737;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	position: absolute;
	bottom: -6px;
	left: 100px;
}

.err-icon .pr-tooltip.bottom{
	top: 25px;
	bottom: auto;
}
.err-icon .pr-tooltip.bottom:after{
	top: -6px;
	bottom: auto;
	border-bottom: 6px solid #a13737;
	border-top: none;
}

.err-icon .pr-tooltip.right{
	top: 0;
	bottom: auto;
	left: 25px;
}
.err-icon .pr-tooltip.right:after{
	top: 5px;
    bottom: auto;
    left: -6px;
    border-bottom: 5px solid transparent;
    border-right: 6px solid #a13737;
    border-top: 5px solid transparent;
    border-left: none;
}

.err-icon .pr-tooltip.left{
	top: 0;
	bottom: auto;
	right: 25px;
	left: auto;
}
.err-icon .pr-tooltip.left:after{
	top: 5px;
    bottom: auto;
	left: auto;
    right: -6px;
    border-bottom: 5px solid transparent;
    border-right: none;
    border-top: 5px solid transparent;
    border-left: 6px solid #a13737;
}

.pr-field .err-icon:hover .pr-tooltip{
	display: block;
}

/* pAlert */
.pAlert-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
}
.pAlert {
    background: #fcfcfc;
    height: 180px;
    width: 380px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -90px 0 0 -190px;
    box-shadow: 1px 1px 10px rgba(0,0,0,0.5);
    border-radius: 5px;
}
.pAlert.big {
    width: 80%;
    height: 90%;
    margin: 0;
    top: 5%;
    left: 10%;
}
.pAlert.big .pAlert-body {
    height: auto;
    min-height: 200px;
    text-align: left;
    max-height: 75%;
    overflow: auto;
}
.pAlert.big .pAlert-footer {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
}
.pAlert.In{
	opacity: 0;
}
.pAlert-header {
    height: 30px;
    padding: 0 15px;
    line-height: 30px;
}
.pAlert-close {
    position:absolute;
    right:0;
    font-style:normal;
    display: block;
    width:30px;
    text-align: center;
    color: #999;
    cursor: pointer;
}
.pAlert-close:hover {
	color: #900;
}
.pAlert-body {
    padding: 15px;
    text-align: center;
    height: 100px;
}
.pAlert-footer {
    padding: 5px;
    text-align: center;
}
.pAlert-btn {
    min-width: 90px;
    line-height: 30px;
    border-radius: 5px;
    border: none;
    background: #444;
    color: #fff;
    text-shadow: none;
	cursor: pointer;
}

@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.In {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.Out {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}