/* Senandika */
body.senandika {
    /* Heading Family */
    --heading-family: 'Great Vibes', handwriting;
    --heading-style: normal;
    --heading-weight: 500;
    --heading-size: 44px;
    --heading-lettercase: none;

    /* Body Text */
    --body-text-family: 'Noto Sans JP', sans-serif;
    --body-text-style: normal;
    --body-text-weight: 400;
    --body-text-size: 15px;
    --body-text-lettercase: none;

    /* Font Size Extra */
    --fs-extra-1: 2px;
    --fs-extra-2: 14px;
    --fs-extra-3: 16px;
    --fs-extra-4: 20px;
    --fs-extra-5: 74px;

    /* Configs */
    overflow: hidden;
    --body-height: 100vh;
}


/* Camel */
body.senandika.camel {
    /* Ornaments */
    --flower-01: url("https://katsudoto.id/media/template/biasa-01/01/flower-01.png");
    --flower-02: url("https://katsudoto.id/media/template/biasa-01/01/flower-02.png");

    --line-01: url("https://katsudoto.id/media/template/biasa-01/01/line-01.png");
    --line-02: url("https://katsudoto.id/media/template/biasa-01/01/line-02.png");
    --line-01-md: url("https://katsudoto.id/media/template/biasa-01/01/line-01-md.png");
    --line-02-md: url("https://katsudoto.id/media/template/biasa-01/01/line-02-md.png");
    --orn-01: url("https://katsudoto.id/media/template/biasa-01/01/orn-01.png");

    --bg-lg-01: url("https://katsudoto.id/media/template/biasa-01/01/bg-lg-01.jpg");
    --bg-md-01: url("https://katsudoto.id/media/template/biasa-01/01/bg-md-01.jpg");
    --bg-sm-01: url("https://katsudoto.id/media/template/biasa-01/01/bg-sm-01.jpg");
}

/* Orchid */
body.senandika.orchid {
    /* Ornaments */
    --flower-01: url("https://katsudoto.id/media/template/biasa-01/02/flower-01.png");
    --flower-02: url("https://katsudoto.id/media/template/biasa-01/02/flower-02.png");

    --line-01: url("https://katsudoto.id/media/template/biasa-01/02/line-01.png");
    --line-02: url("https://katsudoto.id/media/template/biasa-01/02/line-02.png");
    --line-01-md: url("https://katsudoto.id/media/template/biasa-01/02/line-01-md.png");
    --line-02-md: url("https://katsudoto.id/media/template/biasa-01/02/line-02-md.png");
    --orn-01: url("https://katsudoto.id/media/template/biasa-01/02/orn-01.png");

    --bg-lg-01: url("https://katsudoto.id/media/template/biasa-01/02/bg-lg-01.jpg");
    --bg-md-01: url("https://katsudoto.id/media/template/biasa-01/02/bg-md-01.jpg");
    --bg-sm-01: url("https://katsudoto.id/media/template/biasa-01/02/bg-sm-01.jpg");
}

/* Olive */
body.senandika.olive {
    /* Ornaments */
    --flower-01: url("https://katsudoto.id/media/template/biasa-01/03/flower-01.png");
    --flower-02: url("https://katsudoto.id/media/template/biasa-01/03/flower-02.png");

    --line-01: url("https://katsudoto.id/media/template/biasa-01/03/line-01.png");
    --line-02: url("https://katsudoto.id/media/template/biasa-01/03/line-02.png");
    --line-01-md: url("https://katsudoto.id/media/template/biasa-01/03/line-01-md.png");
    --line-02-md: url("https://katsudoto.id/media/template/biasa-01/03/line-02-md.png");
    --orn-01: url("https://katsudoto.id/media/template/biasa-01/03/orn-01.png");

    --bg-lg-01: url("https://katsudoto.id/media/template/biasa-01/03/bg-lg-01.jpg");
    --bg-md-01: url("https://katsudoto.id/media/template/biasa-01/03/bg-md-01.jpg");
    --bg-sm-01: url("https://katsudoto.id/media/template/biasa-01/03/bg-sm-01.jpg");
}

body.senandika sup {
    font-family: inherit;
    font-size: 0.7em;
    color: inherit;
}


@media only screen and (min-width: 768px) {
    body.senandika {
        --heading-size: 55px;
        --body-text-size: 16px;
    }
}


/* Top Cover */
.top-cover {
    background-color: var(--background-tertiary);
    width: 100%;
    height: var(--body-height);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
    opacity: 1;
    
    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);
}
.top-cover.hide {
    top: -120%;
    bottom: 120%;
    pointer-events: none;
}
.top-cover .inner {
    width: 100%;
    height: 100%;    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}
.top-cover .inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(
                            to bottom,
                            rgba(0, 0, 0, 0.7),
                            rgba(0, 0, 0, 0.7),
                            rgba(0, 0, 0, 0.7)
                        );
}
.top-cover .inner .details {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px 10px;
    position: relative;
    z-index: 1;
}
.top-cover .inner .details > div {
    width: 100%;
    display: block;
    text-align: center;
    padding: 10px;
}

.top-cover .inner .details .text-01 {
    font-family: var(--body-text-family);
    font-weight: 900;
    font-size: calc(var(--body-text-size) + var(--fs-extra-4) + 30px);
    color: var(--text-secondary);
    line-height: 1.2;

    margin: 0px 0px 0.25em;
}
.top-cover .inner .details .text-01 > br {
    content: '';
}
.top-cover .inner .details .text-01 > br::after {
    content: ' ';
}

@media only screen and (max-width: 600px) {

    .top-cover .inner .details > div {
        text-align: left;
    }
    .top-cover .inner .details .text-01 {
        /* font-size: calc(var(--body-text-size) + var(--fs-extra-4) + 40px); */
    }
    .top-cover .inner .details .text-01 > br {
        display: block;
    }
    .top-cover .inner .details .text-01 > br::after {
        content: '';
    }

}

.top-cover .inner .details .text-02 {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: var(--body-text-size);
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--text-secondary);

    letter-spacing: 0px;
    margin: 0px 0px 5px;
}

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

.top-cover .inner .details .link-01 {
    font-family: var(--body-text-family);
    font-weight: 500;
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));

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

    text-decoration: none;
    display: inline-block;
    padding: 0.4em 1em;
    border-radius: 4px;
    margin: 0;
    box-shadow: -1px 1px 5px rgba(var(--button-background-primary-rgb), 0.2);
    transition: background-color 0.35s ease-in-out;
}
.top-cover .inner .details .link-01:hover {
    background-color: rgba(var(--button-background-primary-rgb), .7);

}

