{% unless macros %}{% import 'Marketplace/HubSpot/Soar_Campaign_Pack/Coded_Files/_macros.css' %}{% endunless %}

/* ==========================================================================
   6. FORMS                                        
   ========================================================================== */
 
/* Error */
.hs-error-msgs {
    position: absolute;
    z-index: 1;
    top: 100%;
    background-color: #3b3f40;
    color: #fff;
    {{ rem('margin-top','6') }}
    display: none;
    {{ transition('all .3s ease-out') }}
    padding: 0;
}
.hs-error-msgs li {
    display: block;  
    {{ rem('padding','8 16') }}
}
.hs-error-msgs li label {
    margin: 0;
    {{ rem('font-size','13') }}
    font-weight: 700;
}
.hs-error-msgs:before {
    {{ position('absolute',null,null,null,rem('32')) }}
    bottom: 100%;
    border: 6px solid transparent;
    background: transparent;
    content: "";
    border-bottom-color: #000;
    border-bottom-color: #3b3f40;
}

/* Validation Error */
.hs-common-error-message {
    font-weight: 300;
    border: 0 none !important;
    {{ rem('padding','20')|replace(';',' !important;') }}
    {{ rem('margin-bottom','20')|replace(';',' !important;') }}
}

/* Placeholder Text */
::-webkit-input-placeholder {
    color: rgba(255,255,255,.7);
} /* Webkit Browsers */
:-moz-placeholder {
    color: rgba(255,255,255,.7);
} /* Firefox 18- */
::-moz-placeholder {
    color: rgba(255,255,255,.7);
} /* Firefox 19+ */
:-ms-input-placeholder {
    color: rgba(255,255,255,.7);
} /* IE10 */


/* =============== Form Module Styles =============== */
.hs_cos_wrapper_type_form {
    display: block;
    float: left;
    width: 100%;
    background-color: {{ mainAccentColor }};
    color: #fff;
}
.page-center .hs_cos_wrapper_type_form {
    {{ rem('max-width','700') }}
    margin: 0 auto;
    float: none;
    width: auto;
}
.hs_cos_wrapper_type_form > * {
    float: none;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    {{ rem('padding-left','20') }}
    {{ rem('padding-right','20') }}
}
.hs_cos_wrapper_type_form form {
    position: relative;
    {{ rem('font-size','16') }}
    font-weight: 700;
}
.page-center .hs_cos_wrapper_type_form form {
    {{ rem('padding','30') }}
}
@media (min-width: 768px) {
    .hs_cos_wrapper_type_form form {
        {{ rem('padding','10 30 0') }}
    }
    .page-center .span1 .hs_cos_wrapper_type_form form,
    .page-center .span2 .hs_cos_wrapper_type_form form,
    .page-center .span3 .hs_cos_wrapper_type_form form,
    .page-center .span4 .hs_cos_wrapper_type_form form {
        {{ rem('padding','30 10') }}
    }
    .page-center .span1 .hs_cos_wrapper_type_form > div,
    .page-center .span2 .hs_cos_wrapper_type_form > div,
    .page-center .span3 .hs_cos_wrapper_type_form > div,
    .page-center .span4 .hs_cos_wrapper_type_form > div {
        padding-left: 0;
        padding-right: 0;
    }
    .page-center .span1 .hs_cos_wrapper_type_form .form-columns-1 ul.inputs-list li,
    .page-center .span2 .hs_cos_wrapper_type_form .form-columns-1 ul.inputs-list li,
    .page-center .span3 .hs_cos_wrapper_type_form .form-columns-1 ul.inputs-list li,
    .page-center .span4 .hs_cos_wrapper_type_form .form-columns-1 ul.inputs-list li {
        display: block;
    }
}


/* Form Field */
.hs_cos_wrapper_type_form .hs-form-field {
    position: relative;   
    {{ rem('margin-bottom','16') }}
}
.hs_cos_wrapper_type_form .hs-form-field .input:not(.hs-inputs-list) {
    border-bottom: 2px solid {{ formTextColor }};
}

/* Descriptions */
.hs_cos_wrapper_type_form .hs-field-desc {}

