/* TODO need to redo this vars to meaning rather than color */
:root {
    --main-background: #C3D153;
    --green: #C3D153;
    --dkgreen: #AFBC4A;
    --orange: #ED7A40;
    --ltblue: #E5F9FF;
    --dkblue: #1097B8;
    --dkrblue: #0b6980;
    --grblue: #446389;
    --ltgrey: #DDDDDD;
    --dkgrey: #5D6662;
    --vdkgrey: #231F20;

}

#html-body {
    font-family: "Source Sans Pro", sans-serif;
    color: var(--vdkgrey);
    font-size: 1.2rem;
}

html {
    scroll-behavior: smooth;
}

html [id], body [id] {
    scroll-margin-top: 20px !important;
}

header {
    background-color: var(--main-background);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Montserrat", sans-serif;
    color: inherit;
}

.notwhite h2 {
    color: #ffffff !important;
}

h2 {
    font-size: 30px;
    font-weight: 600;
}

article h2 {
    font-weight: normal;
}

em {
    color: inherit;
}

/*ul.ticklist {
    list-style-image: url('/site/templates/styles/images/tick.svg');
}
ul.ticklist li {
    padding-left: 10px;
}*/

/* hacky way to do it, but using list-style-image (above) doesn't let us vertically align the text with the custom bullet */
ul.ticklist li {
    background: url(/site/templates/styles/images/tick.svg) no-repeat left top;
    padding-left: 45px;
    list-style: none;
}

.ticklist_title {
    font-family: Montserrat;
    font-weight: 600;
    color:var(--vdkgrey);
    font-size: 1.5rem;
}


.tick_bullets {
    margin-left: 0px;
    padding-left: 0px;
}

ul.tick_bullets li {
    background: url(/site/templates/styles/images/tick.svg) no-repeat left top;
    background-size: 25px 25px;
    padding-left: 35px;
    margin-bottom: 20px;
    list-style: none;
}



blockquote {
    font-size: 18px;
    font-style: italic;
    margin: 0.25em 0;
    padding: 0.35em 40px;
    line-height: 1.45;
    position: relative;
    color: #383838;
}

blockquote:before {
    display: block;
    padding-left: 10px;
    content: "\201C";
    font-size: 80px;
    position: absolute;
    left: -20px;
    top: -20px;
    color: var(--green);
}

blockquote.notwhite:before {
    color: #ffffff;
}

.cta {
    color: #ffffff;
    /*font-weight: 600;*/
    font-size: 1.6rem;
    width: 175px;
}

.site-accent-background {
    background: var(--green);
}

/* Prevent accordion FOUC — UIkit JS hides panels, but CSS has no default rule */
.uk-accordion-content { display: none; }
.uk-open > .uk-accordion-content { display: block; }

/* Prevent grid vertical-gap FOUC — UIkit JS adds .uk-grid-margin to wrapped rows,
   but before JS loads there is no vertical spacing. This fallback applies row-gap
   only while no child has .uk-grid-margin yet; once UIkit JS processes the grid
   and adds that class to any child, :has() stops matching and row-gap drops to 0. */
.uk-grid:not(:has(> .uk-grid-margin)) { row-gap: 15px; }
.uk-grid.uk-grid-large:not(:has(> .uk-grid-margin)) { row-gap: 40px; }
@media (min-width: 1200px) {
    .uk-grid.uk-grid-large:not(:has(> .uk-grid-margin)) { row-gap: 70px; }
}

.uk-slidenav {
    color: #FFFFFF;
}

.uk-dotnav>*>* {
    background-color: #5D6662;
}

.uk-dotnav>.uk-active>* {
    background-color: #FFFFFF;
}


.uk-navbar-nav {
    display: flex;
    align-items: center; /* vertically centers items in the navbar */
    margin: 0;           /* remove the fixed 30px */
}

.uk-navbar-nav>li>a {
    height: inherit; /* bit of a hack to fix the height of the YOUR STORY button even though the SIGN UP was working fine */
}

.uk-navbar-item,
.uk-navbar-nav > li > a,
.uk-navbar-toggle {
    font-family: "Montserrat", sans-serif;
    min-height: 40px;
    padding: 0 13px;
}

li.nav-button a {
    color: #fff !important;
    font-size: 17px !important;
}

#masthead-logo img {
    width: 100px;
}

#edit-page {
    /* the edit page link that appears when page is editable */
    position: absolute;
    top: 10px;
    right: 10px;
}

.uk-offcanvas-bar {
    background-color: var(--dkblue);
}

.uk-nav-default {
    font-size: 1rem;
}
.uk-nav-default>li>a {
    color: #FFFFFF !important;
}

#offcanvas-toggle {
    position: absolute;
    top: 10px;
    left: 15px;
}

#offcanvas-nav .uk-search-input {
    width: 100%;
}

img.uk-comment-avatar {
    width: 60px;
    height: 60px;
}

