/* Jenifer - Alexander */
body.jeni {
  /* Font Family */
  --newsreader: "Newsreader", serif;
  --poppins: "Poppins", sans-serif;

  /* Font Size */
  --fs-cover: 56px;
  --fs-heading: 40px;
  --fs-content: 16px;

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

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

  /* Jenifer - Alexander */
  body.jeni {
    /* Font Size */
    --fs-title: 50px;
    --fs-content: 17px;
  }
}

/* Original Color */
body.jeni.original {
  /* Color */
  --primary-clr: #edebe7;
  --secondary-clr: #d6d3cb;
  --tertiary-clr: #6a6853;

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

  /* Color */
  --primary-rgb: 98, 107, 90;
  --secondary-rgb: 106, 104, 83;
  --tertiary-rgb: 214, 211, 203;
  --quaternary-rgb: 237, 235, 231;
  --light-rgb: 255, 255, 255;
  --dark-rgb: 0, 0, 0;

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

body.jeni h1,
body.jeni h2,
body.jeni h3,
body.jeni h4,
body.jeni h5,
body.jeni h6 {
  font-size: var(--fs-heading);
  font-family: var(--newsreader);
  font-weight: normal;
  line-height: 1.4;
  color: var(--dark-clr);
}

body.jeni p {
  font-family: var(--poppins);
  font-size: var(--fs-content);
  line-height: 1.8;
  color: var(--dark-clr);
  font-weight: 300;
}

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

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

html {
  scroll-behavior: smooth;
  background-color: #edebe7;
}

body.jeni {
  overflow: visible;
}

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

body.jeni::-webkit-scrollbar {
  width: 10px;
  height: 15px;
}

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

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

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

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

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

.kat-page__side-to-side .secondary-pane {
  position: static;
  right: 0;
  width: 39%;
  margin-left: auto;
}

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

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

/* ============================================
  SIDE TO SIDE => PRIMARY PANE
============================================ */
.kat-page__side-to-side .primary-pane .inner {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 15px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: absolute;
}

.kat-page__side-to-side .primary-pane .inner::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(3deg,
      rgb(255 255 255) 2%,
      rgb(255 255 255 / 99%) 7%,
      rgba(0, 0, 0, 0.2861519607843137) 83%);
}

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

.kat-page__side-to-side .primary-pane .inner .details h1 {
  padding: 0;
  font-size: calc(var(--fs-cover));
  font-style: italic;
  color: var(--tertiary-clr);
  font-family: var(--newsreader);
}

.kat-page__side-to-side .primary-pane .inner .details p {
  font-size: calc(var(--fs-content) + 5px);
  color: var(--tertiary-clr);
  font-weight: 300;
  font-family: var(--poppins);
}

/* Highlight */
.kat-page__side-to-side .primary-pane .inner .highlight {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
}

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

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

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

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

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

/* ======================
    TOP COVER
====================== */
section.top-cover {
  background-color: #6a6853;
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: var(--body-height);
  z-index: 999999;
  top: 0;
  /* top: -120%; */
  left: 0;
  /* padding: 120px 16px 240px; */
  transition: all 1.8s;
  transition-timing-function: cubic-bezier(0.23, 0.56, 0.38, 0.78);
  -webkit-transition-timing-function: cubic-bezier(0.23, 0.56, 0.38, 0.78);
  -moz-transition-timing-function: cubic-bezier(0.23, 0.56, 0.38, 0.78);
  -o-transition-timing-function: cubic-bezier(0.23, 0.56, 0.38, 0.78);
  display: flex;
  flex-direction: column;
  display: none;
}

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

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

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

.wrap-inner {
  padding: 24px;
  margin-top: auto;
}

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

section.top-cover .inner .details .logo-wrap {
  width: 100%;
  display: flex;
  /* align-items: center;s */
  justify-content: center;
  margin-bottom: 10px;
}

section.top-cover .inner .details .logo-wrap .logo {
  width: 100%;
  height: 100px;
}

section.top-cover .bottom-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.kat-page__side-to-side .top-cover .inner::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(3deg,
      rgb(255 255 255) 2%,
      rgb(255 255 255 / 99%) 7%,
      rgba(0, 0, 0, 0.2861519607843137) 83%);
}

section.top-cover .bottom-item p {
  font-size: var(--fs-content);
  font-family: var(--poppins);
  color: var(--tertiary-clr);
}

