/* ===== NEW COLOR THEME ===== */
:root {
    --primary-color: #476EAE;      /* Deep blue */
    --secondary-color: #48B3AF;    /* Teal */
    --accent-color: #A7E399;       /* Light green */
    --highlight-color: #F6FF99;    /* Light yellow */
    --primary-dark: #3A5A8F;       /* Darker blue for hover states */
    --secondary-dark: #3A9B96;     /* Darker teal for hover states */
    --accent-dark: #8DD47A;        /* Darker green for hover states */
    --highlight-dark: #F0F87A;     /* Darker yellow for hover states */
    --bs-primary-rgb: 71, 110, 174; /* Bootstrap primary RGB values */
}

/* ===== CUSTOM COLOR CLASSES ===== */
.bg-primary-custom { background-color: var(--primary-color) !important; }
.bg-secondary-custom { background-color: var(--secondary-color) !important; }
.bg-accent-custom { background-color: var(--accent-color) !important; }
.bg-highlight-custom { background-color: var(--highlight-color) !important; }

.text-primary-custom { color: var(--primary-color) !important; }
.text-secondary-custom { color: var(--secondary-color) !important; }
.text-accent-custom { color: var(--accent-color) !important; }
.text-highlight-custom { color: var(--highlight-color) !important; }

.border-primary-custom { border-color: var(--primary-color) !important; }
.border-secondary-custom { border-color: var(--secondary-color) !important; }
.border-accent-custom { border-color: var(--accent-color) !important; }
.border-highlight-custom { border-color: var(--highlight-color) !important; }

/* ===== OVERRIDE EXISTING COLORS ===== */
.navy { color: var(--primary-color) !important; }
.blue { color: var(--secondary-color) !important; }
.aqua { color: var(--accent-color) !important; }

.bg-navy { background-color: var(--primary-color) !important; }
.bg-blue { background-color: var(--secondary-color) !important; }
.bg-aqua { background-color: var(--accent-color) !important; }

/* ===== BUTTON CUSTOMIZATIONS ===== */
.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.btn-secondary-custom {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.btn-secondary-custom:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: white;
}

.btn-accent-custom {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--primary-color);
}

.btn-accent-custom:hover {
    background-color: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--primary-color);
}

.btn-highlight-custom {
    background-color: var(--highlight-color);
    border-color: var(--highlight-color);
    color: var(--primary-color);
}

.btn-highlight-custom:hover {
    background-color: var(--highlight-dark);
    border-color: var(--highlight-dark);
    color: var(--primary-color);
}

/* ===== CARD CUSTOMIZATIONS ===== */
.card-primary-custom {
    border-left: 4px solid var(--primary-color);
}

.card-secondary-custom {
    border-left: 4px solid var(--secondary-color);
}

.card-accent-custom {
    border-left: 4px solid var(--accent-color);
}

/* ===== GRADIENT BACKGROUNDS ===== */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
}

.bg-gradient-accent {
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
}

.bg-gradient-rainbow {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color), var(--highlight-color));
}

/* ===== SHADOW CUSTOMIZATIONS ===== */
.shadow-primary {
    box-shadow: 0 4px 8px rgba(71, 110, 174, 0.3);
}

.shadow-secondary {
    box-shadow: 0 4px 8px rgba(72, 179, 175, 0.3);
}

.shadow-accent {
    box-shadow: 0 4px 8px rgba(167, 227, 153, 0.3);
}

.shadow-highlight {
    box-shadow: 0 4px 8px rgba(246, 255, 153, 0.3);
}

/* ===== TEXT SHADOW UTILITIES ===== */
.shadow-white {
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
}