/****************************************************************
 * Bodycopy text and images
 *
 */

.uk-link,
a,
a:hover {
    color: var(--dkblue);
    text-decoration: none !important;
    cursor: pointer;
}

a.grey_link_color {
    color: #5e5e5e;
}

.align_left {
    /* for images placed in rich text editor */
    float: left;
    margin: 0 1em 0.5em 0;
    position: relative;
    top: 0.5em;
    /*max-width: 50%;*/
}

.align_right {
    /* for images placed in rich text editor */
    float: right;
    margin: 0 0 0.5em 1em;
    /*max-width: 50%;*/
}

.align_center {
    /* for images placed in rich text editor */
    display: block;
    margin: 1em auto;
    position: relative;
    top: 0.5em;
}


figure {
    display: table;
    padding: 5px;
    font-size: smaller;
    line-height: 1.4em;
    margin: 0;
 }

 figure img {
    display: block;
    max-width: 100%;
    margin-bottom: 10px;
 }

 figcaption {
    display: table-caption;
    caption-side: bottom;
    padding: 0 5px 5px;
    color: var(--dkgrey);
    text-align: center;
 }


.image-container {
	background-image: linear-gradient(45deg, var(--ltgrey) 25%, transparent 25%), linear-gradient(-45deg, var(--ltgrey) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, var(--ltgrey) 75%), linear-gradient(-45deg, transparent 75%, var(--ltgrey) 75%);
	background-size: 20px 20px;
	background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.image-container-thumb {
    padding: 0;
}

.img-overlay-wrap {
	position: relative;
	display: inline-block; /* <= shrinks container to image size */
	transition: transform 150ms ease-in-out;
}

.img-overlay-wrap img { /* <= optional, for responsiveness */
	/*display: block;*/
	max-width: 100%;
	height: auto;
}

.img-overlay-wrap svg {
	position: absolute;
	top: 10px;
	left: 10px;
}



/*********************************************************************
 * Media queries for responsive layout
 *
 */

@media only screen and (max-width: 767px) {
    /* mobile layout */

    .align_left,
    .align_right,
    .align_center {
        display: table;
        float: none;
        margin: 1em auto;
        max-width: 100%;
    }
}

/*@media only screen and (max-width: 959px) {
    #masthead {
        padding-bottom: 20px;
    }
}*/

/* push footer to the bottom if main too short */
body {
    display: flex;
    min-height: 100vh;
    height: 100%;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

/********

*/

.uk-navbar-nav {
    gap: 5px;
}

.uk-navbar-item,
.uk-navbar-nav > li > a,
.uk-navbar-toggle {
    font-size: 1.1rem;
}

.uk-navbar-dropdown {
    top: 80px;
    width: auto;
    padding: 0;
    background-color: var(--green);
    box-shadow: 0 3px 10px rgba(0,0,0,.25);
}

.uk-navbar-dropdown-nav>li {
    padding: 0 10px;
    margin: 0;
}

.uk-navbar-dropdown-nav>li>a {
    color: var(--vdkgrey);
    font-size: 17px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    white-space: nowrap;
}

.uk-navbar-dropdown-nav>li>a:hover {
    color: var(--vdkgrey) !important;
    text-decoration: underline !important;
}

[class*=uk-navbar-dropdown-bottom] {
    margin-top: 1px;
}

.Inputfield_mygccb {
    position: absolute;
    left: -9999px;
}

.Inputfield_group_subscription_id {
    position: absolute;
    left: -9999px;
}

.InputfieldCheckboxesStacked li {
    list-style: none;
}

.InputfieldCheckboxesStacked li label input {
    margin-right: 5px;
}

li.Inputfield {
    list-style-type: none;
}

.uk-form-label {
    font-size: 16px !important;
    color: #666666 !important;
}

ul.InputfieldCheckboxesStacked {
    padding-left: 0 !important;
}

.phone_col {
    float: left;
    margin-right: 15px;
}


.uk-card .uk-button {
    border-radius: 20px;
    margin-top: 10px;
    width: 100%;
}

.uk-card .uk-padding-small {
    padding: 10px;
}


.uk-button,
.uk-button-primary {
    background-color: var(--green);
    font-family: Montserrat;
    font-size: 1.4rem;
    border: 1px solid transparent;
    text-decoration: none !important;
    text-transform: none;
}

.uk-button-primary {
    color: var(--vdkgrey);
}

.uk-button:hover,
.uk-button-primary:hover {
    background-color: var(--dkgreen);
    color: var(--vdkgrey);
}

.uk-button.uk-active {
    cursor: default;
}

.uk-button-secondary.uk-active, .uk-button-secondary:active {
    background-color: var(--vdkgrey);
    color: #FFFFFF;
}

.uk-button-secondary {
    background-color: var(--dkblue);
    color: #FFFFFF;
}

.uk-button-secondary:hover {
    background-color: var(--dkrblue);
    color: #FFFFFF;
}

.uk-button-fullwidth {
    font-weight: 400;
    font-size: 18px;
    width: 100%;
    line-height: 1.75;
    padding: 5px 10px;
}

.uk-button-grey {
    background-color: var(--ltgrey);
}

.uk-button-green {
    background-color: var(--green);
}

.uk-button-small {
    font-size: 0.8rem !important;
}

.uk-button-text {
    padding: 0 3px 0 3px;
}

/* form styling */

.clear {
    clear: both;
}

input {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-weight: inherit;
    font-style: inherit;
    font-size: 100%;
    font-family: inherit;
    vertical-align: baseline;
}

.form-grey {
    color: #A3A3A3;
}

/*a:not(.button) {
    color: #3d3d3d;
    text-decoration: none;
}*/

.questions {
    display: block;
    margin: 0 auto;
    /*max-width: 800px;*/
}

#typeform {
    position: relative;
    font-family: "Source Sans Pro", sans-serif;
    z-index: 3;
}

#typeform .form {
    position: relative;
    z-index: 5;
}

