@import url('https://fonts.googleapis.com/css2?family=Fustat:wght@200..800&family=Viaoda+Libre&display=swap');

/* aile */
body.aile {
    /* Heading Family */
    --heading-family: "Viaoda Libre", serif;
    --heading-style: normal;
    --heading-weight: 400;
    --heading-size: 44px;
    --heading-lettercase: none;

    /* Body Text */
    --body-text-family: "Fustat", serif;
    --body-text-style: normal;
    --body-text-weight: 400;
    --body-text-size: 14px;
    --body-text-lettercase: none;

    /* Font Size Extra */
    --fs-extra-1: 2px;
    --fs-extra-2: 4px;
    --fs-extra-3: 5px;
    --fs-extra-4: 6px;
    --fs-extra-5: 10px;
    --fs-extra-6: 12px;
    --fs-extra-7: 15px;
    --fs-extra-8: 20px;

    /* Attribute */
    --body-height: 100vh;
    height: auto;
    overflow: visible;

    /* Body background */
    background-color: var(--background-primary);
}

/* Original */
body.aile.original {
    /* Colors */
    --background-primary: #FFF6E7;
    --background-primary-rgb: 255, 246, 231;

    --background-secondary: #95212D;
    --background-secondary-rgb: 149, 33, 45;

    --background-tertiary: #F1DDD4;
    --background-tertiary-rgb: 241, 221, 212;

    /* Text Colors */
    --text-primary: #95212D;
    --text-primary-rgb: 149, 33, 45;

    --text-secondary: #FFF6E7;
    --text-secondary-rgb: 255, 246, 231;

    --text-tertiary: #95212D;
    --text-tertiary-rgb: 149, 33, 45;

    /* Button Colors */
    --button-text-primary: #95212D;
    --button-text-primary-rgb: 149, 33, 45;

    --button-background-primary: #FFF6E7;
    --button-background-primary-rgb: 255, 246, 231;

    --button-text-secondary: #95212D;
    --button-text-secondary-rgb: 149, 33, 45;

    --button-background-secondary: #F0DCD1;
    --button-background-secondary-rgb: 240, 220, 209;

    /* ornament */
    --texture-1: url("https://katsudoto.id/media/template/exclusive/aile/original/texture-1.png");
}

@media only screen and (max-width: 960px) {
    body.aile {
        overflow: hidden;
    }
}

@media (max-width: 360px) {
    body.aile {
        /* --heading-size: calc(8vw + 0.768px);
        --body-text-size: calc(4vw + 0.384px); */
    }
}

@media (min-width: 560px) and (max-width: 960px) {
    body.aile {
        --heading-size: 64px;
        --body-text-size: 22px;
    }
}

@media (min-width: 961px) {
    body.aile {
        --heading-size: 62px;
        --body-text-size: 20px;
    }
}

@media (min-width: 1600px) {
    body.aile {
        --heading-size: 62px;
        --body-text-size: 20px;
    }
}

/* Fonts */
body.aile h1,
body.aile h2,
body.aile h3,
body.aile h4,
body.aile h5,
body.aile h6 {
    font-family: var(--heading-family);
    font-style: var(--heading-style);
    font-weight: var(--heading-weight);
    font-size: var(--heading-size);
    text-transform: var(--heading-lettercase);
    line-height: normal;
    color: var(--text-primary);
}

body.aile p {
    font-family: var(--body-text-family);
    font-style: var(--body-text-style);
    font-weight: 400;
    font-size: calc(var(--body-text-size));
    text-transform: var(--body-text-lettercase);
    line-height: 150%;
    color: rgba(var(--text-tertiary-rgb), 0.75);
}

body.aile span {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    font-weight: 400;
}

body.aile sup {
    font-family: inherit;
    font-size: 0.5em;
    color: inherit;
    font-family: var(--body-text-family);
}

body.aile font {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    text-decoration: inherit;
    font-style: inherit;
}

/* img */
body.aile img {
    max-width: 100%;
}

/* scrollbar */
body.aile::-webkit-scrollbar {
    width: 10px;
    height: 15px;
}

body.aile::-webkit-scrollbar-thumb,
textarea::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
    border-width: 2px;
    background-color: var(--button-background-primary);
}

/* form on focus or active */
.form-control:focus,
.form-control:active {
    background: var(--light-clr);
    box-shadow: none;
    border-color: var(--button-background-primary);
}

/* ==============================
              Modal
      ============================== */
.modal-content .mde1 {
    border-bottom: 2px solid rgba(var(--background-primary-rgb), 0.5);
}

.modal-content .modal-caption {
    color: var(--text-secondary);
}

.modal-content .btn {
    font-family: var(--body-text-family);
    font-weight: 400;
    font-size: var(--body-text-size);

    background-color: rgba(var(--text-secondary-rgb), 0.05);
    color: var(--text-secondary);
}

.modal-content .btn:hover {
    background-color: rgba(var(--text-secondary-rgb), 0.1);
}

.modal-content .btn-wood {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
}

.modal-content .btn-wood:hover {
    background-color: rgba(var(--button-background-primary-rgb), 0.7);
}

/* ============================================
    SIDE TO SIDE => PRIMARY PANE
============================================ */
.kat-page__side-to-side .primary-pane .inner {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* padding: 10% 0 15px; */
    flex: 1;
    display: flex;
    flex-direction: column;
    position: absolute;
    justify-content: flex-start;
    align-items: center;
    background: var(--background-primary);
    border-right: 1px solid var(--background-secondary);
}

/* head */
section.primary-pane .inner .head {
    z-index: 2;
    text-align: center;
    padding-top: 120px;
    margin-bottom: auto;
}

section.primary-pane .inner .inner-wrapper {
    position: relative;
    width: 70%;
    padding: 0 15%;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: none;
    border-left: 1px solid var(--background-secondary);
    border-right: 1px solid var(--background-secondary);
    background-image: var(--texture-1);
    background-repeat: repeat;
    background-size: 100%;
    gap: 20px;
}

.kat-page__side-to-side .primary-pane .inner .pp-head h1 {
    padding: 0;
    text-align: center;
    font-size: calc(var(--heading-size));
}

.kat-page__side-to-side .primary-pane .inner .details {
    /* margin: auto; */
    position: relative;
    bottom: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    z-index: 2;
    width: 100%;
    padding: 5% 10% 5%;
    align-items: center;
}

.kat-page__side-to-side .primary-pane .inner .details p {
    font-size: calc(var(--body-text-size));
    font-style: normal;
    font-weight: 400;
    text-align: center;
    color: var(--text-tertiary);
    margin: 0 auto;
    line-height: 142%;
}

/* .primary-pane .footnote-frame {
    max-width: 180px;
  } */
section.primary-pane .logo-wrap {
    position: relative;
    width: 100%;
    max-width: 115px;
    margin: 0 auto 0;
}

.kat-page__side-to-side .primary-pane .inner .details .text-wrap {
    width: 130px;
    height: 186px;
    margin: 0 auto;
}

.kat-page__side-to-side .primary-pane .inner .details .text-wrap h1 {
    padding: 0px 5px;
    margin: -20px auto;
    font-size: calc(var(--heading-size) + var(--fs-extra-8));
    color: var(--text-tertiary);
}

.kat-page__side-to-side .primary-pane .inner .details .text-wrap .text-top {
    text-align: left;
}

.kat-page__side-to-side .primary-pane .inner .details .text-wrap .text-bottom {
    text-align: right;
    margin-right: -16px;
}

section.primary-pane .inner .body {
    margin: 0 auto;
    width: calc(100% - 0px);
    height: 58%;
}

section.primary-pane .inner .body .preview-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    bottom: 0;
}

section.primary-pane .inner .body .preview-container .slick-list {
    width: 100% !important;
    height: 100% !important;
}

section.primary-pane .inner .body .preview-container .slick-track {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
}

section.primary-pane .inner .body .preview-container .picture {
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    position: absolute !important;
    background-color: var(--light-clr);
}

section.primary-pane .inner .body .preview-container .picture img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.pp-frame {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    height: 100%;
}

@media (min-width: 1024px) and (max-width: 1400px) {
    section.primary-pane .inner .inner-wrapper {
        width: 70%;
    }
    
    .pp-frame-wrapper {
        padding-bottom: 35%;
    }
    
    .pp-frame {
        max-width: 100%;
    }
    
}
@media (min-width: 1024px) and (max-width: 1024px) {
    section.primary-pane .inner .inner-wrapper {
        width: 90%;
    }
    section.primary-pane .inner .body{
        height: 44%;
    }
    
}

@media (min-width: 1600px) {
    .kat-page__side-to-side .primary-pane .inner .details p {
        font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    }
}


/* ============================================
          SIDE TO SIDE
      ============================================ */
.kat-page__side-to-side {
    min-height: 480px;
    display: block;
    position: relative;
    height: 100%;
    overflow-x: hidden;
}

.kat-page__side-to-side,
.kat-page__side-to-side * {
    /* -webkit-overflow-scrolling: touch; */
    -webkit-overflow-scrolling: auto;
}

.kat-page__side-to-side .primary-pane {
    overflow: hidden;
    top: 0;
    left: 0;
    bottom: 0;
    position: fixed;
    width: 61%;
}

.kat-page__side-to-side .primary-pane::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: var(--texture-1);
    background-repeat: repeat;
    background-size: 100%;
    opacity: 0.35;
    mix-blend-mode: multiply;
}

.kat-page__side-to-side .secondary-pane {
    position: static;
    right: 0;
    width: 39%;
    margin-left: auto;
    /* background: var(--texture-1);
    background-size: 100% auto;
    background-position: center top; */

    background-color: var(--background-primary);
}

@media only screen and (min-width: 960px) and (max-width: 1400px) {
    .kat-page__side-to-side .secondary-pane section.video-gallery .inner .video-outer .video {
        width: 100%;
    }
}

@media only screen and (max-width: 960px) {
    .kat-page__side-to-side .primary-pane {
        position: relative;
        width: 100%;
        display: none;
    }

    .kat-page__side-to-side .secondary-pane {
        position: relative;
        width: 100%;
    }
}

/* =======================
      PERSON
======================= */
section.person p {
    font-family: var(--roboto);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--dark-clr);
  }
  

/* =================================
              ORNAMENTS WRAPPER
================================= */
.ornaments-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.image-wrap {
    position: relative;
    width: 100%;
}

.image-wrap img {
    width: 100%;
    height: auto;
    max-width: 100%;

}

.image-wrap svg {
    width: 100%;
    height: auto;
    max-width: 100%;
}