.shadow-black {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.shadow-primary-text {
    text-shadow: 2px 2px 4px rgba(71, 110, 174, 0.5);
}

.shadow-secondary-text {
    text-shadow: 2px 2px 4px rgba(72, 179, 175, 0.5);
}

/* ===== BASIC COLOR UTILITIES ===== */
.white { color: #ffffff !important; }
.black { color: #000000 !important; }
.gray { color: #6c757d !important; }
.grey { color: #6c757d !important; }

.bg-white { background-color: #ffffff !important; }
.bg-black { background-color: #000000 !important; }
.bg-gray { background-color: #6c757d !important; }
.bg-grey { background-color: #6c757d !important; }

.text-white { color: #ffffff !important; }
.text-black { color: #000000 !important; }
.text-gray { color: #6c757d !important; }
.text-grey { color: #6c757d !important; }

.akaya {
    font-family: "Akaya Kanadaka", system-ui;
    font-weight: 400;
    font-style: normal;
}

.eotfont,
.eotfont * {
    font-family: "Kalam", cursive;
    font-weight: 400;
    font-style: normal;
}

.eotfont strong {
    font-weight: 700;
}

p.eotfont {
    text-indent: 2em;
}

.pagination li {
    text-indent: 0 !important;
}

.dropdown-menu {
    background-color: var(--highlight-color) !important;
}

.dropdown-menu li {
    text-indent: 0 !important;
}

/* ===== MENU FONT STYLING ===== */
.nav-link,
.dropdown-item,
.navbar-nav a {
    font-family: "Anaheim", sans-serif !important;
    font-weight: 700;
    font-size: 1.1em;
}

.navbar-brand {
    font-family: "Anaheim", sans-serif !important;
    font-weight: 700;
    font-size: 1.2em;
}

/* ===== PAGE TITLE STYLING ===== */
h2.fs-2.aqua {
    font-family: "Anaheim", sans-serif !important;
    font-weight: 700;
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: left;
    color: var(--accent-color) !important;
    text-shadow: none;
}

/* ===== CARD TITLE STYLING ===== */
.card__title.heading a {
    color: var(--highlight-color) !important;
    text-decoration: none;
}

.card__title.heading a:hover {
    color: var(--highlight-color-dark) !important;
    text-decoration: none;
}

/* ===== VIDEO TITLE STYLING ===== */
h6.fs-4.blue {
    color: var(--highlight-color) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

/* ===== REMINDER ICON STYLING ===== */
.reminder__icon {
    position: relative;
    transition: all 0.3s ease;
}

.reminder__icon .icon {
    transition: all 0.3s ease;
}

.reminder__icon .icon-heart {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    color: #e74c3c;
}

.reminder__icon .icon-heart-outline {
    opacity: 1;
    color: var(--primary-color);
}

/* Active states */
.reminder--status-favorited .reminder__icon .icon-heart {
    opacity: 1;
    transform: scale(1.2);
}

.reminder--status-favorited .reminder__icon .icon-heart-outline {
    opacity: 0;
}

.reminder--status-liked .reminder__icon .icon-heart {
    opacity: 1;
    color: #e74c3c;
    animation: heartPulse 0.6s ease;
}

.reminder--status-liked .reminder__icon .icon-heart-outline {
    opacity: 0;
}

/* Hover effects */
.reminder:hover .reminder__icon {
    transform: scale(1.1);
}

.reminder:hover .reminder__icon .icon-heart-outline {
    color: #e74c3c;
}

/* Heart pulse animation */
@keyframes heartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1.2); }
}


@media (max-width: 768px) {
    h2.fs-2.aqua {
        font-size: 1.25rem;
    }
}



li p.eotfont {
    text-indent: 0;
}

body * {
    font-family: "Anaheim", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Font Awesome icons should use their own font-family */
.fa, .fas, .far, .fal, .fab, .fa-solid, .fa-regular, .fa-light, .fa-brands {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 6 Brands" !important;
}

.fas, .fa-solid {
    font-weight: 900 !important;
}

/* ===== MAINTENANCE COUNTDOWN ===== */
.countdown-box {
    color: var(--highlight-color);
    background-color: var(--primary-color);
    border-radius: 0.375rem;
    padding: 0.5rem;
    font-weight: 700;
}

.highlight-shadow {
    color: var(--accent-color);
    text-shadow: 2px 2px 4px var(--highlight-color);
}

.indent {
    text-indent: 2em;
}


*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

body {
    overscroll-behavior-y: none;
    overscroll-behavior-x: none;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    text-size-adjust: none
}

ol[class],
ul[class] {
    padding: 0
}

blockquote,
body,
dd,
dl,
figcaption,
figure,
h1,
h2,
h3,
h4,
li,
ol[class],
p,
ul[class] {
    margin: 0
}

body {
    min-height: 100vh;
    scroll-behavior: smooth;

    line-height: 1.5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #F5F5FA
}

ol[class],
ul[class] {
    list-style: none
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto
}

img {
    max-width: 100%;
    height: auto;
}

.card--day img {
    width: 33.33%;
}

@media (prefers-reduced-motion:reduce) {
    * {
        -webkit-animation-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        -webkit-animation-iteration-count: 1 !important;
        animation-iteration-count: 1 !important;
        -webkit-transition-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important
    }
}

.hide {
    display: none !important
}

.container {
    width: 100%;
    max-width: calc(1108px + calc(2 * 1.5em) + 300px + 1.5em);
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

@media screen and (min-width:1025px) {
    body>.container {
        padding: 0 1.5em
    }
}

@media (min-width:1025px) {
    .has-aside {
        -ms-grid-columns: auto 300px;
        grid-template-columns: auto 300px
    }

    .has-aside>* {
        -ms-grid-column: 1;
        grid-column: 1
    }
}

@media (max-width:1025px) {
    .has-aside {
        margin-top: 0 !important
    }
}

.full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    overflow: hidden
}

@media screen and (min-width:1025px) {
    .full-width {
        padding-left: 1.5em;
        padding-right: 1.5em
    }
}

@media screen and (min-width:1025px) {

    .lift,
    .lift-big {
        position: relative;
        margin-top: -6em
    }

    .lift-big {
        margin-top: -27.75em
    }
}

@media screen and (min-width:1025px) {
    .drop {
        position: relative;
        margin-top: 4.5em
    }
}

.grid {
    display: -ms-grid;
    display: grid;
    gap: 1.5em
}

@media screen and (min-width:1025px) {
    .grid.content {
        grid-column-gap: 3em
    }
}

@media screen and (max-width:1025px) {
    .grid {
        display: block
    }

    .grid>*+* {
        margin-top: 1.5em
    }
}

@media screen and (min-width:768px) {

    .grid--2-col,
    .grid--3-col {
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr))
    }
}

.screen-reader-text,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: left
}

.heading,
.subheading {
    font-size: 1.5em;
    color: #37474F;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1
}

.heading a,
.subheading a {
    color: var(--primary-color)
}

h3 {
    font-weight: 400
}

a {
    -webkit-text-decoration: underline solid currentColor;
    text-decoration: underline solid currentColor;
    -webkit-transition: -webkit-text-decoration 0.2s ease;
    transition: -webkit-text-decoration 0.2s ease;
    transition: text-decoration 0.2s ease;
    transition: text-decoration 0.2s ease, -webkit-text-decoration 0.2s ease
}

a:is(:hover, :focus, :active) {
    -webkit-text-decoration: underline solid transparent;
    text-decoration: underline solid transparent
}

.heading--border {
    border-bottom: 1px solid #F5F5F5;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em
}

.subheading {
    font-size: 1.1em;
    color: #607D8B
}

.heading a,
.subheading a {
    text-decoration: none
}

:where(.content) {
    font-size: 1.1em;
    color: #455A64;
    line-height: 1.75
}

:where(.content) a {
    color: var(--primary-color)
}

:where(.content) h2 {
    margin-top: 1.5em;
    line-height: 1.4;
    font-weight: 600
}

:where(.content) h3 {
    margin-top: 1.5em;
    margin-bottom: 0;
    line-height: 1.4;
    font-weight: 600
}


:where(.content) li {
    margin-bottom: 0.75em
}

:where(.content) main h3.heading {
    font-size: 1.1em
}

:where(.content) main h3.heading+p {
    margin-top: 0.5em
}

:where(.content) main p+h3.heading {
    margin-top: 1.5em
}

:where(.content) main h4.heading {
    font-size: 1rem
}

:where(.content) main h4.heading strong {
    font-weight: 600
}

:where(.content) main h4.heading+p {
    margin-top: 0.5em
}

:where(.content) strong {
    font-weight: 500
}

@media screen and (max-width:1025px) {
    :where(.content) {
        margin: 0 0.75em;
        padding: 1em !important;
        line-height: 2em;
        font-size: 1em
    }

    :where(.content) main {
        font-size: 1.1em
    }
}

.desktop-only,
.full-size-only,
.hide-on-desktop,
.hide-on-mobile,
.hide-on-tablet,
.mobile-only,
.print-only {
    display: none !important
}

@media screen and (min-width:576px) {
    .hide-on-mobile {
        display: initial !important
    }
}

@media screen and (min-width:768px) {
    .hide-on-tablet {
        display: initial !important
    }
}

@media screen and (max-width:1025px) {
    .hide-on-desktop {
        display: initial !important
    }
}

@media screen and (min-width:1025px) {
    .desktop-only {
        display: initial !important
    }
}

@media screen and (max-width:768px) {
    .mobile-only {
        display: initial !important
    }
}

@media screen and (min-width:1365px) {
    .full-size-only {
        display: initial !important
    }
}

@media print {
    .print-only {
        display: initial !important
    }
}

.pad {
    padding: 0.75em
}

@media screen and (max-width:768px) {
    .pad {
        padding-left: 0.75em;
        padding-right: 0.75em
    }
}

.nofloat {
    float: none !important;
    max-width: 100% !important;
    clear: both !important
}

.linked,
input[type=button],
input[type=submit],
select {
    cursor: pointer
}

div[spottype=dynamic_mc] {
    display: none !important
}

div[style="text-align: center; "]>* {
    margin: 0 auto
}


.days-day-banner {
    border-radius: inherit;
    position: relative
}

.days-day-banner .bannerad__container {
    position: absolute;
    text-align: center;
    width: 100%;
    bottom: 60px;
    margin-left: auto;
    z-index: 1
}

@media (min-width:1025px) {
    .days-day-banner .bannerad__container {
        bottom: unset;
        top: 1em;
        left: 1em
    }

    .days-day-banner .bannerad__container [align=center] {
        text-align: left
    }
}

.days-day-banner .bannerad__container .bannerad__unit {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0
}

body {
    --use: 20px;
    --doNotUse: 0px;
    --fsAncillary: var(--doNotUse)
}

@media only screen and (min-device-width:768px) {
    [class*=-mobile-interrupt-] {
        display: none
    }

    [class*=-mobile-content-interrupt-] {
        display: none
    }

    [class*=-mobile-content-interrupt] {
        display: none
    }
}

.wavy {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: -1
}

.eotb {
    width: 100%;
    position: absolute;
    bottom: 0;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
    -webkit-mask-size: 110% 114px;
    mask-size: 110% 114px;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    height: 114px
}

.eotb--back {
    opacity: 0.33;
    -webkit-mask-image: url('data:image/svg+xml,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080" preserveAspectRatio="none"><path d="M1920,1080v-50.67C1680.111,549,1417.455,438.12,1158.672,696.87c-68.801,68.761-134.769,181.08-204.177,238.141 c-94.399,77.67-179.968-110.16-264.896-318.601c-94.288-231.39-187.2-393.569-291.52-346.41C259.632,333,122.143,681.391,0,1033.29V1080H1920z"/></svg>');
    mask-image: url('data:image/svg+xml,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080" preserveAspectRatio="none"><path d="M1920,1080v-50.67C1680.111,549,1417.455,438.12,1158.672,696.87c-68.801,68.761-134.769,181.08-204.177,238.141 c-94.399,77.67-179.968-110.16-264.896-318.601c-94.288-231.39-187.2-393.569-291.52-346.41C259.632,333,122.143,681.391,0,1033.29V1080H1920z"/></svg>')
}

.eotb--middle {
    opacity: 0.5;
    height: 140px;
    -webkit-mask-size: 100% 140px;
    mask-size: 100% 140px;
    -webkit-mask-image: url('data:image/svg+xml,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080" preserveAspectRatio="none"><path d="M1920,1080V937.71c-20.8-189.989-44.225-369.449-76.305-506.159C1760.943,78.571,1656,81,1560.672,255.781 c-49.84,91.351-96.145,234.63-143.473,358.2c-65.472,171-135.567,414-209.328,447.029c-58.016,25.65-113.439-84.779-157.76-284.039c-50.832-228.51-99.712-558-165.808-657c-64.704-97.11-130.16,60.21-190.608,218.52c-60.448,158.311-120.256,351-187.072,387.45c-95.567,52.65-181.248-205.92-270.239-349.56c-48.32-77.94-94.4-55.53-139.345,67.5C61.151,541.891,20.239,686.25,0,887.04V1080 H1920z"/></svg>');
    mask-image: url('data:image/svg+xml,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080" preserveAspectRatio="none"><path d="M1920,1080V937.71c-20.8-189.989-44.225-369.449-76.305-506.159C1760.943,78.571,1656,81,1560.672,255.781 c-49.84,91.351-96.145,234.63-143.473,358.2c-65.472,171-135.567,414-209.328,447.029c-58.016,25.65-113.439-84.779-157.76-284.039c-50.832-228.51-99.712-558-165.808-657c-64.704-97.11-130.16,60.21-190.608,218.52c-60.448,158.311-120.256,351-187.072,387.45c-95.567,52.65-181.248-205.92-270.239-349.56c-48.32-77.94-94.4-55.53-139.345,67.5C61.151,541.891,20.239,686.25,0,887.04V1080 H1920z"/></svg>')
}

.eotb--front {
    -webkit-mask-image: url('data:image/svg+xml,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080" preserveAspectRatio="none"><path d="M1683.616,703.619c-88.991-143.64-174.672-402.21-270.239-349.56c-66.816,36.45-126.624,229.14-187.072,387.45c-60.448,158.31-125.904,315.63-190.608,218.52c-66.096-99-114.976-428.49-165.808-657C825.568,103.77,770.144-6.66,712.129,18.99C638.368,52.02,568.272,295.02,502.801,466.02c-47.328,123.57-93.633,266.85-143.473,358.2C264,999,159.056,1001.43,76.304,648.449C44.224,511.74,20.8,332.28,0,142.29V1080h1920V192.96c-20.239,200.79-61.151,345.149-97.039,443.159C1778.016,759.15,1731.936,781.56,1683.616,703.619z"/></svg>');
    mask-image: url('data:image/svg+xml,<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080" preserveAspectRatio="none"><path d="M1683.616,703.619c-88.991-143.64-174.672-402.21-270.239-349.56c-66.816,36.45-126.624,229.14-187.072,387.45c-60.448,158.31-125.904,315.63-190.608,218.52c-66.096-99-114.976-428.49-165.808-657C825.568,103.77,770.144-6.66,712.129,18.99C638.368,52.02,568.272,295.02,502.801,466.02c-47.328,123.57-93.633,266.85-143.473,358.2C264,999,159.056,1001.43,76.304,648.449C44.224,511.74,20.8,332.28,0,142.29V1080h1920V192.96c-20.239,200.79-61.151,345.149-97.039,443.159C1778.016,759.15,1731.936,781.56,1683.616,703.619z"/></svg>');
    background: white !important;
}

@media screen and (min-width:768px) {
    .wavy--footer~.footer__main {
        padding-top: 11em;
        margin-top: -6em
    }
}

.wavy--banner .eotb {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color))
}

@media screen and (max-width:1025px) {
    .wavy--banner {
        width: 300%
    }
}

.wavy--footer {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    top: -6em;
    position: relative;
    z-index: -2
}

@media screen and (max-width:768px) {
    .wavy--footer {
        display: none
    }
}

.wavy--footer .eotb {
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color))
}

.wavy--footer~.footer__main,
.wavy--footer~.footer__secondary {
    background: linear-gradient(135deg, var(--accent-color), var(--highlight-color));
    border-top: none
}

.wavy--footer~.footer__secondary {
    border-top: 1px solid #D2CEDC
}

.calendar-cta {
    height: 100% !important
}

.icon-basket:before {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 22q-.825 0-1.412-.587Q5 20.825 5 20q0-.825.588-1.413Q6.175 18 7 18t1.412.587Q9 19.175 9 20q0 .825-.588 1.413Q7.825 22 7 22Zm10 0q-.825 0-1.412-.587Q15 20.825 15 20q0-.825.588-1.413Q16.175 18 17 18t1.413.587Q19 19.175 19 20q0 .825-.587 1.413Q17.825 22 17 22ZM7 17q-1.125 0-1.7-.988-.575-.987-.05-1.962L6.6 11.6 3 4H1.975q-.425 0-.7-.288Q1 3.425 1 3t.288-.713Q1.575 2 2 2h1.625q.275 0 .525.15t.375.425L5.2 4h14.75q.675 0 .925.5t-.025 1.05l-3.55 6.4q-.275.5-.725.775-.45.275-1.025.275H8.1L7 15h11.025q.425 0 .7.287.275.288.275.713t-.288.712Q18.425 17 18 17Z"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7 22q-.825 0-1.412-.587Q5 20.825 5 20q0-.825.588-1.413Q6.175 18 7 18t1.412.587Q9 19.175 9 20q0 .825-.588 1.413Q7.825 22 7 22Zm10 0q-.825 0-1.412-.587Q15 20.825 15 20q0-.825.588-1.413Q16.175 18 17 18t1.413.587Q19 19.175 19 20q0 .825-.587 1.413Q17.825 22 17 22ZM7 17q-1.125 0-1.7-.988-.575-.987-.05-1.962L6.6 11.6 3 4H1.975q-.425 0-.7-.288Q1 3.425 1 3t.288-.713Q1.575 2 2 2h1.625q.275 0 .525.15t.375.425L5.2 4h14.75q.675 0 .925.5t-.025 1.05l-3.55 6.4q-.275.5-.725.775-.45.275-1.025.275H8.1L7 15h11.025q.425 0 .7.287.275.288.275.713t-.288.712Q18.425 17 18 17Z"/></svg>')
}

.icon-calendar-alt:before {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 14q-.425 0-.712-.288Q11 13.425 11 13t.288-.713Q11.575 12 12 12t.713.287Q13 12.575 13 13t-.287.712Q12.425 14 12 14Zm-4 0q-.425 0-.713-.288Q7 13.425 7 13t.287-.713Q7.575 12 8 12t.713.287Q9 12.575 9 13t-.287.712Q8.425 14 8 14Zm8 0q-.425 0-.712-.288Q15 13.425 15 13t.288-.713Q15.575 12 16 12t.712.287Q17 12.575 17 13t-.288.712Q16.425 14 16 14Zm-4 4q-.425 0-.712-.288Q11 17.425 11 17t.288-.712Q11.575 16 12 16t.713.288Q13 16.575 13 17t-.287.712Q12.425 18 12 18Zm-4 0q-.425 0-.713-.288Q7 17.425 7 17t.287-.712Q7.575 16 8 16t.713.288Q9 16.575 9 17t-.287.712Q8.425 18 8 18Zm8 0q-.425 0-.712-.288Q15 17.425 15 17t.288-.712Q15.575 16 16 16t.712.288Q17 16.575 17 17t-.288.712Q16.425 18 16 18ZM5 22q-.825 0-1.413-.587Q3 20.825 3 20V6q0-.825.587-1.412Q4.175 4 5 4h1V3q0-.425.287-.713Q6.575 2 7 2t.713.287Q8 2.575 8 3v1h8V3q0-.425.288-.713Q16.575 2 17 2t.712.287Q18 2.575 18 3v1h1q.825 0 1.413.588Q21 5.175 21 6v14q0 .825-.587 1.413Q19.825 22 19 22Zm0-2h14V10H5v10Z"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 14q-.425 0-.712-.288Q11 13.425 11 13t.288-.713Q11.575 12 12 12t.713.287Q13 12.575 13 13t-.287.712Q12.425 14 12 14Zm-4 0q-.425 0-.713-.288Q7 13.425 7 13t.287-.713Q7.575 12 8 12t.713.287Q9 12.575 9 13t-.287.712Q8.425 14 8 14Zm8 0q-.425 0-.712-.288Q15 13.425 15 13t.288-.713Q15.575 12 16 12t.712.287Q17 12.575 17 13t-.288.712Q16.425 14 16 14Zm-4 4q-.425 0-.712-.288Q11 17.425 11 17t.288-.712Q11.575 16 12 16t.713.288Q13 16.575 13 17t-.287.712Q12.425 18 12 18Zm-4 0q-.425 0-.713-.288Q7 17.425 7 17t.287-.712Q7.575 16 8 16t.713.288Q9 16.575 9 17t-.287.712Q8.425 18 8 18Zm8 0q-.425 0-.712-.288Q15 17.425 15 17t.288-.712Q15.575 16 16 16t.712.288Q17 16.575 17 17t-.288.712Q16.425 18 16 18ZM5 22q-.825 0-1.413-.587Q3 20.825 3 20V6q0-.825.587-1.412Q4.175 4 5 4h1V3q0-.425.287-.713Q6.575 2 7 2t.713.287Q8 2.575 8 3v1h8V3q0-.425.288-.713Q16.575 2 17 2t.712.287Q18 2.575 18 3v1h1q.825 0 1.413.588Q21 5.175 21 6v14q0 .825-.587 1.413Q19.825 22 19 22Zm0-2h14V10H5v10Z"/></svg>')
}

.icon-search:before {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.9 20.3-5.6-5.6q-.75.6-1.725.95Q10.6 16 9.5 16q-2.725 0-4.612-1.887Q3 12.225 3 9.5q0-2.725 1.888-4.613Q6.775 3 9.5 3t4.613 1.887Q16 6.775 16 9.5q0 1.1-.35 2.075-.35.975-.95 1.725l5.625 5.625q.275.275.275.675t-.3.7q-.275.275-.7.275-.425 0-.7-.275ZM9.5 14q1.875 0 3.188-1.312Q14 11.375 14 9.5q0-1.875-1.312-3.188Q11.375 5 9.5 5 7.625 5 6.312 6.312 5 7.625 5 9.5q0 1.875 1.312 3.188Q7.625 14 9.5 14Z"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m18.9 20.3-5.6-5.6q-.75.6-1.725.95Q10.6 16 9.5 16q-2.725 0-4.612-1.887Q3 12.225 3 9.5q0-2.725 1.888-4.613Q6.775 3 9.5 3t4.613 1.887Q16 6.775 16 9.5q0 1.1-.35 2.075-.35.975-.95 1.725l5.625 5.625q.275.275.275.675t-.3.7q-.275.275-.7.275-.425 0-.7-.275ZM9.5 14q1.875 0 3.188-1.312Q14 11.375 14 9.5q0-1.875-1.312-3.188Q11.375 5 9.5 5 7.625 5 6.312 6.312 5 7.625 5 9.5q0 1.875 1.312 3.188Q7.625 14 9.5 14Z"/></svg>')
}

.icon-progress-activity:before {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M480-80q-82 0-155-31.5t-127.5-86Q143-252 111.5-325T80-480q0-83 31.5-155.5t86-127Q252-817 325-848.5T480-880q17 0 28.5 11.5T520-840q0 17-11.5 28.5T480-800q-133 0-226.5 93.5T160-480q0 133 93.5 226.5T480-160q133 0 226.5-93.5T800-480q0-17 11.5-28.5T840-520q17 0 28.5 11.5T880-480q0 82-31.5 155t-86 127.5q-54.5 54.5-127 86T480-80Z"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24" viewBox="0 -960 960 960" width="24"><path d="M480-80q-82 0-155-31.5t-127.5-86Q143-252 111.5-325T80-480q0-83 31.5-155.5t86-127Q252-817 325-848.5T480-880q17 0 28.5 11.5T520-840q0 17-11.5 28.5T480-800q-133 0-226.5 93.5T160-480q0 133 93.5 226.5T480-160q133 0 226.5-93.5T800-480q0-17 11.5-28.5T840-520q17 0 28.5 11.5T880-480q0 82-31.5 155t-86 127.5q-54.5 54.5-127 86T480-80Z"/></svg>');
    -webkit-animation: progress-activity 1s infinite linear;
    animation: progress-activity 1s infinite linear
}

@-webkit-keyframes progress-activity {
    0% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg)
    }

    40% {
        -webkit-transform: rotateZ(90deg);
        transform: rotateZ(90deg)
    }

    65% {
        -webkit-transform: rotateZ(180deg);
        transform: rotateZ(180deg)
    }

    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg)
    }
}

@keyframes progress-activity {
    0% {
        -webkit-transform: rotateZ(0deg);
        transform: rotateZ(0deg)
    }

    40% {
        -webkit-transform: rotateZ(90deg);
        transform: rotateZ(90deg)
    }

    65% {
        -webkit-transform: rotateZ(180deg);
        transform: rotateZ(180deg)
    }

    to {
        -webkit-transform: rotateZ(360deg);
        transform: rotateZ(360deg)
    }
}

.header {
    top: 0;
    width: 100%;
    z-index: 3000;
    -webkit-transition: background 0.2s ease-out, boxShadow 0.2s ease-out;
    transition: background 0.2s ease-out, boxShadow 0.2s ease-out
}

.header nav[aria-label=Primary] {
    position: relative
}

.logo {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-right: auto
}

.logo a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.logo picture {
    overflow: visible
}

.logo img {
    -webkit-filter: grayscale(1) saturate(0) invert(1) brightness(5) drop-shadow(0 0 2px rgba(128, 128, 128, 0.4));
    filter: grayscale(1) saturate(0) invert(1) brightness(5) drop-shadow(0 0 2px rgba(128, 128, 128, 0.4));
    max-width: unset
}

.logo img {
    height: 44px;
    width: 214px
}

.buns:before {
    --offset: -0.7em
}

.buns:after {
    --offset: 0.7em
}

@media screen and (max-width:1025px) {
    .sidebar {
        display: none !important
    }
}

@media screen and (min-width:1025px) {
    aside.sidebar {
        -ms-grid-column: 2;
        grid-column: 2;
        -ms-grid-row: 1;
        grid-row-start: 1;
        -ms-grid-rows: -webkit-min-content auto;
        -ms-grid-rows: min-content auto;
        grid-template-rows: -webkit-min-content auto;
        grid-template-rows: min-content auto;
        margin-top: 1.5em;
        padding-bottom: 1.5em;
        position: relative
    }

    aside.sidebar>* {
        width: 300px
    }

    aside.sidebar .calendar {
        min-height: 416px
    }

    aside.sidebar .sidebar__sticky-series>div {
        position: sticky;
        height: -webkit-min-content;
        height: -moz-min-content;
        height: min-content;
        top: 30px;
        z-index: 1000
    }

    aside.sidebar .sidebar__sticky-series>div .sidebar__unit {
        gap: 1.5em;
        height: -webkit-min-content !important;
        height: -moz-min-content !important;
        height: min-content !important;
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: start !important
    }
}

@media screen and (max-height:780px) {
    aside.sidebar .sidebar__sticky-series>div {
        top: 0
    }
}

.btn {
    font-size: 0.75em;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background-repeat: no-repeat;
    background-position: center center
}

.btn:focus {
    outline: 0
}

.btn--ghost--purple {
    background: none;
    color: var(--primary-color);
    border: 1px solid var(--primary-color)
}

.btn--ghost--purple:is(:hover, :focus) {
    background-color: var(--primary-color);
    color: #FFFFFF
}

.btn--ghost--white {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.65)
}

