/* animations */
@keyframes shake {
    10%, 90% {
        transform: translateX(-3px);
    }

    20%, 80% {
        transform: translateX(3px);
    }

    30%, 50%, 70% {
        transform: translateX(-3px);
    }

    40%, 60% {
        transform: translateX(3px);
    }
}

@keyframes alertFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes textFadeOut {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* alternate color schemes */
/* color-scheme-1 */
custom-funnel.color-scheme-1 {
    background-color: white;
}
/* color-scheme-2 */

/* color-scheme-3 */

/* color-scheme-4 */

/* alternate configurations */
/* radGroup flex-directon: row - 3 cols */

/* funnel container */
custom-funnel {
    background-color: #79bdea;
    display: flex !important;
    /*flex-direction: column;*/
    height: 100vh;
    /*height: -moz-available;*/
    /*height: -webkit-fill-available;*/
    width: 100vw;
    justify-content: center;
    position: fixed;
    /*margin-top: 1.5em;*/
    /*overflow-y: visible;*/
    /*overflow-y: auto;*/
    -webkit-overflow-scrolling: touch;
    z-index: 1000000;
    top: 0; /* 10px */
    left: 0;
    min-height: unset;
    scrollbar-width: none;
    scrollbar-gutter: stable;
}

.hide-after-submit.hide-this {
    display: none !important;
}

custom-funnel * {
    /*-webkit-overflow-scrolling: touch !important;*/
    /* overflow-y: visible !important; */
}

custom-funnel .screen-overlay {
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 100;
    position: fixed;
}

custom-funnel .client-form {
    display: flex;
    align-items: center;
    justify-content: center;
}
custom-funnel .client-form.form-style-2 {
    width: 100%;
    flex-direction: column;
    padding-top: 7vh;
    justify-content: flex-start;
}
custom-funnel .fs-wrapper {
    width: 100%;
}
custom-funnel .client-form.form-style-2 .text-inputPage .fs-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
	align-content: center;
	align-items: center;
    gap: 12px;
    column-gap: 24px;

}
custom-funnel .client-form.form-style-2 .fs-wrapper {
    width: 100%;
    max-width: 650px;
}
custom-funnel .client-form.form-style-2 .fieldset-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
custom-funnel .client-form.form-style-2 .disc_check_div span {
    width:100%;
    max-width: 100%;
}
custom-funnel .client-form.form-style-2 .fs-wrapper > div {
    margin-top: 6px;
    margin-bottom: 6px;
}


/* spinner */
custom-funnel .submitBtn {
    position: relative;
}

custom-funnel .submission-spinner {
    left: calc(50% - 40px);
    display: none;
    opacity: 0;
    position: absolute;
    top: calc(50% - 40px);
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 100%;
}

custom-funnel .lds-dual-ring {
    display: inline-block;
    width: 72px;
    height: 72px;
}

