@import url('https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&family=Monsieur+La+Doulaise&display=swap');

/* silika */
body.silika {
    /* Heading Family */
    --heading-family: "Monsieur La Doulaise", cursive;
    --heading-style: normal;
    --heading-weight: 400;
    --heading-size: 36px;
    --heading-lettercase: none;

    /* Body Text */
    --body-text-family: "Abhaya Libre", serif;
    --body-text-style: normal;
    --body-text-weight: 400;
    --body-text-size: 16px;
    --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.silika.original {
    /* Colors */
    --background-primary: #FAEFDB;
    --background-primary-rgb: 250, 239, 219;

    --background-secondary: #E8CBA3;
    --background-secondary-rgb: 232, 203, 163;

    --background-tertiary: #7C332A;
    --background-tertiary-rgb: 124, 51, 42;

    /* Text Colors */
    --text-primary: #7C332A;
    --text-primary-rgb: 124, 51, 42;

    --text-secondary: #BA6927;
    --text-secondary-rgb: 186, 105, 39;

    --text-tertiary: #FFF;
    --text-tertiary-rgb: 255, 255, 255;

    /* Button Colors */
    --button-text-primary: #F9EEDA;
    --button-text-primary-rgb: 249, 238, 218;

    --button-background-primary: #BA6927;
    --button-background-primary-rgb: 186, 105, 39;

    --button-text-secondary: #FCFAED;
    --button-text-secondary-rgb: 252, 250, 237;

    --button-background-secondary: #7C332A;
    --button-background-secondary-rgb: 124, 51, 42;
}

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

@media (min-width: 560px) and (max-width: 960px) {
    body.silika {
        --heading-size: 50px;
        --body-text-size: 24px;
    }
}

@media (min-width: 961px) {
    body.silika {
        --heading-size: 44px;
        --body-text-size: 18px;
    }
}

@media (min-width: 1600px) {
    body.silika {
        --heading-size: 50px;
        --body-text-size: 24px;
    }
}

/* Fonts */
body.silika h1,
body.silika h2,
body.silika h3,
body.silika h4,
body.silika h5,
body.silika 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.silika p {
    font-family: var(--body-text-family);
    font-style: var(--body-text-style);
    font-weight: var(--body-text-weight);
    font-size: calc(var(--body-text-size));
    text-transform: var(--body-text-lettercase);
    line-height: normal;
    color: var(--text-secondary);
}

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

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

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

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

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

body.silika::-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;
    /* background-image: var(--texture-1); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    justify-content: flex-start;
    align-items: center;
}

/* 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: 72%;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 8%;
}

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

.kat-page__side-to-side .primary-pane .inner p {
    font-size: calc(var(--body-text-size) + var(--fs-extra-2));
    font-style: normal;
    color: var(--text-primary);
    margin: 0 auto;
}

section.primary-pane .inner .head-wrap {}

.kat-page__side-to-side .primary-pane .inner .details {
    /* margin: auto; */
    position: relative;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 10%;
}

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

/* .primary-pane .footnote-frame {
    max-width: 180px;
  } */

.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;
}

/* Highlight */
.kat-page__side-to-side .primary-pane .inner .highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-clr);
}

.kat-page__side-to-side .primary-pane .inner .highlight .preview-container {
    width: 100%;
    height: 100%;
    display: block;
}

.kat-page__side-to-side .primary-pane .inner .highlight .preview-container .slick-list {
    width: 100% !important;
    height: 100% !important;
}

.kat-page__side-to-side .primary-pane .inner .highlight .preview-container .slick-track {
    width: 100% !important;
    height: 100% !important;
    position: relative !important;
}

.kat-page__side-to-side .primary-pane .inner .highlight .preview-container .picture {
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    position: absolute !important;
}

.kat-page__side-to-side .primary-pane .inner .highlight .preview-container .picture img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

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

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

    .kat-page__side-to-side .primary-pane .inner .details {
        padding: 24px 10%;
    }
}


/* ============================================
    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%;
    background: var(--background-primary);
}

.kat-page__side-to-side .secondary-pane {
    position: static;
    right: 0;
    width: 39%;
    margin-left: auto;
    background-color: var(--background-primary);
}

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

@media (min-width: 961px) {
    .kat-page__side-to-side .secondary-pane::before {
        background-size: 50% auto;
    }

}

@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);
}

/* =============================
        INVITATION CATEGORY
============================= */
.invitation-category {
    flex-direction: row;
    padding: 8px;
}

.primary-pane .invitation-category {
    flex-direction: column;
}

.invitation-category>.category-icon>svg>path {
    fill: var(--text-primary);
    stroke: var(--text-primary);
}

.invitation-category>.category-label {
    color: var(--text-primary);
}

.kat-page__side-to-side .primary-pane .inner p.category-label {
    color: var(--text-primary);
}


/* =================================
        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 */
}

.penanda {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
    text-align: center;
    font-family: var(--body-text-family);
    color: var(--text-primary);
}



/* ======================
  ?  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;

    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;
}

section.top-cover::before {
    /* content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background-image: var(--texture-1);
    background-size: cover;
    background-position: center;
    opacity: .1; */
}

@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 .inner {
    /* padding: 20px 0px; */
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 14px;
    position: relative;
}

section.top-cover .prime-title {
    color: var(--text-secondary);
    font-size: calc(var(--heading-size) - 8px);
}

/* 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;
    color: var(--text-quartiary);
}

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

.orn-front {
    z-index: 3;
}

/* details */
section.top-cover .inner .details {
    text-align: center;
    padding: 23% 24px 36.5%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

section.top-cover .inner .details::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%, var(--background-primary) 0%, rgba(255, 255, 251, 0.75) 50%, rgba(255, 251, 237, 0.00) 100%);
    margin: 0 auto;
}

.head-tc {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 2.5% 13.3% 34%;
}

.top-cover .head-tc .top-cover-title {
    font-size: calc(var(--heading-size));
}

section.top-cover .inner .details p {
    text-align: center;
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    color: var(--text-primary);
}

/* 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 {
    border: none;
    outline: none;
    background-color: var(--button-background-secondary);
    color: var(--button-text-secondary);
    font-size: var(--body-text-size);
    font-weight: 400;
    font-family: var(--body-text-family);
    line-height: 1.5;
    text-decoration: none;
    margin: 0px auto;
    padding: 12px 16px 10px;
    border-radius: 99px;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
    font-weight: 600;
}

section.top-cover .inner .details a.link:hover {
    background-color: rgba(var(--button-background-secondary-rgb), 0.8);
}

/* Highlight */
section.top-cover .inner .highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-primary);
}

section.top-cover .inner .highlight .preview-container {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

section.top-cover .inner .highlight .preview-container .picture {
    width: 100% !important;
    height: 100% !important;
    top: 0;
    left: 0;
    position: absolute !important;
}

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

@media (min-width: 560px) {
    section.top-cover .inner {
        /* padding: 20px 0px; */
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
    }

    .head-tc {
        padding: 25.5% 13.3% 4%;
    }
}

@media (min-width: 560px) and (max-width: 960px) {
    /* section.top-cover .inner .details {
      padding: 0px 20px 31%;
    } */
}

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

section.cover .inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 5%;
    /* background-color: lightseagreen; */
}

.bg-cover {
    position: absolute;
    width: 132%;
    left: 50%;
    transform: translate(-50%, 0%);
    top: 0;
    opacity: .5;
}


