/*********************************************************************
* Styles are to be used with the Captcha Class.                      *
* You may include these as is or copy them to your style             *
* sheet and change to fit your needs.                                *
**********************************************************************/
.hpc-captcha {
	width:370px;
	padding:10px;
	border:1px solid #cccccc;
      font-family: "Times New Roman", Times, serif;
      border-radius: 3px;
      box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.08);
      -webkit-box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.08);
      -moz-box-shadow: 0px 0px 4px 1px rgba(0,0,0,0.08);
      box-sizing: unset;
}

.hpc-captcha .popup-bg {
	position:fixed;
	top:0;
	left:0;
	background:rgba(0,0,0,0.6);
	z-index:5;
	width:100%;
	height:100%;
	display:none;
}

.hpc-captcha .checkbox {
	display:inline-block;
      vertical-align: middle;
      width: 30px;
      height: 35.75px;
      background-image: url(../img/checkbox.png);
      background-repeat: no-repeat;
      margin: 0px;
}

.hpc-captcha .checkbox.selected {
      background-image: url(../img/checkbox-selected.png);
}

.hpc-captcha .checkbox-label {
	display:inline-block;
      margin-left: 10px;
}

.hpc-captcha .logo {
	display: inline-block;
      width: 60px;
      height: 37px;
      margin-left: 132px;
      background-image: url(../img/hpc-captcha.png);
      background-repeat: no-repeat;
      vertical-align: middle;
}

.hpc-captcha .input-container {
	display: none;
      position: relative;
      box-sizing: unset;
}

.hpc-captcha .input-container .captcha-img {
	margin-bottom: 20px;
      vertical-align: middle;
      height: 90px;
      width: 327px;
}

.hpc-captcha .input-container .icon-container {
	display: inline-block;
      height: 90px;
      vertical-align: middle;
      box-sizing: unset;
}

.hpc-captcha .input-container .icon-container .icons {
	margin-left: 5px;
        margin-bottom: 10px;
}

.hpc-captcha .input-container .help-container {
	display: none;
      position: absolute;
      top: 0px;
      left: 5px;
      width: 300px;
      line-height: normal;
      z-index:10;
      background-color: #fff;
      border:5px solid #cccccc;
      border-radius:10px;
      padding: 10px;
      box-sizing: unset;
}

.hpc-captcha .input-container .help-container .cancel {
      width: 20px;
      height: 20px;
      background: #000;
      border-radius: 50%;
      border: 3px solid #fff;
      display: block;
      text-align: center;
      color: #fff;
      text-decoration: none;
      font-size: 16px;
      position: absolute;
      top: -10px;
      right: -10px;
      box-sizing: unset;
}

.hpc-captcha .input-container .input-label {
	
}

.hpc-captcha .input-container input[type=text] {
	width: 215px;
      font-size: 14px;
      padding: 3px;
      font-family: Arial, Helvetica, sans-serif;
      box-sizing: unset;
}


































