/* Noir */
body.noir {
    /* Heading Family */
    --heading-family: 'Cormorant Unicase', serif;
    --heading-style: normal;
    --heading-weight: 500;
    --heading-size: calc(10vw + 0.96px);
    --heading-lettercase: none;

    /* Body Text */
    --body-text-family: 'Newsreader', serif;
    --body-text-style: normal;
    --body-text-weight: 400;
    --body-text-size: calc(5vw - 3.52px);
    --body-text-lettercase: none;

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

    /* Colors */
    --error-clr: #A30000;
    --error-rgb: 163, 0, 0;

    /* Attribute */
    --body-height: 100vh;
    height: auto;
}

/* Original Color */
body.noir.original {
    
}


@media only screen and (min-width: 700px) {
    body.noir {
        --heading-size: 48px;
        --body-text-size: 24px;
    }
}


/* Font Setup */
body.noir h1,
body.noir h2,
body.noir h3,
body.noir h4,
body.noir h5,
body.noir 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.noir 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: 1.4;
    color: var(--text-secondary);
}
body.noir sup {
    font-family: inherit;
    font-size: 0.6em;
    color: inherit;
}
body.noir span {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    font-weight: bold;
}
body.noir font {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    text-decoration: inherit;
    font-style: inherit;
}

body.noir img {
    max-width: 100%;
}

body.noir {
    overflow: visible;
}

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

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

/* Form Control */
.form-control:focus, 
.form-control:active {
    background: var(--light-clr);
    box-shadow: 0 0 2px var(--background-primary);
    border-color: var(--background-primary);
}



/* ============================================
    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 {
    position: fixed;
    overflow: hidden;
    top: 0;
    left: 0;
    bottom: 0;
    width: 61%;
}
.kat-page__side-to-side .secondary-pane {
    position: static;
    right: 0;
    width: 39%;
    margin-left: 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%;
    }
}



/* ============================================
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;
    background-image: var(--bg-cover);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.kat-page__side-to-side .primary-pane .inner::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--background-primary-rgb), .25);
}

.kat-page__side-to-side .primary-pane .inner .details {    
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    z-index: 2;
}

/* Launch Eagle */
.kat-page__side-to-side .primary-pane.launch-eagle .inner .details {
    justify-content: end;
    margin-bottom: 10%;
}

.kat-page__side-to-side .primary-pane .inner .details h1 {
    padding: 0;
    margin: 0 auto;
    font-size: calc(var(--heading-size) + var(--fs-extra-7));
}
.kat-page__side-to-side .primary-pane .inner .details p {
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    font-style: normal;
    margin: 0 auto;
}

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

/* ======================
    HERO
====================== */
.hero {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    height: 100vh;
}
.hero .inner {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: absolute;
}
.hero .inner::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--background-primary-rgb), .35);
}

/* Highlight */
.hero .inner .highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background-secondary);
}
.hero .inner .highlight .preview-container {
    width: 100%;
    height: 100%;
    display: block;
}
.hero .inner .highlight .preview-container .slick-list {
    width: 100%!important;
    height: 100%!important;
}
.hero .inner .highlight .preview-container .slick-track {
    width: 100%!important;
    height: 100%!important;
    position: relative!important;
}
.hero .inner .highlight .preview-container .picture {
    width: 100%!important;
    height: 100%!important;
    top: 0;
    left: 0;
    position: absolute!important;
}
.hero .inner .highlight .preview-container .picture img {
    position: fixed;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 961px) {
    .hero {
        width: 39%;
        left: unset;
        margin-left: auto;
    }
}

/* ======================
    TOP COVER
====================== */
section.top-cover {
    background-color: var(--background-primary);
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: var(--body-height);
    z-index: 999999;
    top: 0;
    /* top: -120%; */
    left: 0;
    padding: 0;
    
    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;
}

@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: end;
    position: relative;
}
section.top-cover .inner::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--background-primary-rgb), .25);
}

section.top-cover .inner .head {
    z-index: 2;
    text-align: center;
    margin-top: auto;
    margin-bottom: auto;
}
section.top-cover .inner .head h1 {
    font-size: calc(var(--heading-size) + var(--fs-extra-6));
    padding: 0px;
    margin: 0px auto;
}
section.top-cover .inner .head p {
    margin-bottom: 4px;
}

/* details */
section.top-cover .inner .details {
    text-align: center;
    padding: 80px 20px;
    /* margin: auto; */
    position: relative;
    z-index: 2;
}


/* 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: 16px;
    display: flex;
    justify-content: center;
}
section.top-cover .inner .details  a.link {
    border: none;
    outline: none;

    background-color: rgba(var(--background-secondary-rgb), .5);
    color: var(--button-text-secondary);

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

    text-decoration: none;
    margin: 0px auto;    
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.25s ease-in-out;
    cursor: pointer;
}
section.top-cover .inner .details a.link:hover {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
}

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

/* ======================
    COVER
====================== */
section.cover {
    min-height: var(--body-height);
    position: relative;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
section.cover.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /* background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.000) 0%, rgba(var(--background-primary-rgb), 1) 100%); */
    background: rgba(var(--background-primary-rgb), .15);
    z-index: 1;
}

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

section.cover .inner .head {
    position: relative;
    text-align: center;
    padding: 40px 24px;
    margin-bottom: auto;
    max-width: 100%;
    z-index: 3;
    /* background-color: lightpink; */
}
section.cover .inner .head.no-img {
    margin-bottom: auto;
}
section.cover .inner .head .logo-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    margin-bottom: 12px;
    position: relative;    
}
section.cover .inner .head .logo-wrap .logo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}
section.cover .inner .head h1 {
    font-size: calc(var(--heading-size) + var(--fs-extra-6));
    /* margin: 0.5em auto; */
}
section.cover .inner .head p {
    
}

.price-field {
    color: #CB3A31 !important;
}