#typeform .form .questions {
    position: relative;
    font-family: "Source Sans Pro", sans-serif;
    padding: 0;
}

@media only screen and (min-width: 800px) {
    #typeform .form .questions {
        padding: 0;
    }
}

#typeform .form .questions > li {
    position: relative;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -khtml-opacity: 0.4;
    -moz-opacity: 0.4;
    opacity: 0.4;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
    display: none;
}

#typeform .form .questions > li .wrapper {
    padding: 15px 20px 15px 0;
}

#typeform .form .questions > li.active {
    display: block;
}

#typeform .form .questions > li.visible .content {
    display: block;
}

#typeform .form .questions > li.focus {
    cursor: default;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

#typeform .form .questions > li .content {
    display: none;
    position: relative;
    padding: 0;
}

.question,
.selected-tag {
    color: #3d3d3d;
    font-family: "Source Sans Pro", sans-serif;
    position: relative;
    padding: 0;
    cursor: default;
    padding-left: 0;
    line-height: 140%;
    text-align: left;
    font-size: 22px;
    -webkit-touch-callout: text;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

@media (max-width: 800px) {
    .question,
    .selected-tag {
        font-size: 22px;
    }
}

@media (max-width: 550px), (max-height: 450px) {
    .question,
    .selected-tag {
        font-size: 20px;
    }
}

.focus .message {
    visibility: visible;
}

#typeform ::-webkit-input-placeholder {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 22px;
    color: #cccccc;
}

#typeform :-moz-placeholder {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 22px;
    color: #cccccc;
}

#typeform ::-moz-placeholder {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 22px;
    color: #cccccc;
}

#typeform :-ms-input-placeholder {
    font-family: "Source Sans Pro", sans-serif;
    font-size: 22px;
    color: var(--green);
}

input:-webkit-autofill {
    background-color: white !important;
    color: var(--dkgrey) !important;
    box-shadow: 0 0 0px 1000px #FFF inset !important; /* Ensure background color fills the field */
    -webkit-text-fill-color: var(--dkgrey) !important;
}

input:-webkit-autofill:focus {
    background-color: white !important;
    -webkit-text-fill-color: var(--dkgrey) !important;
}

input::placeholder {
    color: var(--ltgrey) !important;
}

/*@media (max-width: 800px) {
    ::-webkit-input-placeholder {
        font-size: 22px;
    }

    #typeform :-moz-placeholder {
        font-size: 22px;
    }

    #typeform ::-moz-placeholder {
        font-size: 22px;
    }

    #typeform :-ms-input-placeholder {
        font-size: 22px;
    }
}*/

/*
@media (max-width:550px),
(max-height:450px) {
#typeform ::-webkit-input-placeholder {
    font-size: 20px;
}

#typeform :-moz-placeholder {
    font-size: 20px;
}

#typeform ::-moz-placeholder {
    font-size: 20px;
}

#typeform :-ms-input-placeholder {
    font-size: 20px;
}
}
*/

.v-select.disabled {
    background-color: white !important;
}

.v-select.unsearchable input[type="search"] {
    max-width: none;
    opacity: 1 !important;
}

.v-select input[type="search"],
.v-select input[type="search"]:focus {
    font-size: 28px !important;
}

#typeform input,
#typeform .v-select .selected-tag {
    display: block;
    color: var(--green);
    /*width: 100%;*/
    resize: none;
    /*background: none;*/ /* was breaking date selectin on iOS*/
    background-color: #ffffff;
    outline: none;
    font-family: "Source Sans Pro", sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 22px;
    padding-left: 0px;
    margin: 0 !important;
    border: none;
    font-weight: bold;
}

.iti__search-input {
    padding-left: 30px !important;
}

