/*///////////////////////////////

CUSTOM FONT SECTION
Uncomment below for custom typography import

/////////////////////////////*/

/*@font-face {
font-family:"futura-pt";
src:url("https://use.typekit.net/af/309dfe/000000000000000000010091/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff2"),url("https://use.typekit.net/af/309dfe/000000000000000000010091/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("woff"),url("https://use.typekit.net/af/309dfe/000000000000000000010091/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n7&v=3") format("opentype");
font-display:auto;font-style:normal;font-weight:700;
} */

/*////////////////////////////////////////

FORM CUSTOMIZATION
Uncomment only ONE set of variables
(transparent, light, dark) below and
customize as needed

//////////////////////////////////////*/

/* Transparent */
:root {
    /* The background color of the form. Typically would be set to transparent to inherit the background color of the site */
    --color-bg: transparent; 
    /* General text color */
    --color-text: #0f0f0f;
    /* General text color */
    --color-border: #222;
    /* Error text color... need this to override .has-error class that's loaded by default (possible future fix?)  */
    --color-error: #0f0f0f;
    /* Checkbox color. Mapped to primary color by default  */
    --color-checkbox: var(--color-primary);
    /* Primary accent color  */
    --color-primary: #0f0f0f;
    /* Accent hover color. Primarily used for button hover */
    --color-primary-hover: #222;
    /* Color for text placed above primary color objects (e.g. primary button text) */
    --color-onprimary: #f5f5f5;
    /* Use this to globally apply custom typography to form. Typically would coincide with @font-face import at the top of this CSS file (if non-standard system font) */
    --font: 'helvetica-neue', helvetica, sans-serif;
}

/* Light */
/*:root {
    /* --color-bg: #f9f9fa;
    --color-text: #0f0f0f;
    --color-placeholder: #6b7280;
    --color-border: #d1d5db;
    --color-error: #0f0f0f;
    --color-checkbox: var(--color-primary);
    --color-primary: #0f0f0f;
    --color-primary-hover: #000;
    --color-onprimary: #f5f5f5;
    --font: 'helvetica-neue', helvetica, sans-serif;
} */

/* Dark */
:root {
  --color-bg: #000;
  --color-text: #fff;
  --color-placeholder: #999;
  --color-border: #fff;
  --color-error: #f00;
  --color-checkbox: var(--color-primary);
  --color-primary: #fff;
  --color-primary-hover: #000;
  --color-onprimary: #000;
  --color-onprimary-hover: #fff;
  --font: Arial, sans-serif;
}


/*///////////////////////////////////////

DO NOT EDIT BELOW

/////////////////////////////////////*/

.header-image{
	display: none !important;
}
.header-image-grid {
	width: 100%;
	padding: 0px;
	margin-bottom: 0px;
}
body {
    font-family: var(--font);
    /* font-size: 16px; */
    /* line-height: 1.42857143; */
    color: var(--color-text);
    background-color: var(--color-bg);
}
.header-image-col-preview-before {
	background: none !important;
}
.evidon-banner {
	display: none !important;
}
.form-control {
    border-color: var(--color-border);
    font-weight:400;
}

.form-control::placeholder {
    color: var(--color-placeholder);
}

.disabled-optins { opacity:1; }
.disabled-optins > div {
    opacity:.5;
}

.has-error .form-control {
    color: var(--color-placeholder);
    border-color: var(--color-border);
    box-shadow: none;
}

.control-label {
    color: var(--text);
    /* font-size:1.2rem; */
    font-weight:600;
}

.has-error .checkbox, .has-error .checkbox-inline,  .has-error .help-block, .has-error .radio, .has-error .radio-inline, .has-error.checkbox label, .has-error.checkbox-inline label, .has-error.radio label, .has-error.radio-inline label {
    color: var(--color-error);
    border-color: var(--color-border);
    font-weight:600;
}

