
/* .hs-form * {
    font-family: Open Sans,Helvetica,Arial,"Lucida Grande",sans-serif
} */

.hs-form{
    display: block;
    padding: 0;
}

.hs-form .hs-form-field.hidden{
    display: none !important;
}

.hs-form .hs-form-field {
    margin:0 0 15px;
    position: relative;
    padding: 0;
}

.hs-form .hs-form-field:not(.hs-fieldtype-booleancheckbox):not(.hs-fieldtype-checkbox) label:not(.hs-error-msg) {
    font-size: 16px;
    font-weight: 400 ;
    padding: 12px 16px 0 15px;
    text-align: left;
    width: 100%;
    color: #919CAB;
    background: none;
    line-height: normal;
}

.hs-form .hs-form-field.no-label > label{
    display: none;
}

.hs-form .hs-form-field.white-pd-checkbox .value label:before {
    background: #fff;
}

.hs-form .hs-form-field.large-field label {
    padding: 18px 20px 0 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.hs-form .hs-form-field:not(.static-label):not(.no-label):not(.hs-fieldtype-checkbox) > label {
    position: absolute;
    transition: all 0.1s ease;
    z-index: 1;
    left: 0;
    top: 0;
}

.hs-form .hs-form-field.hs-password:not(.static-label):not(.no-label) > label {
    left: 0;
    top: 0;
    z-index: 1;
}

.hs-form .hs-form-field.static-label > label, .hs-form .hs-form-field.pd-radio > label {
    position: static;
    padding: 0 !important;
    margin: 5px 0 10px;
    color: var(--WEBGILITY-BLACK) !important;
}

.hs-form .hs-form-field.pd-radio label {
    display: block;
    padding-top: 0 !important;
}

.hs-form .hs-form-field:not(.static-label):not(.no-label):not(.hs-fieldtype-checkbox) > label.active {
    font-size: 10px;
    color: #616E7C !important;
    font-weight: 600 !important;
    padding-top:6px !important;
}

.hs-form .hs-form-field.large-field:not(.static-label):not(.no-label) > label.active {
    padding-left: 20px;
    padding-top: 10px !important;
}

    .hs-form .hs-form-field input[type=text], .hs-form .hs-form-field input[type=email], .hs-form .hs-form-field input[type=tel], .hs-form .hs-form-field select, .hs-form .hs-form-field textarea, .hs-form .hs-form-field input[type=password], .hs-form .hs-form-field input[type=number], .wg-multiselect button.dropdown-toggle {
        width: 100%;
        background-color: #fff;
        color: #3E3F42;
        border:solid 1px #919CAB;
        padding: 5px 15px;
        font-size: 15px;
        float: none;
        box-shadow: none;
        border-radius: 6px;
        height: 45px;
        outline:none;
        font-family: var(--font-family-opensans),Helvetica,Arial,"Lucida Grande",sans-serif;
    }

    .white-fields .hs-form .hs-form-field input[type=text], .white-fields .hs-form .hs-form-field input[type=email], .white-fields .hs-form .hs-form-field select, .white-fields .hs-form .hs-form-field textarea{
        background-color: #fff;
    }

    .hs-form .hs-form-field textarea {
        height: 120px;
        padding-top: 10px;
        padding-bottom: 10px;
        resize: none;
    }

.hs-form .hs-form-field:not(.static-label):not(.no-label) input{
    font-size: 0px !important;
}

.hs-form .hs-form-field:not(.static-label):not(.no-label) label.active ~ .input input,
.hs-form .hs-form-field label.active ~ .input textarea,
.hs-form .hs-form-field.hs-password:not(.static-label):not(.no-label) label.active ~ div.jq-password-validator input {
    padding-top: 19px !important;
    font-size: 14px !important;
}

.hs-form .hs-form-field label.active ~ textarea{
    padding-top: 22px !important;
}

/* .hs-form .submit input:not(.accounting-edition-form-submit):not(.subscribe-btn){
    cursor: pointer;
    color: #fff !important;
    padding: 11px !important;
    box-shadow: none !important;
    text-transform: uppercase;
    min-width: 200px;
    background: #132DAD;
    border: 2px solid #132DAD !important;
    font-size: 18px !important;
    letter-spacing: 2px !important;
    width: 100%;
    margin: 10px 0 0 !important;
    border-radius: 0 !important;
    font-weight: 700;
    height: 50px;
} */


.hs-form .submit input[disabled]{
    opacity: 0.6;
    cursor: default;
    border: 0;
    color: var(--white);
}


.hs-form .hs-form-field .wg-error-msgs{
    color: red;
    width: 100%;
    z-index: 2;
}

.hs-form .hs-form-field .wg-error-msgs.must-show{
    background: #D90606;
    top: 100%;
    margin-top: 5px;
}

.hs-form .hs-form-field .wg-error-msgs.must-show:before{
    content: '';
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #D90606;
    position: absolute;
    left: 50%;
    top: -5px
}

.hs-form .hs-form-field .wg-error-msgs .field-error-message{
    display: block;
    overflow: hidden;
    font-size: 13px;
    line-height: normal;
    color: #fff;
    height: 0;
    /*text-indent: -999px;*/
}

.hs-form .hs-form-field .wg-error-msgs.must-show .field-error-message{
    height: auto;
}

.hs-form .hs-form-field .wg-error-msgs .field-error-message:before {
    font-size: 24px;
    content: "\f00d";
    color: #D90606;
    top: -36px;
    position: absolute;
    right: 10px;
    font-family: 'FontAwesome';
}

.opted_out .wg-error-msgs .field-error-message:before {
    right: 0px !important;
}

.hs-form .opted_out.hs-form-field .wg-error-msgs{
    padding: 0;
}

.hs-form .hs-form-field .wg-error-msgs.must-show .field-error-message a{
    color: #fff;
}

.hs-form .hs-form-field .wg-error-msgs.must-show .field-error-message a:hover{
    text-decoration: none !important;
}

form.form p.submit {
    margin: 0 !important;
}

.hs-form .hs-form-field input[type=radio] {
    opacity: 0;
    width: 0px !important;
    height: 0px;
    margin: 0;
    position: absolute;
}

    .hs-form .hs-form-field input[type=radio] + label:before {
        width: 20px !important;
        height: 20px !important;
        border: 1px solid #919CAB;
        box-shadow: none !important;
        top: 5px;
        font-size: 17px !important;
        font-weight: 600;
        content: '';
        display: inline-block;
        position: relative;
        margin-right: 10px;
        margin-left: 0;
        border-radius: 100%;
        box-sizing: border-box
    }

    .hs-form .hs-form-field input[type=radio]:checked + label:before {
        background-image: none !important;
        border: 7px solid #F35727 !important;
    }

    .hs-form .hs-form-field input[type=radio] + label:hover:before {
        border: 7px solid #99a5c8;
    }

.hs-form .hs-form-field.pd-radio span.value {
    margin: 0 0;
    display: block;
    clear: both;
    text-align: left;
}

.hs-form .hs-form-field.pd-radio span.value label {
    padding: 0 !important;
    cursor: pointer;
    font-size: 14px;
}

.hs-form .hs-form-field.pd-radio span.value span{
    display: inline-block;
}

.hs-form .hs-form-field.pd-radio span.value span:nth-child(1) {
    margin-right: 15px;
}

.hs-form .Supported_Accounting_Sytems span.value span {
    display: inline-block;
    width: 230px;
}

.hs-form .Supported_Accounting_Sytems span.value label {
    margin-bottom: 15px;
    margin-left: 20px;
    padding-right:0 !important;
}


.hs-form .hs-fieldtype-booleancheckbox .wg-error-msgs {
    top:0;
    padding: 0;
}

.hs-form .hs-fieldtype-booleancheckbox .wg-error-msgs .field-error-message:before {
    top:0;
    right: 0;
}

.hs-form .error.no-label{
    display:none;
}

.hs-form .legal-consent-container {
    margin-bottom: 20px;
}

.hs-form .hs-fieldtype-checkbox > label {
    margin-bottom: 10px;
}

.hs-form .hs-fieldtype-booleancheckbox ul,
.hs-form .hs-fieldtype-checkbox ul{
    padding:0;
    margin: 0;
}

.hs-form .hs-fieldtype-booleancheckbox ul li,
.hs-form .hs-fieldtype-checkbox ul li{
    list-style-type: none;
    margin-bottom: 5px;
}

.hs-form .hs-fieldtype-booleancheckbox ul li input,
.hs-form .hs-fieldtype-checkbox ul li input {
    position: absolute;
    opacity: 0;
    display: none;
}
.hs-form .hs-fieldtype-booleancheckbox label,
.hs-form .hs-fieldtype-checkbox label{
    color: #919CAB;
}
.hs-form .hs-fieldtype-booleancheckbox ul li label span {
    font-size: 12px;
}
.hs-form .hs-fieldtype-checkbox > label{
    font-size: 16px;
}
.hs-form .hs-fieldtype-booleancheckbox ul li label > span,
.hs-form .hs-fieldtype-checkbox ul li label > span {
    position: relative;
    cursor: pointer;
    display: inline-block !important;
    padding: 0 0 0 25px !important;
    margin: 0;
}
.hs-form .hs-fieldtype-booleancheckbox ul li label > span:before,
.hs-form .hs-fieldtype-booleancheckbox ul li label > span:after,
.hs-form .hs-fieldtype-checkbox ul li label > span:before,
.hs-form .hs-fieldtype-checkbox ul li label > span:after {
	content: '';
    width: 14px;
    height: 14px;
    top: 0;
    left: 0;
}
.hs-form .hs-fieldtype-booleancheckbox ul li label > span:before,
.hs-form .hs-fieldtype-checkbox ul li label > span:before {
    position: absolute;
    display: block;
    pointer-events: none;
    background-color: transparent;
    border: #919CAB solid 1px;
    border-radius: 0;
    box-sizing: border-box;
}
.hs-form .hs-fieldtype-booleancheckbox input:checked ~ span:after,
.hs-form .hs-fieldtype-checkbox input:checked ~ span:after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.hs-form .hs-fieldtype-booleancheckbox ul li label > span:after,
.hs-form .hs-fieldtype-checkbox ul li label > span:after {
    position: absolute;
    display: block;
    background: no-repeat 50%/50% 50%;
}
.hs-form .hs-fieldtype-booleancheckbox input:checked ~ span:before,
.hs-form .hs-fieldtype-checkbox input:checked ~ span:before{
    border-color: #c32f03;
    background-color: #f35627;
}

.hs-form .hs-form-field select {
    
	background: url(/assets/img/icon/svg/linear/ic-form-select-arrow.svg) var(--white) no-repeat center right;
	-webkit-appearance: none;
    padding-right: 55px;
    color:#919CAB
}

.hs-form .hs-form-field.Topics_that_interest_you span.value span label {
    padding-right: 0 !important;
    font-size: 10px !important;
}
.hs-form .submit input {
    font-family: var(--font-family-OpenSansBold);
    border-radius: 6px !important;
}

.hs-form .hs-form-field input[disabled]{
    opacity:0.5
}

@-webkit-keyframes spin {0% { -webkit-transform: rotate(0deg); }100% { -webkit-transform: rotate(360deg);}}
@keyframes spin {0% { transform: rotate(0deg);}100% { transform: rotate(360deg);}}


.hs-form.exit-intent-popup-form .hs-form-field input[type=text],
.hs-form.exit-intent-popup-form .hs-form-field input[type=email],
.hs-form.exit-intent-popup-form .hs-form-field input[type=tel]{padding-left: 50px;}
.hs-form.exit-intent-popup-form .hs-form-field > label {padding-left: 50px !important;}
.eip-wrapper .hs-firstname:before,
.eip-wrapper .hs-lastname:before{content:'';width: 19px;height: 19px; position: absolute;left: 17px;top:14px; background: url(/images/webgility-new-design/vector-icon/form-name-icon.svg) no-repeat;z-index: 1;}
.eip-wrapper .hs-phone:before{content:'';width: 22px;height: 22px; position: absolute;left: 17px;top:12px; background: url(/images/webgility-new-design/vector-icon/form-phone-icon.svg) no-repeat;z-index: 1;}
.eip-wrapper .hs-email:before{content:'';width: 22px;height: 14px; position: absolute;left: 17px;top:16px; background: url(/images/webgility-new-design/vector-icon/form-email-icon.svg) no-repeat;z-index: 1;}
.eip-wrapper .hs-0-2\/name:before{content:'';width: 20px;height: 19px; position: absolute;left: 17px;top:13px; background: url(/images/webgility-new-design/vector-icon/form-company-icon.svg) no-repeat;z-index: 1;}


.wg-multiselect {display: block;}
.wg-multiselect .btn-group {width: 100%;box-shadow: none;}
.wg-multiselect button.dropdown-toggle {text-align: left !important;background: url(https://www.webgility.com/hubfs/23491073/raw_assets/public/Webgility_Jan2023/images/arrow-bottom-grey.svg) var(--white) no-repeat calc(96% - 0px);}
.wg-multiselect .dropdown-menu {width: 100%;top: -1px !important;border:solid 1px var(--GREY);padding-top: 5px; padding-bottom: 5px;z-index: 1;}
.wg-multiselect .multiselect-container .multiselect-option, .wg-multiselect .multiselect-container .multiselect-all {padding: 8px 16px;}
.wg-multiselect .multiselect-container .multiselect-option .form-check, .wg-multiselect .multiselect-container .multiselect-all .form-check {padding: 0;}
.wg-multiselect .form-check .form-check-input {margin-left: 0;border: solid 1px var(--GREY);border-radius: 0;width: 18px;height: 17px;}
.wg-multiselect .form-check .form-check-input[type=checkbox]:checked {border-color: var(--WEBGILITY-BLUE);background-color: var(--WEBGILITY-BLUE);}
.wg-multiselect .form-check .form-check-input[type=checkbox]:checked:after {width: 5px;height: 9px;border: 0.15rem solid #fff;border-top: 0;border-left: 0;margin-left: 6px;margin-top: 0.15rem;}
.wg-multiselect .form-check .form-check-label {padding: 0 0 0 12px !important;color: var(--WEBGILITY-BLACK) !important;}
.wg-multiselect .multiselect-container .multiselect-all .form-check-label {font-weight: 500; font-family: var(--font-family-OpenSansBold);}
.wg-multiselect .multiselect-container .multiselect-option:hover, .wg-multiselect .multiselect-container .multiselect-option:focus, .wg-multiselect .multiselect-container .multiselect-all:hover, .wg-multiselect .multiselect-container .multiselect-all:focus {background-color: var(--LIGHT-GREY) !important;}
.wg-multiselect .multiselect-container .multiselect-option.active:not(.multiselect-active-item-fallback), .wg-multiselect .multiselect-container .multiselect-all.active:not(.multiselect-active-item-fallback){background-color: transparent;}


.hs-form .hs-form-field .password-visibility {position: absolute;top: 0;right: 0;z-index: 1;cursor: pointer;padding: 10px 8px;}
.hs-form .hs-form-field .password-visibility #hide-password{display: none;}
.hs-form .hs-form-field .password-visibility.show #hide-password{display: inline-block;}
.hs-form .hs-form-field .password-visibility.show #show-password {display: none;}


.hs-form .hs-submit input[disabled]{border:0;color: white;}


/*---- Deafult HubSpot Overwrite ----*/
.hs-form fieldset{max-width: 100% !important;}
.hs-form .hs-form-field .input {margin-right: 0px !important;position: relative;} 
.hs-form .hs-form-field:not(.hs-fieldtype-checkbox) .input .hs-input {width: 100% !important;}
.hs-form .hs-firstname .hs-error-msgs,
.hs-form .hs-lastname .hs-error-msgs {margin-bottom: 0;}

/*---- Error Message ----*/
.hs-form .hs_error_rollup {display: none;}
.hs-form .hs-error-msgs {padding: 0;}
.hs-form .hs-error-msgs li {list-style-type: none;}
.hs-form .hs-error-msgs li label {padding: 5px 0 0 0;color: #ef6b51;font-size: 14px;}
.hs-form-required {color: #ef6b51}

/*---- Media Queries ----*/
/* @media screen and (min-width: 992px) and (max-width:1199px){
    .hs-form .Supported_Accounting_Sytems span.value span {
        width: 195px;
    }
} */



@media screen and (max-width:767px){
    .hs-form .Supported_Accounting_Sytems span.value span {
        display:block;
    }
}




/*---- BEGINS: MIN WIDTH MEDIA QUERIES ----*/

@media only screen and (min-width: 0px){
    .hs-form  .hs-firstname,
    .hs-form  .hs-lastname {width: 100% !important;float: none !important;}
}

@media only screen and (min-width: 576px) {
    
}


@media only screen and (min-width:768px){
    .hs-form .hs-form-field.Topics_that_interest_you span.value span{float: left !important;width: 50%;}
    .hs-form  .hs-firstname,
    .hs-form  .hs-lastname {width: 50% !important;float: left !important;}
    .hs-form  .hs-firstname {padding-right: 7px;}
    .hs-form  .hs-lastname {padding-left: 7px;}
}


@media only screen and (min-width: 992px) {

}


@media only screen and (min-width: 1200px) {

}


@media only screen and (min-width: 1400px) {

}