section.top-cover .bottom-item a.link {
  background-color: var(--tertiary-clr);
  color: var(--light-clr);
  border: none;
  font-style: normal;
  font-size: var(--fs-content);
  font-family: var(--poppins);
  font-weight: var(--fw-content);
  text-decoration: none;
  display: inline-block;
  vertical-align: top;
  padding: 14px 24px;
  margin: 0px auto;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

section.top-cover .bottom-item a.link:hover {
  background-color: var(--secondary-clr);
  color: var(--light-clr);
}

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

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

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

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

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

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

section.top-cover .inner .details .logo-wrap .title-cover {
  font-family: var(--newsreader);
  font-style: italic;
  font-size: calc(var(--fs-heading) + 10px);
  color: var(--tertiary-clr);
}

/* ======================
    COVER
====================== */
section.cover {
  background-color: transparent;
  min-height: var(--body-height);
  position: relative;
  overflow: hidden;
  padding: 0px;
  display: flex;
  flex-direction: column;
}

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

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

section.cover .inner .body .logo-wrap {
  width: 100%;
  height: 50px;
  margin-bottom: 12px;
  position: relative;
  top: 2rem;
  z-index: 1;
}

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

section.cover .inner .head p {
  font-size: var(--fs-content);
  color: var(--text-clr);
}

section.cover .inner .head .top-text {
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Cover Body */
section.cover .inner .body {
  text-align: center;
  padding: 0px;
  margin: 20px auto;
  position: relative;

  width: calc(100% - 72px);
  max-width: 320px;
  height: 510px;
}

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

section.cover .inner .body .preview-container {
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  overflow: hidden;
  isolation: isolate;
}

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

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

section.cover .inner .foot .prime-title {
  font-size: calc(var(--fs-heading) + 10px);
  color: var(--dark-clr);
  font-family: var(--newsreader);
  font-weight: 300;
  line-height: 1;
  margin: 10px;
}

section.cover .inner .foot p {
  font-size: calc(var(--fs-content));
  color: var(--tertiary-clr);
  font-family: var(--poppins);
  font-weight: 300;
  line-height: 1;
}

section.cover .inner .foot .torsvp__btn-wrap {
  margin-top: 4px;
  padding: 0px;
  display: flex;
  justify-content: center;
}

section.cover .inner .foot .torsvp__btn {
  border: none;
  outline: none;
  box-shadow: none;
  display: block;
  padding: 8px 16px;
  border-radius: 20px;
  font-family: var(--eb-garamond);
  font-size: var(--fs-content);
  font-weight: 500;
  line-height: 1.5;
  color: var(--primary-clr);
  background-color: var(--tertiary-clr);
  letter-spacing: 2px;
}

section.cover .inner .foot .torsvp__btn:hover {
  background-color: var(--secondary-clr);
  color: var(--tertiary-clr);
}

/* Quote */
.quote-wrap {
  text-align: right;
  background: var(--tertiary-clr);
  padding: 40px 24px;
}

.quote-wrap .quote-caption {
  font-weight: 400;
  color: var(--light-clr);
}

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

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

/* Couple Head */
.couple-head {
  text-align: left;
  padding: 30px 20px 0px;
  margin-bottom: -20px;
}

.couple-head .couple-title {
  font-family: var(--newsreader);
  font-size: calc(var(--fs-heading));
  color: var(--dark-clr);
}

.couple-head .couple-description {
  font-family: var(--poppins);
  color: var(--tertiary-clr);
  font-size: calc(var(--fs-content));
  line-height: 1.4;
  margin-top: 15px;
}

.vertical-line-couple-left {
  background-color: var(--tertiary);
  width: 1.5px;
  height: 12rem;
  margin: 0 auto;
  margin-top: 3rem;
  background-color: var(--tertiary-clr);
}

.vertical-line-couple-right {
  background-color: var(--tertiary);
  width: 1.5px;
  height: 15rem;
  margin: 0 auto;
  margin-top: 2rem;
  background-color: var(--tertiary-clr);
}

.line-groom {
  transform: rotate(270deg) !important;
  color: var(--tertiary-clr) !important;
  text-transform: uppercase;
  position: relative;
  top: 18px;
}

.line-bride {
  transform: rotate(90deg) !important;
  color: var(--tertiary-clr) !important;
  text-transform: uppercase;
  position: relative;
  top: 9px;
}

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

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

.couple-body .couple-info {
  position: relative;
  padding: 20px 0px 60px;
}

.couple-body.bride-first .couple-info.groom {
  background-color: var(--primary-clr);
}

.couple-body:not(.bride-first) .couple-info.bride {
  background-color: var(--primary-clr);
}

/* Couple Preview */
.couple-info .couple-preview-wrap {
  position: relative;
  padding: 20px 0px 0px;
  display: flex;
}

.couple-preview-wrap .couple-preview {
  width: 380px;
  /* height: 250px; */
  padding: 20px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  display: flex;
}

.couple-preview .img-wrap {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.couple-preview .img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Couple Details */
.couple-details {
  padding: 10px 10px 20px;
  text-align: center;
}

.couple-details.groom {
  margin-left: 4rem;
}

.couple-details.bride {
  margin-right: 4rem;
}

/* Line */
.couple-details .couple-line {
  display: block;
  width: 1px;
  /* height: 50px; */
  margin: 20px auto;
  background-color: var(--primary-clr);
}

.couple-details .couple-name {
  color: var(--dark-clr);
  font-size: calc(var(--fs-heading));
  font-family: var(--newsreader);
  margin: 0px -5px 10px;
  padding: 0px 5px;
  line-height: 1.2;
}

.david-nadia .couple-details .couple-name {
  font-size: calc(var(--fs-heading) - 11px);
}

.couple-details .couple-parents {
  font-family: var(--poppins);
  font-weight: 400;
  color: var(--tertiary-clr);
}

.couple-details .couple-bio {
  color: var(--dark-clr);
  font-family: var(--poppins);
}

.couple-link-wrap {
  position: relative;
  margin-top: 30px;
}

.couple-link {
  width: 200px;
  font-family: var(--poppins);
  font-size: var(--fs-content);
  font-weight: 300;
  text-decoration: none;
  display: inline-block;
  vertical-align: top;
  padding: 13px 20px;
  border: 2px solid var(--tertiary-clr);
  color: var(--tertiary-clr);
  text-transform: uppercase;
  transition: all 0.25s ease-in-out;
}

.couple-link:hover {
  background-color: var(--secondary-clr);
  color: var(--quaternary-clr);
}

/* ==============================
        Love Story
============================== */

.love-story-wrap {
  position: relative;
  overflow: hidden;
  background-color: var(--secondary-clr);
}

.love-story-wrap::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px 30px 0px 0px;
  background: var(--secondary-clr);
}

/* Helicopter */
.love-story-wrap .helicopter-wrap {
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 370px;
  pointer-events: none;
}

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

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

/* Story Head */
.story-inner .story-head {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
}

.story-inner .story-head .horizontal-line {
  width: 60%;
  height: 1.5px;
  background: var(--dark-clr);
}

.story-head .story-title {
  font-size: calc(var(--fs-heading) + -2px);
  font-family: var(--newsreader);
  color: var(--dark-clr);
  text-align: left;
  padding: 0px 20px 0px;
  width: 17rem;
  line-height: 1;
}

/* Story Body */
.story-inner .story-body {
  position: relative;
  padding: 20px 0;
}

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

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

/* Story Content */
.story-item .story-content {
  background-color: transparent;
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

.story-content .story-preview {
  position: relative;
  display: flex;
}

.story-content .story-preview>a {
  display: inline-block;
  vertical-align: top;
}

.story-content .story-preview>a>img {
  width: 100%;
  min-height: 150px;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.story-content .story-details {
  width: 100%;
  padding: 20px 0px;
  text-align: center;
}

.story-content .story-details-title {
  font-family: var(--poppins);
  font-size: calc(var(--fs-content));
  margin-bottom: 0.5em;
  color: var(--tertiary-clr);
}

.story-details .story-details-caption {
  font-family: var(--poppins);
  font-size: var(--fs-content);
  text-align: left;
  color: var(--dark-clr);
}

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

  display: none;
  align-items: center;
  justify-content: center;
}

.stories-nav .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: scale(0.86);
  transform-origin: center;
  display: block;
  margin: 2.5px;
  background: var(--light-clr);
}

.stories-nav .slick-slide.slick-current.slick-active.slick-center .dot {
  transform: scale(1);
}

/* ==============================
        Save The Date
============================== */
.save-date-wrap {
  background-color: var(--tertiary-clr);
  position: relative;
  overflow: hidden;
}

.save-date-wrap .save-date {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px 0 30px;
}

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

.save-date-head .save-date-title {
  width: 15rem;
  font-family: var(--poppins);
  font-size: calc(var(--fs-content));
  color: var(--light-clr);
}

.save-date-head .save-date-event {
  font-family: var(--newsreader);
  letter-spacing: 5px;
  font-size: calc(var(--fs-heading));
  color: var(--light-clr);
  text-align: left;
}

/* Hrozontal Line */
.save-date-head .title-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.save-date-head .title-wrap .horizontal-line {
  width: 100%;
  height: 1.5px;
  background: var(--light-clr);
}

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

.countdown .count-item {
  text-align: center;
  background-color: var(--light-clr);
  padding: 20px 5px 20px;
  margin: 5px;
  width: 80px;
  border-radius: 12px;
  box-shadow: var(--shadow-02);
}

.count-item .count-num {
  font-family: var(--newsreader);
  line-height: 1;
  font-size: calc(var(--fs-heading));
  color: var(--tertiary-clr);
}

.count-item .count-text {
  font-family: var(--poppins);
  font-size: calc(var(--fs-content));
  color: var(--tertiary-clr);
}

/* Add To Calendar */
.add-to-calendar-wrap {
  padding: 20px;
  text-align: center;
}

.add-to-calendar {
  padding: 16px 42px;
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  font-family: var(--visiapro-semibold);
  font-size: var(--fs-content);
  border: 1px solid var(--light-clr);
  color: var(--light-clr);
  transition: all 0.25s ease-in-out;
}

.add-to-calendar:hover {
  background-color: var(--dark-clr);
  color: var(--light-clr);
}

.add-to-calendar svg {
  width: 11px;
  height: 11px;
  margin-right: 5px;
}

.add-to-calendar svg path {
  stroke: var(--light-clr);
  transition: stroke 0.25s ease-in-out;
}

body.noni-color .add-to-calendar svg path {
  stroke: var(--light-clr);
}

.add-to-calendar:hover svg path {
  stroke: var(--light-clr);
}

/* Gallery */
.photo-wrap .orn-1 {
  position: absolute;
  bottom: 30%;
  left: 0;
  width: 163px;
  transform: translate(-45%, -50%) scaleX(-1);
}

.photo-wrap .orn-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 170px;
  transform: translate(55%, -20%) scaleX(-1) rotate(9deg);
}

@media (min-width: 560px) and (max-width: 960px) {
  .photo-wrap .orn-1 {
    width: 250px;
  }

  .photo-wrap .orn-2 {
    width: 250px;
  }
}

@media (min-width: 1200px) {
  .photo-wrap .orn-1 {
    width: 250px;
  }

  .photo-wrap .orn-2 {
    width: 250px;
  }
}

/* ==============================
        Video
============================== */
section.video-gallery {
  position: relative;
  overflow: hidden;
  padding: 0px 0px 20px;
  background-color: var(--primary-clr);
}

section.video-gallery .inner {}

/* head (title) */
section.video-gallery .inner>.title {
  text-align: right;
  padding: 20px;
  margin-bottom: 20px;
}

section.video-gallery .inner>.title h1 {
  font-size: var(--fs-heading);
  color: var(--dark-clr);
  padding: 0px;
  margin-bottom: 0px;
}

section.video-gallery .inner>.title p {
  font-size: var(--fs-content);
  font-family: var(--poppins);
  color: var(--tertiary-clr);
  line-height: 1.5;
}

/* body (video outer) */
section.video-gallery .inner .video-outer {
  padding: 0px 0px 30px;
}

section.video-gallery .inner .video-outer .video {
  width: 100%;
  max-width: 425px;
  margin: 0px 0px 30px;
  padding: 0px 20px;
}

section.video-gallery .inner .video-outer .video:last-of-type {
  margin-bottom: 0;
}

section.video-gallery .inner .video-outer .video-name {
  font-size: var(--fs-content);
  font-family: var(--poppins);
  margin-bottom: 10px;
}

section.video-gallery .inner .video-line-wrap {
  display: flex;
  align-items: center;
  position: relative;
  top: 2rem;
  justify-content: center;
}

section.video-gallery .inner .video-line-wrap .horizontal-line {
  height: 1.5px;
  width: 69%;
  margin-right: 18px;
  background-color: var(--dark-clr);
}

section.video-gallery .inner .video-line-wrap .video-name {
  font-size: var(--fs-content);
  font-family: var(--poppins);
}

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

@media only screen and (max-width: 1240px) {
  .video-gallery .inner .video-outer .video .preview {
    width: 100%;
    height: 210px;
  }
}

@media only screen and (max-width: 360px) {
  .video-gallery .inner .video-outer .video .preview {
    width: 100%;
    height: 170px;
  }
}

/* video title */
section.video-gallery .inner .video-outer .video>.title {
  margin-top: 15px;
  padding: 0px;
}

section.video-gallery .inner .video-outer .video>.title h2 {
  font-size: var(--fs-content);
  line-height: 1.6;
  font-weight: 300;
  font-family: var(--playfairdisplay);
  color: var(--tertiary-clr);
}

/* ==============================
      Agenda
============================== */
.agenda-wrap {
  position: relative;
  overflow: hidden;
  background-color: var(--secondary-clr);
}

.agenda-inner {
  padding: 40px 0;
}

/* Head */
.agenda-head {
  position: relative;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.agenda-head .agenda-title {
  color: var(--dark-clr);
  font-family: var(--newsreader);
  font-size: calc(var(--fs-heading));
}

.agenda-head .agenda-description {
  font-family: var(--poppins);
  color: var(--tertiary-clr);
  margin-top: 5px;
  line-height: 1.4;
}

/* Line */
.agenda-inner .agenda-line {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 1px;
  margin: 40px auto 0px;
  background-color: rgba(var(--secondary-rgb), 0.75);
}

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

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

/* Activity */
.activity-wrap {}

.activity-wrap.same-location {}

.activity-item {
  border: 1px solid var(--tertiary-clr);
  margin: 20px;
  background-color: var(--primary-clr);
}

.activity-head {
  padding: 30px 0px 30px 0px;
  text-align: center;
}

.activity-head .activity-title {
  color: var(--dark-clr);
  font-family: var(--newsreader);
  font-size: calc(var(--fs-heading) + 0px);
}

.activity-head .activity-description {
  font-family: var(--poppins);
  color: var(--tertiary-clr);
  margin-bottom: 0.75em;
}

.activity-head .event-date {
  font-family: var(--engravers);
  font-size: calc(var(--fs-content) + 2px);
  color: var(--dark-clr);
  font-weight: 600;
  margin-top: 1.25em;
}

.activity-head .activity-time {
  font-family: var(--poppins);
  font-size: var(--fs-content);
  color: var(--dark-clr);
}

/* Agenda Details */

.event-item.same-location .event-content {
  margin: 20px;
  padding: 20px;
  background-color: var(--primary-clr);
  border: 1.5px solid var(--tertiary-clr);
}

.event-item.same-location .event-content .activity-wrap .activity-item {
  background-color: transparent;
  border: none;
}

.event-item.same-location .event-content .activity-wrap .activity-item .activity-head {
  padding: 0px 0px 10px 0px;
}

.event-details,
.activity-details {
  padding: 0px 20px 30px 20px;
  text-align: center;
}

.event-details .event-hall,
.activity-details .activity-hall {
  color: var(--dark-clr);
  font-family: var(--poppins);
  margin-bottom: 0.5em;
}

.event-details .event-address,
.activity-details .activity-address {
  margin-bottom: 0.5em;
  color: var(--tertiary-clr);
}

.event-details .event-city,
.activity-details .activity-city {
  font-family: var(--poppins);
  color: var(--dark-clr);
}

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

.event-link,
.activity-link {
  display: block;
  width: auto;
  font-family: var(--poppins);
  font-size: var(--fs-content);
  font-weight: 300;
  text-decoration: none;
  padding: 13px 20px;
  border: 1px solid var(--tertiary-clr);
  color: var(--tertiary-clr);
  text-transform: uppercase;
  transition: all 0.25s ease-in-out;
}

.event-link:hover,
.activity-link:hover {
  background-color: var(--secondary-clr);
  color: var(--quaternary-clr);
}

/* add to calendar */
.event-details .add-to-calendar-wrap,
.activity-details .add-to-calendar-wrap {
  margin-top: 20px;
}

.event-details #addToCalendar,
.activity-details #addToCalendar {
  display: block;
  width: 100%;
  font-family: var(--poppins);
  font-size: var(--fs-content);
  font-weight: 300;
  text-decoration: none;
  padding: 13px 20px;
  border: 0.5px solid var(--secondary-clr);
  color: var(--secondary-clr);
  text-transform: uppercase;
  transition: all 0.25s ease-in-out;
}

.event-details #addToCalendar:hover,
.activity-details #addToCalendar:hover {
  background-color: var(--secondary-clr);
  color: var(--quaternary-clr);
}