/* Labels and Legends */
.hs_cos_wrapper_type_form label {
    display: block;
    text-align: left;
    color: {{ formTextColor }};
}
.hs-form-field > label {}

/* Hide required asterisk if label is empty */
.hs_cos_wrapper_type_form .hs-form-field label > span:empty + span.hs-form-required {
    display: none;
}

/* One Line Inputs */
.hs_cos_wrapper_type_form input[type="text"],
.hs_cos_wrapper_type_form input[type="password"], 
.hs_cos_wrapper_type_form input[type="datetime"], 
.hs_cos_wrapper_type_form input[type="datetime-local"], 
.hs_cos_wrapper_type_form input[type="date"], 
.hs_cos_wrapper_type_form input[type="month"], 
.hs_cos_wrapper_type_form input[type="time"], 
.hs_cos_wrapper_type_form input[type="week"], 
.hs_cos_wrapper_type_form input[type="number"], 
.hs_cos_wrapper_type_form input[type="email"], 
.hs_cos_wrapper_type_form input[type="url"], 
.hs_cos_wrapper_type_form input[type="search"], 
.hs_cos_wrapper_type_form input[type="tel"], 
.hs_cos_wrapper_type_form input[type="color"],
.hs_cos_wrapper_type_form input[type="file"],
.hs_cos_wrapper_type_form textarea, 
.hs_cos_wrapper_type_form select {
    width: 100%;
    font-family: {{ mainFontFamily }};
    {{ rem('font-size','16') }}
    font-weight: 700;
    color: {{ formTextColor }};
    border: none;
    {{ appearance('none') }}
    background-color: transparent;
    {{ borderRadius('0') }}
    {{ boxShadow('0') }}
    border-bottom: 2px solid transparent;
    {{ rem('padding', '8 16') }}
    {{ transition('all .2s cubic-bezier(0.6, -0.28, 0.74, 0.05)') }}
    margin: 0;
    vertical-align: bottom;
}
.hs_cos_wrapper_type_form input[type="text"]:focus,
.hs_cos_wrapper_type_form input[type="password"]:focus, 
.hs_cos_wrapper_type_form input[type="datetime"]:focus, 
.hs_cos_wrapper_type_form input[type="datetime-local"]:focus, 
.hs_cos_wrapper_type_form input[type="date"]:focus, 
.hs_cos_wrapper_type_form input[type="month"]:focus, 
.hs_cos_wrapper_type_form input[type="time"]:focus, 
.hs_cos_wrapper_type_form input[type="week"]:focus, 
.hs_cos_wrapper_type_form input[type="number"]:focus, 
.hs_cos_wrapper_type_form input[type="email"]:focus, 
.hs_cos_wrapper_type_form input[type="url"]:focus, 
.hs_cos_wrapper_type_form input[type="search"]:focus, 
.hs_cos_wrapper_type_form input[type="tel"]:focus, 
.hs_cos_wrapper_type_form input[type="color"]:focus,
.hs_cos_wrapper_type_form input[type="file"]:focus,
.hs_cos_wrapper_type_form textarea:focus,
.hs_cos_wrapper_type_form select:focus {
    outline: none;
    border-bottom: 2px solid {{ formTextColor }};
}

/* Submit Button Styles */
.hs_cos_wrapper_type_form form .hs_submit {
    text-align: center;
}
.hs_cos_wrapper_type_form form .hs_submit input[type=submit], .hs_cos_wrapper_type_form form .hs-button.large.primary {
    {{ appearance('none') }}
    {{ rem('font-size','16') }}
    font-weight: 700;
    border: 2px solid {{ formTextColor }};
    {{ borderRadius('0') }}
    color: {{ formTextColor }};
    {{ rem('padding','8 16') }}
    {{ rem('margin-bottom','16') }}
    background-color: transparent;
    {{ transition('background-color .3s ease-out,  color .1s ease-out') }}
    white-space: initial;
}
@media (min-width: 801px) {
    .hs_cos_wrapper_type_form form .hs_submit input[type=submit], .hs_cos_wrapper_type_form form .hs-button.large.primary {
        margin-bottom: 0;
    }   
}
.hs_cos_wrapper_type_form form .hs_submit input[type=submit]:hover {
    background-color: {{ formTextColor }};
    color: {{ mainAccentColor }};
}