section.cover .inner .head {
    text-align: center;
    padding: 5% 15% 0px;
    position: relative;
    z-index: 5;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

section.cover .logo-wrap {
    position: relative;
    width: 27.47%;
    max-width: 150px;
    margin: 0 auto;
}

section.cover .inner .head h1 {
    padding: 0;
    font-size: calc(var(--heading-size));
    line-height: normal;
    font-weight: 400;
    font-family: var(--heading-family);
    color: var(--text-primary);
    /* word-break: break-all; */
}

section.cover .inner .head p {
    color: var(--text-secondary);
}

section.cover .inner .head p.date {
    margin-top: 10px;
}

/* Cover Body */
section.cover .inner .body {
    margin: 24px auto 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 960px) {
    section.cover .inner .body.highlight.no_mobile {
        display: none;
    }
}

section.cover .inner .body .cover-frame {
    position: absolute;
    inset: 0% 0%;
    background: var(--secondary-clr);
    -webkit-mask-image: var(--frame-cover-mask);
    mask-image: var(--frame-cover-mask);
    -webkit-mask-size: 99% 99%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    top: 1%;
    left: 2%;
    bottom: 2%;
    right: 2%;
}

section.cover .inner .body .cover-picture {
    position: absolute;
    inset: 0 0 0 0;
}

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

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

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

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

/* cover orn frame */
.cover .orn-cover-frame {
    position: relative;
    /* left: 50%; */
    width: calc(69.48% - 0px);
    /* transform: translateX(-50%); */
}

@media (min-width: 700px) {
    /* .cover .orn-cover-frame {
        max-width: 450px;
    } */

    section.cover .inner .head {
        gap: 12px;
    }
}

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

@media (min-width: 560px) and (max-width: 960px) {
    section.cover .inner .head {
        gap: 12px;
    }
}

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

/* Cover Foot */
section.cover .inner .foot {
    width: 100%;
    text-align: center;
    padding: 20px 10px;
    position: relative;
}

section.cover .inner .foot p {
    color: var(--text-primary);
    font-size: calc(var(--body-text-size));
    font-weight: 500;
}

section.cover .inner .foot .prime-title {}

@media (max-width: 960px) {
    section.cover.no_mobile .inner {
        padding: 40% 0;
    }
}

@media (min-width: 961px) {
    section.cover.no_desktop .inner {
        padding: 31% 0;
    }
}


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

.quote-wrap .quote {
    position: relative;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

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

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

@media (min-width: 768px) and (max-width: 960px) {
    /* .quote-wrap {
        min-height: 100vh;
    } */
}

@media (min-width: 1440px) {
    /* .quote-wrap {
        min-height: 990px;
    } */
}


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

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

/* Couple Head */
.couple-head {
    position: relative;
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    padding: 0px 6.2%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 3%;
}

.couple-head-wrap-1 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.couple-head-wrap-2 {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.orn-bismillah {
    margin: 0 auto 0;
    width: 44.22%;
}

.orn-couple-head {
    margin: 0 auto 0;
    width: 60%;
}

.couple-head .couple-title {
    font-family: var(--heading-family);
    font-size: var(--heading-size);
}

.couple-head .couple-description {
    color: var(--text-secondary);
    font-size: calc(var(--body-text-size));
}

.couple-head+.couple-body {
    margin-top: 5%;
}

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

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

.couple-info {
    width: 100%;
    position: relative;
    text-align: right;
    /* margin-top: 2em; */
}

.couple-info.bride {
    /* margin-top: 3em; */
}

/* Couple Preview */
.couple-preview {
    display: flex;
    position: relative;
    margin-bottom: 17.2%;
    margin-top: 4%;
}

.couple-info.groom .couple-preview {
    transform: scaleX(-1);
}

.groom .couple-frame .couple-picture-wrap img {
    transform: scaleX(-1);
}

.couple-frame {
    position: relative;
    width: calc(65.89%);
    /* max-width: 320px; */
    height: auto;
    margin: 0 auto;
}

.couple-frame .img-couple-frame {
    transform: scaleX(-1);
}

.couple-picture-wrap {
    position: absolute;
    top: 7.1%;
    left: 50%;
    right: 0px;
    bottom: 9.1%;
    width: 87%;
    height: auto;
    transform: translate(-50%, 0%);
    -webkit-mask-image: var(--mask-couple);
    mask-image: var(--mask-couple);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.couple-info.bride .couple-picture-wrap {}

.fa-instagram {
    color: var(--button-text-primary);
}

.couple-picture {
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%;
    background-color: var(--secondary-clr);
    border-radius: 50%;
}

.couple-picture .img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

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

/* Couple Details */
.couple-details {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 6.2% 0 20.5%;
    padding-bottom: 0;
    text-align: left;
    padding-top: 0;
    /* max-width: 750px; */
    margin: 0 auto;
}

.groom .couple-details {
    padding: 0 20.5% 0 6.2%;
    text-align: right;
}

.couple-details .couple-name {
    font-family: var(--heading-family);
    font-size: calc(var(--heading-size));
    color: var(--text-primary);
}

.couple-details .couple-parents {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size));
    line-height: 150%;
}

.couple-details .couple-bio {
    color: var(--text-primary);
    margin-bottom: 14px;
}

.couple-link-wrap {
    display: flex;
    justify-content: flex-end;
}

.couple-info.bride .couple-link-wrap {
    justify-content: flex-start;
}

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

.couple-link:hover {
    border-bottom: 1px solid rgba(var(--button-background-primary-rgb), 0.8);
}

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

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

.separator-wrap .separator .couple-separator {
    font-family: var(--heading-family);
    font-size: calc(var(--heading-size));
    padding: 0 40px;
    margin: auto;
    color: var(--text-primary);
}

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

    .couple-frame {
        max-width: 450px;
    }

    .couple-details {
        margin-top: 0%;
    }

    .separator-wrap {
        margin: 11% auto 11%;
    }

    .couple-link {
        padding: 12px 20px;
    }

    .couple-preview {
        margin-bottom: 10.2%;
    }
}

@media (min-width: 1200px) {
    .couple-frame {
        max-width: 400px;
    }
}

@media (min-width: 1600px) {
    .separator-wrap {
        margin: 11% auto 11%;
    }

    .couple-preview {
        margin-bottom: 10.2%;
    }
}


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

.save-date-wrap .save-date-frame {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: auto;
    margin: 0 auto;
    margin-top: 26px;
}

.save-date-wrap .save-date-frame>.image-wrap img {}

.save-date-wrap .save-date {
    width: 82%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    max-width: 450px;
    margin: 0px auto;
    padding: 20px 0px;
    position: absolute;
    z-index: 1;
}

/* Save Date Head */
.save-date-head {
    text-align: center;
    position: relative;
    margin-bottom: 24px;
}

.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;
    max-width: 250px;
    margin: 0 auto;
}

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

.countdown .count-item {
    text-align: center;
    width: 94px;
}

.count-item .count-num {
    font-family: var(--body-text-family);
    font-size: calc(var(--heading-size));
    color: var(--text-primary);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 4px;
}

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

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

.add-to-calendar {
    padding: 12px 24px;
    margin: 0px auto;
    border-radius: 99px;
    display: inline-block;
    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: 400;
    background-color: var(--button-background-secondary);
    color: var(--button-text-secondary);
    border: none;
    transition: all 0.25s ease-in-out;
    line-height: 150%;
}

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

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

    .save-date-body {
        max-width: 300px;
    }

    .save-date-wrap {}
}

@media (min-width: 1440px) {
    .save-date-wrap .save-date {}

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

    .save-date-body {
        max-width: 300px;
    }

}


/* ==============================
        Agenda
============================== */
.agenda-wrap {
    position: relative;
    overflow: hidden;
    padding: 9% 0px 5%;
}

.agenda-inner {
    padding: 0 0 0%;
}

.agenda-head {
    position: relative;
    padding: 0px 24px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.orn-act-top {
    position: relative;
    margin: 0 auto;
    width: 81.8%;
    max-width: 300px;
}

.agenda-head .agenda-title {
    font-size: calc(var(--heading-size) + 0px);
}

.agenda-head .agenda-description {
    margin: 0 auto;
    color: var(--text-secondary);
    max-width: 400px;
    line-height: 171%;
    font-size: calc(var(--body-text-size));
}

.agenda-body {
    position: relative;
    z-index: 1;
    margin-top: 2%;
}

/* Event */
.event-item {
    position: relative;
    text-align: center;
    margin-top: 9%;
}

.event-item:first-of-type {
    margin-top: 0px;
}

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

.ev-head-divid {
    position: relative;
    margin: 0 auto 20px;
    width: 1px;
    height: 24px;
    background: var(--text-primary);
}

.event-head-wrapper {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.event-head .event-day {
    font-family: var(--body-text-family);
    color: var(--text-primary);
    font-size: calc(var(--heading-size));
}

.event-head .event-date {}

.event-head .event-description {
    margin-top: 10px;
    color: var(--text-secondary);
}

/* Activity */
.activity-wrap {
    padding: 0 0px 5%;
}

.activity-wrap.same-location {}

.activity-item {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    /* max-width: 550px; */
    margin-top: 12%;
    padding-bottom: 10%;
    z-index: 1;
}

.activity-item:first-child {
    z-index: 2;
    padding-top: 0;
    margin-top: 1%;
}

/* .activity-item:last-child {
        z-index: 0;
    } */

/* activity-frame */
.activity-frame {
    position: relative;
    width: calc(135.64%);
    max-width: 720px;
    left: 50%;
    transform: translateX(-50%);
}

.activity-frame .frame-wrap {}

.activity-frame .frame-wrap img {
    display: block;
    width: 100%;
    height: auto;
    margin: auto;
}

.activity-item:nth-child(odd) .activity-frame .frame-wrap img {
    margin-top: 0px;
}

.activity-item:nth-child(even) .activity-frame {
    /* transform: translateX(-50%) scaleX(-1); */
}

.activity-item:nth-child(even) .activity-frame {
    transform: translateX(-50%) scaleX(-1);
}

/* activity content */
.activity-content {
    position: absolute;
    bottom: 40%;
    left: 50%;
    width: calc(67%);
    max-width: 400px;
    max-height: 47%;
    transform: translate(-50%, 54%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    overflow-y: auto;
}

.activity-item:nth-child(even) .activity-content {}

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

.activity-head {
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0px 25px;
}

.activity-head .activity-icon {
    width: 40px;
    height: 40px;
    display: block;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
}

.activity-title-wrap {}

.activity-head .activity-title {
    font-family: var(--heading-family);
    font-size: calc(var(--heading-size));
    /* color: var(--text-secondary); */
}

.activity-head .ev-day {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size) + 4px);
}

.activity-head .activity-description {
    font-size: calc(var(--body-text-size) - 2px);
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 142%;
    font-family: var(--body-text-family);
    font-style: italic;
}

.activity-head .activity-caption {
    font-size: calc(var(--body-text-size) - var(--fs-extra-2));
    font-weight: 500;
    margin-bottom: 0.25em;
    color: var(--text-primary);
}

.activity-content .activity-time {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size));
    font-weight: 700;
    font-style: normal;
    color: var(--text-primary);
}

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

/* Agenda Details */
.event-details,
.activity-details {
    padding: 0 30px;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* overflow-y: auto; */
}

.event-details .event-hall,
.activity-details .activity-hall {
    color: var(--text-primary);
    text-align: center;
    font-size: calc(var(--body-text-size));
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    font-family: var(--body-text-family);
}

.ev-1 .event-details .event-hall,
.ev-1 .activity-details .activity-hall {
    padding: 0 10%;
}

.event-details .event-address,
.activity-details .activity-address {
    margin: 0 auto;
    max-width: 720px;
    font-size: calc(var(--body-text-size));
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 150%;
    font-family: var(--body-text-family);
}

.event-details .event-city,
.activity-details .activity-city {
    font-size: calc(var(--body-text-size));
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 150%;
    font-family: var(--body-text-family);
}