custom-funnel .lds-dual-ring:after {
    content: " ";
    display: block;
    width: 44px;
    height: 44px;
    margin: 8px;
    border-radius: 50%;
    border: 6px solid #fff;
    border-color: #61B4E4 transparent #61B4E4 transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}


/* form alert message */
custom-funnel .form-warning-message {
    background-color: transparent;
    display: inline-block;
    border-radius: 0.25em;
    padding: 0.25em 0.5em;
    color: black;
}

custom-funnel .warning-hide {
    display: none;
}
custom-funnel .form-alert-container {
    height: 0;
    margin-top: 0;
    margin-bottom: 0;
}

custom-funnel .form-alert-container.alert-active {
    margin-top: 6px;
    margin-bottom: 10px;
    height: unset;
}

custom-funnel .form-alert-container.warning-show {
    animation: alertFadeIn 0.7s ease-in;
}

custom-funnel .form-alert-container.warning-shake {
    animation: shake 0.6s ease-in-out;
}

custom-funnel .form-alert-container.warning-shake .form-warning-message {
    background-color: rgba(255, 0, 0, 0.3);
    color: white;
}


/* disclaimer message */
custom-funnel .disclaimer-message {
    font-style: 'proxima-soft', sans-serif;
    font-size: 13px;
    line-height: 12px;
    margin-top: 20px;
    padding-bottom: 20px;
    max-width: 600px;
    color: rgba(245, 245, 245, 0.9);
    text-align: left;
    margin-right: 25px;
    margin-left: 25px;
    display: flex;
    flex-direction: column;
}

custom-funnel .disclaimer-message a {
    color: rgba(245, 245, 245, 0.9);
}

custom-funnel.blur-back .disclaimer-message {
    max-width: unset;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

custom-funnel.blur-back .disclaimer-message {
    color: rgba(0, 0, 0, 0.9);
}
custom-funnel.blur-back .disclaimer-message a {
    color: rgba(0, 0, 0, 0.9);
}
custom-funnel.blur-back .disclaimer-message a:hover {
    color: rgba(0, 0, 0, 1);
}

custom-funnel .disclaimer-message label {
    text-align: justify;
    margin-left: 0;
}

custom-funnel .disc_check_div {
    display: flex;
    flex-direction: row;
    align-items: space-between;
}

custom-funnel .disc_sub_div {
    margin-top: 12px;
    text-align: left;
    width: 100%;
    padding-left: 0;
}

custom-funnel .disc_sub_div i {
    text-align: justify;
    margin-left: 0;
    padding-left: 0;
}

custom-funnel .disclaimer-message input {
    width: 16px;
    height: 16px;
    min-width: 16px;
}


/* buttons */
[class*="form-btn-"]:not([data-element_type="widget"]), [class*="form-btn-"][data-element_type="widget"] a {
    cursor: pointer;
}
custom-funnel .nextBtn {
    padding: 6px 20px 6px 20px;
    background-color: #FFFFFF;
    /*margin-top: 0.5em;*/
    width: 200px;
    color: #79bdea;
    font-size: 22px !important;
    border-radius: 6px;
    font-family: 'proxima-soft';
    z-index: 1000;
}


custom-funnel .submitBtn {
    padding: 6px 20px 6px 20px;
    background-color: #FFFFFF;
    /*margin-top: 0.5em;*/
    width: 200px;
    color: #79bdea;
    font-size: 22px !important;
    border-radius: 6px;
    font-family: 'proxima-soft';
    z-index: 1000;
}

custom-funnel .backBtn {
    padding: 4px 20px 4px 20px !important;
    background-color: transparent;
    /*border: 1px solid rgba(0, 0, 0, 0.7);*/
    margin-top: 0.5em;
    width: 200px;
    color: #FFFFFF;
    font-size: 1.2em;
    border-radius: 6px;
    font-family: 'proxima-soft';
    z-index: 1000;
}

custom-funnel .nextBtn,
custom-funnel .backBtn,
custom-funnel .submitBtn {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block;
    border: unset;
}
custom-funnel .nextBtn:focus,
custom-funnel .backBtn:focus,
custom-funnel .submitBtn:focus {
    outline: none;
    background-color: initial;
    color: initial;
}
custom-funnel .nextBtn:hover {
    background-color: #E6E6E6;
    color: #79bdea;
    transform: scale(1.02, 1.05);
    transition: all 0.2s ease-in;
}

custom-funnel .submitBtn:hover {
    background-color: #E6E6E6;
    color: #79bdea;
    transform: scale(1.02, 1.05);
    transition: all 0.2s ease-in;
}

custom-funnel .backBtn:hover {
    color: #FFF;
    /*text-shadow: 0 0 2px #436982;*/
    /*background-color: #F7931E;*/
    transform: scale(1.02, 1.05);
    transition: all 0.2s ease-in;
    background-color: unset;
    border: unset;
    /*padding: 4px 20px 4px 20px !important;*/
}

custom-funnel .submitBtn {
    /*box-shadow: 0 0 3px 6px ghostwhite;*/
    border-radius: 6px;
    background-color: #FFFFFF;
    font-family: 'proxima-soft';
    font-weight: 700;
    font-size: 25px !important;
    color: #F7931E;
}
custom-funnel .client-form.form-style-2 .backBtn {
    order: 0;
    font-size: 1.2rem !important;
    padding: 2px 0 0 0 !important;
    margin: 0 0 0 0 !important;
    text-align: left; 
    width: auto;
    min-width: unset;
}

custom-funnel .client-form.form-style-2 .nextBtn {
    order: 2;
    font-size: 1.2rem !important;
    padding: 2px 0 0 0 !important;
    margin: 0 0 0 0 !important;
    text-align: right;
    width: auto;
    min-width: unset;
}
custom-funnel .client-form.form-style-2 .submitBtn {
    order: 2;
    background-color: #F7931E;
    color: white;
    margin: unset !important;
}

custom-funnel .exitBtn {
    color: white;
    position: fixed;
    top: 25px;
    right: 18px;
    z-index: 100002 !important;
    cursor: pointer;
}

custom-funnel [class*='exitBtn-'] {
    color: white;
    position: fixed;
    top: 25px;
    right: 18px;
    z-index: 100002 !important;
    cursor: pointer;
}

custom-funnel .exitBtn svg:hover {
    cursor: pointer;
    transform: scale(1.1, 1.1);
    transition: transform 0.2s ease-in;
}

custom-funnel .exitBtn polygon {
    stroke: black;
    stroke-width: 4;
}


/* pages */
custom-funnel .formPage {
    display: flex;
    flex-direction: column;
    align-items: center;
    
    /*margin-top: auto;*/
    /*margin-bottom: auto;*/
    width: 100%;
    /* new */
    justify-content: center;
    padding: 0;
    margin: 0;
}

custom-funnel .pageHide {
    display: none !important;
}

custom-funnel .fnl-animated {

    position: absolute;
    height: fit-content;
    /*padding-bottom: 100px;*/
}

custom-funnel .fnl-animated-first {
    height: fit-content;
    display: flex;
    align-items: center;
}

#q1 {
    display: flex;
    justify-content: center;
}

fieldset {
    border: none;
}

/* Headers and text elements */
custom-funnel h1 {
    position: relative;
    text-align: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 1em;
    font-family: 'proxima-soft';
    font-weight: 700;
    font-size: 40pt;
    color: white;
    width: 636px;
    max-width: 750px;
}

custom-funnel .funnelLabel {
    color: #79bdea;
    font-family: 'proxima-soft';
    font-size: 1em;
    margin: auto;
    line-height: 1em;
}

#q1>h1 {
    display: none;
}

