/* Basic styles */
@font-face {
    font-family: "Ionicons";
    src: url("../fonts/ionicons/fonts/ionicons.eot?v=2.0.0");
    src: url("../fonts/ionicons/fonts/ionicons.eot?v=2.0.0#iefix")
            format("embedded-opentype"),
        url("../fonts/ionicons/fonts/ionicons.ttf?v=2.0.0") format("truetype"),
        url("../fonts/ionicons/fonts/ionicons.woff?v=2.0.0") format("woff"),
        url("../fonts/ionicons/fonts/ionicons.svg?v=2.0.0#Ionicons")
            format("svg");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Bebas Kai";
    src: url("../fonts/BebasKai/BebasKai.eot");
    src: url("../fonts/BebasKai/BebasKai.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/BebasKai/BebasKai.woff2") format("woff2"),
        url("../fonts/BebasKai/BebasKai.woff") format("woff"),
        url("../fonts/BebasKai/BebasKai.ttf") format("truetype"),
        url("../fonts/BebasKai/BebasKai.svg#BebasKai") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Europa";
    src: url("../fonts/Europa/Europa-Regular.eot");
    src: url("../fonts/Europa/Europa-Regular.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/Europa/Europa-Regular.woff2") format("woff2"),
        url("../fonts/Europa/Europa-Regular.woff") format("woff"),
        url("../fonts/Europa/Europa-Regular.ttf") format("truetype"),
        url("../fonts/Europa/Europa-Regular.svg#Europa-Regular") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Europa";
    src: url("../fonts/Europa/Europa-Bold.eot");
    src: url("../fonts/Europa/Europa-Bold.eot?#iefix")
            format("embedded-opentype"),
        url("../fonts/Europa/Europa-Bold.woff2") format("woff2"),
        url("../fonts/Europa/Europa-Bold.woff") format("woff"),
        url("../fonts/Europa/Europa-Bold.ttf") format("truetype"),
        url("../fonts/Europa/Europa-Bold.svg#Europa-Bold") format("svg");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/* resets */

:root {
    --pg-font-family-base: "Europa", Arial, sans-serif;
    --pg-font-family-title: "Bebas Kai", Arial, sans-serif;
    --pg-brand-color-dark: #11224e;
    --pg-brand-color: #11224e;
    --pg-brand-color-light: #1a3b70;
    --pg-brand-color-lighter: #2c599d;
    --pg-brand-color-lightest: #5c83c4;
    --pg-brand-color-highlight: #aec5eb;
    --pg-brand-color-very-light: #f1f7ff;
    --pg-grey: #acabab;
    --pg-grey-light: #F3F5F8;
    --pg-secondary-color: #f2944a;
    --pg-secondary-color-lighter: #edab77;
    --pg-secondary-color-darker: #d28041;
    --font-weight-default: 300;
    --bs-body-font-weight: 300;
    --bs-body-font-size: 1.125rem;
    --bs-body-line-height: 1.8;
    --bs-primary-rgb: var(--pg-brand-color);
    --orange-gradient: linear-gradient(#ffb858, #ea7519);
    --white-gradient: linear-gradient(white, 90%, transparent);
    --blue-gradient: linear-gradient(#5a81c0, #3f5b88);
    --blue-orange-gradient: linear-gradient(90deg, #1D2F57, 60%, var(--pg-secondary-color));
    --blue-transparent-gradient: linear-gradient(0deg, var(--pg-brand-color), transparent);
    --grey-gradient: linear-gradient(0deg, #0A122718, transparent);
    --small-box-shadow: rgba(0, 0, 0, 0.1) 0 3px 4px 1px;
    /* Web component variables */
    --dt-form-text-color: var(--bs-gray-600);
    --dt-form-padding: 5px 10px;
    --dt-text-disabled-background-color: var(--bs-gray-200);
    --dt-text-disabled-color: var(--bs-gray-600);
    --dt-form-input-box-shadow: rgba(0, 0, 0, 0.1) 0 3px 4px 1px;
    --scroll-track-color: var(--pg-brand-color);
    --scroll-thumb-color: var(--pg-brand-color-highlight);
    scrollbar-color: var(--scroll-thumb-color) var(--scroll-track-color);
}
html {
    font-size: 1em;
}
body {
    color: var(--pg-brand-color-light);
    font-family: var(--pg-font-family-base);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--pg-font-family-base);
    font-weight: 300;
}
.h1,
h1 {
    font-family: var(--pg-font-family-title);
    font-size: 6rem;
}
.h2,
h2 {
    font-family: var(--pg-font-family-title);
    font-size: 3rem;
    line-height: 1.1;
}
.h3,
h3 {
    font-family: var(--pg-font-family-title);
    font-size: 2rem;
}
.h4,
h4 {
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 700;
}
h5,
.h5 {
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--pg-font-family-base);
    margin-bottom: 0;
}
img {
    max-width: 100%;
}
ul {
    list-style: none;
    margin-inline-start: 0;
    padding-inline-start: 0;
    line-height: var(--bs-body-line-height);
}
ul li {
    position: relative;
}

ul li:before {
    content: "●";
    font-size: 1.5em;
    position: absolute;
    top: 0.1em;
    line-height: 0.9;
}

.star-bullet li:before {
    content: "★";
}

[dir="ltr"] ul:not([role="list"]) li {
    padding-left: 1.7em;
}

[dir="ltr"] ul li:before {
    left: 0;
}
[dir="rtl"] ul:not([role="list"]) li {
    padding-right: 1.7em;
}
[dir="rtl"] ul li:before {
    right: 0;
}
li + li {
    margin-top: 1rem;
}
[data-tight] > li + li {
    margin-top: 0.5rem;
}
ol.large-numbers {
    margin-left: -2rem;
    list-style: none;
    counter-reset: large-numbers;
}
ol.large-numbers > li {
    position: relative;
    margin-left: 2rem;
}
ol.large-numbers > li:before {
    font-size: 4rem;
    counter-increment: large-numbers;
    content: counter(large-numbers);
    position: absolute;
    left: 0;
    top: -0.1em;
    line-height: 1;
    transform: translateX(-150%);
    font-family: var(--pg-font-family-title);
    width: 1ch;
}


ol[role="list"],
ul[role="list"] {
    list-style: none;
    padding-inline-start: 0;
}
ul[role="list"] li:before {
    content: unset;
}

a {
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    color: var(--pg-brand-color-lighter);
}
a:hover {
    color: var(--pg-brand-color-lightest);
}
a:active {
    color: var(--pg-brand-color-lightest);
}
.link-light {
    color: var(--pg-brand-color-highlight) !important;
}
a.white {
    color: white;
}
strong {
    font-weight: bold;
}
.table {
    border-color: var(--pg-brand-color-very-light);
}
hr {
    opacity: 1;
    border: 1px solid var(--pg-brand-color-lighter);
    width: 100%;
}
.form-group {
    line-height: 1.1;

    display: flex;
    align-items: center;
    gap: 0.5em;
}
dt-location-map {
    font-family: var(--pg-font-family-base);
    --dt-location-map-border-color: var(--pg-grey);
    --dt-location-map-border-radius: 8px;
    --dt-location-map-button-color: var(--pg-brand-color-light);
    --dt-location-map-button-hover-background-color: var(
        --pg-brand-color-light
    );
    --dt-location-map-background-color: white;
}
input[type="checkbox"]:not([role="switch"]) {
    --pg-checkbox-color: currentColor;
    --pg-checkbox-tick: var(--pg-brand-color-lighter);
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    margin: 0;
    font: inherit;
    color: var(--pg-checkbox-color);
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid var(--pg-checkbox-color);
    border-radius: 0.25em;
    display: inline-grid;
    place-content: center;
}
input[type="checkbox"]:not([role="switch"])::before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--pg-checkbox-tick);
    border-radius: 0.15em;

    transform-origin: bottom left;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}
input[type="checkbox"]:not([role="switch"]):checked::before {
    transform: scale(1);
}
input[type="checkbox"]:not([role="switch"]):disabled {
    --pg-checkbox-color: var(--pg-grey);
    --pg-checkbox-tick: var(--pg-grey);
}
input[type="checkbox"]:not([role="switch"]):focus {
    outline: max(2px, 0.15em) solid var(--pg-checkbox-color);
    outline-offset: max(2px, 0.15em);
}
input[type="checkbox"][role="switch"] {
    --pg-toggle-background: white;
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--pg-toggle-background);
    border-radius: 100px;
    border: 2px solid var(--pg-brand-color);
    width: 2.5em;
    height: 1.5em;
    position: relative;
}
input[type="checkbox"][role="switch"]:checked {
    --pg-toggle-background: var(--pg-brand-color-lightest);
}
input[type="checkbox"][role="switch"]::before {
    content: "";
    background-color: white;
    width: 1.25em;
    height: 1.25em;
    border-radius: 100px;
    transition: 120ms transform ease-in-out;
    border: 2px solid var(--pg-brand-color);
    position: absolute;
    left: 0.1em;
    top: 50%;
    transform: translateY(-50%);
    transition: all 120ms transform ease-in-out;
}
input[type="checkbox"][role="switch"]:checked::before {
    transform: translateX(calc(100% - 0.4em)) translateY(-50%);
}
input[type="checkbox"][role="switch"]:disabled {
    --pg-toggle-background: var(--dt-text-disabled-color);
}
input[type="checkbox"][role="switch"]:disabled::before {
    background-color: var(--dt-text-disabled-background-color);
}
input[type="checkbox"][role="switch"]:focus-visible {
    outline: 2px solid var(--pg-brand-color);
    outline-offset: 2px;
}
#section-give #payment-form .payment-checkbox input,
input[type="radio"] {
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    margin: 0;

    border: 2px var(--pg-grey) solid;
    border-radius: 50%;
    width: 1.5em;
    height: 1.5em;
    transform: translateY(6px);
}
#section-give #payment-form .payment-checkbox input:checked,
input[type="radio"]:checked {
    border: 8px solid var(--pg-brand-color-lighter);
}

