/* Impact */
/* @import url('https://fonts.googleapis.com/css2?family=PT+Sans+Narrow:wght@400;700&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@500&display=swap'); */

@font-face {
    font-family: "Impact";
    src: url('https://katsudoto.id/plugin/fonts/impact.ttf') format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ayyara */
body.ayyara {
    /* Heading Family */
    --heading-family : 'PT Sans Narrow', sans-serif;
    --heading-style: normal;
    --heading-weight: 700;
    --heading-size: calc(12vw + 1.152px);
    --heading-lettercase: uppercase;
    
    /* Body Text */
    --body-text-family : 'Red Hat Display', sans-serif;
    --body-text-style: normal;
    --body-text-weight: 500;
    --body-text-size: calc(4vw + 0.384px);
    --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);
}

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

@media (min-width: 560px) and (max-width: 960px) {
    body.ayyara {
        --heading-size: 56px;
        --body-text-size: 20px;
    }
}

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

body.ayyara.original {
    /* Color */
    --background-primary: #141414;
    --background-primary-rgb: 20, 20, 20;
    --background-secondary: #971113;
    --background-secondary-rgb: 151, 17, 19;
    --background-tertiary: #B50005;
    --background-tertiary-rgb: 181, 0, 5;

    --text-primary: #EC1D23;
    --text-primary-rgb: 236, 29, 35;
    --text-secondary: #FFFFFF;
    --text-secondary-rgb: 255, 255, 255;
    --text-tertiary: #EDEDED;
    --text-tertiary-rgb: 237, 237, 237;

    --button-text-primary: #141414;
    --button-text-primary-rgb: 20, 20, 20;
    --button-background-primary: #FFFFFF;
    --button-background-primary-rgb: 255, 255, 255;
    --button-text-secondary: #FFFFFF;
    --button-text-secondary-rgb: 255, 255, 255;
    --button-background-secondary: #971113;
    --button-background-secondary-rgb: 151, 17, 19;


    --light-clr: #FFFFFF;
    --dark-clr: #000000;

    /* RGB */
    --light-rgb: 255, 255, 255;
    --dark-rgb: 0, 0, 0;

    /* Ornament */
    /* --bg-agenda :url("https://katsudoto.id/media/template/custom/ayyara/bg-acara.png"); */
    --bg-galeri :url("https://katsudoto.id/media/template/custom/ayyara/bg-galeri.jpg");

}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #000;
}

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

html {
    scroll-behavior: smooth;
}

body.ayyara::-webkit-scrollbar {
    width: 10px;
    height: 15px;
}
body.ayyara::-webkit-scrollbar-thumb,
textarea::-webkit-scrollbar-thumb {
    border-width: 2px;
    background-color: var(--text-primary);
}

.form-control:focus, 
.form-control:active {
    background: #fff;
    box-shadow: 0 0 2px var(--text-primary);
    border-color: var(--text-primary);
}

.texture-outer {
    min-height: 1px;
}


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

.kat-page__side-to-side .primary-pane {
    overflow: hidden;
    top: 0;
    left: 0;
    bottom: 0;
    position: fixed;
    width: 61%;
    display: flex;
    flex-direction: column;
}
.kat-page__side-to-side .secondary-pane {
    position: static;
    right: 0;
    width: 39%;
    margin-left: auto;
}

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



/* ============================================
    SIDE TO SIDE => PRIMARY PANE
============================================ */
.kat-page__side-to-side .primary-pane .inner {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: absolute;
}
.kat-page__side-to-side .primary-pane .inner::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(var(--background-primary-rgb), .5) 0%, rgba(255, 255, 255, 0), rgba(var(--background-primary-rgb), .5) 90%);    
}
.kat-page__side-to-side .primary-pane .inner .details {    
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 11% 7%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 10px;
    z-index: 2;
}
.kat-page__side-to-side .primary-pane .inner .details h1 {
    padding: 0;
    margin-bottom: 10px;
    font-size: calc(var(--heading-size) + 24px);
    color: var(--text-primary);
    font-family: var(--heading-family);
    /* font-weight: 700; */
    /* text-transform: uppercase; */
}
.kat-page__side-to-side .primary-pane .inner .details p {
    font-size: calc(var(--body-text-size) + 5px);
    color: var(--text-secondary);
    font-family: var(--body-text-family);
    letter-spacing: 4px;
    margin-bottom: 5px;
    margin-left: 7.5px;
}
/* Highlight */
.kat-page__side-to-side .primary-pane .inner .highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-secondary);
}
.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;
}


/* ======================
    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: 120px 16px 240px; */
    transition: all 1.8s;
    transition-timing-function: cubic-bezier(.23,.56,.38,.78);
    -webkit-transition-timing-function: cubic-bezier(.23,.56,.38,.78);
    -moz-transition-timing-function: cubic-bezier(.23,.56,.38,.78);
    -o-transition-timing-function: cubic-bezier(.23,.56,.38,.78);
    display: flex;
    flex-direction: column;
    display: none;
}

#linear-top {
    background: linear-gradient(64deg, rgba(0,0,0,1) 2%, rgba(0,0,0,1) 7%, rgba(0,0,0,0.2861519607843137) 83%);
    width: 100%;
    background-size: cover;
    color: white;
    position: absolute;
    height: 100%;
    z-index: 1;
}

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

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

section.top-cover .inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.wrap-inner {
    padding: 24px;
}

section.top-cover .inner .details {
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

section.top-cover .inner .details .title-cover {
    font-size: calc(var(--heading-size) + var(--fs-extra-8) + var(--fs-extra-1));
    /* font-weight: 700; */
}

section.top-cover .inner .details .logo-wrap {
    width: 100%;
    display: flex;
    /* align-items: center;s */
    /* justify-content: center; */
    margin-bottom: 10px;
}
section.top-cover .inner .details .logo-wrap .logo {
    width: 100%;
    height: 100px;
}
section.top-cover .bottom-item{
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}
section.top-cover .bottom-item p {
    font-size: var(--body-text-size);
    color: var(--text-secondary);
    font-family: var(--body-text-family);
    margin-top: 10px;
    /* font-weight: 500; */
}
section.top-cover .bottom-item a.link {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
    border: none;
    font-style: normal;
    font-size: var(--body-text-size);
    font-family: var(--body-text-family);
    /* font-weight: 500; */
    text-decoration: none;
    display: inline-block;
    vertical-align: top;
    padding: 8px 24px;
    margin: 0px auto;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}
section.top-cover .bottom-item a.link:hover {
    background-color: rgba(var(--button-background-primary-rgb), .8);
    color: var(--button-text-primary);
}

/* Highlight */
section.top-cover .inner .highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-clr);
}
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;
}

