



/* SHAREDAY_APP_STORE_BADGE_START */
body.home .shareday-app-store-badge-button .shareday-app-store-badge-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0;
    overflow: visible;
    background: transparent !important;
    border-radius: 0;
    box-shadow: none;
    line-height: 0;
}

body.home .shareday-app-store-badge-button .shareday-app-store-badge {
    display: block;
    width: 180px;
    max-width: 100%;
    height: auto;
}
/* SHAREDAY_APP_STORE_BADGE_END */

/* SHAREDAY_HEADER_NAVIGATION_START */
#modal-1-content .wp-block-navigation-item__content,
#modal-1-content .wp-block-navigation-item__content:visited,
#modal-1-content .wp-block-navigation-item__content:hover,
#modal-1-content .wp-block-navigation-item__content:focus,
#modal-1-content .wp-block-navigation-item__label {
    color: #fff;
    font-weight: 300;
}
/* SHAREDAY_HEADER_NAVIGATION_END */

/* SHAREDAY_HEADER_LOGO_SIZE_START */
header.wp-block-template-part .wp-block-site-logo.is-default-size img {
    width: 32px !important;
    height: 32px !important;
    object-fit: contain;
}

header.wp-block-template-part .wp-block-site-title,
header.wp-block-template-part .wp-block-site-title a {
    font-size: 24px !important;
    line-height: 1.1;
}

header.wp-block-template-part .wp-block-site-logo + .wp-block-site-title {
    margin-left: 0 !important;
}

header.wp-block-template-part .wp-block-group:has(> .wp-block-site-logo):has(> .wp-block-site-title) {
    gap: 10px !important;
}
/* SHAREDAY_HEADER_LOGO_SIZE_END */

/* SHAREDAY_SMALL_APP_STORE_BADGE_START */
.shareday-app-store-badge-small-button .shareday-app-store-badge-small-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0;
    overflow: visible;
    background: transparent !important;
    border-radius: 0;
    box-shadow: none;
    line-height: 0;
}

.shareday-app-store-badge-small-button .shareday-app-store-badge-small {
    display: block;
    width: 150px;
    max-width: 100%;
    height: auto;
}
/* SHAREDAY_SMALL_APP_STORE_BADGE_END */

/* SHAREDAY_FAMILY_CHAT_IMAGE_ALIGNMENT_START */
.shareday-family-chat-image {
    display: flex;
    justify-content: center;
}

.shareday-family-chat-image img {
    width: auto;
    max-width: 100%;
    max-height: 480px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 781px) {
    .shareday-family-chat-section > .wp-block-group.alignwide {
        display: flex;
        flex-direction: column;
    }

    .shareday-family-chat-section .wp-block-columns,
    .shareday-family-chat-section .shareday-family-chat-image-column,
    .shareday-family-chat-section .shareday-family-chat-content-column {
        display: contents;
    }

    .shareday-family-chat-section .shareday-family-chat-content-column .section-head {
        order: 1;
        width: 100%;
        margin-bottom: 24px;
    }

    .shareday-family-chat-section .shareday-family-chat-image {
        order: 2;
        width: 100%;
        margin-bottom: 28px;
    }

    .shareday-family-chat-section .shareday-family-chat-content-column > :not(.section-head) {
        order: 3;
        width: 100%;
    }

    .shareday-family-chat-image {
        justify-content: center;
    }
}
/* SHAREDAY_FAMILY_CHAT_IMAGE_ALIGNMENT_END */

/* SHAREDAY_MOBILE_APP_STORE_CENTER_START */
@media (max-width: 781px) {
    .shareday-app-store-badge-button,
    .shareday-app-store-badge-small-button {
        display: block;
        width: fit-content;
        margin-right: auto !important;
        margin-left: auto !important;
    }

    .wp-block-buttons:has(.shareday-app-store-badge-button),
    .wp-block-buttons:has(.shareday-app-store-badge-small-button) {
        justify-content: center;
    }
}
/* SHAREDAY_MOBILE_APP_STORE_CENTER_END */

/* SHAREDAY_FEATURE_GRID_START */
.shareday-features-heading .shareday-features-subtitle {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
}

.shareday-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
    gap: 24px;
}


.shareday-feature-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 420px;
    min-height: 420px;
    max-height: 420px;
    padding: 26px 20px 24px;

    border-radius: 8px;
    overflow: hidden;
}

.shareday-feature-grid > .shareday-feature-card {
    margin: 0 !important;
}

.shareday-feature-card .shareday-feature-card-icon {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 0 0 18px;
}

.shareday-feature-card .shareday-feature-card-icon img {
    display: block;
    width: 200px;
    max-width: 100%;
    max-height: 200px;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
}