*::-webkit-scrollbar {
    block-size: 1rem;
}
*::-webkit-scrollbar-track {
    background-color: var(--scroll-track-color);
}
*::-webkit-scrollbar-thumb {
    background-color: var(--scroll-track-color);
    background-image: linear-gradient(var(--scroll-track-color) 0, var(--scroll-track-color) 0.25rem, var(--scroll-thumb-color) 0.25rem, var(--scroll-thumb-color) 0.75rem, var(--scroll-track-color) 0.75rem);
}

.form-check-input:checked {
    background-color: var(--pg-brand-color-lighter);
    border-color: var(--pg-brand-color-lighter);
}
.navbar {
    --bs-navbar-brand-color: var(--pg-brand-color);
}
.navbar a {
    text-decoration: none;
}
.navbar .dt-magic-link-language-selector button {
    background: transparent;
    color: var(--pg-brand-color-light);
    padding: 3px;
    border-radius: 5px;
    box-shadow: none;
}
.navbar .offcanvas .dt-magic-link-language-selector button {
    color: white;
}
.navbar .dt-magic-link-language-selector button::after {
    content: unset;
}
.navbar .dt-magic-link-language-selector button svg {
    width: 2rem;
    height: 2rem;
}
.navbar-dark.navbar .dt-magic-link-language-selector button {
    color: white;
}
.navbar .dt-magic-link-language-selector .dropdown-menu {
    --bs-dropdown-link-hover-bg: var(--pg-brand-color-lighter);
    --bs-dropdown-link-active-bg: var(--pg-brand-color-lighter);
}
.navbar .dt-magic-link-language-selector .dropdown-menu a {
    cursor: pointer;
}