custom-funnel .note-wrapper {
    margin-top: 12px;
}

custom-funnel .note {
    font-family: 'proxima-soft';
    font-weight: 600;
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.form-page-title, .super-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: white;
    font-size: 1.5rem;
    width: 100%;
}
custom-funnel .client-form.form-style-2 .form-page-title, custom-funnel .client-form.form-style-2 .super-header {
    text-align: left;
}

custom-funnel .form-page-title-note {
    font-size: 0.7em;
    margin-top: -1em;
}


/* form elements */
custom-funnel .formPage .radioElem {
    padding: 12px 3em 12px 3em;
    background-color: #FFFFFF;
    box-sizing: border-box;
    font-size: 1.3rem;
    text-align: center;
    border-radius: 3px;
    font-family: 'proxima-soft';
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 6px;

}

custom-funnel .textElem {
    box-sizing: border-box;
    font-size: 1.3em;
    text-align: center;
    border-radius: 3px;

}

custom-funnel .textElem.fullwidth {
    /*width: 522px;*/
    margin-left: auto;
    margin-right: auto;
}

custom-funnel .formPage .radioElem:hover {
    background-color: #E6E6E6;
    color: #79bdea;
    cursor: pointer;
    transform: scale(1.02, 1.05);
    transition: all 0.2s ease-in;
}

custom-funnel .formPage .radioElem:hover .funnelLabel {
    color: #79bdea;
    cursor: pointer;
}

custom-funnel .formPage .radioElem input[type="radio"] {
    display: none;
}

custom-funnel .input-text {
    padding: 1em .8em 1em .8em;
    width: 100%;
    min-width: 350px;
    /*margin-top: 1em;*/
}

custom-funnel .address {
    position: relative;
    padding: 6px 10px 6px 10px;
    background-color: white;
}

custom-funnel .address input {
    border: none;
}

custom-funnel .address::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='%2370c023' d='M49.7 27.9V17.4C49.7 7.8 41.9 0 32.2 0c-0.1 0-0.2 0-0.3 0 -0.1 0-0.2 0-0.3 0C22 0 14.2 7.8 14.2 17.4v10.5H8V64h48V27.9H49.7zM22.9 17.4c0-4.8 3.9-8.7 8.7-8.7 0.1 0 0.4 0 0.4 0s0.1 0 0.2 0c4.8 0 8.7 3.9 8.7 8.7v10.5H22.9V17.4z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: 0 50%;
    background-size: 10px 10px;
    content: " SECURE";
    color: #70c023;
    font-size: 10px;
    font-weight: bold;
    height: 12px;
    line-height: 14px;
    margin: -6px 0 0 0;
    padding: 0 0 0 12px;
    pointer-events: none;
    position: relative;
    left: 6px;
    top: 50%;
    z-index: 3;
}

custom-funnel [class*="input-"] {
    border: none !important;
    outline: none;
    border-radius: 6px;
    font-family: 'proxima-soft';
    font-size: 12pt;
    color: #436982;
}

custom-funnel [class*="input-"]:active, custom-funnel [class*="input-"]:focus, custom-funnel input:focus {
    outline: none;
}

custom-funnel .split-field {
    margin-bottom: 12px;
}

custom-funnel .split-field:last-of-type {
    margin-bottom: 0;
}

#ginWrapper {
    opacity: 0 !important;
    position: absolute;
    z-index: -1;
    top: -100%;
    left: -100%;
}

#ginRummy_old {
    display: none !important;
}


/* structure */
custom-funnel .halfwidth:nth-child(odd) {
    grid-column: 1;
}

custom-funnel .halfwidth:nth-child(even) {
    grid-column: 2;
}

custom-funnel .fullwidth {
    grid-column: 1 / span 2;
}

custom-funnel .singleCols>.fullwidth {
    grid-column: 1 / 2;
}

custom-funnel .radGroup {
    display: grid;
    /*grid-template-columns: 294px 294px;*/
    grid-template-columns: 50% 50%;
    justify-content: stretch;
    grid-column-gap: 0;
    grid-row-gap: 0;
    height: fit-content;
    position: relative;
    top: 0;
    /*left: auto;*/
    width: fit-content;
}

custom-funnel .singleCols {
    grid-template-columns: auto;
}