.shareday-feature-card .shareday-feature-card-title {
    margin-top: 0;
    margin-bottom: 10px;
}

.shareday-feature-card .shareday-feature-card-text {
    margin-bottom: 0;
}

.shareday-features-app-store {
    justify-content: center;
    margin-top: 38px;
}

@media (max-width: 1100px) {
    .shareday-feature-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 781px) {
    .shareday-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .shareday-feature-grid {
        grid-template-columns: 1fr;
    }
}
/* SHAREDAY_FEATURE_GRID_END */

/* SHAREDAY_HIDDEN_SECTIONS_START */
.shareday-hidden-section {
    display: none !important;
}
/* SHAREDAY_HIDDEN_SECTIONS_END */

/* SHAREDAY_BLOG_PAGE_START */
.shareday-blog-page {
    background: #f7f8fa;
}

.shareday-blog-heading {
    margin-bottom: 34px;
}

.shareday-blog-columns {
    align-items: flex-start !important;
    gap: 48px;
}

.shareday-blog-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(21, 21, 21, 0.08);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(21, 21, 21, 0.04);
}

.shareday-blog-card-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.shareday-blog-card-body .wp-block-post-title a {
    color: #151515;
    text-decoration: none;
}

.shareday-blog-card-body .wp-block-post-title a:hover,
.shareday-blog-card-body .wp-block-post-title a:focus {
    color: var(--wp--preset--color--primary);
}

.shareday-blog-card-body .wp-block-read-more {
    color: var(--wp--preset--color--primary);
}

.shareday-blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.shareday-blog-sidebar-box {
    margin-top: 0 !important;
    border-radius: 0;
}

.shareday-blog-sidebar-box .wp-block-tag-cloud a {
    margin: 4px 6px 4px 0;
}

.shareday-blog-pagination {
    margin-top: 34px;
}

@media (max-width: 781px) {
    .shareday-blog-page {
        padding-top: 44px !important;
        padding-bottom: 48px !important;
    }

    .shareday-blog-columns {
        gap: 28px;
    }

    .shareday-blog-card-body {
        padding: 20px !important;
    }
}
/* SHAREDAY_BLOG_PAGE_END */

/* SHAREDAY_SINGLE_APP_STORE_CTA_START */
.shareday-single-app-store-cta {
    margin-top: 38px;
    margin-bottom: 34px;
    padding-top: 28px;
    border-top: 2px solid var(--wp--preset--color--primary);
}

.shareday-single-app-store-buttons {
    justify-content: center;
}

.shareday-single-app-store-button .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0;
    overflow: visible;
    background: transparent !important;
    border-radius: 0;
    box-shadow: none;
    line-height: 0;
}

.shareday-single-app-store-badge {
    display: block;
    width: 180px;
    max-width: 100%;
    height: auto;
}

@media (max-width: 781px) {
    .shareday-single-app-store-cta {
        margin-top: 32px;
        margin-bottom: 30px;
        padding-top: 24px;
    }
}
/* SHAREDAY_SINGLE_APP_STORE_CTA_END */

/* SHAREDAY_PLAIN_TAG_LINKS_START */
.wp-block-tag-cloud.shareday-plain-tag-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.wp-block-tag-cloud.shareday-plain-tag-links a {
    display: inline;
    margin: 0 !important;
    padding: 0 !important;
    color: inherit;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: inherit !important;
    line-height: inherit;
    text-decoration: underline;
}

.wp-block-tag-cloud.shareday-plain-tag-links a:hover,
.wp-block-tag-cloud.shareday-plain-tag-links a:focus {
    color: var(--wp--preset--color--primary);
}
/* SHAREDAY_PLAIN_TAG_LINKS_END */

/* SHAREDAY_HEADER_BACKGROUND_START */
header.wp-block-template-part > .wp-block-group.has-secondary-background-color {
    background-color: #559FE7 !important;
}
/* SHAREDAY_HEADER_BACKGROUND_END */

/* SHAREDAY_MOBILE_CONTENT_CENTER_START */
@media (max-width: 781px) {
    body.home .pos-relative.has-gradient-one-gradient-background .wp-block-column:first-child {
        text-align: center;
    }

    body.home .pos-relative.has-gradient-one-gradient-background .wp-block-column:first-child .wp-block-buttons {
        justify-content: center;
    }

    .shareday-family-chat-section .section-head {
        text-align: center;
    }

    .shareday-family-chat-section .section-head .section_title {
        text-align: center;
    }

    .shareday-family-chat-section .section-head .wp-block-separator {
        margin-right: auto;
        margin-left: auto;
    }
}
/* SHAREDAY_MOBILE_CONTENT_CENTER_END */

/* SHAREDAY_MOBILE_MENU_OVERLAY_START */
header.wp-block-template-part .wp-block-navigation__responsive-container.is-menu-open {
    background-color: #559FE7 !important;
    color: #fff !important;
}

