
        @font-face {
            font-display: swap;
            font-family: 'Open sans';
            font-style: normal;
            font-weight: 300;
            src: url('../fonts/open-sans-v34-latin-300.woff2') format('woff2'),
                url('../fonts/open-sans-v34-latin-300.woff') format('woff');
        }
    
        @font-face {
            font-display: swap;
            font-family: 'Open sans';
            font-style: normal;
            font-weight: 400;
            src: url('../fonts/open-sans-v34-latin-regular.woff2') format('woff2'),
                url('../fonts/open-sans-v34-latin-regular.woff') format('woff');
        }
    
        @font-face {
            font-display: swap;
            font-family: 'Open sans';
            font-style: bold;
            font-weight: 700;
            src: url('../fonts/open-sans-v34-latin-700.woff2') format('woff2'),
                url('../fonts/open-sans-v34-latin-700.woff') format('woff');
        }
    
        @font-face {
            font-display: swap;
            font-family: 'Comfortaa';
            font-style: normal;
            font-weight: 400;
            src: url('../fonts/comfortaa-v40-latin-regular.woff2') format('woff2'),
                url('../fonts/comfortaa-v40-latin-regular.woff') format('woff');
        }
    

:root {
    --body-font-size: 16px;
    --gutter-spacing: 15px;
    --corner-rounding: 4px;
    --body-font-stack: 'Open sans', sans-serif;
    --display-font-stack: 'Open sans', sans-serif;
    --heading-font-stack: 'Comfortaa', sans-serif;
    --color-primary: hsl(339, 78%, 60%);
    --color-primary--shade: hsl(339, 37%, 46%);
    --color-primary--deep: hsl(339, 55%, 38%);
    --color-primary--fade: hsl(339, 10%, 62%);
    --color-accent: hsl(210, 100%, 75%);
    --color-body-bg: hsl(0, 0%, 100%);
    --color-body-font: hsl(0, 0%, 13%);
    --color-body-font-faded: hsl(0, 0%, 37%);
    --color-overlay-bg: hsla(0, 0%, 100%, .9);
    --color-fixed-form-bg: hsla(339, 18%, 42%, .7);
    --line-height: 1.4;
    --text-xxs: 0.67rem;
    --text-xs: 0.835rem;
    --text-s: 0.918rem;
    --text-l: 1.082rem;
    --text-xl: 1.165rem;
    --text-xxl: 1.33rem;
    --text-xxxl: 1.66rem;
    --text-xxxxl: 2rem;
}
@media screen and (min-width: 420px) {
    :root {
        --body-font-size: 18px;
    }
}
@media screen and (min-width: 1366px) {
    :root {
        --gutter-spacing: 20px;
    }
}
@media screen and (min-width: 1920px) {
    :root {
        --gutter-spacing: 40px;
    }
}

html {
    scroll-behavior: smooth;
    font: var(--body-font-size) / var(--line-height) var(--body-font-stack);
    color: var(--color-body-font);
}
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: relative;
}
a {
    outline: 0;
}
a:link,
a:visited {
    color: var(--color-primary);
}
a:hover,
a:active {
    color: var(--color-accent);
}
.noDecoration {
    text-decoration: none;
}
img {
    border: medium none;
}
h1,
h2 {
    font-weight: normal;
    color: var(--color-primary--shade);
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: .6em 0;
}
h1 {
    font-size: var(--text-xxxl);
    color: var(--color-primary--shade);
    font-family: var(--display-font-stack);
}
h2 {
    font-size: var(--text-xxl);
    color: var(--color-primary--shade);
    font-family: var(--heading-font-stack);
}
h3 {
    font-size: var(--text-xl);
    color: var(--color-primary--shade);
}
h4 {
    font-size: var(--text-l);
}
hr {
    margin: 3rem auto 1.5rem;
    border: 1px solid var(--color-primary--fade);
    opacity: .5;

}