/* ==============================
      RSVP
============================== */
.rsvp-wrap {
  position: relative;
  overflow: hidden;
  padding: 20px 20px;
  background-color: var(--tertiary-clr);
}

.rsvp-inner {
  padding: 60px 0px 30px;
  position: relative;
}

/* Head */
.rsvp-head {
  text-align: center;
}

.rsvp-head .rsvp-title {
  color: var(--light-clr);
  font-family: var(--newsreader);
  letter-spacing: 5px;
  line-height: 1;
  text-align: left;
}

.rsvp-head .rsvp-info {
  text-align: left;
}

.rsvp-head .rsvp-info p {
  color: var(--light-clr) !important;
}


.rsvp-body {
  padding: 0 20px;
  padding: 30px;
  background-color: var(--primary-clr);
  border: 1px solid var(--dark-clr);
  margin-top: 30px;
}

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

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

.rsvp-status-head .rsvp-status-caption{
  color: var(--dark-clr);
}

/* 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(--tertiary-clr);
  color: var(--light-clr);
  cursor: not-allowed;
}

.rsvp-status-wrap input[name="rsvp_status"]:checked:hover+.rsvp-confirm-btn.going,
.rsvp-status-wrap input[name="rsvp_status"]:hover+.rsvp-confirm-btn.going {
  background-color: var(--tertiary-clr);
  color: var(--light-clr);
}

.rsvp-status-wrap input[name="rsvp_status"]:checked+.rsvp-confirm-btn.not-going {
  background-color: var(--tertiary-clr);
  color: var(--light-clr);
  cursor: not-allowed;
}

.rsvp-status-wrap input[name="rsvp_status"]:checked:hover+.rsvp-confirm-btn.not-going,
.rsvp-status-wrap input[name="rsvp_status"]:hover+.rsvp-confirm-btn.not-going {
  background-color: var(--tertiary-clr);
  color: var(--light-clr);
}

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

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

.rsvp-amount-head .rsvp-amount-caption,
.rsvp-confirm-btn.back, .form-label {
  color: var(--dark-clr);
}

.rsvp-amount-body {}

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

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

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

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

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

.rsvp-amount-controller .toggle-btn.plus {
  border-radius: 50%;
  background-color: var(--tertiary-clr);
}

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

.rsvp-amount-controller .toggle-btn.plus:hover {
  border-radius: 50%;
  background-color: var(--tertiary-clr);
}

.rsvp-amount-controller .toggle-btn.minus {
  background-color: var(--quaternary-clr);
  border-radius: 50%;
  border: 1px solid var(--tertiary-clr);
}

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

.rsvp-amount-controller .toggle-btn.minus:hover {
  background-color: var(--tertiary-clr);
}

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

.form-control.group-guest,
.rsvp-amount-controller .input-control,
.rsvp-plus-wrapper .form-control {
  width: 100%;
  height: 40px;
  outline: none;
  background-color: transparent;
  text-align: center;
  font-family: var(--poppins);
  font-size: calc(var(--fs-content) + 1px);
  font-weight: 300;
  color: var(--tertiary-clr);
  border-radius: 0;
  border: 1px solid var(--tertiary-clr);
  
}
.rsvp-amount-controller .input-control {
  pointer-events: none;
  border-right: none;
  border-left: none;
}

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

.rsvp-confirm-wrap>label {
  display: block;
  text-align: center;
}

.rsvp-confirm-btn {
  width: 100%;
  display: inline-block;
  padding: 10px 20px;
  margin: 7px auto;
  border-radius: 0px;
  line-height: 1;
  font-family: var(--poppins);
  font-size: var(--fs-content);
  font-weight: 300;
  background-color: transparent;
  border: 1px solid var(--tertiary-clr);
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

.rsvp-session-btn,
.form-check-label{
  font-family: var(--poppins);
  font-size: var(--fs-content);
  font-weight: 300;
  border: 1px solid var(--tertiary-clr);
  border-radius: 0px;
  color: var(--tertiary-clr);
  background-color: unset;
}

.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(--tertiary-clr);
  color: var(--light-clr);
}

.rsvp-confirm-btn.going {
  background-color: transparent;
  color: var(--tertiary-clr);
}

.rsvp-confirm-btn.going:hover {
  background-color: var(--secondary-clr);
  color: var(--light-clr);
}

.rsvp-confirm-btn.not-going {
  background-color: transparent;
  color: var(--tertiary-clr);
}

.rsvp-confirm-btn.not-going:hover {
  background-color: var(--secondary-clr);
  color: var(--light-clr);
}

.rsvp-confirm-btn.confirm {
  background-color: var(--tertiary-clr);
  color: var(--light-clr);
  font-size: calc(var(--fs-content) + 1px);
}

.rsvp-confirm-btn.confirm:hover {
  background-color: var(--secondary-clr);
}

.rsvp-confirm-btn.download {
  background-color: var(--quaternary-clr);
  color: var(--tertiary-clr);
}

.rsvp-confirm-btn.download:hover {
  background-color: var(--tertiary-clr);
}

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

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

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

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

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

/* RSVP Message */
.rsvp-message-wrap {
  position: relative;
  margin-top: 30px;
}

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

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

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