section.cover .inner .body {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
section.cover .inner .body .cover-frame {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    isolation: isolate;
    background: var(--background-primary);
}
section.cover .inner .body .preview-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
section.cover .inner .body .preview-container .slick-list {
    width: 100%!important;
    height: 100%!important;
}
section.cover .inner .body .preview-container .slick-track {
    width: 100%!important;
    height: 100%!important;
    position: relative!important;
}
section.cover .inner .body .preview-container .picture {
    width: 100%!important;
    height: 100%!important;
    top: 0;
    left: 0;
    position: absolute!important;    
    background-color: var(--light-clr);
}
section.cover .inner .body .preview-container .picture img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.section.cover .inner .foot > i {
    font-size: 1em;
}
.foot .ph {
    position: absolute;
    bottom: 0;
    color : var(--light-clr);
    font-size: 2em;
}
section.cover .inner .foot {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 80px 20px;
    width: 100%;
    /* background-color: olive; */
}

/* cover Countdown */
section.cover .cover-countdown {
    padding: 0px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
section.cover .cover-countdown .count-item {
    text-align: center;
    background-color: transparent;
    padding: 10px 5px 0px;
    margin: 5px;
    width: 180px;
}
section.cover .cover-countdown .count-item .count-num {
    line-height: 1;
}
section.cover .cover-countdown .count-item .count-text {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: var(--body-text-size);
    color: var(--text-secondary);
}
/* Add To Calendar */
.add-to-calendar-wrap {
    padding: 0px;
    text-align: center;
    display: flex;
    justify-content: center;
}
.add-to-calendar {
    border: none;
    outline: none;
    box-shadow: none;
    padding: 12px 0px;
    border-radius: 0px;

    border-bottom: 1px solid var(--background-secondary);
    background-color: transparent;
    color: var(--button-text-secondary);
    
    font-family: var(--body-text-family);
    font-weight: 500;
    font-size: var(--body-text-size);
    line-height: 1.5;
        
    text-decoration: none;
    transition: all 0.25s ease-in-out;
}
.add-to-calendar:hover {
    border-radius: 100px;
    padding: 12px 20px;
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
}

section.cover .inner .head .torsvp__btn-wrap {
    margin-top: 15px;
    padding: 0px;
    display: flex;
    justify-content: center;
}
section.cover .inner .head .torsvp__btn {
    border: none;
    outline: none;
    box-shadow: none;
    display: block;
    padding: 8px 16px;
    border-radius: 20px;
    letter-spacing: 2px;

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

    font-family: var(--body-text-family);
    font-weight: 500;
    font-size: var(--body-text-size);
    line-height: 1.5;
}
section.cover .inner .head .torsvp__btn:hover {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
}

@media (min-width: 760px) {
    section.cover .inner .head {
        padding: 50px 24px;
    }
}

/* ==============================
        Quote
============================== */
.quote-wrap {
    position: relative;
    overflow: hidden;
    z-index: 2;
}
.quote-wrap .quote {
    text-align: center;
    padding: 40px 24px;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}
.quote-wrap .quote .quote-caption {
    font-size: var(--body-text-size);
    width: 100%;
    margin: 0 auto;
}

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

/* Couple Head */
.couple-head {
    text-align: center;
    padding: 20px;
    background-color: var(--background-primary);
}
.couple-head .couple-title {
}
.couple-head .couple-description {
    margin-top: 5px;
}

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

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


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

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

/* Couple Details */
.couple-info.bride .couple-details-wrap {
    left: unset;
    right: 0;
}
.couple-details-wrap {
    position: relative;
    bottom: 0;
    left: 0;
    padding: 40px 24px;
}
.couple-details-wrap.previewed {
    position: absolute;
}
.couple-details-wrap .details-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    gap: 8px;
}
.couple-details-wrap .details-title.clear {
    display: none;
}
.couple-info.bride .couple-details-wrap .details-title {
    flex-direction: row-reverse;
}
.couple-details-wrap .details-title::after {
    background-color: var(--text-primary);
    height: 1px;
    flex: 1;
    content: '';
}
.couple-details-wrap .couple-details {
    text-align: left;
    padding: 16px;
    max-width: 620px;
    border-radius: 16px;
    backdrop-filter: blur(2px);
    background: linear-gradient(90deg, var(--background-tertiary) 0%, rgba(var(--background-tertiary-rgb), .5) 100%);
}
.couple-details-wrap .couple-details.center {
    text-align: center;
}
.couple-info.groom .couple-details {
    text-align: right;
    background: linear-gradient(-90deg, var(--background-tertiary) 0%, rgba(var(--background-tertiary-rgb), .5) 100%);
}
.couple-info.groom .couple-details.center {
    text-align: center;
}
.couple-details .couple-name {
    margin-bottom: 8px;
    color: var(--text-tertiary);
}
.couple-details p{
    color: var(--text-tertiary);
}
.couple-details .couple-parents {
    margin-bottom: 8px;
    color: var(--text-tertiary);
}
.couple-details .couple-bio {
    color: var(--text-tertiary);
}
.couple-link-wrap {
    position: relative;
}
.couple-link {
    text-decoration: none;
    display: inline-block;
    vertical-align: top;

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

    border-bottom: 1px solid var(--text-tertiary);
    background-color: transparent;
    color: var(--text-tertiary);

    padding: 8px 0;
    transition: all 0.25s ease-in-out;
}
.couple-link > i {
    font-size: 16px;
    display: inline-block;
    vertical-align: middle;
}
.couple-link:hover {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
    padding: 8px 12px;
    border-radius: 100px;
}
@media only screen and (min-width: 1440px){
    .couple-details {
        padding: 40px;
    }
}

/* ==============================
        Gallery
============================== */
section.gallery {
    background-color: transparent;
    padding: 20px 0px 0px;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.gallery-inner {
    width: 100%;
}

/* Title */
section.gallery .title {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 20px;
}
section.gallery .title h1 {
    padding: 0;
    margin-bottom: auto;
    font-style: normal;
}

/* Body */
section.gallery .body {
    margin-top: 24px;
}
.gallery__single-slider .slider-container {
    padding: 40px 0;
}
section.gallery .body .gallery__single-slider .slider-container .slider-item:nth-child(odd) {
    margin-top: -50px;
}
section.gallery .body .gallery__single-slider .slider-container .slider-item:nth-child(even) {
    margin-bottom: -50px;
}
section.gallery .body .gallery__single-slider .slider-container .slider-item .preview .anchor {
    box-shadow: 0 5px 10px rgb(0 0 0 / 15%);
    /* border: none; */
    /* outline: none; */
}
section.gallery .body .gallery__single-slider .slider-container .slider-item .preview,
section.gallery .body .gallery__single-slider .slider-container .slider-item .preview .anchor,
section.gallery .body .gallery__single-slider .slider-container .slider-item .preview .img {
    border-radius: 16px;


}
section.gallery .body .gallery__single-slider .slider-container .slider-item:nth-child(even) .preview,
section.gallery .body .gallery__single-slider .slider-container .slider-item:nth-child(even) .preview .anchor,
section.gallery .body .gallery__single-slider .slider-container .slider-item:nth-child(even) .preview .img {
    border-radius: 16px;
}

.gallery__single-slider .slider-container .slider-item{
    border-radius: 16px;
}

@media (min-width: 760px) {
    .gallery__single-slider .slider-container .slider-item .preview{
        min-width: 400px;
        min-height: 550px;
    }
}

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

    section.gallery .body .gallery__single-slider .slider-container .slider-item .preview,
    section.gallery .body .gallery__single-slider .slider-container .slider-item .preview .anchor,
    section.gallery .body .gallery__single-slider .slider-container .slider-item .preview .img {
    border-radius: 20px;

    } 
    section.gallery .body .gallery__single-slider .slider-container .slider-item:nth-child(even) .preview,
    section.gallery .body .gallery__single-slider .slider-container .slider-item:nth-child(even) .preview .anchor,
    section.gallery .body .gallery__single-slider .slider-container .slider-item:nth-child(even) .preview .img {
        border-radius: 20px;
    }
    .gallery__single-slider .slider-container .slider-item{
        border-radius: 20px;
    }
}

/* ==============================
        Video
============================== */
section.video-gallery {    
    position: relative;
    overflow: hidden;
    background: transparent;
    padding: 0px;
}

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

section.video-gallery .inner > .title {
    width: 100%;
    margin: 0px auto;
    text-align: center;
    padding: 40px 20px;
}
section.video-gallery .inner > .title h1 {
    padding: 0px;
    margin-bottom: 0px;
    font-size: var(--heading-size);
    font-weight: normal;
    color: var(--text-primary);
}
section.video-gallery .inner > .title p {
    font-size: var(--body-text-size);
    line-height: 1.5;
}

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

section.video-gallery .inner .video-outer .video {
    width: 100%;
    max-width: 640px;
    margin: 0px 0px 40px;
    padding: 0px 24px;
}
.video-gallery > .inner > .video-outer .video:last-of-type {
    margin: 0px 0px 40px;
}

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: initial;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */        
}
.video-gallery .inner .video-outer .video .preview > img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* video label */
section.video-gallery .inner .video-outer .video > .title {
    margin-top: 8px;
    padding: 0px;
}
section.video-gallery .inner .video-outer .video > .title h2 {
    font-size: calc(var(--body-text-size) + var(--fs-extra-3));
    line-height: 1.5;
}