/* Checkbox and Radio Button Styles */
.hs_cos_wrapper_type_form .form-columns-1 ul.inputs-list li {
    display: inline-block;
    {{ rem('margin-right', '32') }}
}
.hs_cos_wrapper_type_form ul.inputs-list li input {
    position: absolute;
    text-indent: -9999;
    width: 0 !important;
    visibility: hidden;
}
.hs_cos_wrapper_type_form ul.inputs-list li input + span {
    display: inline-block;
    {{ rem('margin-bottom','8') }}
    {{ rem('padding-left','24') }}
    position: relative;
    width: auto !important;
}
.hs_cos_wrapper_type_form ul.inputs-list li input + span:before {
    content: "";
    {{ rem('width','16') }}
    {{ rem('height','16') }}
    background-color: rgba(255,255,255,.3);
    {{ position('absolute',rem('4'), null, null, '0') }}
    {{ transition('background-color .2s ease-out') }}
}
.hs_cos_wrapper_type_form ul.inputs-list li input[type=radio] + span:before {
    border-radius: 50%;
}
.hs_cos_wrapper_type_form ul.inputs-list li input:checked + span:before {
    background-color: {{ formTextColor }};
}

/* File Upload */
.hs_cos_wrapper_type_form .hs_file_upload label:after {
    position: static;
    font-weight: bold;
    {{ rem('font-size','14') }}
    width: 100%;
    border-bottom: 2px solid {{ formTextColor }};
    color: rgba(255,255,255,.7);
    {{ rem('padding','8 16') }}
    {{ rem('margin-bottom','32') }}
}

/* Separate Styles for Multiple Line Inputs */
.hs_cos_wrapper_type_form textarea {}
.hs_cos_wrapper_type_form textarea:focus {}

/* Separate Styles for Drop Downs */
.hs_cos_wrapper_type_form select {}
.hs_cos_wrapper_type_form select:focus {}

/* Multiple Selection Inputs */
.hs_cos_wrapper_type_form form.hs-form .hs-form-field ul.inputs-list {
    list-style: none;
    padding: 0;
}
.hs_cos_wrapper_type_form form.hs-form .hs-form-field ul.inputs-list li input {}
input[type="radio"] {}
input[type="checkbox"] {}

/* Required */
.hs_cos_wrapper_type_form input:focus:required:invalid, 
.hs_cos_wrapper_type_form textarea:focus:required:invalid, 
.hs_cos_wrapper_type_form select:focus:required:invalid {}

.hs_cos_wrapper_type_form input:focus:required:invalid:focus, 
.hs_cos_wrapper_type_form textarea:focus:required:invalid:focus, 
.hs_cos_wrapper_type_form select:focus:required:invalid:focus {}

/* Checkbox and Radio Button Styles */
.hs_cos_wrapper_type_form .form-columns-1 ul.inputs-list li {
    display: inline-block;
    {{ rem('margin-right', '32') }}
}
.hs_cos_wrapper_type_form ul.inputs-list li input {
    position: absolute;
    text-indent: -9999;
    width: 0 !important;
    visibility: hidden;
}
.hs_cos_wrapper_type_form ul.inputs-list li input + span {
    display: inline-block;
    {{ rem('margin-bottom','1') }}
    {{ rem('padding-left','20') }}
    position: relative;
    width: auto !important;
}

/* File Upload */
.hs_cos_wrapper_type_form .hs_file_upload label:after {
    position: static;
    font-weight: bold;
    {{ rem('font-size','14') }}
    width: 100%;
    border-bottom: 2px solid {{ formTextColor }};
    color: rgba(255,255,255,.7);
    {{ rem('padding','8 16') }}
    {{ rem('margin-bottom','32') }}
}