.form-control {
    font-weight: 300;
    color: #495057;
}
.form-control:focus {
    border-color: var(--pg-brand-color-highlight);
    box-shadow: 0 0 0 0.25rem rgba(92, 131, 196, 0.25);
}
.left-align {
    text-align: left;
}
.six-em {
    line-height: 1.3;
    font-size: 6em;
}
.four-em {
    font-size: 4em;
}
.three-em {
    font-size: 3em;
}
.two-em {
    font-size: 2em;
}
.two-rem {
    font-size: 2rem;
}
.one-em {
    font-size: 1.5em;
}
.one-rem {
    font-size: 1.2rem;
}
.icon-small {
    font-size: 3rem;
}
.icon-medium {
    font-size: 4rem;
}
.icon-large {
    font-size: 6rem;
}
.small {
    font-size: 14px;
}
.font-weight-bold {
    font-weight: 700;
}
.font-weight-normal {
    font-weight: 300;
}
.font-italic {
    font-style: italic;
}
.uppercase {
    text-transform: uppercase;
}
.text-transform-none {
    text-transform: none;
}
.lh-xsm {
    line-height: 0.8;
}
.w-fit {
    width: fit-content;
}
.w-90 {
    width: 90%;
}
.h-22 {
    height: 22rem;
}
.font-title {
    font-family: var(--pg-font-family-title);
}
.font-base {
    font-family: var(--pg-font-family-base);
}
.absolute {
    position: absolute;
}
.absolute.right-0 {
    right: 0;
}
@media (max-width: 768px) {
    h1 {
        font-size: 4rem;
    }
    .h2 {
        font-size: 2.5rem;
    }
    .six-em {
        font-size: 3em;
    }
    .four-em {
        font-size: 3rem;
    }
    .three-em {
        font-size: 1.7em;
    }
    .two-em {
        font-size: 1.2em;
    }
    .one-em {
        font-size: 1em;
    }
    .two-rem {
        font-size: 1.4rem;
    }
    .navbar .two-rem {
        font-size: 2rem;
    }
}
@media (max-width: 576px) {
    h1 {
        font-size: 3rem;
    }
}
@media (min-width: 768px) {
    h2 {
        font-size: 4rem;
    }
    .icon-large {
        font-size: 7rem;
    }
    .icon-medium {
        font-size: 5rem;
    }
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.loading-spinner.active {
    border-radius: 50%;
    width: 24px;
    height: 24px;
    border: 0.25rem solid #919191;
    border-top-color: black;
    animation: spin 1s infinite linear;
    display: inline-block;
}

/* Utilities */
.hidden {
    display: none !important;
}
.green {
    color: green;
}
.red {
    color: red;
}
.orange {
    color: orange;
}
.brand {
    color: var(--pg-brand-color);
}
.brand-light {
    color: var(--pg-brand-color-light);
}
.brand-lighter {
    color: var(--pg-brand-color-lighter);
}
.brand-lightest {
    color: var(--pg-brand-color-lightest);
}
.brand-highlight {
    color: var(--pg-brand-color-highlight);
}
.blue {
    color: var(--pg-brand-color);
}
.secondary {
    color: var(--pg-secondary-color);
}
.white {
    color: white !important;
}
.grey {
    color: var(--pg-grey);
}
.light-grey {
    color: #7d7d7d;
}
.light-grey-bg {
    background-color: var(--pg-grey-light);
}
.black {
    color: black;
}
.green-bg {
    background-color: green;
}
.red-bg {
    background-color: red;
}
.dark-bg {
    background-color: #0a1227;
}
.brand-bg {
    background-color: var(--pg-brand-color);
}
.brand-light-bg {
    background-color: var(--pg-brand-color-light);
}
.brand-lighter-bg {
    background-color: var(--pg-brand-color-lighter);
}
.brand-lightest-bg {
    background-color: var(--pg-brand-color-lightest);
}
.brand-highlight-bg {
    background-color: var(--pg-brand-color-highlight);
}
.secondary-bg {
    background-color: var(--pg-secondary-color);
}
.drop-shadow {
    filter: drop-shadow(0 4px 2px #0004);
}

/* Old colours */
.blue-dark-bg {
    background-color: var(--pg-brand-color-dark);
}
.blue-bg {
    background-color: var(--pg-brand-color);
}
.blue-light-bg {
    background-color: var(--pg-brand-color-light);
}
.blue-highlight-bg {
    background-color: var(--pg-brand-color-highlight);
}
.orange-dark-bg {
    background-color: rgb(255, 98, 0);
}
.orange-bg {
    background-color: orange;
}
.orange-light-bg {
    background-color: hsl(39, 100%, 74%);
}
.orange-gradient {
    background-image: var(--orange-gradient);
}
.brand-transparent-gradient {
    background-image: var(--blue-transparent-gradient);
}
.grey-gradient {
    background-image: var(--grey-gradient);
}
.orange-gradient-fill {
    fill: url(#orange-gradient);
}
.white-gradient {
    background-image: var(--white-gradient);
}
.blue-gradient {
    background-image: var(--blue-gradient);
}
.blue-orange-gradient {
    background-image: var(--blue-orange-gradient);
}
.white-bg {
    background-color: white;
}
.blue-border {
    border: 2px solid var(--pg-brand-color);
}
.white-border {
    border: 2px solid white;
}
.border-brand-light {
    border-color: var(--pg-brand-color-light);
    --bs-border-color: var(--pg-brand-color-light);
}
.brand-highlight-border {
    border: 1px solid var(--pg-brand-color-highlight);
    border-radius: 10px;
}
.secondary-border {
    border: 2px solid var(--pg-secondary-color);
}
.row-gap-sm {
    row-gap: 1rem !important;
}
.py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.pb-6 {
    padding-bottom: 4rem;
}
.pt-6 {
    padding-top: 4rem;
}
.w-60ch {
    max-width: 60ch;
}

.clip-rounded-end {
    clip-path: url(#clip-rounded-end);
    margin-left: -4rem;

    [dir="rtl"] & {
        clip-path: url(#clip-rounded-start);
        margin-right: -4rem;
        margin-left: 0;
    }
}

.clip-rounded-start {
    clip-path: url(#clip-rounded-start);
    margin-left: 4rem;

    [dir="rtl"] & {
        clip-path: url(#clip-rounded-end);
        margin-left: 0;
        margin-right: 4rem;
    }
}
@media (max-width: 991px) {
    .navbar-expand-lg > .container,
    .navbar-expand-lg > .container-fluid {
        padding-right: 0;
        padding-left: 0;
    }
}

/* =========== */
/* Composition */
/* =========== */

.center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.center-block {
    width: fit-content;
    text-align: left;
    margin-inline: auto;
}

.space-out {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.flow > *,
.flow-xmedium > *,
.flow-medium > *,
.flow-small > * {
    margin-top: 0;
    margin-bottom: 0;
}

.flow > * + * {
    margin-top: var(--pg-flow-size, 4rem);
}
.flow-xmedium > * + * {
    margin-top: var(--pg-flow-size, 3rem);
}
.flow-medium > * + * {
    margin-top: var(--pg-flow-size, 2rem);
}
.flow-small > * + * {
    margin-top: var(--pg-flow-size, 1rem);
}

/* Stack */

.stack-xsm,
.stack-sm,
.stack-md,
.stack {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stack-sm[data-grid],
.stack-md[data-grid],
.stack[data-grid] {
    display: grid;
}
.stack-sm[data-stretch],
.stack-md[data-stretch],
.stack[data-stretch] {
    align-items: stretch;
}

.stack-xsm > *,
.stack-sm > *,
.stack-md > *,
.stack > * {
    margin-top: 0;
    margin-bottom: 0;
}
.stack-xsm > * + * {
    margin-top: var(--pg-flow-size, 0.5rem);
}
.stack-sm > * + * {
    margin-top: var(--pg-flow-size, 1rem);
}
.stack-md > * + * {
    margin-top: var(--pg-flow-size, 2rem);
}
.stack > * + * {
    margin-top: var(--pg-flow-size, 4rem);
}

/* Container */

.container[data-no-gutter] {
    --bs-gutter-x: 0;
}
.container[data-gutter-4] {
    --bs-gutter-x: 3rem;
}

.pg-container {
    --min-width: 320px;
    --small-margin: 10px;
    --width-lg: 1023px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    width: calc(
        70% + (30 / 100 * var(--min-width) - (2 * var(--small-margin)))
    );
    max-width: var(--width-lg);
}
.pg-container[data-small] {
    --width-lg: 580px;
}

@media (min-width: 1400px) {
    .events-page .container {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .events-page .container {
        max-width: 960px;
    }
}

/* Cluster */
.cluster {
    display: flex;
    gap: var(--space, 1rem);
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* Repel */
.repel {
    display: flex;
    gap: var(--space, 1rem);
    justify-content: space-between;
}

/* Switcher */
.switcher {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space, 1rem);
}

.switcher > * {
    flex-grow: 1;
    flex-basis: calc((var(--switcher-width, 27rem) - 100%) * 999);
}

.switcher > :nth-last-child(n + 5),
.switcher > :nth-last-child(n + 5) ~ * {
    flex-basis: 100%;
}
.switcher-md {
    --switcher-width: 40rem;
    --space: 2rem;
}
.switcher-lg {
    --switcher-width: 55rem;
    --space: 3rem;
}
.switcher-reverse {
    flex-direction: row-reverse;
}

.page {
    padding-top: 2rem;
    padding-bottom: 6rem;
    min-height: 100vh;
}
.page-section {
    margin-top: 3em;
    padding: 6em 0;
    position: relative;
    display: block;
}


.cover-img,
.cover-section {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
}

.cover-img > :first-child:not(img),
.cover-section > :first-child:not(div) {
  margin-top: 0;
}

.cover-img > :last-child:not(img),
.cover-section > :last-child:not(div) {
  margin-bottom: 0;
}

.cover-img > img,
.cover-section > div {
  margin-top: auto;
  margin-bottom: auto;
  padding-top: var(--space, 1rem);
  padding-bottom: var(--space, 1rem);
}

.grid {
  display: grid;
  grid-gap: 1rem;
}

@supports (width: min(100px, 100%)) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100px, 100%), 1fr));
  }
}

/* Utilities */

.full-height {
    position: relative;
    text-align: center;
}
.full-height > .container {
    position: relative;
    height: inherit;
}
.hero.full-height {
    min-height: calc(100vh - 15vh);
    padding-top: 15vh;
}
.full-height {
    height: calc(100vh - 6em);
}
.hero.full-height > .container,
.hero.full-height > .container > .row {
    height: calc(100vh - 15vh);
}
.full-height > .container > .row {
    height: calc(100vh - 4em);
}
.has-icon {
    position: relative;
}
.icon-end {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
@media (max-width: 767px) {
    .full-height > .container > .row {
        height: inherit;
    }
}

@media (max-width: 991px) {
    .page-section {
        padding: 4em 0;
    }
}

.overflow-x-hidden {
    overflow-x: hidden;
}
.text-ellipsis {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.header-border-bottom {
    position: relative;
    padding-bottom: 30px;
    text-align: center;
}
.header-border-bottom::before {
    position: absolute;
    bottom: 0;
    height: 2px;
    width: 50px;
    content: "";
    background: #1d82ff;
    left: 50%;
    transform: translateX(-50%);
}
.cover,
.cover-small {
    background-size: cover;
    background-repeat: no-repeat;
}
.contain {
    background-size: contain;
    background-repeat: no-repeat;
}
.grow-1 {
    flex-grow: 1;
}
.grow-2 {
    flex-grow: 2;
}
.grow-3 {
    flex-grow: 3;
}
.grow-4 {
    flex-grow: 4;
}
.bg-center {
    background-position: center center;
}
.bg-top {
    background-position: top;
}
.bg-bottom {
    background-position: bottom;
}
.bg-right {
    background-position: right !important;
}
.hero .heading {
    font-size: 12vh;
    color: white;
    margin-top: 4vh;
    margin-bottom: 0;
    text-transform: uppercase;
    font-family: "Bebas Kai";
}
.hero .sub-heading {
    font-size: 6vh;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 6vh;
    text-transform: uppercase;
    font-family: "Bebas Kai";
}
.heading__logo {
    font-size: 24vh;
}
.hero .btn-cta {
    font-size: 3vh;
}
.hero .btn-learn-more {
    font-size: max(2vh, 14px);
}
.cover-small {
    padding: 3em 0;
    height: inherit;
}
.cover-small > .container > .row {
    padding: 3em 0;
    height: inherit;
}
.cover-black {
    position: relative;
}
.cover-black::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";

    background: var(--pg-brand-color);
    opacity: 0.7;
}
@media (max-width: 767px) {
    .cover-small {
        padding: 3em 0;
        height: inherit;
    }
    .contain > .container > .row,
    .cover > .container > .row {
        height: inherit;
    }
    .cover-small > .container > .row {
        padding: 3em 0;
        height: inherit;
    }
    .hero .heading {
        font-size: 62px;
    }
    .hero .sub-heading {
        font-size: 32px;
    }
}
.seperated-list > * + * {
    border-top: 1px solid var(--pg-grey);
}

/* Blocks */

.relay-item {
    background-color: var(--pg-brand-color-lightest);
    color: white;
    padding: 1rem;
    border-radius: 8px;
}
.relay-item .btn-cta {
    padding: 0.2rem 1rem;
}
.relay-item .dropdown-toggle::after {
    display: none;
}
.relay-item[data-type="global"] {
    background-color: var(--pg-brand-color);
}
.relay-item[data-visibility="public"] {
    background-color: var(--pg-brand-color);
}
.relay-item[data-hidden] {
    background-color: var(--pg-grey);
}
.relay-item__container {
    position: relative;
    display: flex;
    justify-content: space-between;
}
.relay-item__info {
    align-items: flex-start;
    line-height: 1;
    flex-grow: 1;
}
.relay-item__actions {
    align-items: flex-end;
    justify-content: space-between;
}
.relay-item__center-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
.relay-item__center-icon[data-size="large"] svg {
    width: 3rem;
    height: 3rem;
}
.relay-item__center-icon[data-size="medium"] svg {
    width: 2rem;
    height: 2rem;
}

.border-dashed {
    border-radius: 10px;
    padding: 1rem;
    border: 1px dashed var(--pg-grey);
}

.user__banner {
    background-color: #ffd84c;
    padding: 1em 0;
}
.relay-banner {
    text-align: center;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-image: var(--orange-gradient);
}
.relay-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.relay-banner .heading {
    line-height: 1;
    margin-bottom: 0;
    font-size: 1.6rem;
    color: white;
}
.relay-banner .btn {
    font-size: 1.2rem;
    line-height: 1;
    text-transform: uppercase;
    color: white;
}
.relay-banner .animate {
    position: relative;
    transform: translateX(calc(var(--direction) * 100vw));
    opacity: 0;
    transition: transform 400ms ease-in;
}
.relay-banner .animate.active {
    opacity: 1;
    transform: translateX(0);
}
.relay-banner .animate.left {
    --direction: -1;
}
.relay-banner .animate.right {
    --direction: 1;
}

.activity-card {
    width: 100%;
    border: 2px solid var(--pg-brand-color-highlight);
    border-radius: 12px;
    padding: 1rem;
}
.activity-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--pg-font-family-base);
    color: var(--pg-brand-color-highlight);
    text-align: center;
}
.activity-table {
    display: table;
    padding: 1rem 2rem;
    max-width: 400px;
}
.activity-table td:nth-child(odd) {
    text-align: center;
    font-weight: bold;
    color: white;
    padding-inline-end: 0.5rem;
}
.activity-table td:nth-child(even) {
    text-align: start;
    color: var(--pg-brand-color-highlight);
    width: fit-content;
}

/* Parallax */
.parallax {
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
}
.parallax__layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.parallax__layer--base {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
}
.faded-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
}
.parallax__layer--back {
    z-index: 1;
    position: absolute;
    top: -20vh;
    bottom: -20vh;
    left: 0;
    right: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    transform: translateY(calc(var(--element-scroll, 0) * 0.1px));
}

.flex-1 {
    flex: 1;
}
.flex-1_5 {
    flex: 1.5;
}
.flex-2 {
    flex: 2;
}
/* JavaScript-free fallback for browsers without CSS custom property support */
@supports not (--custom: property) {
    .parallax__layer--back::before {
        transform: none;
    }
}

/* Time Elapsed */

.time_elapsed {
    display: flex;
    justify-content: center;
    line-height: 1.2;
    gap: 1vw;
}
.time-value {
    display: flex;
    flex-direction: column;
}
.time-label {
    font-size: 1rem;
}

/* Carousel */

.carousel-control-prev,
.carousel-control-next {
    opacity: 1;
}
.carousel-item {
    width: 100%;
    margin-right: -102%;
}
.finish-line {
    position: absolute;
    bottom: 15vw;
    left: 0;
    right: 0;
}

@media (min-width: 767px) {
    .section-goal-mobile {
        display: none;
    }
}

/* Progress Bar */

.progress-bar {
    position: relative;
    box-shadow: white 0 0 0 8px;
    border-radius: 100px;
    background: white;
    border: 4px solid var(--pg-brand-color);

    width: 80%;
    padding-top: 8%;
}
.progress-bar[data-small] {
    box-shadow: none;
    border: none;
    width: 40%;
    padding-top: 10px;
}
.progress-bar__slider {
    position: absolute;
    top: 0;
    height: 100%;
    width: 0;
    transition: width 1s ease-out;
}
.progress-bar__marker {
    height: 100%;
    width: 3px;
    background-color: var(--pg-brand-color);
}

/* Card */

.pg-card {
    --pg-flow-size: 1.3rem;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 3px 7px 0px;
    border-radius: 20px;
    padding: 10px;
}

.images {
    position: relative;
}
.images .img2 {
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 500px;
    -webkit-box-shadow: -17px 10px 34px -18px rgba(0, 0, 0, 0.5);
    box-shadow: -17px 10px 34px -18px rgba(0, 0, 0, 0.5);
}
@media (max-width: 767px) {
    .images .img2 {
        position: relative;
        left: inherit !important;
        top: inherit !important;
        max-width: 100%;
    }
}
.images.right .img1 {
    position: relative;
    z-index: 2;
    -webkit-box-shadow: -17px 10px 34px -18px rgba(0, 0, 0, 0.5);
    box-shadow: -17px 10px 34px -18px rgba(0, 0, 0, 0.5);
}
.images.right .img2 {
    position: absolute;
    top: 50%;
    left: -40%;
    z-index: 1;
    max-width: 500px;
}
@media (max-width: 767px) {
    .images.right .img2 {
        position: relative;
        left: inherit !important;
        top: inherit !important;
        max-width: 100%;
    }
}

.icon-circle {
    position: relative;
    width: 80px;
    min-width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;

    border-radius: 50%;
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}
.icon-circle i {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translate(-50%, -50%);
}

.faq__item {
    display: flex;
    margin-bottom: 3em;
}
.faq__item > *:first-child {
    flex-shrink: 0;
    margin-right: 1rem;
}
.faq__item > * + * {
    flex-grow: 1;
}
.faq__item h3 {
    font-size: 17px;
    margin-top: 0;
}

/* Spacing */

.s-sm {
    --space: 0.5rem;
}

.pb-10 {
    padding-bottom: 8rem;
}

/* =========== */

.icon-xxlg {
    width: 5rem;
    height: 5rem;
}
.icon-xlg {
    width: 4rem;
    height: 4rem;
}
.icon-lg {
    width: 3rem;
    height: 3rem;
}
.icon-md {
    width: 2rem;
    height: 2rem;
}
.icon-sm {
    width: 1.5rem;
    height: 1.5rem;
}

.f-lg {
    font-size: 3.5rem;
}
.f-md {
    font-size: 2rem;
}
.f-sm {
    font-size: 1.5rem;
}

.gap-xsm {
    gap: 0.25rem;
}

/* Page styles */
.pg-accordion__toggle {
    display: block;
    border-bottom: 1px solid var(--pg-brand-color);
    padding: 1.8rem 0;
    position: relative;
    color: var(--pg-brand-color-light);
    text-transform: uppercase;
    font-size: 20px;
    text-decoration: none;
}
.pg-accordion__toggle[data-smaller] {
    font-size: 16px;
}
.pg-accordion__toggle i {
    line-height: 1.8;
}
.pg-accordion__toggle[aria-expanded="true"] {
    color: var(--pg-brand-color-lighter);
    border-bottom: 1px solid transparent;
}
.pg-accordion__toggle::after {
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: "PrayerGlobal";
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    font-size: 3rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e91b";
}
.pg-accordion__toggle[aria-expanded="true"]::after {
    content: "\e91e";
}
.stats-header {
    padding: 3em 0;
}
.stats-header__title {
    font-size: 62px;
    margin: 1rem 0;
    color: #212529;
}
.stats-header__subtitle {
    font-size: 30px;
    margin-top: 0;
}
.stats-info {
    margin-bottom: 1rem;
    text-align: center;
}
.stats-info__title {
    margin-top: 0;
    font-size: 45px;
}
.stats-info__subtitle {
    margin-top: 0;
    font-size: 20px;
}

.pg-heart {
    width: 1.5rem;
    fill: white;
}
.pg-footer a {
    text-decoration: none;
    color: var(--pg-brand-color-highlight);
}
.pg-footer ul {
    padding-left: 0;
}
.footer__copyright {
    padding-top: 5rem;
}

@media (max-width: 767px) {
    .stats-header__title {
        font-size: 42px;
    }
}

.offcanvas.show {
    overflow-x: auto;
    -webkit-box-shadow: 0 0 10px hsl(0deg 0% 4% / 70%);
    box-shadow: 0 0 10px hsl(0deg 0% 4% / 70%);
}

/* Button styles */

button {
    margin: 0;
    border: 0;
    background-color: unset;
    color: var(--pg-brand-color-light);
}
button:not[role="listitem"] {
    line-height: initial;
}
.btn {
    --bs-btn-font-weight: var(--font-weight-default);
    --bs-btn-padding-y: 0.5rem;
    --bs-btn-padding-x: 1rem;
    --bs-btn-font-weight: bold;
    box-shadow: var(--small-box-shadow);
    border-radius: 100px;
}
.btn:disabled {
    --bs-btn-disabled-bg: var(--pg-grey);
    --bs-btn-disabled-border-color: var(--pg-grey);
    --bs-btn-disabled-hover-bg: var(--pg-grey);
    --bs-btn-disabled-hover-border-color: var(--pg-grey);
}
*:focus-visible,
.btn:focus-visible,
.mapboxgl-ctrl-icon:focus-visible {
    box-shadow: none;
    outline: 2px solid var(--pg-secondary-color);
    outline-offset: 2px;
}
.btn-small {
    --bs-btn-padding-y: 0.5rem;
}
.btn-xsmall {
    --bs-btn-padding-y: 0.2rem;
}

.btn-outline-primary {
    --bs-btn-color: var(--pg-brand-color-light);
    --bs-btn-border-color: var(--pg-brand-color-light);
    --bs-btn-active-bg: var(--pg-brand-color-light);
    --bs-btn-hover-bg: var(--pg-brand-color-light);
    --bs-btn-hover-border-color: var(--pg-brand-color-light);
    --bs-btn-active-border-color: var(--pg-brand-color-light);
}
.btn-primary {
    --bs-btn-bg: var(--pg-brand-color-lighter);
    --bs-btn-active-bg: var(--pg-brand-color-light);
    --bs-btn-hover-bg: var(--pg-brand-color-light);
    --bs-btn-hover-color: white;
    border: none;
    text-transform: uppercase;
}
.btn-secondary {
    --bs-btn-bg: var(--pg-secondary-color);
    --bs-btn-active-bg: var(--pg-secondary-color-darker);
    --bs-btn-hover-bg: var(--pg-secondary-color-darker);
    --bs-btn-hover-color: white;
    border: none;
}
.btn-primary-dark {
    --bs-btn-color: white;
    --bs-btn-bg: var(--pg-brand-color);
    --bs-btn-active-border: var(--pg-brand-color-highlight);
    --bs-btn-hover-bg: var(--pg-brand-color-light);
    --bs-btn-active-bg: var(--pg-brand-color-light);
    --bs-btn-hover-color: white;
    --bs-btn-active-color: white;
    border: none;
}
.btn-primary-light {
    --bs-btn-color: white;
    --bs-btn-bg: var(--pg-brand-color-lightest);
    --bs-btn-active-border: var(--pg-brand-color-highlight);
    --bs-btn-hover-bg: var(--pg-brand-color-lighter);
    --bs-btn-active-bg: var(--pg-brand-color-lighter);
    --bs-btn-hover-color: white;
    --bs-btn-active-color: white;
    border: none;
}
.btn-white {
    --bs-btn-bg: white;
    --bs-btn-color: var(--pg-brand-color);
    --bs-btn-border-color: white;
    --bs-btn-hover-bg: var(--pg-brand-color-lighter);
    --bs-btn-hover-color: white;
    --bs-btn-active-bg: var(--pg-brand-color-lighter);
    --bs-btn-active-color: white;
    border: none;
}
.btn-xl {
    font-size: 13px;
    padding: 1.5rem;
    border-radius: 0;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.btn-cta {
    --bs-btn-border-color: transparent;
    --bs-btn-border-width: 2px;
    --bs-btn-border-radius: 100px;
    --bs-btn-color: white;
    --bs-btn-active-border-color: var(--pg-secondary-color-darker);
    --bs-btn-active-color: white;
    --bs-btn-hover-bg-color: var(--pg-secondary-color-darker);
    --bs-btn-hover-color: white;
    background-image: var(--orange-gradient);
    text-transform: uppercase;
    --bs-btn-font-weight: 600;
    text-shadow: none;
    --bs-btn-padding-x: 1.5em;
    --bs-btn-padding-y: 0.4em;
    box-shadow: none;
    text-decoration: none;
    border: none;
    /* TODO: fix focus-visible and hover styles for buttons */
}
.cta-blue {
    background-image: var(--blue-gradient);
    --bs-btn-active-color: white;
    --bs-btn-active-border-color: var(--pg-brand-color-lightest);
    --bs-btn-hover-color: var(--pg-brand-color-highlight);
    --bs-btn-hover-border-color: var(--pg-brand-color-highlight);
}
.btn-top {
    position: fixed;
    bottom: 0;
    right: 0;
    margin: 1rem;
    font-size: 2rem;
    background-color: var(--pg-brand-color-lightest);
    z-index: 1000;
    border-radius: 50%;
    padding: 10px;
    line-height: 0.5;
    color: white;
    transition: all 500ms;
    z-index: 50;
}
.btn-top:hover,
.btn-top:active {
    color: white;
}
.show {
    opacity: 1;
}
.hide {
    opacity: 0;
}
.dropdown-menu {
    --bs-dropdown-link-hover-bg: var(--pg-brand-color-lighter);
    --bs-dropdown-link-active-bg: var(--pg-brand-color-lighter);
    --bs-dropdown-link-hover-color: white;
}

/* Navbar styles */
.pg-navbar {
    position: sticky;
    top: 0;
    z-index: 100;
}

.pg-navbar[data-home] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1em 1em;
    transition: background-color 0.3s ease-out;
}
.pg-navbar[data-home].scrolled {
    background-color: var(--pg-brand-color);
}
.pg-navbar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
}

nav.navbar-home {
    background: none;
}
.navbar-dark {
    background-color: var(--pg-brand-color);
    color: white;
}
.navbar-dark .navbar__title-link {
    color: white;
}
.navbar-dark * {
    border-color: white;
    --bs-border-color: white;
}
.navbar-dark .navbar-brand {
    --bs-navbar-brand-color: white;
    --bs-navbar-brand-hover-color: #b2dcff;
}
.navbar-dark .brand-light-bg {
    background-color: white;
}
.navbar-dark .streak-link {
    color: white;
}

.navbar-toggler {
    --bs-navbar-toggler-font-size: 30px;
    padding: 0;
}
.navbar-toggler,
.navbar-toggler:active {
    border: none;
    box-shadow: none;
}
.navbar-toggler:focus,
.navbar-toggler:focus-visible {
    box-shadow: none;
    outline: 2px solid var(--pg-secondary-color);
    outline-offset: 2px;
}
.pg-navmenu {
    --bs-bg-opacity: 1;
}
.pg-navmenu .btn-cta {
    font-size: 1.5rem;
}
.navbar__title {
    justify-self: center;
    text-transform: unset;
    font-weight: 400;
    font-size: 1.3rem;
}
@media (max-width: 576px) {
    .navbar__cta {
        order: 2;
        width: 100%;
    }
    .navbar__title {
        visibility: hidden;
        width: 0;
        height: 0;
        padding: 0 !important;
        margin: 0 !important;
    }
    .navbar__title-link {
        visibility: hidden;
        width: 0;
        height: 0;
    }
}

#nav-links {
    --nav-link-primary-color: var(--pg-brand-color);
    --nav-link-secondary-color: white;
    margin-bottom: 3em;
}
.nav-link {
    --bs-nav-link-font-size: 1.5rem;
    --bs-nav-link-padding-y: 1em;
    border-top: 1px solid var(--nav-link-primary-color);
    color: var(--nav-link-primary-color);
}
.nav-link:first-child {
    border-top: none;
}
.nav-link__inner {
    display: flex;
    align-items: center;
}
.nav-link__inner > * {
    flex: 1;
    text-align: right;
    font-size: 2.3rem;
}
.nav-link__inner > * + * {
    flex: 2;
    text-align: center;
    margin-right: 50px;
    font-size: 1.3rem;
}
.nav-link:hover,
.nav-link:focus {
    background: var(--nav-link-primary-color);
    color: var(--nav-link-secondary-color);
}
.nav-link:active {
    background: darkgrey;
}
.navbar-dark .nav-link,
.navbar-dark .nav-link:last-child {
    border-color: var(--nav-link-primary-color);
}
.navbar-dark .nav-link:last-child {
    border-bottom: 1px solid;
}
.navbar-dark .nav-link:hover,
.navbar-dark .nav-link:focus {
    background: var(--nav-link-primary-color);
    color: var(--nav-link-secondary-color);
}
.navbar-dark .nav-link:active {
    background: lightgrey;
}

.profile-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: var(--pg-brand-dark);
    gap: 1rem;
    text-transform: uppercase;
    line-height: 1;
}