.rsvp-message-wrap .rsvp-message-title {
  font-family: var(--poppins);
  font-size: calc(var(--fs-content) + 2px);
  color: var(--dark-clr);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 10px;
}

.rsvp-message-wrap .rsvp-message-caption {
  font-family: var(--poppins);
  font-size: var(--fs-content);
  color: var(--dark-clr);
}

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

/* ==============================
      Live Streaming
============================== */
.live-streaming {
  position: relative;
  overflow: hidden;
  background: var(--tertiary-clr);
}

/* Streaming Orn */
.live-streaming .streaming-orn {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 20px;
  transform: scaleY(-1);
  background-image: var(--orn-line);
  background-position: center;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

.live-streaming .streaming-inner {
  padding: 40px 20px;
}

/* Head */
.streaming-inner .streaming-head {
  text-align: left;
}

.streaming-head .streaming-pre-title {
  font-size: calc(var(--fs-content) + 8px);
  margin-bottom: 20px;
}

.streaming-head .streaming-title {
  font-size: var(--fs-heading);
  color: var(--light-clr);
  font-family: var(--newsreader);
}

.streaming-head .streaming-description {
  font-size: var(--fs-content);
  color: var(--light-clr);
  font-family: var(--poppins);
}

.streaming-head .streaming-pre-caption {
  margin-bottom: -5px;
}

.streaming-head .streaming-caption {
  margin-top: 15px;
}

/* Body */
.streaming-inner .streaming-body {
  margin-top: 30px;
}

/* Content */
.streaming-body .streaming-content {
  /* padding: 0px 20px; */
}

.streaming-body .streaming-content .streaming-head {
  margin-top: 20px;
}

/* Preview */
.streaming-content .streaming-preview-wrap {
  padding-bottom: 20px;
  width: 70px;
  margin: auto;
}

.streaming-content .streaming-preview-wrap img {
  width: 100%;
}

/* Zoom - Preview */
.streaming-content .zoom-details{
  display: flex;
  justify-content: space-around;
}
.streaming-content .zoom-details p{
  padding-top: 16px;
}

/* Youtube - Preview */
.streaming-content .streaming-preview-wrap.youtube {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  overflow: hidden;
}

.streaming-preview-wrap.youtube .streaming-preview {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 20px;
  /* 16:9 Aspect Ratio */
}

.streaming-preview-wrap.youtube .streaming-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.play-btn {
  background-color: transparent;
  color: var(--light-clr);
  padding: 10px 25px 10px 25px;
  font-size: var(--fs-content);
  font-weight: var(--fw-content);
  font-family: var(--poppins);
  border: none;
  margin-top: 20px;
  border: 1px solid var(--light-clr);
}

.streaming-wrap {
  text-align: center;
}

.streaming-preview-wrap.youtube .streaming-play-btn:hover {
  opacity: 1;
}

.streaming-preview-wrap.youtube .streaming-play-btn>svg {
  width: 100%;
  height: 100%;
  display: block;
}

.streaming-preview-wrap.youtube .streaming-play-btn>svg>path {
  fill: var(--light-clr);
}

/* Zoom - Preview */
.streaming-content .streaming-preview-wrap.zoom {}

.streaming-preview-wrap.zoom .streaming-preview {}

.streaming-preview-wrap.zoom .streaming-img {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

/* Meet - Preview */
.streaming-content .streaming-preview-wrap.meet {}

.streaming-preview-wrap.meet .streaming-preview {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--secondary-rgb), 0.5);
}