/* ==============================
        Cover
============================== */
.cover-wrapper {
    min-height: var(--body-height);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cover-netflix {
    width: 100%;
    z-index: 1;
    position: absolute;
    height: -webkit-fill-available;
    mix-blend-mode: multiply;
}

.title-cover {
    color: var(--text-primary);
    font-size: 72px;
    font-family: var(--heading-family);
    /* font-weight: 700; */
    text-align: left;
    /* text-transform: uppercase; */
}

/* Cover inner */
.cover-wrapper .cover-inner {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* padding: 20px 0px; */
}
/* Cover Picture */
.cover-inner .cover-picture-wrap {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.cover-picture-wrap .cover-picture-slider {
    position: absolute;
    left: 0;
    top: 0;    
    width: 100%;
    height: 100%;
}
.cover-picture-slider .slick-list {
    width: 100%!important;
    height: 100%!important;
}
.cover-picture-slider .slick-track {
    width: 100%!important;
    height: 100%!important;
    position: relative!important;
}
.cover-picture-slider .cover-img-wrap {
    width: 100%!important;
    height: 100%!important;
    top: 0;
    left: 0;
    position: absolute!important;
}
.cover-picture-wrap .cover-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Cover Details */
.cover-inner .cover-details {
    /* min-height: var(--body-height); */
    /* text-align: center; */
    position: relative;
    z-index: 3;
    margin-top: auto;
    margin-bottom: 60px;
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
    /* padding: 28px 0 20px; */
}
.cover-details .top-text {
    font-size: var(--body-text-size);
    font-family: var(--body-text-family);
    /* font-weight: 500; */
    color: var(--text-secondary);
}
.cover-details .prime-title {
    font-family: var(--heading-family);
    font-size: calc(var(--heading-size));
    color: var(--text-secondary);
    /* font-weight: 700; */
}
.cover-details .cover-date {
    font-size: calc(var(--body-text-size) + 1px);
}
.cover-details .bottom-text {
    font-size: calc(var(--body-text-size));
}

/* Cover logo */
.cover-logo {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    margin-top: 10%;
}
.cover-logo .logo-wrap {
    width: 20%;
    max-width: 120px;
    height: auto;
}
.cover-logo .logo-wrap img {
    width: 100%;
}

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

    .cover-details .top-text {
    }
    .cover-details .prime-title {
    }

    .couple-details {
        /* padding: 100px !important; */
    }
}


/* ==============================
        Couple
============================== */
.couple-wrap {
    position: relative;
    overflow: hidden;
    /* padding-bottom: 20px; */
    /* box-shadow: 0px -1px 40px rgba(0, 0, 0, 0.2); */
}

.couple-wrap .couple .bg-bride-groom {
    background-image: var(--bg-couple-quote);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center right;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
}

.couple-wrap .couple {
    padding: 60px 0px 30px;
}

/* Couple Head */
.couple-head {
    text-align: center;
    /* max-width: 350px; */
    margin: 0 auto;
}
.couple .logo-wrap {
    width: 100%;
    margin-bottom: 16px; 
}

.couple .couple-header {
    width: 90px;   
}
/* .couple-head .garis_horizontal{
    position: relative;
    border-bottom: 2px solid var(--background-secondary);
    border-top:  2px solid var(--background-secondary);
} */

.garis_horizontal {
    justify-content: center;
    display: flex;
}
.couple-head {
    font-size: var(--heading-size);
    font-family: var(--heading-family);
    color: var(--background-secondary);
}
.couple-head .couple-description {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    font-weight: 400;
    color: var(--text-secondary);
    margin: 14px 0;
    width: 100%;
    max-width: 360px;
}

/* Couple Title */
.couple-head .couple-title {
    font-size: var(--heading-size);
    color: var(--text-primary);
    text-align: center;
    /* text-transform: uppercase; */
    /* font-weight: 700; */
    font-family: var(--heading-family);
}

/* Couple Body */
.couple-body {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    padding: 15px;
    /* margin-top: 60px; */
}
.couple-body.bride-first {
    flex-direction: column-reverse;
}
.couple-body .couple-info {
    position: relative;
    margin: 12px;
}

/* Couple Preview */
.couple-info .couple-preview-wrap {
    position: relative;
    /* padding-top: 50px; */
}

/* Couple Image */
.couple-preview-wrap .couple-preview {  
    width: auto;
    height: auto;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
    display: flex;
}
.couple-preview .img-wrap {
    position: relative;
    display: flex;
    width: 100%;
    height: 37rem;
    border-radius: 40px 40px 0px 0px;
    margin: 10px auto;
    overflow: hidden;
    background-color: var(--background-secondary);
    /* padding: 4px; */
}
.couple-preview .img {
    display: flex;
    width: 100%;
    height: 100%;
    /* border-radius: 45%; */
    object-fit: cover;
    object-position: center;

}

/* Couple Details */
.couple-details {
    padding: 0 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    bottom: 0;
    width: 100%;
}
.couple-details.previewed {
    position: absolute;
}
.couple-details .couple-parents {
    color: var(--text-secondary);
    text-align: center;
    font-size: var(--body-text-size);
    font-family: var(--body-text-family);
    font-weight: 400;
}
.couple-details .couple-name {
    color: var(--text-secondary);
    font-family: var(--heading-family);
    font-size: var(--heading-size);
    /* font-weight: 700; */
    padding: 0px 10px;
}

.couple-details .couple-bio {
    color: var(--text-secondary);
}

.couple-link-wrap {
    position: relative;
}
.couple-link {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size) ;
    text-decoration: none;
    display: inline-block;
    vertical-align: top;
    transition: all 0.25s ease-in-out;
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
    border-radius: 10px;
    padding: 8px 16px;
    /* font-weight: 500; */
}
.couple-link > i {
    font-size: var(--body-text-size);
    display: inline-block;
    vertical-align: middle;
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
    padding: 2px;
    border-radius: 4px;
    margin-top: -2px;
    margin-right: 3px;
}
.couple-link:hover {
    background-color: rgba(var(--button-background-primary-rgb), .8);
    color: var(--button-text-primary);
}

#couple-gradient {
    background: linear-gradient(
        0deg, 
        rgba(var(--background-primary-rgb),1) 0%, 
        rgba(var(--background-primary-rgb),0.9164040616246498) 40%, 
        rgba(var(--background-primary-rgb),0) 70%
    );
    width: 100%;
    background-size: cover;
    color: var(--text-secondary);
    position: absolute;
    height: 50%;
    bottom: 0;
    z-index: 0;
}

/* Separator */
.separator-wrap {
    position: relative;
}
.separator-wrap .separator {
    display: flex;
}
.separator-wrap .couple-separator {
    font-family: var(--body-text-family);
    font-style: normal;
    font-weight: 400;
    font-size: 200px;
    line-height: 0.9;
    margin: auto;
    color: rgba(var(--text-tertiary-rgb), .1);
    padding: 5% 0%;
}

@media only screen and (min-width: 1440px){
    .couple-head {
        text-align: center;
        /* max-width: 360px; */
        margin: 0 auto;
    }
    .couple-body {
        padding: 50px;
    }
    .couple-preview .img-wrap {
        height: 45rem;
    }
    .couple-head .couple-description {
        max-width: 500px;
    }
    .stories-wrap .story-item {
        padding: 20px 80px 0 80px!important;
    }

    .agenda-head .agenda-description {
        max-width: 500px !important;
    }

    .event-details, .activity-details {
        max-width: 430px !important;
    }
    .video-gallery .inner .video-outer .video .preview {
        width: 100%;
        height: 340px;
        display: block;
        margin: 0 auto;
        overflow: hidden;
        position: relative;
    }

    .video-gallery .inner .video-outer {
        padding: 0;
    }

    .live-streaming > .inner > .body {
        padding: 40px !important;
    }
    
    .wedding-gift-body {
        padding: 40px !important;
    }

    .wedding-wish-body {
        padding: 40px !important;
    }
}

@media only screen and (min-width: 1280px){
    .couple-head {
        text-align: center;
        /* max-width: 360px; */
        margin: 0 auto;
    }
    .couple-body {
        padding: 50px;
    }
    .couple-preview .img-wrap {
        height: 45rem;
    }
    .couple-head .couple-description {
        max-width: 500px;
    }
    .stories-wrap .story-item {
        padding: 20px 80px 0 80px!important;
    }

    .agenda-head .agenda-description {
        max-width: 500px !important;
    }

    .event-details, .activity-details {
        max-width: 430px !important;
    }
    .video-gallery .inner .video-outer .video .preview {
        width: 100%;
        height: 340px;
        display: block;
        margin: 0 auto;
        overflow: hidden;
        position: relative;
    }

    .video-gallery .inner .video-outer {
        padding: 0;
    }

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

    .live-streaming > .inner > .body {
        padding: 40px !important;
    }
    
    .wedding-gift-body {
        padding: 40px !important;
    }

    .wedding-wish-body {
        padding: 40px !important;
    }

    .wedding-gift-inner {
        padding: 30px 0 40px;
    }

    .wedding-gift-head {
        padding: 45px !important;
        text-align: center;
    }
}