.event-link-wrap,
.activity-link-wrap {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-link,
.activity-link {
    font-family: var(--body-text-family);
    font-weight: 400;
    font-size: var(--body-text-size);

    display: flex;
    align-items: center;
    padding: 8px 12px;
    gap: 4px;
    width: max-content;

    text-decoration: none;
    border: none;
    color: var(--button-text-secondary);
    border-radius: 999px;
    background: var(--button-background-secondary);

    transition: .3s ease-in-out;
}

.event-link svg path,
.activity-link svg path {
    fill: var(--button-text-secondary);

}

.event-link:hover svg path,
.activity-link:hover svg path {
    fill: var(--button-text-primary);

}

.event-link:hover,
.activity-item .activity-link:hover {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
}

@media (min-width: 700px) and (max-width: 961px) {
    .activity-content {}

    .event-details,
    .activity-details {
        padding: 0 35px;
    }

    .event-head .divider {
        min-height: 72px;
    }

    .activity-head .activity-icon {
        width: 80px;
        height: 80px;
    }

    .event-head-wrapper .event-day {
        /* font-family: ; */
    }

    .agenda-wrap {
        padding-top: 7%;
    }

    .agenda-body {
        margin-top: 2%;
    }
}

@media (min-width: 1400px) {
    .activity-content {
        margin-top: 0;
        /* min-height: 400px; */
    }

    .event-details,
    .activity-details {
        padding: 0 35px;
    }

    .event-head .divider {
        min-height: 72px;
    }
}

@media (min-width: 1600px) {
    .activity-head .activity-icon {
        width: 80px;
        height: 80px;
    }

    .event-head .divider {
        min-height: 66px;
    }
}

/* DRESSCODE  */
.dress-inner {
    padding: 24px;
}

.dress-preview-wrap {
    position: relative;
    z-index: 1;
    width: max-content;
    margin: 0 auto;
    margin-bottom: -20px;
}

.dress-preview {
    position: relative;
    width: 130px;
    height: 130px;
    background: var(--background-secondary);
    border: 1px solid var(--background-tertiary);
}

.dress-preview svg path {
    stroke: var(--text-primary);
}

.dress-icon {
    align-items: center;
}

.dress-icon .dress-icon-label {
    font-size: var(--body-text-size);
    color: var(--text-primary);
}

.dress-icon-img {
    width: 50px;
    height: 50px;
}

.dress-color-list {
    border-radius: 999px;
    border: 1px solid var(--background-tertiary);
    background: var(--background-primary);
    padding: 16px;
    max-width: 280px;
}

.dress-color-item {
    width: 40px;
    height: 40px;
}

.dress-list {
    gap: 32px;
}

.dress-note{
    color: var(--text-primary) !important;
}

@media (min-width : 561px) and (max-width : 960px) {
    .dress-preview {
        width: 160px;
        height: 160px;
    }
}

@media (max-width : 1600px) {
    .dress-preview {
        width: 160px;
        height: 160px;
    }
}


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

.rsvp-inner {
    position: relative;
    padding: 9% 10.3% 15%;
    overflow: hidden;
    min-height: 100vh;
}

/* Head */
.rsvp-head {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
}

.rsvp-head .rsvp-titles {
    font-family: var(--heading-family);
    font-size: calc(var(--heading-size) + 0px);
    text-align: center;
}

.rsvp-head .rsvp-info p {
    color: var(--text-secondary);
}

.rsvp-head .rsvp-info p.info-date {
    font-weight: 700;
}

.rsvp-head .rsvp-desc-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;

    padding: 12px 0;
    text-align: center;
}

.rsvp-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    text-align: center;
}

.rsvp-head .rsvp-desc {}

.rsvp-body-wrapper {
    max-width: 600px;
    position: relative;
    margin: 0 auto;
    /* padding: 0px 0 0px; */
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rsvp-body {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.rsvp-form-outer {
    position: relative;
    margin: 8% 0;
    z-index: 1;
}

.rsvp-session-wrap {
    margin: 0px auto;
    gap: 12px;
}

/* RSVP Status */
.rsvp-status-wrap {
    border-radius: 16px;
    border: 1px solid var(--text-primary);
    background: rgba(var(--background-primary-rgb), .75);
    padding: 5.4%;
    margin: 0px auto 24px;
}

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

.rsvp-status-head .rsvp-status-caption {
    color: var(--text-primary);
    text-transform: none;
}

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

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

.rsvp-status-wrap input[name="rsvp_status"]:checked+.rsvp-confirm-btn.going {
    background-color: var(--button-background-secondary);
    color: var(--button-text-secondary);
    min-width: 50%;
}

.rsvp-status-wrap input[name="rsvp_status"]:checked+.rsvp-confirm-btn.not-going {
    background-color: var(--button-background-secondary);
    color: var(--button-text-secondary);
}

/* RSVP Amount */
.rsvp-amount-wrap {
    position: relative;
    border-radius: 16px;
    border: 1px solid var(--text-primary);
    background: rgba(var(--background-primary-rgb), .75);
    margin: 0px 0 24px;
    padding: 5.4%;
}

.rsvp-amount-head {
    text-align: center;
    margin: 8px 0;
    position: relative;
}

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

.rsvp-session-wrap .session-caption-wrap {
    margin: 0;
}

.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: none;
    line-height: 1;
    color: var(--text-primary);
    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: var(--background-secondary);
    border: 1px solid transparent;
    outline: none;
    height: 40px;
    width: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

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

.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(--button-background-secondary);
}

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

.rsvp-amount-controller .toggle-btn.plus:hover {
    background-color: rgba(var(--button-background-secondary-rgb), .75);
}

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

.rsvp-amount-controller .toggle-btn.minus {
    background: var(--background-primary);
    border-color: var(--button-background-secondary);
}

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

.rsvp-amount-controller .toggle-btn.minus:hover {
    /* border-color: rgba(var(--button-background-primary-rgb), 0.8); */
}

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

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

.rsvp-status-wrap .form-group {
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 0;
}


.form-control.group-guest,
.rsvp-plus-wrapper .form-control,
.rsvp-amount-controller .input-control {
    width: 100%;
    height: 40px;
    text-align: center;
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    font-weight: var(--body-text-weight);
    background: var(--background-primary);
    padding: 12px 8px;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    border-radius: 100px;
}

.rsvp-amount-controller .input-control {
    outline: none;
    pointer-events: none;
    border-radius: 12px;
    background: var(--background-secondary);
    border: 1px solid var(--text-primary);
}

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

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

.rsvp-confirm-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    margin: 0px auto;
    border-radius: 999px;

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

    background-color: var(--button-background-secondary);
    color: var(--button-text-secondary);

    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.rsvp-session-btn,
.form-check-label {
    font-family: var(--body-text-family);
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
    font-size: var(--body-text-size);
    padding: 12px 24px;
    border-radius: 999px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.rsvp-session-btn:hover {
    background-color: rgba(var(--button-background-primary-rgb), 1);
    color: var(--button-text-primary);
}

.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-color: var(--button-background-secondary);
    color: var(--button-text-secondary);
}

.rsvp-confirm-btn.going {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
}

.rsvp-confirm-btn.going:hover {
    background-color: rgba(var(--button-background-primary-rgb), 1);
    color: var(--button-text-primary);
}

.rsvp-confirm-btn.not-going {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
}

.rsvp-confirm-btn.not-going:hover {
    background-color: rgba(var(--button-background-primary-rgb), 1);
    color: var(--button-text-primary);
}

.rsvp-confirm-btn.confirm {
    border: none;
    background-color: var(--button-background-secondary);
    color: var(--button-text-secondary);
    min-height: 100%;
}

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

.rsvp-confirm-btn.download {
    background-color: var(--button-background-secondary);
    color: var(--button-text-secondary);
    margin-bottom: 8px;
    width: 100%;
}

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

.rsvp-confirm-btn.back {
    color: var(--text-primary);
}

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

.rsvp-guest-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 5.4%;
    border-radius: 32px;
}

.bg-gwrap {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    border-radius: 16px;
    border: 1px solid var(--text-primary);
    background: rgba(var(--background-primary-rgb), .75);
}

.rsvp-head .rsvp-info .info-date {
    font-weight: 400;
    color: var(--text-secondary);
}

/* End RSVP Confirm */

/* QR Card */
.rsvp-qrcard-wrap {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.rsvp-qrcard-img-wrap {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
}

.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));
    margin-bottom: 20px;
}

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

/* End RSVP Message */

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

/* End RSVP Change */
@media (min-width:1400px) {}

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

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

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

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

/* ==============================
        RUNDOWN
============================== */
.rundown-container .rundown-inner {
    gap: 24px;
}

.rundown-event-list .rundown-event {
    align-items: flex-start;
}

.rundown-event .rundown-event-title {
    font-family: var(--body-text-family);
    font-weight: 600;
    font-size: var(--body-text-size);
}

.rundown-agenda .rundown-divider .rundown-circle {
    background-color: #FFF;
}

.rundown-agenda .rundown-agenda-time {
    color: var(--text-primary);
}

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

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

/* head */
.story-inner .story-head {
    text-align: center;
    /* margin-bottom: 5%; */
    padding: 0 24px;
}

.story-head .story-title {}

/* body */
.story-body {
    max-width: 650px;
    margin: 0 auto;
}

/* preview */
.story__slider-preview {}

/* caption wrap */
.story__slider-caption-wrap {
    position: relative;
    width: 74.358%;
    margin: 0 auto;
    max-width: 550px;
    padding: 16px;
    border-radius: 24px;
    border: 1px solid var(--background-tertiary);
    background: var(--background-secondary);
    backdrop-filter: blur(2px);
}

/* caption */
.story__slider-caption {}

/* story preview */
.story-body .story-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    padding-top: 24px;
}

.story-preview .story-picture-wrapper {
    position: relative;
    display: block;
    margin: 0px auto 2%;
    padding-bottom: 3.9%;
    width: 71.79%;
    /* height: 220px; */
    border-radius: 24px;
    /* overflow: hidden; */
}

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

.story-preview .story-picture img {
    display: block;
    /* min-height: 238px; */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 6px;
}

.story-details .story-sub-title {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 150%;
    text-align: center;
    margin: 0px auto;
}

/* details */
.story-body .story-details {
    display: flex;
    text-align: center;
    margin: 0px auto;
    flex-direction: column;
    gap: 12px;
}

.story-details .story-caption {
    color: var(--text-primary);
    font-size: var(--body-text-size);
    font-weight: var(--body-text-weight);
    line-height: 150%;
    text-align: center;
}

.orn-story {
    width: 50%;
    margin: 0 auto;
}

.orn-story .image-wrap .orn-story-svg path {
    fill: var(--text-primary);
}

.ls-img-content {
    position: absolute;
    inset: 0% 0%;
    background: var(--secondary-clr);
    -webkit-mask-image: var(--mask-ls);
    mask-image: var(--mask-ls);
    -webkit-mask-size: 99% 99%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    top: 3%;
    left: 5%;
    bottom: 3%;
    right: 4%;
}

.story--button {
    position: absolute;
    top: 0%;
    display: flex;
    justify-content: center;
    background: none;
    border: none;
    transform: translate(0%, -50%);
    font-size: var(--body-text-size);
    color: var(--text-primary);
}

.story--button:hover {
    background-color: var(--background-primary);
}

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

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


@media (min-width: 700px) {
    .story-preview .story-picture {}

    .story-preview .story-sub-title {
        width: 350px;
    }
}


/* ==============================
        Live Streaming
============================== */
section.live-streaming {
    padding: 8% 24px 8%;
    position: relative;
    overflow: hidden;
}

section.live-streaming .inner {
    padding: 0px;
    max-width: 540px;

}

section.live-streaming.lv-yt .inner {
    padding-top: 18%;
}

/* head */
section.live-streaming .inner .head {
    text-align: center;
    padding: 0 16%;
    margin-bottom: 8%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

section.live-streaming .inner .head h1 {
    padding: 0px;
    margin-bottom: 0px;
    font-size: var(--heading-size);
}

section.live-streaming .inner .head p {
    font-size: var(--body-text-size);
    color: var(--text-secondary);
    font-style: normal;
}

/* body */
.live-streaming .inner .body {
    padding: 0;
}

.live-streaming .inner .body p {
    font-size: var(--body-text-size);
    color: var(--text-secondary);
    text-align: center;
    padding-top: 16px;
}

.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 0px;
}

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