.streaming-preview-wrap.meet .streaming-img {
  display: block;
  width: auto;
  height: 52%;
  margin: -2px 0px 0px 2px;
}

/* Link */
.streaming-content .streaming-link-wrap {
  margin-top: 20px;
  text-align: center;
}

.streaming-content .streaming-link {
  display: inline-block;
  vertical-align: top;
  min-width: 220px;
  border-radius: 4px;
  padding: 7px 25px 9px;
  cursor: pointer;
  border: none;
  outline: none;
  background-color: var(--primary-clr);
  color: var(--dark-clr);
  border: 1px solid transparent;
  font-family: var(--berylium);
  font-size: calc(var(--fs-content) + 0px);
  text-decoration: none;
  text-align: center;
  transition: all 0.25s ease-in-out;
}

.streaming-content .streaming-link:hover {
  background-color: var(--secondary-clr);
  color: var(--dark-clr);
}

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

.ig-filter-img-wrap {
  padding: 0px;
}

.ig-filter {
  padding: 40px 0px 0px 0px;
}

.ig-filter-wrap {
  overflow: hidden;
}

.ig-filter-head {
  text-align: left;
}

.ig-filter-head .ig-filter-title {
  font-family: var(--newsreader);
  font-size: var(--fs-heading);
  color: var(--dark-clr);
}

.ig-filter-head .ig-filter-caption {
  font-size: var(--fs-content);
  font-family: var(--poppins);
  color: var(--tertiary-clr);
}

.ig-filter-img-wrap .ig-filter-img {
  border-radius: 0px;
  border: 2px solid var(--primary-clr);
  padding: 8px;
}

