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

@font-face {
  font-family: "delycost";
  src: url("/css/fonts/delycost/delycost.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  height: 100%;
  color: #1E470F;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  background: #ececec;
}
body .bg {
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.modal {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1024;
  top: 0;
  left: 0;
}

.modal.show {
  display: block;
}

.modal.show body {
  overflow: hidden;
}

.modal .modal-content {
  width: 95%;
  max-width: 450px;
  max-height: 600px;
  margin: auto;
  box-shadow: 1px 3px 29px 2px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 1px 3px 29px 2px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 1px 3px 29px 2px rgba(0, 0, 0, 0.2);
  background: #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: fixed;
  transition: all 400ms ease;
  border-radius: 7px;
}
.modal .modal-content .form-group {
  margin-bottom: 15px;
}
.modal .modal-content .form-group label {
  display: block;
  margin-bottom: 5px;
}
.modal .modal-content .form-group input[type=text], .modal .modal-content .form-group input[type=number], .modal .modal-content .form-group select {
  width: 100%;
  height: 35px;
  padding: 0 10px;
  border: 1px solid #DEDDC2;
  color: #DEDDC2;
  border-radius: 5px;
  font-size: 14px;
  background: none;
}
.modal .modal-content .form-group a {
  border: none;
  padding: 14px 15px;
  background: #1E470F;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-radius: 5px;
  font-size: 13px;
  font-weight: bold;
  display: inline-flex;
  cursor: pointer;
  text-decoration: none;
  width: 100%;
  justify-content: center;
  margin-top: 15px;
}

.modal .modal-content.modal-sm {
  width: 400px;
}

.modal .modal-content .body {
  position: relative;
  max-height: 600px;
  overflow-y: auto;
  padding: 15px;
}

.modal .modal-content .close-modal {
  height: 40px;
  width: 40px;
  background-color: #b94239;
  border-radius: 50%;
  position: absolute;
  right: 10px;
  top: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 99;
}

.demo-top-notif {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7411764706);
  z-index: 99;
  height: 50px;
  line-height: 50px;
  color: #fff;
  padding: 0 10px;
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
}
.demo-top-notif .text-right {
  text-align: right;
}
.demo-top-notif a {
  padding: 6px 15px;
  text-align: center;
  border: 1px solid #ffffff;
  border-radius: 5px;
  color: #ffffff;
  font-size: 0.8rem;
  text-decoration: none;
}

.menu {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 60px;
  background: rgba(255, 255, 255, 0.2901960784);
  box-shadow: 0px 15px 20px rgba(170, 167, 166, 0.24);
  border-radius: 10px;
  max-width: 400px;
  display: flex;
  align-items: center;
  z-index: 99;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  padding: 0 15px;
}
.menu ul li a {
  font-family: "Afacad", sans-serif;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 10px;
  background: linear-gradient(to bottom, #C7DDFF 50%, rgba(110, 158, 233, 0.8901960784));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.menu ul li a img {
  width: 25px;
  margin-bottom: 3px;
}

.player a {
  pointer-events: fill;
}
.player a .sound-control {
  position: absolute;
  top: -60px;
  right: -5px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2901960784);
  border-radius: 50%;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
}
.player a .sound-control.pause {
  background-image: url("https://cdn.kadio.id/cdn/1754748827_icon-pause.png");
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center;
  animation: pulse 2s infinite;
}
.player a .sound-control.pause.play {
  background-image: url("https://cdn.kadio.id/cdn/1754748856_icon-play.png");
  background-size: 30px;
  background-repeat: no-repeat;
  background-position: center;
}

.hide {
  display: none !important;
}

#cover {
  height: 100%;
}