.p-relative {
    position: relative;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Global  */

.svg-button_wrap {
    width: 24px;
    display: flex;
}

.svg-button_wrap svg {
    width: 100%;
    height: auto;
    fill: var(--button-text-primary);
    stroke: var(--button-text-primary);
}

.qt-icon-wrap {
    width: 24px;
}

.qt-icon-wrap.sm {
    width: 16px;
}

.qt-icon-wrap svg {
    width: 100%;
    height: auto;
}

.qt-icon-wrap svg path {
    stroke: var(--text-secondary);
    stroke-width: 5px;
}

.qt-icon-wrap.fill.primary svg path {
    fill: var(--text-tertiary);
}

.orn.fill svg>path {
    fill: var(--text-tertiary);
}

.orn.fill-secondary svg>path {
    fill: var(--text-secondary);
}

.orn.stroke-primary svg path {
    stroke: var(--text-tertiary);
    stroke-width: 3px;
    fill: transparent;
}

.orn.stroke-secondary svg path {
    stroke: var(--text-secondary);
    stroke-width: 3px;
    fill: transparent;
}

/* Button Primary */
.button-outer {
    width: 100%;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid var(--button-text-primary);
    margin: 0 auto;
}


/* ======================
    TOP COVER
====================== */
section.top-cover {
    background-color: var(--background-primary);
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: var(--body-height);
    z-index: 999999;
    top: 0;
    /* top: -120%; */
    left: 0;
    padding: 0 16px;

    transition: all 1.8s;
    transition-timing-function: cubic-bezier(0.23, 0.56, 0.38, 0.78);
    -webkit-transition-timing-function: cubic-bezier(0.23, 0.56, 0.38, 0.78);
    -moz-transition-timing-function: cubic-bezier(0.23, 0.56, 0.38, 0.78);
    -o-transition-timing-function: cubic-bezier(0.23, 0.56, 0.38, 0.78);

    display: flex;
    flex-direction: column;
    display: none;
}

@media only screen and (max-width: 960px) {
    section.top-cover {
        display: flex;
    }
}

section.top-cover.hide {
    top: -120%;
    bottom: 120%;
    pointer-events: none;
}

/* inner */
section.top-cover .top-cover-title {
    text-align: center;
}

section.top-cover .inner {
    padding: 16px 44px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border: none;
    border-left: 1px solid var(--background-secondary);
    border-right: 1px solid var(--background-secondary);
    background-image: var(--texture-1);
    background-repeat: repeat;
    background-size: 100%;
    max-width: 645px;
    width: 100%;
    margin: auto;
    gap: 16px;
}

section.top-cover .logo-wrap {
    position: relative;
    width: 100%;
    max-width: 93px;
    margin: 0 auto;
}

/* head */
section.top-cover .inner .head {
    z-index: 2;
    text-align: center;
    padding-top: 120px;
    margin-bottom: auto;
}

section.top-cover .inner .head h1 {
    font-size: calc(var(--heading-size));
    padding: 0px;
    margin: 0px auto;
}

section.top-cover .inner .head p {
    margin-bottom: 4px;
}

.tc-head {}

.top-cover .tc-head .top-cover-title {
    text-align: left;
}

.tc-head.hg-lg {
    margin: auto;
}

.tc-frame {
    position: relative;
    margin: 0 auto;
    height: 100%;
    width: 100%;
}

/* details */
section.top-cover .inner .details {
    text-align: center;
    padding: 12px 0% 10%;
    position: relative;
    z-index: 2;
    width: 100%;
    bottom: 0;
}

section.top-cover .inner .details p {
    color: var(--text-tertiary);
    font-weight: 400;
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    line-height: 150%;
}

/* Cover free text */
section.top-cover .cover-free-text {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-style: var(--body-text-style);
    font-size: var(--body-text-size);
    text-transform: var(--body-text-lettercase);
    color: var(--text-secondary);
}

section.top-cover .inner .details .link-wrap {
    margin-top: 8px;
    display: flex;
    justify-content: center;
}

section.top-cover .inner .details a.link {
    width: 100%;
    display: flex;
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    font-weight: var(--body-text-weight);
    line-height: normal;
    color: var(--button-text-primary);
    border: 0.5px solid var(--button-text-primary);
    background-color: var(--button-background-primary);
    padding: 9px 16px;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}

section.top-cover .inner .details a.link:hover {
    color: var(--button-text-secondary);
    border: 0.5px solid var(--button-text-secondary);
    background-color: var(--button-background-secondary);
}

@media (min-width: 560px) {}

section.top-cover .inner .body {
    margin: 0 auto;

    width: calc(100% - 0px);
    height: 100%;
}

section.top-cover .inner .body .preview-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

section.top-cover .inner .body .preview-container .slick-list {
    width: 100% !important;
    height: 100% !important;
}

section.top-cover .inner .body .preview-container .slick-track {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
}

section.top-cover .inner .body .preview-container .picture {
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    position: absolute !important;
    background-color: var(--light-clr);
}

section.top-cover .inner .body .preview-container .picture img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 560px) and (max-width: 960px) {}

@media (min-width: 1400px) {}



/* ======================
    COVER
====================== */
section.cover {
    position: relative;
    overflow: hidden;
    padding: 0px;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

section.cover.photo-none.both {
    min-height: unset;
}
@media (max-width: 960px) {
    section.cover.photo-none.mobile {
        min-height: unset;
    }
}
@media (min-width: 960px) {
    section.cover.photo-none.desk {
        min-height: unset;
    }
}

section.cover .inner {
    position: relative;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
    justify-content: flex-END;
    width: 100%;
    padding-top: 10.3%;
    gap: 8px;
}

/* Cover Body */
section.cover .inner .body {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

section.cover .inner .body .cover-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    isolation: isolate;
    background: var(--background-primary);
}

section.cover .inner .body .preview-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

section.cover .inner .body .preview-container .slick-list {
    width: 100% !important;
    height: 100% !important;
}

section.cover .inner .body .preview-container .slick-track {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
}

section.cover .inner .body .preview-container .picture {
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    position: absolute !important;
    background-color: var(--light-clr);
}

section.cover .inner .body .preview-container .picture img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 961px) {
    section.cover .inner .body.highlight.no_desktop {
        display: none;
    }
}

/* Cover Foot */
section.cover .inner .foot {
    position: relative;
    width: 100%;
    text-align: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 11% 4.15% 7%;
    border-radius: 999px 999px 0px 0px;
    background: var(--background-secondary);
}

section.cover .inner .foot p {
    font-weight: 400;
    color: var(--text-secondary);
}

section.cover .inner .foot .prime-title {
    color: var(--text-secondary);
    line-height: normal;
    font-size: calc(var(--heading-size));
    font-weight: 400;
}

section.cover .inner .orn-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 17%;
    /* min-height: 70vh; */
}

/* Cover Head */
section.cover .inner .head {
    position: relative;
    width: 100%;
    /* padding: 50px 10px 0px; */
}

.cover .logo-wrap {
    width: 22.43%;
    margin: 0 auto;
    max-width: 100px;
}


/* ==============================
        Quote
============================== */
.quote-wrap {
    position: relative;
    overflow: hidden;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-bottom: 10%;
}

.quote-wrap .quote-frame-wrap {
    padding-bottom: 12%;
    border-radius: 0px 0px 999px 999px;
    background: var(--background-secondary);
}

.quote-wrap .quote {
    position: relative;
    text-align: center;
    width: 100%;
    padding: 10.5% 4.15%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    overflow: hidden;
}

.quote-frame-wrap {
    width: 100%;
    margin: 0 auto;
}

.quote-wrap .quote .quote-caption {
    font-size: var(--body-text-size);
    color: var(--text-secondary);
    width: 100%;
    margin: 0 auto;
    font-weight: 300;
    line-height: 150%;
}

@media (min-width: 768px) and (max-width: 960px) {}

@media (min-width: 1440px) {}


/* ==============================
        Couple
============================== */
.couple-wrap {
    position: relative;
    overflow: hidden;
}

.couple-wrap .couple {
    padding: 5% 0px 5%;
}

/* Couple Head */
.couple-head {
    text-align: center;
    padding: 20px 24px 40px;
}

.couple-head .couple-title {}

.couple-head .couple-description {
    color: var(--text-tertiary);
    margin-top: 5px;
}

/* Couple Body */
.couple-body {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    margin-top: 0px;
}

.couple-body.bride-first {
    flex-direction: column-reverse;
}

.couple-body .couple-info {
    position: relative;
}

/* Separator */
.separator-wrap {
    width: 100%;
    position: relative;
    padding: 0px;
    /* margin: 80px auto; */
    margin: 10% auto;
}

.separator-wrap .separator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.separator-orn {
    width: 24px;
    height: auto;
}

.separator-orn.right {
    transform: scaleX(-1);
}

.separator-orn svg {
    width: 100%;
    height: auto;
}

.separator-wrap .separator .couple-separator {
    font-family: var(--heading-family);
    font-size: calc(var(--heading-size) - 0px);
    line-height: 1;
    /* margin: auto; */
    color: var(--text-primary);
}

/* Couple Preview */
.couple-info .couple-preview-wrap {
    position: relative;
    padding: 0px;
    /* min-height: var(--body-height); */
}

.couple-preview-wrap .couple-picture {
    width: 280px;
    /* height: var(--body-height); */
    height: 280px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
}

.couple-picture .img-wrap {
    position: absolute;
    /* display: flex; */
    width: 100%;
    height: 100%;
    /* border-radius: 50%; */
    margin: 0 auto;
    overflow: hidden;
}

.couple-picture .img {
    display: flex;
    width: 100%;
    height: 100%;
    /* border-radius: 50%; */
    object-fit: cover;
    object-position: center;
}

/* Couple Details */
.couple-info.bride .couple-details-wrap {
    left: unset;
    right: 0;
}

.couple-details-wrap {
    position: relative;
    padding: 12px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    /* align-items: center; */
    width: 100%;
    z-index: 2;
}

.couple-details-wrap.previewed {}

.couple-details-wrap .details-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    gap: 8px;
    color: var(--text-tertiary);
}

.couple-info.bride .couple-details-wrap .details-title {
    flex-direction: row-reverse;
}

.couple-details-wrap .details-title::after {
    background-color: var(--background-tertiary);
    height: 1px;
    flex: 1;
    content: "";
}

.couple-details-wrap .couple-details {
    margin: auto;
    gap: 8px;
    text-align: center;
    max-width: 620px;
    border-radius: 16px;
    background: var(--background-primary);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.couple-info.groom .couple-details {}

.couple-details .couple-name {}

.couple-details p {}

.couple-details .couple-parents {}

.couple-details .couple-bio {}

.couple-link-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.couple-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 16px;
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    font-style: normal;
    text-decoration: none;
    color: var(--button-text-secondary);
    background: var(--button-background-secondary);
    transition: all 0.25s ease-in-out;
    border-radius: 100px;
    border: 0.5px solid var(--button-text-secondary);
}

.couple-link:hover {
    color: var(--button-text-primary);
    background: var(--button-background-primary);
    border: 0.5px solid var(--button-text-primary);
}

.couple-link>i {
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
}

.cp-divid {
    width: 100%;
    height: 1px;
    background: var(--background-secondary);
}

@media only screen and (min-width: 1440px) {
    .couple-details {
        padding: 40px;
    }

    .couple-preview-wrap .couple-picture {
        width: 380px;
        height: 380px;
    }
}

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

    .couple-preview-wrap .couple-picture {
        width: 380px;
        height: 380px;
    }
}


/* ==============================
        Save The Date
============================== */
.save-date-wrap {
    position: relative;
    overflow: hidden;
    padding: 8% 16px 8%;
    margin: 0 auto;
}

.save-date-wrap .save-date-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: auto;
    margin: 10% auto;
    border-radius: 999px;
    padding: 12px;
    border: 1px dashed var(--background-secondary);
}

.save-date-wrap .save-date-frame-inner {
    border-radius: 999px;
    border: 1px solid var(--background-secondary);
    background: var(--background-tertiary);
    padding: 17% 15%;
}

.save-date-wrap .sd-inner-wrap {
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.save-date-wrap .save-date {
    width: 100%;
    max-width: 250px;
    margin: 0px auto;
    position: relative;
    z-index: 1;
}

.frame-sd img {
    opacity: 0;
}

/* Save Date Head */
.save-date-head {
    /* padding: 60px 0px 0px 0px; */
    text-align: center;
    position: relative;
}

.save-date-wrap .save-date-title {
    font-family: var(--heading-family);
    text-align: center;
    font-size: calc(var(--heading-size));

    /* margin-bottom: 20px; */
}

.save-date-head .save-date-event {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size));
    color: var(--text-primary);
    margin-top: 5px;
    letter-spacing: 3px;
}

/* Save Date Body */
.save-date-body {
    position: relative;
}

/* Countdown */
.countdown {
    padding: 0px 0px 10px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.countdown .count-item {
    text-align: center;
    border-radius: 12px;
    border: 0.5px solid var(--background-secondary);
    width: 74px;
}

.count-item .count-num {
    font-family: var(--heading-family);
    font-size: calc(var(--heading-size));
    color: var(--text-primary);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.count-item .count-text {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size));
    font-style: normal;
    color: rgba(var(--text-tertiary-rgb), 0.75);
    line-height: 150%;
    margin-top: 4px;
}

/* Add To Calendar */
.add-to-calendar-wrap {
    display: flex;
    flex-direction: column;
    /* padding: 20px 0px; */
    margin-top: 2%;
    max-width: 600px;
    margin: auto;
}

.add-to-calendar-wrap .button-outer {
    width: 75.4%;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid var(--button-text-primary);
    margin: 0 auto;
}