.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: 0px;
}

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

.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: 200px;
}

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

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

.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-radius: 100px;
    padding: 12px 20px;
}

.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 {
        /* min-height: 850px; */
        padding-bottom: 4%;
    }

    .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: 360px;
    }
}

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


/* ==============================
        Galeri
============================== */
.photo-wrap {
    position: relative;
    overflow: hidden;
}

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

/* Head */
.photo-inner .photo-head {
    position: relative;
    text-align: center;
    padding: 0% 24px 40px;
}

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

    color: var(--text-primary);
    padding-bottom: 10px;
}

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

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

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

.photo-nav-wrap .photo-nav {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.photo-slider-wrap .slick-list {
    padding-bottom: 5% !important;
    padding-top: 5% !important;
}

.photo-nav .photo-item {}

.photo-nav .photo-img-wrap {
    width: 100%;
    /* height: 451px !important; */
}

.photo-nav .photo-img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    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 6px;
}

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

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

.photo-slider-wrap .slick-active .photo-img {
    transform: scale(1.1);
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0;
}

/* 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: 561px) and (max-width: 960px) {
    .photo-nav .photo-img-wrap {
        height: 720px !important;
    }

    .photo-slider .photo-img-wrap {
        height: 207px;
    }

    .photo-slider .photo-img {
        min-width: 104px;
    }
}

@media screen and (min-width: 1440px) {
    .photo-nav .photo-img-wrap {
        height: 549px !important;
    }
}

@media screen and (min-width: 1600px) {
    .photo-slider .photo-img-wrap {
        height: 207px;
    }

    .photo-slider .photo-img {
        min-width: 104px;
    }
}


/* Story Chitra Arrows */
.story-chitra__arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background-color: transparent;
    color: var(--background-primary);
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.25s ease-in-out;
}

.story-chitra__arrow-btn svg {
    width: 12px;
    height: auto;
    display: block;
}

.story-chitra__arrow-btn svg path {
    stroke: var(--background-primary);
}

.story-chitra__arrow-btn.prev {
    left: 12px;
}

.story-chitra__arrow-btn.next {
    right: 12px;
}

.story-chitra__arrow-btn:hover {
    opacity: 1;
}

.story-chitra__arrow-btn.slick-disabled {
    display: none !important;
}


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

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: 8px;
}

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

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

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

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

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

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%;
    overflow: visible;
    /* 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));
    line-height: 150%;
    font-style: normal;
    color: var(--text-secondary);
}

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


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

.wedding-gift-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Head */
.wedding-gift-head {
    position: relative;
    text-align: center;
    margin: 0 auto 5%;
    width: 85%;
}

.wedding-gift-head .wedding-gift-title {
    padding-top: 8px;
}

.wedding-gift-head .wedding-gift-description {
    font-size: var(--body-text-size);
    text-align: center;
}

/* Body */
.wedding-gift-body-wrap {
    position: relative;
    width: 100%;
    padding: 28% 24px 30%;
    min-height: 82vh;
}

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

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

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

/* Wedding Gift Form */
#weddingGiftForm {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    max-width: 635px;
    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: 12px;
}

/* 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: 999px;
}

.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);
    padding: 12px 16px;
    border-radius: 999px;
    /* display: none; */
}

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

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

.wedding-gift-select-bank-wrap .selectize-dropdown.form-control {
    margin-top: 12px;
    padding: 0;
    box-shadow: none;
    overflow: hidden;
    background-color: var(--button-background-primary) !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-primary) !important;
    color: var(--button-text-primary) !important;
}

.wedding-gift-select-bank-wrap .selectize-dropdown.form-control .item:hover {
    background-color: var(--button-background-secondary) !important;
    color: var(--button-text-secondary) !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);
}

.bg-bank-frame {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 999px 999px 0 0;
    background: var(--background-secondary);
}

/* Bank */
.wedding-gift-bank-wrap {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--background-tertiary);
}

.wedding-gift-bank-wrap .bank-item {
    flex-direction: row-reverse;
    align-items: center;
    gap: 12px;

    display: none;
}

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

.accor-active .bank-item {
    display: flex;
}


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

.bank-info-wrap {
    display: flex;
    gap: 4px;
    width: 100%;
}

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

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

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

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

.wedding-gift-bank-wrap .bank-account-number>i {
    border: 1px solid var(--text-primary);
    border-radius: 4px;
    padding: 4px;
    font-size: var(--body-text-size);
    margin-left: 2.5em;
    color: var(--text-primary);
}

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

    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size));
    color: var(--text-secondary);
    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: 600;
    word-break: break-all;
    color: var(--text-primary);
}

.bank-button-wrap {
    height: 24px;
    width: 24px;
    color: var(--text-primary);
    border: 1px solid var(--text-primary);
    border-radius: 4px;
    padding: 4px;
    font-size: 16px;
}

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

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

.wedding-gift-bank-wrap .bank-img {
    width: 120px;
    height: 120px;
    display: block;
    object-fit: cover;
    object-position: center;
}

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

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

.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: var(--background-primary);
    border: 1px solid var(--text-primary);
    border-radius: 999px;
    padding: 10px 16px;
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    color: var(--text-primary);
}

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

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

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

.wedding-gift-page {
    width: 100%;
    display: block;
    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);
    background-color: var(--button-background-primary);
    border: none;
    padding: 12px 25px;
    border-radius: 999px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
    margin: 0 auto;
}

.wedding-gift-page:hover {
    color: var(--button-text-secondary);
    background-color: var(--button-background-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-background-primary);
    font-size: 28px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

.wedding-gift-back-page:hover {
    color: rgba(var(--button-background-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(--button-background-primary);
    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%;
}

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

.wedding-gifts-wrap.no-gift .wedding-gifts-inner {}

.wedding-gifts-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8% 35px 7%;
    gap: 29px;
    max-width: 600px;
    margin: 0 auto;
}

.wedding-gifts-head {
    position: relative;
    padding: 0;
}

.wedding-gifts-head .wedding-gifts-title {}

.wedding-gifts-head .wedding-gifts-description {}

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

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

.wedding-gift-address-wrap {
    position: relative;
    padding-bottom: 24%;
}

.wedding-gift-address-inner {
    position: relative;
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--background-tertiary);
    background: rgba(var(--background-primary-rgb), 0.75);
    backdrop-filter: blur(2px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    justify-content: center;
    align-items: flex-start;
    min-height: 200px;
}

.wedding-gift-info-wrap {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wedding-gift-address-wrap .inner-address-info,
.wedding-gift-address-wrap .inner-address-wrap .inner-address-info {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size));
    color: var(--text-primary);
    font-weight: 500;
    line-height: 150%;
}

.wedding-gift-address-wrap .wedding-gift-address-label {
    position: relative;
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size) - 4px);
    color: var(--text-secondary);
}

.wedding-gift-address-wrap .btn-hadiah-copy {
    border-radius: 4px;
    border: none;
    padding: 4px;
    gap: 4px;
    align-items: center;
    justify-content: center;
    background-color: unset;
    border: none;
    border: 1px solid var(--button-background-secondary);
    color: var(--button-background-secondary);
    transition: all 0.25s ease-in-out;
    font-size: var(--body-text-size);
}

.wedding-gift-address-wrap .btn-hadiah-copy p {
    color: var(--button-background-secondary);
    line-height: 150%;
}

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

.wedding-gifts-body .kado-nav-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

.wedding-gifts-body .hadiah-wrap {
    display: unset;
    position: relative;
    margin-bottom: 12px;
}

.wedding-gifts-body .hadiah-wrap .hadiah-card-wrap {
    /* border-radius: 0px;
    padding-bottom: 5px;
    margin-right: 12px;
    
    display: flex;
    flex-direction: column;
    gap: 8px; */
}

.wedding-gifts-body .hadiah-wrap .hadiah-card-wrap .hcard-content {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-title-wrap {
    padding: 0;
    text-align: left;
}

.wedding-gifts-body .hadiah-card-wrap .hadiah-card {
    width: 100%;
    padding: 9% 4%;
    border: 1px solid var(--background-tertiary);
    background-color: var(--background-primary);
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
    border-radius: 24px;
    overflow: hidden;
}

.hadiah-card-wrap .img-wrap {
    display: flex;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hadiah-card-wrap .img-wrap::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--background-primary) 0%, rgba(var(--background-primary-rgb), 0.00) 100%);
}

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

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

.card-title-wrap .hadiah-card-title {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    font-weight: 600 !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: 600;
    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) - 4px);
    font-weight: var(--body-text-weight);
    color: var(--text-primary);
    padding: 0px;
}

.hadiah-card-inner .hadiah-card-amount .total-amount {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size) - 4px);
    font-weight: var(--body-text-weight);
    color: var(--text-primary);
}

.hadiah-card-footer {
    padding: 0px;
    text-align: start;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.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: var(--body-text-weight);
    padding: 10px 16px;
    border-radius: 999px;

    line-height: 150%;
    background: var(--button-background-secondary);
    color: var(--button-text-secondary);
    transition: all 0.25s ease-in-out;
}

.hadiah-card-footer .hadiah-card-button:hover {
    background: var(--button-background-primary);
    color: var(--button-text-primary);
}

/* Card Navigation */

.wedding-gifts-body .hadiah-card-wrap-nav {
    padding: 0 2px;
}

.wedding-gifts-body .hadiah-card-wrap-nav .hadiah-card {
    width: 100%;
    position: relative;
    display: flex;
    gap: 4px;
    align-items: center;
    justify-content: flex-start;
    padding: 5.2%;
    border-radius: 12px;
    border: 1px solid rgba(var(--background-tertiary-rgb), 0.50);
    background: var(--background-secondary);
    margin-right: 4px;
}

.wedding-gifts-body .hadiah-card-wrap-nav.is-active .hadiah-card {
    border: 1px solid rgba(var(--background-tertiary-rgb), 0.50);
    background: var(--background-tertiary);
}

.wedding-gifts-body .hadiah-card-wrap-nav .hadiah-card-title {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    font-weight: 400 !important;
    color: var(--text-secondary) !important;
    line-height: 150%;
    min-width: unset;
}

.wedding-gifts-body .hadiah-card-wrap-nav.is-active .hadiah-card-title {
    color: var(--text-tertiary) !important;
}

.wedding-gifts-body .hadiah-card-wrap-nav .hadiah-card .img-wrap {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: block;
}