@media (min-width: 800px) {
    .hs_cos_wrapper_type_form form .hs_submit {
        {{ position('absolute',null,rem('30'),'0',null) }}
    }
    .hs_cos_wrapper_type_form form fieldset ~ .hs_submit {
        {{ position('absolute',null,rem('10'),rem('32'),null) }}
    }
    .page-center .hs_cos_wrapper_type_form form .hs_submit {
        {{ position('absolute',null,rem('30'),rem('62'),null) }}
    }
    .page-center .span1 .hs_cos_wrapper_type_form form .hs_submit,
    .page-center .span2 .hs_cos_wrapper_type_form form .hs_submit,
    .page-center .span3 .hs_cos_wrapper_type_form form .hs_submit,
    .page-center .span4 .hs_cos_wrapper_type_form form .hs_submit {
        {{ position('absolute',null,rem('10'),rem('62'),null) }}
    }
    .hs_cos_wrapper_type_form .hs-form .hs-form-field {
        {{ rem('margin-bottom','32') }}
    }
}


/* =============== Multi Column Form =============== */

.hs-form fieldset.form-columns-1 {}
.hs-form fieldset.form-columns-1 .hs-form-field {}
.hs-form fieldset.form-columns-2 {}
.hs-form fieldset.form-columns-2 .hs-form-field {}
.hs-form fieldset.form-columns-3 {}
.hs-form fieldset.form-columns-3 .hs-form-field {}

.span1 fieldset .hs-form-field,
.span2 fieldset .hs-form-field,
.span3 fieldset .hs-form-field,
.span4 fieldset .hs-form-field {
    width: 100% !important;
}

/* Multiple Selection Inputs */
form.hs-form .hs-form-field ul.inputs-list li input {}
input[type="radio"] {}
input[type="checkbox"] {}
form.hs-form fieldset { max-width: none; }
form.hs-form fieldset .hs-form-field { 
    {{ rem('padding','0 10 0 0') }}
}
form.hs-form fieldset[class*="form-columns"] .input { margin-right: 0; }
form.hs-form fieldset[class*="form-columns"] .hs-input { width: 100%; }
form.hs-form fieldset[class*="form-columns"] .hs-input[type="checkbox"] { width: auto; }
form.hs-form fieldset.form-columns-3 .hs-form-field { width: 33.33%; }

@media (max-width: 400px) {
  form.hs-form fieldset .hs-form-field { padding: 0; }
  form.hs-form fieldset.form-columns-3 .hs-form-field,
  form.hs-form .form-columns-2 .hs-form-field .hs-input, 
  form.hs-form .form-columns-3 .hs-form-field .hs-input { width: 100%; }
  form.hs-form .form-columns-3 .hs-form-field .hs-input[type="checkbox"] { width: auto; }
}


/* =============== Blog Comment Form =============== */

/* Label */
#comment-form label {
    display: block;
    font-weight: 300;
    {{ rem('font-size', '15') }}
    {{ rem('margin-bottom','10') }}
}

/* Inputs */
#comment-form .hs-form-field {
    position: relative;
    {{ rem('margin-bottom','36') }}
}
#comment-form input[type="text"]:not(#recaptcha_response_field),
#comment-form input[type="email"],
#comment-form textarea {
    width: 100%;
    border: none;
    font-family: {{ mainFontFamily }};
    {{ rem('padding','17') }}
    background-color: {{ secondaryBackgroundColor }};
    {{ rem('font-size','16') }}
}
#comment-form input[type="text"]:focus,
#comment-form input[type="email"]:focus,
#comment-form textarea:focus {
    outline: none;
}
#comment-form textarea {
    font-family: {{ mainFontFamily }};
}
#comment-form textarea:focus {}
#comment-form input[type="checkbox"] {}