.add-to-calendar {
    padding: 9px 16px;
    width: 100%;
    margin: 0px auto;
    border-radius: 999px;
    min-width: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 142%;
    vertical-align: top;
    text-align: center;
    text-decoration: none;
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size) + 0px);
    font-weight: 600;
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
    border-radius: 100px;
    border: 0.5px solid var(--button-text-primary);
    transition: all 0.25s ease-in-out;
}

.add-to-calendar:hover {
    background-color: var(--button-background-secondary);
    color: var(--button-text-secondary);
}

.wedding-wish-body .bank_con-label-wrap {
    padding-bottom: 16px;
}

.wedding-wish-body .bank_con-label-wrap label {
    font-weight: 600;
    color: var(--text-tertiary);
    line-height: 142%;
    font-family: var(--body-text-family);
}

@media (min-width: 700px) and (max-width: 961px) {
    .countdown .count-item {
        width: 112px;
    }

    .save-date-wrap {}
}

@media (min-width: 1440px) {
    .save-date-wrap .save-date {
        /* margin: 45px auto; */
    }

    .countdown .count-item {
        width: 112px;
    }
}


/* ==============================
        Agenda
============================== */
.agenda-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

.agenda-wrapper::before {
    content: '';
    position: relative;
    display: flex;
    width: 100%;
    height: 30px;
    background: var(--background-secondary);
}

.agenda-wrapper::after {
    content: '';
    position: relative;
    display: flex;
    width: 100%;
    height: 30px;
    background: var(--background-secondary);
}

.agenda-wrap {
    position: relative;
    overflow: hidden;
    padding: 0 16px;
}

.agenda-inner {
    position: relative;
    padding: 0% 0px 0%;
    border-right: 1px solid var(--background-secondary);
    border-left: 1px solid var(--background-secondary);
    max-width: 500px;
    margin: auto;
}

/* head */
.agenda-head {
    text-align: center;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 24px;
    background: var(--background-primary);
    border-bottom: 1px solid var(--background-secondary);
    position: relative;
}

.agenda-head .agenda-title {}

.agenda-head .agenda-description {}

/* body */
.agenda-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    background-image: var(--texture-1);
    background-repeat: repeat;
    background-size: 100%;
}

/* Event */
.event-item {
    margin: 0px auto 0%;
    position: relative;
}

/* event head */
.event-head {
    position: relative;
    padding: 24px;
    text-align: center;
    width: 100%;
}

.event-head .event-day {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size));
    line-height: 150%;
}

.event-head .event-date {
    font-size: calc(var(--heading-size));
    font-weight: 500;
    line-height: normal;
    color: var(--text-primary);
}

.event-head .event-date>sup {
    margin-left: 5px;
}

.event-head .event-description {
    margin-top: 12px;
}

/* event content */
.event-content {
    position: relative;
    width: calc(100%);
    margin: 0% auto 0px;
    /* border-radius: 200px; */
    background-color: transparent;

    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 561px) {
    .agenda-inner {
        padding: 40px 0px 5%;
    }

    .event-content {
        /* width: 100%; */
        /* min-width: 400px; */
    }
}

/* center content child */
.event-content>.activity-wrap {
    /* margin: auto; */
}

.event-content>.event-details {
    /* margin: auto; */
}

/* Activity */
.activity-wrap-outer {
    margin: 0 6.8%;
}

.activity-wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.activity-wrap.same-location {
    padding: 60px 8% 24px;
    gap: 12px;
    border-radius: 999px 999px 0px 0px;
    border: 0.5px solid var(--background-secondary);
}

.activity-wrap-outer.same-location {
    padding: 8px;
    border-radius: 999px 999px 0px 0px;
    border: 1.5px solid var(--background-secondary);
    background: var(--background-primary);
}

.activity-item {
    display: flex;
    flex-direction: column;
    padding: 8px;
    border-radius: 999px 999px 0px 0px;
    border: 1.5px solid var(--background-secondary);
}

