/* Aquarelle Font */
@font-face {
  font-family: "Aquarelle";
  src:
    url("../fonts/aquarelle.woff2") format("woff2"),
    url("../fonts/aquarelle.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Scarlet Bradley Font */
@font-face {
  font-family: "Scarlet Bradley";
  src:
    url("../fonts/scarlet-bradleyregular.woff2") format("woff2"),
    url("../fonts/scarlet-bradleyregular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Belinda Avenue Font */
@font-face {
  font-family: "Belinda Avenue";
  src:
    url("../fonts/belinda-avenue.woff2") format("woff2"),
    url("../fonts/belinda-avenue.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Signora Font */
@font-face {
  font-family: "Signora";
  src:
    url("../fonts/signora.woff2") format("woff2"),
    url("../fonts/signora.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Katty Diona Font */
@font-face {
  font-family: "Katty Diona";
  src:
    url("../fonts/katty-diona.woff2") format("woff2"),
    url("../fonts/katty-diona.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Fallback fonts from Google Fonts */
/* Aquarelle -> Great Vibes, Scarlet Bradley -> similar script, Montserrat & Playfair Display already from Google Fonts */

/* Audio Control Button - Top Right */
.audio-control-button {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1000;
  width: 42px;
  height: 42px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  overflow: hidden;
  -webkit-transition:
    -webkit-transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
}

.audio-control-button:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

/* Rotate animation only when playing */
.audio-control-button.playing {
  -webkit-animation: rotate-audio 4.5s linear infinite;
  animation: rotate-audio 4.5s linear infinite;
}

/* Paused state - slightly transparent */
.audio-control-button:not(.playing) {
  opacity: 0.7;
}

.audio-control-button:not(.playing):hover {
  opacity: 1;
}

.audio-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* Make icon white */
}

@-webkit-keyframes rotate-audio {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate-audio {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#audio-control-wrapper.jsx-3522513885 {
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1000;
  width: 30px;
  height: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.audio-toggle.jsx-3522513885 {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(165, 165, 165, 0.2);
  border-radius: 50%;
  overflow: hidden;
}
.audio-toggle.mrotate.jsx-3522513885 {
  -webkit-animation: mrotate-jsx-3522513885 5s linear infinite;
  animation: mrotate-jsx-3522513885 5s linear infinite;
}
.music-icon.jsx-3522513885 {
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
}
.icon-cancel.jsx-3522513885 {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  padding-top: 15px;
}
.icon-line.jsx-3522513885 {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 100%;
  height: 1px;
  background: #fff;
}
@-webkit-keyframes mrotate-jsx-3522513885 {
  to {
    -webkit-transform: rotate(1turn);
    -ms-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes mrotate-jsx-3522513885 {
  to {
    -webkit-transform: rotate(1turn);
    -ms-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

.photo-component.jsx-1944329802 {
  width: 100%;
  height: 100%;
}
.photo-component.jsx-1944329802 img.jsx-1944329802 {
  width: 100%;
  height: 100%;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.photo-component.jsx-1944329802 .photo-bg-wrap.jsx-1944329802 {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-clip: border-box;
}

.text-box-component.jsx-1828971989 {
  height: auto !important;
  position: relative;
}
.text-box-editing.jsx-1828971989::after {
  content: " ";
  box-sizing: content-box;
  border: 1px solid var(--color-primary);
  position: absolute;
  pointer-events: none;
  display: block;
  inset: -0px;
  z-index: 1;
}
.text-box-component.component-hovered.jsx-1828971989::after {
  content: " ";
  box-sizing: content-box;
  border: 1px dashed var(--color-primary);
  position: absolute;
  pointer-events: none;
  inset: -0px;
  display: block;
}

.countdown.jsx-3272123691 {
  width: 100%;
  margin: 0 auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: transparent !important;
  gap: var(--spacing);
}
.countdown.jsx-3272123691 > div.jsx-3272123691,
.countdown.jsx-3272123691 {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.countdown.jsx-3272123691 > div.jsx-3272123691 {
  width: 25%;
  border-radius: 4px;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.countdown.jsx-3272123691 > div.jsx-3272123691 {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.countdown.vertical.jsx-3272123691 {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.countdown.vertical.jsx-3272123691 > div.jsx-3272123691 {
  width: 100% !important;
  -webkit-flex-direction: row !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
  gap: 5px !important;
}

.material-component.jsx-3557960200 {
  width: 100%;
  height: 100%;
}
.material-component.jsx-3557960200 img.jsx-3557960200 {
  width: 100%;
  height: 100%;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.material-component.jsx-3557960200 .photo-bg-wrap.jsx-3557960200 {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-clip: border-box;
}

.text-box-component.jsx-3755534805 {
  height: auto !important;
  position: relative;
}
.text-box-editing.jsx-3755534805::after {
  content: " ";
  box-sizing: content-box;
  border: 1px solid var(--color-primary);
  position: absolute;
  pointer-events: none;
  display: block;
  inset: -1px;
  z-index: 1;
}
.text-box-component.component-hovered.jsx-3755534805::after {
  content: " ";
  box-sizing: content-box;
  border: 1px dashed var(--color-primary);
  position: absolute;
  pointer-events: none;
  inset: -1px;
  display: block;
}

.simple-map-container.jsx-1691086756 {
  position: relative;
  overflow: hidden;
}

.rsvp-form-container:hover {
  z-index: 9999999 !important;
}

#main-scroll-container #root-page-container::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
#main-scroll-container #root-page-container:hover::before {
  background: rgba(0, 0, 0, 0.3);
}

#blessing-box.jsx-3895218497 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  z-index: 1000;
  height: 180px;
  position: absolute;
  width: 285px;
  bottom: 58px;
  left: 16px;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  pointer-events: none;
}
.blessing-message.jsx-3895218497 {
  font-size: 11px;
  color: white;
  position: absolute;
  min-height: 28px;
  line-height: 14px;
  margin: 3px 0;
  border-radius: 7px;
  padding: 2px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-align: left;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(225, 117, 117, 0.5);
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.message-box-button.jsx-831523885 {
  background: rgba(0, 0, 0, 0.2);
  padding: 0px 7px 0px 15px;
  box-sizing: border-box;
  color: white;
  border-radius: 30px;
  font-size: 13px;
  width: 150px;
  height: 39px;
  line-height: 39px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.toolbar-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
#cinelove-gift-button {
  background-image: url("/_next/static/media/gift-box.f417ec86.png");
  background-size: 100%;
  background-repeat: no-repeat;
  -webkit-animation: 6s ease 0s infinite normal none running bounceGift;
  animation: 6s ease 0s infinite normal none running bounceGift;
  width: 39px;
  height: 39px;
  cursor: pointer;
}
#cinelove-like-button {
  background-image: url("/_next/static/media/like.ea5798c7.png");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 39px;
  height: 39px;
  position: relative;
  cursor: pointer;
}
#cinelove-like-count {
  opacity: 1;
  border-radius: 17px;
  width: 17px;
  height: 17px;
  line-height: 17px;
  color: white;
  font-size: 8px;
  position: absolute;
  right: -4px;
  top: -4px;
  background: -webkit-linear-gradient(#ff9aa6, #ff4969);
  text-align: center;
}
@-webkit-keyframes bounceGift {
  0% {
    -webkit-transform: translateY(0px);
  }
  8% {
    -webkit-transform: translateY(-10px);
  }
  13% {
    -webkit-transform: translateY(0px);
  }
  16% {
    -webkit-transform: translateY(-5px);
  }
  19% {
    -webkit-transform: translateY(0px);
  }
  22% {
    -webkit-transform: translateY(-2px);
  }
  25% {
    -webkit-transform: translateY(0px);
  }
  100% {
    -webkit-transform: translateY(0px);
  }
}
#animation-gift-preview-btn {
  background: rgba(0, 0, 0, 0.2);
  padding: 0px 10px;
  box-sizing: border-box;
  color: white;
  border-radius: 30px;
  font-size: 14px;
  height: 39px;
  line-height: 39px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}
#animation-gift-preview-btn img {
  height: 30px;
  vertical-align: middle;
}
#animation-gift-preview-btn span {
  display: inline-block;
  font-size: 13px;
  margin-left: 5px;
  white-space: nowrap;
}
.shake {
  -webkit-animation: shake 0.1s 3;
}
@-webkit-keyframes shake {
  0% {
    -webkit-transform: scale(1);
  }
  30% {
    -webkit-transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
  }
}

#cinelove-toolbar.jsx-1401461546 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1000;
  width: 100%;
  height: 64px;
  box-sizing: border-box;
}
#cinelove-toolbar.jsx-1401461546 .toolbar.jsx-1401461546 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0.5rem;
}

.received-gifts-wrapper.jsx-2770182321 {
  position: absolute;
  z-index: 9999999;
  bottom: 250px;
  display: block;
  width: 100%;
}

#cinelove-animation-box.jsx-848010737 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 38rem;
  z-index: 9999998;
  pointer-events: none;
}
#cinelove-canvas.jsx-848010737,
#cinelove-canvas-preview.jsx-848010737 {
  position: absolute;
  width: 100%;
  height: auto;
  background-color: transparent;
  top: -15vh;
  left: 0;
  opacity: 1;
  -webkit-transition:
    visibility 0.2s ease-in-out,
    opacity 0.2s ease-in-out;
  transition:
    visibility 0.2s ease-in-out,
    opacity 0.2s ease-in-out;
}
#cinelove-canvas.jsx-848010737 {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-height: 700px) {
  #cinelove-canvas.jsx-848010737,
  #cinelove-canvas-preview.jsx-848010737 {
    top: -30vh;
  }
}
@media screen and (min-height: 701px) and (max-height: 800px) {
  #cinelove-canvas.jsx-848010737,
  #cinelove-canvas-preview.jsx-848010737 {
    top: -25vh;
  }
}

.bar-gift-new.jsx-4097818752 {
  width: 100%;
  min-height: 400px;
  background-color: #fff;
  border-radius: 0.5rem 0.5rem 0 0;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9999999;
}
.gift-wrap-backdrop.jsx-4097818752 {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999997;
  background: rgba(0, 0, 0, 0.4);
}
.slideInBtm-enter.jsx-4097818752 {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
.slideInBtm-enter-active.jsx-4097818752 {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}
.slideInBtm-exit.jsx-4097818752 {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.slideInBtm-exit-active.jsx-4097818752 {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}
.fade-enter.jsx-4097818752 {
  opacity: 0;
}
.fade-enter-active.jsx-4097818752 {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.fade-exit.jsx-4097818752 {
  opacity: 1;
}
.fade-exit-active.jsx-4097818752 {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.popup-wrapper.jsx-831600802 {
  width: 100%;
  min-height: 20rem;
  background-color: #fff;
  border-radius: 0.5rem 0.5rem 0 0;
  box-sizing: border-box;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9999999;
}
.popup-backdrop.jsx-831600802 {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 9999997;
  background: rgba(0, 0, 0, 0.4);
}
.slideInBtm-enter.jsx-831600802 {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
.slideInBtm-enter-active.jsx-831600802 {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}
.slideInBtm-exit.jsx-831600802 {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.slideInBtm-exit-active.jsx-831600802 {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
}
.fade-enter.jsx-831600802 {
  opacity: 0;
}
.fade-enter-active.jsx-831600802 {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.fade-exit.jsx-831600802 {
  opacity: 1;
}
.fade-exit-active.jsx-831600802 {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

#app-view-index.hide-toolbar #cinelove-toolbar,
#app-view-index.hide-toolbar #cinelove-animation-box,
#app-view-index.hide-toolbar .received-gifts-wrapper {
  display: none;
}
#app-view-index.hide-toolbar #blessing-box {
  visibility: hidden;
}
#app-view-index.hide-toolbar .page-container {
  margin-bottom: 0;
}
.toolbar-toggle-button {
  position: absolute;
  right: 8px;
  bottom: 70px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.toolbar-toggle-button:hover {
  background-color: #fff;
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
#app-view-index.hide-toolbar .toolbar-toggle-button {
  bottom: 20px;
}

.watermark.jsx-3116023621 {
  position: absolute;
  bottom: 120px;
  right: 7px;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  width: 20px;
  white-space: nowrap;
  height: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 999;
}
.watermark.hide-toolbar.jsx-3116023621 {
  bottom: 50px;
}
.watermark.hide-toolbar-content.jsx-3116023621 {
  bottom: 70px;
}
.watermark-content.jsx-3116023621 {
  text-align: center;
  color: #1c1c1c;
  font-size: 14px;
  font-weight: 300;
}
.watermark-link.jsx-3116023621 {
  color: #414141;
  -webkit-text-decoration: none;
  text-decoration: none;
  font-weight: 500;
  margin-left: 2px;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.watermark-link.jsx-3116023621:hover {
  color: #000;
}

#app-view-index {
  height: 100% !important;
}
.pc-container #cinelove-toolbar .message-box-button {
  width: 130px;
}
.pc-container #cinelove-toolbar .message-box-button,
.pc-container #cinelove-toolbar #animation-gift-preview-btn,
.pc-container #cinelove-toolbar #cinelove-gift-button,
.pc-container #cinelove-toolbar #cinelove-like-button {
  font-size: 12px;
  height: 35px;
  line-height: 35px;
  border-radius: 25px;
}
.pc-container #cinelove-toolbar #animation-gift-preview-btn span {
  font-size: 12px;
}
.pc-container #cinelove-toolbar #cinelove-like-button,
.pc-container #cinelove-toolbar #cinelove-gift-button {
  width: 35px;
}
.pc-container .bar-messwin * {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
.pc-container .bar-gift-new .select-type .option {
  font-size: 17px !important;
  cursor: pointer;
}
.pc-container .bar-gift-new .gift-li .title {
  font-size: 10px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  width: 70px;
}
.pc-container .bar-gift-new .give-tip {
  font-size: 10px !important;
}
.pc-container .bar-gift-new .give-username {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
.pc-container .animate-slide-gift.gift-minibar * {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}
.pc-container #cinelove-canvas-preview,
.pc-container #cinelove-canvas {
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

.css-var-root {
  --ant-blue: #1677ff;
  --ant-purple: #722ed1;
  --ant-cyan: #13c2c2;
  --ant-green: #52c41a;
  --ant-magenta: #eb2f96;
  --ant-pink: #eb2f96;
  --ant-red: #f5222d;
  --ant-orange: #fa8c16;
  --ant-yellow: #fadb14;
  --ant-volcano: #fa541c;
  --ant-geekblue: #2f54eb;
  --ant-gold: #faad14;
  --ant-lime: #a0d911;
  --ant-color-primary: #1677ff;
  --ant-color-success: #52c41a;
  --ant-color-warning: #faad14;
  --ant-color-error: #ff4d4f;
  --ant-color-info: #1677ff;
  --ant-color-link: #1677ff;
  --ant-color-text-base: #000;
  --ant-color-bg-base: #fff;
  --ant-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --ant-font-family-code: "SFMono-Regular", Consolas, "Liberation Mono", Menlo,
    Courier, monospace;
  --ant-font-size: 14px;
  --ant-line-width: 1px;
  --ant-line-type: solid;
  --ant-motion-ease-out-circ: cubic-bezier(0.08, 0.82, 0.17, 1);
  --ant-motion-ease-in-out-circ: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  --ant-motion-ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ant-motion-ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ant-motion-ease-out-back: cubic-bezier(0.12, 0.4, 0.29, 1.46);
  --ant-motion-ease-in-back: cubic-bezier(0.71, -0.46, 0.88, 0.6);
  --ant-motion-ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ant-motion-ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ant-border-radius: 6px;
  --ant-size-unit: 4px;
  --ant-size-step: 4px;
  --ant-size-popup-arrow: 16px;
  --ant-control-height: 32px;
  --ant-z-index-base: 0;
  --ant-z-index-popup-base: 1000;
  --ant-opacity-image: 1;
  --ant-blue-1: #e6f4ff;
  --ant-blue-2: #bae0ff;
  --ant-blue-3: #91caff;
  --ant-blue-4: #69b1ff;
  --ant-blue-5: #4096ff;
  --ant-blue-6: #1677ff;
  --ant-blue-7: #0958d9;
  --ant-blue-8: #003eb3;
  --ant-blue-9: #002c8c;
  --ant-blue-10: #001d66;
  --ant-purple-1: #f9f0ff;
  --ant-purple-2: #efdbff;
  --ant-purple-3: #d3adf7;
  --ant-purple-4: #b37feb;
  --ant-purple-5: #9254de;
  --ant-purple-6: #722ed1;
  --ant-purple-7: #531dab;
  --ant-purple-8: #391085;
  --ant-purple-9: #22075e;
  --ant-purple-10: #120338;
  --ant-cyan-1: #e6fffb;
  --ant-cyan-2: #b5f5ec;
  --ant-cyan-3: #87e8de;
  --ant-cyan-4: #5cdbd3;
  --ant-cyan-5: #36cfc9;
  --ant-cyan-6: #13c2c2;
  --ant-cyan-7: #08979c;
  --ant-cyan-8: #006d75;
  --ant-cyan-9: #00474f;
  --ant-cyan-10: #002329;
  --ant-green-1: #f6ffed;
  --ant-green-2: #d9f7be;
  --ant-green-3: #b7eb8f;
  --ant-green-4: #95de64;
  --ant-green-5: #73d13d;
  --ant-green-6: #52c41a;
  --ant-green-7: #389e0d;
  --ant-green-8: #237804;
  --ant-green-9: #135200;
  --ant-green-10: #092b00;
  --ant-magenta-1: #fff0f6;
  --ant-magenta-2: #ffd6e7;
  --ant-magenta-3: #ffadd2;
  --ant-magenta-4: #ff85c0;
  --ant-magenta-5: #f759ab;
  --ant-magenta-6: #eb2f96;
  --ant-magenta-7: #c41d7f;
  --ant-magenta-8: #9e1068;
  --ant-magenta-9: #780650;
  --ant-magenta-10: #520339;
  --ant-pink-1: #fff0f6;
  --ant-pink-2: #ffd6e7;
  --ant-pink-3: #ffadd2;
  --ant-pink-4: #ff85c0;
  --ant-pink-5: #f759ab;
  --ant-pink-6: #eb2f96;
  --ant-pink-7: #c41d7f;
  --ant-pink-8: #9e1068;
  --ant-pink-9: #780650;
  --ant-pink-10: #520339;
  --ant-red-1: #fff1f0;
  --ant-red-2: #ffccc7;
  --ant-red-3: #ffa39e;
  --ant-red-4: #ff7875;
  --ant-red-5: #ff4d4f;
  --ant-red-6: #f5222d;
  --ant-red-7: #cf1322;
  --ant-red-8: #a8071a;
  --ant-red-9: #820014;
  --ant-red-10: #5c0011;
  --ant-orange-1: #fff7e6;
  --ant-orange-2: #ffe7ba;
  --ant-orange-3: #ffd591;
  --ant-orange-4: #ffc069;
  --ant-orange-5: #ffa940;
  --ant-orange-6: #fa8c16;
  --ant-orange-7: #d46b08;
  --ant-orange-8: #ad4e00;
  --ant-orange-9: #873800;
  --ant-orange-10: #612500;
  --ant-yellow-1: #feffe6;
  --ant-yellow-2: #ffffb8;
  --ant-yellow-3: #fffb8f;
  --ant-yellow-4: #fff566;
  --ant-yellow-5: #ffec3d;
  --ant-yellow-6: #fadb14;
  --ant-yellow-7: #d4b106;
  --ant-yellow-8: #ad8b00;
  --ant-yellow-9: #876800;
  --ant-yellow-10: #614700;
  --ant-volcano-1: #fff2e8;
  --ant-volcano-2: #ffd8bf;
  --ant-volcano-3: #ffbb96;
  --ant-volcano-4: #ff9c6e;
  --ant-volcano-5: #ff7a45;
  --ant-volcano-6: #fa541c;
  --ant-volcano-7: #d4380d;
  --ant-volcano-8: #ad2102;
  --ant-volcano-9: #871400;
  --ant-volcano-10: #610b00;
  --ant-geekblue-1: #f0f5ff;
  --ant-geekblue-2: #d6e4ff;
  --ant-geekblue-3: #adc6ff;
  --ant-geekblue-4: #85a5ff;
  --ant-geekblue-5: #597ef7;
  --ant-geekblue-6: #2f54eb;
  --ant-geekblue-7: #1d39c4;
  --ant-geekblue-8: #10239e;
  --ant-geekblue-9: #061178;
  --ant-geekblue-10: #030852;
  --ant-gold-1: #fffbe6;
  --ant-gold-2: #fff1b8;
  --ant-gold-3: #ffe58f;
  --ant-gold-4: #ffd666;
  --ant-gold-5: #ffc53d;
  --ant-gold-6: #faad14;
  --ant-gold-7: #d48806;
  --ant-gold-8: #ad6800;
  --ant-gold-9: #874d00;
  --ant-gold-10: #613400;
  --ant-lime-1: #fcffe6;
  --ant-lime-2: #f4ffb8;
  --ant-lime-3: #eaff8f;
  --ant-lime-4: #d3f261;
  --ant-lime-5: #bae637;
  --ant-lime-6: #a0d911;
  --ant-lime-7: #7cb305;
  --ant-lime-8: #5b8c00;
  --ant-lime-9: #3f6600;
  --ant-lime-10: #254000;
  --ant-color-text: rgba(0, 0, 0, 0.88);
  --ant-color-text-secondary: rgba(0, 0, 0, 0.65);
  --ant-color-text-tertiary: rgba(0, 0, 0, 0.45);
  --ant-color-text-quaternary: rgba(0, 0, 0, 0.25);
  --ant-color-fill: rgba(0, 0, 0, 0.15);
  --ant-color-fill-secondary: rgba(0, 0, 0, 0.06);
  --ant-color-fill-tertiary: rgba(0, 0, 0, 0.04);
  --ant-color-fill-quaternary: rgba(0, 0, 0, 0.02);
  --ant-color-bg-solid: rgb(0, 0, 0);
  --ant-color-bg-solid-hover: rgba(0, 0, 0, 0.75);
  --ant-color-bg-solid-active: rgba(0, 0, 0, 0.95);
  --ant-color-bg-layout: #f5f5f5;
  --ant-color-bg-container: #ffffff;
  --ant-color-bg-elevated: #ffffff;
  --ant-color-bg-spotlight: rgba(0, 0, 0, 0.85);
  --ant-color-bg-blur: transparent;
  --ant-color-border: #d9d9d9;
  --ant-color-border-disabled: #d9d9d9;
  --ant-color-border-secondary: #f0f0f0;
  --ant-color-primary-bg: #e6f4ff;
  --ant-color-primary-bg-hover: #bae0ff;
  --ant-color-primary-border: #91caff;
  --ant-color-primary-border-hover: #69b1ff;
  --ant-color-primary-hover: #4096ff;
  --ant-color-primary-active: #0958d9;
  --ant-color-primary-text-hover: #4096ff;
  --ant-color-primary-text: #1677ff;
  --ant-color-primary-text-active: #0958d9;
  --ant-color-success-bg: #f6ffed;
  --ant-color-success-bg-hover: #d9f7be;
  --ant-color-success-border: #b7eb8f;
  --ant-color-success-border-hover: #95de64;
  --ant-color-success-hover: #95de64;
  --ant-color-success-active: #389e0d;
  --ant-color-success-text-hover: #73d13d;
  --ant-color-success-text: #52c41a;
  --ant-color-success-text-active: #389e0d;
  --ant-color-error-bg: #fff2f0;
  --ant-color-error-bg-hover: #fff1f0;
  --ant-color-error-bg-filled-hover: #ffdfdc;
  --ant-color-error-bg-active: #ffccc7;
  --ant-color-error-border: #ffccc7;
  --ant-color-error-border-hover: #ffa39e;
  --ant-color-error-hover: #ff7875;
  --ant-color-error-active: #d9363e;
  --ant-color-error-text-hover: #ff7875;
  --ant-color-error-text: #ff4d4f;
  --ant-color-error-text-active: #d9363e;
  --ant-color-warning-bg: #fffbe6;
  --ant-color-warning-bg-hover: #fff1b8;
  --ant-color-warning-border: #ffe58f;
  --ant-color-warning-border-hover: #ffd666;
  --ant-color-warning-hover: #ffd666;
  --ant-color-warning-active: #d48806;
  --ant-color-warning-text-hover: #ffc53d;
  --ant-color-warning-text: #faad14;
  --ant-color-warning-text-active: #d48806;
  --ant-color-info-bg: #e6f4ff;
  --ant-color-info-bg-hover: #bae0ff;
  --ant-color-info-border: #91caff;
  --ant-color-info-border-hover: #69b1ff;
  --ant-color-info-hover: #69b1ff;
  --ant-color-info-active: #0958d9;
  --ant-color-info-text-hover: #4096ff;
  --ant-color-info-text: #1677ff;
  --ant-color-info-text-active: #0958d9;
  --ant-color-link-hover: #69b1ff;
  --ant-color-link-active: #0958d9;
  --ant-color-bg-mask: rgba(0, 0, 0, 0.45);
  --ant-color-white: #fff;
  --ant-font-size-sm: 12px;
  --ant-font-size-lg: 16px;
  --ant-font-size-xl: 20px;
  --ant-font-size-heading-1: 38px;
  --ant-font-size-heading-2: 30px;
  --ant-font-size-heading-3: 24px;
  --ant-font-size-heading-4: 20px;
  --ant-font-size-heading-5: 16px;
  --ant-line-height: 1.5714285714285714;
  --ant-line-height-lg: 1.5;
  --ant-line-height-sm: 1.6666666666666667;
  --ant-font-height: 22px;
  --ant-font-height-lg: 24px;
  --ant-font-height-sm: 20px;
  --ant-line-height-heading-1: 1.2105263157894737;
  --ant-line-height-heading-2: 1.2666666666666666;
  --ant-line-height-heading-3: 1.3333333333333333;
  --ant-line-height-heading-4: 1.4;
  --ant-line-height-heading-5: 1.5;
  --ant-size-xxl: 48px;
  --ant-size-xl: 32px;
  --ant-size-lg: 24px;
  --ant-size-md: 20px;
  --ant-size-ms: 16px;
  --ant-size: 16px;
  --ant-size-sm: 12px;
  --ant-size-xs: 8px;
  --ant-size-xxs: 4px;
  --ant-control-height-sm: 24px;
  --ant-control-height-xs: 16px;
  --ant-control-height-lg: 40px;
  --ant-motion-duration-fast: 0.1s;
  --ant-motion-duration-mid: 0.2s;
  --ant-motion-duration-slow: 0.3s;
  --ant-line-width-bold: 2px;
  --ant-border-radius-xs: 2px;
  --ant-border-radius-sm: 4px;
  --ant-border-radius-lg: 8px;
  --ant-border-radius-outer: 4px;
  --ant-color-fill-content: rgba(0, 0, 0, 0.06);
  --ant-color-fill-content-hover: rgba(0, 0, 0, 0.15);
  --ant-color-fill-alter: rgba(0, 0, 0, 0.02);
  --ant-color-bg-container-disabled: rgba(0, 0, 0, 0.04);
  --ant-color-border-bg: #ffffff;
  --ant-color-split: rgba(5, 5, 5, 0.06);
  --ant-color-text-placeholder: rgba(0, 0, 0, 0.25);
  --ant-color-text-disabled: rgba(0, 0, 0, 0.25);
  --ant-color-text-heading: rgba(0, 0, 0, 0.88);
  --ant-color-text-label: rgba(0, 0, 0, 0.65);
  --ant-color-text-description: rgba(0, 0, 0, 0.45);
  --ant-color-text-light-solid: #fff;
  --ant-color-highlight: #ff4d4f;
  --ant-color-bg-text-hover: rgba(0, 0, 0, 0.06);
  --ant-color-bg-text-active: rgba(0, 0, 0, 0.15);
  --ant-color-icon: rgba(0, 0, 0, 0.45);
  --ant-color-icon-hover: rgba(0, 0, 0, 0.88);
  --ant-color-error-outline: rgba(255, 38, 5, 0.06);
  --ant-color-warning-outline: rgba(255, 215, 5, 0.1);
  --ant-font-size-icon: 12px;
  --ant-line-width-focus: 3px;
  --ant-control-outline-width: 2px;
  --ant-control-interactive-size: 16px;
  --ant-control-item-bg-hover: rgba(0, 0, 0, 0.04);
  --ant-control-item-bg-active: #e6f4ff;
  --ant-control-item-bg-active-hover: #bae0ff;
  --ant-control-item-bg-active-disabled: rgba(0, 0, 0, 0.15);
  --ant-control-tmp-outline: rgba(0, 0, 0, 0.02);
  --ant-control-outline: rgba(5, 145, 255, 0.1);
  --ant-font-weight-strong: 600;
  --ant-opacity-loading: 0.65;
  --ant-link-decoration: none;
  --ant-link-hover-decoration: none;
  --ant-link-focus-decoration: none;
  --ant-control-padding-horizontal: 12px;
  --ant-control-padding-horizontal-sm: 8px;
  --ant-padding-xxs: 4px;
  --ant-padding-xs: 8px;
  --ant-padding-sm: 12px;
  --ant-padding: 16px;
  --ant-padding-md: 20px;
  --ant-padding-lg: 24px;
  --ant-padding-xl: 32px;
  --ant-padding-content-horizontal-lg: 24px;
  --ant-padding-content-vertical-lg: 16px;
  --ant-padding-content-horizontal: 16px;
  --ant-padding-content-vertical: 12px;
  --ant-padding-content-horizontal-sm: 16px;
  --ant-padding-content-vertical-sm: 8px;
  --ant-margin-xxs: 4px;
  --ant-margin-xs: 8px;
  --ant-margin-sm: 12px;
  --ant-margin: 16px;
  --ant-margin-md: 20px;
  --ant-margin-lg: 24px;
  --ant-margin-xl: 32px;
  --ant-margin-xxl: 48px;
  --ant-box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08),
    0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  --ant-box-shadow-secondary: 0 6px 16px 0 rgba(0, 0, 0, 0.08),
    0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  --ant-box-shadow-tertiary: 0 1px 2px 0 rgba(0, 0, 0, 0.03),
    0 1px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px 0 rgba(0, 0, 0, 0.02);
  --ant-box-shadow-popover-arrow: 2px 2px 5px rgba(0, 0, 0, 0.05);
  --ant-box-shadow-card: 0 1px 2px -2px rgba(0, 0, 0, 0.16),
    0 3px 6px 0 rgba(0, 0, 0, 0.12), 0 5px 12px 4px rgba(0, 0, 0, 0.09);
  --ant-box-shadow-drawer-right: -6px 0 16px 0 rgba(0, 0, 0, 0.08),
    -3px 0 6px -4px rgba(0, 0, 0, 0.12), -9px 0 28px 8px rgba(0, 0, 0, 0.05);
  --ant-box-shadow-drawer-left: 6px 0 16px 0 rgba(0, 0, 0, 0.08),
    3px 0 6px -4px rgba(0, 0, 0, 0.12), 9px 0 28px 8px rgba(0, 0, 0, 0.05);
  --ant-box-shadow-drawer-up: 0 6px 16px 0 rgba(0, 0, 0, 0.08),
    0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  --ant-box-shadow-drawer-down: 0 -6px 16px 0 rgba(0, 0, 0, 0.08),
    0 -3px 6px -4px rgba(0, 0, 0, 0.12), 0 -9px 28px 8px rgba(0, 0, 0, 0.05);
  --ant-box-shadow-tabs-overflow-left: inset 10px 0 8px -8px rgba(0, 0, 0, 0.08);
  --ant-box-shadow-tabs-overflow-right: inset -10px 0 8px -8px
    rgba(0, 0, 0, 0.08);
  --ant-box-shadow-tabs-overflow-top: inset 0 10px 8px -8px rgba(0, 0, 0, 0.08);
  --ant-box-shadow-tabs-overflow-bottom: inset 0 -10px 8px -8px
    rgba(0, 0, 0, 0.08);
}
.ant-spin {
  font-family: var(--ant-font-family);
  font-size: var(--ant-font-size);
  box-sizing: border-box;
}
.ant-spin::before,
.ant-spin::after {
  box-sizing: border-box;
}
.ant-spin [class^="ant-spin"],
.ant-spin [class*=" ant-spin"] {
  box-sizing: border-box;
}
.ant-spin [class^="ant-spin"]::before,
.ant-spin [class*=" ant-spin"]::before,
.ant-spin [class^="ant-spin"]::after,
.ant-spin [class*=" ant-spin"]::after {
  box-sizing: border-box;
}
.ant-spin {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: var(--ant-color-primary);
  font-size: 0;
  line-height: var(--ant-line-height);
  list-style: none;
  font-family: var(--ant-font-family);
  position: absolute;
  display: none;
  text-align: center;
  vertical-align: middle;
  opacity: 0;
  transition: transform var(--ant-motion-duration-slow)
    var(--ant-motion-ease-in-out-circ);
}
.ant-spin-spinning {
  position: relative;
  display: inline-block;
  opacity: 1;
}
.ant-spin .ant-spin-text {
  font-size: var(--ant-font-size);
  padding-top: calc(
    (var(--ant-spin-dot-size) - var(--ant-font-size)) / 2 + 2px
  );
}
.ant-spin-fullscreen {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: var(--ant-color-bg-mask);
  z-index: var(--ant-z-index-popup-base);
  inset: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--ant-motion-duration-mid);
}
.ant-spin-fullscreen-show {
  opacity: 1;
  visibility: visible;
}
.ant-spin-fullscreen .ant-spin .ant-spin-dot-holder {
  color: var(--ant-color-white);
}
.ant-spin-fullscreen .ant-spin .ant-spin-text {
  color: var(--ant-color-text-light-solid);
}
.ant-spin-nested-loading {
  position: relative;
}
.ant-spin-nested-loading > div > .ant-spin {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  z-index: 4;
  display: block;
  width: 100%;
  height: 100%;
  max-height: var(--ant-spin-content-height);
}
.ant-spin-nested-loading > div > .ant-spin .ant-spin-dot {
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  margin: calc(var(--ant-spin-dot-size) * -1 / 2);
}
.ant-spin-nested-loading > div > .ant-spin .ant-spin-text {
  position: absolute;
  top: 50%;
  width: 100%;
  text-shadow: 0 1px 2px var(--ant-color-bg-container);
}
.ant-spin-nested-loading > div > .ant-spin.ant-spin-show-text .ant-spin-dot {
  margin-top: calc(var(--ant-spin-dot-size) / 2 * -1 - 10px);
}
.ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-dot {
  margin: calc(var(--ant-spin-dot-size-sm) * -1 / 2);
}
.ant-spin-nested-loading > div > .ant-spin-sm .ant-spin-text {
  padding-top: calc(
    (var(--ant-spin-dot-size-sm) - var(--ant-font-size)) / 2 + 2px
  );
}
.ant-spin-nested-loading > div > .ant-spin-sm.ant-spin-show-text .ant-spin-dot {
  margin-top: calc(var(--ant-spin-dot-size-sm) / 2 * -1 - 10px);
}
.ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-dot {
  margin: calc(var(--ant-spin-dot-size-lg) * -1 / 2);
}
.ant-spin-nested-loading > div > .ant-spin-lg .ant-spin-text {
  padding-top: calc(
    (var(--ant-spin-dot-size-lg) - var(--ant-font-size)) / 2 + 2px
  );
}
.ant-spin-nested-loading > div > .ant-spin-lg.ant-spin-show-text .ant-spin-dot {
  margin-top: calc(var(--ant-spin-dot-size-lg) / 2 * -1 - 10px);
}
.ant-spin-nested-loading .ant-spin-container {
  position: relative;
  transition: opacity var(--ant-motion-duration-slow);
}
.ant-spin-nested-loading .ant-spin-container::after {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  bottom: 0;
  inset-inline-start: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: var(--ant-color-bg-container);
  opacity: 0;
  transition: all var(--ant-motion-duration-slow);
  content: "";
  pointer-events: none;
}
.ant-spin-nested-loading .ant-spin-blur {
  clear: both;
  opacity: 0.5;
  user-select: none;
  pointer-events: none;
}
.ant-spin-nested-loading .ant-spin-blur::after {
  opacity: 0.4;
  pointer-events: auto;
}
.ant-spin-tip {
  color: var(--ant-color-text-description);
}
.ant-spin .ant-spin-dot-holder {
  width: 1em;
  height: 1em;
  font-size: var(--ant-spin-dot-size);
  display: inline-block;
  transition:
    transform var(--ant-motion-duration-slow) ease,
    opacity var(--ant-motion-duration-slow) ease;
  transform-origin: 50% 50%;
  line-height: 1;
  color: var(--ant-color-primary);
}
.ant-spin .ant-spin-dot-holder-hidden {
  transform: scale(0.3);
  opacity: 0;
}
.ant-spin .ant-spin-dot-progress {
  position: absolute;
  inset: 0;
}
.ant-spin .ant-spin-dot {
  position: relative;
  display: inline-block;
  font-size: var(--ant-spin-dot-size);
  width: 1em;
  height: 1em;
}
.ant-spin .ant-spin-dot-item {
  position: absolute;
  display: block;
  width: calc((var(--ant-spin-dot-size) - var(--ant-margin-xxs) / 2) / 2);
  height: calc((var(--ant-spin-dot-size) - var(--ant-margin-xxs) / 2) / 2);
  background: currentColor;
  border-radius: 100%;
  transform: scale(0.75);
  transform-origin: 50% 50%;
  opacity: 0.3;
  animation-name: antSpinMove;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: alternate;
}
.ant-spin .ant-spin-dot-item:nth-child(1) {
  top: 0;
  inset-inline-start: 0;
  animation-delay: 0s;
}
.ant-spin .ant-spin-dot-item:nth-child(2) {
  top: 0;
  inset-inline-end: 0;
  animation-delay: 0.4s;
}
.ant-spin .ant-spin-dot-item:nth-child(3) {
  inset-inline-end: 0;
  bottom: 0;
  animation-delay: 0.8s;
}
.ant-spin .ant-spin-dot-item:nth-child(4) {
  bottom: 0;
  inset-inline-start: 0;
  animation-delay: 1.2s;
}
.ant-spin .ant-spin-dot-spin {
  transform: rotate(45deg);
  animation-name: antRotate;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.ant-spin .ant-spin-dot-circle {
  stroke-linecap: round;
  transition:
    stroke-dashoffset var(--ant-motion-duration-slow) ease,
    stroke-dasharray var(--ant-motion-duration-slow) ease,
    stroke var(--ant-motion-duration-slow) ease,
    stroke-width var(--ant-motion-duration-slow) ease,
    opacity var(--ant-motion-duration-slow) ease;
  fill-opacity: 0;
  stroke: currentcolor;
}
.ant-spin .ant-spin-dot-circle-bg {
  stroke: var(--ant-color-fill-secondary);
}
.ant-spin-sm .ant-spin-dot,
.ant-spin-sm .ant-spin-dot-holder {
  font-size: var(--ant-spin-dot-size-sm);
}
.ant-spin-sm .ant-spin-dot-holder i {
  width: calc((var(--ant-spin-dot-size-sm) - var(--ant-margin-xxs) / 2) / 2);
  height: calc((var(--ant-spin-dot-size-sm) - var(--ant-margin-xxs) / 2) / 2);
}
.ant-spin-lg .ant-spin-dot,
.ant-spin-lg .ant-spin-dot-holder {
  font-size: var(--ant-spin-dot-size-lg);
}
.ant-spin-lg .ant-spin-dot-holder i {
  width: calc((var(--ant-spin-dot-size-lg) - var(--ant-margin-xxs)) / 2);
  height: calc((var(--ant-spin-dot-size-lg) - var(--ant-margin-xxs)) / 2);
}
.ant-spin.ant-spin-show-text .ant-spin-text {
  display: block;
}
@keyframes antSpinMove {
  to {
    opacity: 1;
  }
}
@keyframes antRotate {
  to {
    transform: rotate(405deg);
  }
}
.css-var-«R26».ant-spin {
  --ant-spin-content-height: 400px;
  --ant-spin-dot-size: 20px;
  --ant-spin-dot-size-sm: 14px;
  --ant-spin-dot-size-lg: 32px;
}
.ant-radio-css-var {
  font-family: var(--ant-font-family);
  font-size: var(--ant-font-size);
  box-sizing: border-box;
}
.ant-radio-css-var::before,
.ant-radio-css-var::after {
  box-sizing: border-box;
}
.ant-radio-css-var [class^="ant-radio"],
.ant-radio-css-var [class*=" ant-radio"] {
  box-sizing: border-box;
}
.ant-radio-css-var [class^="ant-radio"]::before,
.ant-radio-css-var [class*=" ant-radio"]::before,
.ant-radio-css-var [class^="ant-radio"]::after,
.ant-radio-css-var [class*=" ant-radio"]::after {
  box-sizing: border-box;
}
.ant-radio-group {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: var(--ant-color-text);
  font-size: 0;
  line-height: var(--ant-line-height);
  list-style: none;
  font-family: var(--ant-font-family);
  display: inline-block;
}
.ant-radio-group.ant-radio-group-rtl {
  direction: rtl;
}
.ant-radio-group.ant-radio-group-block {
  display: flex;
}
.ant-radio-group .ant-badge .ant-badge-count {
  z-index: 1;
}
.ant-radio-group > .ant-badge:not(:first-child) > .ant-button-wrapper {
  border-inline-start: none;
}
.ant-radio-group-vertical {
  display: flex;
  flex-direction: column;
  row-gap: var(--ant-margin-xs);
}
.ant-radio-wrapper {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: var(--ant-color-text);
  font-size: var(--ant-font-size);
  line-height: var(--ant-line-height);
  list-style: none;
  font-family: var(--ant-font-family);
  display: inline-flex;
  align-items: baseline;
  margin-inline-start: 0;
  margin-inline-end: var(--ant-radio-wrapper-margin-inline-end);
  cursor: pointer;
}
.ant-radio-wrapper:last-child {
  margin-inline-end: 0;
}
.ant-radio-wrapper.ant-radio-wrapper-rtl {
  direction: rtl;
}
.ant-radio-wrapper-disabled {
  cursor: not-allowed;
  color: var(--ant-color-text-disabled);
}
.ant-radio-wrapper::after {
  display: inline-block;
  width: 0;
  overflow: hidden;
  content: "\a0";
}
.ant-radio-wrapper-block {
  flex: 1;
  justify-content: center;
}
.ant-radio-wrapper .ant-radio-checked::after {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  border: var(--ant-line-width) var(--ant-line-type) var(--ant-color-primary);
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  content: "";
}
.ant-radio-wrapper .ant-radio {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: var(--ant-color-text);
  font-size: var(--ant-font-size);
  line-height: var(--ant-line-height);
  list-style: none;
  font-family: var(--ant-font-family);
  position: relative;
  display: inline-block;
  outline: none;
  cursor: pointer;
  align-self: center;
  border-radius: 50%;
}
.ant-radio-wrapper:hover .ant-radio-wrapper,
.ant-radio-wrapper:hover .ant-radio-inner {
  border-color: var(--ant-color-primary);
}
.ant-radio-wrapper .ant-radio-input:focus-visible + .ant-radio-inner {
  outline: var(--ant-line-width-focus) solid var(--ant-color-primary-border);
  outline-offset: 1px;
  transition:
    outline-offset 0s,
    outline 0s;
}
.ant-radio-wrapper .ant-radio:hover::after,
.ant-radio-wrapper:hover .ant-radio-wrapper::after {
  visibility: visible;
}
.ant-radio-wrapper .ant-radio-inner {
  box-sizing: border-box;
  position: relative;
  inset-block-start: 0;
  inset-inline-start: 0;
  display: block;
  width: calc(1px * var(--ant-radio-radio-size));
  height: calc(1px * var(--ant-radio-radio-size));
  background-color: var(--ant-color-bg-container);
  border-color: var(--ant-color-border);
  border-style: solid;
  border-width: var(--ant-line-width);
  border-radius: 50%;
  transition: all var(--ant-motion-duration-mid);
}
.ant-radio-wrapper .ant-radio-inner::after {
  box-sizing: border-box;
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 50%;
  display: block;
  width: calc(1px * var(--ant-radio-radio-size));
  height: calc(1px * var(--ant-radio-radio-size));
  margin-block-start: calc(1px * var(--ant-radio-radio-size) / -2);
  margin-inline-start: calc(1px * var(--ant-radio-radio-size) / -2);
  background-color: var(--ant-radio-radio-color);
  border-block-start: 0;
  border-inline-start: 0;
  border-radius: calc(1px * var(--ant-radio-radio-size));
  transform: scale(0);
  opacity: 0;
  transition: all var(--ant-motion-duration-slow)
    var(--ant-motion-ease-in-out-circ);
  content: "";
}
.ant-radio-wrapper .ant-radio-input {
  position: absolute;
  inset: 0;
  z-index: 1;
  cursor: pointer;
  opacity: 0;
}
.ant-radio-wrapper .ant-radio-checked .ant-radio-inner {
  border-color: var(--ant-color-primary);
  background-color: var(--ant-radio-radio-bg-color);
}
.ant-radio-wrapper .ant-radio-checked .ant-radio-inner::after {
  transform: scale(
    calc(var(--ant-radio-dot-size) / var(--ant-radio-radio-size))
  );
  opacity: 1;
  transition: all var(--ant-motion-duration-slow)
    var(--ant-motion-ease-in-out-circ);
}
.ant-radio-wrapper .ant-radio-disabled {
  cursor: not-allowed;
}
.ant-radio-wrapper .ant-radio-disabled .ant-radio-inner {
  background-color: var(--ant-color-bg-container-disabled);
  border-color: var(--ant-color-border);
  cursor: not-allowed;
}
.ant-radio-wrapper .ant-radio-disabled .ant-radio-inner::after {
  background-color: var(--ant-radio-dot-color-disabled);
}
.ant-radio-wrapper .ant-radio-disabled .ant-radio-input {
  cursor: not-allowed;
}
.ant-radio-wrapper .ant-radio-disabled .ant-radio-disabled + span {
  color: var(--ant-color-text-disabled);
  cursor: not-allowed;
}
.ant-radio-wrapper
  .ant-radio-disabled.ant-radio-checked
  .ant-radio-inner::after {
  transform: scale(
    calc((var(--ant-radio-radio-size) - 4 * 2) / var(--ant-radio-radio-size))
  );
}
.ant-radio-wrapper span.ant-radio + * {
  padding-inline-start: var(--ant-padding-xs);
  padding-inline-end: var(--ant-padding-xs);
}
.ant-radio-button-wrapper {
  position: relative;
  display: inline-block;
  height: var(--ant-control-height);
  margin: 0;
  padding-inline: var(--ant-radio-button-padding-inline);
  padding-block: 0;
  color: var(--ant-radio-button-color);
  font-size: var(--ant-font-size);
  line-height: calc(var(--ant-control-height) - var(--ant-line-width) * 2);
  background: var(--ant-radio-button-bg);
  border: var(--ant-line-width) var(--ant-line-type) var(--ant-color-border);
  border-block-start-width: calc(var(--ant-line-width) + 0.02px);
  border-inline-end-width: var(--ant-line-width);
  cursor: pointer;
  transition:
    color var(--ant-motion-duration-mid),
    background var(--ant-motion-duration-mid),
    box-shadow var(--ant-motion-duration-mid);
}
.ant-radio-button-wrapper a {
  color: var(--ant-radio-button-color);
}
.ant-radio-button-wrapper > .ant-radio-button {
  position: absolute;
  inset-block-start: 0;
  inset-inline-start: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.ant-radio-button-wrapper:not(:last-child) {
  margin-inline-end: calc(var(--ant-line-width) * -1);
}
.ant-radio-button-wrapper:first-child {
  border-inline-start: var(--ant-line-width) var(--ant-line-type)
    var(--ant-color-border);
  border-start-start-radius: var(--ant-border-radius);
  border-end-start-radius: var(--ant-border-radius);
}
.ant-radio-button-wrapper:last-child {
  border-start-end-radius: var(--ant-border-radius);
  border-end-end-radius: var(--ant-border-radius);
}
.ant-radio-button-wrapper:first-child:last-child {
  border-radius: var(--ant-border-radius);
}
.ant-radio-group-large .ant-radio-button-wrapper {
  height: var(--ant-control-height-lg);
  font-size: var(--ant-font-size-lg);
  line-height: calc(var(--ant-control-height-lg) - var(--ant-line-width) * 2);
}
.ant-radio-group-large .ant-radio-button-wrapper:first-child {
  border-start-start-radius: var(--ant-border-radius-lg);
  border-end-start-radius: var(--ant-border-radius-lg);
}
.ant-radio-group-large .ant-radio-button-wrapper:last-child {
  border-start-end-radius: var(--ant-border-radius-lg);
  border-end-end-radius: var(--ant-border-radius-lg);
}
.ant-radio-group-small .ant-radio-button-wrapper {
  height: var(--ant-control-height-sm);
  padding-inline: calc(var(--ant-padding-xs) - var(--ant-line-width));
  padding-block: 0;
  line-height: calc(var(--ant-control-height-sm) - var(--ant-line-width) * 2);
}
.ant-radio-group-small .ant-radio-button-wrapper:first-child {
  border-start-start-radius: var(--ant-border-radius-sm);
  border-end-start-radius: var(--ant-border-radius-sm);
}
.ant-radio-group-small .ant-radio-button-wrapper:last-child {
  border-start-end-radius: var(--ant-border-radius-sm);
  border-end-end-radius: var(--ant-border-radius-sm);
}
.ant-radio-button-wrapper:hover {
  position: relative;
  color: var(--ant-color-primary);
}
.ant-radio-button-wrapper:has(:focus-visible) {
  outline: var(--ant-line-width-focus) solid var(--ant-color-primary-border);
  outline-offset: 1px;
  transition:
    outline-offset 0s,
    outline 0s;
}
.ant-radio-button-wrapper .ant-radio-inner,
.ant-radio-button-wrapper input[type="checkbox"],
.ant-radio-button-wrapper input[type="radio"] {
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
  z-index: 1;
  color: var(--ant-color-primary);
  background: var(--ant-radio-button-checked-bg);
  border-color: var(--ant-color-primary);
}
.ant-radio-button-wrapper-checked:not(
    .ant-radio-button-wrapper-disabled
  )::before {
  background-color: var(--ant-color-primary);
}
.ant-radio-button-wrapper-checked:not(
    .ant-radio-button-wrapper-disabled
  ):first-child {
  border-color: var(--ant-color-primary);
}
.ant-radio-button-wrapper-checked:not(
    .ant-radio-button-wrapper-disabled
  ):hover {
  color: var(--ant-color-primary-hover);
  border-color: var(--ant-color-primary-hover);
}
.ant-radio-button-wrapper-checked:not(
    .ant-radio-button-wrapper-disabled
  ):hover::before {
  background-color: var(--ant-color-primary-hover);
}
.ant-radio-button-wrapper-checked:not(
    .ant-radio-button-wrapper-disabled
  ):active {
  color: var(--ant-color-primary-active);
  border-color: var(--ant-color-primary-active);
}
.ant-radio-button-wrapper-checked:not(
    .ant-radio-button-wrapper-disabled
  ):active::before {
  background-color: var(--ant-color-primary-active);
}
.ant-radio-group-solid
  .ant-radio-button-wrapper-checked:not(.ant-radio-button-wrapper-disabled) {
  color: var(--ant-radio-button-solid-checked-color);
  background: var(--ant-radio-button-solid-checked-bg);
  border-color: var(--ant-radio-button-solid-checked-bg);
}
.ant-radio-group-solid
  .ant-radio-button-wrapper-checked:not(
    .ant-radio-button-wrapper-disabled
  ):hover {
  color: var(--ant-radio-button-solid-checked-color);
  background: var(--ant-radio-button-solid-checked-hover-bg);
  border-color: var(--ant-radio-button-solid-checked-hover-bg);
}
.ant-radio-group-solid
  .ant-radio-button-wrapper-checked:not(
    .ant-radio-button-wrapper-disabled
  ):active {
  color: var(--ant-radio-button-solid-checked-color);
  background: var(--ant-radio-button-solid-checked-active-bg);
  border-color: var(--ant-radio-button-solid-checked-active-bg);
}
.ant-radio-button-wrapper-disabled {
  color: var(--ant-color-text-disabled);
  background-color: var(--ant-color-bg-container-disabled);
  border-color: var(--ant-color-border);
  cursor: not-allowed;
}
.ant-radio-button-wrapper-disabled:first-child,
.ant-radio-button-wrapper-disabled:hover {
  color: var(--ant-color-text-disabled);
  background-color: var(--ant-color-bg-container-disabled);
  border-color: var(--ant-color-border);
}
.ant-radio-button-wrapper-disabled.ant-radio-button-wrapper-checked {
  color: var(--ant-radio-button-checked-color-disabled);
  background-color: var(--ant-radio-button-checked-bg-disabled);
  border-color: var(--ant-color-border);
  box-shadow: none;
}
.ant-radio-button-wrapper-block {
  flex: 1;
  text-align: center;
}
.css-var-«R26».ant-radio-css-var {
  --ant-radio-radio-size: 18;
  --ant-radio-dot-size: 8;
  --ant-radio-dot-color-disabled: rgba(0, 0, 0, 0.25);
  --ant-radio-button-solid-checked-color: #fff;
  --ant-radio-button-solid-checked-bg: #3a9bff;
  --ant-radio-button-solid-checked-hover-bg: #63b6ff;
  --ant-radio-button-solid-checked-active-bg: #277ad9;
  --ant-radio-button-bg: #ffffff;
  --ant-radio-button-checked-bg: #ffffff;
  --ant-radio-button-color: rgba(0, 0, 0, 0.88);
  --ant-radio-button-checked-bg-disabled: rgba(0, 0, 0, 0.15);
  --ant-radio-button-checked-color-disabled: rgba(0, 0, 0, 0.25);
  --ant-radio-button-padding-inline: 15px;
  --ant-radio-wrapper-margin-inline-end: 8px;
  --ant-radio-radio-color: #fff;
  --ant-radio-radio-bg-color: #3a9bff;
}
.ant-btn {
  font-family: var(--ant-font-family);
  font-size: var(--ant-font-size);
  box-sizing: border-box;
}
.ant-btn::before,
.ant-btn::after {
  box-sizing: border-box;
}
.ant-btn [class^="ant-btn"],
.ant-btn [class*=" ant-btn"] {
  box-sizing: border-box;
}
.ant-btn [class^="ant-btn"]::before,
.ant-btn [class*=" ant-btn"]::before,
.ant-btn [class^="ant-btn"]::after,
.ant-btn [class*=" ant-btn"]::after {
  box-sizing: border-box;
}
.ant-btn {
  outline: none;
  position: relative;
  display: inline-flex;
  gap: var(--ant-button-icon-gap);
  align-items: center;
  justify-content: center;
  font-weight: var(--ant-button-font-weight);
  white-space: nowrap;
  text-align: center;
  background-image: none;
  cursor: pointer;
  transition: all var(--ant-motion-duration-mid) var(--ant-motion-ease-in-out);
  user-select: none;
  touch-action: manipulation;
}
.ant-btn:disabled > * {
  pointer-events: none;
}
.ant-btn .ant-btn-icon > svg {
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ant-btn .ant-btn-icon > svg > * {
  line-height: 1;
}
.ant-btn .ant-btn-icon > svg svg {
  display: inline-block;
}
.ant-btn > a {
  color: currentColor;
}
.ant-btn:not(:disabled):focus-visible {
  outline: var(--ant-line-width-focus) solid var(--ant-color-primary-border);
  outline-offset: 1px;
  transition:
    outline-offset 0s,
    outline 0s;
}
.ant-btn.ant-btn-two-chinese-chars::first-letter {
  letter-spacing: 0.34em;
}
.ant-btn.ant-btn-two-chinese-chars > *:not(.anticon) {
  margin-inline-end: -0.34em;
  letter-spacing: 0.34em;
}
.ant-btn.ant-btn-icon-only {
  padding-inline: 0;
}
.ant-btn.ant-btn-icon-only.ant-btn-compact-item {
  flex: none;
}
.ant-btn.ant-btn-loading {
  opacity: var(--ant-opacity-loading);
  cursor: default;
}
.ant-btn .ant-btn-loading-icon {
  transition:
    width var(--ant-motion-duration-slow) var(--ant-motion-ease-in-out),
    opacity var(--ant-motion-duration-slow) var(--ant-motion-ease-in-out),
    margin var(--ant-motion-duration-slow) var(--ant-motion-ease-in-out);
}
.ant-btn:not(.ant-btn-icon-end) .ant-btn-loading-icon-motion-appear-start,
.ant-btn:not(.ant-btn-icon-end) .ant-btn-loading-icon-motion-enter-start {
  margin-inline-end: calc(var(--ant-button-icon-gap) * -1);
}
.ant-btn:not(.ant-btn-icon-end) .ant-btn-loading-icon-motion-appear-active,
.ant-btn:not(.ant-btn-icon-end) .ant-btn-loading-icon-motion-enter-active {
  margin-inline-end: 0;
}
.ant-btn:not(.ant-btn-icon-end) .ant-btn-loading-icon-motion-leave-start {
  margin-inline-end: 0;
}
.ant-btn:not(.ant-btn-icon-end) .ant-btn-loading-icon-motion-leave-active {
  margin-inline-end: calc(var(--ant-button-icon-gap) * -1);
}
.ant-btn-icon-end {
  flex-direction: row-reverse;
}
.ant-btn-icon-end .ant-btn-loading-icon-motion-appear-start,
.ant-btn-icon-end .ant-btn-loading-icon-motion-enter-start {
  margin-inline-start: calc(var(--ant-button-icon-gap) * -1);
}
.ant-btn-icon-end .ant-btn-loading-icon-motion-appear-active,
.ant-btn-icon-end .ant-btn-loading-icon-motion-enter-active {
  margin-inline-start: 0;
}
.ant-btn-icon-end .ant-btn-loading-icon-motion-leave-start {
  margin-inline-start: 0;
}
.ant-btn-icon-end .ant-btn-loading-icon-motion-leave-active {
  margin-inline-start: calc(var(--ant-button-icon-gap) * -1);
}
.ant-btn {
  font-size: var(--ant-button-content-font-size);
  height: var(--ant-control-height);
  padding: 0px var(--ant-button-padding-inline);
  border-radius: var(--ant-border-radius);
}
.ant-btn.ant-btn-icon-only {
  width: var(--ant-control-height);
}
.ant-btn.ant-btn-icon-only .anticon {
  font-size: var(--ant-button-only-icon-size);
}
.ant-btn.ant-btn-circle.ant-btn {
  min-width: var(--ant-control-height);
  padding-inline: 0;
  border-radius: 50%;
}
.ant-btn.ant-btn-round.ant-btn {
  border-radius: var(--ant-control-height);
}
.ant-btn.ant-btn-round.ant-btn:not(.ant-btn-icon-only) {
  padding-inline: var(--ant-button-padding-inline);
}
.ant-btn-sm {
  font-size: var(--ant-button-content-font-size-sm);
  height: var(--ant-control-height-sm);
  padding: 0px var(--ant-button-padding-inline-sm);
  border-radius: var(--ant-border-radius-sm);
}
.ant-btn-sm.ant-btn-icon-only {
  width: var(--ant-control-height-sm);
}
.ant-btn-sm.ant-btn-icon-only .anticon {
  font-size: var(--ant-button-only-icon-size-sm);
}
.ant-btn.ant-btn-circle.ant-btn-sm {
  min-width: var(--ant-control-height-sm);
  padding-inline: 0;
  border-radius: 50%;
}
.ant-btn.ant-btn-round.ant-btn-sm {
  border-radius: var(--ant-control-height-sm);
}
.ant-btn.ant-btn-round.ant-btn-sm:not(.ant-btn-icon-only) {
  padding-inline: var(--ant-button-padding-inline-sm);
}
.ant-btn-lg {
  font-size: var(--ant-button-content-font-size-lg);
  height: var(--ant-control-height-lg);
  padding: 0px var(--ant-button-padding-inline-lg);
  border-radius: var(--ant-border-radius-lg);
}
.ant-btn-lg.ant-btn-icon-only {
  width: var(--ant-control-height-lg);
}
.ant-btn-lg.ant-btn-icon-only .anticon {
  font-size: var(--ant-button-only-icon-size-lg);
}
.ant-btn.ant-btn-circle.ant-btn-lg {
  min-width: var(--ant-control-height-lg);
  padding-inline: 0;
  border-radius: 50%;
}
.ant-btn.ant-btn-round.ant-btn-lg {
  border-radius: var(--ant-control-height-lg);
}
.ant-btn.ant-btn-round.ant-btn-lg:not(.ant-btn-icon-only) {
  padding-inline: var(--ant-button-padding-inline-lg);
}
.ant-btn.ant-btn-block {
  width: 100%;
}
.ant-btn {
  --ant-btn-border-width: 1px;
  --ant-btn-border-color: #000;
  --ant-btn-border-color-hover: var(--ant-btn-border-color);
  --ant-btn-border-color-active: var(--ant-btn-border-color);
  --ant-btn-border-color-disabled: var(--ant-btn-border-color);
  --ant-btn-border-style: solid;
  --ant-btn-text-color: #000;
  --ant-btn-text-color-hover: var(--ant-btn-text-color);
  --ant-btn-text-color-active: var(--ant-btn-text-color);
  --ant-btn-text-color-disabled: var(--ant-btn-text-color);
  --ant-btn-bg-color: #ddd;
  --ant-btn-bg-color-hover: var(--ant-btn-bg-color);
  --ant-btn-bg-color-active: var(--ant-btn-bg-color);
  --ant-btn-bg-color-disabled: var(--ant-color-bg-container-disabled);
  --ant-btn-bg-color-container: var(--ant-color-bg-container);
  --ant-btn-shadow: none;
  border: var(--ant-btn-border-width) var(--ant-btn-border-style)
    var(--ant-btn-border-color);
  color: var(--ant-btn-text-color);
  background-color: var(--ant-btn-bg-color);
}
.ant-btn:not(:disabled):not(.ant-btn-disabled):hover {
  border: var(--ant-btn-border-width) var(--ant-btn-border-style)
    var(--ant-btn-border-color-hover);
  color: var(--ant-btn-text-color-hover);
  background-color: var(--ant-btn-bg-color-hover);
}
.ant-btn:not(:disabled):not(.ant-btn-disabled):active {
  border: var(--ant-btn-border-width) var(--ant-btn-border-style)
    var(--ant-btn-border-color-active);
  color: var(--ant-btn-text-color-active);
  background-color: var(--ant-btn-bg-color-active);
}
.ant-btn.ant-btn-variant-solid {
  --ant-btn-solid-bg-color: var(--ant-btn-color-base);
  --ant-btn-solid-bg-color-hover: var(--ant-btn-color-hover);
  --ant-btn-solid-bg-color-active: var(--ant-btn-color-active);
  --ant-btn-border-color: transparent;
  --ant-btn-text-color: var(--ant-color-text-light-solid);
  --ant-btn-bg-color: var(--ant-btn-solid-bg-color);
  --ant-btn-bg-color-hover: var(--ant-btn-solid-bg-color-hover);
  --ant-btn-bg-color-active: var(--ant-btn-solid-bg-color-active);
  box-shadow: var(--ant-btn-shadow);
}
.ant-btn.ant-btn-variant-outlined,
.ant-btn.ant-btn-variant-dashed {
  --ant-btn-border-color: var(--ant-btn-color-base);
  --ant-btn-border-color-hover: var(--ant-btn-color-hover);
  --ant-btn-border-color-active: var(--ant-btn-color-active);
  --ant-btn-bg-color: var(--ant-btn-bg-color-container);
  --ant-btn-text-color: var(--ant-btn-color-base);
  --ant-btn-text-color-hover: var(--ant-btn-color-hover);
  --ant-btn-text-color-active: var(--ant-btn-color-active);
  box-shadow: var(--ant-btn-shadow);
}
.ant-btn.ant-btn-variant-dashed {
  --ant-btn-border-style: dashed;
  --ant-btn-bg-color-disabled: var(--ant-button-dashed-bg-disabled);
}
.ant-btn.ant-btn-variant-filled {
  --ant-btn-border-color: transparent;
  --ant-btn-text-color: var(--ant-btn-color-base);
  --ant-btn-bg-color: var(--ant-btn-color-light);
  --ant-btn-bg-color-hover: var(--ant-btn-color-light-hover);
  --ant-btn-bg-color-active: var(--ant-btn-color-light-active);
}
.ant-btn.ant-btn-variant-text,
.ant-btn.ant-btn-variant-link {
  --ant-btn-border-color: transparent;
  --ant-btn-text-color: var(--ant-btn-color-base);
  --ant-btn-text-color-hover: var(--ant-btn-color-hover);
  --ant-btn-text-color-active: var(--ant-btn-color-active);
  --ant-btn-bg-color: transparent;
  --ant-btn-bg-color-hover: transparent;
  --ant-btn-bg-color-active: transparent;
}
.ant-btn.ant-btn-variant-text:disabled,
.ant-btn.ant-btn-variant-link:disabled,
.ant-btn.ant-btn-variant-text.ant-btn-disabled,
.ant-btn.ant-btn-variant-link.ant-btn-disabled {
  background: transparent;
  border-color: transparent;
}
.ant-btn.ant-btn-variant-text {
  --ant-btn-bg-color-hover: var(--ant-btn-color-light);
  --ant-btn-bg-color-active: var(--ant-btn-color-light-active);
}
.ant-btn.ant-btn-variant-link {
  --ant-btn-color-base: var(--ant-color-link);
  --ant-btn-color-hover: var(--ant-color-link-hover);
  --ant-btn-color-active: var(--ant-color-link-active);
}
.ant-btn.ant-btn-color-primary {
  --ant-btn-color-base: var(--ant-color-primary);
  --ant-btn-color-hover: var(--ant-color-primary-hover);
  --ant-btn-color-active: var(--ant-color-primary-active);
  --ant-btn-color-light: var(--ant-color-primary-bg);
  --ant-btn-color-light-hover: var(--ant-color-primary-bg-hover);
  --ant-btn-color-light-active: var(--ant-color-primary-border);
  --ant-btn-shadow: var(--ant-button-primary-shadow);
}
.ant-btn.ant-btn-color-dangerous {
  --ant-btn-color-base: var(--ant-color-error);
  --ant-btn-color-hover: var(--ant-color-error-hover);
  --ant-btn-color-active: var(--ant-color-error-active);
  --ant-btn-color-light: var(--ant-color-error-bg);
  --ant-btn-color-light-hover: var(--ant-color-error-bg-filled-hover);
  --ant-btn-color-light-active: var(--ant-color-error-bg-active);
  --ant-btn-shadow: var(--ant-button-danger-shadow);
}
.ant-btn.ant-btn-color-default {
  --ant-btn-solid-bg-color: var(--ant-color-bg-solid);
  --ant-btn-solid-bg-color-hover: var(--ant-color-bg-solid-hover);
  --ant-btn-solid-bg-color-active: var(--ant-color-bg-solid-active);
  --ant-btn-color-base: var(--ant-button-default-border-color);
  --ant-btn-color-hover: var(--ant-button-default-hover-border-color);
  --ant-btn-color-active: var(--ant-button-default-active-border-color);
  --ant-btn-color-light: var(--ant-color-fill-tertiary);
  --ant-btn-color-light-hover: var(--ant-color-fill-secondary);
  --ant-btn-color-light-active: var(--ant-color-fill);
  --ant-btn-text-color: var(--ant-color-text);
  --ant-btn-text-color-hover: var(--ant-button-default-hover-border-color);
  --ant-btn-text-color-active: var(--ant-button-default-active-border-color);
  --ant-btn-shadow: var(--ant-button-default-shadow);
}
.ant-btn.ant-btn-color-default.ant-btn-variant-solid {
  --ant-btn-text-color: var(--ant-button-solid-text-color);
}
.ant-btn.ant-btn-color-default.ant-btn-variant-filled,
.ant-btn.ant-btn-color-default.ant-btn-variant-text {
  --ant-btn-text-color-hover: var(--ant-btn-text-color);
  --ant-btn-text-color-active: var(--ant-btn-text-color);
}
.ant-btn.ant-btn-color-default.ant-btn-background-ghost.ant-btn-variant-outlined,
.ant-btn.ant-btn-color-default.ant-btn-background-ghost.ant-btn-variant-dashed {
  --ant-btn-text-color: var(--ant-button-default-ghost-color);
  --ant-btn-border-color: var(--ant-button-default-ghost-border-color);
}
.ant-btn.ant-btn-color-blue {
  --ant-btn-color-base: var(--ant-blue-6);
  --ant-btn-color-hover: var(--ant-blue-5);
  --ant-btn-color-active: var(--ant-blue-7);
  --ant-btn-color-light: var(--ant-blue-1);
  --ant-btn-color-light-hover: var(--ant-blue-2);
  --ant-btn-color-light-active: var(--ant-blue-3);
  --ant-btn-shadow: var(--ant-button-blue-shadow-color);
}
.ant-btn.ant-btn-color-purple {
  --ant-btn-color-base: var(--ant-purple-6);
  --ant-btn-color-hover: var(--ant-purple-5);
  --ant-btn-color-active: var(--ant-purple-7);
  --ant-btn-color-light: var(--ant-purple-1);
  --ant-btn-color-light-hover: var(--ant-purple-2);
  --ant-btn-color-light-active: var(--ant-purple-3);
  --ant-btn-shadow: var(--ant-button-purple-shadow-color);
}
.ant-btn.ant-btn-color-cyan {
  --ant-btn-color-base: var(--ant-cyan-6);
  --ant-btn-color-hover: var(--ant-cyan-5);
  --ant-btn-color-active: var(--ant-cyan-7);
  --ant-btn-color-light: var(--ant-cyan-1);
  --ant-btn-color-light-hover: var(--ant-cyan-2);
  --ant-btn-color-light-active: var(--ant-cyan-3);
  --ant-btn-shadow: var(--ant-button-cyan-shadow-color);
}
.ant-btn.ant-btn-color-green {
  --ant-btn-color-base: var(--ant-green-6);
  --ant-btn-color-hover: var(--ant-green-5);
  --ant-btn-color-active: var(--ant-green-7);
  --ant-btn-color-light: var(--ant-green-1);
  --ant-btn-color-light-hover: var(--ant-green-2);
  --ant-btn-color-light-active: var(--ant-green-3);
  --ant-btn-shadow: var(--ant-button-green-shadow-color);
}
.ant-btn.ant-btn-color-magenta {
  --ant-btn-color-base: var(--ant-magenta-6);
  --ant-btn-color-hover: var(--ant-magenta-5);
  --ant-btn-color-active: var(--ant-magenta-7);
  --ant-btn-color-light: var(--ant-magenta-1);
  --ant-btn-color-light-hover: var(--ant-magenta-2);
  --ant-btn-color-light-active: var(--ant-magenta-3);
  --ant-btn-shadow: var(--ant-button-magenta-shadow-color);
}
.ant-btn.ant-btn-color-pink {
  --ant-btn-color-base: var(--ant-pink-6);
  --ant-btn-color-hover: var(--ant-pink-5);
  --ant-btn-color-active: var(--ant-pink-7);
  --ant-btn-color-light: var(--ant-pink-1);
  --ant-btn-color-light-hover: var(--ant-pink-2);
  --ant-btn-color-light-active: var(--ant-pink-3);
  --ant-btn-shadow: var(--ant-button-pink-shadow-color);
}
.ant-btn.ant-btn-color-red {
  --ant-btn-color-base: var(--ant-red-6);
  --ant-btn-color-hover: var(--ant-red-5);
  --ant-btn-color-active: var(--ant-red-7);
  --ant-btn-color-light: var(--ant-red-1);
  --ant-btn-color-light-hover: var(--ant-red-2);
  --ant-btn-color-light-active: var(--ant-red-3);
  --ant-btn-shadow: var(--ant-button-red-shadow-color);
}
.ant-btn.ant-btn-color-orange {
  --ant-btn-color-base: var(--ant-orange-6);
  --ant-btn-color-hover: var(--ant-orange-5);
  --ant-btn-color-active: var(--ant-orange-7);
  --ant-btn-color-light: var(--ant-orange-1);
  --ant-btn-color-light-hover: var(--ant-orange-2);
  --ant-btn-color-light-active: var(--ant-orange-3);
  --ant-btn-shadow: var(--ant-button-orange-shadow-color);
}
.ant-btn.ant-btn-color-yellow {
  --ant-btn-color-base: var(--ant-yellow-6);
  --ant-btn-color-hover: var(--ant-yellow-5);
  --ant-btn-color-active: var(--ant-yellow-7);
  --ant-btn-color-light: var(--ant-yellow-1);
  --ant-btn-color-light-hover: var(--ant-yellow-2);
  --ant-btn-color-light-active: var(--ant-yellow-3);
  --ant-btn-shadow: var(--ant-button-yellow-shadow-color);
}
.ant-btn.ant-btn-color-volcano {
  --ant-btn-color-base: var(--ant-volcano-6);
  --ant-btn-color-hover: var(--ant-volcano-5);
  --ant-btn-color-active: var(--ant-volcano-7);
  --ant-btn-color-light: var(--ant-volcano-1);
  --ant-btn-color-light-hover: var(--ant-volcano-2);
  --ant-btn-color-light-active: var(--ant-volcano-3);
  --ant-btn-shadow: var(--ant-button-volcano-shadow-color);
}
.ant-btn.ant-btn-color-geekblue {
  --ant-btn-color-base: var(--ant-geekblue-6);
  --ant-btn-color-hover: var(--ant-geekblue-5);
  --ant-btn-color-active: var(--ant-geekblue-7);
  --ant-btn-color-light: var(--ant-geekblue-1);
  --ant-btn-color-light-hover: var(--ant-geekblue-2);
  --ant-btn-color-light-active: var(--ant-geekblue-3);
  --ant-btn-shadow: var(--ant-button-geekblue-shadow-color);
}
.ant-btn.ant-btn-color-lime {
  --ant-btn-color-base: var(--ant-lime-6);
  --ant-btn-color-hover: var(--ant-lime-5);
  --ant-btn-color-active: var(--ant-lime-7);
  --ant-btn-color-light: var(--ant-lime-1);
  --ant-btn-color-light-hover: var(--ant-lime-2);
  --ant-btn-color-light-active: var(--ant-lime-3);
  --ant-btn-shadow: var(--ant-button-lime-shadow-color);
}
.ant-btn.ant-btn-color-gold {
  --ant-btn-color-base: var(--ant-gold-6);
  --ant-btn-color-hover: var(--ant-gold-5);
  --ant-btn-color-active: var(--ant-gold-7);
  --ant-btn-color-light: var(--ant-gold-1);
  --ant-btn-color-light-hover: var(--ant-gold-2);
  --ant-btn-color-light-active: var(--ant-gold-3);
  --ant-btn-shadow: var(--ant-button-gold-shadow-color);
}
.ant-btn:disabled,
.ant-btn.ant-btn-disabled {
  cursor: not-allowed;
  border-color: var(--ant-button-border-color-disabled);
  background: var(--ant-btn-bg-color-disabled);
  color: var(--ant-color-text-disabled);
  box-shadow: none;
}
.ant-btn.ant-btn-background-ghost {
  --ant-btn-bg-color: transparent;
  --ant-btn-shadow: none;
}
.ant-btn-group {
  position: relative;
  display: inline-flex;
}
.ant-btn-group > span:not(:last-child),
.ant-btn-group > .ant-btn:not(:last-child),
.ant-btn-group > span:not(:last-child) > .ant-btn,
.ant-btn-group > .ant-btn:not(:last-child) > .ant-btn {
  border-start-end-radius: 0;
  border-end-end-radius: 0;
}
.ant-btn-group > span:not(:first-child),
.ant-btn-group > .ant-btn:not(:first-child) {
  margin-inline-start: calc(var(--ant-line-width) * -1);
}
.ant-btn-group > span:not(:first-child),
.ant-btn-group > .ant-btn:not(:first-child),
.ant-btn-group > span:not(:first-child) > .ant-btn,
.ant-btn-group > .ant-btn:not(:first-child) > .ant-btn {
  border-start-start-radius: 0;
  border-end-start-radius: 0;
}
.ant-btn-group .ant-btn {
  position: relative;
  z-index: 1;
}
.ant-btn-group .ant-btn:hover,
.ant-btn-group .ant-btn:focus,
.ant-btn-group .ant-btn:active {
  z-index: 2;
}
.ant-btn-group .ant-btn[disabled] {
  z-index: 0;
}
.ant-btn-group .ant-btn-icon-only {
  font-size: var(--ant-font-size);
}
.ant-btn-group > span:not(:last-child):not(:disabled),
.ant-btn-group > .ant-btn-primary:not(:last-child):not(:disabled),
.ant-btn-group > span:not(:last-child) > .ant-btn-primary:not(:disabled),
.ant-btn-group
  > .ant-btn-primary:not(:last-child)
  > .ant-btn-primary:not(:disabled) {
  border-inline-end-color: var(--ant-button-group-border-color);
}
.ant-btn-group > span:not(:first-child):not(:disabled),
.ant-btn-group > .ant-btn-primary:not(:first-child):not(:disabled),
.ant-btn-group > span:not(:first-child) > .ant-btn-primary:not(:disabled),
.ant-btn-group
  > .ant-btn-primary:not(:first-child)
  > .ant-btn-primary:not(:disabled) {
  border-inline-start-color: var(--ant-button-group-border-color);
}
.ant-btn-group > span:not(:last-child):not(:disabled),
.ant-btn-group > .ant-btn-danger:not(:last-child):not(:disabled),
.ant-btn-group > span:not(:last-child) > .ant-btn-danger:not(:disabled),
.ant-btn-group
  > .ant-btn-danger:not(:last-child)
  > .ant-btn-danger:not(:disabled) {
  border-inline-end-color: var(--ant-color-error-hover);
}
.ant-btn-group > span:not(:first-child):not(:disabled),
.ant-btn-group > .ant-btn-danger:not(:first-child):not(:disabled),
.ant-btn-group > span:not(:first-child) > .ant-btn-danger:not(:disabled),
.ant-btn-group
  > .ant-btn-danger:not(:first-child)
  > .ant-btn-danger:not(:disabled) {
  border-inline-start-color: var(--ant-color-error-hover);
}
.css-var-«R26».ant-btn {
  --ant-button-blue-shadow-color: 0 2px 0 rgba(5, 145, 255, 0.1);
  --ant-button-purple-shadow-color: 0 2px 0 rgba(155, 5, 255, 0.06);
  --ant-button-cyan-shadow-color: 0 2px 0 rgba(5, 255, 215, 0.1);
  --ant-button-green-shadow-color: 0 2px 0 rgba(142, 255, 30, 0.08);
  --ant-button-magenta-shadow-color: 0 2px 0 rgba(255, 5, 105, 0.06);
  --ant-button-pink-shadow-color: 0 2px 0 rgba(255, 5, 105, 0.06);
  --ant-button-red-shadow-color: 0 2px 0 rgba(255, 22, 5, 0.06);
  --ant-button-orange-shadow-color: 0 2px 0 rgba(255, 175, 5, 0.1);
  --ant-button-yellow-shadow-color: 0 2px 0 rgba(245, 255, 5, 0.1);
  --ant-button-volcano-shadow-color: 0 2px 0 rgba(255, 125, 25, 0.1);
  --ant-button-geekblue-shadow-color: 0 2px 0 rgba(5, 88, 255, 0.06);
  --ant-button-lime-shadow-color: 0 2px 0 rgba(225, 255, 5, 0.1);
  --ant-button-gold-shadow-color: 0 2px 0 rgba(255, 215, 5, 0.1);
  --ant-button-font-weight: 400;
  --ant-button-icon-gap: 8px;
  --ant-button-default-shadow: 0 2px 0 rgba(0, 0, 0, 0.02);
  --ant-button-primary-shadow: 0 2px 0 rgba(5, 172, 255, 0.06);
  --ant-button-danger-shadow: 0 2px 0 rgba(255, 38, 5, 0.06);
  --ant-button-primary-color: #fff;
  --ant-button-danger-color: #fff;
  --ant-button-border-color-disabled: #d9d9d9;
  --ant-button-default-ghost-color: #ffffff;
  --ant-button-ghost-bg: transparent;
  --ant-button-default-ghost-border-color: #ffffff;
  --ant-button-padding-inline: 15px;
  --ant-button-padding-inline-lg: 15px;
  --ant-button-padding-inline-sm: 7px;
  --ant-button-only-icon-size: inherit;
  --ant-button-only-icon-size-sm: inherit;
  --ant-button-only-icon-size-lg: inherit;
  --ant-button-group-border-color: #63b6ff;
  --ant-button-link-hover-bg: transparent;
  --ant-button-text-text-color: rgba(0, 0, 0, 0.88);
  --ant-button-text-text-hover-color: rgba(0, 0, 0, 0.88);
  --ant-button-text-text-active-color: rgba(0, 0, 0, 0.88);
  --ant-button-text-hover-bg: rgba(0, 0, 0, 0.04);
  --ant-button-default-color: rgba(0, 0, 0, 0.88);
  --ant-button-default-bg: #ffffff;
  --ant-button-default-border-color: #d9d9d9;
  --ant-button-default-border-color-disabled: #d9d9d9;
  --ant-button-default-hover-bg: #ffffff;
  --ant-button-default-hover-color: #63b6ff;
  --ant-button-default-hover-border-color: #63b6ff;
  --ant-button-default-active-bg: #ffffff;
  --ant-button-default-active-color: #277ad9;
  --ant-button-default-active-border-color: #277ad9;
  --ant-button-solid-text-color: #fff;
  --ant-button-content-font-size: 16px;
  --ant-button-content-font-size-sm: 16px;
  --ant-button-content-font-size-lg: 18px;
  --ant-button-content-line-height: 1.5;
  --ant-button-content-line-height-sm: 1.5;
  --ant-button-content-line-height-lg: 1.4444444444444444;
  --ant-button-padding-block: 3px;
  --ant-button-padding-block-sm: 0px;
  --ant-button-padding-block-lg: 6px;
  --ant-button-default-bg-disabled: rgba(0, 0, 0, 0.04);
  --ant-button-dashed-bg-disabled: rgba(0, 0, 0, 0.04);
}
a {
  color: var(--ant-color-link);
  text-decoration: var(--ant-link-decoration);
  background-color: transparent;
  outline: none;
  cursor: pointer;
  transition: color var(--ant-motion-duration-slow);
  -webkit-text-decoration-skip: objects;
}
a:hover {
  color: var(--ant-color-link-hover);
}
a:active {
  color: var(--ant-color-link-active);
}
a:active,
a:hover {
  text-decoration: var(--ant-link-hover-decoration);
  outline: 0;
}
a:focus {
  text-decoration: var(--ant-link-focus-decoration);
  outline: 0;
}
a[disabled] {
  color: var(--ant-color-text-disabled);
  cursor: not-allowed;
}
a {
  color: var(--ant-color-link);
  text-decoration: var(--ant-link-decoration);
  background-color: transparent;
  outline: none;
  cursor: pointer;
  transition: color var(--ant-motion-duration-slow);
  -webkit-text-decoration-skip: objects;
}
a:hover {
  color: var(--ant-color-link-hover);
}
a:active {
  color: var(--ant-color-link-active);
}
a:active,
a:hover {
  text-decoration: var(--ant-link-hover-decoration);
  outline: 0;
}
a:focus {
  text-decoration: var(--ant-link-focus-decoration);
  outline: 0;
}
a[disabled] {
  color: var(--ant-color-text-disabled);
  cursor: not-allowed;
}
.anticon {
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.anticon > * {
  line-height: 1;
}
.anticon svg {
  display: inline-block;
}
.anticon .anticon .anticon-icon {
  display: block;
}
.ant-wave {
  font-family: var(--ant-font-family);
  font-size: var(--ant-font-size);
  box-sizing: border-box;
}
.ant-wave::before,
.ant-wave::after {
  box-sizing: border-box;
}
.ant-wave [class^="ant-wave"],
.ant-wave [class*=" ant-wave"] {
  box-sizing: border-box;
}
.ant-wave [class^="ant-wave"]::before,
.ant-wave [class*=" ant-wave"]::before,
.ant-wave [class^="ant-wave"]::after,
.ant-wave [class*=" ant-wave"]::after {
  box-sizing: border-box;
}
.ant-wave {
  position: absolute;
  background: transparent;
  pointer-events: none;
  box-sizing: border-box;
  color: var(--wave-color, var(--ant-color-primary));
  box-shadow: 0 0 0 0 currentcolor;
  opacity: 0.2;
}
.ant-wave.wave-motion-appear {
  transition:
    box-shadow 0.4s var(--ant-motion-ease-out-circ),
    opacity 2s var(--ant-motion-ease-out-circ);
}
.ant-wave.wave-motion-appear-active {
  box-shadow: 0 0 0 6px currentcolor;
  opacity: 0;
}
.ant-wave.wave-motion-appear.wave-quick {
  transition:
    box-shadow var(--ant-motion-duration-slow) var(--ant-motion-ease-in-out),
    opacity var(--ant-motion-duration-slow) var(--ant-motion-ease-in-out);
}
.css-var-«R26» {
  --ant-blue: #1677ff;
  --ant-purple: #722ed1;
  --ant-cyan: #13c2c2;
  --ant-green: #52c41a;
  --ant-magenta: #eb2f96;
  --ant-pink: #eb2f96;
  --ant-red: #f5222d;
  --ant-orange: #fa8c16;
  --ant-yellow: #fadb14;
  --ant-volcano: #fa541c;
  --ant-geekblue: #2f54eb;
  --ant-gold: #faad14;
  --ant-lime: #a0d911;
  --ant-color-primary: #3a9bff;
  --ant-color-success: #52c41a;
  --ant-color-warning: #faad14;
  --ant-color-error: #ff4d4f;
  --ant-color-info: #1677ff;
  --ant-color-link: #1677ff;
  --ant-color-text-base: #000;
  --ant-color-bg-base: #fff;
  --ant-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --ant-font-family-code: "SFMono-Regular", Consolas, "Liberation Mono", Menlo,
    Courier, monospace;
  --ant-font-size: 16px;
  --ant-line-width: 1px;
  --ant-line-type: solid;
  --ant-motion-ease-out-circ: cubic-bezier(0.08, 0.82, 0.17, 1);
  --ant-motion-ease-in-out-circ: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  --ant-motion-ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ant-motion-ease-in-out: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ant-motion-ease-out-back: cubic-bezier(0.12, 0.4, 0.29, 1.46);
  --ant-motion-ease-in-back: cubic-bezier(0.71, -0.46, 0.88, 0.6);
  --ant-motion-ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ant-motion-ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ant-border-radius: 6px;
  --ant-size-unit: 4px;
  --ant-size-step: 4px;
  --ant-size-popup-arrow: 16px;
  --ant-control-height: 32px;
  --ant-z-index-base: 0;
  --ant-z-index-popup-base: 1000;
  --ant-opacity-image: 1;
  --ant-blue-1: #e6f4ff;
  --ant-blue-2: #bae0ff;
  --ant-blue-3: #91caff;
  --ant-blue-4: #69b1ff;
  --ant-blue-5: #4096ff;
  --ant-blue-6: #1677ff;
  --ant-blue-7: #0958d9;
  --ant-blue-8: #003eb3;
  --ant-blue-9: #002c8c;
  --ant-blue-10: #001d66;
  --ant-purple-1: #f9f0ff;
  --ant-purple-2: #efdbff;
  --ant-purple-3: #d3adf7;
  --ant-purple-4: #b37feb;
  --ant-purple-5: #9254de;
  --ant-purple-6: #722ed1;
  --ant-purple-7: #531dab;
  --ant-purple-8: #391085;
  --ant-purple-9: #22075e;
  --ant-purple-10: #120338;
  --ant-cyan-1: #e6fffb;
  --ant-cyan-2: #b5f5ec;
  --ant-cyan-3: #87e8de;
  --ant-cyan-4: #5cdbd3;
  --ant-cyan-5: #36cfc9;
  --ant-cyan-6: #13c2c2;
  --ant-cyan-7: #08979c;
  --ant-cyan-8: #006d75;
  --ant-cyan-9: #00474f;
  --ant-cyan-10: #002329;
  --ant-green-1: #f6ffed;
  --ant-green-2: #d9f7be;
  --ant-green-3: #b7eb8f;
  --ant-green-4: #95de64;
  --ant-green-5: #73d13d;
  --ant-green-6: #52c41a;
  --ant-green-7: #389e0d;
  --ant-green-8: #237804;
  --ant-green-9: #135200;
  --ant-green-10: #092b00;
  --ant-magenta-1: #fff0f6;
  --ant-magenta-2: #ffd6e7;
  --ant-magenta-3: #ffadd2;
  --ant-magenta-4: #ff85c0;
  --ant-magenta-5: #f759ab;
  --ant-magenta-6: #eb2f96;
  --ant-magenta-7: #c41d7f;
  --ant-magenta-8: #9e1068;
  --ant-magenta-9: #780650;
  --ant-magenta-10: #520339;
  --ant-pink-1: #fff0f6;
  --ant-pink-2: #ffd6e7;
  --ant-pink-3: #ffadd2;
  --ant-pink-4: #ff85c0;
  --ant-pink-5: #f759ab;
  --ant-pink-6: #eb2f96;
  --ant-pink-7: #c41d7f;
  --ant-pink-8: #9e1068;
  --ant-pink-9: #780650;
  --ant-pink-10: #520339;
  --ant-red-1: #fff1f0;
  --ant-red-2: #ffccc7;
  --ant-red-3: #ffa39e;
  --ant-red-4: #ff7875;
  --ant-red-5: #ff4d4f;
  --ant-red-6: #f5222d;
  --ant-red-7: #cf1322;
  --ant-red-8: #a8071a;
  --ant-red-9: #820014;
  --ant-red-10: #5c0011;
  --ant-orange-1: #fff7e6;
  --ant-orange-2: #ffe7ba;
  --ant-orange-3: #ffd591;
  --ant-orange-4: #ffc069;
  --ant-orange-5: #ffa940;
  --ant-orange-6: #fa8c16;
  --ant-orange-7: #d46b08;
  --ant-orange-8: #ad4e00;
  --ant-orange-9: #873800;
  --ant-orange-10: #612500;
  --ant-yellow-1: #feffe6;
  --ant-yellow-2: #ffffb8;
  --ant-yellow-3: #fffb8f;
  --ant-yellow-4: #fff566;
  --ant-yellow-5: #ffec3d;
  --ant-yellow-6: #fadb14;
  --ant-yellow-7: #d4b106;
  --ant-yellow-8: #ad8b00;
  --ant-yellow-9: #876800;
  --ant-yellow-10: #614700;
  --ant-volcano-1: #fff2e8;
  --ant-volcano-2: #ffd8bf;
  --ant-volcano-3: #ffbb96;
  --ant-volcano-4: #ff9c6e;
  --ant-volcano-5: #ff7a45;
  --ant-volcano-6: #fa541c;
  --ant-volcano-7: #d4380d;
  --ant-volcano-8: #ad2102;
  --ant-volcano-9: #871400;
  --ant-volcano-10: #610b00;
  --ant-geekblue-1: #f0f5ff;
  --ant-geekblue-2: #d6e4ff;
  --ant-geekblue-3: #adc6ff;
  --ant-geekblue-4: #85a5ff;
  --ant-geekblue-5: #597ef7;
  --ant-geekblue-6: #2f54eb;
  --ant-geekblue-7: #1d39c4;
  --ant-geekblue-8: #10239e;
  --ant-geekblue-9: #061178;
  --ant-geekblue-10: #030852;
  --ant-gold-1: #fffbe6;
  --ant-gold-2: #fff1b8;
  --ant-gold-3: #ffe58f;
  --ant-gold-4: #ffd666;
  --ant-gold-5: #ffc53d;
  --ant-gold-6: #faad14;
  --ant-gold-7: #d48806;
  --ant-gold-8: #ad6800;
  --ant-gold-9: #874d00;
  --ant-gold-10: #613400;
  --ant-lime-1: #fcffe6;
  --ant-lime-2: #f4ffb8;
  --ant-lime-3: #eaff8f;
  --ant-lime-4: #d3f261;
  --ant-lime-5: #bae637;
  --ant-lime-6: #a0d911;
  --ant-lime-7: #7cb305;
  --ant-lime-8: #5b8c00;
  --ant-lime-9: #3f6600;
  --ant-lime-10: #254000;
  --ant-color-text: rgba(0, 0, 0, 0.88);
  --ant-color-text-secondary: rgba(0, 0, 0, 0.65);
  --ant-color-text-tertiary: rgba(0, 0, 0, 0.45);
  --ant-color-text-quaternary: rgba(0, 0, 0, 0.25);
  --ant-color-fill: rgba(0, 0, 0, 0.15);
  --ant-color-fill-secondary: rgba(0, 0, 0, 0.06);
  --ant-color-fill-tertiary: rgba(0, 0, 0, 0.04);
  --ant-color-fill-quaternary: rgba(0, 0, 0, 0.02);
  --ant-color-bg-solid: rgb(0, 0, 0);
  --ant-color-bg-solid-hover: rgba(0, 0, 0, 0.75);
  --ant-color-bg-solid-active: rgba(0, 0, 0, 0.95);
  --ant-color-bg-layout: #f5f5f5;
  --ant-color-bg-container: #ffffff;
  --ant-color-bg-elevated: #ffffff;
  --ant-color-bg-spotlight: rgba(0, 0, 0, 0.85);
  --ant-color-bg-blur: transparent;
  --ant-color-border: #d9d9d9;
  --ant-color-border-disabled: #d9d9d9;
  --ant-color-border-secondary: #f0f0f0;
  --ant-color-primary-bg: #f0faff;
  --ant-color-primary-bg-hover: #def3ff;
  --ant-color-primary-border: #b5e1ff;
  --ant-color-primary-border-hover: #8ccdff;
  --ant-color-primary-hover: #63b6ff;
  --ant-color-primary-active: #277ad9;
  --ant-color-primary-text-hover: #63b6ff;
  --ant-color-primary-text: #3a9bff;
  --ant-color-primary-text-active: #277ad9;
  --ant-color-success-bg: #f6ffed;
  --ant-color-success-bg-hover: #d9f7be;
  --ant-color-success-border: #b7eb8f;
  --ant-color-success-border-hover: #95de64;
  --ant-color-success-hover: #95de64;
  --ant-color-success-active: #389e0d;
  --ant-color-success-text-hover: #73d13d;
  --ant-color-success-text: #52c41a;
  --ant-color-success-text-active: #389e0d;
  --ant-color-error-bg: #fff2f0;
  --ant-color-error-bg-hover: #fff1f0;
  --ant-color-error-bg-filled-hover: #ffdfdc;
  --ant-color-error-bg-active: #ffccc7;
  --ant-color-error-border: #ffccc7;
  --ant-color-error-border-hover: #ffa39e;
  --ant-color-error-hover: #ff7875;
  --ant-color-error-active: #d9363e;
  --ant-color-error-text-hover: #ff7875;
  --ant-color-error-text: #ff4d4f;
  --ant-color-error-text-active: #d9363e;
  --ant-color-warning-bg: #fffbe6;
  --ant-color-warning-bg-hover: #fff1b8;
  --ant-color-warning-border: #ffe58f;
  --ant-color-warning-border-hover: #ffd666;
  --ant-color-warning-hover: #ffd666;
  --ant-color-warning-active: #d48806;
  --ant-color-warning-text-hover: #ffc53d;
  --ant-color-warning-text: #faad14;
  --ant-color-warning-text-active: #d48806;
  --ant-color-info-bg: #e6f4ff;
  --ant-color-info-bg-hover: #bae0ff;
  --ant-color-info-border: #91caff;
  --ant-color-info-border-hover: #69b1ff;
  --ant-color-info-hover: #69b1ff;
  --ant-color-info-active: #0958d9;
  --ant-color-info-text-hover: #4096ff;
  --ant-color-info-text: #1677ff;
  --ant-color-info-text-active: #0958d9;
  --ant-color-link-hover: #69b1ff;
  --ant-color-link-active: #0958d9;
  --ant-color-bg-mask: rgba(0, 0, 0, 0.45);
  --ant-color-white: #fff;
  --ant-font-size-sm: 14px;
  --ant-font-size-lg: 18px;
  --ant-font-size-xl: 22px;
  --ant-font-size-heading-1: 42px;
  --ant-font-size-heading-2: 34px;
  --ant-font-size-heading-3: 28px;
  --ant-font-size-heading-4: 22px;
  --ant-font-size-heading-5: 18px;
  --ant-line-height: 1.5;
  --ant-line-height-lg: 1.4444444444444444;
  --ant-line-height-sm: 1.5714285714285714;
  --ant-font-height: 24px;
  --ant-font-height-lg: 26px;
  --ant-font-height-sm: 22px;
  --ant-line-height-heading-1: 1.1904761904761905;
  --ant-line-height-heading-2: 1.2352941176470589;
  --ant-line-height-heading-3: 1.2857142857142858;
  --ant-line-height-heading-4: 1.3636363636363635;
  --ant-line-height-heading-5: 1.4444444444444444;
  --ant-size-xxl: 48px;
  --ant-size-xl: 32px;
  --ant-size-lg: 24px;
  --ant-size-md: 20px;
  --ant-size-ms: 16px;
  --ant-size: 16px;
  --ant-size-sm: 12px;
  --ant-size-xs: 8px;
  --ant-size-xxs: 4px;
  --ant-control-height-sm: 24px;
  --ant-control-height-xs: 16px;
  --ant-control-height-lg: 40px;
  --ant-motion-duration-fast: 0.1s;
  --ant-motion-duration-mid: 0.2s;
  --ant-motion-duration-slow: 0.3s;
  --ant-line-width-bold: 2px;
  --ant-border-radius-xs: 2px;
  --ant-border-radius-sm: 4px;
  --ant-border-radius-lg: 8px;
  --ant-border-radius-outer: 4px;
  --ant-color-fill-content: rgba(0, 0, 0, 0.06);
  --ant-color-fill-content-hover: rgba(0, 0, 0, 0.15);
  --ant-color-fill-alter: rgba(0, 0, 0, 0.02);
  --ant-color-bg-container-disabled: rgba(0, 0, 0, 0.04);
  --ant-color-border-bg: #ffffff;
  --ant-color-split: rgba(5, 5, 5, 0.06);
  --ant-color-text-placeholder: rgba(0, 0, 0, 0.25);
  --ant-color-text-disabled: rgba(0, 0, 0, 0.25);
  --ant-color-text-heading: rgba(0, 0, 0, 0.88);
  --ant-color-text-label: rgba(0, 0, 0, 0.65);
  --ant-color-text-description: rgba(0, 0, 0, 0.45);
  --ant-color-text-light-solid: #fff;
  --ant-color-highlight: #ff4d4f;
  --ant-color-bg-text-hover: rgba(0, 0, 0, 0.06);
  --ant-color-bg-text-active: rgba(0, 0, 0, 0.15);
  --ant-color-icon: rgba(0, 0, 0, 0.45);
  --ant-color-icon-hover: rgba(0, 0, 0, 0.88);
  --ant-color-error-outline: rgba(255, 38, 5, 0.06);
  --ant-color-warning-outline: rgba(255, 215, 5, 0.1);
  --ant-font-size-icon: 14px;
  --ant-line-width-focus: 3px;
  --ant-control-outline-width: 2px;
  --ant-control-interactive-size: 16px;
  --ant-control-item-bg-hover: rgba(0, 0, 0, 0.04);
  --ant-control-item-bg-active: #f0faff;
  --ant-control-item-bg-active-hover: #def3ff;
  --ant-control-item-bg-active-disabled: rgba(0, 0, 0, 0.15);
  --ant-control-tmp-outline: rgba(0, 0, 0, 0.02);
  --ant-control-outline: rgba(5, 172, 255, 0.06);
  --ant-font-weight-strong: 600;
  --ant-opacity-loading: 0.65;
  --ant-link-decoration: none;
  --ant-link-hover-decoration: none;
  --ant-link-focus-decoration: none;
  --ant-control-padding-horizontal: 12px;
  --ant-control-padding-horizontal-sm: 8px;
  --ant-padding-xxs: 4px;
  --ant-padding-xs: 8px;
  --ant-padding-sm: 12px;
  --ant-padding: 16px;
  --ant-padding-md: 20px;
  --ant-padding-lg: 24px;
  --ant-padding-xl: 32px;
  --ant-padding-content-horizontal-lg: 24px;
  --ant-padding-content-vertical-lg: 16px;
  --ant-padding-content-horizontal: 16px;
  --ant-padding-content-vertical: 12px;
  --ant-padding-content-horizontal-sm: 16px;
  --ant-padding-content-vertical-sm: 8px;
  --ant-margin-xxs: 4px;
  --ant-margin-xs: 8px;
  --ant-margin-sm: 12px;
  --ant-margin: 16px;
  --ant-margin-md: 20px;
  --ant-margin-lg: 24px;
  --ant-margin-xl: 32px;
  --ant-margin-xxl: 48px;
  --ant-box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08),
    0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  --ant-box-shadow-secondary: 0 6px 16px 0 rgba(0, 0, 0, 0.08),
    0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  --ant-box-shadow-tertiary: 0 1px 2px 0 rgba(0, 0, 0, 0.03),
    0 1px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px 0 rgba(0, 0, 0, 0.02);
  --ant-box-shadow-popover-arrow: 2px 2px 5px rgba(0, 0, 0, 0.05);
  --ant-box-shadow-card: 0 1px 2px -2px rgba(0, 0, 0, 0.16),
    0 3px 6px 0 rgba(0, 0, 0, 0.12), 0 5px 12px 4px rgba(0, 0, 0, 0.09);
  --ant-box-shadow-drawer-right: -6px 0 16px 0 rgba(0, 0, 0, 0.08),
    -3px 0 6px -4px rgba(0, 0, 0, 0.12), -9px 0 28px 8px rgba(0, 0, 0, 0.05);
  --ant-box-shadow-drawer-left: 6px 0 16px 0 rgba(0, 0, 0, 0.08),
    3px 0 6px -4px rgba(0, 0, 0, 0.12), 9px 0 28px 8px rgba(0, 0, 0, 0.05);
  --ant-box-shadow-drawer-up: 0 6px 16px 0 rgba(0, 0, 0, 0.08),
    0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  --ant-box-shadow-drawer-down: 0 -6px 16px 0 rgba(0, 0, 0, 0.08),
    0 -3px 6px -4px rgba(0, 0, 0, 0.12), 0 -9px 28px 8px rgba(0, 0, 0, 0.05);
  --ant-box-shadow-tabs-overflow-left: inset 10px 0 8px -8px rgba(0, 0, 0, 0.08);
  --ant-box-shadow-tabs-overflow-right: inset -10px 0 8px -8px
    rgba(0, 0, 0, 0.08);
  --ant-box-shadow-tabs-overflow-top: inset 0 10px 8px -8px rgba(0, 0, 0, 0.08);
  --ant-box-shadow-tabs-overflow-bottom: inset 0 -10px 8px -8px
    rgba(0, 0, 0, 0.08);
}
.anticon {
  display: inline-flex;
  align-items: center;
  color: inherit;
  font-style: normal;
  line-height: 0;
  text-align: center;
  text-transform: none;
  vertical-align: -0.125em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.anticon > * {
  line-height: 1;
}
.anticon svg {
  display: inline-block;
}
.anticon .anticon .anticon-icon {
  display: block;
}
.data-ant-cssinjs-cache-path {
  content: "|ant-design-icons|anticon:eugadl;|Shared|ant:1l0drjh;|Spin-Spin|ant-spin|anticon:1bq9ok6;|Radio-Radio|ant-radio|anticon:lib6kc;|Wave-Wave|ant-wave|anticon:13y5j5m;|Button-Button|ant-btn|anticon:1f4ddw3";
}

/* Force show all elements immediately */
*[data-transition-key] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

body {
  margin: 0;
  padding: 0;
  background-color: #f0f2f5;
  font-family: Arial, sans-serif;
}

.wedding-wrapper {
  background-color: #f0f2f5;
  display: flex;
  padding: 2vh 0;
  justify-content: center;
}

.wedding-card {
  width: 500px;
  margin: 0 auto;
  position: relative;
  border: 1px solid #e0e0e0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  overflow: hidden;
  background: #fff;
}

.wedding-scroll-area {
  background: #fff;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 96vh;
}

#root-page-container {
  background: #ffffff;
  width: 500px;
  position: relative;
}
/* Hide Scrollbar */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  display: none;
}

::-webkit-scrollbar-track {
  display: none;
}

::-webkit-scrollbar-thumb {
  display: none;
}

/* Firefox */
* {
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}

/* Hide scrollbar for all browsers */
body {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

/* Horizontal Timeline Styles - Matching Design */
.wedding-timeline {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 20px auto;
  padding: 0 10px 20px 10px;
}

.timeline-line {
  position: absolute;
  top: 70px;
  left: 20px;
  right: 20px;
  height: 2px;
  background-color: #6f2e2e;
  z-index: 1;
}

.timeline-events {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  align-items: flex-start;
}

.timeline-event {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  max-width: 100px;
}

.timeline-event:nth-child(3) {
  margin-left: 35px;
}

.timeline-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  background: transparent;
}

.timeline-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.timeline-heart {
  position: absolute;
  top: 72px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  color: #6f2e2e;
  font-size: 18px;
  z-index: 4;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.timeline-time {
  font-size: 16px;
  font-weight: 600;
  color: #6f2e2e;
  margin-top: 10px;
  margin-bottom: 5px;
  font-family: "Open Sans", sans-serif;
  text-align: center;
}

.timeline-label {
  font-size: 14px;
  color: #6f2e2e;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
  line-height: 1.3;
}

/* Override background-size for timeline icons - higher specificity */
.jsx-3557960200.material-component
  .jsx-3557960200.photo-bg-wrap[style*="wedding-element-1"],
.jsx-3557960200.material-component
  .jsx-3557960200.photo-bg-wrap[style*="wedding-element-2"],
.jsx-3557960200.material-component
  .jsx-3557960200.photo-bg-wrap[style*="wedding-element-3"],
.jsx-3557960200.material-component
  .jsx-3557960200.photo-bg-wrap[style*="wedding-element-4"] {
  background-size: 30px 30px !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* Override for timeline icon backgrounds - highest specificity */
.jsx-3557960200.material-component
  .jsx-3557960200.photo-bg-wrap.timeline-icon-bg,
div[data-node-id="M7SjNOEh_p"] .jsx-3557960200.photo-bg-wrap,
.jsx-3557960200.photo-bg-wrap.timeline-icon-bg,
.material-component.jsx-3557960200
  .photo-bg-wrap.jsx-3557960200.timeline-icon-bg {
  background-size: 30px 30px !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

/* Force size for parent container if needed */
div[data-node-id="M7SjNOEh_p"] .jsx-3557960200.material-component {
  width: 30px !important;
  height: 30px !important;
}

div[data-node-id="M7SjNOEh_p"] .jsx-3557960200.photo-bg-wrap {
  width: 30px !important;
  height: 30px !important;
}

/* Ensure RSVP form radio buttons are clickable */
.rsvp-form .ant-radio-wrapper {
  pointer-events: auto !important;
  cursor: pointer !important;
  position: relative !important;
  z-index: 1000 !important;
}

.rsvp-form .ant-radio-input {
  pointer-events: auto !important;
  cursor: pointer !important;
  z-index: 1001 !important;
  position: relative !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.rsvp-form .ant-radio-group {
  pointer-events: auto !important;
  position: relative !important;
  z-index: 1000 !important;
}

.rsvp-form-container {
  pointer-events: auto !important;
}

.rsvp-form-container * {
  pointer-events: auto !important;
}

/* Remove any overlay that might block clicks */
.rsvp-form .ant-radio-wrapper::before,
.rsvp-form .ant-radio-wrapper::after {
  pointer-events: none !important;
}

.rsvp-form .ant-radio {
  pointer-events: auto !important;
}

.rsvp-form .ant-radio-inner {
  pointer-events: none !important;
}

/* Ensure checked state is visible */
.rsvp-form .ant-radio-input:checked + .ant-radio-inner {
  border-color: #6f2e2e !important;
  background-color: #6f2e2e !important;
}

.rsvp-form .ant-radio-input:checked + .ant-radio-inner::after {
  background-color: #ffffff !important;
  transform: scale(1) !important;
  opacity: 1 !important;
}

.rsvp-form .ant-radio-wrapper:hover .ant-radio-inner {
  border-color: #6f2e2e !important;
}

.rsvp-form .ant-radio-wrapper-checked .ant-radio-inner {
  border-color: #6f2e2e !important;
  background-color: #6f2e2e !important;
}

/* Fix duplicate radio buttons - ensure clean structure */
.rsvp-form .ant-radio-group {
  display: block !important;
}

.rsvp-form .ant-radio-group > div {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.rsvp-form .ant-radio-wrapper {
  display: flex !important;
  align-items: center !important;
  position: relative !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Hide any duplicate radio inputs that are not inside .ant-radio span */
.rsvp-form .ant-radio-wrapper > input[type="radio"] {
  display: none !important;
}

/* Only show radio inputs inside .ant-radio span */
.rsvp-form .ant-radio-wrapper .ant-radio {
  display: inline-flex !important;
  align-items: center !important;
  margin-right: 8px !important;
  position: relative !important;
}

.rsvp-form .ant-radio-wrapper .ant-radio-input {
  position: absolute !important;
  opacity: 0 !important;
  width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
  cursor: pointer !important;
  z-index: 1 !important;
}

.rsvp-form .ant-radio-wrapper .ant-radio-inner {
  display: inline-block !important;
  width: 16px !important;
  height: 16px !important;
  border: 2px solid #d9d9d9 !important;
  border-radius: 50% !important;
  background-color: #fff !important;
  position: relative !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}

.rsvp-form .ant-radio-wrapper .ant-radio-input:checked + .ant-radio-inner {
  border-color: #6f2e2e !important;
  background-color: #6f2e2e !important;
}

.rsvp-form
  .ant-radio-wrapper
  .ant-radio-input:checked
  + .ant-radio-inner::after {
  content: "" !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background-color: #fff !important;
  display: block !important;
}

.rsvp-form .ant-radio-label {
  display: inline-block !important;
  margin-left: 0 !important;
  cursor: pointer !important;
  flex: 1 !important;
}

/* Hide any orphaned radio buttons */
.rsvp-form input[type="radio"][name="attendance"]:not(.ant-radio-input) {
  display: none !important;
}

/* Gift Payment Wrapper - Vertical Layout */
.gift-payment-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

/* Gift Title Box - Top */
.gift-title-box {
  background: linear-gradient(135deg, #6f2e2e 0%, #8b3a3a 100%);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 4px 16px rgba(111, 46, 46, 0.25);
  position: relative;
  overflow: hidden;
  border: 2px solid #6f2e2e;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.gift-title-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(111, 46, 46, 0.35);
}

.gift-title-box::before {
  content: "🎁";
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 36px;
  opacity: 0.2;
  z-index: 0;
}

.gift-box-title {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  font-family: "Arial", "Open Sans", sans-serif;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1.4;
  margin: 0;
}

/* Payment Info Box - Bottom: QR Left + Bank Right in One Box */
.payment-info-box {
  display: flex;
  gap: 20px;
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border: 2px solid #6f2e2e;
  box-shadow: 0 4px 16px rgba(111, 46, 46, 0.15);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.payment-info-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(111, 46, 46, 0.25);
}

.payment-info-box::before {
  content: "💳";
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 36px;
  opacity: 0.1;
  z-index: 0;
}

/* QR Code Section - Left */
.payment-qr-section {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  z-index: 1;
  min-width: 140px;
}

.qr-code-wrapper {
  width: 120px;
  height: 120px;
  background: #ffffff;
  border: 2px solid #6f2e2e;
  border-radius: 12px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
  box-sizing: border-box;
}

.qr-code-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.qr-code-wrapper > div {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6f2e2e;
  font-size: 20px;
  font-weight: bold;
  font-family: "Open Sans", "Montserrat", sans-serif;
}

.qr-label {
  color: #6f2e2e;
  font-size: 13px;
  font-weight: 600;
  font-family: "Montserrat", "Open Sans", sans-serif;
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Bank Account Section - Right */
.payment-bank-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.bank-account-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
  width: 100%;
  align-items: flex-start;
}

.bank-name {
  color: #6f2e2e;
  font-size: 16px;
  font-weight: 600;
  font-family: "Montserrat", "Open Sans", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.9;
  margin: 0;
  text-align: left;
}

.bank-account-number {
  color: #6f2e2e;
  font-size: 18px;
  font-weight: 700;
  font-family: "Open Sans", "Montserrat", monospace;
  letter-spacing: 2px;
  padding: 12px 16px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(111, 46, 46, 0.08) 0%,
    rgba(139, 58, 58, 0.08) 100%
  );
  border: 1px solid rgba(111, 46, 46, 0.2);
  width: 100%;
  text-align: left;
  box-sizing: border-box;
  word-break: break-all;
  margin: 0;
}

.bank-copy-hint {
  color: #999999;
  font-size: 12px;
  font-family: "Open Sans", sans-serif;
  font-style: italic;
  text-align: left;
  opacity: 0.8;
  margin: 0;
}

/* Vertical Line Separator between Nhà trai and Nhà gái */
div[data-node-id="3SOs1jfJoO"] {
  background-color: #6f2e2e !important;
  opacity: 1 !important;
}

div[data-node-id="3SOs1jfJoO"] .jsx-3557960200 {
  background-color: #6f2e2e !important;
  opacity: 1 !important;
}

div[data-node-id="3SOs1jfJoO"] .material-component {
  width: 100% !important;
  height: 100% !important;
  background-color: #6f2e2e !important;
  opacity: 1 !important;
}

/* Bride Name Section - Bottom */
div[data-node-id="9A74CJDSxe"] div[disabled],
div[data-node-id="CQJaaLS_kL"] div[disabled] {
  font-family: "Signora", "Great Vibes", "Scarlet Bradley", cursive !important;
}

/* Mobile Responsive - Element by Element Approach */

/* Ensure confirmation text is visible */
div[data-node-id="eoT8WFHEXl"] {
  visibility: visible !important;
  display: block !important;
  opacity: 1 !important;
}

div[data-node-id="eoT8WFHEXl"] * {
  visibility: visible !important;
  opacity: 1 !important;
}