@media only screen and (min-width: 600px){
    .couple-head {
        text-align: center;
        /* max-width: 360px; */
        margin: 0 auto;
    }
    .couple-details {
    }
    .couple-body {
        padding: 50px;
    }
    .couple-preview .img-wrap {
        height: 45rem;
    }
    .couple-head .couple-description {
        max-width: 500px;
    }
    .stories-wrap .story-item {
        padding: 20px 80px 0 80px!important;
    }

    .agenda-head .agenda-description {
        max-width: 500px !important;
    }

    .event-details, .activity-details {
        max-width: 430px !important;
    }
    .video-gallery .inner .video-outer .video .preview {
        width: 100%;
        height: 340px;
        display: block;
        margin: 0 auto;
        overflow: hidden;
        position: relative;
    }

    .video-gallery .inner .video-outer {
        padding: 0;
    }

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

    .live-streaming > .inner > .body {
        padding: 0px 60px 0px 60px !important;
    }
    
    .wedding-gift-body {
        padding: 40px !important;
    }

    .wedding-wish-body {
        padding: 40px !important;
    }

    .wedding-gift-inner {
        padding: 30px 0 40px;
    }

    .wedding-gift-head {
        padding: 45px !important;
        text-align: center;
    }

    .wedding-wish-head .wedding-wish-description {
    }

    .comment-head .comment-date {
    }

    .photo-body {
        padding: 0 70px !important;
    }
}

@media (min-width: 1024px) {
    .couple-head .couple-description {
        width: 80%;
    }
    .couple-body {
        padding: 20px;
    }
    .stories-wrap .story-item {
        padding: 20px 45px 0 45px !important;
    }
}

@media only screen and (min-width: 350px) {
    .rsvp-head .rsvp-title {
        font-size: calc(var(--heading-size)) !important;
    }
}

/* ==============================
        Our Story 
============================== */
/* .our-story-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}
.our-story-title{
    font-size: var(--heading-size);
    color: var(--text-primary);
    text-align: left;
    font-weight: 700;
    margin-left: 20px;
    text-transform: uppercase;
    font-family: var(--heading-family);
}

.our-story-list {
    margin: 20px;
}

.our-story-group {
    margin: 10px;
    justify-content: center;
}

.our-story-flex {
    display: flex;
    margin-bottom: 10px;
}

.our-story-image {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    object-fit: cover;
}

.our-story-head-description {
    margin-left: 48px;
    margin-bottom: 10px;
}

.our-story-description {
    margin-left: 48px;
}

.our-story-number {
    font-size: var(--heading-size);
    color: #fff;
    margin-right: 18px;
} */

/* ==============================
        Love Story
============================== */
.love-story-wrap {
    position: relative;
    overflow: hidden;
}

/* .love-story-wrap::before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px 30px 0px 0px;
    background: rgba( var(--text-primary-rgb) , .65 );
} */

/* Helicopter */
.love-story-wrap .helicopter-wrap {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 370px;
    pointer-events: none;
}
.love-story-wrap .helicopter-wrap .helicopter {
    position: absolute;
    bottom: -20px;
    right: -140px;
    width: 200%;
    height: 370px;
    transform: scaleX(-1) rotate(-6deg);
    background-image: var(--helicopter-mini);
    background-position: 0 0;
    background-size: auto 100%;
    background-repeat: no-repeat;
}

/* Inner */
.love-story-wrap .story-inner {
    position: relative;
    z-index: 3;
    padding: 20px 0;
    /* margin-top: 30px; */
    margin-bottom: 50px;
}

/* Story Head */
.story-inner .story-head {
    position: relative;
    text-align: left;
}
.story-head .story-title {
    padding: 20px;
    font-size: var(--heading-size);
    color: var(--text-primary);
    font-family: var(--heading-family);
    /* font-weight: 700; */
}

.story-number-wrap .story-number {
    font-size: var(--heading-size);
    color: var(--text-secondary);
    padding-right: 20px;
}

/* Story Body */
.story-inner .story-body {
    position: relative;
}

/* Stories Wrap */
.story-body .stories-wrap {
    width: 100%;
    margin: 0 auto;
}

/* Story Item */
.stories-wrap .story-item {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    position: relative;
    display: flex;
}

/* Story Content */
.story-item .story-content {
    background-color: transparent;
    position: relative;
    width: 100%;
    /* max-width: 460px; */
    margin: 0 auto;
    background-color: var(--quaternary-clr);
    box-shadow: 0px 4px 25px 0px rgb(0 0 0 / 10%);
}

.story-content .story-preview {
    position: relative;
    display: flex;
}
.story-content .story-preview > a {
    display: inline-block;
    vertical-align: top;
}
.story-content .story-preview > a > img {
    width: 100%;
    /* min-height: 150px; */
    /* height: auto; */
    border-radius: 20px;
    display: block;
    object-fit: cover;
    object-position: center;
}

.story-content .story-details {
    width: 100%;    
    padding: 20px 10px;
}
.story-details .story-details-title {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size));
    margin-bottom: 0.5em;
    /* font-weight: 500; */
    color: var(--text-secondary);
}
.story-details .story-details-caption {
    /* font-weight: 500; */
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    color: var(--text-secondary);
}

/* Stories Nav */
.story-body .stories-nav {
    width: 100%;
    max-width: 42.5px;
    margin: 0 auto;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}
.stories-nav .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: scale(.86);
    transform-origin: center;
    display: block;
    margin: 2.5px;
    background: var(--light-clr);
}
.stories-nav .slick-slide.slick-current.slick-active.slick-center .dot {
    transform: scale(1);
}


/* ==============================
        Save The Date
============================== */
.save-date-wrap {
    /* min-height: 760px; */
    max-height: fit-content;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}
