@charset "UTF-8";
.fertility-calculator-section {
  margin-top: 100px;
}

/* General Accordion Styling */
.accordion-item {
  margin-bottom: 8px;
  border-radius: var(--radius-2xl, 24px);
  background: var(--uiBg-screen-00, #fff);
  -webkit-box-shadow: 0px 87px 24px 0px rgba(117, 75, 16, 0), 0px 56px 22px 0px rgba(117, 75, 16, 0), 0px 31px 19px 0px rgba(117, 75, 16, 0.01), 0px 14px 14px 0px rgba(117, 75, 16, 0.02), 0px 3px 8px 0px rgba(117, 75, 16, 0.02);
          box-shadow: 0px 87px 24px 0px rgba(117, 75, 16, 0), 0px 56px 22px 0px rgba(117, 75, 16, 0), 0px 31px 19px 0px rgba(117, 75, 16, 0.01), 0px 14px 14px 0px rgba(117, 75, 16, 0.02), 0px 3px 8px 0px rgba(117, 75, 16, 0.02);
}

.accordion-item:last-child {
  border-bottom: none;
}

/* Trigger (Button) Styling */
.accordion-trigger {
  width: 100%;
  margin: 0;
  border-radius: 24px;
  background-color: #fff;
  text-align: left;
  padding: 20px;
  border: none;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--uiInk-tone-04, #334155);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  position: relative;
  text-shadow: none !important;
}
.accordion-trigger p {
  width: 90%;
}
.accordion-trigger span {
  width: 24px;
  color: #bb8401;
  font-size: 14px;
  height: 24px;
  text-align: center;
  border-radius: var(--rounded-lg, 8px);
  border: var(--border-width-0, 1px) solid var(--uiStroke-warning-01, #ca8a04);
  background: var(--uiBg-brand-yellow-00, #fdfbf6);
  display: -webkit-inline-box;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: 10px;
}
.accordion-trigger::after {
  content: "";
  width: 30px;
  height: 30px;
  background: url("../images/icons/arrow_down.svg") no-repeat;
  background-size: cover;
  position: absolute;
  right: 20px;
  top: 30%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.accordion-trigger[aria-expanded=true]::after {
  rotate: 180deg;
}

.accordion-trigger:hover {
  background-color: #fff9f2;
}

/* Content Styling */
.accordion-content {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fdfdfd;
  color: #64748b;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  border-radius: 0 0 16px 16px;
}
.accordion-content_wrapper {
  border-top: 1px dashed #e2e8f0;
  padding: 20px;
  gap: 24px;
  color: var(--uiInk-tone-03, #64748b);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.accordion-content.open {
  max-height: 200px;
  padding: 16px;
}

/* Utility classes */
.accordion-content p {
  margin: 0;
}

.calculator_table {
  border-radius: var(--radius-3xl, 24px);
  background: var(--uiBg-brand-orange-01, #ffe8cc);
}
.calculator_table .fertile {
  font-family: "Onest", serif !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #334155 !important;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.calculator_table .fertile .period-indicator {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #94a3b8;
}
.calculator_table h2 a {
  color: var(--uiInk-tone-04, #334155);
  font-family: "Onest", serif !important;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
}
.calculator_table p {
  color: var(--uiInk-tone-03, #64748b) !important;
  font-family: "Onest", serif !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.calculator_table .ui-datepicker-title {
  color: var(--uiInk-brand-orange-02, #985300) !important;
  text-align: center;
  font-family: "Onest", serif !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}
.calculator_table #ovulationCalculatorForm,
.calculator_table .calendar-area {
  background: transparent;
}
.calculator_table #calendar {
  background: #fff4d9;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 12px;
}
.calculator_table #calendar .ui-datepicker-calendar span {
  color: var(--uiInk-tone-04, #334155);
  text-align: center;
  /* footnote/medium */
  font-family: "Onest", serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
}
.calculator_table #calendar td.fertileDay-4 a.ui-state-default::after,
.calculator_table #calendar td.fertileDay-10 a.ui-state-default::after {
  color: #ed8910 !important;
}

.ll-skin-melon .ui-widget {
  background: transparent !important;
}

.ll-skin-melon td .ui-state-default {
  border: 2px solid #fff4d9 !important;
  border-radius: 8px;
  background: #fdfbf6 !important;
  padding: 10px 10px !important;
  color: var(--uiInk-tone-04, #334155) !important;
  text-align: center;
  font-family: "Onest", serif !important;
  font-size: 14px;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 20px !important; /* 142.857% */
}

.ui-state-default.ui-state-highlight.ui-state-active,
.ui-datepicker-current-day .ui-state-default.ui-state-active,
.ll-skin-melon td .ui-state-hover,
td.periodDay a.ui-state-default,
td.periodDay span.ui-state-default,
.period-indicator {
  background: #ed8910 !important;
  color: #fff !important;
}

.ll-skin-melon .ui-state-disabled .ui-state-default {
  opacity: 0.5;
}

td.fertileDay a.ui-state-default,
td.fertileDay span.ui-state-default {
  color: var(--uiInk-tone-04, #334155) !important;
}

td.fertileDay a.ui-state-default:hover,
td.fertileDay span.ui-state-default:hover {
  color: #fff !important;
}

td.fertileDay a.ui-state-default::after {
  color: #ed8910 !important;
}
td.fertileDay a.ui-state-default::after:hover {
  color: #fff !important;
}

td.fertileDay a.ui-state-default:hover::after {
  color: #fff !important;
}

td.fertileDay-4 a.ui-state-default::after,
td.fertileDay-10 a.ui-state-default::after {
  color: #ed8910 !important;
}
td.fertileDay-4 a.ui-state-default::after:hover,
td.fertileDay-10 a.ui-state-default::after:hover {
  color: #fff !important;
}

.expected-ovulation,
.fertileTick {
  fill: #1a9f1f !important;
}

td.fertileDay-4 a.ui-state-default::after,
td.fertileDay-10 a.ui-state-default::after {
  color: #ed8910 !important;
}

.ll-skin-melon .ui-datepicker .ui-datepicker-next span,
.ll-skin-melon .ui-datepicker .ui-datepicker-prev span {
  width: 13px;
  height: 13px;
}

.calculator_table input[type=email],
.calculator_table input[type=text],
.calculator_table select {
  padding: 10px var(--spacing-4, 16px);
  border-radius: var(--radius-xl, 12px);
  border: 1px solid var(--uiStroke-tone-02, #cbd5e1);
  background: var(--uiBg-screen-00, #fff);
  color: var(--uiInk-tone-02, #cbd5e1);
  text-overflow: ellipsis;
  /* body/normal */
  font-family: "Onest", serif !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
}

.calculator_table .icon-calendar2 {
  font-size: 20px;
  line-height: 50px;
}

.icon-calendar2:before {
  color: #334155;
}

#ovulationCalculatorForm {
  margin-bottom: 0px !important;
}

.calculateagain,
.calculator_table .submit-btn {
  padding: 0;
  text-align: left;
}

@media screen and (max-width: 620px) {
  .calculateagainbtn {
    right: 0;
    margin-top: 20px;
  }
}

.calculator_table .submit-btn input[type=submit] {
  border-radius: var(--radius-xl, 12px);
  padding: 10px 50px 10px 16px;
  background: url(../images/icons/right-arrow.svg) no-repeat right 10px center #ed8910 !important;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
  font-family: "Onest", serif !important;
}
.calculator_table .submit-btn input[type=submit]:hover {
  opacity: 1;
}

.calculator_table .submit-btn input[disabled][type=submit] {
  opacity: 0.5;
}

/* ───────── Action-bar (legend + tombol) ───────── */
.oc-action {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
     -moz-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
     -moz-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 24px;
}

.date-legends {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

.legend-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font: 16px/22px "Onest", sans-serif;
  color: #344157;
}
.legend-item .legend-box {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  margin-right: 8px;
}

.legend-item.next-cycle .legend-box {
  background: #ffffff;
  border: 1px solid #a6a6a6;
}

.legend-item.fertile-period .legend-box {
  background: #fbdc6f;
}

.legend-item.ovulation .legend-box {
  background: #ed8910;
}

/* ───────── Kotak Konsultasi ───────── */
.consult-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 20px 24px 40px;
  border-radius: 16px;
  background: #fdfbf6;
}
.consult-box img {
  width: 105px;
}
@media screen and (max-width: 620px) {
  .consult-box {
    -webkit-box-align: start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.consult-icon {
  width: 104px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.consult-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
     -moz-box-orient: vertical;
     -moz-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-box-flex: 1;
     -moz-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.consult-content .apointment-calculator {
  font-family: "Onest", sans-serif !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  max-width: 140px;
}

.consult-content p {
  margin: 0;
  font-family: "Onest", sans-serif !important;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  color: #985300 !important;
}