form#api-hubspot-form .hs-field.hidden {
    margin-bottom: 0;
    padding-bottom: 0;
}
form#api-hubspot-form .captcha-field {
    position: relative;
    padding-left: 100px;
}
form#api-hubspot-form .captcha-field .captcha-img {
    position: absolute;
    left: 0;
    top: 3px;
    background-color: #0044aa;
    padding: 7px 15px;
    color: #fff;
    font-family: ui-serif;
    width: 100px;
    text-align: center;
}
form#api-hubspot-form .hs-field {
    margin-bottom: 10px;
    padding-bottom: 10px;
}
form#api-hubspot-form .captcha-field {
    padding-bottom: 10px;
}
form#api-hubspot-form .hs-submit-btn input[type="submit"] {
    background: #ff7901;
    color: #fff;
    font-weight: 600 !important;
    padding: 10px 20px;
    border: 1px solid #ff7901;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}
form#api-hubspot-form .firstname-hs.hs-field {
    margin-right: 5px;
}
form#api-hubspot-form .firstname-hs.hs-field, .lastname-hs.hs-field {
    width: calc(50% - 5px);
    display: inline-block;
}
form#api-hubspot-form .hs-field input[type="text"], form#api-hubspot-form .hs-field input[type="tel"], form#api-hubspot-form .hs-field input[type="email"], form#api-hubspot-form .hs-field textarea, form#api-hubspot-form .hs-field select, form#api-hubspot-form .hs-field input[type="phonenumber"], form#api-hubspot-form .captcha-field input {
    border-width: 0px 0px 1px 0;
    padding: 10px;
    font-size: 16px !important;
    width: 100% !important;
    color: #6d6d6d !important;
    height: auto;
    font-family: 'Open Sans' !important;
    border-color: #ccc;
}
form#api-hubspot-form .lastname-hs.hs-field {
    margin-left: 5px;
}
form#api-hubspot-form .country4-hs.hs-field, form#api-hubspot-form .phone-hs.hs-field {
    width: 42.33%;
}
form#api-hubspot-form .country4-hs.hs-field, form#api-hubspot-form .testfield__d-hs.hs-field, form#api-hubspot-form .phone-hs.hs-field {
    display: inline-block;
}
form#api-hubspot-form .testfield__d-hs.hs-field {
    width: calc(13.33% - 10px);
    margin: 0 10px;
}
form#api-hubspot-form .hs-response div {
    border: 1px solid;
    margin-top: 15px;
    padding: 10px;
    color: #333;
    font-weight: 400;
}
form#api-hubspot-form .hs-response .success {
    border-color: green;
}
form#api-hubspot-form .hs-response .error {
    border-color: red;
}
form#api-hubspot-form .hs-field p.error-field {
    margin: 5px 0 0;
    color: red;
    font-weight: 400;
    font-size: 13px;
}
form#api-hubspot-form .hs-submit-btn i.fa.fa-spinner.fa-spin {
    position: absolute;
    left: 0;
    right: 120px;
    margin: 0 auto;
    width: 17px;
    top: 13px;
    color: #fff;
}
form#api-hubspot-form .hs-submit-btn {
    position: relative;
}
form#api-hubspot-form .hs-submit-btn input[type="submit" i]:disabled {
    cursor: not-allowed !important;
}
div#refresh-captcha {
    display: inline-block;
    cursor: pointer;
    font-size: 15px;
    margin-bottom: 20px;
    color: #333;
}
.hs-loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid #3498db;
    width: 15px;
    height: 15px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}
.hs-submit-btn .fa-spin, .inprogress .fa {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
}
.captcha-img {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.hs-submit-btn input[type="submit" i]:disabled {
    cursor: not-allowed;
}
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
@keyframes spin {
    0% {
    -webkit-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}