/* ==============================
        Agenda
============================== */
.agenda-wrap {
    position: relative;
    overflow: hidden;
    background-color: var(--background-primary);
}
.agenda-inner {
    padding: 60px 0;
}

.agenda-head {  
    position: relative;
    padding: 20px 24px;
    text-align: left;
}
.agenda-head::after {
    content: '';
    position: absolute;
    bottom: 0;
    display: flex;
    width: calc(100% - 48px);
    border-bottom: 1px solid var(--background-secondary);
}
.agenda-head .agenda-title {
    font-size: var(--heading-size);
    margin-bottom: 0.4em;
}
.agenda-head .agenda-description {
    font-style: normal;
}
.agenda-head .agenda-description > strong {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.agenda-body {
    position: relative;
    z-index: 1;
}

/* Event */
.event-item {
    width: 100%;
    /* max-width: 500px; */
    padding: 0 24px;
    border-radius: 12px;
    position: relative;
}
.event-item:first-of-type {

}
/* .event-item::before {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 75%;
    border-radius: 12px;
} */

.event-head {
    padding: 20px 10px;
    text-align: left;
    border-radius: 12px;
}
.event-head .event-day {
    font-family: var(--body-text-family);
    font-size: calc(var(--heading-size) + var(--fs-extra-6));
    line-height: 1;
    margin-bottom: 0.15em;
}
.event-head .event-date {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    letter-spacing: 5px;
}
.event-head .event-description {
    font-family: var(--body-text-family);
    font-style: italic;
    margin-top: 0.25em;
}

/* Activity */
.activity-wrap.same-location {
    /* padding-top: 40px; */
}
.activity-wrap.same-location .activity-item {
    padding: 6px 0;
}
.activity-item {
    padding: 24px 0;
}
.activity-head {
    padding: 6px 0px;
    text-align: left;
}
.activity-head .activity-title {
    color: var(--text-secondary);
}
.activity-head .event-date {
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    display: flex;
    align-items: center;
    gap: 8px;
}
.activity-head .event-date span {
    font-family: var(--body-text-family);
    font-weight: 400;
    font-size: calc(var(--heading-size) + var(--fs-extra-5));
}
.activity-head .event-description {
    margin-top: 0.25em;
}
.activity-head .activity-description {
    margin-bottom: 1em;
}
.activity-head .activity-time {
    display: inline-block;
    vertical-align: top;
}

/* Agenda Details */
.event-details,
.activity-details {
    padding: 6px 0px;
    text-align: left;
}
.event-details .event-hall,
.activity-details .activity-hall {
    margin-bottom: 0.75em;
}
.event-details .event-address,
.activity-details .activity-address {
    margin-bottom: 0.25em;
}
.event-details .event-city,
.activity-details .activity-city {
    font-style: normal;
}
.event-link-wrap,
.activity-link-wrap {
    margin-top: 20px;
}
.event-link,
.activity-link {
    width: 100%;
    max-width: 160px;
    text-decoration: none;    
    padding: 10px 20px;
    border-radius: 22px;
    display: inline-block;
    vertical-align: top;

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

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

    text-align: center;
    transition: all 0.25s ease-in-out;
}
.event-link:hover,
.activity-link:hover {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
}

/* ==============================
        RSVP
============================== */
.rsvp-wrap {
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
}

.rsvp-border-wrap {
  border: 1px solid var(--background-secondary);
  border-radius: 8px;
  padding: 10px;
  max-width: 500px;
  margin: 0 auto;
}

.rsvp-inner {
  /* width: 100%; */
  position: relative;
  max-width: 500px;
  padding: 20px 10px;
  margin: 0 auto;
  background-color: rgba(var(--background-secondary-rgb), .5);
  border-radius: 8px;

  /* From https://css.glass */
  /* background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3); */
}

.rsvp-inner.solid-color {
    background-color: var(--background-secondary);
}

/* Head */
.rsvp-head {    
  text-align: center;
}
.rsvp-head .rsvp-title {
  font-size: var(--heading-size);
  color: var(--text-secondary);
}
.rsvp-head .rsvp-desc {
  font-size: var(--body-text-size);
  color: var(--text-secondary);
}

.rsvp-body {
  padding: 0 20px;
}

/* RSVP Status */
.rsvp-status-wrap {
  margin: 20px auto;
}
.rsvp-status-head {
  text-align: center;
}
.rsvp-status-head .rsvp-status-caption {
  color: var(--text-secondary);
}

/* 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);
  min-width: 50%;
}
.rsvp-status-wrap input[name="rsvp_status"]:checked + .rsvp-confirm-btn.not-going {
  background-color: var(--button-background-primary);
  color: var(--button-text-primary);
}

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

.rsvp-amount-head {    
  text-align: center;
}
.rsvp-amount-head .rsvp-amount-caption {
  color: var(--text-secondary);
}
.rsvp-session-wrap .session-caption-wrap .caption{
    /* font-family: var(--body-text-family);
    font-style: var(--body-text-style);
    font-weight: var(--body-text-weight);
    font-size: var(--body-text-size);
    text-transform: var(--body-text-lettercase);
    line-height: 1.4;
    color: var(--text-secondary);
    text-align: center; */
}