.ig-filter-link-wrap .ig-filter-link {
  background-color: var(--tertiary-clr);
  font-size: var(--fs-content);
  font-weight: var(--fw-content);
  font-family: var(--poppins);
  color: var(--light-clr);
}

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

.ig-filter-body .texture-outer .instagram-leaf img {
  width: 5rem;
  transform-origin: 100% 100%;
  animation: instagramAnimation 2s ease-in-out infinite alternate;
}

@keyframes instagramAnimation {
  0% {
    transform: translate(192%, 262%) scaleX(1) rotate(330deg);
  }

  100% {
    transform: translate(192%, 262%) scaleX(1) rotate(333deg);
  }
}

.vertical-line {
  width: 1px;
  height: 100px;
  margin: 0 auto;
  margin-top: 20px;
  /* margin-bottom: 20px; */
  background-color: var(--tertiary-clr);
}

/* Wide - Preview */
.streaming-content .streaming-preview-wrap.wide {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding-bottom: 0px;
}

.streaming-preview-wrap.wide .streaming-preview {}

.streaming-preview-wrap.wide .streaming-img {
  display: block;
  width: 100%;
}

/* Credential */
.streaming-content .streaming-credential-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.streaming-credential-wrap>div {
  padding: 5px;
  margin: 5px auto;
  text-align: center;
  flex-grow: 1;
}

.streaming-credential-wrap>div>p {}

.streaming-credential-wrap>div>p:not(.credential) {
  font-size: calc(var(--fs-content) - 2px);
}

.streaming-credential-wrap>div>p.credential {
  font-weight: 500;
}

/* ==============================
      Galeri
============================== */
.photo-wrap {
  background-color: var(--primary-clr);
  position: relative;
  overflow: hidden;
}

.photo-wrap .photo-inner {
  padding: 20px;
  position: relative;
  margin-bottom: 30px;
}

/* Head */
.photo-inner .photo-head {
  text-align: left;
  padding: 20px;
}

.photo-head .photo-title {
  font-family: var(--newsreader);
  font-size: var(--fs-heading);
  color: var(--dark-clr);
}

.photo-head .photo-caption {
  font-family: var(--poppins);
  color: var(--tertiary-clr);
  margin-top: 15px;
}

/* Body */
.photo-inner .photo-body {}

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

/* Potrait Slider */
.photo-slider-wrap .photo-slider {
  position: relative;
}

.photo-slider .slick-list {}

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

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

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

.photo-slider .photo-link {
  display: inline-block;
  vertical-align: top;
  width: auto;
  height: 100%;
}

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

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

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

.photo-arrow.prev {
  left: 10px;
}

.photo-arrow.next {
  right: 10px;
}

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

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

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

/* ==============================
        Wedding Gift
============================== */
.wedding-gifts-wrap {
  position: relative;
  overflow: hidden;
  background-color: var(--secondary-clr);
}

.wedding-gift-wrap {
  position: relative;
  overflow: hidden;
  background-color: var(--secondary-clr);
}

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

/* Head */
.wedding-gift-head {
  padding: 20px;
  text-align: left;
}

.wedding-gift-head .wedding-gift-title {
  margin-bottom: 0.25em;
  font-family: var(--newsreader);
  font-size: var(--fs-heading);
  color: var(--dark-clr);
}

.wedding-gift-head .wedding-gift-description {
  font-size: var(--fs-content);
  font-family: var(--poppins);
  color: var(--tertiary-clr);
  line-height: 24px;
}

/* Body */
.wedding-gift-body {
  padding: 20px;
  position: relative;
  z-index: 1;
}

.wedding-gift-form {
  position: relative;
  border: 1px solid var(--tertiary-clr);
  background-color: var(--primary-clr);
}

.wedding-gift-form::before {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  border-radius: 10px;
  box-shadow: var(--shadow-01);
}

/* Wedding Gift Form */
#weddingGiftForm {
  width: 100%;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

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

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

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

.wedding-gift-select-bank-wrap .selectize-control.form-control {
  padding: 0;
}

.wedding-gift-select-bank-wrap .selectize-control.form-control:focus,
.wedding-gift-select-bank-wrap .selectize-control.form-control:active {
  /* background-color: transparent; */
  box-shadow: none;
  border: 1px solid var(--light-clr);
}

.wedding-gift-select-bank-wrap .selectize-control.form-control .selectize-input {
  background: var(--secondary-clr) !important;
  border-radius: 0px;
}

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

.wedding-gift-select-bank-wrap .selectize-control.form-control .select-bank__title {
  font-size: var(--fs-content);
  font-weight: var(--fw-content);
  font-family: var(--poppins);
  color: var(--tertiary-clr);
}

.wedding-gift-select-bank-wrap .selectize-dropdown.form-control {
  padding: 0;
  box-shadow: none;
  overflow: hidden;
}

.wedding-gift-select-bank-wrap .selectize-dropdown.form-control .select-bank__title {
  color: var(--dark-clr);
  font-family: var(--poppins);
  font-size: var(--fs-content);
}

.wedding-gift-select-bank-wrap .selectize-dropdown.form-control .select-bank__credential {
  color: var(--dark-clr);
  font-family: var(--poppins);
  font-size: calc(var(--fs-content) - 3px);
}

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

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

/* Bank */
.wedding-gift-bank-wrap {
  background-color: var(--secondary-clr);
  padding: 10px 0;
  /* border-radius: 5px; */
}

.wedding-gift-bank-wrap .bank-item {
  padding: 10px;
  align-items: flex-start;
  display: none;
}

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

/* Bank Detail */
.wedding-gift-bank-wrap .bank-detail {
  padding: 10px;
  flex-grow: 1;
}

.wedding-gift-bank-wrap .bank-name {
  font-size: var(--fs-content);
  font-weight: var(--fw-content);
  font-family: var(--poppins);
  color: var(--tertiary-clr);
}

.wedding-gift-bank-wrap .bank-detail>div {
  margin-top: 0.75em;
}

.wedding-gift-bank-wrap .bank-account-number-label,
.wedding-gift-bank-wrap .bank-account-name-label {
  font-size: calc(var(--fs-content) - 2px);
  font-family: var(--poppins);
  color: rgb(0 0 0 / 50%);
  display: block;
  margin-bottom: 0.25em;
}

.wedding-gift-bank-wrap .bank-account-number {
  font-size: var(--fs-content);
  font-family: var(--poppins);
  cursor: pointer;
  display: inline-block;
  word-break: break-all;
  color: var(--tertiary-clr);
}