header.wp-block-template-part .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content,
header.wp-block-template-part .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:visited,
header.wp-block-template-part .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:hover,
header.wp-block-template-part .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content:focus,
header.wp-block-template-part .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__label {
    color: #fff !important;
}

header.wp-block-template-part .wp-block-navigation__responsive-container-close,
header.wp-block-template-part .wp-block-navigation__responsive-container-close svg,
header.wp-block-template-part .wp-block-navigation__responsive-container-open,
header.wp-block-template-part .wp-block-navigation__responsive-container-open svg {
    color: #fff !important;
    fill: #fff !important;
}
/* SHAREDAY_MOBILE_MENU_OVERLAY_END */

/* SHAREDAY_ARCHIVE_TITLE_LINK_START */
.shareday-archive-card-title a {
    color: inherit;
    text-decoration: none;
}

.shareday-archive-card-title a:hover,
.shareday-archive-card-title a:focus {
    color: var(--wp--preset--color--primary);
}
/* SHAREDAY_ARCHIVE_TITLE_LINK_END */

/* SHAREDAY_SIDEBAR_POLISH_START */
.shareday-single-post-sidebar > .wp-block-group.has-section-bg-background-color h3,
.wp-block-column[style*="flex-basis:40%"] > .wp-block-group.has-section-bg-background-color h3,
.shareday-blog-sidebar-box h3 {
    font-size: 18px !important;
    line-height: 1.3;
    letter-spacing: 0 !important;
}

.shareday-single-post-sidebar > .wp-block-group.has-section-bg-background-color > .wp-block-group[style*="border-bottom"],
.wp-block-column[style*="flex-basis:40%"] > .wp-block-group.has-section-bg-background-color > .wp-block-group[style*="border-bottom"],
.shareday-blog-sidebar-box > .wp-block-group[style*="border-bottom"] {
    border-bottom-width: 1px !important;
}

.shareday-single-post-sidebar .wp-block-search__inside-wrapper,
.wp-block-column[style*="flex-basis:40%"] .wp-block-search__inside-wrapper,
.shareday-blog-sidebar-box .wp-block-search__inside-wrapper {
    box-sizing: border-box;
    align-items: center;
    min-height: 38px;
    padding: 3px;
    background: #fff;
    border: 1px solid rgba(21, 21, 21, 0.18);
}

.shareday-single-post-sidebar .wp-block-search__input,
.wp-block-column[style*="flex-basis:40%"] .wp-block-search__input,
.shareday-blog-sidebar-box .wp-block-search__input {
    min-height: 30px;
    height: 30px;
    padding: 0 10px;
    background: transparent;
    border: 0 !important;
    box-shadow: none !important;
    font-size: 14px;
    line-height: 30px;
}

.shareday-single-post-sidebar .wp-block-search__button,
.wp-block-column[style*="flex-basis:40%"] .wp-block-search__button,
.shareday-blog-sidebar-box .wp-block-search__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    width: 34px;
    min-width: 34px;
    height: 32px;
    min-height: 32px;
    margin-left: 4px;
    padding: 0 !important;
    border: 0;
    border-radius: 4px;
}

.shareday-single-post-sidebar .wp-block-search__button svg,
.wp-block-column[style*="flex-basis:40%"] .wp-block-search__button svg,
.shareday-blog-sidebar-box .wp-block-search__button svg {
    width: 17px;
    height: 17px;
}

.shareday-single-app-store-cta {
    border-top-width: 1px;
}
/* SHAREDAY_SIDEBAR_POLISH_END */

/* SHAREDAY_SINGLE_POST_LAYOUT_FIX_START */
@media (min-width: 782px) {
    .shareday-single-post-columns {
        display: grid !important;
        grid-template-columns: minmax(0, 2fr) minmax(280px, 0.85fr);
        align-items: start;
        gap: 48px;
    }

    .shareday-single-post-columns > .wp-block-column {
        width: auto !important;
        max-width: none;
        flex-basis: auto !important;
    }

    .shareday-single-post-sidebar {
        min-width: 0;
    }
}

@media (max-width: 781px) {
    .shareday-single-post-columns {
        display: flex;
        flex-direction: column;
    }

    .shareday-single-post-columns > .wp-block-column {
        flex-basis: auto !important;
    }
}
/* SHAREDAY_SINGLE_POST_LAYOUT_FIX_END */

/* SHAREDAY_HOME_TRANSPARENT_HEADER_START */
body.home .wp-site-blocks {
    position: relative;
}

body.home header.wp-block-template-part {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
}

body.home header.wp-block-template-part > .wp-block-group.has-secondary-background-color {
    background-color: transparent !important;
}