@media (max-width: 800px) {
    input,
    .v-select .selected-tag,
    .telPlus {
        font-size: 22px;
        line-height: 35px;
    }
}

@media (max-width: 550px), (max-height: 450px) {
    input,
    .v-select .selected-tag,
    .telPlus {
        font-size: 20px;
        line-height: 30px;
    }
}

input::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input {
    /*border-bottom: 1px solid transparent*/
}

.ready input {
    border-color: var(--green);
    -moz-transition: border 0ms linear 600ms, border-radius 0ms linear 600ms;
    -webkit-transition: border 0ms linear 600ms, border-radius 0ms linear 600ms;
    -o-transition: border 0ms linear 600ms, border-radius 0ms linear 600ms;
    transition: border 0ms linear 600ms, border-radius 0ms linear 600ms;
}

.ready input:focus {
    border-color: transparent;
}

.message {
    position: relative;
    display: inline-block;
    display: none;
    z-index: 3;
    padding: 5px 8px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    background-color: #990000;
    margin-top: 20px;
}

.message span {
    font-family: Helvetica, Arial;
    color: #fff;
    font-size: 13px;
}

.message div {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #990000;
    position: absolute;
    top: -5px;
    left: 10px;
}

#typeform
    .form
    .questions
    > li.connected:not(.number, .textarea, .email, .textfield, .card-number, .card-expiry, .card-cvc)
    .wrapper {
    padding-top: 0;
}

#typeform
    .form
    .questions
    > li.connected:not(.number, .textarea, .email, .textfield, .card-number, .card-expiry, .card-cvc)
    .message {
    margin-top: 0;
}

.v-select {
    opacity: 1 !important;
}

.v-select.disabled .dropdown-toggle,
.v-select.disabled .dropdown-toggle .clear,
.v-select.disabled .open-indicator,
.v-select.disabled .selected-tag .close {
    background-color: white !important;
}

.v-select .dropdown-toggle {
    border: none !important;
}

/* Ensure the outer container grows with content */
.v-select,
.v-select .dropdown {
    display: block;
    height: auto !important;
}

/* Let the toggle expand with wrapped tags */
.v-select .dropdown-toggle {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    height: auto !important;
    min-height: 2.4em;
    width: 100%;
    box-sizing: border-box;
}

/* Force selected tags to wrap properly */
.v-select .vs__selected-options {
    display: flex;
    flex-wrap: wrap;
    flex: 1 1 auto;
    align-content: flex-start;
    overflow: visible !important;  /* Prevent cutting off tags */
}

/* Prevent outer div (.select) from clipping growing dropdown */
.select {
    overflow: visible !important;
}


.v-select .selected-tag {
    font-family: "Source Sans Pro", sans-serif !important;
    color: var(--green) !important;
}

.telPlus {
    font-family: "Source Sans Pro", sans-serif !important;
    font-size: 28px !important;
    color: var(--green) !important;
    display: inline-block !important;
}

.tel {
    display: inline-block !important;
}
.country {
    width: 60px;
}
.area_code {
    width: 90px;
}
.number {
    width: 160px;
}

.dropdown .dropdown-menu li .tick {
    position: absolute;
    right: 5px;
    top: 20px;
}

.v-select .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.26) !important;
}

.dropdown .dropdown-menu li a {
    padding: 3px 6px;
    margin: 0px;
    display: block;
    text-decoration: none;
    cursor: pointer;
    z-index: 10;
    position: relative;
    -webkit-font-smoothing: antialiased;
    border: none;
    color: var(--green);
}

.dropdown .dropdown-menu li .aux {
    background-color: rgba(255, 255, 255, 0.8);
}

.dropdown .dropdown-menu li .aux .overlay {
    display: none;
}

.dropdown .dropdown-menu li.active .aux .overlay {
    display: block;
}