.btn--ghost--white:is(:hover, :focus) {
    background-color: #FFFFFF;
    border-color: #FFFFFF;
    color: #673AB7
}

.btn--ghost--red {
    background: none;
    color: #F44336;
    border: 1px solid #F44336
}

.btn--ghost--red:is(:hover, :focus) {
    background-color: #EF5350;
    border-color: #EF5350;
    color: #FFFFFF
}

.btn--solid--purple {
    background-color: var(--primary-color);
    color: #FFFFFF;
    border: 1px solid var(--primary-color)
}

.btn--solid--purple:is(:hover, :focus) {
    color: #FFFFFF;
    background-color: var(--primary-dark)
}

.btn--bright--purple {
    background-color: var(--secondary-color);
    color: #FFFFFF;
    border: 1px solid var(--secondary-color)
}

.btn--bright--purple:is(:hover, :focus) {
    color: #FFFFFF;
    background-color: var(--secondary-dark)
}

.btn--solid--pink {
    background-color: var(--accent-color);
    color: var(--primary-color);
    border: 1px solid var(--accent-color)
}

.btn--solid--pink:is(:hover, :focus) {
    color: var(--primary-color);
    background-color: var(--accent-dark)
}

.btn--solid--green {
    background-color: var(--highlight-color);
    color: var(--primary-color);
    border: 1px solid var(--highlight-color)
}