.wedding-gift-bank-wrap .bank-account-number>i {
  font-size: 0.7em;
  margin-left: 0.4em;
}

.wedding-gift-bank-wrap .bank-account-name {
  font-size: var(--fs-content);
  font-family: var(--poppins);
  word-break: break-all;
  color: var(--tertiary-clr);
}

/* 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(--poppins);
  font-size: var(--fs-content);
  padding-left: 20px;
  display: block;
  color: var(--dark-clr);
}

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

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

.wedding-gift-sender-data-wrap .form-control {
  background: var(--secondary-clr);
  border: none;
  padding: 15px;
  font-family: var(--garamond);
  font-size: var(--fs-content);
  color: var(--dark-clr);
  border-radius: 0px;
}

.wedding-gift-sender-data-wrap .form-control:focus {
  border: 1px solid var(--light-clr);
  box-shadow: none;
}

.wedding-gift-sender-data-wrap .form-control::placeholder {
  color: rgba(var(--dark-rgb), 0.5);
  font-family: var(--poppins);
}

/* Wedding Gift Page */
.wedding-gift-page-wrap {
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.wedding-gift-page {
  font-size: calc(var(--fs-content) + 2px);
  font-family: var(--poppins);
  color: var(--light-clr);
  background-color: var(--tertiary-clr);
  border: none;
  padding: 10px 25px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

.wedding-gift-page:hover {
  background-color: var(--tertiary-clr);
  color: var(--primary-clr);
}

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

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

.wedding-gift-back-page {
  background-color: transparent;
  border: none;
  outline: none;
  color: rgb(0 0 0 / 50%);
  font-size: 28px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

.wedding-gift-back-page:hover {
  color: rgb(0 0 0 / 75%);
}

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

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

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

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

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

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

.wgu-description .wgu-title {
  font-family: var(--garamond);
}

.wgu-description p {
  font-family: var(--garamond);
}

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

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

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

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

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

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

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

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

.wgs-head .wgs-spark .stroke {
  stroke: var(--light-clr);
}

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

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

.wgs-icon-wrap {
  width: 120px;
  height: 120px;
  background-color: var(--tertiary-clr);
  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(--primary-clr);
}

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

.wgs-body .wgs-title {
  margin-bottom: 0.25em;
  color: var(--tertiary-clr);
  font-family: var(--poppins);
  font-size: calc(var(--fs-content) + 5px);
}

.wgs-description {
  color: var(--light-clr);
}

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

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

/* head */
.wedding-wish-inner .wedding-wish-head {
  padding: 20px;
  text-align: left;
}

.wedding-wish-head .wedding-wish-title {
  font-family: var(--newsreader);
  font-size: var(--fs-heading);
  color: var(--dark-clr);
}

.wedding-wish-head .wedding-wish-description {
  font-family: var(--poppins);
  color: var(--tertiary-clr);
  margin-top: 15px;
}

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

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

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

.wedding-wish-form .form-control {
  background-color: var(--secondary-clr);
  border: none;
  border-radius: 8px;
  padding: 15px;
  font-family: var(--poppins);
  font-size: var(--fs-content);
  color: var(--dark-clr);
  font-weight: 300;
  border: 1px solid var(--secondary-clr);
}

.wedding-wish-form .form-control:focus {
  border: 1px solid var(--secondary-clr);
  box-shadow: none;
}

.wedding-wish-form textarea.form-control {
  max-height: 250px;
  border-radius: 0px;
}

.wedding-wish-form .submit-comment {
  border-radius: 0px;
  padding: 10px 30px;
  cursor: pointer;
  border: none;
  outline: none;
  background-color: var(--tertiary-clr);
  color: var(--light-clr);
  border: 1px solid var(--tertiary-clr);
  font-family: var(--poppins);
  font-size: var(--fs-content);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.25s ease-in-out;
}

.wedding-wish-form .submit-comment:hover {
  background-color: var(--tertiary-clr);
  border: none;
  color: var(--light-clr);
}

/* Comment Wrap */
.submit-comment-wrap {
  text-align: center;
}

.comment-wrap {
  padding: 20px;
  display: none;
}

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

.comment-item {
  border-bottom: 1px solid var(--tertiary);
}

.comment-wrap .comment-item {
  margin-bottom: 30px;
}

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

.comment-item .comment-head {
  position: relative;
}

.comment-head .comment-name {
  font-family: var(--poppins);
  font-size: calc(var(--fs-content) + 0px);
  font-weight: 500;
  color: var(--dark-clr);
}

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

.comment-head .comment-date {
  font-family: var(--poppins);
  font-size: calc(var(--fs-content) - 5px);
  display: block;
  color: rgba(var(--dark-rgb), 0.5);
}

.comment-head .delete-comment {
  position: absolute;
  top: 2px;
  right: 0;
  text-decoration: none;
  display: inline-block;
  vertical-align: top;
  color: rgba(178, 34, 34, 0.5);
  transition: all 0.25s ease-in-out;
}

.comment-head .delete-comment:hover {
  color: #b22222;
}

.comment-item .comment-body {
  margin-top: 10px;
}

.comment-body .comment-caption {
  font-family: var(--poppins);
  color: var(--dark-clr);
}

/* More Comment */
.more-comment-wrap {
  padding: 20px;
  display: none;
}

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

#moreComment {
  width: 100%;
  display: block;
  border-radius: 0px;
  padding: 13px 20px;
  margin: 0 auto;
  text-decoration: none;
  background-color: var(--tertiary-clr);
  border: 1px solid var(--secondary-clr);
  outline: none;
  color: var(--light-clr);
  font-family: var(--poppins);
  font-size: var(--fs-content);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

#moreComment:hover {
  background-color: var(--secondary-clr);
  border-color: var(--secondary-clr);
  color: var(--light-clr);
}

/* ==============================
      Protocol
============================== */
section.protocol {
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}

section.protocol.protocol-01 .inner .head,
section.protocol.protocol-03 .inner .head {
  padding: 20px 15px;
  background-color: var(--tertiary-clr);
}

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

section.protocol.protocol-01 .inner .head p,
section.protocol.protocol-03 .inner .head p {
  font-size: calc(var(--fs-content) + 0px);
  color: var(--dark-clr);
  font-weight: 300;
  margin-bottom: 0;
}

section.protocol.protocol-01 .inner .head h1,
section.protocol.protocol-03 .inner .head h1 {
  margin-top: 10px;
  font-size: calc(var(--fs-title) + 5px);
  font-weight: normal;
  line-height: 1.2;
  color: var(--dark-clr);
}

/* Protocol 01 */
.protocol.protocol-01 .inner .body {
  margin: 10px auto 20px;
}

/* Protocol 03 */
.protocol.protocol-03 .inner .body {
  padding: 20px 0 80px;
}

section.protocol.protocol-03 .inner .body .slider .content .text-01 {
  font-family: var(--engravers);
  font-weight: 300;
  font-size: calc(var(--fs-content) + 10px);
  color: var(--primary-clr);
  text-transform: capitalize;
}

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

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

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

/* Protocol 04 */
section.protocol-04 {
  background-color: var(--quaternary-clr);
}

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

section.protocol-04 .inner .head .title {
  font-size: calc(var(--fs-heading));
  font-family: var(--newsreader);
  font-weight: 300;
  line-height: 1.4;
  color: var(--dark-clr);
}

section.protocol-04 .protocol-item-wrap .protocol-item {
  background-color: var(--tertiary-clr);
  border-radius: 0px;
  border: 0px;
}

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

section.protocol-04 .protocol-item-wrap .protocol-item .text-wrap .text {
  font-family: var(--poppins);
  font-size: var(--fs-content);
  line-height: 1.5;
  color: var(--light-clr);
}

/* ==============================
      CATATAN
============================== */
.note .note-title {
  color: var(--dark-clr);
}
.note .note-description {
  color: var(--dark-clr);
}

/* ==============================
      Footnote
============================== */
.footnote-wrap {
  position: relative;
  overflow: hidden;
  background-color: var(--tertiary-clr);
  display: flex;
  flex-direction: column;
  padding: 60px 0px 100px;
}

.footnote-wrap .quote-wrap {
  width: 100%;
  padding: 20px;
  text-align: center;
}

.footnote-wrap .quote-wrap .quote-caption {
  font-family: var(--newextralight-italic);
  color: var(--dark-clr);
}

.footnote-wrap .footnote-line {
  position: relative;
  width: 1px;
  height: 140px;
  margin: 20px auto;
  display: block;
  background: var(--secondary-clr);
}

.footnote-wrap .footnote {
  width: 100%;
  padding: 20px;
  text-align: center;
}

.footnote-wrap .footnote .footnote-date {
  color: var(--primary-clr);
  font-size: calc(var(--fs-content) + 0px);
  font-family: var(--poppins);
  letter-spacing: 5px;
  margin-bottom: 7px;
}

.footnote-wrap .footnote .footnote-title {
  color: var(--light-clr);
  font-family: var(--newsreader);
  font-size: calc(var(--fs-heading) + 10px);
}

.footnote-wrap .footnote .bottom-text {
  color: var(--light-clr);
}
.footnote-wrap .footnote .top-text {
  color: var(--light-clr);
}

/* =======================
      FOOTER
======================= */
section.footer {
  background: var(--quaternary-clr);
  padding: 0;
}

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

section.footer .footer-inner p {
  font-weight: normal;
  color: var(--dark-clr);
  font-size: var(--fs-content);
  font-family: var(--butler);
}

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

section.footer .footer-inner .footer-logo path {
  fill: var(--dark-clr);
}

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

  section.footer .footer-inner.flex-column p {
    margin-right: 0;
    font-size: calc(var(--fs-content) + 5px);
  }

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

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



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



/* KADO  */
.hadiah-card-button, .buying-kado-btn, .kado-send-btn{
  background-color: var(--tertiary-clr) !important;
  color: var(--light-clr) !important;
  cursor: pointer !important;
  border: none !important;
  font-family: var(--poppins);
  border-radius: unset !important;
}

.modal-kado-header .title, .modal-confirm-header .title{
  font-family: inherit;
  color: var(--tertiary-clr);
}
.confirm-kado-btn{
  border: none !important;
  outline: none !important;
  color: var(--tertiary-clr) !important;
  border: 1px solid var(--tertiary-clr) !important;
  font-family: var(--poppins);
  width: 100%;
  border-radius: unset;
}

.confirm-kado-btn:hover{
  border: none !important;
  outline: none !important;
  color: var(--secondary-clr) !important;
  border: 1px solid var(--secondary-clr) !important;
}

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

}

.wedding-gift-address-label, .inner-address-info{
  font-family: var(--poppins) !important;
  color: var(--tertiary-clr) !important;
  font-weight: 500 !important;
  font-size: var(--fs-content) !important;
}

.hadiah-card-amount{
  font-size: 13px;
}

.btn-hadiah-copy{
  color: var(--tertiary-clr) !important;
  border: 1px solid var(--tertiary-clr) !important;
  font-family: var(--poppins);
}

.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;
}
.wedding-gifts-head{
  text-align: start;
}
.wedding-gifts-title{
  margin-bottom: 0.25em !important;
  font-family: var(--newsreader) !important;
  font-size: var(--fs-heading) !important;
  color: var(--dark-clr) !important;
}
.wedding-gifts-description{
  font-size: var(--fs-content) !important;
  font-family: var(--poppins) !important;
  color: var(--tertiary-clr) !important;
  line-height: 24px !important;
}