.pg-footer .share-button {
    width: 30px;
}
.share-button img {
    width: 100%;
}
.filter-white {
    filter: invert(90%) sepia(100%) saturate(0%) hue-rotate(9deg)
        brightness(103%) contrast(102%);
}

.icon-button {
    cursor: pointer;
    color: inherit;
    border-radius: 10px;
    margin: 2px;
}

.nav-buttons {
    height: 30px;
    display: flex;
    justify-content: space-between;
    padding: 2.5em 0em;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 2em;
    right: 2em;
}

.nav-buttons * {
    color: black;
}

.navbar-dark .nav-buttons * {
    color: white;
}

.modal-footer {
    border-top: none;
}

.share-modal__items .list-group-item:first-child {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.share-modal__items .list-group-item:last-child {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.share-modal__items .list-group-item {
    cursor: pointer;
}
.share__icon {
    width: 20px;
    margin-right: 10px;
    display: inline-block;
}
.copy-notice {
    display: none;
}
.list-group-item-success.list-group-item-action:hover {
    background-color: #b1dfbb;
}
.link-action.list-group-item-success .copy-notice {
    display: inline;
}

.activity__list {
    --pg-activity-badge-size: 20px;
    margin: 0 calc(var(--pg-activity-badge-size) / 2);
    position: relative;
}
.activity-log__item {
    display: flex;
    padding: 0.5rem 0;
}
.activity-log__item::before {
    content: "";
    top: 20px;
    bottom: 0;
    left: 0;
    width: 3px;
    background: #ddd;
    position: absolute;
}
.activity-log__badge {
    margin-right: 20px;
    margin-left: calc(var(--pg-activity-badge-size) / -2 + 1px);
    z-index: 1;
    height: calc(var(--pg-activity-badge-size) * 2);
    background-color: white;
    display: flex;
    align-items: center;
}
.activity-log__badge > .badge__inner {
    height: calc(var(--pg-activity-badge-size));
    width: calc(var(--pg-activity-badge-size));
    border-radius: 50%;
}
.activity-log__body {
    margin-top: 8px;
}
.page-header {
    padding: 0.5em 1em;
    background: white;
    border-bottom: 1px solid var(--pg-brand-color);
}
.offcanvas {
    --bs-offcanvas-color: var(--pg-brand-color-light);
}
.offcanvas__header {
    position: sticky;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.5em 1em;
    background: white;
    z-index: 100;
    border-bottom: 1px solid var(--pg-brand-color);
}
.offcanvas__header button {
    display: flex;
}
.offcanvas__content {
    padding: 1em;
}

/* Home page styles */

.video-image-link {
    cursor: pointer;
}
.video {
    padding-top: 56.3%;
    position: relative;
    border-top-left-radius: 4.5% 8%;
    border-top-right-radius: 4.5% 8%;
    border-bottom-left-radius: 4.5% 8%;
    border-bottom-right-radius: 4.5% 8%;
    overflow: hidden;
}
.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.section-goal-desktop {
    display: none;
}
.two-col-sm {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
@media (max-width: 1200px) {
    #story5 .icon.d-block {
        display: none !important;
    }
    #story5 .icon.d-none {
        display: inline-block !important;
        margin-left: 1rem;
    }
}
@media (max-width: 991px) {
    .section-goal-desktop p {
        font-size: 20px;
    }
    .section-goal-desktop h2 {
        font-size: 3rem;
    }
    .two-col-sm {
        flex-direction: row-reverse;
        justify-content: flex-start;
    }
    .two-col-sm .mx-auto {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
    .two-col-sm p {
        width: 40%;
    }
    #story4 .text-right-40 {
        padding: 0;
    }
    #story4 .desktop-story__container {
        align-items: flex-end;
    }
    #story5 .btn-cta {
        font-size: 1.5rem;
    }
    #story5 p {
        margin-bottom: 0;
    }
    #story5 .flow-small {
        --pg-flow-size: 0;
    }
}