.top-cover > .cover-show {
    width: 100%!important;
    height: 100%!important;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    background: var(--background-secondary);
}
.top-cover > .cover-show .slick-list {
    width: 100%!important;
    height: 100%!important;
}
.top-cover > .cover-show .slick-track {
    width: 100%!important;
    height: 100%!important;
    position: relative!important;
}
.top-cover > .cover-show .picture-outer {
    width: 100%!important;
    height: 100%!important;
    position: absolute!important;
    top: 0!important;
    left: 0!important;
}
.top-cover > .cover-show .picture-outer img {
    width: 100%!important;
    height: 100%!important;
    display: block;
    object-fit: cover;
    object-position: center;
}


@keyframes zoom-out {
    0% {
        transform: scale(1);
    }
    70% {
        transform: scale(1.4);
    }
    100% {
        transform: scale(1);
    }
}



/* COVER */
.cover {
    width: 100%;
    background: var(--background-secondary);
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}
.cover .cover-inner {
    background: transparent;
    width: 100%;
    min-height: var(--body-height);
    padding: 20px 0;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cover .cover-inner::before {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--background-tertiary-rgb), 0.9);
}
.cover .cover-greet {
    display: block;
    text-align: center;
    padding: 10px;
    color: var(--text-secondary);
    position: relative;
    z-index: 10;
    width: 100%;
}
.cover .cover-greet .logo {
    width: 55px;
    max-height: 50px;
    object-fit: contain;
    object-position: center;
    display: block;
    margin: 0 auto;
}

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

    .cover .cover-greet .logo {
        width: 80px;
    }

}

.cover .cover-picture {
    margin: 10px auto;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.cover .cover-picture > .cover-show {
    max-width: 1024px;
    max-height: calc(1024px / 2);

    width: calc(((var(--body-height) * 55) / 100) * 2);
    height: calc((var(--body-height) * 55) / 100);

    overflow: hidden;    
    display: block;
    margin: 0 auto;
}
.cover .cover-picture > .cover-show .slick-list {
    width: 100%!important;
    height: 100%!important;
}
.cover .cover-picture > .cover-show .slick-track {
    width: 100%!important;
    height: 100%!important;
    position: relative!important;
}
.cover .cover-picture > .cover-show .picture-outer {
    width: 100%!important;
    height: 100%!important;
    overflow: hidden;
    top: 0;
    left: 0;
    position: absolute!important;
    background: var(--background-secondary);
}
.cover .cover-picture > .cover-show .picture-outer .picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.cover .cover-picture > .cover-show .picture-outer .picture[src*=".png"] {
    object-fit: contain;
}

.cover .cover-bridegroom {
    display: block;
    text-align: center;
    padding: 5px 10px;
    color: var(--text-secondary);
    position: relative;
    z-index: 10;
    width: 100%;
}
.cover .cover-bridegroom h1 {
    font-family: var(--body-text-family);
    font-weight: 900;
    font-size: calc(var(--body-text-size) + var(--fs-extra-4));
    color: var(--text-secondary);

    margin: 0.15em 0px 0.25em;
}
.cover .cover-bridegroom p {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);

    letter-spacing: 1px;
}
.cover .cover-bridegroom p.text-02 {
    margin-bottom: 1em;
}
.cover .cover-bridegroom p.text-03 {
    font-weight: 600;
    margin-bottom: 0px;
    letter-spacing: 3px;
    text-transform: uppercase;
    transform: scaleY(1.1);
}
.cover .cover-inner > .cover-show {
    position: absolute;
    overflow: hidden;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: var(--background-secondary);
}
.cover .cover-inner > .cover-show .slick-list {
    width: 100%!important;
    height: 100%!important;
}
.cover .cover-inner > .cover-show .slick-track {
    width: 100%!important;
    height: 100%!important;
    position: relative!important;
}
.cover .cover-inner > .cover-show .picture-outer {
    width: 100%!important;
    height: 100%!important;
    overflow: hidden;
    top: 0;
    left: 0;
    position: absolute!important;    
}
.cover .cover-inner > .cover-show .picture-outer .picture {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    background-attachment: fixed;
    filter: blur(2px);
}
.cover .cover-inner > .cover-show .picture-outer .picture[src*=".png"] {
    object-fit: contain;
}



/* BRIDE GROOM */
.bridegroom {
    width: 100%;
    background: var(--background-secondary);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.bridegroom .bridegroom-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.bridegroom .bridegroom-inner .head {
    width: 960px;
    padding: 10px;
    text-align: center;
}
.bridegroom .bridegroom-inner .head h1 {
    font-family: var(--body-text-family);
    font-weight: 700;
    font-size: calc(var(--body-text-size) + var(--fs-extra-2));
    color: var(--text-primary);
    margin-bottom: .5em;
}
.bridegroom .bridegroom-inner .head p {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--text-primary);
}
.bridegroom .bridegroom-inner .body {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    padding: 20px;
    position: relative;
}
.bridegroom .bridegroom-inner .body.bride-first {
    flex-direction: row-reverse;
}
.bridegroom .bridegroom-inner .body .bride,
.bridegroom .bridegroom-inner .body .groom {
    width: min(42.5%, 720px);
    overflow: hidden;
}
.bridegroom .bridegroom-inner .body .bridegroom-border {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px auto;
    position: relative;
    padding: 10px;
    width: 200px;
    height: 250px;
}

@media only screen and (min-width: 768px) {
    .bridegroom .bridegroom-inner .body .bridegroom-border {
        width: 280px;
        height: 350px;
    }
}