.hadiah-card-wrap-nav .img-wrap .hadiah-img {
    object-fit: cover;
    object-position: center;
    position: relative;
}



/* MODAL KADO */
.kat__cropper-modal.kado {
    max-height: 100%;
}

.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);
    font-weight: 400;
}

.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-secondary);
}

.kado-form-wrap .input-field {
    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 */
.dots-gifts-nav-wrap {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dots-gifts-nav {
    width: 100%;
}

.dots-gifts-nav .slick-dots {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.dots-gifts-nav .slick-dots li {
    flex-grow: 1;
    max-width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid var(--button-background-primary);
    transition: all 0.25s ease-in-out;
}

.dots-gifts-nav .slick-dots li.slick-active {
    background-color: var(--button-background-primary);
}

.dots-gifts-nav .slick-dots li button {
    display: none;
}

.dg-btn svg path {
    stroke: var(--button-background-primary);
}

.hadiah-wrap .slick-slide {
    padding: 0 8px;
}

.hadiah-wrap .slick-list {
    margin: 0 -8px;
}

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

    .hadiah-card-wrap .img-wrap {
        min-height: 185px;
    }

    .wedding-gifts-body .hadiah-card-wrap .hadiah-card {
        border-radius: 24px;
    }

    .wedding-gift-address-inner,
    .wedding-gift-bank-wrap .bank-item.show {
        /* min-height: 280px; */
    }

}

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

    .wedding-gift-address-wrap .btn-hadiah-copy,
    .hadiah-card-footer .hadiah-card-button {
        border-radius: 12px;
    }

    .wedding-gift-address-inner,
    .wedding-gift-bank-wrap .bank-item.show {
        /* min-height: 280px; */
    }

    .wedding-gifts-body .hadiah-card-wrap-nav .hadiah-card .img-wrap {
        width: 64px;
        height: 64px;
    }

    .dots-gifts-nav .slick-dots li {
        max-width: 16px;
        height: 16px;
    }

    .dg-btn svg {
        width: 24px;
        height: 24px;
    }
}

@media (min-width: 1600px) {

    .wedding-gift-address-wrap .btn-hadiah-copy,
    .hadiah-card-footer .hadiah-card-button {
        border-radius: 12px;
    }

    .wedding-gifts-body .hadiah-card-wrap .hadiah-card {
        border-radius: 24px;
    }

    .wedding-gift-address-inner,
    .wedding-gift-bank-wrap .bank-item.show {
        /* min-height: 280px; */
    }

    .wedding-gifts-body .hadiah-card-wrap-nav .hadiah-card .img-wrap {
        width: 64px;
        height: 64px;
    }

    .dots-gifts-nav .slick-dots li {
        max-width: 16px;
        height: 16px;
    }

    .dg-btn svg {
        width: 24px;
        height: 24px;
    }
}


/* =====================================
?        INSTAGRAM FILTER
==================================== */
.ig-filter-wrap {
    position: relative;
    overflow: hidden;
}

.ig-filter {
    position: relative;
    overflow: hidden;
    padding: 4% 0px 5%;
}

/* head */
.ig-filter-head {
    text-align: center;
    padding: 0px 24px;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 6%;
}

.ig-filter-head .ig-filter-title {
    margin-bottom: 0px;

    color: var(--text-primary);
    text-align: center;
    font-family: var(--heading-family);
    font-size: var(--heading-size);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 3% 3%;
    padding-bottom: 5px;
}

.ig-filter-head .ig-filter-caption {
    padding-top: 8px;
    font-family: var(--body-text-family);
    font-weight: 500;
}

/* body */
.ig-filter-body {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 0px 30px 0%;
}

/* image */
.ig-filter-img-wrap {
    position: relative;
    width: calc(100%);
    max-width: 240px;
    margin: 0px auto;
    min-height: 420px;
    padding: 0px;

    display: flex;
    align-items: center;

}

.ig-filter-img {
    border-radius: 16px;
    overflow: hidden;
    border: 3px solid var(--background-tertiary);
    max-width: none;
    height: 100%;
    min-height: 420px;
    position: relative;
}

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

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

    background-color: var(--button-background-secondary);
    color: var(--button-text-secondary);

    font-family: var(--body-text-family);
    font-weight: 400;
    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: 560px) and (max-width: 960px) {
    .ig-filter-img-wrap {
        max-width: 340px;
    }

    .ig-filter-img {
        min-height: 600px;
    }

    .ig-filter-link-wrap {
        max-width: 340px;
    }
}

@media (min-width: 1200px) {
    .ig-filter-img-wrap {
        max-width: 340px;
    }

    .ig-filter-img {
        min-height: 600px;
    }

    .ig-filter-link-wrap {
        max-width: 340px;
    }
}


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

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

.protocol.protocol-01>.inner {
    position: relative;
    overflow: unset;
}

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

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-secondary);
    font-weight: var(--body-text-weight);
    margin-bottom: 12px;
}

.protocol.protocol-01 .inner .body {
    margin: 0px;
    padding: 40px 0px 0px;
    width: 65.7%;
    margin: 0 auto;
}

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

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

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

/* Protocol 03 */
section.protocol.protocol-03 {
    background: transparent;
    position: relative;
    padding: 5% 0 14%;
}

.protocol.protocol-03 .inner {
    position: relative;
}

section.protocol.protocol-03 .inner .head {
    padding: 24px 10% 8px;
    background-color: transparent;
}

section.protocol.protocol-03 .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-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: 10% 0px 24%; */
}

section.protocol.protocol-03 .inner .body .slider .content .text-01 {
    font-family: var(--body-text-family);
    font-weight: 400;
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    font-style: italic;
    color: var(--text-secondary);
}

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

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

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

/* Protocol 04 */
section.protocol-04 {
    position: relative;
    background-color: transparent;
    padding: 5% 0 10%;
}

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

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

.kat-page__side-to-side .secondary-pane section.protocol-04 .inner .head {
    max-width: unset;
}

section.protocol-04 .inner .head {
    padding: 0% 6.3% 5.6%;
    max-width: unset;
    position: relative;
}

section.protocol-04 .inner .head .title {
    font-family: var(--heading-family);
    font-weight: var(--heading-weight);
    font-size: calc(var(--heading-size) + 8px);
    text-transform: var(--heading-lettercase);
    color: var(--text-primary);
    line-height: normal;
}

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

section.protocol-04 .inner .body {
    padding: 0 45px;
}

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

    justify-content: center;
    gap: 22px;
}

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: 40px;
    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: 190px;
        height: 215px;
    }

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

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

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

    section.protocol-04 .inner .head {
        max-width: unset;
        position: relative;
    }
}


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

.wedding-wish-inner {
    position: relative;
}

/* head */
.wedding-wish-head {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 7%;
}

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

.wedding-wish-head .wedding-wish-description {
    line-height: 150%;
}

/* Body */
.wedding-wish-body {
    padding: 24px 0px;
}

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

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

.wedding-wish-form .form-control {
    background-color: var(--background-primary);
    border: 1px solid var(--background-tertiary);
    border-radius: 999px;
    padding: 12px 12px;
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    line-height: 1.5;
    color: var(--text-primary);
}

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

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

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

.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 {
    padding: 12px 24px;
    width: 100%;
    cursor: pointer;
    border: none;
    border-radius: 999px;
    outline: none;
    background-color: rgba(var(--button-background-primary-rgb), 1);
    color: var(--button-text-primary);
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    font-weight: 400;
    line-height: 150%;
    transition: all 0.25s ease-in-out;
}

.wedding-wish-form .submit-comment:hover {
    background-color: rgba(var(--button-background-secondary-rgb), 1);
    color: var(--button-text-secondary);
}

/* 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;
}

.wedding-wish-form form .submit-comment-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.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 {
    padding: 16px;
    background: var(--background-secondary);
    margin-bottom: 16px;
    border-radius: 24px;
    border: 1px solid var(--background-tertiary);
}

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

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

.comment-head .comment-name {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size));
    font-weight: 400;
    line-height: 150%;
    color: var(--text-primary);
}

.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));
    line-height: 150%;
    display: block;
    margin-top: 4px;
    color: var(--text-secondary);
}

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

.comment-head .delete-comment:hover {
    color: rgba(var(--text-primary-rgb), 0.8);
}

.comment-body {}

.comment-body .comment-caption {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size));
    line-height: 150%;
    color: var(--text-primary);
}

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

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

#moreComment {
    border: none;
    outline: none;
    width: 100%;
    display: block;
    padding: 12px 16px;
    margin: 0 auto;
    border-radius: 999px;
    text-decoration: none;
    background-color: var(--button-background-secondary);
    color: var(--button-text-secondary);
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    font-weight: 400;
    line-height: 1.5;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}

#moreComment:hover {
    background-color: rgba(var(--button-background-primary-rgb), 1);
    color: var(--button-text-primary);
}


/* ==============================
?        NOTES
============================== */
.notes-container {
    overflow: hidden;
    padding: 5% 0 10%;
}

.thankyou {
    padding: 21.1% 15.4% 14%;
}

.thankyou .note-title {
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 6%;
}

.thankyou .note-description {
    text-align: center;
    color: var(--text-primary);
    font-size: calc(var(--body-text-size));
    line-height: 150%;
}

@media (min-width: 561px) and (max-width: 960px) {
    .thankyou {
        /* padding: 26.1% 20.5%; */
    }

    .notes-container {
        padding: 5% 0;
    }
}

@media (min-width: 1600px) {
    .thankyou {
        /* padding: 26.1% 20.5%; */
    }

    .notes-container {
        padding: 5% 0;
    }
}


/* ========================================
?        FOOTNOTE
======================================== */
.footnote-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    gap: 55px;

}

.footnote-wrap .footnote {
    position: relative;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding: 10.3% 20.5% 105%;
    gap: 12px;
}

.orn-tc-frame {
    position: absolute;
    width: 100%;
    inset: 0;
}