.btn--solid--green:is(:hover, :focus) {
    color: var(--primary-color);
    background-color: var(--highlight-dark)
}

.btn--solid--red {
    background-color: #F44336;
    color: #FFFFFF;
    border: 1px solid #F44336
}

.btn--solid--red:is(:hover, :focus) {
    color: #FFFFFF;
    background-color: #E57373
}

.btn--solid--white {
    background-color: #FFFFFF;
    color: #673AB7
}

.btn--solid--white:is(:hover, :focus) {
    color: #673AB7
}

.btn--tint--purple {
    background-color: var(--secondary-color);
    color: #FFFFFF;
    border: 1px solid var(--accent-color)
}

.btn--tint--purple:is(:hover, :focus) {
    color: #FFFFFF;
    background-color: var(--secondary-dark);
    border-color: var(--accent-dark)
}

.btn--wide {
    width: 100%
}

.icon-heart:before {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.65 19.8-1.725-1.575q-2.65-2.425-4.787-4.813Q2 11.025 2 8.15 2 5.8 3.575 4.225 5.15 2.65 7.5 2.65q1.325 0 2.5.562 1.175.563 2 1.538.825-.975 2-1.538 1.175-.562 2.5-.562 2.35 0 3.925 1.575Q22 5.8 22 8.15q0 2.875-2.125 5.275-2.125 2.4-4.825 4.825l-1.7 1.55q-.575.525-1.35.525-.775 0-1.35-.525Z"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.65 19.8-1.725-1.575q-2.65-2.425-4.787-4.813Q2 11.025 2 8.15 2 5.8 3.575 4.225 5.15 2.65 7.5 2.65q1.325 0 2.5.562 1.175.563 2 1.538.825-.975 2-1.538 1.175-.562 2.5-.562 2.35 0 3.925 1.575Q22 5.8 22 8.15q0 2.875-2.125 5.275-2.125 2.4-4.825 4.825l-1.7 1.55q-.575.525-1.35.525-.775 0-1.35-.525Z"/></svg>')
}