.bridegroom .bridegroom-inner .body .bridegroom-border::before {
    content: '';
    position: absolute;
    z-index: 1;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;    
}
.bridegroom .bridegroom-inner .body > div:nth-of-type(1) .bridegroom-border::before,
.bridegroom .bridegroom-inner .body.bride-first  > div:nth-of-type(3) .bridegroom-border::before {
    top: 5%;
    left: -22%;
    background-image: var(--flower-01);
    width: 100%;
    height: 60%;
}
.bridegroom .bridegroom-inner .body > div:nth-of-type(3) .bridegroom-border::before,
.bridegroom .bridegroom-inner .body.bride-first  > div:nth-of-type(1) .bridegroom-border::before {
    top: 5%;
    right: -38%;
    background-image: var(--flower-02);
    width: 100%;
    height: 90%;
}
.bridegroom .bridegroom-inner .body.bride-first  > div:nth-of-type(1) .bridegroom-border::before {
    left: auto;
}
.bridegroom .bridegroom-inner .body.bride-first  > div:nth-of-type(3) .bridegroom-border::before {
    right: auto;
}   
.bridegroom .bridegroom-inner .body .bridegroom-border .bridegroom-picture {
    width: 100%;
    height: 100%;
    background: var(--text-primary);
    border-top-left-radius: 180px;
    border-top-right-radius: 180px;
    object-fit: cover;
    position: relative;
    z-index: 3;
}
.bridegroom .bridegroom-inner .body .bridegroom-separator {
    font-family: var(--body-text-family);
    font-weight: 500;
    font-size: calc(var(--body-text-size) + var(--fs-extra-5));
    color: var(--text-primary);

    padding: 10px;
    position: absolute;
    left: 50%;
    top: 35%;
    transform: translate(-50%,-50%);
}

.bridegroom .bridegroom-inner .body .bridegroom-details {
    text-align: center;
    padding: 20px 10px;
}
.bridegroom .bridegroom-inner .body .bridegroom-details h1 {
    font-family: var(--heading-family);
    font-weight: var(--heading-weight);
    font-size: var(--heading-size);
    font-style: var(--heading-style);
    text-transform: var(--heading-lettercase);
    
    color: var(--text-primary);
    margin-bottom: .1em;
}
.bridegroom .bridegroom-inner .body .bridegroom-details p {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: var(--body-text-size);
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--text-tertiary);

    margin-bottom: .35em;
}
.bridegroom .bridegroom-inner .body .bridegroom-details p.bio {
    font-style: italic;
}
.bridegroom .bridegroom-inner .body .bridegroom-details a {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: var(--body-text-size);
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--text-tertiary);

    text-decoration: none;
}
.bridegroom .bridegroom-inner .body .bridegroom-details a em {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    font-style: inherit;
    text-transform: inherit;
}
.bridegroom .bridegroom-inner .body .bridegroom-details a:hover {
    text-decoration: underline;
    color: var(--sea-clr);
}

/* YOGYA GROUP */
.bridegroom.yogya-group .bridegroom-inner .body {
    padding: 0px;
}
.bridegroom.yogya-group .bridegroom-inner .body .bridegroom-border {
    height: auto;
    margin: 0px auto;
    padding: 0px;
}
.bridegroom.yogya-group .bridegroom-inner .body .bridegroom-border::before {
    content: none;
}
.bridegroom.yogya-group .bridegroom-inner .body .bridegroom-border .bridegroom-picture {
    height: auto;
    border-radius: 0;
}

@media only screen and (min-width: 768px) {
    .bridegroom.yogya-group .bridegroom-inner .body .bridegroom-border {
        height: auto;
    }
}



/* SAVE DATE */
.save-date {
    width: 100%;
    min-height: 200px;
    background: var(--background-tertiary);    
    overflow: hidden;
}
.save-date .save-date-inner {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-image: var(--bg-sm-01);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.save-date .save-date-inner .schedule {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    width: 100%;
    max-width: 640px;
}
.save-date .save-date-inner .schedule .title {
    position: relative;
    text-align: center;
}
.save-date .save-date-inner .schedule .title::before {
    content: '';
    width: 500%;
    height: 100%;
    background-image: var(--line-01);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    position: absolute;
    right: 110%;
    top: 0;
}
.save-date .save-date-inner .schedule .title::after {
    content: '';
    width: 500%;
    height: 100%;
    background-image: var(--line-02);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
    position: absolute;
    left: 110%;
    top: 0;
}
.save-date .save-date-inner .schedule .title h1 {
    font-family: var(--body-text-family);
    font-weight: 500;
    font-size: calc(var(--body-text-size) + var(--fs-extra-3));
    color: var(--text-primary);

    margin-bottom: 0.35em;
    text-transform: uppercase;
    position: relative;
    transform: scaleY(0.9);
}
.save-date .save-date-inner .schedule .title h1 > span {
    font-family: var(--heading-family);
    font-weight: inherit;
    font-size: var(--heading-size);
    font-style: inherit;
    color: inherit;

    text-transform: capitalize;
    position: relative;
    bottom: 0px;
    margin-right: 10px;
    transform: scaleY(1);
}
.save-date .save-date-inner .schedule .countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    column-gap: 40px;
    row-gap: 10px;
}
.save-date .save-date-inner .schedule .countdown > div {
    flex-direction: column;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.save-date .save-date-inner .schedule .countdown > div h1 {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size) + var(--fs-extra-2));
    color: var(--text-primary);

    margin-bottom: .15em;
}
.save-date .save-date-inner .schedule .countdown > div small {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    color: var(--text-primary);
}

.save-date .save-date-inner .foot {
    padding: 10px;
    margin-top: 20px;
}
.save-date .save-date-inner .foot #addToCalendar {
    font-family: var(--body-text-family);
    font-weight: 500;
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));

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

    display: block;
    padding: 7px 18px;
    text-decoration: none;
    border-radius: 7px;    
    transition: background-color .3s ease-in-out, color .3s ease-in-out;
}
.save-date .save-date-inner .foot #addToCalendar:hover {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
}



/* ======================
    STORY
====================== */
section.love-story {
    background-color: var(--background-primary);
    padding: 1.25em 0;
    overflow: hidden;
}
section.love-story .inner {
    padding: 1.25em 0;
}
section.love-story .inner .head {
    padding: 0.75em;
    text-align: center;
}
section.love-story .inner .head h1 {
    font-family: var(--heading-family);
    font-weight: var(--heading-weight);
    font-size: var(--heading-size);
    font-style: var(--heading-style);
    text-transform: var(--heading-lettercase);
    color: var(--text-secondary);

    padding: 0;
    margin-bottom: -0.25em;
}
section.love-story .inner .body {
    padding: 0;
}
section.love-story .inner .body .stories {
    display: flex;
    flex-direction: column;
}
section.love-story .inner .body .stories .story {
    width: 100%;
    max-width: 460px;
    padding: 0.75em 1em;
    margin: 0 auto;
    margin-bottom: 1.5em;
}
section.love-story .inner .body .stories .story:last-of-type {
    margin-bottom: 0;
}
section.love-story .inner .body .stories .story .preview {
    width: 100%;
    text-align: center;
    padding: 0.5em;
    position: relative;
}
section.love-story .inner .body .stories .story .preview .picture {
    position: relative;
    z-index: 1;
    background-color: var(--background-tertiary);
    width: 100%;
    height: 230px;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}