.save-date {
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
/* Save Date Head */
.save-date-head {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.save-date-head .save-date-title {
    font-size: var(--heading-size);
    color: var(--text-primary);
    font-family: var(--heading-family);
    /* font-weight: 700; */
    text-align: center;
    /* text-transform: uppercase; */
}
.save-date-head .save-date-description {
    font-size: var(--body-text-size);
    color: var(--text-secondary);
    font-family: var(--body-text-family);
    /* font-weight: 500; */
}
/* Save Body */
.save-body{
    margin: 32px;
    position: relative;
    justify-content: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.save-body .countdown-body .top-text{
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size) + 4px);
    font-style: normal;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.3;
    /* text-transform: uppercase; */
    letter-spacing: 8px;
    margin-top: 30px;
}
/* Save Date Body */
.save-date-body {
    position: relative;
    margin-top: 20px;
}
/* countdown-body */
.save-body .countdown-body{
    text-align: center;
}
/* Countdown */
.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.countdown .day-hour{
   margin: 24px;
}
.countdown .count-item {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    width: 120px;
    padding: 16px;
    justify-content: center;
    border-radius: 8px;
}
.save-date-body:nth-child(odd) .countdown .count-item:nth-child(odd) {
    background-color: var(--background-secondary);
}
.save-date-body:nth-child(odd) .countdown .count-item:nth-child(even) {
    background-color: var(--background-tertiary);
}
.save-date-body:nth-child(even) .countdown .count-item:nth-child(odd) {
    background-color: var(--background-tertiary);
}
.save-date-body:nth-child(even) .countdown .count-item:nth-child(even) {
    background-color: var(--background-secondary);
}
.countdown .count-item.blue {
    background: linear-gradient(135deg, #0970E7 0%, #4C96ED 100%);
}
.countdown .count-item.yellow {
    background: linear-gradient(135deg, #E5B106 0%, #FBDF8B 100%);
}
.countdown .count-item.red {
    background: linear-gradient(135deg, #E60815 0%, #EF7A81 100%);
}
.countdown .count-item.green {
    background: linear-gradient(135deg, #083B4E 0%, #588C9B 100%);
}
.count-item .count-num {
    font-family: var(--heading-family);
    font-size: var(--heading-size);
    color: var(--text-secondary);
    font-style: normal;
    font-weight: var(--heading-weight);
}
.count-item .count-text {
    color: var(--text-secondary);
    font-size: var(--body-text-size);
    font-family: var(--body-text-family);
    /* font-weight: 500; */
    line-height: 1.3;
}

/* Add To Calendar */
.add-to-calendar-wrap {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    /* padding: 30px 0px; */
}
.add-to-calendar {
    padding: 12px 20px;
    margin: 0px auto;
    border-radius: 4px;
    /* min-width: 220px; */
    display: inline-block;
    vertical-align: top;
    text-align: center;
    text-decoration: none;
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
    border: 1px solid transparent;
    transition: all 0.25s ease-in-out;
}
.add-to-calendar:hover {
    background-color: rgba(var(--button-background-primary-rgb), .8);
    color: var(--button-text-primary);
}

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


/* ==============================
        Modal
============================== */
.modal-content .mde1 {
    border-bottom: 2px solid rgba(var(--background-tertiary-rgb), .5);
}
.modal-content .modal-caption {
    color: var(--text-primary);
    color: var(--text-clr);
}
.modal-content .btn {
    background-color: rgba(var(--text-rgb), .05);
    font-family: var(--eb-garamond);
    font-size: var(--body-text-size);
    color: var(--text-clr);
}
.modal-content .btn:hover {
    background-color: rgba(var(--text-rgb), .1);
}
.modal-content .btn-wood {
    background-color: var(--text-primary);
    color: var(--text-secondary);
}
.modal-content .btn-wood:hover {
    background-color: rgba(var(--background-tertiary-rgb), .5);
}

/* ==============================
        Agenda
============================== */
.agenda-wrap {
    position: relative;
    overflow: hidden;
    /* background-color: rgba(var(--dark-rgb), .3); */
    border-radius: 0 0 40px 40px;
}
/* .agenda-wrap::before{
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20px;
    width: 100%;
    height: 100%;
    background-image: var(--bg-agenda);
    background-position: center;
    pointer-events: none;
    background-size: cover;
} */
.agenda-inner {
    padding: 0px;
    position: relative;
    background-color: transparent;
    border-radius: 25px;
}
.agenda-inner .bg-agenda {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-image: var(--bg-event);
    background-position: 60% 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}
.agenda-head {      
    width: 100%;
    position: relative;
    border-radius: 30px;
    text-align: center;
    margin: 0 auto 0px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}
.agenda-head .agenda-title {
    /* font-weight: 700; */
    font-size: var(--heading-size);
    font-family: var(--heading-family);
    color: var(--text-primary);
    /* text-transform: uppercase; */
}
.agenda-head .agenda-description {
    font-family: var(--body-text-family);
    /* font-weight: 500; */
    font-size: var(--body-text-size);
    color: var(--text-secondary);
    padding: 10px;
    width: 100%;
    max-width: 360px;
}
.agenda-body {
    position: relative;
    padding: 0px 24px;
    z-index: 1;
}

/* Event */
.event-item {
    max-width: 500px;
    margin: 20px auto;
    position: relative;
    text-align: center;

}
.event-head {
    width: 100%;
    text-align: center;
    position: relative;
    display: inline-block;
    margin-bottom: 32px;
}
.event-head .event-date-head{
    text-align: center;
    vertical-align: top;
    align-items: center;
    border-radius: 25px;
    padding: 12px 24px 16px;
    background-color: #AA090E;
    border-radius: 20px 20px 0 0;
}
.event-head .event-day {
    font-family: var(--heading-family);
    font-size: var(--heading-size);
    color: var(--text-secondary);
    /* font-weight: 700; */
    /* text-transform: uppercase; */
}
.event-head .event-date {
    font-family: var(--heading-family);
    font-size: var(--heading-size);
    color: var(--text-secondary);
    font-weight: var(--heading-weight);
    /* text-transform: uppercase; */
}
.event-head .event-description {
    margin-top: 5px;
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size) );
    color: var(--text-secondary);
}

/* Activity */
.activity-wrap {
    
}
.activity-wrap.same-location {
    display: flex;
    flex-direction: column;
}
.activity-item {
    margin: 40px 0 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;  
}
/* .activity-item::before{
    z-index: -1;
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
    mix-blend-mode: overlay;
} */
.activity-head {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.activity-head .activity-icon {
    width: 70px;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
    margin: 0px auto;
}
.activity-head .activity-icon path {
    fill: var(--text-primary);
}

.activity-head img.activity-icon-image {
    width: 70px;
}

.activity-head > .hide {
    display: none;
}
.activity-head .activity-title {
    color: var(--text-secondary);
    font-family: var(--heading-family);
    font-size: var(--heading-size);
    /* font-weight: 700; */
}
.activity-head .activity-description {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    color: var(--text-secondary);
    /* font-weight: 500; */
}
.activity-head .activity-time {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    /* font-weight: 500; */
    color: var(--text-secondary);
    /* font-weight: 500; */
}

/* Agenda Details */
.event-details,
.activity-details {
    /* padding: 20px 0 12px; */
    text-align: center;
    max-width: 320px;
    margin: 32px auto;
}
.event-details .event-hall,
.activity-details .activity-time {
    color: var(--text-secondary);
    font-size: var(--body-text-size);
    font-family: var(--body-text-family);
    margin-bottom: 12px;
    /* font-weight: 400; */
}
.event-details .event-hall,
.activity-details .activity-hall {
    color: var(--text-secondary);
    font-size: var(--body-text-size);
    font-family: var(--body-text-family);
    margin-bottom: 4px;
    /* font-weight: 500; */
}
.event-details .event-address,
.activity-details .activity-address {
    font-family: var(--body-text-family);
    color: var(--text-secondary);
    font-size: var(--body-text-size);
    /* font-weight: 500; */
}
.event-details .event-city,
.activity-details .activity-city {
    font-family: var(--body-text-family);
    color: var(--text-secondary);
    font-size: calc(var(--body-text-size));
    padding: 0 8px;
}
.event-link-wrap,
.activity-link-wrap {
    margin-top: 32px;
    text-align: center;
}
.event-link,
.activity-link {    
    display: inline-block;
    vertical-align: top;
    padding: 12px 32px;
    border-radius: 4px;
    background-color: var(--button-background-secondary);
    border: none;
    color: var(--button-text-secondary);    
    font-family: var(--body-text-family);
    /* font-weight: 500; */
    font-size: var(--body-text-size);
    text-decoration: none;    
    transition: all 0.25s ease-in-out;
}
.event-link > i,
.activity-link > i {    
    font-size: 1.1em;
    margin-right: 5px;
}

.event-link:hover,
.activity-link:hover {
    background-color: rgba(var(--button-background-secondary-rgb), .8);
    color: var(--button-text-secondary);
}


@media only screen and (min-width: 1440px){
    .agenda-wrap {
        border-radius: 0 0 60px 60px;
    }
    .event-head .event-date-head{
        margin: 0 24px;
    }
    .agenda-wrap::before{
        content: '';
        position: absolute;
        left: 0;
        top: 22.5%;
        bottom: 20px;
        width: 100%;
        height: 100%;
        background-image: var(--bg-agenda);
        background-position: top;
        pointer-events: none;
        background-size: cover;
    }
}

/* ==============================
        RSVP
============================== */

.rsvp-wrap {
    position: relative;
    overflow: visible;
    /* padding: 20px 16px; */
    /* max-width: 360px; */
    margin: 60px 35px;
}
.rsvp-inner {
    padding: 0px 0px;
    position: relative;
    border-radius: 25px;
}

/* Head */
.rsvp-head {    
    text-align: center;
    background-color: var(--text-secondary);
    padding: 32px;
    border-radius: 20px 20px 0 0;
}
.rsvp-head .rsvp-title {
    font-size: calc(var(--heading-size));
    color: var(--text-primary);
    font-family: var(--heading-family);
}

.rsvp-body {
    padding: 0 20px;
    background-color: var(--background-secondary);
    padding: 40px 20px 32px;
    border-radius: 0 0 20px 20px;
}
/* RSVP Status */
.rsvp-status-wrap {
    margin: 0px auto 10px;
}
.rsvp-status-head {
    text-align: center;
}
.rsvp-status-head .rsvp-status-caption {
    color: var(--text-secondary);
    /* font-weight: 500; */
    font-family: var(--body-text-family);
}

/* RSVP Status Body */
.rsvp-status-body {
    margin-top: 5px;
}
.rsvp-status-wrap input[name="rsvp_status"] {
    display: none;
}
.rsvp-status-wrap input[name="rsvp_status"]:checked + .rsvp-confirm-btn.going {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
    cursor: not-allowed;
}
.rsvp-status-wrap input[name="rsvp_status"]:checked:hover + .rsvp-confirm-btn.going,
.rsvp-status-wrap input[name="rsvp_status"]:hover + .rsvp-confirm-btn.going {
    background-color: rgba(var(--button-background-primary-rgb), .8);
    color: var(--button-text-primary);
}
.rsvp-status-wrap input[name="rsvp_status"]:checked + .rsvp-confirm-btn.not-going {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
    cursor: not-allowed;
}
.rsvp-status-wrap input[name="rsvp_status"]:checked:hover + .rsvp-confirm-btn.not-going,
.rsvp-status-wrap input[name="rsvp_status"]:hover + .rsvp-confirm-btn.not-going {
    background-color: rgba(var(--button-background-primary-rgb), .8);
    color: var(--button-text-primary);
}

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

.rsvp-amount-head {    
    text-align: center;
}
.rsvp-amount-head .rsvp-amount-caption {
    color: var(--text-secondary);
    font-family: var(--body-text-family);
    /* font-weight: 500; */
    font-size: var(--body-text-size);
}
.rsvp-head .rsvp-info .info-date, .rsvp-head .rsvp-info .info-text{
    color: var(--background-secondary);
    font-family: var(--body-text-family);
}

.rsvp-amount-body {
    
}

/* Amount Controller */
.session-caption-wrap .caption{
    font-family: var(--body-text-family);
    /* font-weight: 500; */
}
.rsvp-amount-controller-wrap {
    margin-top: 16px;
}
.rsvp-amount-controller {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    gap: 4px;
}

.rsvp-amount-controller .toggle-btn {
    background-color: transparent;
    border: transparent;
    outline: none;
    height: 38px;
    width: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}
.rsvp-amount-controller .toggle-icon {
    width: 12px;
    height: 12px;
    display: block;
}
.rsvp-amount-controller .toggle-icon path {
    transition: all 0.25s ease-in-out;
    stroke: var(--button-text-secondary);
    stroke-width: 12px;
}

.rsvp-amount-controller .toggle-btn.plus {
    background-color: var(--button-background-primary);
}
.rsvp-amount-controller .toggle-btn.plus .toggle-icon path {
    stroke: var(--button-text-primary);
}
.rsvp-amount-controller .toggle-btn.plus:hover {
    background-color: rgba(var(--button-background-primary-rgb), .8);
}
.rsvp-amount-controller .toggle-btn.plus:hover .toggle-icon path {
    stroke: var(--button-text-primary);
}
.rsvp-amount-controller .toggle-btn.minus {
    border: 1px solid var(--button-text-secondary);
    fill: var(--button-text-secondary);
}
.rsvp-amount-controller .toggle-btn.minus:hover {
    background-color: var(--button-background-primary);
}
.rsvp-amount-controller .toggle-btn.minus:hover .toggle-icon path {
    stroke: var(--button-text-primary);
}

.rsvp-amount-controller .input-wrap {
    flex-grow: 1;
}

.form-control.group-guest,
.rsvp-plus-wrapper .form-control,
.rsvp-amount-controller .input-control {
    width: 100%;
    height: 36px;
    outline: none;
    background-color: var(--text-secondary);
    text-align: center;
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size));
    /* font-weight: 500; */
    color: var(--text-primary);
    border: 1px solid var(--text-secondary);
    border-radius: 4px;
}
.rsvp-amount-controller .input-control {
    pointer-events: none;
}

/* RSVP Confirm */
.rsvp-confirm-wrap {
    text-align: center;
    margin-top: 16px;
}

.rsvp-confirm-wrap > label {
    display: block;
    text-align: center;
}
.rsvp-confirm-btn {
    width: 100%;
    display: inline-block;
    padding: 6px 16px;
    margin: 4px auto;
    border-radius: 12px;
    line-height: 24px;
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    /* font-weight: 500; */
    background-color: var(--button-background-secondary);
    color: var(--button-text-secondary);
    border: 1px solid 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 {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--button-background-secondary);
    color: var(--button-text-secondary);
    border: 1px solid var(--button-text-secondary);
    border-radius: 6px;
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    /* font-weight: 500; */
    width: 100%;
    height: 100%;
}

.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-primary);
    color: var(--button-text-primary);
    border: 1px solid transparent;
}

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