.has-error .control-label {
    color: var(--text);
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 300;
}
.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    /* font-size: 16px; */
    font-weight: 400;
    /* line-height: 1.42857143; */
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 2px solid transparent;
}
/* .btn-primary {
    color: white;
    background-color: transparent;
    border-color: white;
}
.btn-primary:hover {
    color: black;
    background-color: white;
    border-color: white;
}
.btn-primary.active, .btn-primary:active, .open>.dropdown-toggle.btn-primary {
    color: black;
    background-color: white;
    border-color: white;
}
.btn-primary.focus, .btn-primary:focus {
    color: black;
    background-color: white;
    border-color: white;
}
.btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .open>.dropdown-toggle.btn-primary.focus, .open>.dropdown-toggle.btn-primary:focus, .open>.dropdown-toggle.btn-primary:hover {
    color: black;
    background-color: white;
    border-color: white;
}
.btn-primary.disabled.focus, .btn-primary.disabled:focus, .btn-primary.disabled:hover, .btn-primary[disabled].focus, .btn-primary[disabled]:focus, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:hover {
    background-color: black;
    border-color: black;
} */
.has-success .form-control {
    border-color: var(--color-border);
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}
.has-success .checkbox, .has-success .checkbox-inline, .has-success .control-label, .has-success .help-block, .has-success .radio, .has-success .radio-inline, .has-success.checkbox label, .has-success.checkbox-inline label, .has-success.radio label, .has-success.radio-inline label {
    color: var(--color-text);
    border: var(--color-border);
}

h2 {
    font-weight: 600;
    font-style: normal;
    /* font-size: 35px; */
    /* letter-spacing: -.01em; */
    line-height: 1em;
    text-transform: none;
	color: white;
}
.header-clear {
    background-color: transparent;
    width: 100%;
    height: 0px;
}

/* Added 09/2023 */
/* #app {
    padding:20px 30px 30px;
} */
.main-form-page {
    margin-bottom:0;
}

.textblock {
    margin-bottom:.5rem;
}

form p, .textblock {
    text-align:left;
}

/* .form-section-row .textblock, .privacy-section-row {
    font-size: 1.2rem;
    text-align:left;
} */

.textblock a, .privacy-section-row a {
    color:var(--color-text);
    font-weight:bold;
    text-decoration:underline;
}

.header-text {
    background:transparent;
    text-shadow:none;
    color:var(--color-text)!important;
    font-family: var(--font);
    position:relative;
}

.header-prop {
    height:auto;
}

.form-section-row > .col-sm-12 > div {
    padding-bottom: 0px!important;
    display:flex;
    flex-flow:column;
}

.form-section-row > .col-sm-12 > div > .row:nth-child(5) {
    order:2;
    margin-top:1rem;
}

.form-section-row > .col-sm-12 > div > .row.submit-section-row {
    order:3;
}

.optin-section-header-row {
    /* padding: 1rem 0 0;
    font-weight:bold;
    font-size: 1.4rem; */
    /* hiding and instead opting for this text to be in disclaimer */
    /* display:none; */
}

.optin-section-header-row ~ .optin-section-row {
    /* border: 1px solid var(--color-border);
    border-width:0 1px 1px; */
    margin-bottom:.75rem;
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    opacity:.5;
}

.btn-primary {
    background:var(--color-primary);
    color:var(--color-onprimary);
    border:none;
    font-weight:700;
    min-height:48px;
}

.btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled]:active {
    background:var(--color-primary);
    color:var(--color-onprimary);
}

.btn-primary:hover, .btn-primary:focus {
    background:var(--color-primary); /* fallback to text color if no hover color defined */
    background:var(--color-primary-hover);
    color:var(--color-onprimary);
}

input[type=checkbox]:checked {
    accent-color: var(--color-text); /* fallback to text color if no input color defined */
    accent-color: var(--color-checkbox);
  }

/* .checkbox > label {
    font-size:1.4rem;
} */

.header-text {
  font-size: 20px;
  font-weight: 700;
  margin-top: 0;
  top: 0;
}
.header-image {
  width: 100%;
  max-width: 500px;
}
.control-label,
.has-error .control-label,
.has-success .control-label {
  color: var(--color-text);
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
.form-control,
.has-error .form-control,
.has-success .form-control {
  color: var(--color-text);
  background-color: transparent;
  border-color: var(--color-border) !important;
  border-radius: 0;
  box-shadow: none !important;
}
.optin-section-header-row,
.optin-section-row,
.thanks-body-section-row {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
.optin-section-row .checkbox label {
  font-weight: bold;
}
.privacy-section-row p {
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}
.privacy-section-row p:last-of-type {
  margin-bottom: 0;
}
.submit-section-row form {
  margin-bottom: 20px;
}
.submit-section-row .submit-button,
.submit-section-row .submit-button[disabled] {
  color: var(--color-onprimary);
  background-color: var(--color-primary);
  border: 1px solid var(--color-border);
  border-radius: 0;
  font-weight: bold;
  text-transform: uppercase;
}
.submit-section-row .submit-button:not([disabled]):hover,
.submit-section-row .submit-button:not([disabled]):focus,
.submit-section-row .submit-button:not([disabled]):active {
  color: var(--color-onprimary-hover);
  background-color: var(--color-primary-hover);
  border-color: var(--color-border);
}