.question span {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.Inputfield_profile_phone,
.Inputfield_register_phone {
    width: 100% !important;
}

.InputfieldFieldset {
    border: none;
    margin: 0;
    padding: 0;
}

.InputfieldHeaderHidden {
    padding: 0 !important;
}

.label-hidden .InputfieldHeader {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.InputfieldHeader, .InputfieldRadios ul li label {
    font-size: 1.1rem;
    color: var(--dkgrey);
}

.InputfieldColumnWidth {
    /* columns that are not 100% width */
    float: left;
    clear: none;
}
.InputfieldColumnWidthFirst {
    /* first column in a row of Inputfield columns */
    clear: both;
}
.InputfieldColumnWidth:not(.InputfieldColumnWidthFirst) {
    /* any column except first, in a row of Inputfield columns */
    margin-left: 1%;
}

.uk-navbar-nav li.uk-active > a,
.uk-nav li.uk-active > a {
    color: var(--vdkgrey);
}

.uk-navbar-nav > li > a {
    font-size: 17px;
    font-weight: 400;
    color: var(--vdkgrey);
}

/* Apply underline only to links whose parent li does NOT have button classes */
.uk-navbar-nav li.uk-active:not(.nav-button):not([class*="uk-button"]) > a,
.uk-nav li.uk-active:not(.nav-button):not([class*="uk-button"]) > a {
    text-decoration: underline !important;
}

.uk-navbar-nav > li:not(.nav-button) > a:hover,
.uk-navbar-nav > li:not(.nav-button):hover > a {
    color: var(--vdkgrey);
    text-decoration: underline !important;
}

.uk-nav-sub a {
    color: #FFFFFF !important;
}

.uk-section-secondary {
    background: var(--main-background);
}

.uk-input, .uk-select, .uk-textarea {
    font-size: 1rem;
    padding: 4px 8px;
    height: auto;
}

.uk-text-muted {
    color: #666 !important;
}

.headline {
    font-weight: bold;
}

.textblockhighlight {
    color: var(--green);
}

.text-overlay {
    width: 75%;
}

.text-overlay h1 {
    color: #ffffff;
    font-size: 3.5rem;
    text-shadow: 0 2px 0 #5e5e5e;
}

li.topic-control {
    margin: 3px 1px;
    padding: 0;
}

li.topic-control a {
    color: #FFFFFF;
    display: block;
    margin: 0 5px;
}

@media (max-width: 800px) {
    .text-overlay h1 {
        font-size: 3rem;
    }
}

@media (max-width: 550px) {
    .text-overlay h1 {
        font-size: 2rem;
    }
}

@media (max-width: 400px) {
    .text-overlay h1 {
        font-size: 1.4rem;
    }
    .login-button {
        margin-bottom: 10px;
    }
}

i.arrow {
    border: solid var(--green);
    border-width: 0 4px 4px 0;
    display: inline-block;
    padding: 15px;
}

.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

img[data-sizes="auto"] {
    display: block;
    width: 100%;
}

.uk-heading-medium {
    font-size: 3.5rem;
}

.uk-table {
    border-spacing: 10px;
    border-collapse: separate;
    font-size: 1.1rem;
}

.uk-table th {
    background-color: var(--dkblue);
    color: #FFFFFF;
    font-size: 1.2rem;
    text-transform: none;
    text-align: center;
}

.uk-table th a {
    color: #FFFFFF;
    text-decoration: underline !important;
}

.uk-table td {
    border-spacing: 5px;
    margin: 3px;
    background-color: #FFFFFF;
    color: var(--vdkgrey);
    text-align: left;
}

.uk-textarea {
    height: 250px;
}

.text-danger {
    font-size: 1rem;
    color: var(--green);
}

.enter-text {
    display: inline-block;
    padding-top: 5px;
}

.styled-select {
    background: none;
    color: var(--green);
    font-family: "Source Sans Pro", sans-serif;
    height: 35px;
    width: 100%;
    opacity: 0.8;
    border: none;
}

.styled-select-bare-day, .styled-select-bare-month, .styled-select-bare-year {
    background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat 100% 50%;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.person_type {
    display: block;
    margin-top: 50px;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 600;
    padding: 10px 15px;
    /*height: 30px;*/
    background: #4d4d46;
    color: #ffffff;
    border-radius: 5px;
}

.supporters_header {
    display: block;
    margin-top: 50px;
    font-family: "Source Sans Pro", sans-serif;
    font-weight: 600;
    padding: 10px 15px;
    height: 30px;
    background: #4d4d46;
    color: #ffffff;
    border-radius: 5px;
}

input[type="date"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    display: none;
}

.LoginRegisterLinksLogout {
    list-style: none;
}

#wrap_register_coupon {
    padding-bottom: 5px !important;
}

#wrap_coupon_apply_button {
    padding-bottom: 0 !important;
}

/* branded coupon hero */
.coupon-container {
    position: relative;
    width: 100%;
}

.coupon-container img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    min-height: 25vh;
    object-fit: cover;
    display: block;
}

.coupon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    padding: clamp(0.75rem, 3vw, 3rem) clamp(1rem, 4vw, 3.5rem);
    width: 75%;
    box-sizing: border-box;
    margin-top: 5%;
    margin-left: 5%;
    opacity: 0;
    transition: opacity 0.75s ease-in;
}

.coupon-overlay-text {
    margin: 0;
    font-family: Montserrat;
    font-size: clamp(1rem, 2.75vw, 3.25rem);
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    overflow-wrap: anywhere;
}

.coupon-container.image-loaded .coupon-overlay {
    opacity: 1;
}

@media (min-width: 960px) {
    .coupon-overlay {
        width: 50%;
    }
}

[v-cloak] {
    display: none;
}

.Inputfield:not(.InputfieldSubmit) {
    background: none !important;
    border: none !important;
}

ul.LoginRegisterLinks {
    list-style: none;
    padding-left: 0;
}