.rsvp-confirm-btn.confirm {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
    /* font-weight: 500; */
    font-size: var(--body-text-size);
    font-family: var(--body-text-family);
    border-radius: 4px;
    padding: 10px;
}
.rsvp-confirm-btn.confirm:hover {
    background-color: rgba(var(--button-background-primary-rgb), .8);
    color: var(--button-text-primary);
}

.rsvp-confirm-btn.download {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
    max-width: 280px;
    border-radius: 4px;
    padding: 8px;
}
.rsvp-confirm-btn.download:hover {
    background-color: rgba(var(--button-background-primary-rgb), .8);
    color: var(--button-text-primary);
}

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


/* QR Card */
.rsvp-qrcard-wrap {
    padding: 10px 0;
    /* margin-bottom: 40px; */
}
.rsvp-qrcard-img-wrap {
    margin-bottom: 30px;
}
.rsvp-qrcard-img {
    display: block;
    width: 100%;
    max-width: 240px;
    border-radius: 10px;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

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

/* RSVP Message */
.rsvp-message-wrap {
    position: relative;
    margin-top: 30px;
}
.rsvp-message-content {
    background-color: transparent;
    border-radius: 5px;
    padding: 10px 0;
    text-align: center;
}
.rsvp-message-wrap .rsvp-message-icon {
    width: 27px;
    height: auto;
    margin: 0 auto 20px;
    display: none;
}
.rsvp-message-wrap .rsvp-message-icon path {
    fill: var(--light-clr);
}
.rsvp-message-wrap .rsvp-message-title {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size) + 0px);
    color: var(--text-secondary);
    /* font-weight: 500; */
    margin-bottom: 5px;
}
.rsvp-message-wrap .rsvp-message-caption {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size));
    color: var(--text-secondary);
}

/* RSVP Change */
.rsvp-change-wrap {
    margin-top: 0px;
}

@media only screen and (min-width: 1440px){
    .rsvp-wrap {
        /* max-width: 420px; */
        margin: 60px 50px;
    }
}