body.home .pos-relative.has-gradient-one-gradient-background {
    padding-top: 10em !important;
}

@media (max-width: 781px) {
    body.home .pos-relative.has-gradient-one-gradient-background {
        padding-top: 9em !important;
    }
}
/* SHAREDAY_HOME_TRANSPARENT_HEADER_END */

/* SHAREDAY_GLOBAL_SIDEBAR_POLISH_START */
main .wp-block-group.has-section-bg-background-color h3,
main .wp-block-group.has-section-bg-background-color .wp-block-heading,
main .shareday-blog-sidebar-box h3,
main .shareday-blog-sidebar-box .wp-block-heading {
    font-size: 18px !important;
    line-height: 1.3;
    letter-spacing: 0 !important;
}

main .wp-block-group.has-section-bg-background-color > .wp-block-group[style*="border-bottom"],
main .shareday-blog-sidebar-box > .wp-block-group[style*="border-bottom"] {
    border-bottom-width: 1px !important;
}

main .wp-block-search .wp-block-search__inside-wrapper {
    box-sizing: border-box;
    align-items: center;
    min-height: 38px !important;
    padding: 3px !important;
    background: #fff;
    border: 1px solid rgba(21, 21, 21, 0.18) !important;
}

main .wp-block-search .wp-block-search__input {
    min-height: 30px !important;
    height: 30px !important;
    padding: 0 10px !important;
    background: transparent;
    border: 0 !important;
    box-shadow: none !important;
    font-size: 14px;
    line-height: 30px;
}

main .wp-block-search .wp-block-search__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px !important;
    width: 34px !important;
    min-width: 34px !important;
    height: 32px !important;
    min-height: 32px !important;
    margin-left: 4px !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 4px;
}

main .wp-block-search .wp-block-search__button svg {
    width: 17px;
    height: 17px;
}

.shareday-single-app-store-cta {
    border-top-width: 1px !important;
}
/* SHAREDAY_GLOBAL_SIDEBAR_POLISH_END */

/* SHAREDAY_DOWNLOAD_PAGE_START */
.shareday-download-hero {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.shareday-download-hero > .alignwide {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.shareday-download-columns {
    align-items: center !important;
    gap: clamp(20px, 2vw, 32px);
    min-height: 440px;
}

.shareday-download-columns > .wp-block-column:first-child {
    flex-basis: 42% !important;
}

.shareday-download-columns > .wp-block-column:last-child {
    flex-basis: 58% !important;
}

.shareday-download-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 0;
    box-sizing: border-box;
    text-align: center;
}

.shareday-download-hero-text {
    max-width: 520px;
    margin: 0 0 30px !important;
    color: #202124;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 400;
}

.shareday-download-action .wp-block-button,
.shareday-download-final .wp-block-button {
    margin-top: 0 !important;
}

.shareday-download-action .wp-block-button__link,
.shareday-download-final .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0;
    overflow: visible;
    background: transparent !important;
    border-radius: 0;
    box-shadow: none;
    line-height: 0;
}

.shareday-download-app-store-badge {
    display: block;
    width: 196px;
    max-width: 100%;
    height: auto;
}

.shareday-download-preview {
    margin: 0 !important;
}

.shareday-download-preview img {
    display: block;
    width: min(100%, 660px);
    height: auto;
    margin-left: auto;
    border-radius: 8px;
}

.shareday-download-final {
    justify-content: center;
}

@media (max-width: 781px) {
    .shareday-download-hero {
        padding-top: 48px !important;
        padding-bottom: 44px !important;
    }


    .shareday-download-hero {
        width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .shareday-download-hero > .alignwide {
        width: 100%;
        max-width: 100%;
    }

    .shareday-download-columns {
        flex-direction: column;
        align-items: center !important;
        gap: 28px;
        width: 100%;
        max-width: 100%;
        min-height: 0;
        overflow: hidden;
    }

    .shareday-download-columns > .wp-block-column:first-child,
    .shareday-download-columns > .wp-block-column:last-child {
        flex-basis: auto !important;
        width: 100% !important;
        max-width: 100%;
    }

    .shareday-download-action {
        align-items: center;
        width: 100%;
        padding-right: 0;
        text-align: center;
    }

    .shareday-download-hero-text {
        box-sizing: border-box;
        width: calc(100vw - 100px) !important;
        max-width: calc(100vw - 100px) !important;
        margin-right: auto !important;
        margin-bottom: 24px !important;
        margin-left: auto !important;
        font-size: 18px;
    }

    .shareday-download-preview {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .shareday-download-preview img {
        width: 100%;
        max-width: calc(100vw - 80px);
        margin-left: auto;
        margin-right: auto;
    }
}
/* SHAREDAY_DOWNLOAD_PAGE_END */