@media (min-width: 767px) {
    .section-goal-desktop {
        display: block;
    }
}
.desktop-story__container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    font-size: 22px;
}
.text-left {
    padding-right: 40%;
}
.text-right-35 {
    padding-left: 35%;
}
.text-right-40 {
    padding-left: 40%;
}
.text-right-50 {
    padding-left: 50%;
}
.text-bottom {
    padding-top: 20%;
}
.text-bottom {
    padding-top: 20%;
}
.text-align-right {
    text-align: right;
}
.text-align-left {
    text-align: left;
}

/* Datatable styles */

.dtr-title {
    font-weight: bold;
}
.data-table .dataTables_wrapper .dataTables_filter {
    float: none;
    width: 100%;
}
.data-table .dataTables_wrapper .dataTables_filter label {
    color: #acabab;
    text-transform: uppercase;
    display: flex;
    padding: 0 1rem 2rem;
    border-bottom: 1px solid var(--pg-secondary-color);
}
input[type="date"],
input[type="time"],
input[type="number"],
input[type="text"],
input[type="email"],
textarea[type="text"],
input[type="password"],
.form-select,
#section-give #payment-form .payment-form,
.data-table .dataTables_wrapper .dataTables_filter input {
    border: 2px solid var(--pg-grey);
    border-radius: 10px;
    padding: 5px 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 3px 4px 1px;
    color: var(--bs-gray-600);
}
#section-give #payment-form .payment-form,
.data-table .dataTables_wrapper .dataTables_filter input {
    width: 50%;
}
@media (max-width: 768px) {
    .data-table .dataTables_wrapper .dataTables_filter input {
        width: 100%;
    }
}
.data-table .dataTables_wrapper .dataTables_filter input {
    margin-left: 10px;
}
.data-table .sorting {
    border: none;
}
.data-table .dataTable {
    border-spacing: 2px;
    border-bottom: none !important;
}
.data-table table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control {
    border-radius: 6px;
    padding: 10px 39px 10px 10px;
}
.data-table
    table.dataTable.dtr-inline.collapsed
    > tbody
    > tr
    > th.dtr-control:before {
    content: "\e91b";
    font-family: PrayerGlobal;
    background-color: transparent;
    border: none;
    font-size: 1.6rem;
    left: unset;
    right: 10px;
}
.data-table
    table.dataTable.dtr-inline.collapsed
    > tbody
    > tr.parent
    > th.dtr-control:before {
    content: "\e91e";
    font-family: PrayerGlobal;
    background-color: transparent;
}
#content .dtr-control,
#active_content .dtr-control {
    background: var(--pg-brand-color-light);
    text-align: center;
}
#complete_content .dtr-control {
    background: var(--pg-brand-color-lighter);
}
.data-table .dataTable .dtr-control a {
    color: white;
    text-decoration: none;
}
.data-table .dataTables_wrapper .dataTables_info {
    float: left;
    font-size: 0.9rem;
    text-transform: none;
    padding-left: 10px;
}
.data-table .dataTables_wrapper .dataTables_paginate {
    margin-top: 0;
}
.data-table .dataTables_wrapper .dataTables_paginate .paginate_button {
    font-size: 1rem;
    padding: 0 0.5rem;
}

