.hdllp-form {
    position: relative;
    display: block;
    overflow: hidden;
	background: #F9F9F9;
    padding: 10px;
    margin: 0;
}

.hdllp-form h4 {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #4998b3;
    margin-bottom: 10px;
}

.hdllp-form p {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.hdllp-form .fieldsets {
    position: relative;
    display: block;
    overflow: hidden;
	border: medium none !important;
	margin: 0px;
	min-width: 100%;
	padding: 0;
	width: 100%;
}

.hdllp-captcha {
    position: relative;
    display: block;
    width: 160px;
    padding: 0 0 10px 0;
    margin: 0 auto;
}

.hdllp-captcha-img {
    width: 100%;
    height: auto;
    min-height: unset;
    margin: 0 auto !important;
}

.hdllp-captcha-input {
    width: 100%;
    padding: 0;
}

.hdllp-form input[type="number"] {
	width:100%;
	border:1px solid #CCC;
	background:#FFF;
	margin:0 0 5px;
	padding:10px;
}

.hdllp-form input[type="number"]:hover {
	-webkit-transition:border-color 0.3s ease-in-out;
	-moz-transition:border-color 0.3s ease-in-out;
	transition:border-color 0.3s ease-in-out;
	border:1px solid #AAA;
}

.hdllp-form button {
	cursor:pointer;
	background: #2A5C84;
	width:100%;
	border:none;
	color:#FFF;
	margin:0 0 5px;
	padding:10px;
	font-size:15px;
}

.hdllp-form button:hover {
    color: #FFF;
    background: #632727;
	-webkit-transition:background 0.3s ease-in-out;
	-moz-transition:background 0.3s ease-in-out;
	transition:background-color 0.3s ease-in-out;
}

.hdllp-form button:active { 
	box-shadow:inset 0 1px 3px rgba(0, 0, 0, 0.5); 
}

.hdllp-form input:focus {
	outline:0;
	border:1px solid #999;
}
.hdllp-form::-webkit-input-placeholder {
 color:#888;
}

.hdllp-form:-moz-placeholder {
 color:#888;
}

.hdllp-form::-moz-placeholder {
 color:#888;
}

.hdllp-form:-ms-input-placeholder {
 color:#888;
}

.hdllp-error {
    width: 100%;
    text-align: center;
    float: left;
    padding: 10px;
    background: #e95353;
    color: white;
}
@media only screen and (min-width: 600px) {
    .hdllp-captcha {
        float: left;
        width: 30%;
        padding: 0 10px 0 20px;
    }
    
    .hdllp-captcha-img {
        width: 90%;
        min-height: 105px;
        margin: 0px !important;
    }
    
    .hdllp-captcha-input {
        float: left;
        width: 70%;
        padding-right: 20px;
    }
}