

        @font-face {
            font-display: swap;
            font-family: 'Asap';
            font-style: normal;
            font-weight: 400;
            src: url('../fonts/asap-v26-latin-regular.woff2') format('woff2'),
                url('../fonts/asap-v26-latin-regular.woff') format('woff');
        }
    
        @font-face {
            font-display: swap;
            font-family: 'Asap';
            font-style: bold;
            font-weight: 700;
            src: url('../fonts/asap-v26-latin-700.woff2') format('woff2'),
                url('../fonts/asap-v26-latin-700.woff') format('woff');
        }
    


:root {
    --body-font-size: 16px;
    --gutter-spacing: 15px;
    --corner-rounding: 4px;
    --body-font-stack: 'Asap', sans-serif;
    --color-primary: hsl(0, 85%, 55%);
    --color-primary--shade: hsl(0, 27%, 36%);
    --color-primary--deep: hsl(0, 55%, 28%);
    --color-primary--fade: hsl(0, 10%, 62%);
    --color-secondary: hsl(227, 60%, 38%);
    --color-accent: hsl(332, 92%, 55%);
    --color-body-bg: hsl(0, 0%, 100%);
    --color-body-font: hsl(0, 0%, 13%);
    --color-body-font-faded: hsl(0, 0%, 37%);
    --color-heading-font: hsl(0, 24%, 38%);
}
@media screen and (min-width: 420px) {
    :root {
        --body-font-size: 18px;
    }
}
@media screen and (min-width: 1366px) {
    :root {
        --gutter-spacing: 20px;
    }
}

html {
    font-family: var(--body-font-stack);
    scroll-behavior: smooth;
    background: var(--color-body-bg);
}
html,
body {
    margin: 0;
    width: 100%;
    height: 100%;
    position: relative;
}
body {
    font-size: var(--body-font-size);
    line-height: 1.5;
    color: var(--color-body-font);
}
a:link,
a:visited,
a:hover,
a:active {
    color: var(--color-body-bg);
    text-decoration: none;
    outline: 0;
    cursor: pointer;
}
img {
    border: medium none;
}
.stop1 {
    stop-color: var(--color-primary);
}
.stop2 {
    stop-color: var(--color-accent);
}
.toFadeIn {
    opacity: 0;
    transition: opacity .7s ease 0s;
}
.toFadeIn.fadeIn {
    opacity: 1;
}
.btn {
    font-family: var(--body-font-stack);
    font-size: inherit;
    display: inline-flex;
    align-items: center;
    gap: .5em;
    padding: .66em 1em;
    line-height: inherit;
    border-radius: 1.5em;
    border: 0 none;
    text-align: center;
    box-sizing: border-box;
    white-space: nowrap;
}
.btn:not([role=presentation]) {
    cursor: pointer;
}
.btn__icon {
    height: 1em;
    width: auto;
}
#hero {
    background: var(--hero-bg-img) no-repeat center top black;
    background-size: cover;
    width: 100%;
    height: auto;
    margin: 0;
    position: relative;
    overflow: hidden;
}
.hero__header {
    background: linear-gradient(120deg,
        hsla(227, 60%, 38%, .8) 0%,
        hsla(332, 50%, 25%, .8) 100%);
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    position: fixed;
    top: 0;
    z-index: 1;
}

.masthead__logo {
  	width: 130px;
  	height: auto;
  	margin-left: 1rem;
    filter: drop-shadow(2px 4px 1px black);
}
.masthead__navigation {
    list-style: none;
    margin: 0 0 0 40px;
    padding: 0;
    width: auto;
    display: flex;
}
.masthead__navigation li a {
    color: var(--color-body-bg);
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
    text-transform: uppercase;
    position: relative;
    transition: all 10ms ease-in-out 10ms;
}
.masthead__navigation li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
}
.masthead__navigation li a:hover {
    color: var(--color-accent);
}
.masthead__navigation li a:hover::after {
    background: var(--color-accent);
}
.masthead__navigation li a.active {
    color: var(--color-body-bg);
}
.masthead__navigation li a.active::after {
    background: var(--color-body-bg);
}

.masthead__supporting {
    display: flex;
    gap: .5rem;
    align-items: center;
    margin: 0 1rem 0 auto;
    font-size: 0.85rem;
}

.btn.login {
    background: linear-gradient(120deg,
        var(--color-primary) 0%,
        var(--color-accent) 100%);
    text-transform: uppercase;
    transition: background 100ms;
}
.btn.login:hover {
    background: linear-gradient(120deg,
        var(--color-accent) 0%,
        var(--color-accent) 100%);
}