.activity-item-inner {
    padding: 60px 24px 40px;
    border-radius: 999px 999px 0px 0px;
    border: 0.5px solid var(--background-secondary);
    background: var(--background-primary);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-wrap.same-location .activity-item {
    border-radius: unset;
    border: none;
    padding: 0;
}

.activity-wrap.same-location .activity-item-inner {
    border-radius: unset;
    border: none;
    padding: 0;
    background: transparent;
}

/* activity head */
.activity-head {
    padding: 0px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* .activity-head .activity-icon {
    width: 60px;
    height: 60px;
    display: block;
    object-fit: contain;
    object-position: center;
  } */
.activity-head svg.activity-icon {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0px auto 12px;
}

.activity-head svg.activity-icon path {
    fill: var(--text-primary);
}

.activity-head .activity-title {
    font-size: calc(var(--heading-size));
    color: var(--text-primary);
    font-family: var(--heading-family);
    font-weight: 400;
}

.activity-head .activity-description {
    font-size: calc(var(--body-text-size));
    font-weight: 400;
    color: var(--text-tertiary);
    line-height: 150%;
}

.activity-head .activity-time {
    font-size: calc(var(--body-text-size));
    font-weight: 600;
    line-height: 150%;
    color: var(--text-tertiary);
}

/* Agenda Details */
.event-details,
.activity-details {
    padding: 0px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-details {
    padding: 16px 5% 40px;
    border-top: 1px solid var(--background-secondary);
    border-bottom: 1px solid var(--background-secondary);
    background: var(--background-primary);
}

.adr-cty_wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-details .event-hall,
.activity-details .activity-hall {
    font-size: calc(var(--body-text-size));
    color: rgba(var(--text-tertiary-rgb), 1);
    font-weight: 600;
    line-height: 150%;
}

.event-details .event-address,
.activity-details .activity-address {
    font-size: calc(var(--body-text-size));
    color: rgba(var(--text-tertiary-rgb), 0.75);
    font-weight: 300;
    line-height: 150%;
}

.event-details .event-city,
.activity-details .activity-city {
    font-size: calc(var(--body-text-size));
    color: rgba(var(--text-tertiary-rgb), 0.75);
    font-weight: 600;
    line-height: 150%;
}

.event-link-wrap,
.activity-link-wrap {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.event-link,
.activity-link {
    border: none;
    outline: none;
    text-decoration: none;
    padding: 9px 16px;
    width: 100%;

    font-family: var(--body-text-family);
    font-weight: 500;
    font-size: var(--body-text-size);
    line-height: 1.5;

    transition: all 0.25s ease-in-out;
    background: var(--button-background-secondary);
    color: var(--button-text-secondary);
    border: 1px solid var(--button-text-secondary);

    border-radius: 100px;
}

.event-link:hover,
.activity-link:hover {
    background: var(--button-background-primary);
    color: var(--button-text-primary);
    border: 1px solid var(--button-text-primary);
}

/* Agenda */
.event-content .orn-pillar {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 112%;
    /* height: 108%; */
    height: calc(100% + 30px);
    margin-top: 13px;
    /* transform: translate(-50%, -49%); */
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
}

.event-content .orn-pillar .pillar-top {
    margin-top: -11px;
}

.event-content .orn-pillar .pillar-center {
    flex-grow: 1;
    display: flex;
}

.event-content .orn-pillar .pillar-center .image-wrap {
    margin: -5px 0px;
    flex-grow: 1;
}

.event-content .orn-pillar .pillar-center .image-wrap img {
    width: 100%;
    height: 100%;
    background-repeat: repeat-y;
}

.event-content .orn-pillar .pillar-bottom {
    margin-top: auto;
    margin-bottom: 15px;
    transform: scaleY(-1);
}

.event-head-wrap {
    position: relative;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.event-head-wrap .item-2-event {
    padding: 0 8px;

    display: flex;
    flex-direction: column;
    gap: 4px;
}

.event-schedule-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.event-head .event-schedule-wrapper .event-day,
.event-head .event-schedule-wrapper .event-date {
    font-family: var(--heading-family);
    font-size: calc(var(--heading-size));
    color: var(--text-primary);
    font-weight: 400;
}


/* ==============================
        Agenda
============================== */
.dress-inner {
    border-top: 1px solid var(--background-secondary);
    border-bottom: 1px solid var(--background-secondary);
    background: var(--background-primary);
    padding: 0;
    gap: 0;
}

.dress-header {
    padding: 16px 24px;
    border-bottom: 1px solid var(--background-secondary);
}

.dress-header p.dress-desc {
    font-weight: 300;
}

.dress-header h2.dress-title {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    font-weight: 600;
    line-height: 142%;
}

.dress-list {
    position: relative;
    flex-direction: row;
    padding-bottom: 24px;
    padding-top: 24px;
}
.dress-list::before {
    content: '';
    width: 1px;
    height: 100%;
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%);
    background: var(--background-secondary);
}
.dress-list.single::before {
    content: none;
}

.dress-item {
    flex: 1;
}

.dress-body {
    /* padding-bottom: 24px; */
}

.dress-preview {
    background: transparent;
    width: 100px;
    height: 100px;
    border-radius: 24px;
}

.dress-list .dress-item-title {
    font-weight: 600;
    color: var(--text-tertiary);
}

.dress-icon .dress-icon-label {
    color: rgba(var(--text-tertiary-rgb), 0.75);
    font-size: calc(var(--body-text-size));
}

.dress-footer {
    padding: 24px;
    padding-top: 24px;

    border-top: 1px solid var(--background-secondary);
}



/* ==============================
?        RSVP
============================== */
.rsvp-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 10% 20px 10%;
}

.rsvp-wrap::before {}

.rsvp-inner {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    /* overflow: hidden; */
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px; */
}

/* Head */
.rsvp-head {
    padding: 0px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.rsvp-head .rsvp-title {
    font-family: var(--heading-family);
    font-size: calc(var(--heading-size));
    color: var(--text-primary);
}

.rsvp-info{
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.rsvp-body_wrapper {
    position: relative;
}

.rsvp-body-wrap {
    font-family: var(--heading-family);
    font-size: calc(var(--heading-size) + 8px);
    color: var(--text-tertiary);
    padding: 24px 0px;
    margin-bottom: 10px;
}

.rsvp-body-inner_wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.rsvp-body {
    position: relative;
    /* padding: 80px 40px;
    border-radius: 999px 999px 0px 0px;
    border: 2px solid var(--text-primary);
    background: var(--background-primary); */
}

/* RSVP Status */
.rsvp-status-wrap {
    margin: 0px auto 24px;
}

.rsvp-status-head {
    text-align: center;
}

.rsvp-status-head .rsvp-status-caption {
    color: var(--text-tertiary);
}

/* RSVP Status Body */
.rsvp-status-body {
    margin-top: 5px;
}

.rsvp-status-wrap input[name="rsvp_status"] {
    display: none;
}

.rsvp-status-wrap input[name="rsvp_status"]:checked+.rsvp-confirm-btn.going {

    min-width: 50%;

    background: var(--button-background-secondary);
    color: var(--button-text-secondary);
    border: 1px solid var(--button-text-secondary);
}

.rsvp-status-wrap input[name="rsvp_status"]:checked+.rsvp-confirm-btn.not-going {

    background: var(--button-background-secondary);
    color: var(--button-text-secondary);
    border: 1px solid var(--button-text-secondary);
}

/* RSVP Amount */
.rsvp-amount-wrap {
    margin: 10px 0;
}

.rsvp-amount-head {
    text-align: center;
}

.rsvp-amount-head .rsvp-amount-caption {
    color: var(--text-tertiary);
}

.rsvp-session-wrap .session-caption-wrap .caption {
    font-family: var(--body-text-family);
    font-style: var(--body-text-style);
    font-weight: var(--body-text-weight);
    font-size: var(--body-text-size);
    text-transform: var(--body-text-lettercase);
    line-height: 1;
    color: var(--text-tertiary);
    text-align: center;
}

.rsvp-amount-body {}

/* Amount Controller */
.rsvp-amount-controller-wrap {
    margin-top: 12px;
}

.rsvp-amount-controller {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 8px;
}

.rsvp-amount-controller .toggle-btn {
    background-color: transparent;
    border: 1px solid transparent;
    outline: none;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.rsvp-amount-controller .toggle-icon {
    width: 12px;
    height: auto;
    display: block;
}

.rsvp-amount-controller .toggle-icon path {
    transition: all 0.25s ease-in-out;
    stroke: var(--dark-clr);
}

.rsvp-amount-controller .toggle-btn.plus {
    background-color: var(--background-secondary);
}

.rsvp-amount-controller .toggle-btn.plus .toggle-icon path {
    stroke: var(--text-secondary);
}

.rsvp-amount-controller .toggle-btn.plus:hover {}

.rsvp-amount-controller .toggle-btn.plus:hover .toggle-icon path {}

.rsvp-amount-controller .toggle-btn.minus {
    background: var(--background-primary);
    border: 1px solid var(--background-secondary);
}

.rsvp-amount-controller .toggle-btn.minus .toggle-icon path {
    stroke: var(--button-text-primary);
}

.rsvp-amount-controller .toggle-btn.minus:hover {}

.rsvp-amount-controller .toggle-btn.minus:hover .toggle-icon path {}

.rsvp-amount-controller .input-wrap {
    width: 100%;
}

.form-control.group-guest,
.rsvp-plus-wrapper .form-control,
.rsvp-amount-controller .input-control {
    width: 100%;
    outline: none;
    text-align: center;
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    font-weight: var(--body-text-weight);
    border: 1px solid var(--button-text-primary);
    border-radius: 999px;
    background-color: transparent;
    color: var(--text-tertiary);
}
.rsvp-amount-controller .input-control {
    height: 40px;
    pointer-events: none;
}

/* RSVP Confirm */
.rsvp-confirm-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 12px;
    margin-top: 24px;
}

.rsvp-confirm-wrap.btn {
    padding: 4px;
    border-radius: 999px;
    border: 1px solid var(--button-text-primary);
}

.rsvp-confirm-wrap>label {
    display: block;
    text-align: center;
    flex-grow: 1;
    width: 100%;
}

.rsvp-confirm-btn:hover {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
    border: 1px solid var(--button-background-primary);
}

.rsvp-confirm-btn {
    width: 100%;
    display: flex;
    padding: 9px 16px;
    margin: 0px auto;
    border-radius: 20px;

    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    font-weight: var(--body-text-weight);
    line-height: 1;
    font-weight: 600;

    background-color: var(--button-background-secondary);
    color: var(--button-text-secondary);
    border: 1px solid var(--button-background-secondary);

    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.rsvp-session-btn,
.form-check-label {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-family: var(--body-text-family);
    border-radius: 20px;
    gap: 4px;

    background: var(--button-background-secondary);
    color: var(--button-text-secondary);
    border: 1px solid var(--button-text-secondary);
    font-weight: 600;
    font-size: var(--body-text-size);
}

.rsvp-session-btn:hover {
    background: var(--button-background-primary);
    color: var(--button-text-primary);
    border: 1px solid var(--button-text-primary);
}

.session-btn-wrap input[name="selected_event[]"]:checked+.rsvp-session-btn svg {
    display: block;
}

.rsvp-session-btn svg {
    width: 20px;
    height: auto;
    display: none;
}

input[name="rsvp_status"]:checked+.rsvp-confirm-btn svg {
    display: block;
}

.rsvp-confirm-btn svg {
    width: 20px;
    height: auto;
    display: none;
}

.rsvp-confirm-btn svg path {
    color: var(--text-tertiary);
    fill: var(--text-tertiary);
}

.rsvp-session-btn svg path {
    color: var(--text-tertiary);
    fill: var(--text-tertiary);
}

.session-btn-wrap {
    flex-direction: column;
}

.session-btn-wrap input[name="selected_event[]"]:checked+.rsvp-session-btn,
.session-btn-wrap input[name="selected_event_all"]:checked+.rsvp-session-btn,
.form-check-label:has(.form-check-input:checked),
.form-check-label:hover {
    background: var(--button-background-secondary);
    color: var(--button-text-secondary);
    border: 1px solid var(--button-text-secondary);
}

.rsvp-confirm-btn.going {
    background: var(--button-background-secondary);
    color: var(--button-text-secondary);
    border: 1px solid var(--button-text-secondary);
}

.rsvp-confirm-btn.going:hover {
    background: var(--button-background-primary);
    color: var(--button-text-primary);
    border: 1px solid var(--button-text-primary);
}

.rsvp-confirm-btn.not-going {

    background: var(--button-background-secondary);
    color: var(--button-text-secondary);
    border: 1px solid var(--button-text-secondary);
}

.rsvp-confirm-btn.not-going:hover {
    background: var(--button-background-primary);
    color: var(--button-text-primary);
    border: 1px solid var(--button-text-primary);
}

.rsvp-change-wrap .rsvp-confirm-btn.confirm {
    justify-content: center;
}

.rsvp-confirm-btn.confirm {
    background: var(--button-background-primary);
    color: var(--button-text-primary);
    border: 1px solid var(--button-text-primary);
    min-height: 100%;
    justify-content: center;
}
.dot-logo-rsvp{
    width: 100%;
    display: flex;
    padding: 9px 16px;
    border-radius: 20px;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    inset: 0;
    gap: 4px;
}

.rsvp-confirm-wrap .rsvp-confirm-btn.confirm svg {
    display: block;

}

.rsvp-confirm-btn.confirm:hover {
    background-color: rgba(var(--button-background-secondary-rgb), 0.8);
    color: var(--button-text-secondary);
    border: 1px solid var(--button-text-secondary);
}

.rsvp-confirm-btn.download {
    background: var(--button-background-secondary);
    color: var(--button-text-secondary);
    border: 1px solid var(--button-text-secondary);
}

.rsvp-confirm-btn.download:hover {
    background-color: rgba(var(--button-background-secondary-rgb), 0.8);
    color: var(--button-text-secondary);
}

.rsvp-confirm-btn>i {
    font-size: 0.8em;
    margin-left: 5px;
}

/* End RSVP Confirm */

/* QR Card */
.rsvp-qrcard-wrap {
    padding: 20px 0;
    margin-top: 0px;
}

.rsvp-qrcard-img-wrap {
    margin-bottom: 30px;
}

.rsvp-qrcard-img {
    display: block;
    width: 100%;
    max-width: 240px;
    border-radius: 5px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.rsvp-qrcard-wrap+.rsvp-message-wrap {
    margin-top: 0;
}

/* End QR Card */

/* RSVP Message */
.rsvp-message-wrap {
    position: relative;
}

.rsvp-message-content {
    background-color: transparent;
    border-radius: 5px;
    padding-bottom: 20px;
    text-align: center;
}

.rsvp-message-wrap .rsvp-message-icon {
    width: 30px;
    height: auto;
    display: none;
    margin: 0 auto 20px;
}

.rsvp-message-wrap .rsvp-message-icon path {
    fill: var(--title-clr);
}

.rsvp-message-wrap .rsvp-message-title {
    font-size: calc(var(--heading-size));
    color: var(--text-tertiary);
    margin-bottom: 20px;
}

.rsvp-message-wrap .rsvp-message-caption {
    font-size: var(--body-text-size);
    color: var(--text-tertiary);
}

/* End RSVP Message */

/* RSVP Change */
.rsvp-change-wrap {}

/* End RSVP Change */

.general-qrcode {
    padding: 5% 20px 0;
}

@media (min-width: 560px) and (max-width: 960px) {}

@media (min-width: 768px) {
    .rsvp-message-wrap .rsvp-message-title {
        padding: 30px 0;
    }
}

@media (min-width: 1200px) {
    .rsvp-message-wrap .rsvp-message-title {
        padding: 30px 0;
    }
}


/* ==============================
        Love Story
============================== */
section.love-story {
    position: relative;
    overflow: hidden;
    padding: 7% 0px 5%;
    background: var(--background-secondary);
}

/* inner */
section.love-story .story-inner {
    position: relative;
    z-index: 2;
}

/* head */
.story-inner .story-head {
    text-align: center;
    margin-bottom: 12%;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.story-inner .story-head .separator-orn path {
    fill: var(--text-secondary);
}

.story-head .story-title {
    color: var(--text-secondary);
}

/* body */
.story-body {
    position: relative;
    /* width: calc(100% - 90px); */
    max-width: 600px;
    margin: 0 auto;
}

/* preview */
.story__slider-preview {
    margin-bottom: 5%;
    margin-left: 16px;
    margin-top: 12px;
    min-height: 240px;
}

.story__slider-preview .slick-list {
    overflow: visible;
}

.story__slider-caption-wrap .slick-list {
    overflow: visible;
}


/* caption wrap */
.story__slider-caption-wrap {
    position: relative;
    /* margin-bottom: 16px; */
    /* padding: 16px 0px; */
    overflow: hidden;
}

/* caption */
.story__slider-caption {}

.story-details-wrapper {
    position: relative;
    margin: 0 auto;
}

/* dots */
.story__slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.story__slider-dots>ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.story__slider-dots>ul>li {}

.story__slider-dots>ul>li>button {
    display: block;
    border: none;
    outline: none;
    box-shadow: none;
    width: 8px;
    height: 8px;
    border-radius: 16px;
    font-size: 0px;
    background: rgba(var(--background-secondary-rgb), 0.75);
    cursor: pointer;
    transition-duration: 0.2s;
    transition-property: width, background;
    border: var(--text-primary) solid 1px;

}

.story__slider-dots>ul>li.slick-active>button {
    background: var(--button-background-primary);
}

/* story preview */
.story-body .story-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    margin-right: 16px;
    transition: all 0.3s ease-in-out;
}

.story-body .story-preview .preview-wrap {
    transition: all 0.3s ease-in-out;
    position: relative;
    width: 120px !important;
    height: 180px !important;
}

.story-body .story-preview.slick-active .preview-wrap {
    width: 160px !important;
    height: 240px !important;
}

.story-body .story-preview.slick-active {
    /* width: 160px !important;
    height: 240px !important; */
}



.story-preview .story-picture {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.story-preview .story-picture>a {}

.story-preview .story-picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/* details */
.story-body .story-details {
    position: relative;
    width: 100%;
    padding: 16px;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
}

.story-details .story-sub-title {
    color: var(--text-secondary);
    text-align: right;
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    flex: 1;
    font-weight: 600;
    line-height: 142%;
    word-break: break-word;
}

.story-details .story-caption {
    color: var(--text-secondary);
    text-align: left;
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    line-height: 142%;
    font-weight: 300;
    flex: 1;

}

.story--button {
    position: absolute;
    top: 0%;
    display: flex;
    justify-content: center;
    /* width: 35px;
      height: 35px; */
    transform: translate(0%, -50%);
    background-color: var(--background-primary);
    border: 1px solid var(--text-primary);
    border-radius: 50%;
    padding: 8px;
    font-size: var(--body-text-size);
    color: var(--text-primary);
}

.story--button:hover {
    background-color: var(--background-primary);
    border: 1px solid var(--text-primary);
}

.story--button.prev {
    left: 0;
    top: 50%;
    transform: translate(15%, -50%);
}

.story--button.next {
    top: 50%;
    right: 0;
    transform: translate(-15%, -50%);
}

.slick-track {
    transition: all 0.3s ease;
}

@media (min-width : 560px) and (max-width: 960px) {
    .story-body .story-preview .preview-wrap {
        transition: all 0.3s ease-in-out;
        position: relative;
        width: 220px !important;
        height: 280px !important;
    }

    .story-body .story-preview.slick-active .preview-wrap {
        width: 260px !important;
        height: 340px !important;
    }

    .story__slider-preview {
        min-height: 340px;
    }

}

@media (min-width : 560px) {
    .story-body .story-preview .preview-wrap {
        transition: all 0.3s ease-in-out;
        position: relative;
        width: 220px !important;
        height: 280px !important;
    }

    .story-body .story-preview.slick-active .preview-wrap {
        width: 260px !important;
        height: 340px !important;
    }

    .story__slider-preview {
        min-height: 340px;
    }

}


/* ==============================
        Galeri
============================== */
.photo-wrap {
    position: relative;
    overflow: hidden;
    background: var(--background-secondary);
    padding-bottom: 10%;
}

.photo-wrap .photo-inner {
    padding: 5% 0px 7%;
    position: relative;
}

.photo-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.photo-wrap .separator-orn path {
    fill: var(--text-secondary);
}

/* Head */
.photo-inner .photo-head {
    position: relative;
    text-align: center;
    padding: 20px 28px 40px;
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.photo-head-inner-wrap {
    padding: 4px;
    border-radius: 50%;
    border: 0.5px solid var(--background-primary);
}

.photo-head-inner {
    padding: 4% 4px;
    border-radius: 50%;
    border: 0.5px solid var(--background-primary);
}

.photo-head .photo-title {
    font-family: var(--heading-family);
    font-size: calc(var(--heading-size));

    color: var(--text-secondary);
}

.photo-head .photo-caption {
    font-family: var(--body-text-family);
    color: var(--text-secondary);
    /* margin-top: 15px; */
    font-size: var(--body-text-size);
}

/* Body */
.photo-inner .photo-body {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* Photo Nav Wrap */
.photo-body .photo-nav-wrap {
    position: relative;
    margin: 0 35px;
    margin-bottom: 20px;
}

.photo-nav-wrap .photo-nav {
    position: relative;
}

.photo-nav .slick-list {}

.photo-nav .photo-item {}

.photo-nav .photo-img-wrap {
    width: 100%;
}

.photo-nav .photo-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Photo Slider Wrap */
.photo-body .photo-slider-wrap {
    position: relative;
}

.photo-slider-wrap .photo-slider {
    position: relative;
}

.photo-slider .slick-list {}

.photo-slider .photo-item {
    padding: 0px 7.5px;
}

.photo-slider .photo-img-wrap {
    width: auto;
    height: 150px;
}

.photo-slider .photo-img {
    width: auto;
    min-width: 110px;
    height: 100%;
    border-radius: 20px;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Arrow */
.photo-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background-color: transparent;
    padding: 10px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.25s ease-in-out;
}

.photo-arrow:hover {
    opacity: 1;
}

.photo-arrow.prev {
    left: 0%;
    transform: translate(-88%, 0%);
}

.photo-arrow.next {
    right: 0%;
    transform: translate(88%, 0%);
}

.photo-arrow.slick-disabled {
    display: none !important;
}

.photo-arrow svg {
    width: 12px;
    height: auto;
    display: block;
}

.photo-arrow svg path {
    stroke: #ffffff;
}

@media screen and (min-width: 680px) and (max-width: 960px) {}

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

/* dots */
.story__slider-dots {
    display: flex;
    justify-content: center;
}

.story__slider-dots>ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.story__slider-dots>ul>li {}

.story__slider-dots>ul>li>button {
    display: block;
    border: none;
    outline: none;
    box-shadow: none;
    width: 8px;
    height: 8px;
    border-radius: 16px;
    font-size: 0px;
    background: rgba(var(--background-primary-rgb), 0.2);
    cursor: pointer;
    transition-duration: 0.2s;
    transition-property: width, background;
}

.story__slider-dots>ul>li.slick-active>button {
    background: var(--background-primary);
}


/* ==============================
    Video
============================== */
section.video-gallery {
    position: relative;
    overflow: hidden;
    padding: 0;
    padding-bottom: 5%;

    background: var(--background-secondary);
}

section.video-gallery .inner {
    padding: 0px;
}

section.video-gallery .inner>.title {
    width: 100%;
    margin: 0px auto;
    text-align: center;
    padding: 5% 24px 6.2%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
}

section.video-gallery .inner>.title h1 {
    font-size: var(--heading-size);
    font-weight: normal;
    color: var(--text-secondary);

    margin-bottom: 0px;
    padding: 0px;
}

section.video-gallery .inner>.title p {
    font-size: var(--body-text-size);
    line-height: normal;
    color: var(--text-secondary);
}

/* video outer */
section.video-gallery .inner .video-outer {
    width: 100%;
    padding: 0px 25px;
    margin-top: 80px;
}

section.video-gallery .inner>.title+.video-outer {
    margin-top: 0px;
}

.video-preview-wrap {
    padding: 8px;
    position: relative;
    border: 0.5px solid var(--background-primary);
}

section.video-gallery .inner .video-outer .video {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0px 0px 5%;
}

.video-gallery>.inner>.video-outer .video:last-of-type {
    margin: 0px 0px 5%;
}

section.video-gallery .inner .video-outer .video .preview,
section.video-gallery .inner .video-outer .video .preview img {
    border-radius: 0px;
}

.video-gallery .inner .video-outer .video .preview {
    /* width: 100%;
    height: 240px; */
}

.video-gallery .inner .video-outer .video .preview {
    position: relative;
    display: block;
    width: 100%;
    height: 200px;
    padding-top: 56.25%;
    /* 16:9 Aspect Ratio */
}

.video-gallery .inner .video-outer .video .preview>img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* video label */
section.video-gallery .inner .video-outer .video>.title {
    padding: 8px 10%;
}

section.video-gallery .inner .video-outer .video>.title h2 {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size));
    font-weight: 300;
    line-height: 150%;
    font-style: normal;
    color: var(--text-secondary);
}

@media (min-width: 760px) {
    section.video-gallery .inner .video-outer .video {
        max-width: 570px;
    }
}


/* ==============================
        Live Streaming
============================== */
section.live-streaming {
    padding: 0;
    position: relative;
    overflow: hidden;
    padding-bottom: 5%;
}

section.live-streaming .inner {
    padding: 0px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: unset;
}

.live-streaming>.inner>.head>p {
    font-size: calc(var(--body-text-size));
    font-style: normal;
    font-weight: 300;
    line-height: 150%;
    color: var(--text-secondary);
}

/* head */
section.live-streaming .inner .head {
    text-align: center;
    padding: 10.3% 10.3% 15.4%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;

    border-radius: 0px 0px 999px 999px;
    background: var(--background-secondary);
}

section.live-streaming .inner .head h1 {
    font-size: var(--heading-size);
    color: var(--text-secondary);
    line-height: 1.45;
}

/* body */
.live-streaming .inner .body {
    padding: 0;
    max-width: 640px;
    margin: 0 auto;
}

.live-streaming .inner .body p.meeting-text {
    font-family: var(--body-text-family);
    font-weight: 500;
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
}

.live-streaming .inner .body>.streaming-info {
    /* padding: 0px 24px; */
    flex-direction: column-reverse;
}

.live-streaming .inner .body>.streaming-info>div {
    padding: 0px 24px;
}

.live-streaming .inner .body>.streaming-info>div.zoom-details {
    padding: 0px 24px;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 24px;
}

.live-streaming .inner .body>.streaming-info>div.zoom-details>div {
    margin: 0;
    flex-grow: 1;
    width: 100%;
}

.live-streaming .inner .body>.streaming-info>div>.preview {
    width: 70px;
}

.live-streaming .inner .body>.streaming-info>div>.preview.google-meet {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--background-secondary);
}

.live-streaming .inner .body>.streaming-info>div>.preview.google-meet>img {
    width: 62.5%;
    height: auto;
    border-radius: 0;
}

.live-streaming .inner .body>.streaming-info>div>.preview,
.live-streaming .inner .body>.streaming-info>div>.preview>img {
    border-radius: 0;
}

.live-streaming .inner .body>.streaming-info>div>.preview.wide {
    height: 200px;
}

.live-streaming .inner .body>.streaming-info>div>.preview.wide>img {
    object-fit: cover;
}

.live-streaming .inner .body>.streaming-info>div>.preview.wide.youtube {
    height: 201px;
}

.live-streaming .inner .body>.streaming-info>div>.preview>.play-btn {
    width: 70px;
    height: 70px;
    font-size: 30px;
    color: var(--text-primary);
}

.live-streaming .inner .body>.streaming-info>div.link {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.live-streaming .inner .body>.streaming-info>div.link .button-outer {
    width: 100%;
    padding: 4px;
    border-radius: 999px;
    border: 1px solid var(--button-text-primary);
    margin: 0 auto;
}

.live-streaming .inner .body>.streaming-info>div.link a {
    border: none;
    outline: none;
    box-shadow: none;
    width: 100%;

    font-family: var(--body-text-family);
    font-weight: 400;
    font-size: var(--body-text-size);

    background-color: var(--button-background-primary);
    border: none;
    color: var(--button-text-primary);
    border: 0.5px solid var(--button-text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: all 0.25s ease-in-out;

    border-radius: 100px;
    padding: 9px 16px;
}

.live-streaming .inner .body>.streaming-info>div.link a:hover {
    background-color: rgba(var(--button-background-secondary-rgb), 1);
    color: var(--button-text-secondary);
}

@media (min-width: 768px) and (max-width: 960px) {
    section.live-streaming {}

    .live-streaming .inner .body>.streaming-info>div>.preview.wide {
        height: 320px;
    }
}

@media (min-width: 425px) {
    .live-streaming .inner .body>.streaming-info>div>.preview.wide.youtube {
        height: auto;
    }
}

@media (min-width: 1200px) {
    .live-streaming .inner .body>.streaming-info>div>.preview.wide {
        height: 320px;
    }
}



/* ==============================
        Wedding Gift
============================== */
.wedding-gift-wrap {
    position: relative;
    width: 100%;
    /* max-width: 600px; */
    margin: 0 auto;
    padding: 5% 0px;
    overflow: hidden;
}

.wedding-gift-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
}

/* Head */
.wedding-gift-head {
    position: relative;
    text-align: left;
    margin: 0 auto;
    padding: 4.2% 15.4% 0% 5%;
    width: 100%;
}

.wedding-gift-head .wedding-gift-title {
    /* padding-bottom: 10px; */
}

.wedding-gift-head .wedding-gift-description {
    font-size: var(--body-text-size);
    text-align: left;
    color: rgba(var(--text-tertiary-rgb), 0.75);
}

/* Body */
.wedding-gift-body-wrap {
    position: relative;
    width: 100%;
    padding: 0 24px;
}

.wedding-gift-body {
    position: relative;
    width: 100%;
}

.wedding-gift-body .wedding-gift-body-inner {
    position: relative;
    /* padding: 0% 24px; */
    border-radius: 999px;
    max-width: unset;
    margin: 0 auto;
}

.wedding-gift-form {
    position: relative;
    width: 100%;
    max-width: unset;
    margin: 0 auto;
}

/* Wedding Gift Form */
#weddingGiftForm {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    max-width: unset;
    margin: 0 auto;
}

#weddingGiftForm .wedding-gift-slide {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 100%;
    transition: all 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Details */
.wedding-gift-details {}

/* Select Bank */
.wedding-gift-select-bank-wrap {
    /* padding-bottom: 24px; */
}

.wedding-gift-select-bank-wrap .selectize-control.form-control {
    background: transparent;
    padding: 0;
    border: none;
    border-radius: 8px;
}

.wedding-gift-select-bank-wrap .selectize-control.form-control:focus,
.wedding-gift-select-bank-wrap .selectize-control.form-control:active {
    /* background-color: var(--button-background-primary);
    color: var(--button-text-primary); */
}

.wedding-gift-select-bank-wrap .selectize-control.form-control .selectize-dropdown-content {
    max-height: 124px;
}

.wedding-gift-select-bank-wrap .selectize-control.form-control .selectize-input {
    background: var(--button-background-secondary);
    border: 1px solid var(--button-text-secondary);
    padding: 12px;
    border-radius: 999px;
    /* display: none; */
}

.wedding-gift-select-bank-wrap .selectize-control.form-control .selectize-input::after {
    border-top-color: var(--button-text-primary);
}

.wedding-gift-select-bank-wrap .selectize-control.form-control .select-bank__title {
    font-family: var(--body-text-family);
    color: var(--button-text-secondary);
    font-weight: 600;
}

.wedding-gift-select-bank-wrap .selectize-dropdown.form-control {
    padding: 0;
    margin-top: 10px;
    box-shadow: none;
    overflow: hidden;
    background-color: var(--button-background-secondary) !important;
    border: 1px solid var(--button-text-secondary) !important;
    color: var(--button-text-primary);
    border: none;
}

.wedding-gift-select-bank-wrap .selectize-dropdown.form-control .select-bank__title {
    color: var(--button-text-primary);
}

.wedding-gift-select-bank-wrap .selectize-dropdown.form-control .select-bank__credential {
    font-size: calc(var(--body-text-size) - var(--fs-extra-3));
    color: var(--button-text-primary);
}

.wedding-gift-select-bank-wrap .selectize-dropdown.form-control .item {
    background-color: var(--button-background-secondary) !important;
    color: var(--button-text-secondary) !important;
}

.wedding-gift-select-bank-wrap .selectize-dropdown.form-control .item:hover {
    background-color: var(--button-background-primary) !important;
    color: var(--button-text-primary) !important;
}

.wedding-gift-select-bank-wrap .selectize-dropdown.form-control .item:hover .select-bank__title,
.wedding-gift-select-bank-wrap .selectize-dropdown.form-control .item:hover .select-bank__credential {
    color: var(--button-text-secondary);
}

/* Bank */
.wedding-gift-bank-wrap {}

.wedding-gift-bank-wrap .bank-item {
    padding: 0px;
    align-items: flex-start;
    flex-direction: row-reverse;
    align-items: center;
    gap: 8px;
    display: none;
}

.wedding-gift-bank-wrap .bank-item.show {
    display: flex;
}

/* Bank Detail */
.wedding-gift-bank-wrap .bank-detail {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
    text-align: left;
}

.wedding-gift-bank-wrap .bank-name {
    font-size: var(--body-text-size);
    font-family: var(--body-text-family);
    font-weight: 500;
    color: var(--text-primary);
}

.wedding-gift-bank-wrap .bank-account-number-label {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;

    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size));
    color: var(--text-tertiary);
}

.wedding-gift-bank-wrap .bank-account-number {
    font-size: var(--body-text-size);
    font-family: var(--body-text-family);
    font-weight: 300;
    word-break: break-all;
    color: var(--button-text-primary);
}

.wedding-gift-bank-wrap .bank-account-name-label {
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;

    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size));
    color: rgba(var(--text-tertiary-rgb), 0.75);
    margin-bottom: 0.25em;
}

.wedding-gift-bank-wrap .bank-account-name {
    font-size: var(--body-text-size);
    font-family: var(--body-text-family);
    font-weight: 300;
    word-break: break-all;
    color: rgba(var(--text-tertiary-rgb), 0.75);
}

.wedding-gift-bank-wrap .bank-account-copy-btn {
    border-bottom: 1px solid var(--button-text-primary);    
    color: var(--button-text-primary);
    padding: 0px 0 6px;
    width: max-content;
}

.wedding-gift-bank-wrap .bank-account-copy-btn>i {
    font-size: var(--body-text-size);
    margin-right: 4px;
    color: var(--button-text-primary);
}

/* Bank Img Wrap */
.wedding-gift-bank-wrap .bank-img-wrap {
    display: flex;
    width: 45%;
}

.wedding-gift-bank-wrap .bank-img-link {
    display: inline-block;
    vertical-align: top;
    margin: auto;
    width: 100%;
}

.wedding-gift-bank-wrap .bank-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
    max-height: 100%;
}

/* Sender Data */
.wedding-gift-sender-data-wrap {
    /* padding: 24px 0; */
    /* margin-top: 30px; */
}

.bank_con-label-wrap {
    display: flex;
    gap: 4px;
    align-items: center;
}

.wedding-gift-sender-data-wrap label {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    display: block;
    color: var(--text-tertiary);
    font-weight: 600;
}

.wedding-gift-sender-data-wrap .form-group {
    margin-top: 8px;
    margin-bottom: 0;
}

.wedding-gift-sender-data-wrap textarea.form-control {
    height: auto;
    min-height: 0;
    max-height: 250px;
}

.wedding-gift-sender-data-wrap .form-control {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid var(--button-text-primary);
    border-radius: 0;
    padding: 8px 0;
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    color: var(--text-tertiary);
}

.wedding-gift-sender-data-wrap .form-control::placeholder {
    color: rgba(var(--text-tertiary-rgb), 0.5);
}

.wedding-gift-sender-data-wrap .form-control:focus {}

/* Wedding Gift Page */
.wedding-gift-page-wrap {
    padding: 0;
}

.wedding-gift-page {
    width: 100%;
    display: flex;
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    font-weight: var(--body-text-weight);
    line-height: normal;
    color: var(--button-text-primary);
    border: 0.5px solid var(--button-text-primary);
    background-color: var(--button-background-primary);
    padding: 9px 16px;
    border-radius: 999px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}

.wedding-gift-page:hover {
    background-color: rgba(var(--button-background-secondary-rgb), 1);
    border: 1px solid var(--button-text-secondary);
}

/* Wedding Gift Back Page */
.wedding-gift-back-page-wrap {
    /* padding: 20px 0; */
}

.wedding-gift-back-page {
    border: none;
    outline: none;
    background-color: transparent;
    color: var(--button-text-primary);
    font-size: 28px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.wedding-gift-back-page:hover {
    color: rgba(var(--button-text-primary-rgb), 0.75);
}

/* Wedding Gift Picture */
.wedding-gift-picture {
    padding: 0px 20px;
    /* padding-bottom: 10%; */
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 0;
}

.wedding-gift-upload-wrap {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    /* margin-bottom: 40px; */
}

.wedding-gift-upload-wrap::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    border: 2px dashed var(--text-primary);
    border-radius: 10px;
    background-color: transparent;
    pointer-events: none;
}

/* Wedding Gift Upload Description */
.wgu-description {
    text-align: center;
    padding: 20px;
    margin: 100px auto;
    display: none;
}

.wgu-description.show {
    display: block;
}

.wgu-description .wgu-icon {
    width: 120px;
    height: auto;
    opacity: 0.4;
    display: block;
    margin: 0 auto;
    margin-bottom: 20px;
}

.wgu-description .wgu-title {
    font-family: var(--body-text-family);
    color: var(--text-primary);
}

.wgu-description .wgu-desc {
    font-family: var(--body-text-family);
    color: var(--text-tertiary);
}

/* Wedding Gift Upload Image Wrap */
.wgu-img-wrap {
    display: none;
}

.wgu-img-wrap.show {
    display: block;
}

.wgu-img-wrap .wgu-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    display: block;
    object-fit: cover;
    object-position: center;
}

[data-wgu-file] {
    cursor: pointer;
}

/* Wedding Gift Message */
.wedding-gift-message {
    padding: 50px 20px;
}

.wgs-head {
    padding: 10px 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wgs-head .wgs-spark {
    width: 30px;
    height: auto;
    display: block;
}

.wgs-head .wgs-spark .fill {
    fill: var(--button-background-primary);
}

.wgs-head .wgs-spark .stroke {
    stroke: var(--button-background-primary);
}

.wgs-head .wgs-spark.left {
    margin-right: 20px;
}

.wgs-head .wgs-spark.right {
    margin-left: 20px;
    transform: scaleY(-1);
}

.wgs-icon-wrap {
    width: 120px;
    height: 120px;
    background-color: var(--background-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.wgs-icon-wrap.circle {
    border-radius: 50%;
}

.wgs-icon {
    display: block;
    width: 60px;
    height: auto;
}

.wgs-icon .fill {
    fill: var(--light-clr);
}

.wgs-body {
    padding: 10px 0;
    text-align: center;
}

.wgs-body .wgs-title {
    margin-bottom: 0.25em;
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size) + 5px);
}

.wgs-description {
    color: rgba(var(--dark-rgb), 0.5);
}

@media (min-width: 768px) {
    .wedding-gift-wrap.no-form {
        z-index: unset;
    }
}

@media (min-width: 1600px) {
    .wedding-gift-body .wedding-gift-body-inner {
        /* padding: 25% 24px; */
    }
}


/* =====================================
        KADO
==================================== */
.kado-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    margin-top: -1%;
}

.wedding-gifts-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0px;
}