.rsvp-amount-body {
  
}

/* Amount Controller */
.rsvp-amount-controller-wrap {
  margin-top: 30px;
}
.rsvp-amount-controller {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 20px;
}

.rsvp-amount-controller .toggle-btn {
  background-color: transparent;
  border: 1px solid transparent;
  outline: none;
  height: 40px;
  width: 40px;    
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}
.rsvp-amount-controller .toggle-icon {
  width: 12px;
  height: auto;
  display: block;
}
.rsvp-amount-controller .toggle-icon path {
  transition: all 0.25s ease-in-out;
  stroke: var(--dark-clr);
}

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

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

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

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

.rsvp-amount-controller .input-control {
    pointer-events: none;
    border-radius: 0;
    border: none;
    border-top: 1px solid var(--button-background-primary);
    border-bottom: 1px solid var(--button-background-primary);
}

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

.rsvp-plus-wrapper.active .rsvp-confirm-wrap {
    flex-direction: column;
}

.rsvp-confirm-wrap > label {
  display: block;
  text-align: center;
  flex-grow: 1;
  width: 50%;
}
.rsvp-confirm-btn {
  width: 100%;
  display: inline-block;
  padding: 12px 6px;
  margin: 7px auto;
  border-radius: 100px;
  
  font-family: var(--body-text-family);
  font-weight: 500;
  font-size: var(--body-text-size);
  line-height: 1;

  background-color: transparent;
  border: 1px solid transparent;
  text-align: center;

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

.rsvp-session-btn,
.form-check-label{
    font-size: calc(var(--body-text-size) - var(--fs-extra-3));
    border: 1px solid var(--background-secondary);
    background-color: var(--button-background-secondary);
    color: var(--button-text-secondary);
    font-family: var(--body-text-family);
    border-radius: 100px;
}

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

.rsvp-confirm-btn.going {
    font-size: calc(var(--body-text-size) - var(--fs-extra-3));
    border: 1px solid var(--background-secondary);
    background-color: var(--button-background-secondary);
    color: var(--button-text-secondary);
}
.rsvp-confirm-btn.going:hover {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
}

.rsvp-confirm-btn.not-going {
  font-size: calc(var(--body-text-size) - var(--fs-extra-3));
  border: 1px solid var(--background-secondary);
  background-color: var(--button-background-secondary);
  color: var(--button-text-secondary);
}
.rsvp-confirm-btn.not-going:hover {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
}

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

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

.rsvp-confirm-btn > i {
  font-size: 0.8em;
  margin-left: 5px;
}
/* End RSVP Confirm */

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

.rsvp-qrcard-wrap + .rsvp-message-wrap {
  margin-top: 0;
}
/* End QR Card */

/* RSVP Message */
.rsvp-message-wrap {
  position: relative;
  margin-top: 30px;
}
.rsvp-message-content {
  background-color: transparent;
  border-radius: 5px;
  padding: 20px 0;
  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(--body-text-size) + var(--fs-extra-5));
  color: var(--text-secondary);
  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 {
  padding: 10px 0;
}
/* End RSVP Change */

@media screen and (min-width: 769px) and (max-width:960px) {
  .rsvp-border-wrap {
    max-width: 700px;
  }
  .rsvp-inner {
    max-width: 700px;
  }
}

/* ==============================
        Live Streaming
============================== */
section.live-streaming {
    padding: 40px 0px;
    position: relative;
    overflow: hidden;
}
section.live-streaming .inner {
    padding: 0px;   
}

/* head */
section.live-streaming .inner .head {
    text-align: center;
    padding: 0px 24px;
    margin-bottom: 24px;
}
section.live-streaming .inner .head h1 {
    padding: 0px;
    margin-bottom: 0px;
    color: var(--text-primary);
    font-size: var(--heading-size);
    
}   
section.live-streaming .inner .head p {
    font-style: normal;
    color: var(--text-secondary);
    font-size: var(--body-text-size);
}

/* body */
.live-streaming .inner .body {
    padding: 0;
}
.live-streaming .inner .body p {
    font-size: var(--body-text-size);
    color: var(--text-secondary);
}

.live-streaming .inner .body p.meeting-text {
    font-family: var(--body-text-family);
    font-weight: 500;
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
}
.live-streaming .inner .body > .streaming-info {
    padding: 0px 24px;
}
.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: auto;
}

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