/* Remove striping when table is running responsively */
@media (max-width: 1024px) {
    table.dataTable.stripe > tbody > tr.even > *,
    table.dataTable.display > tbody > tr.even > * {
        box-shadow: inset 0 0 0 9999px rgba(0, 0, 0, 0.023);
    }
}

/* User Profile styles */

#user-profile-details {
    width: min(600px, 100%);
}

#mapbox-autocomplete-list div[data-value="address"] {
    display: none;
}

#mapbox-autocomplete .mapbox-autocomplete-items div:hover {
    background-color: var(--pg-brand-color-lightest);
    color: white;
}

#createChallengeLabel[data-visibility="private"]:before {
    content: "\f200";
    font-family: "Ionicons";
    padding-right: 16px;
}
#createChallengeLabel[data-visibility="public"]:before {
    content: "\f4c9";
    font-family: "Ionicons";
    padding-right: 16px;
}

.challenge-table__share {
    font-size: 2rem;
}

.challenges-table td {
    vertical-align: middle;
}

.user__gravatar {
    display: inline-block;
    width: 1em;
    height: 1em;
    border-radius: 1000px;
    background-position: center;
    background-size: cover;
}
.user__gravatar:hover,
.user__gravatar:active,
.user__gravatar:focus {
    border: 2px solid white;
    transition: all 100ms ease-in;
}