.wedding-gifts-wrap.no-gift .wedding-gifts-inner {
    border-top: 2px solid var(--text-primary);
    border-radius: 16px;
    padding: 10% 24px 10%;
}

.wedding-gifts-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2% 0 10%;
    gap: 24px;
}

.wedding-gifts-head {
    position: relative;
    padding: 4.2% 5% 7% 15.4%;

}

.wedding-gifts-head .wedding-gifts-title {
    text-align: right;
}

.wedding-gifts-head .wedding-gifts-description {
    text-align: right;
}

.hadiah-wrap .wedding-gifts-label-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 16px;
}

.wedding-gifts-inner .wedding-gifts-label {
    color: var(--text-primary);
    font-weight: 600;
    line-height: 142%;
    text-align: left;
    margin: 0 16px;
}

.hadiah-wrap .wedding-gifts-label-wrap .wedding-gifts-label {
    margin: 0;
}

.wedding-gifts-inner .wedding-gift-address-wrap .wedding-gifts-label {
    margin: 0;
}

.wedding-gifts-inner .wedding-gifts-body {}

.wedding-gift-address-wrap {
    padding: 0 16px;
    background-color: transparent;
}

.wedding-gift-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

.wedding-gift-address-wrap .inner-address-info {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size));
}

.wedding-gift-address-wrap .inner-address-wrap .inner-address-info {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size));
    color: rgba(var(--text-tertiary-rgb), 0.75);
}