.button {
    font-weight: normal;
    text-decoration: none;
    padding: .66em 1.32em;
    line-height: 1.4;
    border-radius: calc(var(--line-height) * 1em);
    cursor: pointer;
    border: 0 none;
    display: inline-block;
    text-align: center;
    transition: background 100ms;
    box-sizing: border-box;
}
.button:disabled,
.button--disabled {
    cursor: not-allowed;
    opacity: .6;
    box-shadow: none;
}
.button--ghost {
    background: white;
    box-shadow: 0 .1em .3em -.15em var(--color-body-font-faded);
    color: var(--color-primary);
}
.button--primary {
    background: var(--color-primary);
    box-shadow: 0 .1em .3em -.15em var(--color-body-font);
    color: var(--color-body-bg) !important;
}
.button--primary:hover {
    background: var(--color-accent);
}
.button--fancy {
    background: linear-gradient(120deg, var(--color-accent) 0%, var(--color-primary--shade) 100%);
    color: var(--color-body-bg) !important;
}
.button--fancy:hover {
    background: linear-gradient(120deg, var(--color-accent) 0%, var(--color-accent) 100%);
}
.button--secondary {
    background: var(--color-primary--fade);
    box-shadow: 0 .1em .3em -.15em var(--color-body-font);
    color: var(--color-body-bg) !important;
}
.button--secondary:hover {
    background: var(--color-primary);
}


.main {
    background: var(--color-body-bg);
}


.content-section {
    padding: 3em var(--gutter-spacing);
    max-width: 1400px;
    margin: 0 auto;
    box-sizing: border-box;
}
@media screen and (min-width: 420px) {
    .content-section--readable {
        max-width: 50rem;
        padding-left: calc(var(--gutter-spacing) * 2);
        padding-right: calc(var(--gutter-spacing) * 2);
    }
}
.content-section--pad-l {
    padding-top: 6em;
    padding-bottom: 6em;
}
.content-section--centred {
    text-align: center;
}


.nag {
    background: var(--color-primary--shade);
}
.nag__button {
    font-size: var(--text-xxl);
}


.footer {
    background: var(--color-primary--fade);
    text-align: center;
}
.footer p {
    color: var(--color-body-bg);
    font-size: var(--text-xxs);
    opacity: .6;
}

@media screen and (max-width: 420px) {
    .hide-to-375 {
        display: none !important;
    }
}
@media screen and (max-width: 768px) {
    .hide-to-768 {
        display: none !important;
    }
}
@media screen and (min-width: 769px) {
    .hide-above-768 {
        display: none !important;
    }
}




.button-group {
    box-shadow: 0 .1em .3em -.15em var(--color-body-font);
    border-radius: calc(var(--line-height) * 1em);
    overflow: hidden;
}
.button-group .button:not(:only-child) {
    border-radius: 0;
    box-shadow: none;
    position: relative;
}
.button-group .button + .button:before {
    position: absolute;
    content: "";
    background: var(--color-body-font-faded);
    opacity: .5;
    height: 100%;
    width: 1px;
    left: 0;
    top: 0;
}
@media screen and (max-width:768px) {
    .button-group > .button:not(:only-child) {
        padding-right: .8em;
        padding-left: .8em;
    }
}