.live-streaming .inner .body > .streaming-info > div.link {
    margin-top: 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: 500;
    font-size: var(--body-text-size);

    background-color: var(--button-background-secondary);
    border: 1px solid var(--button-background-primary);
    color: var(--button-text-secondary);
    
    border-radius: 100px;
    padding: 12px 20px;
}
.live-streaming .inner .body > .streaming-info > div.link > a:hover {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
}

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

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

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

/* ==============================
        Love Story
============================== */
.love-story-wrap {
    position: relative;
    overflow: hidden;
}
.love-story-inner {
    padding: 30px 0 50px;
}

.love-story-head {
    text-align: center;
    padding: 20px;
}
.love-story-head .love-story-title {

}

.love-story-body {
    padding: 20px;
    width: 100%;
    /* max-width: 500px; */
    margin: 0 auto;
}



/* Story Chitra */
.story-chitra__slider-wrap {
    position: relative;
    border-radius: 15px;
    overflow: visible;    
}

/* Story Chitra For */
.story-chitra__slider-for {
    position: relative;
}

.story-chitra__slider-for .slick-track,
.story-chitra__slider-for .slick-list {
    border-radius: 15px;
}

.story-chitra__slider-for__item {
    background-image: var(--story-background);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 15px;

    position: relative!important;
    display: flex!important;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    width: 320px;
    height: 420px;

    margin: 5px 5px;
}
.story-chitra__slider-for__item::before {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.70) 0%, rgba(0, 0, 0, 0.00) 100%);
    background: -o-linear-gradient(to bottom, rgb(0 0 0 / 0%), rgb(0 0 0 / 50%) 90%);
    background: -moz-linear-gradient(to bottom, rgb(0 0 0 / 0%), rgb(0 0 0 / 50%) 90%);
    background: -webkit-linear-gradient(to bottom, rgb(0 0 0 / 0%), rgb(0 0 0 / 50%) 90%);
}
.story-chitra__slider-for__item.no-overlay::before {
    content: none;
}

.story-chitra__content {
    width: 100%;
    height: 65%;
    text-align: left;
    /* padding: 0 15%; */
    padding-right: calc(15% + 0px);
    margin: 0 auto;
    margin-right: -17px;
    position: relative;
    z-index: 2;
    overflow-y: auto;
    display: flex;
    justify-content: space-between;
    flex-direction: column;

    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
/* Hide scrollbar for Chrome, Safari and Opera */
.story-chitra__content::-webkit-scrollbar {
  display: none;
}

.story-chitra__content .story-chitra__title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    gap: 8px;
    position: relative;
    z-index: 2;

    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);
    color: var(--text-secondary);
}
.story-chitra__content .story-chitra__title::after {
    background-color: var(--background-secondary);
    height: 1px;
    flex: 1;
    content: '';
}
.story-chitra__content .story-chitra__title.no-divider::after {
    content: none;
}
.story-chitra__content .story-chitra__caption {
    position: relative;
    font-size: var(--body-text-size);
    font-weight: 400;
    z-index: 2;
    max-height: 85px;
}

/* Story Chitra Nav */
.story-chitra__slider-nav {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.story-chitra__slider-nav__item__manual {
    height: 3px;
    flex-grow: 1;
    max-width: 50px;
    background-color: rgba(var(--light-rgb), .5);
    transition: all 0.25s ease-in-out;
}
.story-chitra__slider-nav__item__manual.is-active {
    background-color: var(--light-clr);
}

/* Story Chitra Arrows */
.story-chitra__arrow-btn {
    position: absolute;
    top: 50%;    
    transform: translateY(-50%);
    border: none;
    background-color: transparent;
    color: var(--light-clr);
    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(--light-clr);
}
.story-chitra__arrow-btn.prev {
    left: 14px;
}
.story-chitra__arrow-btn.next {
    right: 14px;
}

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

/* =====================================
        INSTAGRAM FILTER
==================================== */
.ig-filter {
    position: relative;
    overflow: hidden;
    padding: 40px 0px;
    background-color: transparent
}

/* head */
.ig-filter-head {
    text-align: center;
    padding: 0px 24px;
    margin-bottom: 24px;
}
.ig-filter-head .ig-filter-title {
    margin-bottom: 0px;
    color: var(--text-primary);
    font-size: var(--heading-size);
}
.ig-filter-caption {
    text-align: center;
    font-style: normal;
    color: var(--text-secondary);
}

/* body */
.ig-filter-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 0px 24px;
}

/* image */
.ig-filter-img-wrap {
    position: relative;
    width: calc(100% - 48px);
    max-width: 300px;
    margin: 0px auto;
    min-height: 500px;
    padding: 10px;
    display: flex;
    /* align-items: center; */
    border: 1px solid var(--background-secondary);
    border-radius: 16px;
}
.ig-filter-img {
    border-radius: 16px;
    max-width: none;
    position: relative;
}

/* link */
.ig-filter-link-wrap {
    padding: 0px;
    display: flex;
    justify-content: center;
    width: 100%;
}
.ig-filter-link {
    border: none;
    outline: none;
    width: 100%;
    min-width: 100px;
    border-radius: 20px;
    padding: 12px 20px;

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

    border: 1px solid var(--button-background-primary);
    background-color: transparent;
    color: var(--button-text-secondary);
}
.ig-filter-link:hover {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
}

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

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

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