section.love-story .inner .body .stories .story .preview .picture::before {
    content: '';
    position: absolute;
    z-index: 5;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border: 2px solid transparent;
    border-radius: inherit;
    pointer-events: none;
}
section.love-story .inner .body .stories .story .preview .picture > a {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: inherit;
}
section.love-story .inner .body .stories .story .preview .picture img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
}
section.love-story .inner .body .stories .story .details {
    padding: 0.5em;
    text-align: center;
}
section.love-story .inner .body .stories .story .details h2 {
    font-family: var(--body-text-family);
    font-weight: 700;
    font-size: calc(var(--body-text-size) + var(--fs-extra-2));
    color: var(--text-secondary);
    margin-bottom: 0.4em;
}
section.love-story .inner .body .stories .story .details p {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: var(--body-text-size);
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--text-secondary);
    text-align: justify;
}

@media only screen and (min-width: 426px) {
    section.love-story .inner .body .stories .story .preview .picture {
        height: 255px;
    }
}

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

    section.love-story .inner .head {
        margin-bottom: 1.25em;
    }
    section.love-story .inner .body .stories {
        padding-bottom: 0.75em;
    }
    section.love-story .inner .body .stories .story {
        max-width: 920px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: row;
        margin-bottom: 2.25em;
    }
    section.love-story .inner .body .stories .story:nth-child(even) {
        flex-direction: row-reverse;
    }
    section.love-story .inner .body .stories .story .preview {
        margin-right: auto;
        margin-left: 0;
        margin-bottom: auto;
        padding: 0;
        width: 48%;
    }
    section.love-story .inner .body .stories .story .preview .picture {
        height: 280px;
    }
    section.love-story .inner .body .stories .story .preview .picture::before {
        width: calc(100% + 3px);
        height: calc(100% + 3px);
        border-width: 3px;
    }
    section.love-story .inner .body .stories .story:nth-child(even) .preview {
        margin-left: auto;
        margin-right: 0;
    }    
    section.love-story .inner .body .stories .story .details {
        width: 50%;
        text-align: left;
        padding: 1.25em;
        padding-bottom: 1.75em;
        padding-top: 0;
    }
    section.love-story .inner .body .stories .story:nth-child(even) .details {
        text-align: right;
    }

}



/* GALLERY */
.gallery,
.video-gallery {
    background-color: var(--background-primary);
}
.gallery > .title {
    color: var(--text-secondary);
}
.video-gallery .inner > .title {
    padding: 10px;
    margin-bottom: 10px;
}
.gallery > .title h1,
.video-gallery .inner > .title h1 {
    font-family: var(--heading-family);
    font-weight: var(--heading-weight);
    font-size: var(--heading-size);
    font-style: var(--heading-style);
    text-transform: var(--heading-lettercase);
    color: var(--text-secondary);

    margin-bottom: 0;
}
.gallery > .title p,
.video-gallery .inner > .title p {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--text-secondary);
}
.video-gallery .inner .video-outer .video > .title h2 {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--text-secondary);
    text-align: center;
}



/* EVENT */
.event-outer {
    position: relative;
    background: var(--background-secondary);
    overflow: hidden;
}
.event-outer .event-inner {
    
}
.event-outer .event-inner .head {
    padding: 10px 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.event-outer .event-inner .head::before {
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: 2;
    background: rgba(var(--background-primary-rgb), 0.7);
}
.event-outer .event-inner .head > .title {
    width: 960px;
    text-align: center;
    padding: 20px;
    margin: auto;
    position: relative;
    z-index: 3;
}
.event-outer .event-inner .head > .title h1 {
    font-family: var(--body-text-family);
    font-weight: 700;
    font-size: calc(var(--body-text-size) + var(--fs-extra-2));
    color: var(--text-secondary);
    margin-bottom: .25em;
} 
.event-outer .event-inner .head > .title p {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--text-secondary);
}
.event-outer .event-inner .head .cover-show {
    width: 100%;
    height: var(--body-height);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    overflow: hidden;
}
.event-outer .event-inner .head .cover-show .slick-list {
    width: 100%!important;
    height: 100%!important;
}
.event-outer .event-inner .head .cover-show .slick-track {
    width: 100%!important;
    height: 100%!important;
    position: relative!important;
}
.event-outer .event-inner .head .cover-show .picture-outer {
    width: 100%!important;
    height: var(--body-height)!important;
    overflow: hidden;
    top: 0;
    left: 0;
    position: absolute!important;
}
.event-outer .event-inner .head .cover-show .picture-outer .picture {
    width: 100%;
    height: 100%;
    background-image: var(--cover);
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    animation: cover-top-to-bottom 10s infinite;
}
.event-outer .event-inner .body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
}
.event-outer .event-inner .body .event {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}
.event-outer .event-inner .body .event > .title {
    width: 640px;
    padding: 12px 20px 20px 20px;
    margin: 0 auto ;
    position: relative;
    text-align: center;
    background: var(--background-tertiary);
    width: 100%;
    text-align: center;
}
.event-outer .event-inner .body .event > .title > h1 {
    font-family: var(--body-text-family);
    font-weight: 700;
    font-size: calc(var(--body-text-size) + var(--fs-extra-4));
    color: var(--text-secondary);    
    margin-bottom: .25em;
}
.event-outer .event-inner .body .event > .title > p {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--text-secondary);
    margin-bottom: .25em;
}
.event-outer .event-inner .body .event > .details {
    width: 640px;
    /* margin-top: 10px; */
    padding: 0px 10px;
    text-align: center;
}
.event-outer .event-inner .body .event > .details .address {
    text-align: center;
    margin-bottom: 10px;
    padding: 10px;
}
.event-outer .event-inner .body .event > .details .address p,
.event-outer .event-inner .body .event > .details .address p strong {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: var(--body-text-size);
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--text-tertiary);
    margin-bottom: .35em;
}
.event-outer .event-inner .body .event > .details a {
    font-family: var(--body-text-family);
    font-weight: 500;
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));

    background-color: transparent;
    border: 1px solid var(--button-background-primary);
    color: var(--button-background-primary);
    
    display: inline-block;
    padding: 7px 18px;
    margin: 0 auto;
    text-decoration: none;
    border-radius: 7px;    
    transition: background-color .3s ease-in-out, color .3s ease-in-out;
}
.event-outer .event-inner .body .event > .details a:hover {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
}