.hero {
    background-image:
        radial-gradient(var(--hero-bg-tint) 50%, var(--color-body-font) 90%);
    min-height: 100vh;
    position: relative;
    padding: var(--gutter-spacing);
    box-sizing: border-box;
    color: var(--color-body-bg);
    display: flex;
    flex-direction: column;
}
.hero__pic {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.hero__pic img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    mix-blend-mode: overlay;
}
.hero__section {
    position: relative; /* Ensure logo img isn't subject to hero filters. */
}
.hero__section--logo {
    margin-bottom: 2rem;
}
.hero__section--body {
    margin: auto auto 4vh;
    z-index: 1;
}
.hero__nav {
    position: absolute;
    top: calc(var(--gutter-spacing) + .4em);
    right: var(--gutter-spacing);
    display: flex;
    max-width: calc(50% - var(--gutter-spacing));
    box-sizing: border-box;
}
.hero__nav > .button {
    font-size: var(--text-s);
    margin: 0;
}
.hero__login span {
    display: none;
}
.hero__logo {
    display: block;
    height: 3.6rem;
    width: auto;
    max-width: calc(50% - var(--gutter-spacing)/2);
}
.hero h1 {
    font-size: 2.6rem;
    font-family: var(--display-font-stack);
    font-weight: 300;
    line-height: 1.1;
    text-align: center;
    margin: 0 auto 4vh;
    letter-spacing: -.025em;
    color: inherit;
}
@media screen and (max-width: 375px) {
    .hero h1 {
        font-size: 9.4vw;
        font-weight: 400;
    }
}
@media screen and (max-width: 420px) {
    .hero h1 {
        width: auto;
    }
}
.hero__bottom {
    display: none;
    flex-direction: column;
    opacity: .6;
    box-sizing: border-box;
    align-self: flex-start;
    margin-top: 0;
}
@media screen and (min-height: 30em) and (orientation: landscape) {
    .hero__bottom {
        display: flex;
    }
}
.hero__bottom h2 {
    color: var(--color-body-bg);
    font-size: 1rem;
    font-family: var(--body-font-stack);
    margin: 0 0 .5rem 0;
}
.hero__bottom .protected-by {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.hero__bottom img {
    display: block;
}
.hero__bottom .odp {
    width: 103px;
    height: auto;
    margin-right: var(--gutter-spacing);
}
.hero__bottom .scamalytics {
    width: 136px;
    height: auto;
}
@media screen and (min-width: 769px) and (orientation: landscape) {
    .hero__section--body {
        margin-top: auto;
        margin-left: 5vw;
        width: 40vw;
    }
}
@media screen and (min-width: 1366px) and (orientation: landscape) and (min-height: 851px) {
    .hero {
        justify-content: center;
    }
    .hero__section--body {
        margin-top: 5vh;
    }
    .hero__section--logo {
        margin-left: 5vw;
        width: 40vw;
    }
    .hero__logo {
        height: auto;
        max-height: 12vh;
        max-width: 30vw;
        margin: 0 auto;
    }
    .hero__login span {
        display: inline;
    }
    .hero__bottom {
        position: absolute;
        bottom: var(--gutter-spacing);
        left: var(--gutter-spacing);
    }
}


#signupForm:not(.fixed #signupForm) {
    min-height: 12rem; /* This is should be tall enough to match the greatest height the signup form can render at i.e. with all form groups */
}
.signup {
    max-width: 22rem;
    z-index: 1;
    margin: auto;
    color: var(--color-body-font);
}
.signup h2 {
    color: var(--color-body-bg);
    font-family: var(--body-font-stack);
    font-size: var(--text-xxl);
    margin: 0 0 .25em 0;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0,0,0,.2);
}
.signup__mobile-header {
    display: none;
    text-align: center;
    position: relative;
}
.signup__dismiss {
    padding: .25rem;
    box-sizing: border-box;
    position: absolute;
    width: 1.5rem;
    height: 1.5rem;
    right: 0;
    top: 50%;
    background: transparent;
    border: 0;
    cursor: pointer;
    transform: translateY(-50%);
}
.signup__dismiss img {
    width: 100%;
    display: block;
}
.fixed.signup {
    position: fixed;
    top: var(--gutter-spacing);
    left: var(--gutter-spacing);
    padding: 0;
    background: var(--color-fixed-form-bg);
    padding: 20px;
    border-radius: calc(var(--corner-rounding) * 4);
    width: 20rem;
    box-shadow: 0 7px 25px -10px var(--color-body-font);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}
.fixed .signup__mobile-header {
    display: block;
}


.features {
    background: var(--color-primary--fade);
    color: var(--color-body-bg);
    padding: 8vh 0;
}
.feature-grid {
    display: grid;
    place-items: center;
    gap: 20px;
}
.feature-grid figure {
    text-align: center;
}
.feature-grid svg {
    display: inline-block;
}
.feature-grid figcaption {
    color: inherit;
    font-size: var(--text-l);
    font-family: var(--heading-font-stack);
    line-height: normal;
    padding: 20px;
}
@media screen and (min-width: 420px) {
    .feature-grid {
        grid-template-columns:repeat(2,1fr)
    }
}
@media screen and (min-width: 1024px) {
    .feature-grid {
        grid-template-columns:repeat(4,1fr)
    }
}