.icon-heart-outline:before {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.65 19.8-1.725-1.575q-2.65-2.425-4.787-4.813Q2 11.025 2 8.15 2 5.8 3.575 4.225 5.15 2.65 7.5 2.65q1.325 0 2.5.562 1.175.563 2 1.538.825-.975 2-1.538 1.175-.562 2.5-.562 2.35 0 3.925 1.575Q22 5.8 22 8.15q0 2.875-2.125 5.275-2.125 2.4-4.825 4.825l-1.7 1.55q-.575.55-1.35.55-.775 0-1.35-.55Zm.4-13.05q-.725-1.025-1.55-1.563-.825-.537-2-.537-1.5 0-2.5 1t-1 2.5q0 1.3.925 2.762.925 1.463 2.213 2.838 1.287 1.375 2.65 2.575Q11.15 17.525 12 18.3q.85-.775 2.213-1.975 1.362-1.2 2.65-2.575 1.287-1.375 2.212-2.838Q20 9.45 20 8.15q0-1.5-1-2.5t-2.5-1q-1.175 0-2 .537-.825.538-1.55 1.563-.175.25-.425.375T12 7.25q-.275 0-.525-.125t-.425-.375Zm.95 4.725Z"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="m10.65 19.8-1.725-1.575q-2.65-2.425-4.787-4.813Q2 11.025 2 8.15 2 5.8 3.575 4.225 5.15 2.65 7.5 2.65q1.325 0 2.5.562 1.175.563 2 1.538.825-.975 2-1.538 1.175-.562 2.5-.562 2.35 0 3.925 1.575Q22 5.8 22 8.15q0 2.875-2.125 5.275-2.125 2.4-4.825 4.825l-1.7 1.55q-.575.55-1.35.55-.775 0-1.35-.55Zm.4-13.05q-.725-1.025-1.55-1.563-.825-.537-2-.537-1.5 0-2.5 1t-1 2.5q0 1.3.925 2.762.925 1.463 2.213 2.838 1.287 1.375 2.65 2.575Q11.15 17.525 12 18.3q.85-.775 2.213-1.975 1.362-1.2 2.65-2.575 1.287-1.375 2.212-2.838Q20 9.45 20 8.15q0-1.5-1-2.5t-2.5-1q-1.175 0-2 .537-.825.538-1.55 1.563-.175.25-.425.375T12 7.25q-.275 0-.525-.125t-.425-.375Zm.95 4.725Z"/></svg>')
}

