* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body * {
  word-wrap: break-word;
}

/* Body, HTML */
html {
  scroll-behavior: smooth;
}

body,
html {
  width: 100%;
  height: 100%;
  background: #fff;
  scroll-behavior: smooth;
}

body font {
  font-family: inherit;
}

body {
  /* Heading Fonts */
  --heading-family: var(--roboto);
  --heading-style: normal;
  --heading-weight: 500;
  --heading-size: 32px;
  --heading-lettercase: none;

  /* Body Text Fonts */
  --body-text-family: var(--roboto);
  --body-text-style: normal;
  --body-text-weight: 400;
  --body-text-size: 16px;
  --body-text-lettercase: none;

  /* Colors */
  --background-primary: #ffffff;
  --background-primary-rgb: 255, 255, 255;
  --background-secondary: #ffffff;
  --background-secondary-rgb: 255, 255, 255;
  --background-tertiary: #ffffff;
  --background-tertiary-rgb: 255, 255, 255;
  --text-primary: #000000;
  --text-primary-rgb: 0, 0, 0;
  --text-secondary: #000000;
  --text-secondary-rgb: 0, 0, 0;
  --text-tertiary: #000000;
  --text-tertiary-rgb: 0, 0, 0;
  --button-text-primary: #ffffff;
  --button-text-primary-rgb: 255, 255, 255;
  --button-background-primary: #000000;
  --button-background-primary-rgb: 0, 0, 0;
  --button-text-secondary: #ffffff;
  --button-text-secondary-rgb: 255, 255, 255;
  --button-background-secondary: #000000;
  --button-background-secondary-rgb: 0, 0, 0;

  -webkit-overflow-scrolling: touch;
}

/* All */
body button:focus,
body button:active {
  background-color: transparent;
}

/* Remove the blue background of button on mobile */
div,
input,
textarea,
select,
button,
a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Link inside P (tag) */
p>a,
label>a {
  border: none !important;
  outline: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0 !important;
  font-size: inherit !important;
  line-height: inherit !important;
  color: #4455aa !important;
  text-decoration: none !important;
  font-style: italic !important;
  font-family: inherit !important;
  background-color: transparent !important;
  display: inline-block !important;
  word-wrap: break-word !important;
}

p>a:hover,
label>a:hover {
  text-decoration: underline !important;
  background-color: transparent !important;
  color: #4455aa !important;
}

/* RESERVATION */
.torsvp__btn-wrap {
  text-align: center;
  padding: 5px 0px;
}

.torsvp__btn {
  text-decoration: none;
  padding: 5px 20px;
  border-radius: 7px;
  background: transparent;
  border: 1px solid var(--button-background-primary);
  color: var(--button-background-primary);
  font-size: 16px;
  line-height: 1.4;
  font-family: var(--roboto);
  font-weight: 600;
  display: inline-block;
  vertical-align: top;
  transition: 0.3s;
}

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

.rsvp {
  background: var(--background-secondary);
  width: 100%;
  padding: 50px 20px;
  overflow: hidden;
}

.rsvp .rsvp-inner {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* rsvp info */
.rsvp-head .rsvp-info .info-date,
.rsvp-head .rsvp-info .info-text {
  /* color: var(--text-clr-tr); */
}

.rsvp-head .rsvp-info .info-date {
  /* font-size: 16px;
    font-style: normal; */
  font-weight: 600;
  /* line-height: 24px;
    letter-spacing: 0.08px; */
}

.rsvp .rsvp-inner .rsvp-form {
  width: 100%;
  text-align: center;
  padding: 20px;
}

.rsvp-form>div {
  margin-bottom: 40px;
}

.rsvp-form h1 {
  font-size: 32px;
  margin-bottom: .25em;
  color: var(--text-primary);
}

.rsvp-form .form-label {
  font-size: 17px;
  margin-bottom: .75em;
  display: inline-block;
  color: var(--text-tertiary);
}

.rsvp-form .attendance-value {
  width: 100%;
  display: block;
  padding: 10px 12px;
  background: var(--btn-default);
  text-align: center;
  color: var(--light-clr);
  border-radius: 7px;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.25s ease-in-out;
  cursor: pointer;
  margin-bottom: .7em;
}

/* V2 RSVP SESSION */
.rsvp-session-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0px auto 24px;
}

.session-caption-wrap {
  margin: 0px 0px 10px;
}

.session-caption-wrap .caption {
  /* color: var(--text-clr-tr); */
  text-align: center;
  /* font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; */
}

.session-btn-wrap {
  display: flex;
  flex-wrap: wrap;
}

.session-btn-wrap>label {
  flex-basis: calc(50% - 10px);
  /* Adjust the width as needed */
  flex-grow: 1;
  /* Allow the labels to grow within their flex container */
  margin: 5px;
  /* Add margin for spacing between columns */
  box-sizing: border-box;
  /* Include padding and border in the total width */
}