/* ======================
    GIFT
====================== */
section.gift {
    padding: 0 32px 60px;
    position: relative;
    overflow: hidden;
    background-color: var(--background-primary);
}
section.gift .gift-title{
    font-family: var(--body-text-family);
    margin-bottom: 4px;
    padding: 0;
    text-align: left;
}
section.gift .gift-title h1 {
    margin-bottom: 0;
    font-size: calc(var(--heading-size) - 2px);
    color: var(--text-primary);
    font-family: var(--body-text-family);
    /* font-weight: 700; */
    line-height: 52px;
    /* background: deeppink; */
    border-left: 5px solid var(--background-secondary);
    padding: 0 16px;
    /* text-transform: uppercase; */
}
section.gift .gift-inner {
    background: transparent;
    position: relative;
    padding-left: 24px;
}
section.gift .gift-inner .gift-details{
    text-align: left;
}
section.gift .gift-inner p {
    font-size: calc(var(--body-text-size));
    font-family: var(--body-text-family);
    /* margin-top: 15px; */
    color: var(--text-secondary);
    font-weight: 400;
    font-style: normal;
    margin-bottom: 0;
    line-height: 1.2;
    /* padding: 0 75px; */
}
section.gift .gift-inner .gift-details .bank-detail p {
    font-size: calc(var(--body-text-size) + 2px);
    font-family: var(--body-text-family);
    color: var(--text-secondary);
    /* font-weight: 500; */
    font-style: normal;
    /* letter-spacing: 0.8px; */
    line-height: 1.2;
    margin-top: 12px;
}
section.gift .gift-inner .gift-details .btn{
    padding: 0;
}
section.gift .gift-inner .gift-details button {
    margin-top: 0px;
    display: inline-flex;
    vertical-align: top;
    align-items: center;
    margin: 16px auto;
    border-radius: 6px;
    padding: 10px 28px;
    cursor: pointer;
    border: none;
    outline: none;
    background-color: var(--background-secondary);
    color: var(--text-secondary);
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.25s ease-in-out;
    justify-content: center;
}
section.gift .gift-inner .gift-details button:hover{
    background-color: var(--background-tertiary);
    color: var(--text-primary);
}

@media only screen and (min-width: 1440px){
    section.gift .gift-title h1 {
        padding: 0 20px;
    }
    section.gift .gift-inner {
        padding-left: 6px;
    }
}


/* ==============================
        Photo
============================== */
.photo-wrap {
    background-color: transparent;
    position: relative;
    overflow: hidden;
    /* background-image: var(--bg-galeri); */
    background: linear-gradient(270deg, var(--background-tertiary) 60%, var(--background-secondary) 60%);
    /* background: 
        linear-gradient(270deg, 
        var(--background-tertiary-rgb) 60%, 
        var(--background-secondary-rgb) 60%
    ); */
    background-size: cover;

}

.photo-inner {
    padding: 40px 0px;
    position: relative;
}

.photo-head {
    text-align: left;
    padding: 0px 24px 60px;
    position: relative;
}
.photo-head .photo-title {
    font-family: var(--heading-family);
    color: var(--text-secondary);
    font-size: var(--heading-size);
    /* font-weight: 700; */
    /* text-transform: uppercase; */
}
.photo-head .photo-description {
    font-size: calc(var(--body-text-size) + 0px);
    color: var(--text-secondary);
}

.photo-body {
    padding: 0px 24px;
    position: relative;
    display: flex;
    justify-content: center;
}
.photo-box {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.photo-box .photo-item {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    flex-grow: 1;
    background-color: var(--dark-clr);
    box-shadow: 0px 2px 50px rgba(0, 0, 0, 0.4);
}
.photo-box .photo-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 10px solid var(--dark-clr);
}

.photo-wrap + .video-wrap {
    margin-top: 120px;
}
@media only screen and (min-width: 1440px) {
    .photo-inner .photo-head {
        padding: 0px 80px 60px;
    }
}

section.video-gallery {
    padding: 40px 24px;
}

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

.video-gallery .inner .title .video-head {
    font-family: var(--heading-family);
    color: var(--text-secondary);
    font-size: var(--heading-size) !important;
    text-align: left;
    margin-bottom: 0px;
    /* font-weight: 700; */
    /* text-transform: uppercase; */
}

.video-gallery .inner .title .video-description {
    text-align: left;
    font-family: var(--body-text-family) !important;
    font-size: var(--body-text-size);
    /* font-weight: 500; */
    margin-bottom: 10px;
}

.video-gallery .inner .video-outer .video-preview {
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border: 5px solid #000;
}

.video-gallery .inner .video-outer .video > .title .video-title {
    color: var(--text-secondary);
    text-align: center;
    font-size: var(--body-text-size);
    font-family: var(--body-text-family);
    /* font-weight: 500; */
}

/* ==============================
        Live Streaming
============================== */
.live-streaming {
}
.live-streaming > .inner > .head > .live-head {
    font-size: var(--heading-size) !important;
    font-family: var(--heading-family);
    color: var(--text-primary);
    font-weight: var(--heading-weight);
    /* text-transform: uppercase; */
}

.live-streaming > .inner > .head > .live-description {
    font-size: var(--body-text-size);
    font-style: normal;
    margin-top: 0.25em;
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
}

.live-preview {
    border-radius: 20px;
}

.play-button {
    width: 37%;
    border: none;
    padding: 15px;
    color: var(--button-text-secondary);
    font-size: var(--body-text-size);
    cursor: pointer;
    border-radius: 4px;
    margin-top: 20px;
    font-family: var(--body-text-family);
    transition: all 0.4s ease-in-out;
    /* font-weight: 500; */
    background-color: var(--button-background-secondary);
}

.play-button:hover {
    background-color: rgba(var(--button-background-secondary-rgb), .8);
    color: var(--button-text-secondary);
}

.live-streaming .inner .body > .streaming-info > div.link > a {

}

/* ==============================
        Instagram Filter
============================== */

.ig-filter {
    padding: 0;
}

.ig-filter-head .ig-filter-title {
    font-family: var(--heading-family);
    font-size: var(--heading-size);
    color: var(--text-primary);
    /* text-transform: uppercase; */
}

.ig-filter-head .ig-filter-caption {
    font-size: var(--body-text-size);
    margin-top: 0.25em !important;
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
}

.ig-filter-img {
    border-radius: 0px;
}

.ig-filter-link {
    width: 37%;
    border: none;
    padding: 15px;
    color: var(--button-text-secondary);
    font-size: var(--body-text-size);
    cursor: pointer;
    border-radius: 4px;
    font-family: var(--body-text-family);
    transition: all 0.4s ease-in-out;
    /* font-weight: 500; */
    background-color: var(--button-background-secondary);
}

.ig-filter-link:hover {
    background-color: rgba(var(--button-background-secondary-rgb), .8);
    color: var(--button-text-secondary);
}
.ig-filter-link-wrap {
    padding: 10px;
    margin-bottom: 20px;
}

/* ==============================
        Protocol
============================== */
.protocol.protocol-01 .inner .head p,
.protocol.protocol-03 .inner .head p {
    font-size: var(--body-text-size);
}
.protocol.protocol-01 .inner .head h1,
.protocol.protocol-03 .inner .head h1 {
    font-size: var(--heading-size);
    text-transform: var(--heading-lettercase);
}

.protocol.protocol-03 .inner .body .slider .content .text-01 {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    color: var(--text-secondary);
}

.protocol.protocol-03 .inner .body .slider_dots .slider_navigator {
    background-color: var(--button-background-primary);
}
.protocol.protocol-03 .inner .body .slider_dots::before {
    border: 2px solid var(--button-text-primary);
}
.protocol.protocol-03 .inner .body .slider_dots .slider_navigator.slick-current.slick-center {
    background-color: var(--button-text-primary);
}

section.protocol-04 {
    background-color: var(--background-primary);
}
.protocol-title {
    font-weight: 700 !important;
    font-size: var(--heading-size);
    font-family: var(--heading-family);
    color: var(--text-primary);
    /* text-transform: uppercase; */
}

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

section.protocol-04 .protocol-item-wrap .protocol-item .text-wrap .text {
    color: var(--text-secondary);
    font-size: var(--body-text-size);
    font-family: var(--body-text-family);
    /* font-weight: 500; */
    line-height: 1.3;
}

section.protocol-04 .protocol-item-wrap .protocol-item {
    height: 160px;
    border: none;
}