/* Details */
.footnote .content {
    position: relative;
    z-index: 1;

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

.footnote .content .footnote-title {
    font-size: calc(var(--heading-size));

    color: var(--text-primary);
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footnote .content .bottom-text,
.footnote-wrap .footnote .top-text {
    font-size: var(--body-text-size);
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
}

.footnote-wrap .orn-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footnote-wrap .orn-wrapper .orn-footnote-logo {
    width: 35.57%;
}

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

@media (max-width: 360px) {
    .footnote-wrap {
        /* min-height: calc(80vh + 100px); */
    }
}

@media (max-width: 360px) {
    .footnote-wrap .orn-wrapper .orn-footnote-logo {}
}

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

    .footnote-wrap .logo-wrap {
        max-width: 160px;
        min-height: 160px;
    }
}

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

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

.footnote-wrap .wrapper {}


/* ========================================
      FOOTER
======================================== */
section.footer {
    background: var(--button-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(--button-text-secondary);
}

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

section.footer .footer-inner .footer-logo path {
    fill: var(--button-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
============================== */
/* Global */
.orn-clip.top {
    top: 0;
    bottom: unset;
}

.orn-clip {
    position: absolute;
    width: 100%;
    left: 50%;
    bottom: 0;
    transform: translate(-50%);
}

.orn-clip.ot {
    transform: translate(-50%, 50%);
}

.orn-clip.ot.top {
    transform: translate(-50%, -50%);
}

/* COVER */
.orn-cv-1.right {
    position: absolute;
    width: 30.99%;
    right: 0;
    bottom: 0;
    transform: translate(42.85%) scaleX(-1);
}

.orn-cv-1.left {
    position: absolute;
    width: 30.99%;
    left: 0;
    bottom: 0;
    transform: translate(-42.85%);
}

.orn-cv-1-1 {
    position: absolute;
    width: 73.80%;
    right: 0;
    bottom: 0;
    transform: translate(4.83%, 14.28%);
}

.orn-cv-1-2 {
    position: absolute;
    width: 59.52%;
    left: 23.36%;
    bottom: 0;
    transform: translate(0%, 34%);
}

.orn-cv-2.right {
    position: absolute;
    width: 22.87%;
    right: 0;
    bottom: 6.16%;
    transform: translate(69.95%);
}

.orn-cv-2.left {
    position: absolute;
    width: 22.87%;
    left: 0;
    bottom: 6.16%;
    transform: translate(-69.95%) scaleX(-1);
}

.orn-cv-2-1 {
    position: absolute;
    width: 91.93%;
    left: 0;
    bottom: 34.4%;
    transform: translate(-15.16%);
}

.orn-cv-2-2 {
    position: absolute;
    width: 72.58%;
    left: 0;
    bottom: 56%;
    transform: translate(-4.4%) scaleX(-1);
}

.orn-cv-3.right {
    position: absolute;
    width: 28.78%;
    right: 0;
    top: 20.16%;
    transform: translate(54%) rotate(14.7deg) scaleX(-1);
}

.orn-cv-3.left {
    position: absolute;
    width: 28.78%;
    left: 0;
    top: 20.16%;
    transform: translate(-54%) rotate(-14.7deg);
}

.orn-cv-4.right {
    position: absolute;
    width: 28.71%;
    right: 0;
    bottom: 0%;
    transform: translate(27.67%);
}

.orn-cv-4.left {
    position: absolute;
    width: 28.71%;
    left: 0;
    bottom: 0%;
    transform: translate(-27.67%) scaleX(-1);
}

.orn-cv-4-1 {
    position: absolute;
    width: 83.03%;
    right: 0;
    bottom: 45.83%;
    transform: translate(6.45%) scaleX(-1);
}

.orn-cv-5.right {
    position: absolute;
    width: 27.94%;
    right: 0;
    bottom: 0%;
    transform: translate(48.67%);
}

.orn-cv-5.left {
    position: absolute;
    width: 27.94%;
    left: 0;
    bottom: 0%;
    transform: translate(-48.67%) scaleX(-1);
}

.orn-cv-5-1 {
    position: absolute;
    width: 124.77%;
    right: 0;
    bottom: 31.19%;
    transform: translate(8.82%) scaleX(-1);
}


.orn-cv-9.right {
    position: absolute;
    width: 69.48%;
    right: 0%;
    transform: translate(50.18%, 0%) scaleX(-1);
    top: 0%;
}

.orn-cv-9.left {
    position: absolute;
    width: 69.48%;
    left: 0%;
    transform: translate(-50.18%, 0%);
    top: 0%;
}

.orn-cv-9-1 {
    position: absolute;
    width: 81.18%;
    left: 0%;
    transform: translate(-2.81%, 0%) scaleX(-1);
    top: 48.54%;
}

/* QUOTE */
.orn-qt-1.center {
    position: absolute;
    width: 100%;
    left: 50%;
    bottom: 0%;
    transform: translate(-50%, 0%);
}

.orn-qt-1-1 {
    position: absolute;
    width: 75%;
    left: 50%;
    bottom: 35.38%;
    transform: translate(-50%, 0%);
}

.orn-qt-2.left {
    position: absolute;
    width: 28.71%;
    left: 0%;
    transform: translate(-21.42%, 0%);
    bottom: 24%;
}

.orn-qt-2.right {
    position: absolute;
    width: 28.71%;
    right: 0%;
    transform: translate(21.42%, 0%) scaleX(-1);
    bottom: 24%;
}

.orn-qt-3.left {
    position: absolute;
    width: 24.61%;
    left: 0%;
    bottom: 35.38%;
    transform: translate(-51%, 0%);
}

.orn-qt-3.right {
    position: absolute;
    width: 24.61%;
    right: 0%;
    bottom: 35.38%;
    transform: translate(51%, 0%) scaleX(-1);
}

.orn-qt-3-1 {
    position: absolute;
    width: 59.375%;
    right: 0%;
    bottom: 9.47%;
    transform: translate(59.64%, 0%);
}

.orn-qt-3-2 {
    position: absolute;
    width: 64.5%;
    right: 0%;
    bottom: 21%;
    transform: translate(62.90%, 0%);
}

.orn-qt-3-3 {
    position: absolute;
    width: 52.08%;
    right: 0%;
    top: 5.78%;
    transform: translate(50%, 0%);
}

.orn-qt-3-4 {
    position: absolute;
    width: 81.25%;
    right: 0%;
    top: 0%;
    transform: translate(23%, -15.87%);
}

.orn-qt-4.left {
    position: absolute;
    width: 24.61%;
    left: 0%;
    bottom: 73.33%;
    transform: translate(-39.25%, 0%);
}

.orn-qt-4.right {
    position: absolute;
    width: 24.61%;
    right: 0%;
    bottom: 73.33%;
    transform: translate(39.25%, 0%) scaleX(-1);
}

/* COUPLE */
.orn-cp-1 {
    position: absolute;
    width: 69.64%;
    right: 0%;
    top: 11.19%;
    transform: translate(25.59%, 0%);
}

.orn-cp-1-1 {
    position: absolute;
    width: 78.21%;
    left: 0%;
    bottom: 41.51%;
    transform: translate(-3.57%, 0%) scaleX(-1);
}

.orn-cp-2 {
    position: absolute;
    width: 32.68%;
    right: 0%;
    bottom: 14.19%;
    transform: translate(12.59%, 0%) rotate(19.178deg);
}

.orn-cp-3 {
    position: absolute;
    width: 45.13%;
    right: 0%;
    bottom: 0%;
    transform: translate(0%, 19%);
}

.orn-cp-4 {
    position: absolute;
    width: 77.82%;
    left: 0%;
    bottom: 0%;
    transform: translate(-14%, -25%) rotate(-133deg);
}

.orn-cp-5 {
    position: absolute;
    width: 45.52%;
    left: 0%;
    bottom: 15.28%;
    transform: translate(-44.75%, 0%);
}

.orn-cp-6 {
    position: absolute;
    width: 72.37%;
    left: 0%;
    bottom: 29.16%;
    transform: translate(-38.17%, 0%);
}


.orn-cpd-1.left {
    position: absolute;
    width: 35.89%;
    transform: translate(-34.28%, -62%);
    left: 0%;
    top: 0%;
    max-width: 200px;
}

.orn-cpd-1.right {
    position: absolute;
    width: 35.89%;
    transform: translate(34.28%, -62%) scaleX(-1);
    right: 0%;
    top: 0%;
    max-width: 200px;
}

.orn-cpd-1-1 {
    position: absolute;
    width: 66.42%;
    transform: translate(0%, 23%);
    left: 16.42%;
    bottom: 0%;
}

.orn-cpd-1-2 {
    position: absolute;
    width: 69.56%;
    transform: translate(0%, 44.81%) rotate(24.007deg);
    left: 0%;
    bottom: 0%;
}


/* Save The Date */
.orn-sd-1.left {
    position: absolute;
    width: 27.94%;
    transform: translate(-3.66%, 0%);
    left: 0%;
    bottom: 0%;
}

.orn-sd-1.right {
    position: absolute;
    width: 27.94%;
    transform: translate(3.66%, 0%) scaleX(-1);
    right: 0%;
    bottom: 0%;
}

.orn-sd-1-1 {
    position: absolute;
    width: 122%;
    transform: translate(-28.57%, 0%);
    left: 0%;
    bottom: 20.77%;
}

.orn-sd-1-2 {
    position: absolute;
    width: 84.21%;
    transform: translate(0%, 0%);
    left: 7.5%;
    bottom: 10.33%;
}

.orn-sd-1-3 {
    position: absolute;
    width: 87.5%;
    transform: translate(0%, 0%);
    left: 0%;
    bottom: 30.58%;
}

.orn-sd-2-1 {
    position: absolute;
    width: 77.7%;
    transform: translate(0%, -56.64%);
    left: 30.77%;
    top: 0%;
}

.orn-sd-2-2 {
    position: absolute;
    width: 66.1%;
    transform: translate(0%, 0%) scaleX(-1);
    left: 8.16%;
    bottom: 55.32%;
}

@media (min-width : 561px) and (max-width : 960px) {
    .orn-sd-2-2 {
        left: 45.16%;
    }
}

@media (max-width : 1600px) {
    .orn-sd-2-2 {
        left: 45.16%;
    }
}



/* EVENTS */
.orn-ev-1.left {
    position: absolute;
    width: 37.94%;
    transform: translate(-26.35%, 0%);
    left: 0%;
    bottom: 0%;
}

.orn-ev-1.right {
    position: absolute;
    width: 37.94%;
    transform: translate(26.35%, 0%) scaleX(-1);
    right: 0%;
    bottom: 0%;
}

.orn-ev-1-1 {
    position: absolute;
    width: 86.86%;
    transform: translate(0%, 0%);
    left: 72.54%;
    bottom: 1.63%;
}

.orn-ev-1-2 {
    position: absolute;
    width: 83.10%;
    transform: translate(0%, 0%) scaleX(-1);
    left: 0%;
    bottom: 22.85%;
}

.orn-ev-1-3 {
    position: absolute;
    width: 49.32%;
    transform: translate(0%, 0%);
    left: 26.35%;
    bottom: 26.857%;
}

.orn-ev-1-4 {
    position: absolute;
    width: 88.51%;
    transform: translate(-13.74%, -53.46%);
    left: 0%;
    top: 0%;
}

.orn-ev-1-4-1 {
    position: absolute;
    width: 55.4%;
    transform: translate(-2%, -30.37%);
    left: 32.61%;
    bottom: 73%;
}

.orn-ev-1-4-2 {
    position: absolute;
    width: 82.92%;
    transform: translate(-54.41%, -62.5%);
    left: 0%;
    top: 0%;
}

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

.orn-ev-3.left {
    position: absolute;
    width: 35.74%;
    transform: translate(3%, 0%);
    left: 0%;
    top: 0%;
}

.orn-ev-3.right {
    position: absolute;
    width: 35.74%;
    transform: translate(-3%, 0%) scaleX(-1);
    right: 0%;
    top: 0%;
}

.orn-ev-3-1 {
    position: absolute;
    width: 100.71%;
    transform: translate(-35%, -1%) rotate(7.173deg);
    left: 0%;
    top: 0%;
}

.orn-ev-3-2 {
    position: absolute;
    width: 66.71%;
    transform: translate(-36%, 6%);
    left: 0%;
    top: 100%;
}

.orn-ev-4.center {
    position: absolute;
    width: 100%;
    transform: translate(-50%, 0%);
    left: 50%;
    bottom: 0%;
    opacity: .25;
}

/* DRESSCODE */
.orn-dc-1 {
    position: absolute;
    width: 45.48%;
    left: 0%;
    bottom: 0%;
    transform: translate(-35.59%, 0%) scaleX(-1);
}

.orn-dc-1-1 {
    position: absolute;
    width: 55%;
    right: 0%;
    bottom: 25%;
    transform: translate(-15.59%, 0%) rotate(1.41deg) scaleX(-1);
}

.orn-dc-2 {
    position: absolute;
    width: 52.84%;
    right: 0%;
    bottom: 0%;
    transform: translate(53.59%, -37%);
}

.orn-dc-3 {
    position: absolute;
    width: 65.92%;
    right: 0%;
    bottom: 0%;
    transform: translate(20.59%, -2%) rotate(120deg);
}

.dress-preview-wrap.wm .ornaments-wrapper {
    transform: scaleX(-1);
}

/* RSVP */
.orn-rsvp-1.right {
    position: absolute;
    width: 28.14%;
    transform: translate(67%, 0%);
    right: 0%;
    bottom: 0%;
}

.orn-rsvp-1.left {
    position: absolute;
    width: 28.14%;
    transform: translate(-67%, 0%) scaleX(-1);
    left: 0%;
    bottom: 0%;
}

.orn-rsvp-1-1 {
    position: absolute;
    width: 85.52%;
    transform: translate(0%, 0%);
    left: 6.57%;
    bottom: 25.67%;
}

.orn-rsvp-1-2 {
    position: absolute;
    width: 126.15%;
    transform: translate(0%, 0%);
    left: 0%;
    bottom: 57.43%;
}

.orn-rsvp-1-3 {
    position: absolute;
    width: 86.58%;
    transform: translate(0%, 0%);
    left: 0%;
    bottom: 74.81%;
}

/* Story */
.orn-story-1 {
    position: absolute;
    width: 28.71%;
    transform: translate(-50%, 13%);
    left: 50%;
    top: 0%;
}

.orn-ls-1.right {
    position: absolute;
    width: 38.92%;
    right: 0%;
    bottom: 0%;
    transform: translate(10%, 0%) scaleX(-1);
}

.orn-ls-1.left {
    position: absolute;
    width: 38.92%;
    left: 0%;
    bottom: 0%;
    transform: translate(-10%, 0%);
}

.orn-ls-2.right {
    position: absolute;
    width: 47.5%;
    right: 0%;
    bottom: 3.9%;
    transform: translate(41.35%, 0%) scaleX(-1);
}

.orn-ls-2.left {
    position: absolute;
    width: 47.5%;
    left: 0%;
    bottom: 3.9%;
    transform: translate(-41.35%, 0%);
}

.orn-ls-2-1 {
    position: absolute;
    width: 84.21%;
    right: 7.5%;
    bottom: 10.30%;
    transform: translate(0%, 0%);
}

.orn-ls-2-2 {
    position: absolute;
    width: 87.5%;
    right: 0%;
    bottom: 30.58%;
    transform: translate(0%, 0%) scaleX(-1);
}

/* LIVE STREAMING */
.orn-live-1.right {
    position: absolute;
    width: 31.57%;
    right: 0%;
    bottom: 0%;
    transform: translate(22.22%, 27.27%) scaleX(-1);
}

.orn-live-1.left {
    position: absolute;
    width: 31.57%;
    left: 0%;
    bottom: 0%;
    transform: translate(-22.22%, 27.27%);
}

.orn-live-2.right {
    position: absolute;
    width: 40.93%;
    right: 0%;
    bottom: 0%;
    transform: translate(40%, 6.15%);
}

.orn-live-2.left {
    position: absolute;
    width: 40.93%;
    left: 0%;
    bottom: 0%;
    transform: translate(-40%, 6.15%) scaleX(-1);
}

.orn-live-2-1 {
    position: absolute;
    width: 56.28%;
    right: 27.14%;
    bottom: 34.67%;
    transform: translate(0%, 0%) scaleX(-1);
}

.orn-live-bg {
    position: absolute;
    width: 100%;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%, 50%);
    opacity: .25;
}

/* PHOTO */
.orn-ph-1.left {
    position: absolute;
    width: 100%;
    transform: translate(-50%, 150%) rotate(90deg);
    left: 0%;
    top: 0%;
}

.orn-ph-1.right {
    position: absolute;
    width: 100%;
    transform: translate(50%, 150%) rotate(-90deg) scaleX(-1);
    right: 0%;
    top: 0%;
}

.orn-vd-1.left {
    position: absolute;
    width: 69.48%;
    transform: translate(-62%, 0%);
    left: 0%;
    top: 0%;
}

.orn-vd-1.right {
    position: absolute;
    width: 69.48%;
    transform: translate(62%, 0%) scaleX(-1);
    right: 0%;
    top: 0%;
}

.video-gallery .orn-cpd-1.left {
    transform: translate(-34.28%, 6%);
}

.video-gallery .orn-cpd-1.right {
    transform: translate(34.28%, 6%) scaleX(-1);
}


/* BANK */
.orn-bank-1.center {
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translate(-50%, 4%);
    bottom: 0;
}

.orn-bank-2.left {
    position: absolute;
    width: 45.55%;
    left: 0%;
    transform: translate(-0.66%, -4%);
    bottom: 0%;
}

.orn-bank-2.right {
    position: absolute;
    width: 45.55%;
    right: 0%;
    transform: translate(0.66%, -4%) scaleX(-1);
    bottom: 0%;
}

.orn-bank-3.left {
    position: absolute;
    width: 42.56%;
    left: 0%;
    transform: translate(-19%, -2%);
    top: 0%;
}

.orn-bank-3.right {
    position: absolute;
    width: 42.56%;
    right: 0%;
    transform: translate(19%, -2%) scaleX(-1);
    top: 0%;
}

.orn-bank-3-1 {
    position: absolute;
    width: 52.40%;
    right: 0%;
    transform: translate(19%, -22%);
    top: 0%;
}

.orn-bank-3-2 {
    position: absolute;
    width: 61.44%;
    right: 0%;
    transform: translate(-19%, -22%);
    top: 0%;
}

.orn-bank-3-3 {
    position: absolute;
    width: 80.54%;
    right: 0%;
    transform: translate(22%, 22%);
    top: 0%;
}

.orn-bank-bg {
    position: absolute;
    width: 100%;
    transform: translate(-50%, -7%);
    left: 50%;
    bottom: 0%;
    opacity: .25;
}


.orn-qt-1-1-1 {
    position: absolute;
    width: 31.25%;
    left: 0%;
    transform: translate(-26.66%, 0%);
    bottom: 13.20%;
}

.orn-qt-1-1-2 {
    position: absolute;
    width: 34.375%;
    left: 0%;
    transform: translate(-24.24%, 0%) scaleX(-1);
    bottom: 33.96%;
}

.orn-qt-1-1-3 {
    position: absolute;
    width: 32.29%;
    left: 12.5%;
    transform: translate(0%, 0%);
    bottom: 13.02%;
}

.orn-qt-1-1-4 {
    position: absolute;
    width: 47.91%;
    left: 17.7%;
    transform: translate(0%, 0%);
    bottom: 33.02%;
}

.orn-qt-1-1-5 {
    position: absolute;
    width: 45.83%;
    right: 0%;
    transform: translate(6%, 0%);
    bottom: 12.02%;
}

@media (min-width: 561px) and (max-width: 960px) {
    .orn-bank-3.left {
        transform: translate(-19%, 4%);
        max-width: 300px;
    }

    .orn-bank-3.right {
        transform: translate(19%, 4%) scaleX(-1);
        max-width: 300px;
    }
}

@media (min-width: 1600px) {
    .orn-bank-3.left {
        transform: translate(-19%, 4%);
        max-width: 300px;
    }

    .orn-bank-3.right {
        transform: translate(19%, 4%) scaleX(-1);
        max-width: 300px;
    }
}

/* KADO */
.orn-kd-1 {
    position: absolute;
    width: 83.71%;
    left: 50%;
    transform: translate(-50%, 16%);
    bottom: 0;
}

.orn-kd-1-1.left {
    position: absolute;
    width: 35.55%;
    left: 0%;
    transform: translate(-66.66%, 0%);
    bottom: 23%;
}

.orn-kd-1-1.right {
    position: absolute;
    width: 35.55%;
    right: 0%;
    transform: translate(66.66%, 0%) scaleX(-1);
    bottom: 23%;
}

.orn-kd-2.right {
    position: absolute;
    width: 65.29%;
    right: 0%;
    transform: translate(58.85%, -28%) scaleX(-1);
    bottom: 15.85%;
}

.orn-kd-2.left {
    position: absolute;
    width: 65.29%;
    left: 0%;
    transform: translate(-58.85%, -28%);
    bottom: 15.85%;
}

/* INSTAGRAM */
.orn-ig-head {
    position: relative;
    margin: 0 auto;
    width: 32.8%;
}

.ig-filter-wrap .orn-rsvp-1-1>.image-wrap img {
    transform: scaleX(-1);
}

.orn-ig-2.left {
    position: absolute;
    width: 40.83%;
    left: 0%;
    transform: translate(-50%, -11%) scaleX(-1);
    top: 0%;
}

.orn-ig-2.right {
    position: absolute;
    width: 40.83%;
    right: 0%;
    transform: translate(50%, -11%);
    top: 0%;
}

/* THANK YOU */
.orn-ty-1.right {
    position: absolute;
    width: 28.71%;
    right: 0%;
    bottom: 0%;
    transform: translate(50%, 0%) scaleX(-1);
    max-width: 184px;
}

.orn-ty-1.left {
    position: absolute;
    width: 28.71%;
    left: 0%;
    bottom: 0%;
    transform: translate(-50%, 0%);
    max-width: 184px;
}

.orn-ty-1-1 {
    position: absolute;
    width: 97.32%;
    left: 39.28%;
    bottom: 0%;
    transform: translate(0%, 0%);
}

.orn-ty-1-2 {
    position: absolute;
    width: 70.35%;
    right: 0%;
    bottom: 24.75%;
    transform: translate(5%, 0%) scaleX(-1);
}

/* Footonte */
.footnote-wrap .bg-cover {
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translate(-50%, 0%);
    top: 20%;
    opacity: .35;
}

.orn-ff-1.center {
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translate(-50%, 0%);
    bottom: 0;
}

.orn-ff-1-1 {
    position: absolute;
    width: 68.17%;
    left: 50%;
    transform: translate(-50%, 0%);
    bottom: 45.68%;
}

.orn-ff-1-2.right {
    position: absolute;
    width: 81.71%;
    right: 0%;
    transform: translate(38.81%, 0%) scaleX(-1);
    bottom: 23.50%;
}

.orn-ff-1-2.left {
    position: absolute;
    width: 81.71%;
    left: 0%;
    transform: translate(-38.81%, 0%);
    bottom: 23.50%;
}

.orn-ff-2.left {
    position: absolute;
    width: 27.948%;
    left: 0%;
    transform: translate(-38.52%, 3%);
    bottom: 0;
}

.orn-ff-2.right {
    position: absolute;
    width: 27.948%;
    right: 0%;
    transform: translate(38.52%, 3%) scaleX(-1);
    bottom: 0;
}

.orn-ff-2-1 {
    position: absolute;
    width: 112.84%;
    left: 24.77%;
    transform: translate(0%, 5.74%);
    bottom: 0;
}

.orn-ff-2-2 {
    position: absolute;
    width: 124.77%;
    left: 30.27%;
    transform: translate(1%, -1.42%);
    bottom: 0;
}

.orn-ff-2-3 {
    position: absolute;
    width: 77%;
    left: 0%;
    transform: translate(11.76%, 0%);
    bottom: 57.5%;
}

.orn-ff-2-4 {
    position: absolute;
    width: 56.88%;
    left: 45.3%;
    transform: translate(0%, 21%);
    bottom: 0%;
}

.orn-ff-2-3-1 {
    position: absolute;
    width: 67.85%;
    left: 0%;
    transform: translate(12.26%, 0%) scaleX(-1);
    bottom: 55.46%;
}

.orn-ff-3.left {
    position: absolute;
    width: 35.897%;
    left: 10%;
    transform: translate(13%, 20.27%);
    bottom: 0;
}

.orn-ff-3.right {
    position: absolute;
    width: 35.897%;
    right: 10%;
    transform: translate(-13%, 20.27%) scaleX(-1);
    bottom: 0;
}

.orn-ff-4.center {
    position: absolute;
    width: 36.6%;
    left: 50%;
    transform: translate(-50%, 0%);
    bottom: 0;
}


.orn-ff-9.right {
    position: absolute;
    width: 69.48%;
    right: 0%;
    transform: translate(50.18%, 4%) scaleX(-1);
    top: 4%;
}

.orn-ff-9.left {
    position: absolute;
    width: 69.48%;
    left: 0%;
    transform: translate(-50.18%, 4%);
    top: 4%;
}

.orn-ff-9-1 {
    position: absolute;
    width: 81.18%;
    left: 0%;
    transform: translate(-11.81%, 0%);
    top: 57.54%;
}

/* TOP COVER */
.top-cover .orn-ff-1-1 {
    width: 68.67%;
}

.top-cover .orn-ff-9-1 {
    transform: translate(10.81%, 10%);
}

/* PRIMARY PANE */
.primary-pane .orn-ff-2.left {
    width: 17.948%;
}

.primary-pane .orn-ff-2.right {
    width: 17.948%;
}

.primary-pane .orn-ff-4.center {
    width: 30.6%;
}

.primary-pane .orn-ff-3.left {
    width: 28.897%;
    left: 17%;
    transform: translate(13%, 20.27%);
}

.primary-pane .orn-ff-3.right {
    width: 28.897%;
    right: 17%;
    transform: translate(-13%, 20.27%) scaleX(-1);
}

.primary-pane .orn-ff-1.center {
    transform: translate(-50%, 42%);
}

.primary-pane .orn-ff-9-1 {
    width: 79.18%;
    transform: translate(26.19%, 4%);
    top: 57.54%;
}

.primary-pane .orn-ff-9.left {
    width: 59.48%;
    transform: translate(-50.18%, 0%);
    top: 11%;
}

.primary-pane .orn-ff-9.right {
    width: 59.48%;
    transform: translate(50.18%, 0%) scaleX(-1);
    top: 11%;
}

.bg-pp {
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
}

/* ========================================
        ANIMATIONS
======================================== */
@keyframes goyang {
    0% {
        transform: rotate(-3deg);
    }

    100% {
        transform: rotate(3deg);
    }
}

/* Global  */

/* Cover  */
.orn-cv-1>.image-wrap img {
    transform-origin: 46% 90%;
    animation: goyang 4s ease-in-out infinite alternate;
}

.orn-cv-2-2>.image-wrap img {
    transform-origin: 100% 100%;
    animation: goyang 4s ease-in-out infinite alternate;
    animation-delay: .7s;
}

.orn-cv-3>.image-wrap img {
    transform-origin: 48% 100%;
    animation: goyang 4s ease-in-out infinite alternate;
    animation-delay: .5s;
}

.orn-cv-5-1>.image-wrap img {
    transform-origin: 48% 90%;
    animation: goyang 3s ease-in-out infinite alternate;
    animation-delay: .5s;
}

/* QUOTE */
.orn-qt-3-4>.image-wrap img {
    transform-origin: 48% 100%;
    animation: goyang 3s ease-in-out infinite alternate;
}

/* COUPLE */
.orn-cp-3>.image-wrap img {
    transform-origin: 93% 0%;
    animation: goyang 3s ease-in-out infinite alternate;
}

.orn-cp-4>.image-wrap img {
    transform-origin: 0% 80%;
    animation: goyang 4s ease-in-out infinite alternate;
    animation-delay: .5s;
}

.orn-cp-1-1>.image-wrap img {
    transform-origin: 50% 90%;
    animation: goyang 5s ease-in-out infinite alternate;
    animation-delay: .5s;
}

.orn-cpd-1>.image-wrap img {
    transform-origin: 50% 90%;
    animation: goyang 5s ease-in-out infinite alternate;
    animation-delay: .5s;
}

/* Save The Date */
.orn-sd-1-3>.image-wrap img {
    transform-origin: 50% 100%;
    animation: goyang 4s ease-in-out infinite alternate;
    animation-delay: .5s;
}

.orn-sd-2-2>.image-wrap img {
    transform-origin: 100% 100%;
    animation: goyang 3s ease-in-out infinite alternate;
}


/* EVENT */
.orn-ev-3>.image-wrap img {
    transform-origin: 0% 73%;
    animation: goyang 4s ease-in-out infinite alternate;
}

.orn-ev-3-2>.image-wrap img {
    transform-origin: 25% 100%;
    animation: goyang 3s ease-in-out infinite alternate;
}

.orn-ev-1-4-1>.image-wrap img {
    transform-origin: 40% 94%;
    animation: goyang 4s ease-in-out infinite alternate;
}

.orn-ev-1-3>.image-wrap img {
    transform-origin: 62% 100%;
    animation: goyang 4s ease-in-out infinite alternate;
    animation-delay: .6s;
}

.orn-dc-1-1>.image-wrap img {
    transform-origin: 100% 100%;
    animation: goyang 4s ease-in-out infinite alternate;
    animation-delay: .6s;
}

.orn-dc-3>.image-wrap img {
    transform-origin: 0% 75%;
    animation: goyang 4s ease-in-out infinite alternate;
    animation-delay: .6s;
}

.orn-rsvp-1-2>.image-wrap img {
    transform-origin: 35% 100%;
    animation: goyang 4s ease-in-out infinite alternate;
    animation-delay: .6s;
}

.orn-ls-2-2>.image-wrap img {
    transform-origin: 50% 100%;
    animation: goyang 4s ease-in-out infinite alternate;
}

.orn-live-2-1>.image-wrap img {
    transform-origin: 100% 100%;
    animation: goyang 4s ease-in-out infinite alternate;
}

.orn-ig-2>.image-wrap img {
    transform-origin: 50% 100%;
    animation: goyang 4s ease-in-out infinite alternate;
}

/* BANK */
.orn-bank-3-3>.image-wrap img {
    transform-origin: 0% 80%;
    animation: goyang 4s ease-in-out infinite alternate;
    animation-delay: .6s;
}

.orn-bank-3-2>.image-wrap img {
    transform-origin: 20% 100%;
    animation: goyang 3s ease-in-out infinite alternate;
}

.orn-ty-1-2>.image-wrap img {
    transform-origin: 100% 100%;
    animation: goyang 3s ease-in-out infinite alternate;
}

/* Quote */
.orn-qt-1-1-3>.image-wrap img {
    transform-origin: 35% 100%;
    animation: goyang 4s ease-in-out infinite alternate;
}

.orn-qt-1-1-4>.image-wrap img {
    transform-origin: 50% 100%;
    animation: goyang 3s ease-in-out infinite alternate;
    animation-delay: .5s;
}

/* FOOTNOYTE */
.orn-ff-2-1>.image-wrap img {
    transform-origin: 50% 90%;
    animation: goyang 4s ease-in-out infinite alternate;
    animation-delay: .5s;
}

.orn-ff-2-2>.image-wrap img {
    transform-origin: 50% 90%;
    animation: goyang 3s ease-in-out infinite alternate;
    animation-delay: .5s;
}

.orn-ff-2>.image-wrap img {
    transform-origin: 50% 100%;
    animation: goyang 6s ease-in-out infinite alternate;
}