/* BASIC css start */
:root {
  --color-primary: #E60120;
  --color-primary-light: #f5d1d6;
  --color-text: #000000;
  --color-gray: #dddddd;
}

.r_menu li a p { color: white; !important}


/* Container */
.container {
  width: 100%;
  padding: 100px 0;
  background: #252525;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px;
}

.inner-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 60px;
}

/* Header Section */
.header-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 26px;
}

.badge {
  padding: 8px 16px;
  overflow: hidden;
  border-radius: 30px;
  outline: 2px #C8EFB9 solid;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.badge-text {
  text-align: right;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #C8EFB9;
  font-size: 22px;
  font-weight: 700;
  word-wrap: break-word;
}

.icon {
  width: 82px;
  height: 82px;
}

.main-title {
  align-self: stretch;
  text-align: center;
  color: white;
  font-size: 58px;
  font-weight: 900;
  line-height: 72px;
  word-wrap: break-word;
}

.main-description {
  align-self: stretch;
  text-align: center;
  color: white;
  font-size: 26px;
  font-weight: 500;
  line-height: 39px;
  word-wrap: break-word;
}

/* Chat Section */
.chat-section {
}

.chat-wrapper {

}

.chat-container {

}

.chat-messages {
    width: 960px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.message-row {
    display: flex;
    justify-content: flex-start;
    gap: 20px;
    align-items: center;
}

.avatar {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 9999px;
}

.message-bubble {
    padding: 14px 50px;
    background: #ffffff;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
    border-radius: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: flex-end;
    gap: 10px;
}

.message-text {
  text-align: center;
  color: black;
  font-size: 24px;
  font-weight: 500;
  line-height: 33px;
  word-wrap: break-word;
}

.reply-bubble {
  padding: 14px 50px;
  background: #C8EFB9;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
  border-radius: 30px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* Pricing Section */
.pricing-section {
  padding: 64px 200px;
  background: white;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 50px;
  margin-top: 30px;
}

.pricing-header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.pricing-title {
  align-self: stretch;
  text-align: center;
  color: black;
  font-size: 36px;
  font-weight: 900;
  line-height: 40px;
  word-wrap: break-word;
}

.pricing-subtitle {
  text-align: center;
  color: black;
  font-size: 18px;
  font-weight: 900;
  line-height: 39px;
  word-wrap: break-word;
}

.pricing-cards {
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}

.card-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 19px;
}

.pricing-card {
  width: 300px;
  border-radius: 26px;
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.card-header {
  align-self: stretch;
  height: 120px;
  background: #C8EFB9;
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-label {
  text-align: center;
  color: black;
  font-size: 26px;
  font-weight: 600;
  line-height: 39px;
  word-wrap: break-word;
}

.card-amount-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.amount-icon {
  width: 26px;
  height: 26px;
}

.card-amount {
  text-align: center;
  color: black;
  font-size: 30px;
  font-weight: 900;
  line-height: 45px;
  word-wrap: break-word;
}

.card-bonus {
  align-self: stretch;
  height: 80px;
  background: #FFDE55;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.bonus-text {
  text-align: center;
  color: black;
  font-size: 26px;
  font-weight: 800;
  line-height: 39px;
  word-wrap: break-word;
}

.card-footer {
  align-self: stretch;
  height: 120px;
  background: #222222;
  border-bottom-right-radius: 26px;
  border-bottom-left-radius: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-label {
  text-align: center;
  color: white;
  font-size: 26px;
  font-weight: 600;
  line-height: 39px;
  word-wrap: break-word;
}

.footer-amount-wrapper {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}

.footer-amount {
  text-align: center;
  color: white;
  font-size: 30px;
  font-weight: 900;
  line-height: 45px;
  word-wrap: break-word;
}

/* Info Section */
.info-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.notice-section {
  align-self: stretch;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.notice-section-add {
  align-self: stretch;
  padding: 60px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}

.notice-text {
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  line-height: 45px;
  word-wrap: break-word;
  color: white;
}

.notice-text .highlight {
  color: #FFDE55;
}

.notice-text-add {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  word-wrap: break-word;
  color: white;
}

.notice-text-add .highlight {
  color: #FFDE55;
}


.payment-info-section {
  align-self: stretch;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.divider {
  width: 800px;
  height: 0px;
  outline: 1px white solid;
  outline-offset: -0.50px;
}

.payment-details {
  align-self: stretch;
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
}

.payment-header {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.payment-badge {
  padding: 3px 40px;
  background: #FFDE55;
  border-radius: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.payment-badge-text {
  text-align: center;
  color: black;
  font-size: 28px;
  font-weight: 700;
  line-height: 48px;
  word-wrap: break-word;
}

.info-block {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

.info-title {
  text-align: center;
  color: #FFDE55;
  font-size: 26px;
  font-weight: 900;
  word-wrap: break-word;
}

.info-content {
  text-align: center;
  color: white;
  font-size: 26px;
  font-weight: 500;
  line-height: 45px;
  word-wrap: break-word;
}

.caution-section {
  padding: 30px 0 10px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.caution-title {
  align-self: stretch;
  color: white;
  font-size: 34px;
  font-weight: 800;
  line-height: 51px;
  word-wrap: break-word;
}

.caution-text {
  align-self: stretch;
  color: white;
  font-size: 24px;
  font-weight: 500;
  line-height: 42px;
  word-wrap: break-word;
}




@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes downUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

.animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

.animate.active {
    opacity: 1;
    transform: translateY(0);
}


.animate1 {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease-out;
}

.animate1.active {
    opacity: 1;
    transform: translateY(0);
}
/* BASIC css end */