.Inputfield {
    padding: 0 0 15px 0 !important;
}

#testimonial-form .Inputfields {
    padding-left: 0;
}

#story_submit {
    position: fixed !important;
    left: 0;
    bottom: 0 !important;
    width: 100%;
    background-color: var(--dkblue);
    color: white;
    text-align: center;
    z-index: 9999;
    height: 80px;
    font-size: x-large;
}

span#save_story_btn {
    padding: 8px 40px;
    background: var(--dkblue);
    font-weight: 600;
    border-radius: 0.4em;
}

.emptydate {
    color: #ccc !important;
    width: 250px !important;
}

@media only screen and (max-width: 959px) {
    #tracyUserBar {
        left: 50px !important;
    }
}

.v-select.dropdown {
    width: 100%;
}
.v-select .selected-tag {
    position: relative;
    float: left;
}
.v-select input.form-control {
    width: 100%;
}

.v-select .selected-tag .close {
    margin-right: 15px;
    font-size: 0.9em !important;
    appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    font-weight: 700;
    line-height: 1;
}

.requiredCheck {
    color: #cc0000;
}

/* modal */
.modal-mask {
    position: fixed;
    z-index: 9998;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: table;
    transition: opacity 0.3s ease;
}

.modal-wrapper {
    display: table-cell;
    vertical-align: middle;
}

.modal-container {
    width: 300px;
    margin: 0px auto;
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
    transition: all 0.3s ease;
    font-family: Helvetica, Arial, sans-serif;
}

.modal-header h3 {
    margin-top: 0;
    color: #b9d332;
}

.modal-body {
    margin: 20px 0;
}

.modal-default-button {
    background-color: var(--green);
    color: #ffffff;
    font-weight: bold;
    font-size: 1em;
    margin: 0 auto;
    padding: 10px;
    border: none;
    text-align: center;
    cursor: pointer;
}
.modal-button-secondary {
    background-color: #666;
    cursor: pointer;
}
/*
* The following styles are auto-applied to elements with
* transition="modal" when their visibility is toggled
* by Vue.js.
*
* You can easily play with the modal transition by editing
* these styles.
*/

.modal-enter {
    opacity: 0;
}

.modal-leave-active {
    opacity: 0;
}

.modal-enter .modal-container,
.modal-leave-active .modal-container {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.9s ease-in;
}

.fade-enter,
.fade-leave-active,
.fade-leave-to {
    opacity: 0;
}

.phone {
    width: 250px !important;
}

#typeform .phone {
    padding-left: 50px !important;
}

.uk-form-width-large {
    max-width: 300px !important;
}

#contact-form ul {
    padding-left: 0 !important;
}

.pwcmb-widget {
    background: #ffffff;
    border: 1px solid #555354;
}

.pwcmb-widget button {
    background-color: #b8d332;
    border: none;
    display: inline-block;
    cursor: pointer;
    color: #ffffff;
    font-size: 17px;
    padding: 16px 31px;
    text-decoration: none;
}

.pwcmb-widget button:hover {
    background-color: #555354;
}

.uk-article-meta {
    font-size: 1rem;
}



.textblockhighlightorange {
    color: var(--orange);
}

.textblockhighlightblue {
    color: var(--dkblue);
}

.videoquote:before {
    display: block;
    padding: 10px 0 0 10px;
    content: "\201C";
    font-size: 80px;
    position: absolute;
    left: 0px;
    top: -20px;
}

blockquote footer {
    font-size: 1rem;
}

.uk-margin-xxlarge-right {
    margin-right: 90px !important;
}

@media (min-width: 640px) {
    .uk-padding-right\@s {
        padding-right: 40px !important;
    }
    .uk-padding-left\@s {
        padding-left: 40px !important;
    }

    .uk-margin-remove-bottom\@s {
        margin-bottom: 0 !important;
    }

}


@media (min-width: 960px) {
    .uk-padding-remove\@m {
        padding: 0px !important;
    }
    .uk-padding-top\@m {
        padding-top: 40px !important;
    }
    .uk-padding-large-top\@m {
        padding-top: 40px !important;
    }
    .uk-padding-right\@m {
        padding-right: 40px !important;
    }
    .uk-padding-left\@m {
        padding-left: 40px !important;
    }
    .uk-margin-large-right\@m {
        margin-right: 50px !important;
    }

    .uk-margin-remove-top\@m {
        margin-top: 0 !important;
    }

    .uk-margin-remove-bottom\@m {
        margin-bottom: 0 !important;
    }
}

.uk-height-xlarge {
    height: 550px;
}

@media (min-width: 1920px) {
    .uk-height-xlarge {
        height: 950px;
    }
}

.uk-cover {
    max-width: none;
    position: absolute;
    left: initial;
    top: initial;
    transform: initial;
    right: 0;
}

@media only screen and (max-width: 767px) {
    .uk-cover {
        right: -130px;
    }
}