custom-funnel .inputGroup {
    /*width: 600px;*/
    margin-left: auto;
    margin-right: auto;
}
custom-funnel .client-form.form-style-2 .text-inputPage .fs-wrapper .inputGroup {
    width: 100% !important;
}

/* progress bar */
custom-funnel .prog-bar-outer {
    /*border: 3px solid black;*/
    /*border-radius: 10px;*/
    height: 10px;
    width: 100vw;
    /*display: flex;*/
    position: fixed;
    top: 0px;
    left: 0;
    z-index: 10000 !important;
    /*box-sizing: border-box;*/
    background-color: transparent;
}

custom-funnel .prog-bar-inner-wrapper {
    background-color: #FFFFFF;
    border-radius: 10px;
    height: 100%;
    width: 100%;

}

custom-funnel .prog-bar-inner {
    /*box-sizing: border-box;*/
    position: relative;
    height: 100%;
    width: 0%;
    background-color: #436982;
    /*display: flex;*/
    border-radius: 7px;
    /*z-index: 10000;*/
    transition: width 0.7s ease-in;
}

custom-funnel.blur-back .prog-bar-inner-wrapper {
    background-color: #D9D9D9;
    height: 15px;
}

custom-funnel.blur-back .prog-bar-inner {
    background-color: #61B4E4;
}

custom-funnel .prog-bar-text {
    display: none;
    color: black;
    text-align: center;
    align-self: center;
    margin-left: 10px;
    font-size: 18px;
    font-family: 'proxima-soft';
}

#funnel-prog-bar {
    visibility: hidden;
}

custom-funnel .centered-prog-bar {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 650px;
    position: relative;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 80px;
}

custom-funnel .centered-prog-bar [class*="slide-"] {
    position: absolute;
    /*left: 100vw;*/
    left: 0;
    top: 0;
    /*transition: all 1s ease-in;*/
    opacity: 0;
    width: 100%;
}
custom-funnel .centered-prog-bar .prog-bar-header {
    width: 100%;
    position: relative;
    height: 180px;
}
custom-funnel .centered-prog-bar .slide-left {
    /*left: -100vw;*/
    opacity: 0;
    animation: textFadeOut 0.7s;
}
custom-funnel .centered-prog-bar .slide-right {
   /*left: 100vw;*/
    opacity: 0;
    animation: textFadeOut 0.7s;
}
custom-funnel .centered-prog-bar .active-slide {
    left: 0;
    opacity: 1;
    animation: textFadeIn 0.7s;
}
custom-funnel .centered-prog-bar .prog-bar-header h2 {
    color: black;
    text-align: center;
    font-size: 50px;
    font-family: 'adelle-sans', sans-serif;
    font-weight: 700;
}

custom-funnel .centered-prog-bar .prog-bar-outer {
    position: relative;
    width: 100%;
    max-width: 650px;
    height: 15px;
}



/* thankyou page */
custom-funnel .thanksOuterWrapper {
    background-color: white;
    border-radius: 25px;
    height: auto;
    align-self: center;
    padding: 40px;
    max-width: 600px;
    box-sizing: border-box;
}

custom-funnel.form-style-2 .thanksOuterWrapper {
    padding: 24px 12px;
    margin: 0;
    width: 100%;
    height: 100%;
    max-width: unset;
    background-color: unset;
    flex-direction: column;
    justify-content: flex-end;

}

custom-funnel .thanksInnerWrapper {
    display: flex;
    flex-direction: column;
    height: auto;
}

custom-funnel.form-style-2 .thanks-icon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}
custom-funnel.form-style-2 .thanks-body{
    flex-grow: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
custom-funnel.form-style-2 .thanksHeaderWrapper h2 {
	font-family: 'adelle-sans', sans-serif;
	font-weight: 700;
	font-size: 50px;
	max-width: 26ch;
	text-align: center;
	color: black;
}
custom-funnel.form-style-2 .thanksMessageWrapper p {
	font-family: 'proxima-soft', sans-serif;
	font-weight: 400;
	font-size: 28px;
	color: black;
}
custom-funnel.form-style-2 .thanks-footer {
    background-color: white;
    width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 24px 0 128px 0; /*128px=13.5%ish*/
}
custom-funnel.form-style-2.blur-back .thanks-footer {
    background-color: unset;
}
custom-funnel.form-style-2.inline-form .thanks-footer {
    display: none;
}
custom-funnel.form-style-2 .thanks-footer-header {
	margin-bottom: 16px;
}
custom-funnel.form-style-2.blur-back .thanks-footer-header {
	display: none;
}
custom-funnel.form-style-2 .thanks-footer-header h2 {
	font-family: 'adelle-sans', sans-serif;
	font-weight: 700;
	font-size: 40px;
	text-align: center;
	color: black;
}
custom-funnel.form-style-2 .thanks-footer-resources-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
	width: 100%;
}
custom-funnel.form-style-2 .resource-card {
    width: 300px;
    min-height: 200px;
    background-color: white;
    box-shadow: 0 3px 13px 0 rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	margin: 0 32px;
	border-radius: 8px;
	padding: 24px;
}
custom-funnel.form-style-2 .resource-card > a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
}
custom-funnel.form-style-2 .resource-card .resource-icon img {
    height: 81px;
}
custom-funnel.form-style-2 .resource-card .resource-icon.tool-icon img {
    height: 88px;
}
custom-funnel.form-style-2 .resource-card .resource-msg {
	display: flex;
}
custom-funnel.form-style-2 .resource-card .resource-msg span {
	font-family: 'adelle-sans', sans-serif;
	font-size: 25px;
	font-weight: 700;
	text-align: center;
	color: black;
}
custom-funnel .thanksHeader {
    color: #436982;
    width: 100%;
}