.loading {
  width: 100%;
  max-width: 480px;
  height: 100%;
  position: fixed;
  z-index: 100;
  background: linear-gradient(rgba(222, 221, 194, 0.2705882353), #ffffff);
  top: 0;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 1s;
  transform: translate(-50%, 0);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.loading.hidden {
  opacity: 0;
  transform: translate(-50%, 100%);
}
.loading.opened {
  transform: translate(-50%, -100%);
  pointer-events: none;
}
.loading .opening {
  width: 180px;
  height: 180px;
  border: 1px solid #A2BF98;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #1E470F;
  position: relative;
  border-radius: 50%;
}
.loading .opening .g, .loading .opening .b {
  font-family: "Afacad", sans-serif;
  font-size: 65px;
}
.loading .opening .g {
  margin-top: -20px;
}
.loading .opening .b {
  margin-bottom: -20px;
}
.loading .brides-name {
  font-family: "delycost", serif;
  margin-top: 20px;
  color: #1E470F;
  font-size: 25px;
}
.loading img {
  width: 250px;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}
.container {
  max-width: 480px;
  margin: auto;
  background: #ffffff;
  position: relative;
  height: 100%;
}
.container h2.title {
  font-family: "delycost", serif;
  color: #1E470F;
  font-size: 26px;
  padding-bottom: 30px;
  text-align: center;
}
.container section.cover {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("https://cdn.kadio.id/cdn/1755675618_kdo58-flower-3.png") bottom right no-repeat, #000000;
  background-size: 50%;
}
.container section.cover .top-flower {
  position: absolute;
  top: 10%;
  left: 0;
  width: 110px;
  z-index: 2;
}
.container section.cover .top-flower img {
  width: 100%;
}
.container section.cover .profile {
  position: relative;
  width: 100%;
}
.container section.cover .profile .image-cover {
  width: 85%;
  aspect-ratio: 4/3.5;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 5px;
  margin-bottom: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.container section.cover .profile .bg-flower {
  position: absolute;
  top: 50%;
  right: 0;
  width: 120px;
}
.container section.cover .profile .bg-flower img {
  width: 100%;
}
.container section.cover .sub-title {
  color: #1E470F;
  font-family: "Afacad", sans-serif;
  letter-spacing: 2px;
  font-size: 16px;
}
.container section.cover .title-sec {
  width: 90%;
  max-width: 400px;
  padding: 0px 15px;
  text-align: center;
  position: relative;
}
.container section.cover .title-sec h1 {
  font-family: "delycost", serif;
  font-size: 48px;
  color: #FFE8BE;
  line-height: 125%;
  font-weight: 400;
  letter-spacing: -1px;
  font-style: normal;
}
.container section.cover .guest {
  border-radius: 5px;
  min-width: 240px;
  max-width: 320px;
  padding: 15px;
  margin: 10px 0 10px 0;
  color: #E9E9E9;
  font-size: 14px;
}
.container section.cover .guest .label {
  font-family: "Poppins", sans-serif;
}
.container section.cover .guest .name {
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  padding: 5px 0;
  color: #E9E9E9;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.container section.cover a {
  font-family: "Roboto", sans-serif;
  background: #1E470F;
  border: none;
  padding: 7px 20px;
  color: #ffffff;
  text-transform: uppercase;
  border-radius: 30px;
  font-size: 14px;
  display: inline-flex;
  cursor: pointer;
  text-decoration: none;
  align-items: center;
  background: #D5BB74;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  color: #000000;
}
.container section.cover a.opened {
  pointer-events: none;
  background: none;
  color: #1E470F;
}
.container section.cover button {
  font-family: "Roboto", sans-serif;
  background: #1E470F;
  border: none;
  padding: 7px 20px;
  color: #ffffff;
  text-transform: uppercase;
  border-radius: 30px;
  font-size: 14px;
  display: inline-flex;
  cursor: pointer;
  text-decoration: none;
  align-items: center;
}
.container section.index {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url("https://cdn.kadio.id/cdn/1755675618_kdo58-flower-3.png") bottom right no-repeat, #000000;
  background-size: 50%;
}
.container section.index .top-flower {
  position: absolute;
  top: 10%;
  left: 0;
  width: 110px;
  z-index: 2;
}
.container section.index .top-flower img {
  width: 100%;
}
.container section.index .profile {
  position: relative;
  width: 100%;
}
.container section.index .profile .image-cover {
  width: 85%;
  aspect-ratio: 4/3.5;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 5px;
  margin-bottom: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.container section.index .profile .bg-flower {
  position: absolute;
  top: 50%;
  right: 0;
  width: 120px;
}
.container section.index .profile .bg-flower img {
  width: 100%;
}
.container section.index .sub-title {
  color: #1E470F;
  font-family: "Afacad", sans-serif;
  letter-spacing: 2px;
  font-size: 16px;
}
.container section.index .title-sec {
  width: 90%;
  max-width: 400px;
  padding: 0px 15px;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}
.container section.index .title-sec h1 {
  font-family: "delycost", serif;
  font-size: 48px;
  color: #FFE8BE;
  line-height: 125%;
  font-weight: 400;
  letter-spacing: -1px;
  font-style: normal;
}
.container section.index .save-the-date {
  font-family: "delycost", serif;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 109%;
  color: #E9E9E9;
  margin-bottom: 10px;
}
.container section.index .date {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #E9E9E9;
  margin-bottom: 20px;
}
.container section.index .count-down {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #A67C52;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
}
.container section.index .count-down .box {
  background: #D5BB74;
  width: 57px;
  height: 57px;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 3px;
}
.container section.index .count-down .box .value {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  color: #000000;
}
.container section.index .count-down .box .label {
  font-family: "Poppins", sans-serif;
  font-size: 10px;
  color: #000000;
}
.container section.introduction {
  text-align: center;
  padding: 30px 0 160px 0;
  background: url("https://cdn.kadio.id/cdn/1755749211_kdo57-flower-7.png") bottom center no-repeat, #000000;
  background-size: 90%;
}
.container section.introduction .top-flower {
  width: 80%;
  margin-top: -40px;
}
.container section.introduction h2.title {
  color: #D5BB74;
  font-family: "delycost", serif;
  font-weight: 400;
  font-size: 40px;
  display: flex;
  align-items: center;
  padding: 0;
  justify-content: center;
  padding: 0 20px 0px 20px;
  position: relative;
  margin-bottom: 30px;
  letter-spacing: 1px;
}
.container section.introduction .intro {
  padding: 0 30px;
  color: #E9E9E9;
  font-size: 0.9rem;
}
.container section.introduction .bride {
  padding-top: 50px;
}
.container section.introduction .bride .image {
  width: 180px;
  height: 180px;
  background: #D9D9D9;
  border-radius: 20px;
  margin: auto;
  position: relative;
  font-family: "Afacad", sans-serif;
  color: #1E470F;
  font-size: 60px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.container section.introduction .bride .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.container section.introduction .bride .profile {
  width: 80%;
  margin: auto;
}
.container section.introduction .bride .profile .nick-name {
  font-family: "delycost", serif;
  color: #D5BB74;
  font-size: 30px;
  padding-top: 20px;
}
.container section.introduction .bride .profile .full-name {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #D5BB74;
}
.container section.introduction .bride .profile .label {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  margin: 7px 0;
  color: #E9E9E9;
}
.container section.introduction .bride .profile .parents {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #E9E9E9;
}
.container section.event {
  background: url("https://cdn.kadio.id/cdn/1755675618_kdo58-flower-3.png") bottom right no-repeat, #000000;
  background-size: 150px;
  position: relative;
}
.container section.event .top-flower {
  width: 200px;
  position: absolute;
  right: 0;
  top: -50px;
}
.container section.event .title {
  color: #D5BB74;
  font-family: "delycost", serif;
  font-weight: 400;
  font-size: 36px;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 0 0;
  position: relative;
}
.container section.event .list-event {
  list-style: none;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.container section.event .list-event li {
  color: #D5BB74;
  padding: 30px 30px 30px 30px;
  position: relative;
}
.container section.event .list-event li .event-name {
  font-family: "delycost", serif;
  font-weight: 400;
  font-size: 40px;
  margin-bottom: 10px;
  color: #D5BB74;
}
.container section.event .list-event li .place-name {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  margin: 10px 0;
  color: #FFFFFF;
}
.container section.event .list-event li .address {
  margin-bottom: 15px;
}
.container section.event .list-event li .address, .container section.event .list-event li .event-date {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
}
.container section.event .list-event li .button-div {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}
.container section.event .list-event li a {
  font-family: "Roboto", sans-serif;
  background: #1E470F;
  border: none;
  padding: 7px 20px;
  color: #ffffff;
  text-transform: uppercase;
  border-radius: 30px;
  font-size: 14px;
  display: inline-flex;
  cursor: pointer;
  text-decoration: none;
  align-items: center;
  text-decoration: none;
  margin: 5px 0;
  font-size: 16px;
  padding: 10px 20px;
  background: #D5BB74;
  border-radius: 20px;
  width: 250px;
  justify-content: center;
  color: #000000;
}
.container section.event .list-event li a.btn-google-calendar {
  border: 1px solid #D5BB74;
  background: #000000;
  color: #D5BB74;
}
.container section.event .list-event li a .icon {
  margin-right: 5px;
  width: 20px;
  height: 20px;
}
.container section.event .list-event li a .icon.map {
  background: url("/images/kdo58/map.svg") no-repeat center;
}
.container section.event .list-event li a .icon.calender {
  background: url("/images/kdo58/calender.svg") no-repeat center;
}
.container section.event .list-event li:last-child {
  padding: 30px 30px 50px 30px;
}
.container section.story {
  background: #000000;
  text-align: center;
  padding: 40px 0 0 0;
}
.container section.story .profile {
  z-index: 0;
  position: relative;
}
.container section.story .profile .image-cover {
  width: 80%;
  border-radius: 10px;
  z-index: 0;
  position: relative;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.container section.story h2.title {
  color: #EDEDED;
  font-family: "delycost", serif;
  font-weight: 400;
  font-size: 43px;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  padding: 0;
  justify-content: center;
  padding: 20px 20px 0 20px;
  position: relative;
}
.container section.story img.arrow {
  width: 15px;
  margin: 20px 0 0 0;
}
.container section.story ul {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  overflow: hidden;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  width: 85%;
  margin: auto;
}
.container section.story ul::-webkit-scrollbar {
  display: none;
}
.container section.story ul li {
  width: 100%;
  min-width: 100%;
  scroll-snap-align: start;
  border-radius: 10px;
}
.container section.story ul li .item {
  width: 100%;
  padding: 30px 25px;
  border-radius: 5px;
  background-size: contain;
}
.container section.story ul li .item .title {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 400;
  color: #D5BB74;
}
.container section.story ul li .item .sub-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #E9E9E9;
  line-height: 145%;
}
.container section.story ul li .item .story {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #E9E9E9;
}
.container section.story ul li:not(:last-child) {
  margin-right: 20px;
}
.container section.story .dots {
  text-align: center;
  margin-top: 1rem;
}
.container section.story .dots .dot {
  width: 12px;
  height: 12px;
  margin: 0 1px;
  display: inline-block;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2392156863);
  opacity: 0.5;
  cursor: pointer;
}
.container section.story .dots .dot.active {
  border: 2px solid rgba(255, 255, 255, 0.2392156863);
  background-color: #EDEDED;
}
.container section.gallery {
  background: #000000;
  background-size: 250px;
  text-align: center;
  padding: 30px 0 30px 0;
}
.container section.gallery h2.title {
  color: #CECECE;
  font-family: "delycost", serif;
  font-weight: 400;
  font-size: 40px;
  display: flex;
  align-items: center;
  padding: 0;
  justify-content: center;
  padding: 20px;
  position: relative;
}
.container section.gallery .image-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: var(--cell);
  gap: 5px;
  grid-auto-flow: dense;
  position: relative;
  z-index: 1;
  width: 93%;
  margin: auto;
}
.container section.gallery .image-list .image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  grid-column: span 1;
  grid-row: span 1;
  aspect-ratio: 1/1;
  min-width: 0;
  min-height: 0;
}
.container section.gallery .image-list .image a {
  display: block;
  width: 100%;
  height: 100%;
}
.container section.gallery .image-list .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.container section.gallery .image-list.n1 {
  grid-template-columns: 1fr;
}
.container section.gallery .image-list.n1 .image:first-child {
  grid-column: 1/-1;
  grid-row: span 2;
}
.container section.gallery .image-list.n2 {
  grid-template-columns: repeat(1, 1fr);
}
.container section.gallery .image-list.n3 .image:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}
.container section.gallery .image-list.n4 {
  grid-template-columns: repeat(2, 1fr);
}
.container section.gallery .image-list.n5 {
  grid-template-columns: repeat(2, 1fr);
}
.container section.gallery .image-list.n5 .image:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.container section.gallery .image-list.even6plus {
  grid-template-columns: repeat(2, 1fr);
}
.container section.gallery .image-list.odd5plus .image:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.container section.rsvp {
  background: #000000;
  padding: 0 10px 30px 10px;
  position: relative;
}
.container section.rsvp h2.title {
  color: #D5BB74;
  font-family: "delycost", serif;
  font-weight: 400;
  font-size: 40px;
  display: flex;
  align-items: center;
  padding: 0;
  justify-content: center;
  padding: 20px;
  position: relative;
}
.container section.rsvp .form {
  padding: 0 0 40px 0px;
  width: 90%;
  margin: auto;
  border-radius: 7px;
}
.container section.rsvp .form .form-group.bgs {
  background: #fff;
  border-bottom: 1px solid #333232;
  border-radius: 5px 5px 0 0;
  padding: 10px;
}
.container section.rsvp .form .form-group:not(:last-child) {
  margin-bottom: 20px;
}
.container section.rsvp .form .form-group label {
  font-family: "Poppins", sans-serif;
  display: block;
  color: #BBA466;
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.container section.rsvp .form .form-group input[type=text] {
  font-family: "Poppins", sans-serif;
  width: 100%;
  border: none;
  background: #FFFFFF;
  height: 40px;
  color: #000000;
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
  padding: 0 15px;
}
.container section.rsvp .form .form-group input[type=text]:focus {
  outline: none;
}
.container section.rsvp .form .form-group p {
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-size: 14px;
  color: #DDDDDD;
  margin-top: 5px;
  text-align: left;
}
.container section.rsvp .form .form-group p.center {
  text-align: center;
}
.container section.rsvp .form .form-group textarea {
  font-family: "Poppins", sans-serif;
  width: 100%;
  outline: none;
  box-shadow: none;
  background: #ffffff;
  border: none;
  color: #49454F;
  resize: none;
  height: 160px;
  font-size: 16px;
  border-radius: 5px;
  padding: 10px 15px;
}
.container section.rsvp .form .form-group textarea:focus {
  outline: none;
}
.container section.rsvp .form .form-group button {
  font-family: "Roboto", sans-serif;
  background: #1E470F;
  border: none;
  padding: 7px 20px;
  color: #ffffff;
  text-transform: uppercase;
  border-radius: 30px;
  font-size: 14px;
  display: inline-flex;
  cursor: pointer;
  text-decoration: none;
  align-items: center;
  background: #D5BB74;
  margin: auto;
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: 12px;
  color: #000000;
  width: 100%;
  font-size: 16px;
  border-radius: 20px;
  padding: 10px 20px;
}
.container section.rsvp .form .form-group button img {
  width: 20px;
  margin-right: 5px;
}
.container section.rsvp .form .form-group button.border {
  background: #000000;
  color: #D5BB74;
  border: 1px solid #D5BB74;
}
.container section.rsvp .form .form-group button.btn-open-rsvp {
  background: #606060;
  color: #ffffff;
}
.container section.rsvp .form .form-group.thank-you {
  padding-top: 10px;
}
.container section.rsvp .form .form-group.thank-you h2 {
  text-align: center;
  font-family: "delycost", serif;
  color: #FFE8BE;
  font-size: 48px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 125%;
  margin-top: 40px;
}
.container section.message {
  padding: 10px 0 10px 0;
  background: #000000;
}
.container section.message .title {
  text-align: center;
  line-height: 100%;
  padding: 30px 0;
}
.container section.message .title h2 {
  color: #D5BB74;
  font-family: "delycost", serif;
  font-weight: 400;
  font-size: 40px;
  display: flex;
  align-items: center;
  padding: 0;
  justify-content: center;
  padding: 20px;
  position: relative;
}
.container section.message .title h3 {
  font-family: "delycost", serif;
  font-weight: 400;
  font-size: 28px;
  color: #D5BB74;
}
.container section.message .list-message {
  list-style: none;
  width: 100%;
  margin: auto;
  padding: 10px 25px 30px 25px;
}
.container section.message .list-message li {
  text-align: center;
  position: relative;
  padding: 20px 0;
}
.container section.message .list-message li:not(:last-child) {
  margin-bottom: 10px;
  position: relative;
}
.container section.message .list-message li:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 70px;
  background: #82756B;
}
.container section.message .list-message li .item {
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: center;
}
.container section.message .list-message li .item .icon {
  width: 41px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #DA524B;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  font-size: 18px;
  border-radius: 50%;
  margin-right: 10px;
  display: none;
}
.container section.message .list-message li .item .guest {
  width: calc(100% - 56px);
}
.container section.message .list-message li .item .guest .from {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: #E9E9E9;
  margin-bottom: 5px;
  font-weight: 500;
}
.container section.message .list-message li .item .guest .msg {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #E9E9E9;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: initial;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.container section.gift {
  padding: 50px 10px;
}
.container section.gift .list-gift {
  background: #fdf9f0;
  padding: 30px 20px;
  width: 90%;
  margin: auto;
}
.container section.gift .list-gift ul {
  list-style: none;
}
.container section.gift .list-gift ul li {
  background: #ffffff;
  padding: 20px;
  position: relative;
}
.container section.gift .list-gift ul li .label {
  font-family: "delycost", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}
.container section.gift .list-gift ul li .value {
  font-family: "delycost", serif;
  color: #1E470F;
}
.container section.gift .list-gift ul li .value.mb-3 {
  margin-bottom: 7px;
}
.container section.gift .list-gift ul li:not(:last-child) {
  margin-bottom: 20px;
}
.container section.gift .list-gift ul li .copy {
  position: absolute;
  right: 20px;
  bottom: 25px;
  background: none;
  border: none;
  cursor: pointer;
}
.container section.gift .list-gift .confirmation {
  margin-top: 20px;
  font-family: "Roboto", sans-serif;
  background: #1E470F;
  border: none;
  padding: 7px 20px;
  color: #ffffff;
  text-transform: uppercase;
  border-radius: 30px;
  font-size: 14px;
  display: inline-flex;
  cursor: pointer;
  text-decoration: none;
  align-items: center;
  width: 100%;
  justify-content: center;
}
.container section.inviter {
  padding: 0px 10px 0px 10px;
  background: #000000;
}
.container section.inviter h2.title {
  color: #D5BB74;
  font-family: "delycost", serif;
  font-weight: 400;
  font-size: 36px;
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  padding: 0;
  justify-content: center;
  padding: 20px;
  position: relative;
}
.container section.inviter .list-inviter {
  width: 90%;
  margin: auto;
  border-radius: 7px;
  padding: 0 0 30px 0px;
}
.container section.inviter .list-inviter .item:not(:last-child) {
  margin-bottom: 20px;
}
.container section.inviter .list-inviter .item .item-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
  color: #D5BB74;
}
.container section.inviter .list-inviter .item ol {
  padding-left: 15px;
  margin-left: 15px;
}
.container section.inviter .list-inviter .item ol li {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 400;
}
.container section.inviter .list-inviter .item ol li:not(:last-child) {
  margin-bottom: 5px;
}
.container section.footer {
  text-align: center;
  padding: 0px 0 0px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #D5BB74;
}
.container section.footer div {
  width: 100%;
  padding: 5px;
  color: #fff9f9;
  font-size: 0.9rem;
}
.container section.footer a {
  text-decoration: none;
  color: #ffffff;
}
.container .image-story {
  width: 100%;
  background: linear-gradient(#1E470F 50%, #ffffff);
  text-align: center;
  padding-top: 0px;
}
.container .image-story img.flower {
  width: 100%;
  max-width: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 30px;
}
.container .image-story img.image-cover {
  width: 100%;
  aspect-ratio: 4/4;
  border-radius: 20%;
}

button {
  font-size: 16px;
}

@media (max-width: 390px) {
  body .bg {
    background-image: none;
  }
}
.show-qr {
  border: 2px solid rgb(213, 187, 116) !important;
  background: #ffffff !important;
}

.btn-google-calendar {
  align-items: center;
  justify-content: center;
}

.btn-open-rsvp {
  text-transform: capitalize !important;
  font-weight: 400 !important;
}

.nav-icon {
  list-style: none;
  position: fixed;
  bottom: 10px;
  right: 10px;
}
.nav-icon ul {
  list-style: none;
}
.nav-icon ul li {
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.168627451);
  border-radius: 50%;
  margin-bottom: 8px;
  padding: 12px;
}
.nav-icon ul li img {
  width: 100%;
}

.lightbox .lb-image {
  max-width: 100% !important;
}

.modal-send-gift .content {
  max-height: 500px;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.modal-send-gift .content::-webkit-scrollbar {
  display: none;
}
.modal-send-gift h3 {
  font-size: 1.2rem;
  position: sticky;
  top: -15px;
  background: #fffcfc;
  width: 100%;
  padding: 10px 0;
  z-index: 80;
  font-family: sans-serif;
  color: #363636;
}
.modal-send-gift ul {
  list-style: none;
  width: 100%;
  margin-bottom: 30px;
}
.modal-send-gift ul li {
  margin-bottom: 15px;
}
.modal-send-gift ul li .item {
  padding: 15px;
  box-shadow: 2px 2px 11px 3px rgba(183, 183, 183, 0.25);
  border-radius: 10px;
  overflow: hidden;
}
.modal-send-gift ul li .item label {
  text-transform: uppercase;
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: #181818;
  font-family: sans-serif;
}
.modal-send-gift ul li .item .value {
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #181818;
  font-family: sans-serif;
}
.modal-send-gift ul li .item .value.account-number {
  font-size: 1rem !important;
}
.modal-send-gift ul li .item .value.account-number .text {
  text-decoration: none;
  color: inherit;
}
.modal-send-gift ul li .item .value input {
  height: 35px;
  padding: 0 7px;
  border: 1px solid #617c8a;
  flex: 3;
  margin-right: 5px;
  width: 100%;
  border-radius: 5px;
  color: #617c8a;
}
.modal-send-gift ul li .item .value a.copy {
  background: #607c8a;
  padding: 6px 20px;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  flex: 1;
}

.list-gift-product {
  list-style: none;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  padding-left: 0 !important;
}
.list-gift-product li {
  width: calc(50% - 2px);
  margin: 1px 1px 20px 1px;
  position: relative;
  padding: 0px 0px 50px 0px;
  border: 1px solid #c0c0c0;
  border-radius: 5px;
}
.list-gift-product li .image img {
  width: 100%;
  border-radius: 3px 3px 0 0;
}
.list-gift-product li .info {
  padding: 0 10px;
}
.list-gift-product li .info .product-title {
  display: block;
  font-size: 0.9rem;
  line-height: 20px;
  color: #617c8a;
}
.list-gift-product li .info .product-price {
  display: block;
  font-size: 0.9rem;
  line-height: 20px;
  color: #df5f5a;
  font-weight: 600;
}
.list-gift-product li .product-action {
  width: calc(100% - 10px);
  position: absolute;
  bottom: 5px;
  left: 5px;
  display: flex;
}
.list-gift-product li .product-action a {
  border: 1px solid;
  padding: 4px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  width: 100%;
  border-radius: 5px;
  background: #607c8a;
  color: #fff;
}
.list-gift-product li .product-action a:hover {
  border-color: #df5f5a;
  background: #df5f5a;
  color: #ffffff;
}
.list-gift-product li.add-item {
  background: url("/images/bg-wave.svg") no-repeat bottom, #efefef;
  padding: 30px;
  position: relative;
  border-radius: 7px;
  box-shadow: 2px 2px 11px 3px rgba(183, 183, 183, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 250px;
}

.footer-send-gift {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background: #fff;
  border-radius: 0 0 7px 7px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 2px 2px 11px 3px rgba(183, 183, 183, 0.25);
  z-index: 89;
}
.footer-send-gift .btn-gift-confirmation {
  font-family: sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  background: #b94239;
  color: #fff;
  padding: 0px 100px;
  border-radius: 30px;
  height: 35px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 1rem;
}

#confirmation_form_gift .choose-gift .form-group {
  margin-right: 15px;
  display: flex;
  align-items: center;
}
#confirmation_form_gift .choose-gift .form-group label {
  margin: 0;
  margin-left: 5px;
}
#confirmation_form_gift .d-flex {
  display: flex;
}
#confirmation_form_gift .align-center {
  align-items: center;
}
#confirmation_form_gift label {
  display: block;
}
#confirmation_form_gift input, #confirmation_form_gift select {
  height: 40px;
  width: 100%;
  border: 1px solid #2b2b2b;
  color: #2b2b2b;
  padding: 0 10px;
  border-radius: 5px;
}
#confirmation_form_gift a {
  font-family: "Roboto", sans-serif;
  background: #1E470F;
  border: none;
  padding: 7px 20px;
  color: #ffffff;
  text-transform: uppercase;
  border-radius: 30px;
  font-size: 14px;
  display: inline-flex;
  cursor: pointer;
  text-decoration: none;
  align-items: center;
}
#confirmation_form_gift a.btn-outline-primary {
  font-size: 1rem;
  background: #fff;
  border: 1px solid #1E470F;
  color: #1E470F;
  margin-right: 10px;
}
