@font-face {
    font-family: "Lora";
    src: url(../font/lora-regular.ttf);
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Lora";
    src: url(../font/lora-semibold.ttf);
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Ergisa";
    src: url(../font/ergisa-regular.otf);
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "High Spirited";
    src: url(../font/high-spirited.otf);
}

@font-face {
    font-family: "NTN-V2";
    src: url(../font/ntn-v2.ttf);
}

@font-face {
    font-family: "UTM-Wedding-KT";
    src: url(../font/utm-wedding-kt.ttf);
}

.card-editing .image-placeholder {
    display: inline-block;
    position: relative;
}

.card-editing [data-img-placeholder]::after {
    content: "⚠️" attr(data-img-placeholder);
    position: absolute;
    top: 0;
    left: 0;
    color: white;
    font-size: var(--img-placeholder-fontsize, 1.2rem);
    font-weight: 600;
    pointer-events: none;
    width: var(--img-placeholder-width, 100%);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(83 83 83 / 90%);
    opacity: 1;
    left: 50%;
    transform: translateX(-50%);
    color: #ffca2c;
    box-shadow: 0 0 0 2px #ffca2c inset;
}

#guestConfimationBtn {
    position: fixed;
    bottom: 150px;
    right: 15px;
}

#audioToggleBtn {
    position: fixed;
    bottom: 20px;
    right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: background-color 0.3s ease;
    opacity: 0.4;
    text-align: center;
}

#audioToggleBtn.playing {
  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}


@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
#audioToggleBtn:hover {
  opacity: 1;
}


#giftToggleBtn {
    position: fixed;
    bottom: 85px;
    right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background-color: #ff4767;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: background-color 0.3s ease;
    color:#fff;
    padding:0;
    text-align:center;
}

.comment-form {
    background-color: rgba(var(--color-primary-raw, 216, 216, 216), 0.2);
    padding: 16px;
}
.comment-form .form-group {
  margin-bottom: 16px;
}
.comment-form .group-btns .btn {
  width: 100%;
}
.comment-form .group-btns .btn + .btn {
  margin-top: 12px;
}
.comment-form .group-btns .comment-guest {
  border-left: 1px dashed var(--color-primary, #333);
  border-bottom: 1px dashed var(--color-primary, #333);
  text-align: right;
  padding-top: 12px;
}
.comment-form .group-btns .comment-guest .comment-guest-inner {
  display: inline-block;
  margin-left: auto;
}
.comment-form .group-btns .comment-guest .comment-guest-inner small {
  font-weight: 500;
  color:gray;
}
.comment-form .group-btns .comment-guest .comment-guest-inner strong {
  color: var(--color-primary, #333);
}
.comment-form .btn {
  background-color: var(--color-primary, #5c636a);
  color: white;
  text-transform: uppercase;
  font-size: 14px;
  min-width: 160px;
  margin: auto;
}
.comment-form .btn.confirm-attending {
  border: 2px solid var(--color-primary, #5c636a);
  color: var(--color-primary, #5c636a);
  font-weight: 600;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06), 0 4px;
  background-color: #fff !important;
}
.comment-form .btn.confirm-attending i {
  margin-right: 5px;
}

.comment-list {
  border: 1px solid #d8d8d8;
  padding: 0 16px;
  padding-top: 16px;
}

.comment-list .no-comments{
    padding-bottom: 16px;
    text-align: center;
    font-size: 14px;
    color: gray;
}

.comment-list .private-message{
    padding-bottom: 16px;
    text-align: center;
    font-size: 16px;
    color: var(--color-primary, gray);
    opacity: .9;
    font-style: italic;
}

.comment-list .comment-box {
  border-bottom: 1px dashed #d8d8d8;
  padding: 12px 8px;
  border-bottom: 1px dashed #d8d8d8;
}
.comment-list .comment-box + .comment-box {
  margin-top: 12px;
}
.comment-list .comment-box .fullname {
  font-weight: 600;
}
.comment-list .comment-box .timestamp {
    font-size: 14px;
    margin-bottom: 3px;
}
.comment-list .comment-box .content {
  font-weight: 300;
  font-size: 14px;
}
.comment-list .view-more {
  text-align: center;
}
.comment-list .view-more .btn-link {
  text-transform: uppercase;
  font-weight: 700;
  color: #3f51b5;
  text-decoration: none;
}
.comment-list .view-more a {
  text-decoration: none;
  color: inherit;
}

#photo-gallery .slick-prev,
#photo-gallery .slick-next {
  z-index: 1;
}
#photo-gallery .slick-next {
  right: 10px;
}
#photo-gallery .slick-prev {
  left: 10px;
}
#photo-gallery .slick-list {
  background-color: rgba(var(--color-primary-raw), 0.03);
}
#photo-gallery .slick-track {
  display: flex;
  align-items: center;
  justify-content: center;
}