.rsvp-session-btn {
  width: 100%;
  display: block;
  padding: 8px;
  margin: 0px auto;
  border-radius: 12px;
  font-family: var(--playfair);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border: none;
  outline: none;
  box-shadow: none;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  background-color: transparent;
  border-radius: 100px;
}

.rsvp-form input[type="radio"] {
  display: none;
}

.session-btn-wrap input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.rsvp-form input[type="radio"]:checked+.attendance-value.come {
  background: var(--success-clr);
}

.rsvp-form input[type="radio"]:checked+.attendance-value.not-come {
  background: var(--error-clr);
}

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

.rsvp-amount-controller .input-wrap,
.rsvp-amount-controller .input-control {
  width: 100% !important;
}

@media (hover) {

  .rsvp-form .attendance-value.come:hover {
    background: var(--success-clr);
  }

  .rsvp-form .attendance-value.not-come:hover {
    background: var(--error-clr);
  }

}

.rsvp-form .rsvp-submit {
  width: 100%;
  display: block;
  background: var(--button-background-primary);
  color: var(--button-text-primary);
  border: none;
  outline: none;
  padding: 10px 12px;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

.rsvp-form .rsvp-submit:hover {
  background: rgba(var(--button-background-primary-rgb), .7);
}

.rsvp-form #rsvp-guest-amount {
  display: none;
}

.rsvp .rsvp-confirm {
  padding: 20px;
  width: 100%;
  text-align: center;
}