.event-outer .event-inner .body .event .activities {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    position: relative;
    width: 100%;
}
.event-outer .event-inner .body .event .activities::before {
    content: '';
    top: 20px;
    right: -110px;
    position: absolute;
    width: 270px;
    height: 360px;
    transform: scaleX(-1) rotate(10deg);
    background-image: var(--flower-02);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.event-outer .event-inner .body .event .activities::after {
    content: '';
    bottom: 20px;
    left: -160px;
    position: absolute;
    width: 270px;
    height: 360px;
    transform: rotate(120deg);
    background-image: var(--flower-01);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.event-outer .event-inner .body .event .activities .activity {
    border-radius: 12px;
    width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 30px;
    padding: 10px;
    position: relative;
    z-index: 1;
}
.event-outer .event-inner .body .event .activities .activity span {
    font-size: 44px;
    margin-bottom: 0.2em;
    color: var(--text-tertiary);
}
.event-outer .event-inner .body .event .activities .activity > .title {
    text-align: center;
    margin-bottom: 10px;
}
.event-outer .event-inner .body .event .activities .activity > .title h1 {
    font-family: var(--heading-family);
    font-weight: var(--heading-weight);
    font-size: var(--heading-size);
    font-style: var(--heading-style);
    text-transform: var(--heading-lettercase);
    color: var(--text-primary);

    margin-bottom: 0.25em;
}
.event-inner .event .activities .activity .title .activity-icon,
.event-inner .event .activities .activity .title .activity-icon-image {
    width: 65px;
    height: 65px;
    object-fit: contain;
    display: block;
    margin: 0 auto 15px auto;
}
.event-inner .event .activities .activity .title .activity-icon path {
    fill: var(--text-primary);
}
.event-outer .event-inner .body .event .activities .activity > .title p {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--text-tertiary);
    margin-bottom: .75em;
}   
.event-outer .event-inner .body .event .activities .activity > .title p em {
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    font-style: inherit;
    text-transform: inherit;
}
.event-outer .event-inner .body .event .activities .activity .address {
    text-align: center;
}
.event-outer .event-inner .body .event .activities .activity p,
.event-outer .event-inner .body .event .activities .activity p strong {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: var(--body-text-size);
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--text-tertiary);
    margin-bottom: .35em;
}

.event-outer .event-inner .body .event .activities .activity a {
    font-family: var(--body-text-family);
    font-weight: 500;
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));

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

    padding: 7px 18px;
    text-decoration: none;
    border-radius: 7px;    
    margin: 10px auto 10px auto;
    transition: background-color .3s ease-in-out, color .3s ease-in-out;
}
.event-outer .event-inner .body .event .activities .activity a:hover {
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
}


/* ==============================
        Rundown
============================== */
.rundown-container {
    background-color: var(--background-secondary);
}
.rundown-inner .rundown-title {
    font-size: var(--heading-size);
    font-family: var(--heading-family);
    font-weight: var(--heading-weight);
    color: var(--text-primary);
}
.rundown-event-horizontal .rundown-event-horizontal-title {
    font-family: var(--heading-family);
    font-weight: var(--heading-weight);
    color: var(--text-primary);
}
.rundown-agenda-horizontal .rundown-agenda-horizontal-time {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    font-weight: var(--body-text-weight);
    color: var(--text-tertiary);
}
.rundown-agenda-horizontal-content .rundown-agenda-horizontal-text {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    font-weight: var(--body-text-weight);
    color: var(--text-tertiary);
}

/* ==============================
        RSVP
============================== */
/* RESERVATION */
.torsvp__btn-wrap {
    margin-top: 20px;
}
.torsvp__btn {
    font-family: var(--body-text-family);
    font-weight: 500;
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));

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

    padding: 10px 20px;
    letter-spacing: 2px;
}
.torsvp__btn:hover {
    background-color: var(--button-background-primary);
    border: 1px solid var(--button-background-primary);
    color: var(--button-text-primary);
}


/* Wrap */
.rsvp-wrap {
    position: relative;
    overflow: hidden;
    padding: 40px 0px;

    background-image: var(--bg-lg-01);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.rsvp-inner {
    padding: 36px 0px;
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

/* Head */
.rsvp-head {    
    text-align: center;
    padding: 0px 20px;
    margin-top: 20px;
}
.rsvp-head .rsvp-title {
    font-family: var(--body-text-family);
    font-weight: 700;
    font-size: calc(var(--body-text-size) + var(--fs-extra-2));
    color: var(--text-tertiary);
    letter-spacing: 2px;
}
.rsvp-head .rsvp-info .info-text,
.rsvp-head .rsvp-info .info-date {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    color: var(--text-tertiary);
}

/* Body */
.rsvp-body {
    padding: 0px 20px;
    margin-top: 40px;
}

.rsvp-confirm-step {
    display: none;
}

/* RSVP Status */
.rsvp-status-wrap {
    margin-bottom: 40px;
}
.rsvp-status-head {
    padding: 0px;
    text-align: center;
}
.rsvp-status-head .rsvp-status-caption {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--text-tertiary);
}
.session-caption-wrap .caption{
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--text-tertiary);
}

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

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

.rsvp-amount-head {    
    text-align: center;
    padding: 0px;
}
.rsvp-amount-head .rsvp-amount-caption {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: var(--body-text-size);
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    margin-bottom: 10px;
    color: var(--text-tertiary);
}

.rsvp-amount-body {
    
}

/* Amount Controller */
.rsvp-amount-controller-wrap {
    padding: 0px;
}
.rsvp-amount-controller {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
}

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

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

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

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

.form-control.group-guest,
.form-control.member-input,
.rsvp-amount-controller .input-control {
    font-family: var(--body-text-family);
    font-weight: 400;
    font-size: var(--body-text-size);
    
    background-color: var(--background-secondary);
    border: 1px solid var(--background-primary);
    color: var(--text-tertiary);

    width: 100%;
    height: 40px;
    margin: 0px auto;
    border-radius: 4px;
    
    text-align: center;
   
}