#photo-gallery-thumbnails {
  margin-top: 10px;
}
#photo-gallery-thumbnails .slick-slide {
  padding: 0 2px;
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.25s;
}
#photo-gallery-thumbnails .slick-slide.slick-current {
  opacity: 1;
}
#photo-gallery-thumbnails .slick-slide.slick-current img {
  border-color: #c8bfb0;
}
#photo-gallery-thumbnails .slick-slide img {
  width: 100%;
  aspect-ratio:1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2px;
  border: 2px solid transparent;
  transition: border-color 0.25s;
}

.container.container-md {
  max-width: 768px;
}

#demo-ribbon {
    font-weight: bold;
    color: #fff;
    font-size:18px;
    --f: 0;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    line-height: 1.8;
    padding-inline: 1lh;
    padding-bottom: var(--f);
    border-image: conic-gradient(#0008 0 0) 51%/var(--f);
    clip-path: polygon( 100% calc(100% - var(--f)),100% 100%,calc(100% - var(--f)) calc(100% - var(--f)),var(--f) calc(100% - var(--f)), 0 100%,0 calc(100% - var(--f)),999px calc(100% - var(--f) - 999px),calc(100% - 999px) calc(100% - var(--f) - 999px));
    transform: translate(calc((1 - cos(45deg))*100%), -100%) rotate(45deg);
    transform-origin: 0% 100%;
    background-color: #ff4767; /* the main color  */
}

#app-footer{

}

#app-footer > div{
    max-width: 480px;
    margin: auto;
    color: #c5c5c5;
    background: #fff;
    text-transform: uppercase;
    text-align: center;
    height: 40px;
    line-height: 40px;
    letter-spacing: 1px;
    font-size: 16px;
    font-family: 'Lora';
}

.no-scroll {
    overflow: hidden;
    height: 100vh; /* prevents mobile scroll bounce */
}

#guest-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    z-index: 9999;
    background: rgba(56, 56, 56, 0.79);
    opacity: 0;
    pointer-events: none;
}

#guest-popup .guest-popup-max-width {
    position: relative;
    height: 100%;
    width: 100%;
    max-width: 480px;
    margin: auto;
}

#guest-popup .guest-popup-inner {
    animation: slideUp 0.7s ease-out forwards;
    animation-delay: 0.4s; /* wait until fade-in starts */
    position: absolute;
    bottom: -100%;
    left: 0;
    text-align: center;
    width: 100%;
    background: rgba(161, 49, 49, 0.73);
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    padding-top: 30px;
    border-top: 6px solid #d45432;
    border-bottom: 6px solid #d45432;
    padding-bottom: 30px;
}

#guest-popup .guest-popup-inner .info-wrapper {
    padding: 24px 12px;
}

#guest-popup .guest-popup-inner .info-wrapper .wedding-name {
    font-size: 24px;
    font-family: "Ergisa";
    font-weight: 700;
    color: #d45432;
    padding: 8px 0;
}

#guest-popup .guest-popup-inner .info-wrapper .wedding-date {
    font-family: "Lora";
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 20px;
    color: #d45432;
}

#guest-popup .guest-popup-inner .info-wrapper .wedding-date > div {
    display: inline-block;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 2px 6px;
}

#guest-popup .guest-popup-inner .info-wrapper .guest-label {
    margin-top: 24px;
    /* opacity: .6; */
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 8px;
    font-weight: 500;
    color: gray;
}

#guest-popup .guest-popup-inner .info-wrapper .guest-name {
    font-size: 24px;
    font-family: "Ergisa";
    font-weight: 600;
    border-bottom: 3px dotted #d9d9d9;
    padding-bottom: 8px;
}

#guest-popup .guest-popup-inner .info-wrapper .host-message {
    margin-top: 16px;
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5; /* number of lines to show */
    line-clamp: 5;
    -webkit-box-orient: vertical;
}