.uk-alert-warning,
.LoginRegisterError {
    background-color: var(--orange) !important;
    color: #ffffff !important;
    border: none !important;
    padding: 3px 10px !important;
    font-weight: normal !important;
}

.uk-alert-success {
    background-color: var(--green);
    color: #ffffff;
}

.uk-alert-warning a,
.uk-alert-success a,
.LoginRegisterError a {
    color: #FFFFFF;
    text-decoration: underline !important;
}

.subscribe-form {
    padding-top: 50px;
}

.subscribe-form p {
    font-size: 1.3rem;
    font-family: "Montserrat", sans-serif;
}

/* Plan card selector */
.plan-cards {
    display: flex;
    gap: 12px;
}

.plan-card-label {
    flex: 1;
    cursor: pointer;
}

.plan-card-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.plan-card {
    position: relative;
    border: 2px solid var(--ltgrey);
    border-radius: 10px;
    padding: 14px 12px;
    text-align: center;
    background: #fff;
    transition: border-color 0.2s, background 0.2s;
}

.plan-card-label input[type="radio"]:checked + .plan-card {
    border-color: var(--dkblue);
    background: rgba(16, 151, 184, 0.06);
}

.plan-card-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dkgrey);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.plan-card-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vdkgrey);
}

.plan-card-period {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--dkgrey);
}

.plan-card-original {
    font-size: 0.85em;
    font-weight: 400;
    color: var(--dkgrey);
    margin-right: 4px;
}

.plan-card-badge {
    position: absolute;
    top: -10px;
    right: -6px;
    background: var(--dkblue);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

@media (max-width: 400px) {
    .plan-cards {
        flex-direction: column;
    }
}

/* Support need card selector */
.sn-card-label {
    display: block;
    cursor: pointer;
}

.sn-card-label input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.sn-card-label .sn-card {
    background: #fff;
    transition: border-color 0.2s, background 0.2s;
}

.sn-card-label input[type="radio"]:checked + .sn-card {
    border-color: var(--dkblue) !important;
    background: rgba(16, 151, 184, 0.06) !important;
}

.support-needs-grid {
    display: flex;
    gap: 0 15px;
}

.support-needs-grid > div {
    flex: 1;
}

@media (max-width: 959px) {
    .support-needs-grid {
        flex-direction: column;
        gap: 0;
    }
}

.uk-breadcrumb {
    display: inline-block;
    padding: 0 0 15px 0;
    list-style: none;
}

.uk-breadcrumb li {
    display: inline;
}

.uk-breadcrumb > :nth-child(n + 2):not(.uk-first-column)::before {
    content: "|";
    display: inline;
    margin: 0 10px;
}

.uk-breadcrumb > * > * {
    display: inline;
    font-size: 1rem;
    color: #999;
}

#CommentForm {
    display: none;
}

#newsletter-subscribe-form ul {
    padding-left: 0 !important;
}

#newsletter-subscribe-form .InputfieldContent {
    display: inline !important;
}

#newsletter-subscribe-form .Inputfield {
    display: inline;
}

aside.invite_panel {
    border: 2px solid var(--green);
    border-radius: 0.5em;
}

aside.invite_panel button,
aside.invite_panel a {
    font-weight: bold;
}

aside.development {
    border-radius: 1em;
    padding: 1em;
    border: 2px solid var(--green);
}
aside.development details summary {
    font-weight: 600;
}

aside.development ul li,
aside.development ul {
    padding-left: 0;
}

a.inv_a {
    font-size: 1.2rem;
    border-bottom: 4px solid transparent;
}

strong.email_highlight {
    padding: 0.25rem 1rem;
    background-color: #fde0b0;
    border-radius: 10px;
    color: #333;
}

.vs-notify.alert .ntf {
    background: #333;
    color: white;
    border: 2px solid var(--green);
    border-radius: 0.6em;
    box-shadow: 0 0 9px 0 rgba(55, 55, 55, 0.7);
    font-size: x-large;
    margin: 1em;
    padding: 0.75em;
    min-height: 3.25em;
}
.vs-notify.alert .cnt {
    padding: 12px;
}
.vs-notify.alert h4 {
    font-weight: 600;
}

.v-select.searching span.selected-tag {
    color: transparent !important;
}

.privacywire-buttons button.allow-all {
    background-color: var(--green);
    color: #fff;
}

.InputfieldCheckbox.InputfieldStateRequired
    > .InputfieldContent
    > label
    > span.pw-no-select::after {
    content: "" !important;
}

/* Example Texts */
li.example_text_title {
    list-style-type: none;
    flex: inherit;
    padding-bottom: 10px;
    margin: 0;
}
li.example_text_title a {
    font-family: Montserrat !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: none !important;
}

.example_text {
    font-family: Montserrat !important;
    font-weight: 100 !important;
    font-size: 16px !important
}