/* Checkbox and Radio Button Styles */
#comment-form ul.inputs-list li {
    display: inline-block;
    {{ rem('margin-right', '32') }}
}
#comment-form ul.inputs-list li input {
    position: absolute;
    text-indent: -9999;
    width: 0 !important;
    visibility: hidden;
}
#comment-form ul.inputs-list li input + span {
    display: inline-block;
    {{ rem('margin-bottom','2') }}
    {{ rem('padding-left','20') }}
    position: relative;
    width: auto !important;
}
#comment-form ul.inputs-list li input + span:before {
    content: "";
    {{ rem('width','16') }}
    {{ rem('height','16') }}
    background-color: {{ secondaryBackgroundColor }};
    {{ position('absolute','50%',null,null,'0') }}
    {{ transform('translateY(-50%)') }}
    {{ transition('background-color .2s ease-out') }}
}
#comment-form ul.inputs-list li input:checked + span:before {
    background-color: #666;
}
#comment-form form .hs_submit input[type=submit] {
    {{ appearance('none') }}
    {{ rem('font-size','16') }}
    font-family: {{ mainFontFamily }};
    font-weight: 700;
    border: 2px solid {{ mainAccentColor }};
    {{ borderRadius('0') }}
    color: {{ mainAccentColor }};
    {{ rem('padding','8 16') }}
    background-color: transparent;
    {{ transition('background-color .3s ease-out,  color .1s ease-out') }}
}
#comment-form form .hs_submit input[type=submit]:hover {
    background-color: {{ mainAccentColor }};
    color: {{ formTextColor }};
}
#comment-form .hs-error-msgs li label {
    {{ rem('font-size','13') }}
    font-weight: 700;
    margin: 0;
}
#comment-form .hs-error-msgs {
    position: absolute;
    z-index: 1;
    top: 100%;
    background-color: #3b3f40;
    color: #fff;
    {{ rem('margin-top','6') }}
    display: none;
    {{ transition('all .3s ease-out') }}
    padding: 0;
}


/* =============== Google Search Form =============== */

.widget-type-google_search form {
    position: relative;
    {{ rem('font-size','16') }}
    font-weight: 700;
}
.widget-type-google_search .hs-form {
    color: {{ formTextColor }};
}

/* Form Field */
.widget-type-google_search .field {
    position: relative;   
    {{ rem('margin-bottom','16') }}
}
.widget-type-google_search .field .input {
    border-bottom: 2px solid {{ formTextColor }};
}

/* Label */
.widget-type-google_search label {
    display: block;
    color: {{ mainTextColor }};
    {{ rem('font-size','22') }}
    line-height: 1.1;
    font-weight: 400;
    text-transform: uppercase;
    {{ rem('margin-bottom','30') }}
}

/* Input */
.widget-type-google_search input[type="text"] {
    {{ rem('padding','10')|replace(';','!important;') }}
    {{ rem('font-size','16')|replace(';','!important;') }}
    {{ rem('margin-bottom','8') }}
    {{ appearance('none') }}
    {{ borderRadius('0') }}
    line-height: 1.1;
    border: none;
    width: 100%;
    {{ rem('max-width','400') }}
    background-color: #eee;
}
.widget-type-google_search input[type="text"]:focus {
    outline: none;
}

.widget-type-google_search form .hs-button.primary {
    display: inline-block;
    width: auto;
    {{ rem('padding','10')|replace(';','!important;') }}
    {{ rem('font-size','16')|replace(';','!important;') }}
    line-height: 1.1;
    border: none;
    max-width: 100%;
    background-color: {{ mainAccentColor }};
    color: #fff;
    {{ appearance('none') }}
    {{ borderRadius('0') }}
}






.widget-type-password_prompt input[type=password]::-webkit-input-placeholder, .widget-type-email_simple_subscription input[type=email]::-webkit-input-placeholder {
    color: #000;
}
.widget-type-password_prompt input[type=password]::-moz-placeholder, .widget-type-email_simple_subscription input[type=email]::-moz-placeholder {
    color: #000;
}
.widget-type-password_prompt input[type=password]:-ms-input-placeholder, .widget-type-email_simple_subscription input[type=email]:-ms-input-placeholder {
    color: #000;
}
.widget-type-password_prompt input[type=password]:-moz-placeholder, .widget-type-email_simple_subscription input[type=email]:-moz-placeholder {
    color: #000;
}





/* =============== Blog Subscription Form =============== */

/* Label */
.widget-type-blog_subscribe .hs-form-field > label {}
.widget-type-blog_subscribe label {}

/* Inputs */
.widget-type-blog_subscribe input[type="email"] {}
.widget-type-blog_subscribe input[type="email"]:focus {}
.widget-type-blog_subscribe input[type="radio"], .widget-type-blog_subscribe input[type="checkbox"] {
    width: auto;
    {{ rem('margin-right','10') }}
}
.widget-type-blog_subscribe h3 + div {
    background-color: {{ mainAccentColor }};
    {{ rem('padding','20 20') }}
    color: {{ formTextColor }};
}
.widget-type-blog_subscribe form {
    position: relative;
    {{ rem('font-size','16') }}
    font-weight: 700;
}