.rsvp-amount-controller .input-control {
    -webkit-appearance: none;
    -moz-appearance: none;
            appearance: none;
     pointer-events: none;

}

/* RSVP Confirm */
.rsvp-confirm-wrap {
    padding: 0px;
    text-align: center;
}

.rsvp-confirm-wrap label {
    display: block;
    margin-top: 10px;
}
.rsvp-confirm-btn {
    width: 100%;
    display: block;
    padding: 10px 25px;
    margin: 0px auto;
    border-radius: 7px;

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

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

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

/* Session */
.session-btn-wrap input[name="selected_event[]"]:checked + .rsvp-session-btn, .session-btn-wrap input[name="selected_event_all"]:checked +  .rsvp-session-btn{
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
}
.rsvp-session-btn{
    font-weight: 300;
    font-family: var(--ff-02);
    font-size: var(--fs-md-content);
    border-radius: 4px;
    background-color: var(--button-background-secondary);
    color: var(--button-text-secondary);
}

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

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

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

.rsvp-confirm-btn.download {
    border-color: var(--button-background-primary);
    background-color: var(--button-background-primary);
    color: var(--button-text-primary);
    width: auto;
    display: inline-block;
    vertical-align: top;
}
.rsvp-confirm-btn.download:hover {
    border-color: var(--background-tertiary);
    background-color: var(--background-tertiary);
    color: var(--button-text-primary);
}

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


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

/* RSVP Message */
.rsvp-message-wrap {
    margin-top: 60px;
}
.rsvp-message-content {
    background-color: transparent;
    text-align: center;
}
.rsvp-message-icon {
    width: 30px;
    height: auto;
    display: none;
    margin: 0 auto 20px;
}
.rsvp-message-wrap .rsvp-message-title {
    font-family: var(--body-text-family);
    font-weight: 700;
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    color: var(--text-tertiary);
    margin-bottom: 10px;
}
.rsvp-message-wrap .rsvp-message-caption {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: var(--body-text-size);
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--text-tertiary);
}

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

/* ornament */
.rsvp-wrap .rsvp-orn {
    width: 640px;
    height: 50px;
    display: flex;
    margin: 10px auto;
    background-image: var(--orn-01);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/* Media Query */
@media only screen and (max-width: 720px) {
    .rsvp-wrap .rsvp-orn {
        width: 90%;
    }
}



/*  ===================================
    Live Streaming 
=================================== */
section.live-streaming {
    background-color: var(--background-secondary);
    padding: 30px 0 10px 0;
}
section.live-streaming > .inner > .head > h1 {
    font-family: var(--body-text-family);
    font-weight: 700;
    font-size: calc(var(--body-text-size) + var(--fs-extra-2));
    color: var(--text-primary);
    letter-spacing: 2px;
}
section.live-streaming > .inner > .head > p {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--text-tertiary);
}
.live-streaming .inner .body p {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: var(--body-text-size);
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--text-tertiary);
}
.live-streaming .inner .body p.meeting-text {
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
}
.live-streaming .inner .body > .streaming-info > div.link > a {
    font-family: var(--body-text-family);
    font-weight: 500;
    font-size: var(--body-text-size);

    padding-top: 10px;
    padding-bottom: 10px;

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


/* ======================
    INSTAGRAM FILTER
====================== */
.ig-filter-wrap {
    background-color: var(--background-secondary);
}
.ig-filter {
    width: 100%;
    max-width: 640px;
}
.ig-filter-title {
    font-family: var(--body-text-family);
    font-weight: 700;
    font-size: calc(var(--body-text-size) + var(--fs-extra-2));
    color: var(--text-primary);
    letter-spacing: 2px;
}
.ig-filter-caption {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--text-tertiary);
}
.ig-filter-link {
    font-family: var(--body-text-family);
    font-weight: 500;
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));

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


/* ======================
    GIFT
====================== */
section.gift {
    background: var(--background-secondary);
    padding: 10px 0 40px 0;
    overflow: hidden;
}
section.gift .gift-inner {
    padding: 0.5em 1em;
}
section.gift .gift-inner .gift-title {
    padding: 0.75em 0;
    margin-bottom: 0.75em;
}
section.gift .gift-inner .gift-title h1 {
    font-family: var(--body-text-family);
    font-weight: 700;
    font-size: calc(var(--body-text-size) + var(--fs-extra-2));
    color: var(--text-primary);
    letter-spacing: 2px;
}
section.gift .gift-inner .gift-title p {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--text-tertiary);
}
section.gift .gift-inner .gift-form {
    margin-bottom: 0.75em;
}

section.gift label,
section.gift input,
section.gift textarea,
section.gift button,
section.gift div,
section.gift p,
section.gift span {
    font-family: var(--body-text-family);
    font-size: var(--body-text-size);
    color: var(--text-tertiary);
}
.gift label.form-label.center {
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    font-family: var(--body-text-family);
}
.gift .gift-inner .gift-form .gift-picture .picture-detail .head h2 {
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    color: var(--text-tertiary);
}
.gift .gift-inner .gift-form .gift-picture .picture-detail .gift-back,
.gift .gift-inner .gift-form .gift-picture .picture-detail .head p {
    font-size: var(--body-text-size);
}
.gift .gift-inner .gift-form .selectize-control .item {
    padding: 0.75em!important;
}
.gift .gift-inner .gift-form .selectize-control .item p,
.gift .gift-inner .gift-form .selectize-control .item p strong {
    font-family: var(--body-text-family)!important;
    color: var(--text-tertiary)!important;
    font-weight: normal!important;
}
.gift .gift-inner .gift-form .selectize-control .item:hover {
    background-color: var(--background-primary)!important;
}
.gift .gift-inner .gift-form .selectize-control .item:hover p,
.gift .gift-inner .gift-form .selectize-control .item:hover p strong {
    color: var(--text-secondary)!important;
}
.gift .gift-inner .gift-form .gift-details .bank-detail .saving-books .copy-account {
    border-color: var(--background-primary);
    color: var(--text-primary);
}
.gift .gift-inner .gift-form .gift-details .bank-detail .saving-books .copy-account:hover {
    background: var(--background-primary);
    color: var(--text-secondary);
}
.gift .gift-inner .gift-form .gift-picture .picture-detail .body div[data-upload="gift-picture"]::before {
    border-color: var(--background-tertiary);
}
.gift .gift-inner .gift-form .gift-picture .picture-detail .body div[data-upload="gift-picture"] > i {
    color: var(--text-tertiary);
}
.gift .gift-inner .gift-form .gift-submit,
.gift .gift-inner .gift-form .gift-next {
    font-family: var(--body-text-family);
    font-weight: 500;
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    background: var(--button-background-primary);
    color: var(--button-text-primary);
}
.gift .gift-inner .gift-form .gift-submit:hover,
.gift .gift-inner .gift-form .gift-next:hover {
    background-color: rgba(var(--button-background-primary-rgb), .7);
    color: var(--button-text-primary);
}