#guest-popup .guest-popup-image {
    height: 250px;
    margin-top: -80px;
}

#guest-popup .guest-open-button {
    border: 0;
    padding: 8px 16px;
    font-size: 14px;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 4px #fff;
    background: #d2664a;
    color: #fff;
    cursor: pointer;
    transition: 0.2s;
}

#guest-popup .guest-open-button{
    border: 0;
    padding: 8px 16px;
    font-size: 14px;
    border: 1px solid #8f6766;
    border-radius: 10px;
    font-weight: 600;
    box-shadow: 0 2px #cf5231;
    background: color(display-p3 0.9765 0.8588 0.8275);
    color: #d45432;
    cursor: pointer;
    transition: 0.2s;
}

#guest-popup .guest-open-button:hover {
    transform: translateY(-2px);
}

#guest-popup.show {
    opacity: 1;
    pointer-events: auto;
    animation: fadeIn 0.6s ease forwards;
}

/* Closing animation */
#guest-popup.closing {
    animation: fadeOut 0.5s ease forwards;
}

#guest-popup.closing .guest-popup-inner {
    animation: slideDown 0.5s ease forwards;
}

#guest-popup.style2 .guest-popup-inner {
    border-top: 6px solid #89795a;
    border-bottom: 6px solid #89795a;
    padding-top: 60px;
    color: #5b432b;
}

#guest-popup.style2 .guest-popup-inner::before {
  content: "";
  display: block;
  width: 110px;
  height: 110px;
  background-image: url(/assets/images/common/button.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -40px;
}

#guest-popup.style2 .guest-popup-inner .guest-popup-image {
  display: none;
}

#guest-popup.style2 .guest-popup-inner .info-wrapper .wedding-name {
  color: inherit;
  font-weight: 400;
}

#guest-popup.style2 .guest-popup-inner .info-wrapper .wedding-date {
  color: inherit;
  font-weight: 400;
  position: relative;
  font-family: inherit;
  font-size: 16px;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#guest-popup.style2 .guest-popup-inner .info-wrapper .wedding-date>div {
  border: 0;
  padding: 0;
  margin-top: 15px;
}

#guest-popup .guest-popup-inner .info-wrapper .guest-label{
    font-weight:400;
}

#guest-popup.style2 .guest-popup-inner .info-wrapper .wedding-date::before {
  display: inline-block;
  content: "";
  background-image: url(/assets/images/common/leaf-left.png);
  width: 100px;
  aspect-ratio: 150/79;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#guest-popup.style2 .guest-popup-inner .info-wrapper .wedding-date::after {
  display: inline-block;
  content: "";
  background-image: url(/assets/images/common/leaf-right.png);
  width: 100px;
  aspect-ratio: 150/79;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

#guest-popup.style2 .guest-popup-inner .info-wrapper .guest-name {
  color: inherit;
  font-weight: 400;
  border-bottom: 1px dotted currentColor;
}

#guest-popup .guest-popup-inner .info-wrapper .host-message{
    font-family: "Ergisa";
}

#guest-popup.style2 .guest-open-button {
  color: currentColor;
  box-shadow: 0 4px currentColor;
  background-color: transparent;
  border-radius: 5px;
  font-weight: 400;
  font-size: 18px;
  padding: 5px 16px;
}

/* ANIMATIONS */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes slideUp {
    from {
        bottom: -100%;
    }

    to {
        bottom: 0;
    }
}

@keyframes slideDown {
    from {
        bottom: 0;
    }

    to {
        bottom: -100%;
    }
}

/* Start card opening styles */