.btn.location-btn {
    background: transparent;
    border: 2px solid var(--color-body-bg);
    color: var(--color-body-bg);
    padding: calc(.66em - 2px) calc(1em - 2px); /* Compensate for additional width of border */
    transition: all 100ms;
}
.btn.location-btn .btn__icon {
    height: 1.4em;
    border-radius: .25rem;
}
.location-btn img:last-child {
    width: .5em;
    transform: rotate(-90deg);
}
.location-btn:hover,
.location-btn.open {
    background: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
}

#locationDialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.6);
    display: none;
    z-index: 1;
    align-items: center;
    justify-content: center;
}
#locationDialog[data-open] {
    display: flex;
}
.location-dialog {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 700px;
    height: 200px;
    box-sizing: border-box;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(3px);
    border-radius: 1rem;
    justify-content: center;
    align-items: center;
    color: var(--color-body-font);
    z-index: 1;
}
#locationDialogClose {
    display: block;
    border: 0 none;
    border-radius: .5em;
    margin: 0;
    padding: .5rem;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    cursor: pointer;
}
#locationDialogClose img {
    display: block;
}
#locationDialogClose:focus {
    outline: 1px solid rgba(238, 41, 40, .3);
}
.location-dialog__title {
    color: var(--color-body-font);
    font-size: 1rem;
    margin: 0 0 2em 0;
    padding: 0;
    line-height: 1;
    text-align: center;
}
.location-dialog__options {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 1rem;
    box-sizing: border-box;
    max-width: 34rem;
}
.location-dialog__options figure {
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: .85rem;
}
.location-dialog__options figcaption {
    margin-top: .5em;
}
.location-dialog__options a {
    position: relative;
    color: var(--color-body-font);
}
.location-dialog__options img {
    transition: filter 150ms;
}
.location-dialog__options a[aria-current='true'] {
    pointer-events: none;
}
.location-dialog__options a[aria-current='true'] img,
.location-dialog__options a:hover img {
    filter: opacity(50%);
}

#hero:before {
    background: rgba(0,0,0,.2);
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
}
.hero__body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1em;
    padding: 1rem;
    box-sizing: border-box;
    filter: drop-shadow(2px 4px 1px black);
}
.hero__body .logo {
    display: block;
    width: 15vw;
    min-width: 10rem;
    height: auto;
}
.hero__body h1 {
    color: var(--color-body-bg);
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 300;
    text-align: center;
    margin: 0;
}
.hero__body .signup .heading-sticky {
    display: none;
    color: var(--color-body-bg);
    font-size: 24px;
    padding: 0 20px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0,0,0,.2);
}

.gutter {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 8vh 1.5rem;
    box-sizing: border-box;
}

#content {
    background: linear-gradient(120deg,
        var(--color-primary) 0%,
        var(--color-accent) 100%);
    text-align: center;
    color: var(--color-body-bg);
}
#content h2 {
    font-size: 1.15rem;
    font-weight: 400;
}
#content .content-logo {
    max-width: 6rem;
    height: auto;
    margin: 0 .5em;
    vertical-align: middle;
}

#how-it-works {
    text-align: center;
}
#how-it-works .smooch-hearts {
    width: 3rem;
    height: auto;
}
#how-it-works h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: normal;
    margin: 0 auto .5em auto;
}
hr {
    background: var(--color-primary--shade);
    width: 6vw;
    height: 2px;
    margin: 2rem auto 3rem;
    border: 0 none;
}
.panel {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2rem;
}
.panel .step {
    display: flex;
}
.step__counter {
    flex: none;
    margin-right: 1rem;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(120deg,
        var(--color-primary) 0%,
        var(--color-accent) 100%);
    border-radius: 1.8rem;
    width: 3.6rem;
    height: 3.6rem;
    color: var(--color-body-bg);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1;
}

.heart-badge {
    background: var(--color-body-bg);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: -0.3rem;
}
.heart-badge img {
    width: 1.5rem;
    height: auto;
}

.panel__feature {
    width: 28rem;
    max-width: 100%;
    margin: 0 auto;
}
.panel__feature-img {
    width: 7.5rem;
    max-width: 100%;
    margin: 0 auto;
    border-radius: .25rem;
    position: relative;
}
.panel__feature-img > img {
    width: 100%;
    height: auto;
    border-radius: .5rem;
}
.panel__feature-heading {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto .2em;
}
.panel__feature-subheading {
    color: var(--color-body-font);
    font-size: 1rem;
    font-weight: 400;
    margin: 0 0 .66em 0;
}
.panel__feature p {
    font-size: .85rem;
    width: 20rem;
    max-width: 100%;
    margin: 1em auto;
}
.panel__feature-btn {
    background: var(--color-secondary);
    color: var(--color-body-bg);
    margin: 0 auto;
}