/* Tanpa Nominal Konfigurasi */
section.gift .gift-inner .gift-form .gift-details .bank-detail {
    padding-bottom: 0.5em;
}
section.gift .gift-inner .gift-form .gift-details .bank-detail .saving-books {
    margin-bottom: 0;
}
section.gift .gift-inner .gift-form .bio-detail {
    padding-top: 0.5em;
}

/* No Form */
section.gift.no-form {
    overflow: visible;
}
section.gift.no-form .gift-inner .gift-form {
    overflow: visible;
}



/* PROTOCOL */
.protocol.protocol-01 .inner .head h1,
.protocol.protocol-03 .inner .head h1 {
    font-family: var(--body-text-family);
    font-weight: 700;
    font-size: calc(var(--body-text-size) + var(--fs-extra-2));
    text-transform: uppercase;
}

section.protocol-04 .inner .head .title {
    font-family: var(--body-text-family);
    font-weight: 700;
    font-size: calc(var(--body-text-size) + var(--fs-extra-2));
    color: var(--text-primary);
    letter-spacing: 2px;
}
section.protocol-04 + .comment-outer {
    padding-top: 20px;
}

.protocol.protocol-01 .inner .head p,
.protocol.protocol-03 .inner .head p {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    margin-bottom: .15em;
}

@media only screen and (max-width: 600px) {
    .protocol.protocol-01 .inner .head p > br,
    .protocol.protocol-03 .inner .head p > br {
        display: block;
    }
}


/* Protocol 03 */
.protocol.protocol-03 .inner .body .slider .content .text-01 {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: calc(var(--body-text-size) + var(--fs-extra-1)) !important;
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: rgba(var(--text-tertiary-rgb), .7);
}
.protocol.protocol-03 .inner .body .slider .slick-center .content .text-01 {
    color: var(--text-tertiary);
}
.protocol.protocol-03 .inner .body .slider_dots::before {
    border-color: var(--background-primary)!important;
}
.protocol.protocol-03 .inner .body .slider_dots .slider_navigator {
    background-color: rgba(var(--background-tertiary-rgb), .7);
}
.protocol.protocol-03 .inner .body .slider_dots .slider_navigator.slick-current.slick-center {
    background-color: var(--background-primary)!important;
}



/* COMMENT */
.comment-outer .comment-inner h1 {
    font-family: var(--body-text-family);
    font-weight: 700;
    font-size: calc(var(--body-text-size) + var(--fs-extra-2));
    color: var(--text-primary);
}
.comment-outer .comment-inner .head p {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--text-tertiary);
}
.comment-outer .comment-inner .more-comment,
.comment-form button,
.comment-form input,
.comment .comment-head p,
.comment .comment-head p strong,
.comment .comment-body p {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: var(--body-text-size);
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
}
.comment .comment-foot small,
.comment .comment-foot a {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: calc(var(--body-text-size) - 3px);
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--dark-clr);
}

#comment-form * {
    font-family: var(--body-text-family);
}

/* Quote */
.quote-end {
    background-color: var(--background-secondary);
}
.quote-end .quote-end-inner p {
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--text-tertiary);
}

/* CATATAN */
.notes-container {
    background-color: var(--background-secondary);
}
.note .note-title {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size) + var(--fs-extra-2));
    font-weight: 700;
    color: var(--text-primary);
}

.note .note-description {
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    color: var(--text-tertiary);
}

/* FOOTNOTE */
.footnote {
    background: var(--background-secondary);
    width: 100%;
}
.footnote .footnote-inner {
    max-width: 640px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px 20px;
    margin: 0 auto;
    text-align: center;
    overflow: hidden;
}
.footnote .footnote-inner h1 {
    font-family: var(--heading-family);
    font-weight: var(--heading-weight);
    font-size: var(--heading-size);
    font-style: var(--heading-style);
    text-transform: var(--heading-lettercase);
    color: var(--text-primary);

    margin-bottom: .5em;
    text-align: center;
}
.footnote .footnote-inner p {
    font-family: var(--body-text-family);
    font-weight: 600;
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    font-style: var(--body-text-style);
    text-transform: uppercase;
    color: var(--text-tertiary);
    letter-spacing: 3px;
}


/* Footer */
.footer .footer-inner p {
    font-family: var(--body-text-family);
    font-weight: normal;
    font-size: var(--body-text-size);
}

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

@media only screen and (max-width: 960px) {
    section.footer .footer-inner.flex-column {
        flex-direction: column;
        padding-top: 80px;
        padding-bottom: 150px;
    }
    section.footer .footer-inner.flex-column p {
        margin-right: 0;
        font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    }
    section.footer .footer-inner.flex-column .footer-logo {
        margin-top: 10px;
        width: 150px;
    }
}


/* DESKTOP MINIMUM SCREEN SIZE */
@media only screen and (max-width: 1024px) {

    /* COVER */
    .cover .cover-picture > .cover-show {
        max-width: 600px;
        max-height: calc(600px / 2);
    }

    /* BRIDE GROOM */
    .bridegroom {
        background: var(--background-secondary);
        padding: 30px 10px;
    }
    .bridegroom .bridegroom-inner .head {
        width: 100%;
        padding: 20px;
    }
    .bridegroom .bridegroom-inner .body {
        width: 100%;
        padding: 10px;
    }
    .bridegroom .bridegroom-inner .body .bridegroom-border {
        margin: 10px auto;
        padding: 10px;
    }
    .bridegroom .bridegroom-inner .body .bridegroom-details {
        padding: 10px;
    }

    /* YOGYA GROUP */
    .bridegroom.yogya-group .bridegroom-inner .body {
        padding: 0px;
    }
    .bridegroom.yogya-group .bridegroom-inner .body .bridegroom-border {
        margin: 0px auto;
        padding: 0px;
    }

    /* EVENT */
    .event-outer .event-inner .head::before {
        background: rgba(var(--background-primary-rgb), 0.7);
    }
    .event-outer .event-inner .head > .title {
        width: 100%;
    }


}