.color-0 {
    background: linear-gradient(135deg, #0970E7 0%, #4C96ED 100%);
}

.color-1 {
    background: linear-gradient(135deg, #E5B106 0%, #FBDF8B 100%);
}
.color-2 {
    background: linear-gradient(135deg, #E60815 0%, #EF7A81 100%);
}
.color-3 {
    background: linear-gradient(135deg, #083B4E 0%, #588C9B 100%);
}

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

/* ==============================
        Wedding Gift
============================== */
.wedding-gift-wrap {
    position: relative;
    overflow: hidden;
    background-color: var(--background-primary);
}
.wedding-gift-inner {
    padding: 30px 0 40px;
}

/* Head */
.wedding-gift-head {
    padding: 20px;
    text-align: center;
}
.wedding-gift-head .wedding-gift-title {
    margin-bottom: 0.25em;
    font-size: var(--heading-size);
    font-family: var(--heading-family);
    color: var(--text-primary);
    /* text-transform: uppercase; */
}
.wedding-gift-head .wedding-gift-description {
    color: var(--text-secondary);
    text-align: center;
    font-size: var(--body-text-size);
    font-family: var(--body-text-family);
    /* font-weight: 500; */
}

/* Body */
.wedding-gift-body {
    padding: 20px;
    position: relative;
    z-index: 1;
}
.wedding-gift-form {
    position: relative;
    border-radius: 10px;
    background-color: var(--background-secondary);
}
.wedding-gift-form::before {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75%;
    border-radius: 10px;
    box-shadow: var(--shadow-01);
}

/* Wedding Gift Form */
#weddingGiftForm {
    width: 100%;
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}
#weddingGiftForm .wedding-gift-slide {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: auto;
    width: 100%;
    transition: all 0.4s ease-in-out;
}

/* Details */
.wedding-gift-details {
    padding: 20px;
}

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

.wedding-gift-select-bank-wrap .selectize-control.form-control {
    padding: 0;
}
.wedding-gift-select-bank-wrap .selectize-control.form-control:focus,
.wedding-gift-select-bank-wrap .selectize-control.form-control:active {
    background-color: transparent;
    box-shadow: none;
    border: none;
}

.wedding-gift-select-bank-wrap .selectize-control.form-control .selectize-input {
    background: #fff!important;
}
.wedding-gift-select-bank-wrap .selectize-control.form-control .selectize-input::after {
    border-top-color: var(--text-primary);
}
.wedding-gift-select-bank-wrap .selectize-control.form-control .select-bank__title {
    color: var(--text-primary);
    font-family: var(--body-text-family);
}

.wedding-gift-select-bank-wrap .selectize-dropdown.form-control {
    padding: 0;
    box-shadow: none;
    overflow: hidden;
}
.wedding-gift-select-bank-wrap .selectize-dropdown.form-control .select-bank__title {
    color: var(--text-primary);
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
}
.wedding-gift-select-bank-wrap .selectize-dropdown.form-control .select-bank__credential {
    color: var(--text-primary);
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size) - 3px);
}
.wedding-gift-select-bank-wrap .selectize-dropdown.form-control .item:hover {
    background-color: var(--background-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(--text-secondary);
}

/* Bank */
.wedding-gift-bank-wrap {
    background-color: var(--text-secondary);
    padding: 10px 0;
    border-radius: 5px;
}
.wedding-gift-bank-wrap .bank-item {
    padding: 10px;
    align-items: flex-start;
    display: none;
}
.wedding-gift-bank-wrap .bank-item.show {
    display: flex;
}
/* Bank Detail */
.wedding-gift-bank-wrap .bank-detail { 
    padding: 10px;
    flex-grow: 1;
}
.wedding-gift-bank-wrap .bank-name {
    font-size: var(--body-text-size);
    font-family: var(--body-text-family);
}
.wedding-gift-bank-wrap .bank-detail > div {
    margin-top: 0.75em;
}

.wedding-gift-bank-wrap .bank-account-number-label,
.wedding-gift-bank-wrap .bank-account-name-label {
    font-size: calc(var(--body-text-size) - 2px);
    font-family: var(--body-text-family);
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.25em;
}
.wedding-gift-bank-wrap .bank-account-number {
    font-size: var(--body-text-size);
    font-family: var(--body-text-family);
    color: var(--button-text-primary);
    cursor: pointer;
    display: inline-block;
    word-break: break-all;
}
.wedding-gift-bank-wrap .bank-account-number > i {
    font-size: 0.7em;
    margin-left: 0.4em;
}

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

/* Bank Img Wrap */
.wedding-gift-bank-wrap .bank-img-wrap {
    padding: 10px;
    display: flex;
}
.wedding-gift-bank-wrap .bank-img-link {
    display: inline-block;
    vertical-align: top;
    margin: auto;
}
.wedding-gift-bank-wrap .bank-img {
    width: 110px;
    height: 110px;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Sender Data */
.wedding-gift-sender-data-wrap {
    padding: 20px 0;
    margin-top: 30px;
}
.wedding-gift-sender-data-wrap label {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    padding-left: 20px;
    display: block;
    color: var(--text-secondary);
}
.wedding-gift-sender-data-wrap .form-group {
    margin-top: 1.25em;
    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(--text-secondary);
    border: none;
    border-radius: 5px;
    padding: 15px;
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    color: var(--text-primary);
}
.wedding-gift-sender-data-wrap .form-control:focus {
    border: none;
    box-shadow: none;
}

/* Wedding Gift Page */
.wedding-gift-page-wrap {
    padding: 20px 0;
    display: flex;
    justify-content: center;
}
.wedding-gift-page {
    font-size: calc(var(--body-text-size));
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
    border: none;
    padding: 14px 25px;
    border-radius: 4px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}
.wedding-gift-page:hover {
    background-color: rgba(var(--button-background-primary-rgb), .8);
    color: var(--button-text-primary);
}

.wedding-gift-page > i {
    font-size: 0.7em;
    margin-left: 5px;
}

/* Wedding Gift Back Page */
.wedding-gift-back-page-wrap {    
    padding: 20px 0;
}
.wedding-gift-back-page {
    background-color: transparent;
    border: none;
    outline: none;
    color: rgb(0 0 0 / 50%);
    font-size: 28px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}
.wedding-gift-back-page:hover {
    color: rgb(0 0 0 / 75%);
}

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

.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);
}
.wgu-description p {
    font-family: var(--body-text-family);
}

/* 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(--light-clr);
}
.wgs-head .wgs-spark .stroke {
    stroke: var(--light-clr);
}
.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(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.wgs-icon-wrap.circle {    
    border-radius: 50%;
}
.wgs-icon {
    display: block;
    width: 60px;
    height: auto;
}
.wgs-icon .fill {
    fill: var(--text-primary);
}

.wgs-body {
    padding: 10px 0;
    text-align: center;
}
.wgs-body .wgs-title {
    margin-bottom: 0.25em;
    color: var(--text-secondary);
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size) + 5px);
}
.wgs-description {
    color: rgb(0 0 0 / 50%);
}
/* ==============================
        Wedding Wish
============================== */
.wedding-wish-wrap {
    position: relative;
    /* overflow: hidden; */
    background-color: var(--background-primary);
}
.wedding-wish-wrap.hide {
    display: none;
}

.wedding-wish-wrap .wedding-wish-inner {
    padding: 30px 0 40px;
}

/* head */
.wedding-wish-inner .wedding-wish-head {
    padding: 20px;
    text-align: center;
}
.wedding-wish-head .wedding-wish-title {
    margin-bottom: 0.25em;
    font-size: var(--heading-size);
    font-family: var(--heading-family);
    color: var(--text-primary);
}
.wedding-wish-head .wedding-wish-description {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    color: var(--text-secondary);
}

/* Body */
.wedding-wish-body {
    
}

/* Form */
.wedding-wish-form {
    padding: 0px 20px 4px;
}

.wedding-wish-form .hide {
    display: none;
}
.wedding-wish-form .form-control {
    background-color: var(--text-secondary);
    border: none;
    border-radius: 6px;
    padding: 12px 16px;
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size));
    font-weight: 400;
    color: var(--text-primary);
}

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

