#audioToggleBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  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;
}
#audioToggleBtn.playing {
  animation-name: spin;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
#audioToggleBtn.playing::after {
  content: none;
}
#audioToggleBtn::after {
  content: "";
  border-left: 3px solid #fff;
  height: 36px;
  display: block;
  width: 0;
  left: 25px;
  top: 7px;
  position: absolute;
  transform: rotate(45deg);
  z-index: 1;
}
#audioToggleBtn::before {
  content: "\f49e";
  font-family: bootstrap-icons !important;
  display: inline-block;
  position: absolute;
  z-index: 1;
  font-size: 24px;
  /* height: 100%; */
  /* width: 100%; */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

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

.comment-form {
  background-color: rgba(var(--color-primary-raw, 216, 216, 216), 0.2);
  padding: 24px;
}
.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: 10px;
}
.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;
  opacity: 0.9;
}
.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);
  color: var(--color-primary);
  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;
}
.comment-form .btn.confirm-attending i {
  margin-right: 5px;
}

.comment-list {
  border: 1px solid #d8d8d8;
  padding: 0 16px;
  padding-top: 16px;
}
.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;
  color: var(--text-color-primary);
}
.comment-list .comment-box .fullname + .content {
  margin-top: 3px;
}
.comment-list .comment-box .content {
  font-weight: 300;
  font-size: 14px;
}
.comment-list .comment-box .timestamp {
  margin-bottom: 3px;
  font-size: 14px;
  opacity: 0.5;
}
.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;
}
.comment-list .no-comments {
  text-align: center;
  padding: 24px 0;
  opacity: 0.7;
}

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

.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: 5;
  background: rgba(0, 0, 0, 0.75);
  opacity: 0;
  pointer-events: none;
}
#guest-popup .guest-popup-max-width {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 575px;
  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: #fff;
  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 #d45432;
  background: #fff;
  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;
}

/* 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%;
  }
}
#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;
}
#card-opening-sides .card-side {
  position: absolute;
  width: 68%;
  height: 100%;
  top: 0;
  animation-fill-mode: forwards;
  --animate-duration: 4s;
  animation-play-state: paused;
}
#card-opening-sides .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 .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;
}

@keyframes cloudslideInRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 1;
  }
}
@keyframes cloudslideInLeft {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(-100%);
    opacity: 1;
  }
}/*# sourceMappingURL=common.css.map */