/* Head */
.wedding-gift-head {
    padding: 20px;
    text-align: center;
}
.wedding-gift-head .wedding-gift-title {
    font-size: var(--heading-size);
    line-height: 1;
    margin-bottom: 0.25em;
    color: var(--text-primary);
    
}
.wedding-gift-head .wedding-gift-description {
    text-align: left;
    color: var(--text-secondary);
}

/* Body */
.wedding-gift-body {
    padding: 20px;
    position: relative;
    z-index: 1;
}
.wedding-gift-form {
    position: relative;
    border-radius: 10px;
}
.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;
    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;
    border-top: 1px solid var(--background-secondary);
    border-radius: 0px;
}

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

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

#selectBank {
    border: none;
    border-radius: 100px;
}
.selectize-control.form-control.single {
    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!important;
    box-shadow: none;
    border: none;
    border-radius: 100px;
}
.wedding-gift-select-bank-wrap .selectize-control.form-control .selectize-input {
    background: transparent!important;
    border-radius: 100px;
    border: 1px solid var(--background-secondary);
    padding: 8px 12px;
}
.wedding-gift-select-bank-wrap .selectize-control.form-control .selectize-input::after {
    border-top-color: var(--background-secondary);
}
.wedding-gift-select-bank-wrap .selectize-control.form-control .select-bank__title {
    color: var(--text-secondary);
    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 {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    color: var(--text-tertiary);
}
.wedding-gift-select-bank-wrap .selectize-dropdown.form-control .select-bank__credential {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size) - var(--fs-extra-2));
    color: var(--text-tertiary);
}
.wedding-gift-select-bank-wrap .selectize-dropdown.form-control .item {
    background-color: var(--background-secondary);
}
.wedding-gift-select-bank-wrap .selectize-dropdown.form-control .item.selected {
    background-color: var(--background-primary);
}
.wedding-gift-select-bank-wrap .selectize-dropdown.form-control .item:hover {
    background-color: var(--background-primary);
}
.wedding-gift-select-bank-wrap .selectize-dropdown.form-control .item.selected .select-bank__title,
.wedding-gift-select-bank-wrap .selectize-dropdown.form-control .item.selected .select-bank__credential {
    color: var(--text-secondary);
}
.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-primary);
}
.wedding-gift-select-bank-wrap .copy-num {
    border-radius: 100px;
    padding: 8px 16px;
    cursor: pointer;
    outline: none;
    
    border: 1px solid var(--button-background-primary);
    background-color: var(--button-background-secondary);
    color: var(--button-text-secondary);

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

    transition: all 0.25s ease-in-out;
}
.wedding-gift-select-bank-wrap .copy-num:hover {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
}

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

.wedding-gift-bank-wrap .bank-account-number-label {
    font-size: calc(var(--body-text-size) - var(--fs-extra-3));
    color: rgba(var(--text-rgb-sc), 0.80);
    display: block;
    margin-bottom: 0.25em;
}
.wedding-gift-bank-wrap .bank-account-number {
    font-family: var(--body-text-family);
    font-style: var(--body-text-style);
    font-weight: var(--body-text-weight);
    font-size: var(--body-text-size);
    color: var(--text-secondary);

    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-label {
    font-size: calc(var(--body-text-size) - var(--fs-extra-4));
    color: rgba(var(--text-rgb-sc), .8);
    display: block;
    margin-bottom: 0.25em;
}
.wedding-gift-bank-wrap .bank-account-name {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    color: var(--text-secondary);
    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;
}
.wedding-gift-sender-data-wrap .form-group {
    margin-top: 1.25em;
    margin-bottom: 0;
    border: 1px solid var(--background-secondary);
    border-radius: 12px;
}
.wedding-gift-sender-data-wrap textarea.form-control {
    height: auto;
    min-height: 0;
    max-height: 250px;
}
.wedding-gift-sender-data-wrap .form-control {
    border-radius: 12px;
    padding: 15px;

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

    font-family: var(--body-text-family);
    font-weight: 400;
    font-size: var(--body-text-size);
}
.wedding-gift-sender-data-wrap .form-control::placeholder {
    color: rgba(var(--text-secondary-rgb), .5);
}
.wedding-gift-sender-data-wrap .form-control:focus {
    border: none;
    box-shadow: none;
}

/* Wedding Gift Page */
.wedding-gift-page-wrap {
    padding: 20px 0;
}
.wedding-gift-page {
    border: none;
    width: 50%;
    display: block;

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

    background-color: rgba(var(--button-background-primary-rgb), .4);
    color: var(--text-secondary);

    padding: 16.5px 25px;
    margin: 0 auto;
    border-radius: 100px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}
.wedding-gift-page:hover {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
}

/* Wedding Gift Back Page */
.wedding-gift-back-page-wrap {    
    padding: 20px 0;
    margin: 0 auto;
}
.wedding-gift-back-page {
    background-color: transparent;
    border: none;
    outline: none;
    color: rgba(var(--background-secondary-rgb), .5);
    font-size: 28px;
    cursor: pointer;
    transition: all 0.25s ease-in-out;
}
.wedding-gift-back-page:hover {
    color: rgba(var(--background-secondary-rgb), .9);
}

/* 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: 20px; */
}
.wedding-gift-upload-wrap::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    border: 2px dashed var(--background-secondary);
    border-radius: 10px;
    background-color: transparent;
    pointer-events: none;
}

/* Wedding Gift Upload Description */
.wgu-description {
    text-align: center;
    padding: 20px;
    margin: 0px auto;
    display: none;
}
.wgu-description.show {
    display: block;
}
.wgu-description i {
    font-size: 60px;
    color: var(--text-secondary);
}
.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 normal{
    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(--background-primary);
}
.wgs-head .wgs-spark .stroke {
    stroke: var(--background-primary);
}
.wgs-head .wgs-spark.left {
    margin-right: 20px;
}
.wgs-head .wgs-spark.right {
    margin-left: 20px;
    transform: scaleY(-1);
}