@media screen and (hover:none) {
    html {
        overflow-x: hidden
    }
}

.card--day .notification {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-box-shadow: 0 1em 1em -0.5em rgba(60, 55, 125, 0.15);
    box-shadow: 0 1em 1em -0.5em rgba(60, 55, 125, 0.15);
    color: white;
    opacity: 0;
    -ms-grid-column-align: center;
    justify-self: center;
    position: absolute;
    z-index: 1
}

.card--day .notification .icon {
    margin-right: 0.5em
}

.card--day .notification--add {
    background-color: #66bb6a
}

.card--day .notification--remove {
    background-color: #F44336
}

.card--day .notification--animate {
    -webkit-animation: fade 3s forwards cubic-bezier(0.79, 0.33, 0.14, 0.53);
    animation: fade 3s forwards cubic-bezier(0.79, 0.33, 0.14, 0.53);
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s
}

@media (prefers-reduced-motion:no-preference) {
    @-webkit-keyframes fade {
        0% {
            -webkit-transform: translate3d(0, 1.5em, 0);
            transform: translate3d(0, 1.5em, 0)
        }

        10%,
        90% {
            opacity: 1;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0)
        }

        to {
            -webkit-transform: translate3d(0, -1.5em, 0);
            transform: translate3d(0, -1.5em, 0)
        }
    }

    @keyframes fade {
        0% {
            -webkit-transform: translate3d(0, 1.5em, 0);
            transform: translate3d(0, 1.5em, 0)
        }

        10%,
        90% {
            opacity: 1;
            -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0)
        }

        to {
            -webkit-transform: translate3d(0, -1.5em, 0);
            transform: translate3d(0, -1.5em, 0)
        }
    }
}

@media (prefers-reduced-motion) {
    @-webkit-keyframes fade {

        10%,
        90% {
            opacity: 1
        }
    }

    @keyframes fade {

        10%,
        90% {
            opacity: 1
        }
    }
}

.pill {
    border-radius: 0.5em;
    color: #FFFFFF;
    padding: 0.4em 1em
}

.pill--dark {
    background: rgba(38, 50, 56, 0.5);
}

.pill--primary {
    background: linear-gradient(155deg, var(--primary-color), var(--secondary-color))
}

.pill--secondary {
    background: -webkit-gradient(linear, left top, right top, from(var(--accent-color)), to(var(--highlight-color)));
    background: linear-gradient(90deg, var(--accent-color), var(--highlight-color))
}

.icon-chevron-right:before {
    -webkit-mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.7 17.3q-.275-.275-.275-.7 0-.425.275-.7l3.9-3.9-3.9-3.9q-.275-.275-.275-.7 0-.425.275-.7.275-.275.7-.275.425 0 .7.275l4.6 4.6q.15.15.213.325.062.175.062.375t-.062.375q-.063.175-.213.325l-4.6 4.6q-.275.275-.7.275-.425 0-.7-.275Z"/></svg>');
    mask-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M8.7 17.3q-.275-.275-.275-.7 0-.425.275-.7l3.9-3.9-3.9-3.9q-.275-.275-.275-.7 0-.425.275-.7.275-.275.7-.275.425 0 .7.275l4.6 4.6q.15.15.213.325.062.175.062.375t-.062.375q-.063.175-.213.325l-4.6 4.6q-.275.275-.7.275-.425 0-.7-.275Z"/></svg>')
}

.card {
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 49%;
    flex: 1 1 49%;
    position: relative;
    -webkit-box-shadow: 0px 10px 20px rgba(60, 55, 125, 0.15);
    box-shadow: 0px 10px 20px rgba(60, 55, 125, 0.15);
    padding: 0;
}

.sidebar .card {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content
}