/* =============================
        DRESSCODE
============================= */
.dress-wrapper.same-location .dress-inner {
    padding-bottom: 30px;
}
.dress-wrapper:not(.same-location) .dress-inner {
    padding: 30px 20px;
    border: 1px solid var(--tertiary-clr);
    margin: 0px 20px 20px;
    background-color: var(--primary-clr);
}
.dress-wrapper .dress-desc,
.dress-wrapper .dress-item-title,
.dress-wrapper .dress-note {
    color: var(--tertiary-clr);
}

/* =============================
        INVITATION LABEL
============================= */
.kat-page__side-to-side .primary-pane .inner .details .invitation-category {
}
.kat-page__side-to-side .primary-pane .inner .details .invitation-category > .category-icon > svg path {
  fill: var(--tertiary-clr);
  stroke: var(--tertiary-clr);
}
.kat-page__side-to-side .primary-pane .inner .details .invitation-category > .category-label {
  color: var(--tertiary-clr);
}
section.top-cover .inner .details .invitation-category > .category-icon > svg path {
  fill: var(--tertiary-clr);
  stroke: var(--tertiary-clr);
}
section.top-cover .inner .details .invitation-category > .category-label {
  color: var(--tertiary-clr);
}

.rsvp-confirm-btn.back, .form-label{
  font-family: var(--poppins);
  font-size: var(--fs-content);
  line-height: 1.8;
  color: var(--dark-clr);
  font-weight: 300;
}