/* Form Field */
.widget-type-blog_subscribe .hs-form-field {
    position: relative;   
    {{ rem('margin-bottom','16') }}
}
.widget-type-blog_subscribe .hs-form-field .input {
    border-bottom: 2px solid {{ formTextColor }};
}

/* Descriptions */
.widget-type-blog_subscribe .hs-field-desc {}

/* Labels and Legends */
.widget-type-blog_subscribe label {
    display: block;
    text-align: left;
}
.hs-form-field > label {}

/* Hide required asterisk if label is empty */
.widget-type-blog_subscribe .hs-form-field label > span:empty + span.hs-form-required {
    display: none;
}

/* One Line Inputs */
.widget-type-blog_subscribe input[type="text"],
.widget-type-blog_subscribe input[type="password"], 
.widget-type-blog_subscribe input[type="datetime"], 
.widget-type-blog_subscribe input[type="datetime-local"], 
.widget-type-blog_subscribe input[type="date"], 
.widget-type-blog_subscribe input[type="month"], 
.widget-type-blog_subscribe input[type="time"], 
.widget-type-blog_subscribe input[type="week"], 
.widget-type-blog_subscribe input[type="number"], 
.widget-type-blog_subscribe input[type="email"], 
.widget-type-blog_subscribe input[type="url"], 
.widget-type-blog_subscribe input[type="search"], 
.widget-type-blog_subscribe input[type="tel"], 
.widget-type-blog_subscribe input[type="color"],
.widget-type-blog_subscribe input[type="file"],
.widget-type-blog_subscribe textarea, 
.widget-type-blog_subscribe select {
    width: 100%;
    {{ rem('font-size','16') }}
    font-family: {{ mainFontFamily }};
    font-weight: 700;
    color: {{ formTextColor }};
    border: none;
    {{ appearance('none') }}
    background-color: transparent;
    {{ borderRadius('0') }}
    {{ boxShadow('none') }}
    border-bottom: 2px solid transparent;
    {{ rem('padding', '8 16') }}
    {{ transition('all .2s cubic-bezier(0.6, -0.28, 0.74, 0.05)') }}
}
.widget-type-blog_subscribe input[type="text"]:focus,
.widget-type-blog_subscribe input[type="password"]:focus, 
.widget-type-blog_subscribe input[type="datetime"]:focus, 
.widget-type-blog_subscribe input[type="datetime-local"]:focus, 
.widget-type-blog_subscribe input[type="date"]:focus, 
.widget-type-blog_subscribe input[type="month"]:focus, 
.widget-type-blog_subscribe input[type="time"]:focus, 
.widget-type-blog_subscribe input[type="week"]:focus, 
.widget-type-blog_subscribe input[type="number"]:focus, 
.widget-type-blog_subscribe input[type="email"]:focus, 
.widget-type-blog_subscribe input[type="url"]:focus, 
.widget-type-blog_subscribe input[type="search"]:focus, 
.widget-type-blog_subscribe input[type="tel"]:focus, 
.widget-type-blog_subscribe input[type="color"]:focus,
.widget-type-blog_subscribe input[type="file"]:focus,
.widget-type-blog_subscribe textarea:focus,
.widget-type-blog_subscribe select:focus {
    outline: none;
    border-bottom: 2px solid {{ formTextColor }};
}

/* Submit Button Styles */
.widget-type-blog_subscribe form .hs_submit {
    text-align: center;
}
.widget-type-blog_subscribe form .hs_submit input[type=submit] {
    -webkit-appearance: none;
    {{ rem('font-size','16') }}
    font-family: {{ mainFontFamily }};
    font-weight: 700;
    border: 2px solid {{ formTextColor }};
    {{ borderRadius('0') }}
    color: {{ formTextColor }};
    {{ rem('padding','8 16') }}
    background-color: transparent;
    {{ transition('background-color .3s ease-out,  color .1s ease-out') }}
}
.widget-type-blog_subscribe form .hs_submit input[type=submit]:hover {
    background-color: {{ formTextColor }};
    color: {{ mainAccentColor }};
}