.content .card {
    -webkit-box-shadow: 0px 3px 10px rgba(60, 55, 125, 0.1);
    box-shadow: 0px 3px 10px rgba(60, 55, 125, 0.1)
}

.card:not(.card--hero) {
    contain-intrinsic-size: 282px
}

@media (max-width:768px) {
    .card:not(.card--hero) {
        contain-intrinsic-size: 200px
    }
}

.card .edge-images-container {
    border-radius: inherit;
    display: unset
}

.card .edge-images-container img {
    height: 100%;
    width: 100%
}

.card__media {
    border-radius: inherit;
    overflow: hidden;
    background-color: #a1a1a1
}

@media screen and (min-width:1025px) {

    body.archive .banner .card__media,
    body.single-post .banner .card__media {
        border-radius: 0;
        border-top-right-radius: inherit
    }
}

.card__media img {
    border-top-right-radius: inherit;
    -webkit-filter: saturate(0.98);
    filter: saturate(0.98);
    -o-object-fit: cover;
    object-fit: cover
}

body.archive .banner .card__media img,
body.single-days .banner .card__media img,
body.single-post .banner .card__media img {
    -webkit-filter: saturate(1) contrast(1.1);
    filter: saturate(1) contrast(1.1)
}

.card__title {
    -ms-flex-item-align: baseline;
    align-self: baseline;
    font-size: 1.8rem;
    margin-bottom: 0
}

@media (min-width:768px) {
    .card__title {
        font-size: 2.2rem
    }
}

.card {
    display: -ms-grid;
    display: grid
}

.card .content,
.card .card__media {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 1;
    grid-row: 1
}

.card .content {
    -ms-flex-item-align: end;
    align-self: flex-end
}

.content {
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(20%, rgba(0, 0, 0, 0.8)), color-stop(70%, rgba(255, 255, 255, 0)));
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 20%, rgba(255, 255, 255, 0) 70%);
    border-bottom-left-radius: inherit;
    border-bottom-right-radius: inherit;
    padding: min(max(1rem, 2vw), 1.5rem);
    z-index: 1
}

@media (max-width:768px) {
    .content {
        background-image: -webkit-gradient(linear, left bottom, left top, color-stop(20%, rgba(0, 0, 0, 0.8)), color-stop(70%, rgba(255, 255, 255, 0)));
        background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 20%, rgba(255, 255, 255, 0) 70%)
    }
}

.content .card__text {
    padding-top: 5em;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 0, 0, 0.4)
}

@media (max-width:768px) {
    .content .card__text {
        line-height: 1.15
    }
}

.content .card__text p {
    font-size: 1.1rem;
    line-height: 1.15
}

@media (max-width:768px) {
    .content .card__text p {
        font-size: 1rem;
        line-height: 1.25
    }
}

@media (min-width:768px) {
    .banner .content .card__text p {
        font-size: 1.3rem
    }
}

.content .heading {
    line-height: 1
}

.content .card__byline,
.content .heading,
.content .heading a,
.content .subheading {
    color: #fff
}

.content .heading,
.content .heading a {
    font-weight: 600
}

@media screen and (max-width:480px) {
    .content .heading .space:after {
        content: ' ';
        display: inline-block
    }
}

.content .subheading {
    font-size: 1em
}

.content .card__excerpt {
    font-size: 1em;
    color: #455A64;
    line-height: 1.8em;
    margin: 0.75em 0
}

.content .card__byline {
    font-size: 1em;
    font-weight: normal;
    margin-top: 0.25em
}

@media screen and (max-width:480px) {
    .content .card__text {
        font-size: 1em
    }

    .content .heading {
        line-height: 1
    }
}

@media screen and (max-width:480px) {
    .card .card__media {
        height: 100%;
        position: absolute;
        width: 100%
    }

    .card .content {
        position: relative
    }
}

.card--day {
    border-radius: 0.6em;
    color: #FFFFFF
}

.card--day.linked {
    -webkit-box-shadow: 0 0.8em 1em -0.5em rgba(60, 55, 125, 0.5);
    box-shadow: 0 0.8em 1em -0.5em rgba(60, 55, 125, 0.5)
}

.card--day.linked .card__text {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: end;
    display: -ms-grid;
    display: grid
}

.card--day.linked .card__text>* {
    -ms-grid-column: 1;
    grid-column: 1
}

.card--day.linked .card__text .icon {
    -ms-grid-column: 2;
    grid-column: 2;
    line-height: 1;
    margin-left: auto
}

.card--day.linked .card__text .icon:before {
    height: 1.8em;
    margin-right: 0;
    -webkit-mask-size: 2.5em;
    mask-size: 2.5em;
    width: 1.5em
}

.card--day.linked p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

.card--day .content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%
}

.card--day .card__text {
    margin-top: auto
}

.card--day .card__text p {
    margin-top: 0.5em
}

.card--day .card__text .btn {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    font-size: 0.8rem;
    font-weight: 600;
    gap: 1rem;
    margin-top: 1em;
    margin-right: auto;
    text-align: start;
    text-decoration: none;
    text-transform: uppercase
}

@media screen and (max-width:768px) {
    .card--day .card__text .btn--learn-more {
        width: 100%;
        font-size: 90%
    }
}

.linked:is(:hover, :focus) .card__text .btn {
    background-color: #7E57C2
}

.card--hero {
    border-radius: 1em
}

@media screen and (min-width:576px) {
    .section--micro .card__title {
        font-size: 1.628rem
    }
}

@media screen and (min-width:768px) {
    :where(.card--hero, .banner .card--day) .card__text .card__title {
        font-size: 3.75rem
    }

    :where(.card--hero, .banner .card--day) .card__text p {
        width: 80%
    }
}

.card__bar {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    display: -ms-grid;
    display: grid;
    gap: 0.5em 1.5em
}

.card__bar .pill {
    -ms-grid-column: 1;
    grid-column: 1;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content
}

.card__bar .reminder {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
    margin-left: auto
}

@media screen and (min-width:768px) {
    .card__bar {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        gap: 0.5em
    }

    .card__bar .pill {
        height: 100%
    }
}

.form__controls {
    -ms-grid-column: 2;
    grid-column: 2;
    margin-top: 1.5em;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 0.75em 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 0.75em
}

.form .btn {
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.1);
    padding: 0.9em 1em;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 0.9em
}

@media screen and (max-width:1025px) {
    .toggle {
        margin-top: 0.5em
    }
}

.switch {
    position: relative;
    width: 45px
}

input[disabled].btn {
    cursor: default !important
}

input[disabled].btn:is(:hover, :focus) {
    background-color: inherit !important;
    color: inherit !important;
    opacity: 1 !important
}

input,
textarea {
    font-size: 0.8em;
    border-radius: 5px;
    padding: 0.5em 1em;
    border: 1px #E0E0E0 solid
}

textarea {
    padding: 1em 2em
}