#card-opening-sides {
  height: 100%;
  width: 100%;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 99;
  max-width: var(--slide-card-max-width, 575px);
  overflow: hidden;
}
#card-opening-sides._animating .card-side {
  animation-play-state: running !important;
}
#card-opening-sides.default .card-side {
  position: absolute;
  width: 68%;
  height: 100%;
  top: 0;
  animation-fill-mode: forwards;
  --animate-duration: 4s;
  animation-play-state: paused;
}
#card-opening-sides.default .card-side.right {
  right: 0;
  background-color: var(--slide-card-color);
  z-index: 0;
  width: 50%;
  animation-name: cloudslideInRight;
  animation-duration: 4s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-delay: 500ms;
}
#card-opening-sides.default .card-side.left {
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
  background-attachment: scroll;
  background-origin: content-box;
  left: 0;
  z-index: 1;
  animation-name: cloudslideInLeft;
  animation-duration: 4s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-delay: 500ms;
}
#card-opening-sides.default2 .card-side {
  position: absolute;
  width: 80%;
  height: 100%;
  top: 0;
  animation-fill-mode: forwards;
  --animate-duration: 4s;
  animation-play-state: paused;
}
#card-opening-sides.default2 .card-side.right {
  right: 0;
  width: 30%;
  z-index: 0;
  background-image: url(/assets/images/side-card2-right.jpg);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
  background-attachment: scroll;
  background-origin: content-box;
  width: 50%;
  animation-name: cloudslideInRight;
  animation-duration: 4s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-delay: 500ms;
}
#card-opening-sides.default2 .card-side.left {
  background-image: url(/assets/images/side-card2.png);
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
  background-attachment: scroll;
  background-origin: content-box;
  left: 0;
  z-index: 1;
  animation-name: cloudslideInLeft;
  animation-duration: 4s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-delay: 500ms;
}
#card-opening-sides.center .card-side {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  animation-fill-mode: forwards;
  --animate-duration: 4s;
  animation-play-state: paused;
  background-color: var(--slide-card-color);
  animation-duration: var(--animate-duration, 4s);
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-delay: 500ms;
}
#card-opening-sides.center .card-side > div {
  width: 100%;
  height: 100%;
  background-position-y: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-origin: content-box;
  background-size: 80vw;
  background-position-x: 10vw;
}
#card-opening-sides.center .card-side.right {
  right: 0;
  z-index: 1;
  animation-name: cloudslideInRight;
}
#card-opening-sides.center .card-side.right > div {
  transform: scaleX(-1);
  transform-origin: center;
}
#card-opening-sides.center .card-side.left {
  left: 0;
  z-index: 1;
  animation-name: cloudslideInLeft;
}

#card-opening-sides.two-halves .card-side {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  animation-fill-mode: forwards;
  --animate-duration: 4s;
  --opacity-end: 0.8;
  animation-play-state: paused;
  background-color: var(--slide-card-color);
  animation-duration: var(--animate-duration, 4s);
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-delay: 500ms;
}
#card-opening-sides.two-halves .card-side > div {
  width: 100%;
  height: 100%;
  background-size: 200% 100%;
}
#card-opening-sides.two-halves .card-side.right {
  right: 0;
  z-index: 1;
  animation-name: cloudslideInRight;
}
#card-opening-sides.two-halves .card-side.right > div {
  right: 0;
  background-position: right center;
}
#card-opening-sides.two-halves .card-side.left {
  left: 0;
  z-index: 1;
  animation-name: cloudslideInLeft;
}
#card-opening-sides.two-halves .card-side.left > div {
  left: 0;
  background-position: left center;
}


@keyframes cloudslideInRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: var(--opacity-end, 1);
  }
}
@keyframes cloudslideInLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: var(--opacity-end, 1);
  }
}

@media screen and (min-width: 480px) {
  #card-opening-sides.center .card-side > div {
        background-size: 100%;
        background-position-x: 120px;
  }
}

/* End card opening styles */

.floating-btn {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    padding: 0;
    z-index: 999;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.floating-btn:active {
    transform: scale(0.95);
}

.floating-btn-icon {
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.floating-btn-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    white-space: nowrap;
    color: white;
    font-weight: 600;
    font-size: 0;
    text-align: center;
    transition: all 0.3s ease;
    pointer-events: none;
}

.floating-btn.expanded {
    width: 220px;
    border-radius: 30px;
    animation: pulse-glow 2s infinite;
}

.floating-btn.expanded .floating-btn-icon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
}

.floating-btn.expanded .floating-btn-text {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    font-size: 0.9rem;
    pointer-events: auto;
}

/* Pulsing animation for expanded state */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.6);
    }

    50% {
        box-shadow: 0 4px 30px rgba(102, 126, 234, 0.9);
    }

    100% {
        box-shadow: 0 4px 20px rgba(102, 126, 234, 0.6);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .floating-btn.expanded {
        width: 170px;
    }

    .floating-btn.expanded .floating-btn-text {
        font-size: 0.8rem;
    }
}


@media screen and (min-width:600px){
    #card-opening-sides .card-side {
        width: 62%;
    }
    .comment-form {
     
        padding: 24px;
    }
}