.wedding-gift-address-wrap .inner-address-info.name {
    color: var(--text-tertiary);
}

.wedding-gift-address-wrap .btn-hadiah-copy-2 {
    border-radius: 4px;
    padding: 8px 20px;
    border-radius: 999px;
    background-color: var(--button-background-secondary);
    color: var(--button-text-secondary);
    font-family: var(--body-text-family);
}

.inner-address-wrap {
    flex-direction: column;
    align-items: flex-start;
}

.kado-copy-wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    border-bottom: 1px solid var(--button-text-primary);
    color: var(--button-text-primary);
    gap: 4px;
    padding: 6px 0;
    font-weight: 300;
}

.btn-hadiah-copy {
    padding: 0;
    border: 0;
    color: var(--text-tertiary);
}

.wedding-gift-address-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    width: 100%;
}

.wedding-gifts-body .hadiah-wrap {
    display: unset;
    position: relative;
}

.hadiah-card-wrap.sold-out::after {
    border-radius: 0;
}

.wedding-gifts-body .hadiah-wrap .hadiah-card-wrap {
    border-radius: 0px;
    padding-bottom: 0px;

    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wedding-gifts-body .hadiah-card-wrap .hadiah-card {
    width: 100%;
    margin: 0 16px;
    background-color: transparent;
}

.hadiah-card-wrap .img-wrap {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 135px;
}

.hadiah-card-wrap .img-wrap .hadiah-img {
    border-radius: 0px;
    object-fit: cover;
    object-position: center;
    height: unset;
}

.hadiah-card .hadiah-card-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0px;
}

.card-title-wrap .hadiah-card-title {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    font-weight: 300 !important;
    color: var(--text-primary) !important;
}

.hadiah-card-inner .hadiah-card-price {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    font-weight: 300;
    color: var(--text-primary);
    padding: 0px;
}

.hadiah-card-inner .card-title-wrap {
    padding: 0px;
}

.hadiah-card-inner .hadiah-card-amount {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size) - 0px);
    font-weight: 300;
    color: rgba(var(--text-tertiary-rgb), 0.75);
    padding: 0px;
}

.hadiah-card-inner .hadiah-card-amount .total-amount {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size) - 0px);
    font-weight: 300;
    color: rgba(var(--text-tertiary-rgb), 0.75);
}

.hadiah-card-footer {
    padding: 0px;
    text-align: start;
}

.hadiah-card-footer .hadiah-card-button {
    border: none;
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    border-radius: 0px;
    font-weight: 300;
    padding: 6px 0;
    border-bottom: 1px solid var(--text-primary);
    margin-top: 8px;

    background-color: transparent;
    color: var(--text-primary);
    transition: all 0.25s ease-in-out;
}

.hadiah-card-footer .hadiah-card-button.disable {
    pointer-events: none;
}

/* MODAL KADO */
.kat__cropper-modal.kado {}