/* Checkbox and Radio Button Styles */
.widget-type-blog_subscribe .form-columns-1 ul.inputs-list li {
    display: inline-block;
    {{ rem('margin-right', '32') }}
}
.widget-type-blog_subscribe ul.inputs-list li input {
    position: absolute;
    text-indent: -9999;
    width: 0 !important;
    visibility: hidden;
}
.widget-type-blog_subscribe ul.inputs-list li input + span {
    display: inline-block;
    {{ rem('margin-bottom','2') }}
    {{ rem('padding-left','20') }}
    position: relative;
    width: auto !important;
}
.widget-type-blog_subscribe ul.inputs-list li input + span:before {
    content: "";
    {{ rem('width','16') }}
    {{ rem('height','16') }}
    background-color: rgba(255,255,255,.3);
    {{ position('absolute','50%',null,null,'0') }}
    {{ transform('translateY(-50%)') }}
    {{ transition('background-color .2s ease-out') }}
}
.widget-type-blog_subscribe ul.inputs-list li input[type=radio] + span:before {
    {{ borderRadius('50%') }}
}
.widget-type-blog_subscribe ul.inputs-list li input:checked + span:before {
    background-color: {{ formTextColor }};
}
@media (min-width: 800px) {
    .widget-type-blog_subscribe form .hs_submit {
        {{ position('absolute',null,'0','0',null) }}
    }
    .widget-type-blog_subscribe form fieldset ~ .hs_submit {
        {{ position('absolute',null,rem('10'),rem('32'),null) }}
    }
    .widget-type-blog_subscribe .hs-form .hs-form-field {
        {{ rem('margin-bottom','32') }}
    }
    .widget-type-blog_subscribe h3 + div {
       /* {{ rem('padding','20 20 5') }} */
    }
}


/* 404 and Error Pages */

.page-center .widget-type-email_subscriptions h1,
.page-center .widget-type-email_subscriptions_confirmation h1,
.page-center .widget-type-email_simple_subscription h1 {
     {{ rem('font-size','42') }}
    font-weight: 600;
    line-height: 1.1;
    {{ rem('margin','28 0') }}
}

.page-center .widget-type-email_subscriptions h2,
.page-center .widget-type-email_subscriptions_confirmation h2,
.page-center .widget-type-email_simple_subscription h2 {
    {{ rem('font-size','26') }}
    font-weight: 900;
}

.widget-type-password_prompt input[type=password], .widget-type-password_prompt input[type=submit], .widget-type-email_simple_subscription #email-prefs-form input[type=email], .widget-type-email_simple_subscription input[type=submit], #email-prefs-form input[type=submit]  {
    {{ rem('padding','10')|replace(';','!important;') }}
    {{ rem('font-size','16')|replace(';','!important;') }}
    {{ appearance('none') }}
    {{ borderRadius('0') }}
    line-height: 1.1;
}
.widget-type-password_prompt input[type=password], .widget-type-email_simple_subscription input[type=email] {
    border: none;
    background-color: #eee;
    {{ rem('width','400') }}
    max-width: 100%;
}
.widget-type-password_prompt input[type=password]::-webkit-input-placeholder, .widget-type-email_simple_subscription input[type=email]::-webkit-input-placeholder {
    color: #000;
}
.widget-type-password_prompt input[type=password]::-moz-placeholder, .widget-type-email_simple_subscription input[type=email]::-moz-placeholder {
    color: #000;
}
.widget-type-password_prompt input[type=password]:-ms-input-placeholder, .widget-type-email_simple_subscription input[type=email]:-ms-input-placeholder {
    color: #000;
}
.widget-type-password_prompt input[type=password]:-moz-placeholder, .widget-type-email_simple_subscription input[type=email]:-moz-placeholder {
    color: #000;
}
.widget-type-password_prompt input[type=submit], .widget-type-email_simple_subscription input[type=submit], #email-prefs-form input[type=submit]  {
    background-color: {{ mainAccentColor }};
    border: none;
    color: #fff;
    {{ appearance('none') }}
    {{ borderRadius('0') }}
}