.wedding-wish-form .form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(var(--text-primary-rgb), 0.5);
    opacity: 1; /* Firefox */
}
.wedding-wish-form .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgba(var(--text-primary-rgb), 0.5);
}
.wedding-wish-form .form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: rgba(var(--text-primary-rgb), 0.5);
}


.wedding-wish-form .form-control:focus {
    border: none;
    box-shadow: none;
}
.wedding-wish-form textarea.form-control {
    max-height: 50px;
}
.wedding-wish-form .submit-comment {
    border-radius: 4px;
    padding: 6px 25px;
    cursor: pointer;
    border: none;
    outline: none;
    background-color: var(--button-background-secondary);
    color: var(--button-text-secondary);
    border: 1px solid transparent;
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size) + 0px);
    /* font-weight: 700; */
    transition: all 0.25s ease-in-out;
}
.wedding-wish-form .submit-comment:hover {    
    background-color: rgba(var(--button-background-secondary-rgb), .8);
    color: var(--button-text-secondary);
}
textarea.form-control {
    resize: vertical;
}


/* Comment Wrap */
.comment-wrap {
    padding: 20px;
    display: none;
}
.comment-wrap.show {
    display: block;
}

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

.comment-item .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: var(--body-text-weight);
    margin-bottom: 0.25em;
    color: var(--text-secondary);
}
.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) - var(--fs-extra-2));
    display: block;
    color: var(--text-secondary);
    /* font-weight: 500; */
}

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

.comment-item .comment-body {
    
}
.comment-body .comment-caption {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size));
    font-weight: var(--body-text-weight);
    color: var(--text-secondary);
    text-transform: var(--body-text-lettercase);
}

/* More Comment */
.more-comment-wrap {
    padding: 20px;
    display: none;
}
.more-comment-wrap.show {
    display: block;
}
#moreComment {
    width: 100%;
    display: block;
    border-radius: 6px;
    padding: 8px 20px;
    margin: 0 auto;
    text-decoration: none;
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
    border: 1px solid transparent;
    outline: none;
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    /* font-weight: 500; */
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}
#moreComment:hover {
    background-color: rgba(var(--button-background-primary-rgb), .8);
    color: var(--button-text-primary);
}


/* ==============================
        Quote
============================== */
.quote-wrap {
    position: relative;
    z-index: 3;
    background-color: transparent;
    padding: 20px;
}
.quote-wrap .quote-caption{
    text-align: center;
}

.quote-wrap .quote-inner {
    position: relative;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.quote-wrap .quote-caption {
    font-size: calc(var(--body-text-size));
    color: var(--text-secondary);
}   
.quote-inner .nama-ayat{
    font-size: calc(var(--body-text-size));
    color: var(--text-secondary);
}

/* ==============================
        Footnote
============================== */
.footnote-wrap {
    position: relative;
    overflow: hidden;
    /* padding: 60px 0px 0px; */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--background-primary);
    /* min-height: 500px; */
    display: flex;
    flex-direction: column;
}
/* Footnote */
.footnote-wrap .footnote {
    padding: 40px 20px 80px;
    text-align: center;
    position: relative;
}
/* .footnote-wrap .footnote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(50% 50% at 50% 50%, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    mix-blend-mode: overlay;
} */
.footnote-wrap .footnote { 
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footnote-wrap .footnote .title-footnote {
    color: var(--text-primary);
    font-family: var(--heading-family);
    font-size: calc(var(--heading-size));
    text-align: left;
}

.footnote-wrap .footnote .bottom-text{
    text-align: left;
}
.footnote-wrap .footnote .top-text-footnote {
    text-align: left;
}

/* =======================
        FOOTER
======================= */
section.footer {
    background: var(--background-secondary);
    padding: 0;
}
section.footer .footer-inner {
    padding: 10px 0;
}
section.footer .footer-inner p {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: var(--body-text-size);
    font-family: var(--body-text-family);
}
.footer .footer-inner .footer-logo {
    width: 55px;
}
section.footer .footer-inner .footer-logo path {
    fill: var(--light-clr);
}

@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) + 4px);
    }
    section.footer .footer-inner.flex-column .footer-logo {
        margin-top: 10px;
        width: 150px;
    }
}



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



/* =============================
        GENERAL QR CODE
============================= */
.general-qrcode {
    padding: 20px 20px 60px;
}



/* KADO */
.container.wedding-gifts-wrap{

}
.hadiah-card-button, .buying-kado-btn, .kado-send-btn{
    background-color: var(--button-background-secondary) !important;
    color: var(--button-text-secondary) !important;
    cursor: pointer !important;
    border: none !important;
    font-family: var(--body-text-family) !important;
    border-radius: 4px !important;
    font-size: var(--fs-content);
}

.modal-kado-header .title, .modal-confirm-header .title, .modal-kado-header .address{
    font-family: inherit;
    color: inherit;
    /* font-size: 32px; */
}

.modal-kado-header .title{
    font-size: 24px;
    color: var(--text-primary);
}
.modal-confirm-header .title{
    font-size: 24px;
}
.confirm-kado-btn{
    border: none !important;
    outline: none !important;
    border: 1px solid  var(--background-secondary) !important;
    color:  var(--background-secondary) !important;
    font-family: var(--body-text-family) !important;
    width: 100%;
    border-radius: 4px !important;
    font-weight: 500 !important;
}

.confirm-kado-btn:hover{
    background-color: var(--text-primary) !important;
    color: var(--light-clr) !important;
    border: 1px solid var(--text-primary);
}

.hadiah-card-button:hover, .buying-kado-btn:hover, .kado-send-btn:hover{
    color: var(--light-clr) !important;
    background-color: var(--text-primary) !important;
}

.wedding-gift-address-label, .inner-address-info{
    font-family: var(--body-text-family) !important;
    /* font-size: clamp(14px, 2vw, 17px) !important; */
    color: var(--white-clr) !important;
    font-weight: 500 !important;
    font-size: var(--fs-content);


}

.modal-kado-header .caption{
    font-size: 16px !important;
}


.btn-hadiah-copy{
    color: var(--white-clr) !important;
    border: 1px solid var(--white-clr) !important;
/*     font-family: var(--ff-01) !important; */
}

.hadiah-card-title{
    font-size: 16px;
    font-weight: 600;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hadiah-card-price {
    font-size: 14px !important;
    color: #CB3A31 !important;
    padding: 4px !important;
    font-weight: 500 !important;
    font-family: var(--body-text-family);
}

.hadiah-card-amount, .hadiah-card-amount .total-amount{
    font-weight: 500 !important;
    font-family: var(--body-text-family);
    color: #000000;
}

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

.wedding-gifts-title{
    margin-bottom: 0.25em;
    font-weight: 700 !important;
    font-size: var(--fs-title);
    font-family: var(--sansnarrow);
    color: var(--primary-clr);
    text-transform: uppercase;
}

.wedding-gifts-description{
    color: #FFF;
    text-align: center;
    font-size: 16px;
    font-family: Red Hat Display;
    font-weight: 500;
    line-height: 24px;
}



/* =============================
        DRESSCODE
============================= */
.dress-wrapper .dress-title {
    color: var(--text-secondary);
}

/* =============================
        INVITATION CATEGORY
============================= */
.invitation-category > .category-icon > svg > path {
    fill: var(--text-secondary);
    stroke: var(--text-secondary);
}

section.top-cover .inner .details .invitation-category {
    align-items: start;
    padding: 0;
}
section.top-cover .inner .details .invitation-category > .category-icon svg {
    margin-left: 0;
}

.kat-page__side-to-side .primary-pane .inner .details .invitation-category > .category-label,
section.top-cover .inner .details .invitation-category > .category-label {
    color: var(--text-secondary);
}

.rsvp-confirm-btn.back, .form-label{
    color: var(--text-secondary);
    font-family: var(--body-text-family);
}