.wgs-icon-wrap {
    width: 120px;
    height: 120px;
    background-color: var(--background-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 {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size) + var(--fs-extra-4));
    margin-bottom: 0.25em;
}
.wgs-description {
    color: rgba(var(--dark-rgb), .5);
}

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

/* Protocol 01 */
section.protocol.protocol-01 {
    background-color: transparent;
}
section.protocol.protocol-01 .inner .head {
    padding: 24px 16px 8px;
    background-color: var(--background-secondary);
}
section.protocol.protocol-01 .inner .head h1 {    
    font-size: var(--heading-size);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.2;
    text-transform: capitalize;
}
section.protocol.protocol-01 .inner .head p {
    font-size: var(--body-text-size);
    color: var(--text-primary);
    font-weight: 400;
    margin-bottom: 12px;
}

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

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

/* Protocol 03 */
section.protocol.protocol-03 {
    background: transparent;
}
section.protocol.protocol-03 .inner .head {
    padding: 24px 16px 8px;
    background-color: var(--background-secondary);
}
section.protocol.protocol-03 .inner .head h1 {
    font-size: var(--heading-size);
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.2;
    text-transform: capitalize;
}
section.protocol.protocol-03 .inner .head p {
    font-size: var(--body-text-size);
    color: var(--text-primary);
    font-weight: 400;
    margin-bottom: 12px;
}

.protocol.protocol-03 .inner .body {
    padding: 20px 0px 40px;
}
section.protocol.protocol-03 .inner .body .slider .content .text-01 {
    font-family: var(--body-text-family);
    font-weight: 500;
    font-size: calc(var(--body-text-size) + var(--fs-extra-3));
    text-transform: capitalize;
    color: var(--text-primary);
}
.protocol.protocol-03 .inner .body .slider_dots::before {
    border-color: var(--background-secondary);
}
.protocol.protocol-03 .inner .body .slider_dots .slider_navigator {
    background-color: var(--background-secondary);
}
.protocol.protocol-03 .inner .body .slider_dots .slider_navigator.slick-current.slick-center {
    background-color: var(--background-secondary);
}

/* Protocol 04 */
section.protocol-04 .inner {
    padding: 40px 24px;  
}
section.protocol-04 .inner .head {
    padding: 0px;
    margin-bottom: 8px;
}
section.protocol-04 .inner .head .title {
    font-family: var(--heading-family);
    font-weight: var(--heading-weight);
    font-size: var(--heading-size);
    text-transform: var(--heading-lettercase);
}

.kat-page__side-to-side .secondary-pane section.protocol-04 .protocol-item-wrap,
section.protocol-04 .protocol-item-wrap {
    max-width: 320px;
}
section.protocol-04 .protocol-item-wrap .protocol-item {
    background-color: rgba(var(--background-secondary-rgb), .5);
    border-color: transparent;
    border-radius: 12px;
    max-width: 110px;
    max-height: 147px;
    margin: 8px;
    padding: 0px;
    width: 50%;
}
section.protocol-04 .protocol-item-wrap .protocol-item .text-wrap {
    justify-content: flex-end;
}

section.protocol-04 .protocol-item-wrap .protocol-item .icon-wrap .icon {
    width: auto;
    height: 40px;
}
section.protocol-04 .protocol-item-wrap .protocol-item:nth-child(2) .icon-wrap .icon {
    height: 30px;
}

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

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

@media (min-width: 760px) {
    .kat-page__side-to-side .secondary-pane section.protocol-04 .protocol-item-wrap,
    section.protocol-04 .protocol-item-wrap {
        max-width: 350px;
    }
    section.protocol-04 .protocol-item-wrap .protocol-item {
        max-width: 150px;
        max-height: 200px;
    }
    section.protocol-04 .protocol-item-wrap .protocol-item .icon-wrap .icon {
        height: 60px;
    }
}

/* ==============================
        Wedding Wish
============================== */
.wedding-wish-wrap {
    position: relative;
    overflow: hidden;
}

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

/* head */
.wedding-wish-head {
    padding: 20px;
    text-align: center;
}
.wedding-wish-head .wedding-wish-title {
    color: var(--text-secondary);
}
.wedding-wish-head .wedding-wish-description {
    
}

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

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

.wedding-wish-form .hide {
    display: none;
}
.wedding-wish-form .form-control {
    background-color: rgba(var(--background-secondary-rgb), .5);
    border: none;
    border-radius: 16px;
    padding: 8px 12px;

    font-family: var(--body-text-family);
    font-weight: 400;
    font-size: var(--body-text-size);
    line-height: 1.5;
    color: var(--text-secondary);
}
.wedding-wish-form .form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgba(var(--text-secondary-rgb), 0.5);
    opacity: 1; /* Firefox */
}
.wedding-wish-form .form-control:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgba(var(--text-secondary-rgb), 0.5);
}
.wedding-wish-form .form-control::-ms-input-placeholder { /* Microsoft Edge */
    color: rgba(var(--text-secondary-rgb), 0.5);
}

.wedding-wish-form .form-control:focus {
    border: none;
    box-shadow: none;
}
.wedding-wish-form textarea.form-control {
    min-height: 40px;
    max-height: 250px;
}
.wedding-wish-form .submit-comment {
    border-radius: 100px;
    padding: 8px 16px;
    cursor: pointer;
    outline: none;

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

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

    transition: all 0.25s ease-in-out;
}
.wedding-wish-form .submit-comment:hover {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
}

/* comment box */
.comment-box-wrap {
    position: relative;
}
.comment-box-wrap .form-group  {
    margin-bottom: 0;
}
.comment-box-wrap textarea.form-control {
    height: auto;
    min-height: 0;
}
.comment-box-wrap .submit-comment-wrap {
    position: absolute;
    top: 0;
    right: 0;
}
.comment-box-wrap.focus textarea.form-control {
    /* padding-bottom: 50px; */
}
.comment-box-wrap.focus .submit-comment-wrap {
    top: auto;
    bottom: 0;
}