.rsvp .rsvp-confirm h1 {
  font-family: var(--ebrima-bold);
  font-size: 38px;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.rsvp .rsvp-confirm .body {
  margin: 10px 0;
  padding: 20px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rsvp .rsvp-confirm .body p {
  font-size: 15px;
}

.rsvp .rsvp-confirm .body .status {
  padding: 8px 28px;
  font-size: 15px;
  border-radius: 4px;
  border: 2px solid var(--btn-default);
  color: var(--btn-default);
  background: transparent;
  margin: 0;
  margin-bottom: 20px;
}

.rsvp .rsvp-confirm .body .status.come {
  border-color: var(--success-clr);
  color: var(--success-clr);
}

.rsvp .rsvp-confirm .body .status.not-come {
  border-color: var(--error-clr);
  color: var(--error-clr);
}

.rsvp .rsvp-confirm .change-confirmation {
  width: 100%;
  display: block;
  background: var(--button-background-primary);
  color: var(--button-text-primary);
  border: none;
  outline: none;
  padding: 10px 12px;
  border-radius: 7px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

.rsvp .rsvp-confirm .change-confirmation:hover {
  background: rgba(var(--button-background-primary-rgb), .7);
}

/* RSVP Full */
.rsvp .rsvp-full {
  padding: 20px;
  width: 100%;
  text-align: center;
}

.rsvp .rsvp-full .head h1 {
  font-family: var(--ebrima-bold);
  font-size: 38px;
  letter-spacing: 2px;
  color: var(--text-primary);
}

.rsvp .rsvp-full .body p {
  font-size: 17px;
  display: inline-block;
  margin: auto;
  color: var(--text-tertiary);
}

/* E-INVITATION */
.rsvp .e-invitation {
  background-color: transparent;
  padding: 10px 0;
}

.rsvp .e-invitation>div {
  background-color: transparent;
}

.rsvp .e-invitation .e-invitation__card {
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
  margin-bottom: 10px;
  display: block;
  object-fit: contain;
  object-position: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.rsvp .e-invitation .e-invitation__download {
  text-decoration: none;
  background: transparent;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 1rem;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  color: var(--button-background-primary);
  border: 1px solid var(--button-background-primary);
  transition: all 0.25s ease-in-out;
}

.rsvp .e-invitation .e-invitation__download:hover {
  background: var(--button-background-primary);
  color: var(--button-text-primary);
}

.rsvp .e-invitation .e-invitation__download .e-invitation__download-svg {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: top;
  margin-right: 5px;
}

.rsvp .e-invitation .e-invitation__download .e-invitation__download-svg rect {
  fill: transparent;
  fill-opacity: 0.01;
}

.rsvp .e-invitation .e-invitation__download .e-invitation__download-svg path {
  stroke: var(--button-background-primary);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transition: all 0.25s ease-in-out;
}

.rsvp .e-invitation .e-invitation__download:hover .e-invitation__download-svg path {
  stroke: var(--button-text-primary);
}

/* COMMENT */
.comment-outer {
  background: var(--background-secondary);
  width: 100%;
  padding: 50px 20px;
  position: relative;
}

.comment-outer .comment-inner {
  width: 100%;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  transition: all 0.25s ease-in-out;
}

.comment-outer .comment-inner .head {
  margin-bottom: 10px;
  text-align: center;
  padding: 10px;
}

.comment-outer .comment-inner .head p {
  font-size: 16px;
  font-style: italic;
  line-height: 22px;
}

.comment-outer .comment-inner h1 {
  font-size: 34px;
  text-align: center;
  padding: 10px;
  text-transform: capitalize;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.comment-outer .comment-inner .foot {
  padding: 10px;
  width: 100%;
  display: block;
}

.comment-outer .comment-inner .more-comment {
  padding: 8px 20px;
  outline: none;
  border: none;
  border-radius: 7px;
  background: var(--button-background-primary);
  color: var(--button-text-primary);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
  display: block;
  width: 100%;
}

.comment-outer .comment-inner .more-comment:hover {
  background: rgba(var(--button-background-primary-rgb), .7);
  color: var(--button-text-primary);
}

.comment-form {
  padding: 10px;
  margin-bottom: 15px;
  position: relative;
}

.comment-form .send-comment {
  padding: 8px 20px;
  border-radius: 5px;
  outline: none;
  border: none;
  background: var(--button-background-primary);
  color: var(--button-text-primary);
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

.comment-form .send-comment:hover {
  background: rgba(var(--button-background-primary-rgb), .7);
  color: var(--button-text-primary);
}


.comments {
  background: transparent;
}

.comments .comment {
  margin-bottom: 5px;
  padding: 10px 15px;
}

.comment .comment-head {
  display: flex;
  padding: 5px 0;
}

.comment .comment-head p {
  font-size: 18px;
  color: var(--text-primary);
  font-family: var(--ebrima-bold);
}

.comment .comment-head p i {
  font-size: 1em;
  margin-left: 5px;
}

.comment .comment-body {
  padding: 0;
}

.comment .comment-body p {
  font-size: 15px;
  font-family: var(--ebrima);
  color: var(--text-tertiary);
}

.comment .comment-foot {
  padding: 5px 0;
}

.comment .comment-foot small {
  font-size: 13px;
  margin-right: 10px;
}

.comment .comment-foot a {
  font-size: 13px;
  color: var(--error-clr);
  text-decoration: none;
}

.comment .comment-foot a:hover {
  text-decoration: underline;
}

.comments .no-comment {
  padding: 20px;
  text-align: center;
  font-size: 14px;
  font-family: var(--ebrima);
}

.comment-delete {
  margin-left: 5px;
  cursor: pointer;
}

.comment-delete:hover {
  opacity: 0.75;
}

/* GALLERY */
.gallery {
  width: 100%;
  padding: 10px;
  background: var(--background-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
}

.gallery>.title {
  max-width: 1200px;
  width: 100%;
  padding: 20px 40px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 10px;
}

.gallery>.title h1 {
  font-size: 32px;
  margin-bottom: .35em;
}

.gallery>.title p {
  font-size: 16px;
  line-height: 22px;
}

.gallery .flexbin {
  background: transparent;
  margin: 5px;
}

.flexbin:after {
  min-width: 0;
  content: none;
}


/* =====================================
        GALLERY - SLIDER SYNCING
==================================== */
.gallery__slider-syncing {
  /* background: lightsalmon; */
  padding: 10px 0;
}

.gallery__slider-syncing .slider-syncing__preview {
  /* background-color: olive; */
  padding: 10px 0;
  margin: 0 auto;
  width: 320px;
}

.gallery__slider-syncing .slider-syncing__preview .preview-item {
  /* background-color: mediumpurple; */
  padding: 0;
  width: 320px;
  height: 180px;
  margin: 0 auto;
  display: block;
}

.gallery__slider-syncing .slider-syncing__nav {
  /* background: lightseagreen; */
  padding: 0 0 10px 0;
  margin: 0 auto;
  width: 320px;
}

.gallery__slider-syncing .slider-syncing__nav .nav-item {
  /* background-color: peru; */
  padding: 0;
  margin: 0 2.5px;
  min-width: 75px;
  max-width: 150px;
  height: 75px;
  display: block;
  cursor: pointer;
}

.gallery__slider-syncing img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media only screen and (min-width: 320px) {
  .gallery__slider-syncing .slider-syncing__preview {
    width: 375px;
  }

  .gallery__slider-syncing .slider-syncing__preview .preview-item {
    width: 375px;
    height: 210.94px;
  }

  .gallery__slider-syncing .slider-syncing__nav {
    width: 375px;
  }

  .gallery__slider-syncing .slider-syncing__nav .nav-item {
    margin: 0 2.5px;
    max-width: 200px;
    height: 100px;
  }
}

@media only screen and (min-width: 375px) {
  .gallery__slider-syncing .slider-syncing__preview {
    width: 425px;
  }

  .gallery__slider-syncing .slider-syncing__preview .preview-item {
    width: 425px;
    height: 239.06px;
  }

  .gallery__slider-syncing .slider-syncing__nav {
    width: 425px;
  }

  .gallery__slider-syncing .slider-syncing__nav .nav-item {
    margin: 0 2.5px;
    max-width: 200px;
    height: 100px;
  }
}

@media only screen and (min-width: 425px) {
  .gallery__slider-syncing .slider-syncing__preview {
    width: 560px;
  }

  .gallery__slider-syncing .slider-syncing__preview .preview-item {
    width: 560px;
    height: 315px;
  }

  .gallery__slider-syncing .slider-syncing__nav {
    width: 560px;
  }

  .gallery__slider-syncing .slider-syncing__nav .nav-item {
    margin: 0 2.5px;
    max-width: 225px;
    height: 100px;
  }
}

@media only screen and (min-width: 560px) {
  .gallery__slider-syncing .slider-syncing__preview {
    width: 768px;
  }

  .gallery__slider-syncing .slider-syncing__preview .preview-item {
    width: 768px;
    height: 432px;
  }

  .gallery__slider-syncing .slider-syncing__nav {
    width: 768px;
  }

  .gallery__slider-syncing .slider-syncing__nav .nav-item {
    margin: 0 5px;
    max-width: 250px;
    height: 125px;
  }
}


/* =====================================
        GALLERY - SINGLE SLIDER
==================================== */
.gallery__single-slider {
  padding: 0;
  overflow: hidden;
}

.gallery__single-slider .slider-container {
  padding: 15px 0;
}

.gallery__single-slider .slider-container .slick-list {
  overflow: visible;
}

.gallery__single-slider .slider-container .slider-item.slick-current.slick-center {
  transform: scale(1);
}

.gallery__single-slider .slider-container .slider-item {
  display: flex;
  transform: scale(0.85);

  transition: all 1.25s;
  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);
}

.gallery__single-slider .slider-container .slider-item .preview {
  --width: 275px;
  --height: 366.67px;

  width: var(--width);
  height: var(--height);
  display: flex;
  margin: 0 auto;
  overflow: hidden;
  transition: all 0.25s ease-out;
}

.gallery__single-slider .slider-container .slider-item .preview .anchor {
  width: 100%;
  height: 100%;
  display: inline-block;
  margin: 0 auto;
  vertical-align: top;
}

.gallery__single-slider .slider-container .slider-item .preview .img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: block;
  object-fit: cover;
  object-position: center;
}



/* =====================================
        KAT GALLERY - MODERN
==================================== */
.kat-gallery__modern {
  background-color: transparent;
  width: 100%;
}

.kat-gallery__modern .modern__inner {
  background-color: transparent;
}

.kat-gallery__modern .modern__inner .modern__list-wrap {
  /* background-color: lightskyblue; */
  padding: 2.5px;
}

.kat-gallery__modern .modern__inner .modern__list-wrap .modern__list {
  /* background-color: olive; */
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
}

.kat-gallery__modern .modern__inner .modern__list-wrap .modern__list>a {
  /* background-color: peru; */
  width: 33.3%;
  height: 50px;
  display: block;
  position: relative;
}

.kat-gallery__modern .modern__inner .modern__list-wrap .modern__list>a.selected>img {
  opacity: 0.5;
}

.kat-gallery__modern .modern__inner .modern__list-wrap .modern__list>a>img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: all 0.25s ease-out;
}

/* Highlight */
.kat-gallery__modern .modern__inner .modern__highlight {
  /* background-color: indianred; */
  padding: 2.5px;
}

.kat-gallery__modern .modern__inner .modern__highlight .modern__img-wrap {
  /* background-color: darkolivegreen; */
  display: block;
  width: 100%;
  height: auto;
  max-width: 720px;
}

.kat-gallery__modern .modern__inner .modern__highlight .modern__img-wrap .modern__img {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  object-fit: cover;
  object-position: center;
  transition: all 0.35s ease-out;
}

.kat-gallery__modern .modern__inner .modern__highlight .modern__img-wrap .modern__img.show {
  opacity: 1;
}

/* =====================================
        KAT GALLERY - GALLERY
==================================== */
.kat-gallery__straight {
  padding: 5px 2.5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.kat-gallery__straight>a {
  width: calc(50% - 10px);
  height: 240px;
  display: block;
  margin: 5px;
  flex-grow: 1;
}

.kat-gallery__straight>a>img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* =====================================
        VIDEO GALLERY
==================================== */
.video-gallery {
  padding: 20px;
  overflow: hidden;
}

.video-gallery .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
  padding: 20px;
}

.video-gallery .inner>.title {
  display: block;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.video-gallery .inner>.title h1 {
  font-size: 32px;
  margin-bottom: 0.5em;
}

.video-gallery .inner>.title p {
  line-height: 20px;
  font-size: 16px;
}

.video-gallery .inner .video-outer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px;
}

.video-gallery .inner .video-outer .video {
  width: auto;
  margin: 15px 25px;
}

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

.video-gallery .inner .video-outer .video .preview {
  width: 426px;
  height: 240px;
  display: block;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.video-gallery .inner .video-outer .video .preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.video-gallery .inner .video-outer .video .preview .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: none;
  outline: none;
  cursor: pointer;
  font-size: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  background: transparent;
  transition: all 0.25s ease-in-out;
  opacity: 0.7;
}

.video-gallery .inner .video-outer .video .preview .play-btn:hover {
  opacity: 1;
}

.video-gallery .inner .video-outer .video>.title {
  padding: 15px;
  text-align: center;
  font-size: 16px;
}

/* =====================================
        GIFT
==================================== */
.gift {
  width: 100%;
  padding: 30px 20px 60px 20px;
}

.gift .gift-inner {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

/* Gift Head (Title) */
.gift .gift-inner .gift-title {
  padding: 10px;
  text-align: center;
  color: var(--text-primary);
  margin-bottom: 30px;
}

.gift .gift-inner .gift-title h1 {
  font-size: 32px;
  margin-bottom: 0.5em;
}

.gift .gift-inner .gift-title p {
  font-size: 16px;
  line-height: 22px;
}

.gift .gift-inner .gift-form {
  background: var(--background-secondary);
  border-radius: 12px;
  color: var(--text-primary);
  overflow: hidden;
  box-shadow: -1px 1px 5px rgba(0, 0, 0, 0.2);
}

/* Gift Details */
.gift .gift-inner .gift-form .gift-details .bank-detail {
  padding: 20px;
}

.gift .gift-inner .gift-form .gift-details .bank-detail .saving-books {
  text-align: center;
  font-size: 17px;
  margin-bottom: .75em;
  line-height: 25px;
}

.gift .gift-inner .gift-form .selectize-control {
  display: block;
  width: 100%;
  border: none;
  outline: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

.gift .gift-inner .gift-form .selectize-control.single .selectize-input {
  display: block;
  width: 100%;
  padding: 10px;
  outline: none;
  box-shadow: none;
  border-radius: 7px;
  font-size: 15px;
  line-height: 1.4;
  background: var(--light-clr);
  border: 1px solid var(--text-primary);
  color: var(--text-primary);
  font-weight: 500;
  font-family: var(--roboto);
}

.gift .gift-inner .gift-form .selectize-control .item {
  padding: 10px;
  background: var(--light-clr);
  color: var(--text-primary);
  transition: all 0.25s ease-in-out;
}

.gift .gift-inner .gift-form .selectize-control .item:hover {
  background: var(--background-primary);
  color: var(--text-tertiary);
}

.gift .gift-inner .gift-form .gift-details .bank-detail .form-group {
  margin-bottom: 0;
}

.gift .gift-inner .gift-form .gift-details .form-label.center {
  display: block;
  text-align: center;
}

.gift .gift-inner .gift-form .gift-details .bank-detail .saving-books .book {
  padding: 15px 5px;
  margin: 0 10px;
  display: none;
}

.gift .gift-inner .gift-form .gift-details .bank-detail .saving-books .book p>span {
  display: inline-block;
}

.gift .gift-inner .gift-form .gift-details .bank-detail .saving-books .copy-account {
  border: .5px solid var(--background-primary);
  color: var(--text-primary);
  font-size: 14px;
  padding: 5px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 10px;
  transition: all 0.2s ease-in-out;
}

.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-details .bank-detail .saving-books .book .picture-outer {
  overflow: hidden;
  display: block;
}

.gift .gift-inner .gift-form .gift-details .bank-detail .saving-books .book .picture-outer img.picture {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 10px auto;
  border: 2px solid var(--dark-clr);
}

.gift .gift-inner .gift-form .gift-details .bank-detail .insert-nominal {
  display: none;
}

.gift .gift-inner .gift-form input[type="radio"][name="nominal"] {
  display: none;
}

.gift .gift-inner .gift-form .nominal-outer {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  column-gap: 15px;
  row-gap: 10px;
  margin-bottom: 0.75em;
}

@media only screen and (max-width: 480px) {
  .gift .gift-inner .gift-form .nominal-outer {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gift .gift-inner .gift-form .nominal-outer>div {
  width: 50%;
}

.gift .gift-inner .nominal-outer .nominal {
  width: 100%;
  background: var(--light-clr);
  padding: 10px 12px;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border-radius: 7px;
  transition: all 0.25s ease-in-out;
  color: var(--button-background-primary);
  border: 1px solid var(--button-background-primary);
}

.gift .gift-inner .gift-form [name="nominal"]:hover+.nominal,
.gift .gift-inner .gift-form [name="nominal"]:checked+.nominal {
  background: var(--button-background-primary);
  color: var(--button-text-primary);
}

.gift .gift-inner .gift-form .bio-detail {
  padding: 20px;
}

.gift .gift-inner .gift-form .gift-next,
.gift .gift-inner .gift-form .gift-submit {
  border: none;
  outline: none;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 500;
  background: var(--button-background-primary);
  color: var(--button-text-primary);
  width: 100%;
  display: block;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

.gift .gift-inner .gift-form .gift-submit:hover,
.gift .gift-inner .gift-form .gift-next:hover {
  background: rgba(var(--button-background-primary-rgb), .7);
  color: var(--button-text-primary);
}

.gift .gift-inner .gift-form .gift-details {
  background: transparent;
}

/* Gift Picture (Upload Proven Transcation) */
.gift .gift-inner .gift-form .gift-picture {
  background: transparent;
  display: none;
}

.gift .gift-inner .gift-form .gift-picture .picture-detail {
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.gift .gift-inner .gift-form .gift-picture .picture-detail .gift-back {
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
  /* font-size: clamp(14px, 2vw, 17px);
    line-height: clamp(20px, 2.3vw, 25px); */
  font-size: 17px;
  line-height: 25px;
  margin: 10px 0;
}

.gift .gift-inner .gift-form .gift-picture .picture-detail .gift-back:hover {
  text-decoration: underline;
}

.gift .gift-inner .gift-form .gift-picture .picture-detail .head {
  padding: 10px;
  text-align: center;
}

.gift .gift-inner .gift-form .gift-picture .picture-detail .head h2 {
  /* font-size: clamp(15px, 2vw, 19px);
    line-height: clamp(20px, 2.3vw, 25px); */
  font-size: 19px;
  line-height: 25px;
  margin-bottom: .25em;
  font-weight: 600;
  color: var(--text-primary);
  font-family: var(--roboto);
}

.gift .gift-inner .gift-form .gift-picture .picture-detail .head p {
  /* font-size: clamp(14px, 2vw, 17px);
    line-height: clamp(20px, 2.3vw, 25px); */
  font-size: 17px;
  line-height: 25px;
  color: var(--text-tertiary);
}

.gift .gift-inner .gift-form .gift-picture .picture-detail .body {
  padding: 20px;
  width: 100%;
}

.gift .gift-inner .gift-form .gift-picture .picture-detail .body div[data-upload="gift-picture"] {
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px auto;
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

.gift .gift-inner .gift-form .gift-picture .picture-detail .body div[data-upload="gift-picture"]:hover {
  background: var(--light-clr);
}

.gift .gift-inner .gift-form .gift-picture .picture-detail .body div[data-upload="gift-picture"]::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  border: 1px dashed var(--background-primary);
}

.gift .gift-inner .gift-form .gift-picture .picture-detail .body div[data-upload="gift-picture"]>i {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--text-primary);
}

.gift .gift-inner .gift-form .gift-picture .picture-detail .body div[data-upload="gift-picture"]>img[data-image] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  display: none;
}

.gift .gift-inner .gift-form .gift-picture .gift-submit {
  margin-top: auto;
}

.gift .gift-inner .gift-form .gift-submit:hover,
.gift .gift-inner .gift-form .gift-next:hover {
  background: rgba(var(--button-background-primary-rgb), .7);
  color: var(--button-text-primary);
}

/* Tanpa Nominal Konfigurasi */
.gift .gift-inner .gift-form .gift-details .bank-detail {
  padding-bottom: 0.5em;
}

.gift .gift-inner .gift-form .gift-details .bank-detail .saving-books {
  margin-bottom: 0;
}

.gift .gift-inner .gift-form .bio-detail {
  padding-top: 0.5em;
}

/* FOOTER */
.footer {
  width: 100%;
  background: var(--background-primary);
  padding: 5px;
}

.footer .footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 12px;
}

.footer .footer-inner p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-right: 10px;
  font-weight: 600;
}

.footer .footer-inner a {
  display: inline-block;
  vertical-align: top;
}

.footer .footer-inner img {
  width: 80px;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
}

.footer .footer-inner .footer-logo {
  width: 50px;
  height: auto;
  display: inline-block;
  vertical-align: top;
}

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


/* MUSIC OUTER */
.music-outer {
  position: fixed;
  z-index: 999;
  bottom: 15px;
  left: 15px;
  display: inline-block;
  vertical-align: top;
}

.music-outer .music-box {
  width: 60px;
  height: 60px;
  cursor: pointer;

  background-image: url("../assets/vinyl-record.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;

  position: relative;
  top: 0;
  left: 0;
  transform: rotate(0deg);

  /* transition: all 0.8s ease-out; */
  -webkit-transition: all .8s cubic-bezier(.23, .56, .38, .78);
  -moz-transition: all .8s cubic-bezier(.23, .56, .38, .78);
  -o-transition: all .8s cubic-bezier(.23, .56, .38, .78);
  transition: all .8s cubic-bezier(.23, .56, .38, .78);
}

.music-outer .music-box.hide {
  left: -100px;
}

.music-outer .music-box:focus,
.music-outer .music-box:active {
  background-color: transparent;
  outline: none;
  box-shadow: none;
}

.music-outer .music-box.playing {
  animation-name: play-music;
  animation-iteration-count: infinite;
  animation-duration: 20s;
  animation-timing-function: linear;
}

@media only screen and (max-width: 600px) {
  .music-outer .music-box {
    width: 45px;
    height: 45px;
  }
}

@media only screen and (max-width: 425px) {
  .music-outer {
    bottom: 12px;
    left: 12px;
  }
}

@keyframes play-music {
  0% {
    transform: rotate(0deg);
  }

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

/*  =======================================
        PERSON
======================================= */
section.person {
  background-color: transparent;
  font-family: 'Playfair Display', serif;
}

section.person .person-greeting,
section.person .person-info {
  position: fixed;
  bottom: 0;
  left: 50%;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  width: 275px;
  /* width: 100%;
    max-width: 320px; */
  box-shadow: 0 10px 20px 0 rgb(0 0 0 / 20%);
  overflow: hidden;
  background-color: #eee;
  transform: translate(-50%, 100%);
  opacity: 0;
  visibility: hidden;
  transition: all .75s cubic-bezier(.4, 0, .2, 1);
}

section.person .person-greeting.show,
section.person .person-info.show {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}

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

  section.person .person-greeting,
  section.person .person-info {
    margin-left: 10px;
  }
}

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

  section.person .person-greeting,
  section.person .person-info {
    margin-left: 20px;
  }
}

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

  section.person .person-greeting,
  section.person .person-info {
    margin-left: 0;
  }
}


/* Person Greeting */
section.person .person-greeting {
  z-index: 99;
  min-height: 65px;
  max-height: 100px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

section.person .person-greeting>div {
  padding: 10px;
  /* background-color: palevioletred; */
}

section.person .person-greeting>div:first-of-type {
  margin-left: 15px;
}

section.person .person-greeting>div:last-of-type {
  /* background-color: lightseagreen; */
  flex: 1;
}

@media only screen and (max-width: 425px) {
  section.person .person-greeting>div {
    padding: 5px;
  }

  section.person .person-greeting>div:first-of-type {
    margin-left: 8px;
    margin-right: 4px;
  }
}


/* Person Info */
section.person .person-info {
  z-index: 98;
}

section.person .person-info .person-details {
  padding: 15px 10%;
  margin-top: 20px;
  margin-bottom: 5px;
}

section.person .person-info>div {
  width: 100%;
}

section.person .person-info .person-close {
  background-color: transparent;
  border: none;
  outline: none;
  padding: 0;
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  cursor: pointer;
  transition: all 0.25s ease-out 0s;
}

section.person .person-info .person-close .person-close-icon {
  display: block;
  width: 27px;
  height: auto;
  margin: 0 auto;
  fill: none;
}

section.person .person-info .person-close .person-close-icon .cls-1 {
  fill: white;
  fill-opacity: 0.01;
}

section.person .person-info .person-close .person-close-icon .cls-2 {
  stroke: #333;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

section.person .person-info .person-close:hover {
  background-color: rgb(0 0 0 / 2.5%);
}

@media only screen and (max-width: 425px) {
  section.person .person-info .person-details {
    padding: 15px 7.5%;
  }
}


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

section.person .person-name {
  font-family: var(--roboto);
  font-weight: 400;
  line-height: 1;
  color: var(--dark-clr);
}

section.person .person-name.small {
  font-size: 17px;
  margin-top: 2px;
}

section.person .person-name.large {
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 5px;
  line-height: 1.2;
}

section.person .person-powered {
  color: #555;
  font-style: italic;
  font-size: 11px;
  margin-top: 15px;
  display: block;
  font-family: var(--roboto);
}

section.person .person-powered>a {
  color: #222;
  text-decoration: none;
  font-family: inherit;
}

section.person .person-envelope-icon {
  display: block;
  fill: none;
  width: 27px;
  height: auto;
  /* background-color: cadetblue; */
}

section.person .person-envelope-icon .cls-1 {
  stroke: #111;
  stroke-width: 0.5;
}

section.person .person-envelope-open {
  display: block;
  width: 100%;
  height: auto;
  fill: none;
  margin-bottom: -5px;
}

section.person .person-envelope-open .cls-1 {
  fill-rule: evenodd;
  clip-rule: evenodd;
  fill: white;
}

section.person .person-envelope-open .cls-2 {
  stroke: #B5B2C5;
  stroke-width: 0.44426;
  stroke-linecap: round;
  stroke-linejoin: bevel;
}

/*  =======================================
        Cover Free Text
======================================= */
.cover-free-text {
  font-family: var(--roboto);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark-clr);
}

.cover-free-text>a {
  display: inline-block;
  vertical-align: top;
  text-decoration: none;
  color: var(--light-clr);
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

/*  =======================================
        TEXTURE OUTER
======================================= */
.texture-outer {
  position: absolute;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.texture-outer.top {
  top: 0;
}

.texture-outer.bottom {
  bottom: 0;
}


/*  =======================================
        EFFECTS 
======================================= */
.effects {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
  pointer-events: none;
}

.effects>div {
  position: absolute;
  display: block;
  pointer-events: none;
  transition: all 0.25s ease-in-out;
}

/* 1240px */
@media only screen and (max-width: 1240px) {
  /* GALLERY */
  .gallery {
    padding: 5px;
  }

  .gallery>.title {
    width: 100%;
    padding: 10px 20px;
  }

  /* VIDEO GALLERY */
  .video-gallery {
    padding: 5px;
  }

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

  .video-gallery .inner>.title {
    width: 100%;
    padding: 10px 20px;
  }

  .video-gallery .inner>.title h1 {
    font-size: 32px;
    margin-bottom: 0.5em;
  }

  .video-gallery .inner>.title p {
    line-height: 20px;
    font-size: 16px;
  }

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

  .video-gallery .inner .video-outer .video {
    margin: 10px 15px;
  }

  .video-gallery .inner .video-outer .video .preview {
    width: 420px;
    height: 240px;
  }
  /* ================================== */
}

/* 670px */
@media only screen and (max-width: 680px) {
  /* RSVP */
  .rsvp,
  .comment-outer {
    padding: 20px 10px;
  }

}

/* 480px */
@media only screen and (max-width: 480px) {

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

  .video-gallery .inner .video-outer .video {
    margin: 0;
    margin-bottom: 30px;
  }

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

  /* Gift */
  .gift-form .nominal-outer {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =============================
        GENERAL QR CODE
============================= */
.general-qrcode {
  width: 100%;
  padding: 40px 20px;
  background-color: transparent;
}

.general-qrcode .img-qrcode {}

.general-qrcode .img-qrcode img {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 10px;
  margin: 0px auto;
  box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.10);
}



/* =============================
        DRESSCODE
============================= */
.dress-wrapper {
  position: relative;
  overflow: hidden;
}

.dress-inner {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 16px;
}

/* header section */
.dress-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dress-title {
  font-size: 24px;
  /* default value */
  color: #000;
  /* default value */
  font-weight: 500;
  /* default value */
  text-align: center;
  font-size: var(--heading-size);
  text-transform: var(--heading-lettercase);
  font-weight: var(--heading-weight);
  font-family: var(--heading-family);
  color: var(--text-primary);
}

.dress-desc {
  font-size: 12px;
  /* default value */
  color: #000;
  /* default value */
  text-align: center;
  font-size: var(--body-text-size);
  text-transform: var(--body-text-lettercase);
  font-weight: var(--body-text-weight);
  font-family: var(--body-text-family);
  color: var(--text-tertiary);
}

/* body section */
.dress-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}


/* dress list */
.dress-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dress-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dress-item-title {
  font-size: 12px;
  /* default value */
  color: #000;
  /* default value */
  text-align: center;
  font-size: var(--body-text-size);
  text-transform: var(--body-text-lettercase);
  font-weight: var(--body-text-weight);
  font-family: var(--body-text-family);
  color: var(--text-tertiary);
}

/* preview wrapper */
.dress-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 92px;
  height: 92px;
  border-radius: 92px;
  margin: 0px auto;
}

.dress-preview.woman-preview {}

.dress-preview.man-preview {}

/* icon */
.dress-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dress-icon-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  object-position: center;
  margin: 0px auto;
}

.dress-icon .dress-icon-label {
  font-size: 12px;
  color: #000;
  text-align: center;
  font-weight: 400;
  font-family: var(--montserrat);
}

/* thumbnail */
.dress-thumb {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.dress-thumb-item {
  border-radius: inherit;
}

.dress-thumb-img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
}

/* color list */
.dress-color-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0px auto;
  max-width: 240px;
}

.dress-color-item {
  background: #fff;
  /* default value */
  background: var(--bg-color);
  border: 1px solid #fff;
  width: 32px;
  height: 32px;
  border-radius: 32px;
}

/* footer section */
.dress-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dress-note {
  font-size: 12px;
  /* default value */
  color: #000;
  /* default value */
  text-align: center;
  font-style: italic;
  font-size: var(--body-text-size);
  text-transform: var(--body-text-lettercase);
  font-weight: var(--body-text-weight);
  font-family: var(--body-text-family);
  color: var(--text-tertiary);
}

/* =============================
        INVITATION CATEGORY
============================= */
.invitation-category {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  padding: 16px 12px;

  z-index: 10;
}

.invitation-category>.category-icon {
  width: 100%;
  height: auto;
}

.invitation-category>.category-icon>svg {
  display: block;
  width: 20px;
  height: 20px;
  margin: 0 auto;
}

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

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

@media (min-width: 561px) and (max-width: 960px) {
  .invitation-category>.category-icon>svg {
    width: 25px;
    height: 25px;
  }
}

@media (min-width: 1441px) {
  .invitation-category>.category-icon>svg {
    width: 25px;
    height: 25px;
  }
}