/* Speech Bubbles */
.speech-bubble {
	position: relative;
    display: inline-block;
	background: #FFFFFF;
	border-radius: .4em;
    padding: 30px 30px 10px 30px;
    margin: 1em 0;
    color: var(--vdkgrey);
    font-weight: bold;
    font-size: 200%;
}

.speech-bubble h3 {
    font-size: 26px;
}

.speech-bubble-left {
    background-color: #FFFFFF;
}

.speech-bubble-left-blue {
    background-color: var(--ltblue);
}

.speech-bubble-right {
    background-color: var(--ltblue);
}

.speech-bubble:after {
	content: '';
	position: absolute;
	top: 75%;
	width: 0;
	height: 0;
	border: 25px solid transparent;
	border-bottom: 0;
	margin-top: -12.5px;
}

.speech-bubble-left:after {
	left: 0;
    border-right-color: #FFFFFF;
	border-left: 0;
    margin-left: -25px;
}

.speech-bubble-left-blue:after {
	left: 0;
    border-right-color:  var(--ltblue);
	border-left: 0;
    margin-left: -25px;
}

.speech-bubble-right:after {
	right: 0;
    border-left-color: var(--ltblue);
	border-right: 0;
    margin-right: -25px;
}

.cartoon_text_overlay {
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 50px 40px 50px 60px;
    font-family: "Nanum Pen Script";
    font-size: 26px;
    color: var(--vdkgrey);
    line-height: 1
}

/* Fixed the ugly UIKIT RSS icon in the footer */
.uk-icon[uk-icon*="icon: rss"] svg path {
    stroke-width: 3.5;
    stroke-linecap: round;
}
.uk-icon[uk-icon*="icon: rss"] svg {
    transform: scale(0.85);
}
.uk-icon[uk-icon*="icon: rss"] svg circle {
    transform: scale(1.2);
    transform-origin: 0% 100%; /* Scale from the bottom-left corner */
}

.social_icon {
    display: inline-block;
    background-color: #FFFFFF;
    padding: 5px;
    margin-right: 5px;
}

.social_icon > a {
    color: var(--green) !important;
}

.media_icon > svg,
.media_icon path {
    margin: 0 20px 10px 0;
    height: 30px;
    width: auto;
    fill: var(--dkgrey) !important;
    stroke: none !important;
}

.icon-responsive-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Align items vertically */
    gap: 25px 35px; /* Space between items */
}

.media_icon_grey {
    display: inline-flex; /* Allows alignment inside each logo's container */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    margin: 0;
    padding: 0;
}

.media_icon_grey path,
.media_icon_grey rect,
.media_icon_grey circle {
    fill: var(--dkgrey) !important;
    stroke: none !important;
}

@media (max-width: 768px) {
    .media_icon_grey {
        transform: scale(0.85);
        transform-origin: top left;
    }
    .icon-responsive-grid {
        gap: 20px 10px;
    }
}

@media (max-width: 480px) {
    .media_icon_grey {
        transform: scale(0.75);
        transform-origin: top left;
    }
}



@media (min-width: 960px) {
    .cartoon_text_overlay {
        font-size: 32px;
        padding: 60px 80px 60px 60px;
    }

    .speech-bubble h3 {
        font-size: 40px;
    }

    h2 {
        font-size: 40px;
    }

    li.example_text_title a {
        font-size: 20px !important;
    }
    .example_text {
        font-size: 20px !important;
    }

}

/* Reset UIkit defaults and apply custom styling */
.buy-tabs.uk-tab {
    position: relative;
    border-bottom: 1px solid #dcdcdc;
    margin: 0 0 30px 0; /* Keep the uk-margin-medium-bottom spacing */
    padding: 0;
}

.buy-tabs.uk-tab::before {
    display: none; /* Remove UIkit's default bottom border */
}
/* All tabs */
.buy-tabs.uk-tab > li > a,
.buy-tabs.uk-tab > li > span {
    position: relative;
    padding: 10px 18px;
    color: #777;
    border: 1px solid transparent;
    border-bottom: none;
    background: transparent;
    display: block;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-transform: none;
    transition: background 0.2s ease, color 0.2s ease; /* Smooth transition */
}

/* Active tab */
.buy-tabs.uk-tab > li.uk-active > a,
.buy-tabs.uk-tab > li.uk-active > span {
    color: #000;
    font-weight: 700;
    border: 1px solid #dcdcdc;
    border-bottom: 1px solid #FFFFFF;
    border-radius: 4px 4px 0 0;
    position: relative;
    margin-bottom: -1px;
    z-index: 2;
}

/* Inactive hover */
.buy-tabs.uk-tab > li:not(.uk-active) > a:hover {
    color: #000;
    border-color: #e0e0e0;
    border-bottom: 1px solid #FFFFFF;
    border-radius: 4px 4px 0 0;
    margin-bottom: -1px;
}