.footer__branding {
    background: var(--color-primary--deep);
}
.footer__branding .content-section {
    display: flex;
    justify-content: space-between;
}
.footer__logo {
    display: block;
    width: 179px;
    height: auto;
}
.footer__nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    text-transform: uppercase;
}
.footer__nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: auto;
    display: flex;
}
.footer__nav ul a {
    text-decoration: none;
    color: var(--color-body-bg);
    font-family: var(--body-font-stack);
    display: block;
    margin: 0 .6em;
    padding: 0;
    cursor: pointer;
    transition: all 10ms ease-in-out 10ms;
}
.footer__nav .signup,
.footer__nav ul a:hover {
    color: var(--color-accent);
}
.footer__nav .button {
    margin-left: .66em;
}
@media screen and (max-width: 850px) {
    .footer__branding .content-section {
        flex-direction: column;
    }
    .footer__logo {
        margin: 0 auto 30px auto;
    }
    .footer__nav,
    .footer__nav ul {
        flex-direction: column;
    }
    .footer__nav ul a {
        text-align: center;
        margin-bottom: 1.8em;
    }
    .footer__nav .button {
        margin: 0;
    }
}


.chat-box-wrap {
    overflow: hidden
}
.chat-box-wrap ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding-left: 0;
}
.chat-box {
    display: none;
    padding: 0;
    flex: 1;
    width: 100%;
    margin: 0;
    padding: 0 0 5px;
    align-items: center;
}
.chat-box-current {
    display: flex
}
.chat-box-wrap.hide-steps ul li:nth-child(7),
.chat-box-wrap.hide-steps ul li:nth-child(6) {
    display: none
}
.chat-box .person {
    display: block;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 1.75rem;
    padding: 0;
    margin: 0 10px 0 0
}
.chat-box__bubble {
    background: var(--color-body-bg);
    width: 100%;
    height: auto;
    margin: 0;
    padding: .4rem .8rem;
    border-radius: calc(var(--corner-rounding) * 2) calc(var(--corner-rounding) * 2) calc(var(--corner-rounding) * 2) 0;
}
.chat-box__bubble p {
    margin: 0;
    font-size: var(--text-xs);
}
.chat-box__bubble p:last-child {
    font-size: 1rem;
    font-style: italic;
    position: relative;
    margin: 0;
    overflow: hidden
}
@media screen and (min-width: 360px) {
    .anim-typewriter {
        white-space: pre;
        animation: typewriter 500ms steps(28) 100ms 1 normal both;
    }
}
@keyframes typewriter {
    from {
        width: 0
    }
    to {
        width: 100%
    }
}
option {
    color: var(--color-primary--shade);
    border: 1px solid #bfbfbf;
    border-radius: 50px
}
.wld-form__fields {
    flex: 1;
    display: flex;
    margin: 0
}
.wld-form__actions {
    display: flex;
    justify-content: space-between
}
.wld-button {
    margin-top: 0;
}
.wld-fieldgroup {
    flex: 1;
    align-self: center;
    display: none
}
.wld-fieldgroup--active {
    display: block
}
.wld-field__input {
    display: flex
}
.wld-field--confirm {
    display: flex;
    flex-wrap: wrap
}
.wld-field--confirm .wld-field__input {
    flex: 0;
    order: 0;
    padding: 0 10px 0 0
}
.wld-field--confirm .wld-field__caption {
    order: 1;
    flex: 1
}
.wld-field:not(.wld-field--confirm) .wld-field__caption {
    display: none
}
.wld-input--checkbox {
    width: 25px!important;
    height: 25px!important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #eee;
    border: 1px solid var(--color-primary--fade);
    border-radius: 4px;
    box-sizing: border-box;
}
.wld-input--checkbox:checked {
    background: url(../img/custom-tick.svg) no-repeat center center #3b99fc;
    background-size: 13px 11px;
    border: 0
}
.wld-field__help,
.wld-field.wld-field--confirm {
    background: var(--color-body-bg);
    font-size: var(--text-xxs);
    line-height: 1.3;
    margin: 0;
    padding: 10px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    width: auto;
    z-index: 9999
}
.wld-form__fields .wld-fieldgroup:nth-of-type(6) .wld-field.wld-field--confirm .wld-field__caption {
    display: block
}
.wld-form__fields .wld-fieldgroup:nth-of-type(6) .wld-field.wld-field--confirm:nth-of-type(1) {
    border-radius: 4px 4px 0 0;
    padding-bottom: 0
}
.wld-form__fields .wld-fieldgroup:nth-of-type(6) .wld-field.wld-field--confirm a {
    color: #3a539b!important;
    text-decoration: none!important
}
.wld-input {
    font: inherit;
    outline: 0;
}
.wld-input::placeholder {
    color: var(--color-primary--fade);
}
.wld-input--text,
.wld-input--select {
    display: block;
    color: var(--color-body-font);
    background: var(--color-body-bg);
    width: 100%;
    padding: 1em 0;
    margin: 0;
    text-indent: 0.8rem;
    line-height: normal;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none
}
.wld-input--select {
    background: url(/assets/img/select-arrow.svg) no-repeat right var(--color-body-bg);
    background-size: 44px 60px;
}
.wld-input--select::-ms-expand {
    display: none
}
.wld-field--date .wld-input--select + .wld-input--select {
	border-left: 1px solid var(--color-primary--fade);
}
@-moz-document url-prefix() {
    .wld-input--select {
        text-indent: 0.4rem !important;
    }
}
.wld-button {
    display: block;
    background: var(--color-primary--deep);
    color: var(--color-body-bg);
    font-size: 1.8rem;
    font-family: inherit;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    padding: .4em;
    border: 0;
    cursor: pointer;
    width: 100%;
    z-index: 9997;
    border-radius: 0 0 calc(var(--corner-rounding) * 2) calc(var(--corner-rounding) * 2);
}
@keyframes hvr-wobble-horizontal {
    16.65% {
        transform: translateX(8px)
    }
    33.3% {
        transform: translateX(-6px)
    }
    49.95% {
        transform: translateX(4px)
    }
    66.6% {
        transform: translateX(-2px)
    }
    83.25% {
        transform: translateX(1px)
    }
    100% {
        transform: translateX(0)
    }
}
.hvr-wobble-horizontal {
    animation: hvr-wobble-horizontal 1s ease-in-out 1;
}
.green-colour {
    background-color: #26c281
}
input::-webkit-input-placeholder {
    color: var(--color-primary--fade);
    opacity: 1
}
input:-moz-placeholder {
    color: var(--color-primary--fade);
    opacity: 1
}
input::-moz-placeholder {
    color: var(--color-primary--fade);
    opacity: 1
}
input:-ms-input-placeholder {
    color: var(--color-primary--fade);
    opacity: 1
}
.wld-error-overlay {
    position: absolute;
    background: #000;
    font-size: var(--text-s);
    font-family: var(--body-font-stack);
    font-weight: 400;
    padding: .5em;
    margin-top: .75em;
    z-index: 9999;
    max-width: 15em;
    box-shadow: 0 3px 5px rgba(0,0,0,.2);
    border-radius: 4px;
    color: var(--color-body-bg);
    z-index: 99999
}
.wld-error-overlay::before {
    content: '';
    width: 1em;
    height: 1em;
    transform: rotate(45deg);
    background: inherit;
    position: absolute;
    top: -.5em
}
@media screen and (max-width: 443px) {
    #signup-dobmonth {
        letter-spacing: -0.5px
    }
    #signup-dobday.wld-input--select,
    #signup-dobmonth.wld-input--select,
    #signup-dobyear.wld-input--select {
        background-size: 24px 40px
    }
}


@media screen and (max-width: 768px) and (orientation: portrait) {
    .hide-for-mobile {
        display: none !important;
    }
}