.card--form {
    background-color: #fff;
    border-radius: 5px;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 49%;
    flex: 1 1 49%;
    position: relative;
    -webkit-box-shadow: 0px 10px 20px rgba(60, 55, 125, 0.15);
    box-shadow: 0px 10px 20px rgba(60, 55, 125, 0.15);
    display: -ms-grid;
    display: grid;
    padding: 1.5em
}

@media screen and (min-width:1025px) {
    .modal__close {
        right: 0.4em;
        top: 0.4em
    }
}

.icon:before {
    --icon-size: 1.2em;
    background-color: currentColor;
    content: '';
    display: inline-block;
    height: var(--icon-size);
    margin-right: 0.2em;
    mask-position: 50% 50%;
    mask-size: var(--icon-size);
    text-align: center;
    vertical-align: text-bottom;
    width: var(--icon-size)
}

.banner {
    margin-top: 0 !important;
    padding-top: 1.5em;
    position: relative;
    z-index: 2
}

@media screen and (max-width:1025px) {
    .banner {
        margin-bottom: 1.5em
    }
}

.banner__background {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -webkit-filter: brightness(0.8);
    filter: brightness(0.8);
    -o-object-fit: cover;
    object-fit: cover;
    max-width: none;
    z-index: -1
}

.banner__background-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30em;
    overflow: hidden
}

.banner__background-image-wrapper img {
    -webkit-filter: blur(10px);
    filter: blur(10px);
    -webkit-transform: scale(1.1);
    transform: scale(1.1)
}

.banner__background-image-wrapper--medium {
    height: 24em !important
}

.banner__background-image-wrapper--short {
    height: 15em
}

@media screen and (max-width:1025px) {
    .banner__background-image-wrapper {
        height: 17em
    }

    .banner__background-image-wrapper--medium {
        height: 12em
    }

    .banner__background-image-wrapper--short {
        height: 7.5em
    }
}

.banner {
    border-radius: 1em !important
}

.banner .card {
    border-radius: inherit;
    -webkit-box-shadow: none;
    box-shadow: none
}

.banner .card__video {
    line-height: 0
}

.banner .video {
    position: relative;
    background-color: var(--primary-color)
}

.banner .video:before {
    content: "";
    display: block;
    padding-bottom: calc(100%/(var(--aspect-ratio)))
}

.banner .video .days-archive-banner-media {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    max-height: 867px;
    display: block;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

@media screen and (min-width:1025px) and (max-width:1110px) {
    .banner .video>div {
        display: -ms-grid;
        display: grid;
        -ms-flex-line-pack: center;
        align-content: center
    }
}

@media screen and (max-width:1025px) {
    .banner .pad {
        border-radius: 0;
        gap: 0;
        padding: 1.5em 0.75em 2em
    }
}

.banner__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: none;
    border-top-left-radius: inherit;
    border-top-right-radius: inherit;
    text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 0, 0, 0.4);
    text-align: center;
    position: relative
}

.banner__content picture {
    min-height: 100%;
    min-width: 100%
}

.banner__content .video,
.banner__content img {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
    border-radius: 0 5px 0 0
}

.banner--short .banner__content {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1/1/1/3;
    -ms-grid-rows: 1fr;
    grid-template-rows: 1fr;
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    border-radius: 1em;
    background-color: #F5F5F5
}

.banner--short .banner__content>:first-child {
    -ms-grid-row: 1;
    -ms-grid-column: 1
}

.banner__content .heading {
    font-size: 3em;
    line-height: 1em;
    color: #FFFFFF;
    font-weight: 600
}

@media screen and (max-width:480px) {
    .banner__content .heading .space:after {
        content: ' ';
        display: inline-block
    }
}

.banner__content .subheading {
    font-size: 1.25em;
    color: #FFFFFF;
    margin: 0.5em 0
}

@media screen and (max-width:1025px) {
    .banner__content .subheading {
        margin: 0.25em 0
    }
}

.banner__content .subheading .icon-calendar-alt {
    padding-right: 5px;
    font-size: 1.1em
}

.banner__meta {
    position: relative;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5em;
    border-radius: 1em;
    background: none
}

.banner__meta-content {
    margin: auto
}

@media screen and (min-width:1025px) {
    .banner--post .banner__meta {
        background: linear-gradient(127deg, rgba(71, 110, 174, 0.85) 0%, rgba(72, 179, 175, 0.85) 100%)
    }

    .banner--archive .banner__meta {
        background: linear-gradient(127deg, rgba(255, 255, 255, 0.9) 0%, rgba(238, 238, 238, 0.9) 100%) !important
    }
}

.banner--video {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content
}

@media screen and (max-width:768px) {
    .banner--video img {
        display: none
    }
}

.date_day {
    display: inline
}

.banner .heading .longer {
    font-size: 95%;
    line-height: 105%
}

.banner .heading .long {
    font-size: 100%;
    line-height: 100%
}

.banner .heading .short {
    font-size: 105%
}

@media screen and (max-width:1025px) {

    body:not(.home) .banner .card__media,
    body:not(.home) .banner .card__video {
        margin-left: 0.75em;
        margin-right: 0.75em
    }
}

@media screen and (min-width:1025px) {
    body:not(.single, .date, .home) .banner__content .heading {
        font-size: 4em
    }
}

.birthday-template-default .age_formatted {
    margin-top: 1rem;
    font-size: 1.35rem
}

.birthday-template-default .age_dob {
    margin-top: 0.25rem;
    font-size: 1.5rem
}

@media screen and (max-width:1025px) {
    .banner__background-image-wrapper {
        height: 16em
    }
}

@media screen and (max-width:1025px) {
    .banner {
        padding-inline: 0.75em
    }
}

@media screen and (max-width:768px) {
    .banner--front-page {
        margin: 0 0.75em 0 0.75em !important;
        padding-top: 4.5em
    }
}

@media screen and (max-width:1110px) {
    aside.sidebar {
        display: none
    }
}

main .section {
    padding-top: 0
}

@media screen and (max-width:1025px) {
    main .section:first-of-type {
        margin-top: 0.2em !important
    }
}

img:is([sizes="auto" i], [sizes^="auto," i]) {
    contain-intrinsic-size: 3000px 1500px
}


@view-transition {
    navigation: auto;
}

@media (prefers-reduced-motion: no-preference) {
    ::view-transition-group(*) {
        animation-duration: 0.4s;
    }
}


.edge-images-container {
    display: block;
    position: relative;
    max-width: var(--wp--style--global--content-size, var(--max-width, 100%));
    content-visibility: var(--content-visibility);
    contain-intrinsic-size: var(--width) var(--height);
    align-content: center;
    justify-items: center
}

.edge-images-container img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    border-radius: inherit
}

.edge-images-container img[src$=".svg"] {
    height: 100%;
    aspect-ratio: auto
}

.edge-images-container.contain img {
    object-fit: contain
}

.edge-images-container.cover img {
    object-fit: cover
}

.edge-images-img {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}