@media only screen and (max-width: 835px) {

    /* Event */
    .event-outer .event-inner .body .event .activities .activity {
        width: 100%;
        margin: 15px 0px;
    }
    .event-outer .event-inner .body .event > .details {
        width: 100%;
    }
    .event-outer .event-inner .body .event .activities::before {
        content: '';
        top: 20px;
        right: -80px;
        width: 180px;
        height: 240px;
    }
    .event-outer .event-inner .body .event .activities::after {
        left: -75px;
        width: 180px;
        height: 240px;
    }

}

@media only screen and (max-width: 680px) {

    .cover .cover-picture > .cover-show {
        max-width: 80vw;
        max-height: calc((var(--body-height) * 60) / 100);
        width: calc(((var(--body-height) * 100) / 100) / 2);
        height: calc((var(--body-height) * 60) / 100);
    }


    /* Couple */
    .bridegroom .bridegroom-inner .body {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .bridegroom .bridegroom-inner .body.bride-first {
        flex-direction: column-reverse;
    }
    .bridegroom .bridegroom-inner .body .bride,
    .bridegroom .bridegroom-inner .body .groom {
        width: 100%;
    }
    .bridegroom .bridegroom-inner .body .bridegroom-separator {
        position: relative;
        top: 0;
        left: 0;
        transform: translate(0,0);
    }

}

@media only screen and (max-width: 600px) {
    
    .comment-outer .comment-inner h1 {
        margin-bottom: 0;
    }

    /* Footnote */
    .footnote .footnote-inner {
        width: 100%;
    }
    
}

@media only screen and (max-width: 600px) {

    /* BRIDE GROOM */    
    .bridegroom .bridegroom-inner .body {
        padding: 10px;
        margin-bottom: 50px;
    }

    /* YOGYA GROUP */
    .bridegroom.yogya-group .bridegroom-inner .body {
        padding: 0px;
    }

    /* SAVE DATE */
    .save-date .save-date-inner .schedule {
        width: 100%;
    }
    .save-date .save-date-inner .schedule .title::before {
        background-image: var(--line-01-md);
        right: 110%;
        width: 150%;
    }
    .save-date .save-date-inner .schedule .title::after {
        background-image: var(--line-02-md);
        left: 110%;
        width: 150%;
    }
    .save-date .save-date-inner .schedule .countdown {
        width: 100%;
        column-gap: 20px;
        row-gap: 10px;
    }

}

/* ANIMTAION(S) */
@keyframes cover-top-to-bottom {
    0% {
        background-position: top;
        transform: scale(1);
    }
    80% {
        background-position: bottom;
        transform: scale(1.2);
    }
    100% {
        background-position: center;
    }
}

@-webkit-keyframes cover-top-to-bottom {
    0% {
        background-position: top;
        transform: scale(1);
    }
    80% {
        background-position: bottom;
        transform: scale(1.2);
    }
    100% {
        background-position: center;        
    }
}


@media only screen and (max-width: 720px) {
    /* RSVP */
    .rsvp .rsvp-orn {
        width: 90%;
    }

    /* Agenda */
    .event-outer .event-inner .body .event > .title {
        width: 100%;
    }
}



/* KADO */
.container.wedding-gifts-wrap{
    background: var(--background-secondary) !important;
    width: 100%;
    /* padding: 50px 20px; */
    position: relative;
}
.hadiah-card-button, .buying-kado-btn, .kado-send-btn{
    background-color: var(--button-background-primary) !important;
    color: var(--button-text-primary) !important;
    cursor: pointer !important;
    border: none !important;
    font-family: var(--ff-02) !important;
    border-radius: 4px !important;
    font-size: calc(var(--body-text-size) + var(--fs-extra-1)) !important;
}

.modal-kado-header .title, .modal-confirm-header .title, .modal-kado-header .address, .modal-kado-header .caption, .img-caption{
    font-family: var(--ff-02) !important;
    color: inherit;
    /* font-size: 32px; */
}

.modal-kado-header .address, .modal-kado-header .caption{
    font-size: var(--body-text-size) !important;
}
.modal-kado-header .title,
.modal-confirm-header .title, .img-caption{
    font-size: calc(var(--body-text-size) + 4px) !important;
}
.confirm-kado-btn{
    border: none !important;
    outline: none !important;
    border: 1px solid  var(--button-background-primary) !important;
    color:  var(--button-background-primary) !important;
    font-family: var(--ff-02) !important;
    width: 100%;
    border-radius: 4px !important;
    font-weight: 500 !important;
}

.confirm-kado-btn:hover{
    background-color: var(--button-background-primary) !important;
    color: var(--button-text-primary) !important;
}

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

.wedding-gift-address-label, .inner-address-info{
    font-family: var(--body-text-family);
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    color: var(--text-tertiary);
}


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

.hadiah-card-title{
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    font-weight: 600;
    display: -webkit-box;
    max-width: 100%;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

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

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

.wedding-gifts-title{
    font-family: var(--body-text-family);
    font-weight: 700;
    font-size: calc(var(--body-text-size) + var(--fs-extra-2));
    color: var(--text-primary) !important;
    letter-spacing: 2px;
}

.wedding-gifts-description{
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--text-tertiary);
}
.wedding-gifts-inner{
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

/* =============================
        INVITATION LABEL
============================= */
.top-cover .inner .details > .invitation-category > .category-icon svg path {
    fill: var(--text-secondary);
    stroke: var(--text-secondary);
}
.top-cover .inner .details > .invitation-category > .category-label {
    color: var(--text-secondary);
}

@media only screen and (max-width: 600px) {
    .top-cover .inner .details > .invitation-category > .category-icon svg {
        margin-left: 0;
    }
}

.rsvp-confirm-btn.back, .form-label{
    font-family: var(--body-text-family);
    font-weight: var(--body-text-weight);
    font-size: calc(var(--body-text-size) + var(--fs-extra-1));
    font-style: var(--body-text-style);
    text-transform: var(--body-text-lettercase);
    color: var(--text-tertiary);
}