custom-funnel .thanksMessage {
    color: #436982;
    font-size: 18pt;
}

custom-funnel .thanksBtn {
    margin-top: 30px;
    color: white;
    background-color: #79BDEA;
    border-radius: 12px;
    font-size: 18pt;
}

custom-funnel .thanksBtn:hover {
    color: #436982;
    transform: scale(1.02, 1.05);
    transition: all 0.2s ease-in;
}


/* elment visibility */
.page-hide {
    display: none !important;
}

.show-elem {
    display: block;
}

.hide-elem {
    display: none !important;
}

custom-funnel .active-page {
    position: absolute !important;
}

/* inline forms */
/* width */
custom-funnel ::-webkit-scrollbar {
    width: 10px;
}

/* Track */
custom-funnel ::-webkit-scrollbar-track {
    background: linear-gradient(0deg, #c8c8c8, #436982)
}

/* Handle */
custom-funnel ::-webkit-scrollbar-thumb {
    background: #888;
    height: 20%;
}

/* Handle on hover */
custom-funnel ::-webkit-scrollbar-thumb:hover {
    background: #555;
}

custom-funnel.inline-form .formContainer {
    width: 450px;
    height: 600px;
}

custom-funnel.inline-form {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
    flex-direction: column;
    scrollbar-gutter: unset;
    top: 0;
    overflow-y: hidden;
    border-radius: 0 0 6px 6px;
    margin-top: 14px;
    z-index: 10;
}

custom-funnel.inline-form fieldset {
    padding-inline-start: 0;
    padding-inline-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-block: 0;
}

custom-funnel.inline-form .client-form {
    width: 100%;
    height: 100%;
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    /* padding-top: calc(5% + 29px); */

}

custom-funnel.inline-form .prog-bar-outer {
    position: absolute;
    width: 100%;
    left: 0;
    top: -7px;
    height: 7px;
    background-color: transparent;
}
custom-funnel.inline-form .prog-bar-inner-wrapper {
    border-radius: 3.5px 3.5px 0 0;
    overflow: hidden;
    background-color: rgba(0,0,0,0.05);
}
custom-funnel.inline-form .prog-bar-inner {
    border-radius: unset;
}

custom-funnel.inline-form .exitBtn {
    position: absolute;
    top: 5%;
    right: calc(5% - 10px);
}
custom-funnel form.inline-form .exitBtn {
    display: none;
}
custom-funnel.inline-form .formPage {
    position: relative;
    max-width: 100%;
    width: 100%;
    height: 100%;
    margin: 0 10%;
    overflow-y: auto;
    display: block;
    padding: 0;
    top: -1px;
}

custom-funnel.inline-form .radGroup {
    display: grid;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
}

custom-funnel.inline-form .radGroup .halfwidth {
    /*width: calc(50% - 6px);*/
}
custom-funnel.inline-form .radGroup .fullwidth {
    /*width: 100%;*/
}

custom-funnel .radioElem,
custom-funnel button {
    min-width: 250px;
    padding: 12px 1em;
}

custom-funnel.inline-form .funnelLabel {
    font-size: 1.125rem;
}
custom-funnel.inline-form .formPage .super-header {
    width: 100%; /* unset */
    padding: 0 1em;
    text-align: left;
    align-items: flex-start;
}
custom-funnel.inline-form .formPage .form-page-title {
    width: 100%; /* unset */
    padding: 0 1em;
    text-align: left;
    align-items: flex-start;
}

custom-funnel.inline-form .form-page-title h2 {
    font-size: 1.5625rem;
    text-align: left;
}

custom-funnel.inline-form .input-name {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
custom-funnel.inline-form .input-text {
    width: unset;
    min-width: 350px;
}

custom-funnel.inline-form .fs-wrapper {
    display: flex;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100% - 40px);
    max-width: 100%;
    margin: 0;
    padding: 12px 5% 28px 5%;
    width: 100%;
}
/*
custom-funnel .fs-wrapper > :first-child {
    margin-top: 6px;
}

custom-funnel .fs-wrapper > :last-child {
    margin-bottom: 18px;
}
*/
custom-funnel.inline-form .fnl-animated {
    padding-bottom: 0;
}

custom-funnel .radioElem,
custom-funnel button {
    cursor: pointer;
}

/* form style presets */
custom-funnel.form-style-1 .formPage .form-page-title {
    padding: 0 12px;
}
custom-funnel.form-style-1 .formPage .form-page-title h2 {
    color: #FFF;
    font-size: 1.5625rem;
    font-style: normal;
    font-weight: 700;
    font-family: 'Adelle-sans', sans-serif;
    line-height: normal;
}
custom-funnel.form-style-1 .funnelLabel {
    font-size: 1.5625rem;
    font-family: 'Proxima-soft', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
    color: #000;
    margin: 0;
    text-align: left;
}
custom-funnel.form-style-1 .formPage .radioElem:hover .funnelLabel {
    color: #000;
} 
custom-funnel.form-style-1 .formPage .radioElem {
    justify-content: flex-start;
}

/* new items -- add to appropriate categories once completed */
custom-funnel.blur-back form.inline-form .exitBtn {
    display: block;
}
custom-funnel .super-header h2 {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Adelle-sans', sans-serif;
    text-align: center;
    width: 100%;
}

custom-funnel .formPage.text-inputPage .form-page-title,
custom-funnel .formPage.text-inputPage .form-page-title h2 {
    align-items: center;
    text-align: center;
}

/* animations and transitions */
.fade-in-static {
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    -ms-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn;
}
.sidebar-form.not-init {
    display: none;
}
.sidebar-form {
    height: 850px;
    /*max-height: 200vh;*/
    width: 100%;
}
.sidebar-form custom-funnel {
    background-color: transparent;
    min-height: 800px;
}
.sidebar-form custom-funnel .prog-bar-outer {
    display: none;
}
.sidebar-form custom-funnel.inline-form {
    justify-content: flex-start;
}
.sidebar-form custom-funnel.inline-form .client-form {
    height: calc(100% - 36px);
}
.sidebar-form custom-funnel ::-webkit-scrollbar{
    width: 6px;
}
.sidebar-form custom-funnel.inline-form .formPage {
    margin: 1px 0 0;
    width: 100%;
}
.sidebar-form custom-funnel.inline-form .fs-wrapper {
    justify-content: flex-start;
}
.sidebar-form custom-funnel.inline-form .formPage .radioElem {
    min-width: unset;
    justify-content: flex-start;
    background-color: #61B4E4;
}
.sidebar-form custom-funnel.inline-form .radGroup .halfwidth {
    width: 100%;
}
.sidebar-form custom-funnel.inline-form .radGroup .fullwidth {
    width: 100%;
}
.sidebar-form custom-funnel .super-header {
    padding: 0;
    width: 100%;
}
.sidebar-form custom-funnel .super-header h2 {
    font-size: 1.875rem;
    text-align: left;
    width: 100%;
    color: #000;
}
.sidebar-form custom-funnel.inline-form .formPage .form-page-title {
    padding: 0;
}
.sidebar-form custom-funnel.inline-form .formPage .form-page-title h2 {
    padding: 0;
    font-size: 1.25rem;
    width: 100%;
    text-align: left;
    font-weight: 400;
    color: #000;
}
.sidebar-form custom-funnel.inline-form .textInput {
    border: 1px solid rgba(0,0,0,0.1) !important;
}
.sidebar-form custom-funnel.inline-form .funnelLabel {
    font-size: 1.25rem;
    color: #FFF;
}
.sidebar-form custom-funnel.inline-form .formPage .radioElem:hover .funnelLabel {
    color: #FFF;
} 
.sidebar-form custom-funnel.inline-form .radGroup {
    display: flex;
    padding: 0;
    grid-row-gap: 0;
}
.sidebar-form custom-funnel.inline-form .nextBtn {
    color: rgba(0,0,0,1);
    font-size: 1.1em;
    background-color: transparent;
}
.sidebar-form custom-funnel.inline-form .nextBtn:hover {
    color: rgba(0,0,0,0.8);
    background-color: transparent;
}
.sidebar-form custom-funnel.inline-form .backBtn {
    color: rgba(0,0,0,1);
    font-size: 1em;
    background-color: transparent;
}
.sidebar-form custom-funnel.inline-form .backBtn:hover {
    color: rgba(0,0,0,0.8);
    background-color: transparent;
}
.sidebar-form custom-funnel.inline-form .submitBtn {
    color: rgba(0,0,0,1);
    font-size: 1.1em;
    background-color: transparent;
}
.sidebar-form custom-funnel.inline-form .submitBtn:hover {
    color: rgba(0,0,0,0.8);
    background-color: transparent;
}
.sidebar-form custom-funnel.inline-form .disclaimer-message {
    color: rgba(0,0,0,0.8);
}

custom-funnel.blur-back {
    background-color: rgba(255,255,255,0.6);
    /*background: rgba(255,255,255,0.5);*/
    /*backdrop-filter: blur(12px) contrast(0.3) opacity(0.85) saturate(0.9);*/
    /*-webkit-backdrop-filter: blur(12px) contrast(0.3) opacity(0.85) saturate(0.9);*/
    /* background: rgba(255,255,255,0.1); */
    /* backdrop-filter: blur(12px) contrast(0.3) opacity(0.1) saturate(0.9); */
}
@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
    custom-funnel.blur-back {
        background-color: rgba(255, 255, 255, .5);
        -webkit-backdrop-filter: blur(12px) contrast(0.3) opacity(0.85) saturate(0.9);
        backdrop-filter: blur(12px) contrast(0.3) opacity(0.85) saturate(0.9);
      }
}