.kat__cropper-modal.kado .modal-kado-header {
    display: flex;
    justify-content: space-between;
}

.modal-kado-header .title {
    font-family: var(--heading-family);
    font-size: var(--body-text-size);
    color: var(--text-primary);
}

.kat__cropper-modal.kado span,
.kat__cropper-modal.kado p {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    color: var(--text-tertiary);
}

.buying-kado-btn {
    width: 100%;
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    border-radius: 8px;
    padding: 12px 20px;

    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
    transition: all 0.25s ease-in-out;
}

.buying-kado-btn:hover {
    background-color: rgba(var(--button-background-primary-rgb), 0.8);
    color: var(--button-text-primary);
}

.confirm-kado-btn {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    border-radius: 8px;
    padding: 12px 20px;

    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
    transition: all 0.25s ease-in-out;
}

.kado-form-btn .kado-send-btn {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    border-radius: 8px;
    padding: 12px 20px;

    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
    transition: all 0.25s ease-in-out;
}

.confirm-kado-btn:hover {
    background-color: rgba(var(--button-background-primary-rgb), 0.8);
    color: var(--button-text-primary);
    border: 1px solid var(--background-primary);
}


/* gifts Nav */
.hadiah-wrap .slick-dots {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 24px;
}

.hadiah-wrap .slick-dots li {
    flex-grow: 1;
    max-width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(var(--background-secondary-rgb), .5);
    transition: all 0.25s ease-in-out;
}

.hadiah-wrap .slick-dots li.slick-active {
    background-color: var(--background-secondary);
}

.hadiah-wrap .slick-dots li button {
    display: none;
}

.hadiah-card-wrap.top-pr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    margin-right: 16px;
    transition: all 0.3s ease-in-out;
}

.wedding-gifts-body .hadiah-wrap .hadiah-card-wrap .preview-wrap {
    transition: all 0.3s ease-in-out;
    position: relative;
    width: 120px !important;
    height: 180px !important;
}

.wedding-gifts-body .hadiah-wrap .hadiah-card-wrap.slick-active .preview-wrap {
    width: 160px !important;
    height: 240px !important;
}

@media (min-width: 768px) {
    .wedding-gift-address-wrapper {}
}


@media (min-width : 560px) and (max-width: 960px) {
    .wedding-gifts-body .hadiah-wrap .hadiah-card-wrap .preview-wrap {
        transition: all 0.3s ease-in-out;
        position: relative;
        width: 220px !important;
        height: 280px !important;
    }

    .wedding-gifts-body .hadiah-wrap .hadiah-card-wrap.slick-active .preview-wrap {
        width: 260px !important;
        height: 340px !important;
    }

    .story__slider-preview {
        min-height: 340px;
    }

}

@media (min-width : 560px) {
    .wedding-gifts-body .hadiah-wrap .hadiah-card-wrap .preview-wrap {
        transition: all 0.3s ease-in-out;
        position: relative;
        width: 220px !important;
        height: 280px !important;
    }

    .wedding-gifts-body .hadiah-wrap .hadiah-card-wrap.slick-active .preview-wrap {
        width: 260px !important;
        height: 340px !important;
    }

    .story__slider-preview {
        min-height: 340px;
    }

    .hadiah-card-wrap.top-pr {
        margin-right: 20px;
    }

}


/* =====================================
        INSTAGRAM FILTER
==================================== */
.ig-filter-wrap {
    position: relative;
    overflow: hidden;
    padding: 0% 0px 0%;
    background-image: var(--texture-1);
    background-repeat: repeat;
    background-size: 100%;
}

.ig-filter-wrap::before {
    content: '';
    position: relative;
    display: flex;
    width: 100%;
    height: 30px;
    background: var(--background-secondary);
}

.ig-filter-wrap::after {
    content: '';
    position: relative;
    display: flex;
    width: 100%;
    height: 30px;
    background: var(--background-secondary);
}

.ig-filter {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    /* min-height: 550px; */
    padding-bottom: 7%;
}

.ig-filter-frame {
    position: relative;
    width: 100%;
    min-height: 470px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* head */
.ig-filter-head {
    position: relative;
    width: 100%;
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 24px;
    padding: 0px 7%;
}

.ig-filter-head .ig-filter-title {
    color: var(--text-primary);
    margin-bottom: 0px;
}

.ig-filter-head .ig-filter-caption {
    font-size: calc(var(--body-text-size));
    color: var(--text-tertiary);
    width: 95%;
    margin: 0 auto;
    margin-top: 8px;
}

/* body */
.ig-filter-body {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}

/* body inner */
.ig-filter-body-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    width: 100%;
    /* max-width: 220px; */
}

.ig-filter-body-inner .z-0 {
    z-index: 0;
}

.ig-filter-body-inner .z-1 {
    z-index: 1;
}

.ig-filter-body-inner .z-2 {
    z-index: 2;
}

/* image */
.ig-filter-img-wrap {
    position: relative;
    display: flex;
    padding: 0px;
    width: 100%;
}

.ig-filter-img {
    width: 100%;
    min-height: 320px;
    max-width: none;
    object-fit: cover;
    max-height: 508px;
    border-radius: 0;
}

/* link */
.ig-filter-link-wrap {
    display: flex;
    justify-content: center;
    padding: 0px;
    width: 100%;
    max-width: 420px;
}

.ig-filter-link {
    border: none;
    outline: none;
    width: 100%;
    border-radius: 100px;
    padding: 12px 20px;

    background-color: var(--button-background-secondary);
    color: var(--button-text-secondary);
    border: 1px solid var(--button-text-secondary);

    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: var(--body-text-size);
}

.ig-filter-link:hover {
    background-color: rgba(var(--button-background-primary-rgb), 1);
    color: var(--button-text-primary);
}

@media (min-width: 768px) {
    .ig-filter-body-inner {
        /* width: 420px; */
    }

    .ig-filter-img {
        width: 420px;
        /* height: 420px; */
        max-height: unset;
    }
}


/* ======================
    PROTOCOL
====================== */
section.protocol {
    background-color: transparent;
    overflow: hidden;
    position: relative;
    padding-bottom: 10%;
}

/* Protocol 01 */
section.protocol.protocol-01 {
    padding: 6%;
}

section.protocol.protocol-01 .inner .head {
    background-color: transparent;
    padding: 0;
}

section.protocol.protocol-01 .inner .head h1 {
    font-size: var(--heading-size);
    font-weight: var(--heading-weight);
    color: var(--text-primary);
    line-height: normal;
    text-transform: capitalize;
}

section.protocol.protocol-01 .inner .head p {
    font-size: var(--body-text-size);
    color: var(--text-primary);
    font-weight: var(--body-text-weight);
    margin-bottom: 12px;
}

.protocol.protocol-01 .inner .body {
    margin: 0px;
    padding: 40px 0px 0px;
}

.protocol.protocol-01 .inner .body .picture-outer {
    margin: 10px 20px 20px 20px;
}

/* Protocol 02 */
.protocol.protocol-02 {
    /* padding: 6% 0px; */
}

section.protocol.protocol-02 .inner .head .step-outer {
    background-color: var(--background-secondary);
}

/* Protocol 03 */
section.protocol.protocol-03 {
    background: transparent;
}

.protocol.protocol-03 .inner .head {
    background-color: var(--background-secondary);
}

section.protocol.protocol-03 .inner .head {
    padding: 24px 16px 8px;
}

section.protocol.protocol-03 .inner .head h1 {
    font-size: var(--heading-size);
    font-weight: var(--heading-weight);
    color: var(--text-secondary);
    line-height: normal;
    text-transform: capitalize;
}

section.protocol.protocol-03 .inner .head p {
    font-size: var(--body-text-size);
    color: var(--text-secondary);
    font-weight: var(--body-text-weight);
    margin-bottom: 12px;
}

.protocol.protocol-03 .inner .body {
    padding: 20px 0px 40px;
}

section.protocol.protocol-03 .inner .body .slider .content .text-01 {
    font-family: var(--body-text-family);
    font-weight: 500;
    font-size: calc(var(--body-text-size) + var(--fs-extra-3));
    text-transform: capitalize;
    color: var(--text-primary);
}

.protocol.protocol-03 .inner .body .slider_dots::before {
    border-color: var(--background-secondary);
}

.protocol.protocol-03 .inner .body .slider_dots .slider_navigator {
    background-color: var(--background-secondary);
}

.protocol.protocol-03 .inner .body .slider_dots .slider_navigator.slick-current.slick-center {
    background-color: var(--background-secondary);
}

/* Protocol 04 */
section.protocol-04 {
    background-color: transparent;
    position: relative;
}

section.protocol-04 .protocol-04-inner-wrap {
    position: relative;
}

section.protocol-04 .inner {
    position: relative;
    padding: 0;
}

section.protocol-04 .inner .head {
    text-align: center;
    padding: 10.3% 10.3% 15.4%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    border-radius: 0px 0px 999px 999px;
    background: var(--background-secondary);

    margin-bottom: 5%;
    max-width: unset !important;
}

section.protocol-04 .inner .head .title {
    font-family: var(--heading-family);
    font-weight: var(--heading-weight);
    font-size: var(--heading-size);
    text-transform: var(--heading-lettercase);
    color: var(--text-secondary);
    line-height: 140%;
}

.kat-page__side-to-side .secondary-pane section.protocol-04 .protocol-item-wrap,
section.protocol-04 .protocol-item-wrap {
    max-width: 420px;
    gap: 16px;
}

section.protocol-04 .protocol-item-wrap .protocol4-wrap-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 10%;
}

section.protocol-04 .protocol-item-wrap .protocol4-wrap-item.sec {
    margin-bottom: unset;
    margin-top: 10%;
}

section.protocol-04 .protocol-item-wrap .protocol-item {
    align-items: center;
    background-color: var(--background-primary);
    border: 1px solid var(--background-secondary);
    border-radius: 24px;
    max-width: 130px;
    width: 100%;
    height: auto;
    margin: 0px;
    padding: 16px 16px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);

    justify-content: center;
    gap: 8px;
    flex: 1;
}

section.protocol-04 .protocol-item-wrap .protocol-item .text-wrap {
    justify-content: flex-end;
    padding: 0px;
    flex-grow: 0;
}

section.protocol-04 .protocol-item-wrap .protocol-item .icon-wrap {
    padding: 0px;
    border-radius: 0;
    width: 80px;
    flex-grow: unset;
}

section.protocol-04 .protocol-item-wrap .protocol-item .icon-wrap .icon {
    width: 50px;
    height: auto;
}

section.protocol-04 .protocol-item-wrap .protocol-item .icon-wrap .icon path {
    fill: var(--text-primary);
}

section.protocol-04 .protocol-item-wrap .protocol-item .text-wrap .text {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: var(--body-text-size);
    color: var(--text-primary);
}

@media (max-width: 360px) {
    section.protocol-04 .protocol-item-wrap {
        flex-direction: row;
    }

    section.protocol-04 .protocol-item-wrap .protocol-item {}
}

@media (min-width: 768px) {
    section.protocol-04 .protocol-item-wrap .protocol-item {
        max-width: 170px;
        height: 240px;
    }

    section.protocol-04 .protocol-item-wrap .protocol-item .icon-wrap .icon {
        width: 70px;
    }

    section.protocol-04 .inner .head {
        padding: 10.3% 19.3% 17.4%;
    }
}

@media (min-width: 1600px) {
    section.protocol-04 .inner {}
}


/* ==============================
?        Wedding Wish
============================== */
.wedding-wish-wrap {
    position: relative;
    overflow: hidden;
    padding: 5% 0px 0px;
}

.wedding-wish-wrap::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    background: linear-gradient(180deg, var(--background-primary) 0%, rgba(253, 250, 242, 0.20) 18%, rgba(253, 250, 242, 0.00) 50%, rgba(253, 250, 242, 0.20) 81%, var(--background-primary) 100%);
}



.wedding-wish-inner {
    position: relative;
    padding: 0 24px;
}

/* head */
.wedding-wish-head {
    text-align: left;
    display: flex;
    padding-bottom: 0px;
    flex-direction: column;
    align-items: flex-start;
    max-width: 645px;
    margin: 0 auto;
}