.panel .step__body {
    text-align: left;
    max-width: 40rem;
}
.panel .step__body h3 {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: normal;
    margin: .6rem 0
}
.panel--1 .panel__feature-img .heart-badge {
    right: -0.3rem;
}

@keyframes hvr-pulse {
    25% {
        transform: scale(1.1);
    }
    75% {
        transform: scale(0.9);
    }
}
.hvr-pulse {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    animation: hvr-pulse 1s linear infinite;
}

#how-it-works .arrow-down {
    display: block;
    width: 3rem;
    height: auto;
    margin: 3.5rem auto;
}

.panel--2 .panel__feature-img {
    width: 18rem;
}
.panel--3 .panel__feature p {
    width: 72%;
}
.convo-bubble {
    margin: 1em auto;
    color: var(--color-body-bg);
    font-size: .85rem;
    padding: .5em 1em;
    width: 10rem;
    box-sizing: border-box;
}
.convo-bubble--sender {
    background: linear-gradient(120deg,
        var(--color-secondary) 0%,
        hsl(332, 50%, 25%) 100%);
    border-radius: 10px 10px 10px 0;
    margin-left: 0 !important;
}
.convo-bubble--recipient {
    background: linear-gradient(120deg,
        var(--color-primary) 0%,
        var(--color-accent) 100%);
    border-radius: 10px 0 10px 10px;
    margin-right: 0 !important;
}
@keyframes blink {
    0% {
        opacity: .7;
    }
    20% {
        opacity: 1;
    }
    100% {
        opacity: .3;
    }
}
.dots {
    text-align: left;
}
.dots span {
    color: #f62459;
    font-size: 58px;
    line-height: 5px;
    letter-spacing: -3px;
    animation: 1.4s infinite both blink;
}
.dots span:nth-child(2) {
    animation-delay: .2s;
}
.dots span:nth-child(3) {
    animation-delay: .4s;
}

.panel--4 .panel__feature-img .heart-badge {
    left: 50%;
    transform: translateX(-50%);
}

#features .heading {
    color: var(--color-body-font);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 1.2em 0;
}
#features .smooch-hearts {
    display: block;
    width: 3rem;
    height: auto;
    margin: 0 auto;
}
.pods {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.pod {
    width: 16rem;
    height: 16rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pod > svg {
    width: 100%;
    height: auto;
    position: absolute;
}
.pod figure {
    position: absolute;
    text-align: center;
    margin: 0;
}
.pod figure svg {
    display: block;
    width: auto;
    height: 4rem;
    margin: 0 auto .75em;
}
.pod figcaption {
    background: linear-gradient(120deg,
        var(--color-secondary) 0%,
        hsl(332, 50%, 25%) 100%);
    padding: .75rem;
    border-radius: 1rem;
    min-height: 6.3rem;
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
    color: var(--color-body-bg);
    font-size: 1.6rem;
    font-weight: 400;
    text-transform: uppercase;
}

#footer {
    background: linear-gradient(120deg,
        var(--color-primary) 0%,
        var(--color-accent) 100%);
}
#footer .gutter {
    padding-top: 3rem;
    padding-bottom: 2rem;
}
.footer__body {
    display: flex;
    justify-content: space-between;
}
.footer__logo {
    width: 138px;
    height: auto;
}
.footer__nav {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1rem;
}
.footer__nav ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
    width: auto;
    display: flex;
}
.footer__nav ul a {
    color: var(--color-body-bg);
    display: block;
    padding: .66em .8em;
    text-transform: uppercase;
}
.footer__nav ul a:hover {
    color: var(--color-body-bg);
}
.btn.scrollup {
    background: linear-gradient(120deg,
        var(--color-secondary) 0%,
        hsl(332, 50%, 25%) 100%);
    transition: all 50ms;
}
.btn.scrollup:hover {
    color: hsl(332, 50%, 85%);
}

p.legal {
    color: var(--color-body-bg);
    font-size: .85rem;
    text-align: center;
    margin-top: 6em;
    margin-bottom: 0;
}