custom-funnel.blur-back .formPage .radioElem {
    box-shadow: 0 3px 13px 0 rgba(0,0,0,0.1);
}
custom-funnel.blur-back .form-page-title, custom-funnel.blur-back .super-header {
    color: #000;
}
custom-funnel.blur-back .funnelLabel {
    color: #000;
}
custom-funnel.blur-back .formPage .radioElem:hover .funnelLabel {
    color: #000;
}
custom-funnel.blur-back .backBtn {
    font-weight: 400;
}
custom-funnel.blur-back .nextBtn, custom-funnel.blur-back .submitBtn, custom-funnel.blur-back .backBtn {
    background-color: transparent;
    color: #000;
}
custom-funnel.blur-back .nextBtn:hover, custom-funnel.blur-back .submitBtn:hover, custom-funnel.blur-back .backBtn:hover {
    color: #000;
    background-color: transparent;
    text-decoration: underline;
}
.sidebar-right custom-funnel.inline-form .fs-wrapper {
    padding: 12px 0;
}
custom-funnel .whatsapp-checkbox-wrapper {
    padding-top: 2rem;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}
custom-funnel .whatsapp-checkbox-wrapper label {
    font-size: 1.3rem;
}
/* mid-size screens */
@media screen and (max-width: 1224px){
	custom-funnel {
		overflow: auto;
	}
	custom-funnel.form-style-2 .thanksOuterWrapper {
		height: auto;
		min-height: 100%;
		align-self: flex-start;
		padding: 10vh 12px;
	}
	custom-funnel.form-style-2 .thanksMessageWrapper p {
		text-align: center;
	}
	custom-funnel.form-style-2 .resource-card {
		margin: 0 12px;
	}
	custom-funnel.form-style-2 .resource-msg span {
		font-size: 22px;
	}	

}
/* small screens */
@media only screen and (max-width: 767px) {
    custom-funnel {
        position: fixed;
        z-index: 99999;
        top: 0;
        overflow-y: auto;
    }

    custom-funnel .prog-bar-outer {
        /*position: -webkit-fixed;*/
        /*top: 10px;*/
        z-index: 100001 !important;
    }

    custom-funnel .formPage {
        -webkit-overflow-scrolling: touch;
        overflow-y: auto;
        /*height: 90vh;*/
        height: 100%;
        min-height: 100%;
        z-index: 100000 !important;
        top: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 44px 18px 48px 18px;
        margin-inline-start: 0;
        margin-inline-end: 0;
        left: 0;
    }
    custom-funnel .fs-wrapper {
        min-height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
		margin-bottom: 80px;
		padding-bottom:24px;
    }

    custom-funnel .radGroup {
        display: flex;
        width: 100%;
        flex-direction: column;
        margin-left: auto;
        margin-right: auto;
    }

    custom-funnel .radGroup h1,
    custom-funnel .radGroup div {
        width: 100%;
        margin-bottom: 8px;
    }

    custom-funnel .inputGroup {
        /*width: 92%;*/
    }

    custom-funnel .formPage .radioElem {
        padding: 1em 3px 1em 3px;
        font-size: 1.1rem;
        margin: 6px 0;
    }
    custom-funnel.form-style-1 .formPage .radioElem {
        justify-content: center;
    }
    custom-funnel.form-style-1 .funnelLabel {
        text-align: center;
    }
    custom-funnel .formPage h1 {
        width: 92%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 37px;
        font-size: 2.3em;
        line-height: 1.1em;
    }

    custom-funnel .radGroup h1 {
        font-size: 4em;
    }
    custom-funnel .input-text {
        min-width: unset;
        width: 100%;
    }

    custom-funnel .textElem {
        padding: 0;
        margin-bottom: 12px;
    }

    custom-funnel .nextBtn,
    custom-funnel .backBtn,
    custom-funnel .submitBtn {
        width: 92%;
        font-size: 1.2em;
    }

    custom-funnel .funnelLabel {
        font-size: 1.1em;
    }
custom-funnel .input-phone {
        margin-bottom: 32px;
    }
    custom-funnel .input-phone .form-alert-container {
        position: absolute;
        line-height: 0.9em;
    }
    custom-funnel .thanksOuterWrapper {
        max-width: unset;
        width: 92%;
        margin-left: auto;
        margin-right: auto;
    }
	custom-funnel.form-style-2 .thanksOuterWrapper dotlottie-player {
		width: 200px;
		height: 200px;
	}
	custom-funnel.form-style-2 .thanksHeaderWrapper h2 {
		font-size: 2rem;
	}
	custom-funnel.form-style-2 .thanksMessageWrapper p {
		font-size: 1.2rem;
	}
	custom-funnel.form-style-2 .thanks-footer-resources-wrapper {
		flex-direction: column;
	}
	custom-funnel.form-style-2 .resource-card {
		margin: 24px;
	}
	custom-funnel .centered-prog-bar {
		position: absolute;
		top: 0;
	}
	custom-funnel .centered-prog-bar .prog-bar-header {
		display: none;
	}
    /* subject to removal */
    #q1 {
        height: 100vh !important;
        padding-bottom: 0;
        width: 100vw !important;
    }

    #QUICK_ACTION_BAR {
        display: none;
    }
    
    /* new */
    custom-funnel.inline-form {
        justify-content: flex-start;
    }
    custom-funnel.inline-form .client-form {
        height: calc(100% - 36px);
    }
    custom-funnel ::-webkit-scrollbar{
        width: 6px;
    }
    custom-funnel.inline-form .formPage {
        margin: 1px 0 0;
        width: 100%;
    }
    custom-funnel.inline-form .fs-wrapper {
        padding: 12px 5%;
        min-height: 100%;
    }
    .sidebar-right custom-funnel.inline-form .fs-wrapper {
        padding: 12px 0;
    }
    custom-funnel .super-header {
        padding: 0;
        width: 100%;
    }
    custom-funnel .super-header h2 {
        font-size: 1.875rem;
        text-align: left;
        width: 100%;
    }
    custom-funnel.inline-form .formPage .form-page-title {
        padding: 0;
    }
    custom-funnel.inline-form .formPage .form-page-title h2 {
        padding: 0;
        font-size: 1.25rem;
        width: 100%;
        text-align: center;
        font-weight: 400;
    }
    custom-funnel.inline-form .funnelLabel {
        font-size: 1.25rem;
    }
    custom-funnel.inline-form .radGroup {
        display: flex;
        padding: 0;
        grid-row-gap: 0;
    }
    custom-funnel.inline-form .radioElem {
        min-width: unset;
        justify-content: center;
    }
    custom-funnel.inline-form .radGroup .halfwidth {
        width: 100%;
    }
    custom-funnel.inline-form .input-text {
        width: 100%;
    }
}