.user__avatar {
    position: relative;
    font-size: 2rem;
    --pg-avatar-bg-color: var(--pg-brand-color-lighter);
    color: white;
}
.user__avatar[size="small"] {
    font-size: 1.2rem;
}

.user__badge {
    --pg-badge-primary-color: #ffbd0b;
    --pg-badge-primary-shadow: #cb7407;
    --pg-badge-secondary-color: #f0a608;
    --pg-badge-light-border: #ffd84c;
    --pg-badge-dark-border: #d57e08;
    --pg-badge-darker-border: #c47207;
    --pg-badge-icon-color: var(--pg-badge-primary-color);
    --pg-badge-rotation: 44deg;
    --pg-badge-size: 150px;
    --pg-badge-inner-size: 70px;
    --pg-badge-outer-border-size: 7px;
    --pg-badge-inner-border-size: 5px;
    --pg-badge-icon-size: 50px;
    --pg-badge-sheen-width: 40px;

    margin: auto;
    position: relative;
    height: var(--pg-badge-size);
    width: var(--pg-badge-size);
}

.user__badge.loading {
    display: flex;
    align-items: center;
    justify-content: center;
}

.user__badge[disabled] {
    opacity: 0.3;
}

.user__badge .front,
.user__badge .back {
    position: absolute;
    height: var(--pg-badge-size);
    width: var(--pg-badge-size);
    background: var(--pg-badge-primary-color);
    border-radius: 50%;
    border-top: var(--pg-badge-outer-border-size) solid
        var(--pg-badge-light-border);
    border-left: var(--pg-badge-outer-border-size) solid
        var(--pg-badge-light-border);
    border-right: var(--pg-badge-outer-border-size) solid
        var(--pg-badge-dark-border);
    border-bottom: var(--pg-badge-outer-border-size) solid
        var(--pg-badge-dark-border);
    transform: rotate(var(--pg-badge-rotation));
}
.user__badge .front:before,
.user__badge .back:before {
    content: "";
    margin: auto;
    position: absolute;
    width: var(--pg-badge-inner-size);
    height: var(--pg-badge-inner-size);
    background: var(--pg-badge-secondary-color);
    border-radius: 50%;
    border-bottom: var(--pg-badge-inner-border-size) solid
        var(--pg-badge-light-border);
    border-right: var(--pg-badge-inner-border-size) solid
        var(--pg-badge-light-border);
    border-left: var(--pg-badge-inner-border-size) solid
        var(--pg-badge-dark-border);
    border-top: var(--pg-badge-inner-border-size) solid
        var(--pg-badge-dark-border);
    z-index: 2;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.user__badge .front .badge__icon,
.user__badge .front .badge__icon {
    overflow: hidden;
    position: absolute;
    color: var(--pg-badge-icon-color);
    font-size: var(--pg-badge-icon-size);
    transform: rotate(calc(-1 * var(--pg-badge-rotation)));
    text-align: center;
    text-shadow: 2px 2px 0 var(--pg-badge-primary-shadow);
    z-index: 3;
    border-radius: 50%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.user__badge .front .badge__icon:after,
.user__badge .back .badge__icon:after {
    content: "";
    position: absolute;
    height: 200px;
    width: var(--pg-badge-sheen-width);
    margin: 20px -65px;
    box-shadow: 50px -23px 0 -10px rgba(255, 255, 255, 0.22),
        85px -10px 0 -16px rgba(255, 255, 255, 0.19);
    transform: rotate(-50deg);
    animation: shine 0s forwards ease;
    top: 0;
}
@keyframes shine {
    0% {
        margin: 20px -65px;
    }
    50% {
        margin: 70px -85px;
    }
    100% {
        margin: 20px -65px;
    }
}
.user__badge .front .shapes,
.user__badge .back .shapes {
    transform: rotate(calc(-1 * var(--pg-badge-rotation)));
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.user__badge .front .shapes div,
.user__badge .back .shapes div {
    width: 20px;
    height: 4px;
    background: var(--pg-badge-dark-border);
    border-top: 2px solid var(--pg-badge-darker-border);
    margin: calc(var(--pg-badge-size) / 2 - 10px) 7px;
    position: relative;
}
.user__badge .front .shapes div:before,
.user__badge .back .shapes div:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 4px;
    background: var(--pg-badge-dark-border);
    border-top: 2px solid var(--pg-badge-darker-border);
    margin: -10px 0;
    left: 0;
}
.user__badge .front .shapes div:after,
.user__badge .back .shapes div:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 4px;
    background: var(--pg-badge-dark-border);
    border-top: 2px solid var(--pg-badge-darker-border);
    margin: 8px 0;
    left: 0;
}
.user__badge .front .shape_l,
.user__badge .back .shape_l {
    float: left;
}
.user__badge .front .shape_r,
.user__badge .back .shape_r {
    float: right;
}
.user__badge .front .top,
.user__badge .back .top {
    font-size: 30px;
    color: var(--pg-badge-dark-border);
    text-align: center;
    width: 100%;
    position: absolute;
    left: 0;
}
.user__badge .front .bottom,
.user__badge .back .bottom {
    font-size: 20px;
    font-weight: bold;
    color: var(--pg-badge-dark-border);
    text-align: center;
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}
.icon-toggle {
    width: 3rem;
    height: 3rem;
    padding: 0;
    line-height: 0;
}
.icon-toggle::after {
    display: none;
}

/* Custom map holding page */

.holding-page {
    position: fixed;
    background: #ffffffaa;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    z-index: 9;
}

.time-counter {
    font-family: "Roboto Mono", monospace;
    font-weight: 300;
}

@keyframes streak-highlight {
    0% {
        background-position: 50% 40%;
    }
    25% {
        background-position: 60% 55%;
    }
    50% {
        background-position: 70% 75%;
    }
    75% {
        background-position: 80% 80%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.streak-icon {
    mask: var(--pg-icon-streak-highlight) no-repeat 0 0/100% 100%;
    -webkit-mask: var(--pg-icon-streak-highlight) no-repeat 0 0/100% 100%;
}
.streak-icon-highlight {
    background-image: radial-gradient(
        circle,
        #ffb858 0%,
        #ea7519 5%,
        #ffb858 10%,
        #ea7519 15%,
        #ffb858 20%,
        #ea7519 25%,
        #ffb858 30%,
        #ea7519 35%,
        #ffb858 40%,
        white 80%,
        white 100%
    );
    background-size: 1000% 1000%;
    animation: streak-highlight 2.5s ease-out forwards;
}

.streak-icon-highlight[data-streak-secure="true"] {
    background-image: radial-gradient(
        circle,
        #ffb858 0%,
        #ea7519 10%,
        #ffb858 20%,
        #ea7519 30%,
        #ffb858 40%,
        #ea7519 50%,
        #ffb858 60%,
        #ea7519 70%,
        #ffb858 80%,
        #ea7519 90%,
        #ffb858 100%
    );
}

.narrow-parallax {
    min-height: 0;
    height: 40vw;
}

.circle-image {
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.triple-image {
    gap: 3rem;
}
.with-floating-anchor {
    position: relative;
}
.with-floating-anchor .anchor {
    position: absolute;
    top: -100px;
    left: 0;
}

.prayer-badges {
    overflow: hidden;
}
.prayer-badges__title {
    font-family: var(--pg-font-family-base);
    font-weight: 600;
    font-size: 1rem;
}
.prayer-badges__list {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    overflow-x: scroll;
}
.prayer-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
}
.prayer-badge img {
    max-width: 100px;
}
.badge-image-wrapper {
    position: relative;
}
.prayer-badge.disabled {
    opacity: 0.5;
}
.badge-times-earned {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--pg-brand-color-highlight);
    color: var(--pg-brand-color-light);
    font-size: 0.9em;
    padding: 0.6em;
    line-height: 0;
    border-radius: 100px;
}
.prayer-badge span {
    font-size: 0.9rem;
    line-height: 1.2;
}
.prayer-badge .progress-bar {
    background-color: transparent;
    border: 1px solid var(--pg-brand-color-highlight);
    width: 80%;
    margin: 0.5rem auto 0;
}
.badge-item img {
    max-width: 200px;
}
.badge-item.disabled img {
    opacity: 0.5;
}
.badge-item .progress-bar {
    padding-top: 15px;
    background-color: transparent;
    border: 1px solid var(--pg-brand-color-highlight);
    max-width: 150px;
}
.badge-item__title {
    font-size: 2rem;
}
.badge-item__description {
    font-size: 1rem;
    color: var(--pg-brand-color-highlight);
}
.badge-item__timestamp {
    font-size: 1rem;
    color: var(--pg-brand-color-highlight);
}
.badge-item__timestamp[data-empty] {
    opacity: 0;
}
.badge-slider {
    position: relative;
    overflow: hidden;
}
.badge-slides {
    display: flex;

    overflow-x: auto;
    scroll-snap-type: x mandatory;

    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.badge-slide {
    scroll-snap-align: center;
    flex: 0 0 40%;
    transform: scale(0.5);
    transition: transform 0.3s ease-out;
}
.badge-slide.active {
    transform: scale(1);
}
.badge-slide img {
    max-width: 200px;
    width: 100%;
}
.badge-buffer {
    flex: 0 0 30%;
}