.page-footnote {
    display: block;
    color: var(--color-body-font-faded);
}
.page-footnote .gutter {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.page-footnote p {
    font-size: .75rem;
    text-align: center;
}

.hero__header .masthead {
    height: 66px;
    display: flex;
    justify-content: space-between;
}


.signup {
    display: flex;
    width: 100%;
    max-width: 22rem;
    position: relative;
    flex-direction: column;
    filter: drop-shadow(0 0 50px rgba(255,255,255,.5));
}

.chat-boxes {
    width: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
.chat-boxes .active {
    background-color: #666;
}
.chat-box {
    margin: 0 0 .33rem 0;
    align-items: center;
    flex: 1;
    width: 100%;
    display: none;
}
.chat-box-current {
    display: flex !important;
}
.chat-box .person {
    display: block;
    width: 4.2rem;
    height: 4.2rem;
    margin: 0 .5rem 0 0;
}
.chat-box .bubble {
    background: var(--color-body-bg);
    width: 100%;;
    padding: .85rem;
    border-radius: 10px 10px 10px 0;
    filter: drop-shadow(0 0 10px rgba(0,0,0,.1));
}
.chat-box .bubble p {
    color: var(--color-primary--deep);
    margin: 0;
}
.chat-box .bubble p:first-child {
    color: var(--color-body-font);
}
.anim-typewriter {
    animation: typewriter 500ms steps(28) 100ms 1 normal both;
}
@keyframes typewriter {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
.chat-box .bubble p:last-child {
    position: relative;
    margin: 0;
    white-space: pre;
    overflow: hidden;
}


@media screen and (max-width: 1130px) {
    .panel {
        flex-direction: column;
    }
    .panel .step {
        flex-direction: column;
        margin: 0 0 15px 0;
    }
    .step__counter {
        margin: 0 auto;
    }
    .step .step__body h3,
    .step .step__body p {
        text-align: center;
    }
    .panel--2 .panel__feature {
        order: 2;
    }
    .panel--4 .panel__feature {
        order: 1;
    }
    #features .pods {
        flex-wrap: wrap;
    }
}
@media screen and (max-width: 1100px) {
    .masthead__navigation {
        display: none;
    }
}
@media screen and (max-width: 900px) {
    .location-btn__label {
        display: none !important;
    }
}
@media screen and (max-width: 850px) {
    .footer__body {
        flex-direction: column;
    }
    .footer__logo {
        margin: 0 auto 30px auto;
    }
    .footer__nav {
        flex-direction: column;
    }
    .footer__nav ul {
        flex-direction: column;
    }
    .footer__nav ul a {
        text-align: center;
        padding: 0 0 30px 0;
    }
    a.scrollup {
        margin: 0;
    }
}
@media screen and (max-width: 768px) {
    .location-dialog {
        width: calc(100vw - 2rem);
        height: auto;
        padding: 4.5rem 1rem 1.5rem 1rem;
    }
    #hero {
        background-image: var(--hero-bg-img--mobile);
    }
    #content .content-logo {
        margin: .66em auto;
        display: block;
    }
    #content h2 span {
        display: none;
    }
}

@media screen and (max-width: 340px) {
    .masthead__logo {
        width: 100px;
    }
    .chat-box .bubble {
        font-size: .8rem;
    }
}


#signupForm {
    flex: 1;
}
option {
    color: var(--color-primary--shade);
    border: 1px solid #bfbfbf;
    border-radius: 50px;
}
.wld-form__fields {
    flex: 1;
    display: flex;
    margin: 0;
    position: relative;
}
.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;
}

/* hide <labels> */
.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 #bbb;
    border-radius: 4px;
    box-sizing: border-box;
}
.wld-input--checkbox:checked {
    background: url(/assets/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);
    color: #777;
    font-size: 10px;
    font-family: var(--body-font-stack);
    font-weight: 400;
    line-height: 1.3;
    margin: 0;
    padding: 10px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    width: auto;
    z-index: 1;
}
.wld-form__fields .wld-fieldgroup:nth-of-type(7) .wld-field.wld-field--confirm .wld-field__caption {
    display: block;
}
.wld-form__fields .wld-fieldgroup:nth-of-type(7) .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(7) .wld-field.wld-field--confirm a {
    color: #3a539b!important;
    text-decoration: none!important;
}


.wld-input {
    font: inherit;
}
.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: 10px!important;
    }
}

.wld-button {
    display: block;
    background: linear-gradient(120deg,
        var(--color-primary) 0%,
        var(--color-accent) 100%);
    color: var(--color-body-bg);
    font-size: 1.8rem;
    font-family: inherit;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    padding: .4em;
    border: 0;
    cursor: pointer;
    width: 100%;
    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:-ms-input-placeholder {
    color: var(--color-primary--fade);
    opacity: 1
}

/* ERRORS
------------------------------------------------ */
.wld-error-overlay {
    position: absolute;
    background: #000;
    font-size: 14px;
    font-family: inherit;
    font-weight: 400;
    padding:.5em;
    margin-top: .75em;
    z-index: 1;
    max-width: 15em;
    box-shadow: 0 3px 5px rgba(0,0,0,.2);
    border-radius: 4px;
    color: var(--color-body-bg);
}
.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
    }
}