/* Comment Wrap */
.comment-wrap {
    padding: 20px;
    display: none;
}
.comment-wrap.show {
    display: block;
}
.comment-item {
    margin-bottom: 16px;
    padding: 12px 16px;
    background-color: rgba(var(--background-secondary-rgb), .5);
    border-radius: 12px;
    backdrop-filter: blur(2px);
}
.comment-item:last-of-type {
    margin-bottom: 0px;
}

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

.comment-head .comment-name {
    font-family: var(--body-text-family);
    font-weight: 500;
    font-size: var(--body-text-size);
    color: var(--text-secondary);
}
.comment-head .comment-name > i {
    font-size: 0.7em;
}
.comment-head .comment-date {
    font-family: var(--body-text-family);
    font-weight: 400;
    font-size: calc(var(--body-text-size) - var(--fs-extra-3));
    color: var(--text-secondary);

    display: block;
    margin-top: 8px;
}

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

.comment-body {
    
}
.comment-body .comment-caption {
    
}

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

#moreComment {
    outline: none;
    width: 100%;
    display: block;
    padding: 8px 20px;
    margin: 0 auto;
    text-decoration: none;
    border-radius: 100px;

    border: 1px solid var(--button-background-primary);
    background-color: var(--button-background-secondary);    
    color: var(--button-text-secondary);
    
    font-family: var(--body-text-family);
    font-weight: 500;
    font-size: var(--body-text-size);
    line-height: 1.5;

    cursor: pointer;
    transition: all 0.25s ease-in-out;
}
#moreComment:hover {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
}

/* ========================================
        FOOTNOTE
======================================== */
.footnote-wrap {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding: 40px 0px;
    height: var(--body-height);
    justify-content: center;
}
.footnote-wrap.top-text {
    justify-content: flex-start;
}

/* Details */
.footnote-wrap .footnote {
    text-align: center;
    padding: 0px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Launch Eagle */
.footnote-wrap.launch-eagle .footnote {
    display: none;
}


.footnote .footnote-title {
    color: var(--text-secondary);
}
.footnote p {
    font-weight: 400;
}

.footnote .top-text {

}
.footnote .bottom-text {
    
}
.footnote .date {
}

.footer {
    background: transparent;
    padding: 0;
}
.footer .footer-inner {
    padding: 8px 16px;
}
.footer .footer-inner p {
    font-size: var(--body-text-size);
    font-weight: 1.4;
    color: var(--text-secondary);
}
.footer .footer-inner .footer-logo {
    width: 50px;
}
.footer .footer-inner .footer-logo path {
    fill: var(--text-secondary);
}

@media (min-width: 560px) and (max-width: 960px) {
    .footnote-wrap .footnote {
        padding: 40px 24px 80px;
        gap: 16px;
    }

    .footnote .footnote-title {
        margin-bottom: -16px;
    }
}

@media (min-width: 1200px) {
    .footnote-wrap .footnote {
        padding: 40px 24px 80px;
        gap: 16px;
    }

    .footnote .footnote-title {
        margin-bottom: -16px;
    }
}

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

/* =================================
        ORNAMENTS WRAPPER
================================= */
.ornaments-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}
.image-wrap {
    position: relative;
    width: 100%;
}
.image-wrap img {
    width: 100%;
    height: auto;
    max-width: 100%;
}



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

}

/* .hadiah-wrap .hadiah-card, .kat__cropper-modal.kado{
    background-color: rgba(var(--background-secondary-rgb), .5);
} */
.hadiah-card-button, .buying-kado-btn, .kado-send-btn{
    background-color: rgba(var(--button-background-secondary-rgb), 0.4) !important;
    color: var(--text-secondary) !important;
    cursor: pointer !important;
    border: none !important;
    font-family: var(--body-text-family) !important;
    border-radius: 4px !important;
    font-size: var(--body-text-size);
}

.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;
}
.modal-confirm-header .title{
    font-size: 24px;
}
.confirm-kado-btn{
    border: none !important;
    outline: none !important;
    border: 1px solid  rgba(var(--button-background-secondary-rgb), 0.4) !important;
    color:  rgba(var(--button-background-secondary-rgb), 0.4) !important;
    font-family: var(--body-text-family) !important;
    width: 100%;
    border-radius: 4px !important;
    font-weight: 500 !important;
}

.confirm-kado-btn:hover{
    background-color: rgba(var(--button-background-secondary-rgb), 0.4) !important;
    color: var(--button-text-secondary) !important;
}

.hadiah-card-button:hover, .buying-kado-btn:hover, .kado-send-btn:hover{
    background-color: rgba(var(--button-background-secondary-rgb), 0.2) !important;
    color: var(--button-text-secondary) !important;
}

.wedding-gift-address-label, .inner-address-info{
    font-family: var(--body-text-family) !important;
    color: var(--text-secondary) !important;
    font-weight: calc(var(--body-text-weight) - 100) !important;
    font-size: var(--body-text-size) !important;
}

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


.btn-hadiah-copy{
    color: var(--text-secondary) !important;
    border: 1px solid var(--text-secondary) !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: calc(var(--body-text-size) - 2px) !important;
    color: #CB3A31 !important;
    padding: 4px !important;
    font-weight: 500 !important;
}

.hadiah-card-amount, .hadiah-card-amount .total-amount{
    font-weight: 500 !important;
    font-size: calc(var(--body-text-size) - 4px) !important;
}

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

.wedding-gifts-title{
    /* font-size: var(--heading-size);
    line-height: 1;
    margin-bottom: 0.25em;
    color: var(--text-primary); */
}

.wedding-gifts-description{
    /* font-family: var(--ff-02);
    font-size: clamp(16px, 2vw, 18px);
    line-height: clamp(26px, 2.4vw, 28px);
    color: var(--white-clr);
    font-style: italic; */
}



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

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