.ww-title-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
}

.ww-title-wrap::after {
    content: '';
    position: relative;
    height: 1px;
    min-width: 15%;
    flex: 1;
    background: var(--background-secondary);
}

.wedding-wish-head .wedding-wish-title {
    text-align: left;
    font-size: var(--heading-size);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding-bottom: 8px;
    width: fit-content;
}

.wedding-wish-head .wedding-wish-description {
    /* padding-top: 8px; */
    color: var(--text-tertiary);
}

/* Body */
.wedding-wish-body {
    padding: 24px 0px 0px;
    max-width: 645px;
    margin: 0 auto;
}

/* Form */
.wedding-wish-form {
    padding-bottom: 26px;
}

.wedding-wish-form .hide {
    display: none;
}

.wedding-wish-form .form-control {
    border: 1px solid var(--background-secondary);
    background: transparent;
    border-radius: 999px;
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    line-height: 1.5;
    color: rgba(var(--text-tertiary-rgb), 0.5);

    display: flex;
    padding: 8px 16px;
    align-items: center;
    gap: 10px;
    align-self: stretch;
}

.wedding-wish-form .form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(var(--text-tertiary-rgb), 0.5);
}

.wedding-wish-form .form-control:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: rgba(var(--text-tertiary-rgb), 0.5);
}

.wedding-wish-form .form-control::-ms-input-placeholder {
    /* Microsoft Edge */
    color: rgba(var(--text-tertiary-rgb), 0.5);
}

.wedding-wish-form .form-control:focus {
    /* border: 1px solid var(--text-primary); */
    box-shadow: none;
}

.wedding-wish-form textarea.form-control {
    min-height: 40px;
    max-height: 250px;
}

.wedding-wish-form .submit-comment {
    border: none;
    outline: none;
    width: 100%;
    display: block;
    padding: 9px 20px;
    margin: 0 auto;
    border-radius: 50px;
    text-decoration: none;
    background-color: var(--button-background-secondary);
    color: var(--button-text-secondary);
    border: 0.5px solid var(--button-text-secondary);
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    font-weight: 600;
    line-height: 1.5;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.wedding-wish-form .submit-comment:hover {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
    border: 0.5px solid var(--button-text-primary);
}

/* comment box */
.comment-box-wrap {
    position: relative;
}

.comment-box-wrap .form-group {
    margin-bottom: 0;
}

.comment-box-wrap textarea.form-control {
    height: auto;
    min-height: 0;
}

.comment-box-wrap .submit-comment-wrap {
    position: absolute;
    top: 0;
    right: 0;
}

.comment-box-wrap.focus textarea.form-control {
    /* padding-bottom: 50px; */
}

.comment-box-wrap.focus .submit-comment-wrap {
    top: auto;
    bottom: 0;
}

/* Comment Wrap */
.comment-wrap {
    display: none;
}

.comment-wrap.show {
    display: block;
}

.comment-item {
    border-radius: 24px;
    padding: 16px;
    background: var(--background-primary);
    border-radius: 24px;
    border: 1px solid var(--background-secondary);

    margin-bottom: 24px;
}

.comment-item:last-of-type {
    margin-bottom: 0px;
}

.comment-head {
    position: relative;
    margin-bottom: 8px;
}

.comment-head .comment-name {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    font-weight: 500;
    color: var(--text-tertiary);
    line-height: 1.5;
}

.comment-head .comment-name>i {
    font-size: 0.7em;
}

.comment-head .comment-date {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size));
    font-weight: 300;
    line-height: 1.5;
    display: block;
    margin-top: 8px;
    color: rgba(var(--text-tertiary-rgb), 0.75);
}

.comment-head .delete-comment {
    position: absolute;
    top: 0px;
    right: 0px;
    text-decoration: none;
    display: inline-block;
    vertical-align: top;
    color: var(--button-text-primary);
    transition: color 0.25s ease-in-out;
}

.comment-head .delete-comment:hover {
    color: rgba(var(--button-background-secondary-rgb), 0.8);
}

.comment-body {}

.comment-body .comment-caption {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size));
    font-weight: 300;
    line-height: 1.5;
    color: rgba(var(--text-tertiary-rgb), 0.75);
}

/* More Comment */
.more-comment-wrap {
    padding: 20px 0px 30px;
    display: none;
    text-align: center;
}

.more-comment-wrap.show {
    display: block;
}

#moreComment {
    width: 100%;
    display: flex;
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    font-weight: var(--body-text-weight);
    line-height: normal;
    color: var(--button-text-primary);
    border: 0.5px solid var(--button-text-primary);
    background-color: var(--button-background-primary);
    padding: 9px 16px;
    border-radius: 999px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
}

#moreComment:hover {
    background-color: var(--button-background-secondary);
    color: var(--button-text-secondary);
}


@media (min-width: 560px) and (max-width: 960px) {}

@media (min-width: 768px) {
    .ig-filter-head .ig-filter-title {
        padding: 30px 0;
    }
}

@media (min-width: 1200px) {}


/* ========================================
        FOOTNOTE
======================================== */
.footnote-wrap {
    position: relative;
    overflow: hidden;
    padding: 0 16px;
    /* min-height: 100vh; */
    /* padding-top: 10.3%; */
}

.ff-divider {
    content: '';
    position: relative;
    display: flex;
    width: 100%;
    height: 30px;
    background: var(--background-secondary);
}

section.footnote-wrap .logo-wrap {
    position: relative;
    width: 100%;
    max-width: 60px;
    margin-right: auto;
}

.footnote-frame {
    position: relative;
    width: 100%;
    height: 100%;
}


.footnote-inner {
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 10% 42px 10%;
    gap: 16px;
    border: none;
    border-left: 1px solid var(--background-secondary);
    border-right: 1px solid var(--background-secondary);
    background-image: var(--texture-1);
    background-repeat: repeat;
    background-size: 100%;
    max-width: 645px;
    margin: auto;
}

/* Details */
.footnote-inner .footnote-details {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    z-index: 1;
}

.footnote-details .footnote-head {
    position: relative;
    width: 100%;
}

.footnote-details .footnote-body {
    text-align: start;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footnote-body .footnote-title {
    font-size: calc(var(--heading-size) + 0px);
    word-break: break-word;
}

.footnote-body p {}

.footnote-body .top-text {
    font-weight: 300;
    line-height: 150%;
}

.bottom-ff-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    width: 100%;
}

.footnote-wrap .bottom-text {
    font-size: var(--body-text-size);
    line-height: 150%;
    font-weight: 300;
}

.footnote-body .address-text {
    font-size: var(--body-text-size);
}

section.footnote-wrap .footnote-inner .body {
    margin-right: auto;

    width: 100%;
    max-width: 270px;
    height: 375px;
}

section.footnote-wrap .footnote-inner .body .preview-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

section.footnote-wrap .footnote-inner .body .preview-container .slick-list {
    width: 100% !important;
    height: 100% !important;
}

section.footnote-wrap .footnote-inner .body .preview-container .slick-track {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
}

section.footnote-wrap .footnote-inner .body .preview-container .picture {
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    position: absolute !important;
    background-color: var(--light-clr);
}

section.footnote-wrap .footnote-inner .body .preview-container .picture img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 560px) {
    section.footnote-wrap .footnote-inner .body {
        width: 100%;
        max-width: 370px;
        height: 475px;
    }
}


/* ========================================
      FOOTER
======================================== */
section.footer {
    background: var(--background-secondary);
    padding: 0;
    position: relative;
}

section.footer .footer-inner {
    padding: 10px 0;
}

section.footer .footer-inner p {
    font-size: var(--body-text-size);
    font-weight: 400;
    color: var(--text-secondary);
}

.footer .footer-inner .footer-logo {
    width: 55px;
}

section.footer .footer-inner .footer-logo path {
    fill: var(--text-secondary);
}

@media only screen and (max-width: 960px) {
    section.footer .footer-inner.flex-column {
        flex-direction: column;
        padding-top: 80px;
        padding-bottom: 150px;
    }

    section.footer .footer-inner.flex-column p {
        margin-right: 0;
        font-size: calc(var(--body-text-size) + var(--fs-extra-2));
    }

    section.footer .footer-inner.flex-column .footer-logo {
        margin-top: 10px;
        width: 150px;
    }
}

/* ==============================
    ORNAMENTS
============================== */
/* TC  */
.orn-tc-1 {
    position: absolute;
    width: 6.42%;
    right: 0;
    top: 20%;
    transform: translate(50%);
}

.orn-tc-2 {
    position: absolute;
    width: 6.42%;
    left: 0;
    bottom: 20%;
    transform: translate(-50%);
}

/* Agenda  */
.orn-ev-1 {
    position: absolute;
    width: 6.42%;
    right: 0;
    bottom: 0%;
    transform: translate(50%, 50%);
}

.orn-ev-2 {
    position: absolute;
    width: 6.42%;
    left: 0;
    bottom: 0%;
    transform: translate(-50%, 50%);
}

/* Save Date  */
.orn-sd-1 {
    position: absolute;
    width: 6.42%;
    right: 0;
    top: 20%;
    transform: translate(-10%, 0%);
}

.orn-sd-2 {
    position: absolute;
    width: 6.42%;
    left: 0;
    bottom: 20%;
    transform: translate(10%, 0%);
}

.orn-sd-3 {
    position: absolute;
    width: 12.56%;
    left: 0;
    bottom: 5%;
    transform: translate(8%, 0%);
}

/* PHOTO  */
.orn-ph-1 {
    position: absolute;
    width: 5.89%;
    left: 0;
    top: 0%;
    transform: translate(53%, -78%);
}

@media (min-width: 560px) {
    .orn-ph-1 {
        transform: translate(20%, -78%);
    }
}

/* Video  */
.orn-video-1 {
    position: absolute;
    width: 6.42%;
    right: 0;
    top: 0%;
    transform: translate(50%);
}

.orn-video-2 {
    position: absolute;
    width: 6.42%;
    left: 0;
    bottom: 0%;
    transform: translate(-50%);
}

.video .orn.stroke-secondary svg path {
    stroke-width: 7px;
}

/* Gift  */
.orn-gift-1 {
    position: absolute;
    width: 8.2%;
    right: 0;
    top: 14%;
    transform: translate(-43%, 0%) scaleX(-1);
}

.orn-gift-2 {
    position: absolute;
    width: 71.8%;
    left: 65%;
    top: 84%;
    transform: translate(0%, 0%);
}

.kado-wrapper .orn-gift-1 {
    position: absolute;
    width: 8.2%;
    left: 0;
    top: 14%;
    transform: translate(43%, 0%);
}

/* ==============================
    ANIMATIONS
============================== */
@keyframes twinkle {
    0% {
        transform: scale(0.7);
        opacity: 0.7;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}
@keyframes twinkle-2 {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(0.7);
        opacity: 0.7;
    }

}


.spark .image-wrap svg {
    transform-origin: 50% 50%;
    animation: twinkle 2s ease-in-out infinite alternate;
}
.orn-gift-2.spark .image-wrap svg {
    animation: twinkle 2s ease-in-out infinite alternate;
    animation-delay: 1s;
}

.orn-video-2.spark .image-wrap svg {
    animation: twinkle-2 2s ease-in-out infinite alternate;
}

/* =============================
        INVITATION LABEL
============================= */
.tc-head .invitation-category {
    align-items: start;
    padding: 0;
}
.tc-head .invitation-category .category-icon svg {
    margin-left: 0;
}

.rsvp-confirm-btn.back, .form-label{
    color: var(--text-tertiary);
    font-family: var(--body-text-family);
    font-style: var(--body-text-style);
    font-weight: var(--body-text-weight);
    font-size: var(--body-text-size);
    text-transform: var(--body-text-lettercase);
    line-height: normal;
}

.form-check-label .form-check-input + svg path {
    color: var(--text-tertiary);
    fill: var(--text-tertiary);
}

.form-check-label .form-check-input + svg {
    display: none;
    margin-top: -5px;
}

.form-check-label .form-check-input:checked + svg  {
    display: block;
}