/* safari mobile only */
@supports (-webkit-touch-callout: none){
    custom-funnel.blur-back {
        background-color: #61B4E4;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
      }
	custom-funnel.blur-back .prog-bar-header h2 {
		color: white;
	}
	custom-funnel.blur-back .prog-bar-inner {
		background-color: #436982;
	}
	custom-funnel.blur-back .form-page-title h2 {
		color: white;
	}
	custom-funnel.blur-back .thanksHeaderWrapper h2,
	custom-funnel.blur-back .thanks-footer-header h2,
	custom-funnel.blur-back .thanksMessageWrapper p {
		color: white;
	}
	custom-funnel.blur-back .exitBtn svg, custom-funnel.blur-back .exitBtn polygon {
		stroke: white;
	}
	custom-funnel.blur-back .nextBtn,
    custom-funnel.blur-back .backBtn,
    custom-funnel.blur-back .submitBtn {
        color: white;
    }

}
/* NOT small screens */
@media only screen and (min-width: 767px) {
    custom-funnel .radGroup {
        display: grid;
    }

    custom-funnel .radGroup h1,
    custom-funnel .radGroup div {
        width: unset;
        margin-bottom: unset;
    }

    custom-funnel .formPage h1,
    custom-funnel .formPage div:not(.input-phone div) {
        width: unset;
        /* margin-bottom: unset; */
    }

    custom-funnel .formPage h1 {
        margin-bottom: 12px;
    }
    custom-funnel .input-phone {
        margin-bottom: 32px;
    }
    custom-funnel .input-phone .form-alert-container {
        position: absolute;
        line-height: 0.9em;
    }

    custom-funnel .inputGroup {
        /*width: 600px !important;*/
    }

    custom-funnel .inputGroup .textElem {
        /*padding: 1.75em 3em 0 3em;*/
        margin-bottom: 12px;
    }
    custom-funnel .formPage .radioElem {
        margin: 6px;
    }
}


/* subject to removal */

.disable-scrolling-alt {
    position: fixed;
}

.fa-xl {
    font-size: 2.5em !important;
}

.funnel-contact-us {
    width: 210px;
    height: 37px;
    text-transform: unset;
    font-size: 20px;
}

.scrolling-disabled {
    overflow-y: hidden !important;
    /*-webkit-overflow-scrolling: touch !important;*/
    /*position: fixed !important;*/
    /*position: fixed;*/
    top: 0;
    left: 0;
}