body:has(#guestConfirmationModal.show) {
    padding-right: 0 !important;
}

#guestConfirmationModal {
    --bs-modal-width: 480px;
}

#guestConfirmationModal .modal-title {
    font-family: "Ergisa";
    font-weight: 700;
    color: #d45432;
}

#guestConfirmationModal .modal-title {
    font-family: "Ergisa";
    font-weight: 700;
    color: #d45432;
}

#guestConfirmationModal .modal-content {
    border-radius: 16px;
}

#guestConfirmationModal form .form-check {
    min-height: 1.5rem;
    padding-left: 1.5em;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 8px;
    font-weight:500;
    cursor:pointer;
}

#guestConfirmationModal .dual-text {
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    display:none;
}



#box-gift .modal-dialog {
    max-width: 480px;
    margin: var(--bs-modal-margin,1.75rem) auto;
}

#box-gift .modal-title{
        font-family: 'Lora';
}

#box-gift .bank-box-wrapper {
    display: inline-block;
    background: #e9e9e9;
    padding: 5px 20px;
    font-size: 110%;
}

#box-gift .qr-code-header {
    display: block;
    height: 40px;
    line-height: 40px;
    background-color: #f1f1f1;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 0;
    font-family: 'Lora';
}

#box-gift .qr-code-img {
    background: #f1f1f1;
    padding: 5px;
}


#guestConfirmationModal.dual-languages .dual-text {
    display: block;
}

#guestConfirmationModal form .form-check:has(input[type="radio"]:checked) {
    background: #ffece7;
}

#guestConfirmationModal form .form-check .form-check-input {
   margin-left: 0;
    width: 1.2rem;
    height: 1.2rem;
    --bs-border-width: 2px;
    --bs-border-color: #d45432;
    margin-top: 0;
    cursor:pointer;
}

#guestConfirmationModal form .form-check .form-check-label{
    cursor:pointer;
}

#guestConfirmationModal form .form-check .form-check-input:checked {
    background-color: #d45432;
    border-color: #d45432;
}

#guestConfirmationModal form .form-check .form-check-input:checked+.form-check-label{
    color:#d45432;
}

#guestConfirmationModal form .form-select, #guestConfirmationModal form .form-control {
    font-size: 1.1rem;
}

#guestConfirmationModal form textarea.form-control{
    font-size:16px;
}

#guestConfirmationModal form .form-label {
    font-weight: 500;
}

#guestConfirmationModal form .guestname {
    color: #d45432;
    display: inline-block;
    font-size: 1.1rem;
}

#guestConfirmationModal .btn.submit-btn {
    --bs-btn-color: #fff;
    --bs-btn-bg: #d45432;
    --bs-btn-border-color: #d45432;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #bb472b;
    --bs-btn-hover-border-color: #bb472b;
    --bs-btn-focus-shadow-rgb: 212, 84, 50;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #a93e26;
    --bs-btn-active-border-color: #a93e26;
}

#guestConfirmationResponse{
    padding:16px;
}

#box-gift .modal-dialog {
    max-width: 480px;
    margin: var(--bs-modal-margin,1.75rem) auto;
}

#box-gift .modal-title{
    font-family: Lora;
}

#box-gift .bank-box-wrapper {
    display: inline-block;
    background: #e9e9e9;
    padding: 5px 20px;
    font-size: 110%;
}

#box-gift .qr-code-header {
    display: block;
    height: 40px;
    line-height: 40px;
    background-color: #f1f1f1;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 0;
    font-family: 'Lora';
}

#box-gift .qr-code-img {
    background: #f1f1f1;
    padding: 5px;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.video-thumbnail::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    padding: 10px 18px;
    width: 65px;
    height: 65px;
    padding: 0;
    line-height: 65px;
    text-align: center;
    font-size: 30px;
    z-index: 1;
}

.video-modal~.modal-backdrop {
    --bs-backdrop-opacity: 0.9;
}

#video-player iframe {
    width: 100%;
    height: 100%;
}

.video-modal {
    --bs-modal-bg: #000;
}

.video-modal .modal-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal .modal-body>div {
    aspect-ratio: 16 / 9;
    max-height: 100%;
    max-width: 100%;
    overflow: hidden;
}

.video-modal .modal-body>div .plyr--video {
    height: 100%;
}

@media screen and (min-width:600px){
    #box-gift .modal-dialog {
        transform: translateX(-8px);
    }
}