@charset "UTF-8";

.rp-app-root {
  width: 100%;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.rp-shell {
  --rp-primary: #1699eb;
  --rp-primary-2: #0d88da;
  --rp-gray-bg: #e5e5e7;
  --rp-card-bg: #f5f5f6;
  --rp-border: #d4d8de;
  --rp-text: #333845;
  --rp-muted: #6f7784;
  --rp-danger: #b24c4c;
  position: relative;
  background: var(--rp-gray-bg);
  color: var(--rp-text);
  border: 1px solid var(--rp-border);
  overflow: hidden;
  min-height: 640px;
}

.rp-shell-content {
  transition: filter 0.35s ease, transform 0.35s ease;
}

.rp-modal-open .rp-shell-content {
  filter: blur(12px);
  transform: scale(0.99);
  pointer-events: none;
  user-select: none;
}

.rp-stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #d9dde3;
  background: #f0f2f4;
}

.rp-step {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #1d96e8;
  background: #f1f2f4;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%, 14px 50%);
  margin-right: -10px;
}

.rp-step.is-active {
  color: #fff;
  background: linear-gradient(90deg, var(--rp-primary), var(--rp-primary-2));
  z-index: 2;
}

.rp-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 30px 8px;
}

.rp-clock {
  font-size: 16px;
  color: #3f4755;
}

.rp-clock strong {
  font-weight: 800;
}

.rp-error {
  margin: 6px 30px 0;
  background: #ffe7e7;
  border: 1px solid #f2b6b6;
  color: #9c2c2c;
  border-radius: 10px;
  padding: 10px 14px;
}

.rp-loading-line {
  margin: 8px 30px;
  color: #576273;
}

.rp-stage {
  padding: 8px 24px 24px;
}

.rp-stage h2 {
  margin: 6px 0 20px;
  font-size: 18px;
  font-weight: 700;
}

.rp-level-grid,
.rp-teacher-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.rp-level-card,
.rp-teacher-card,
.rp-entry-card,
.rp-success-box,
.rp-calendar,
.rp-side-card,
.rp-slot-panel,
.rp-confirm-box {
  background: var(--rp-card-bg);
  border: 1px solid var(--rp-border);
  border-radius: 10px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.rp-level-card,
.rp-teacher-card {
  padding: 20px 20px 18px;
  min-height: 264px;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.rp-level-card:hover,
.rp-teacher-card:hover {
  transform: translateY(-4px);
  border-color: #9fcff0;
  box-shadow: 0 12px 24px rgba(24, 89, 143, 0.12);
}

.rp-level-top,
.rp-teacher-head {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 14px;
}

.rp-level-media,
.rp-level-badge,
.rp-teacher-avatar,
.rp-side-image,
.rp-confirm-avatar {
  width: 92px;
  height: 92px;
  border-radius: 0;
  object-fit: cover;
}

.rp-level-badge {
  display: grid;
  place-items: center;
  font-size: 46px;
  font-weight: 800;
  color: #fff;
}

.rp-level-badge.a1 {
  background: #30c49f;
}
.rp-level-badge.a2 {
  background: #ff6487;
}
.rp-level-badge.b1 {
  background: #1d96e8;
}
.rp-level-badge.b2 {
  background: #f89450;
}
.rp-level-badge.c1 {
  background: #a25cf6;
}
.rp-level-badge.custom {
  background: #08b6bc;
}

.rp-level-card h3,
.rp-teacher-card h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
}

.rp-level-desc {
  margin: 0 0 14px;
  color: var(--rp-muted);
  font-size: 14px;
  line-height: 1.45;
  flex: 1;
}

.rp-btn {
  border: 0;
  border-radius: 7px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 16px;
  padding: 13px 18px;
  transition: transform 0.18s ease, box-shadow 0.25s ease, filter 0.2s ease, opacity 0.2s ease;
}

.rp-btn:hover {
  transform: translateY(-1px);
}

.rp-btn:active {
  transform: translateY(0);
}

.rp-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.rp-btn-primary {
  color: #fff;
  background: linear-gradient(90deg, var(--rp-primary), var(--rp-primary-2));
  box-shadow: 0 10px 16px rgba(12, 127, 212, 0.2);
}

.rp-btn-secondary {
  color: #fff;
  background: #5677a1;
}

.rp-btn-danger {
  color: #fff;
  background: var(--rp-danger);
}

.rp-btn-ghost {
  color: #1b88d6;
  border: 1px solid #a8d0eb;
  background: #e8f4fd;
}

.rp-btn-full {
  width: 100%;
}

.rp-btn-lg {
  width: 100%;
  margin-top: 10px;
}

.rp-btn-xl {
  width: 100%;
  margin-bottom: 14px;
}

.rp-btn-link {
  border: 0;
  background: transparent;
  color: #148fdf;
  font-weight: 600;
  font-family: inherit;
  font-size: 15px;
  cursor: pointer;
  padding: 0;
}

.rp-back-link {
  margin-bottom: 12px;
}

.rp-entry-wrap {
  padding: 34px 26px 34px;
}

.rp-entry-card {
  --rp-welcome-title-font: "Plus Jakarta Sans", sans-serif;
  --rp-welcome-body-font: "Plus Jakarta Sans", sans-serif;
  --rp-welcome-button-font: "Plus Jakarta Sans", sans-serif;
  max-width: 760px;
  margin: 0 auto;
  padding: 26px 24px 24px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #d9e2ec;
  background:
    radial-gradient(1200px 320px at -12% -35%, rgba(22, 153, 235, 0.16), transparent 50%),
    radial-gradient(520px 240px at 108% -25%, rgba(73, 185, 236, 0.16), transparent 58%),
    linear-gradient(180deg, #f9fcff 0%, #f5f7fa 100%);
  box-shadow:
    0 20px 44px rgba(16, 69, 117, 0.12),
    0 2px 8px rgba(14, 41, 69, 0.06);
  font-family: var(--rp-welcome-body-font);
}

.rp-entry-card::before,
.rp-entry-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.rp-entry-card::before {
  width: 340px;
  height: 340px;
  top: -210px;
  right: -120px;
  background: radial-gradient(circle, rgba(29, 150, 232, 0.18) 0%, rgba(29, 150, 232, 0) 68%);
}

.rp-entry-card::after {
  width: 260px;
  height: 260px;
  bottom: -180px;
  left: -100px;
  background: radial-gradient(circle, rgba(50, 196, 159, 0.16) 0%, rgba(50, 196, 159, 0) 72%);
}

.rp-entry-card > * {
  position: relative;
  z-index: 1;
}

.rp-entry-card .rp-btn {
  font-family: var(--rp-welcome-button-font);
}

.rp-welcome-head {
  text-align: center;
  margin-bottom: 20px;
}

.rp-welcome-kicker-content,
.rp-welcome-title-content,
.rp-welcome-subtitle-content {
  margin: 0;
}

.rp-welcome-kicker-content * {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #167dc0;
  text-transform: uppercase;
  font-family: var(--rp-welcome-body-font);
}

.rp-welcome-title-content * {
  margin: 0 0 8px;
  font-size: 33px;
  line-height: 1.08;
  color: #223146;
  font-family: var(--rp-welcome-title-font);
  text-wrap: balance;
}

.rp-welcome-subtitle-content * {
  margin: 0;
  font-size: 15px;
  color: #5b6878;
  line-height: 1.45;
  font-family: var(--rp-welcome-body-font);
}

.rp-welcome-avatars-wrap {
  margin-top: 18px;
}

.rp-welcome-carousel {
  position: relative;
  width: min(620px, 100%);
  min-height: 112px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 999px;
  background:
    radial-gradient(360px 130px at 50% -60%, rgba(22, 153, 235, 0.26), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 248, 255, 0.92));
  border: 1px solid rgba(164, 199, 228, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 16px 34px rgba(30, 98, 150, 0.13);
}

.rp-welcome-carousel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(244, 248, 253, 0.96) 0%, rgba(244, 248, 253, 0) 14%),
    linear-gradient(270deg, rgba(244, 248, 253, 0.96) 0%, rgba(244, 248, 253, 0) 14%);
}

.rp-welcome-carousel::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -30%;
  width: 32%;
  height: 180%;
  transform: rotate(18deg);
  z-index: 3;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.32) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: rp-carousel-sheen 4.6s ease-in-out infinite;
  pointer-events: none;
}

.rp-welcome-track {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 14px;
  will-change: transform;
}

.rp-welcome-track.is-sliding {
  transition: transform 760ms cubic-bezier(0.23, 0.65, 0.27, 1);
}

.rp-welcome-slide-set {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
}

.rp-welcome-slide-item {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  flex: 0 0 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateZ(0);
}

.rp-welcome-carousel.is-static .rp-welcome-track {
  justify-content: center;
}

.rp-welcome-avatar {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid #ffffff;
  box-shadow:
    0 14px 24px rgba(23, 85, 136, 0.25),
    0 3px 10px rgba(23, 85, 136, 0.2);
  background: #dfe8f1;
  position: relative;
  z-index: 2;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.rp-welcome-slide-item:hover .rp-welcome-avatar {
  transform: translateY(-2px) scale(1.04);
  filter: saturate(1.08);
}

.rp-welcome-avatar-placeholder {
  display: grid;
  place-items: center;
  color: #2f4f72;
  font-weight: 700;
  font-size: 13px;
  background: linear-gradient(180deg, #e8f4fd, #cfdeea);
}

.rp-welcome-proof {
  margin-top: 10px;
  color: #4f637b;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.rp-welcome-proof strong {
  color: #204f78;
}

.rp-welcome-proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c16d;
  box-shadow: 0 0 0 6px rgba(34, 193, 109, 0.16);
}

.rp-manage-box h4,
.rp-manage-result h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.rp-manage-box h4 {
  color: #2a4766;
  font-size: 16px;
  letter-spacing: 0.01em;
}

.rp-manage-box {
  border: 1px solid #d9e2ec;
  border-radius: 12px;
  padding: 14px 14px 12px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(6px);
}

.rp-manage-box input {
  width: 100%;
  border: 1px solid #c5d4e2;
  border-radius: 8px;
  padding: 11px 12px;
  margin-bottom: 10px;
  font-size: 15px;
  background: #fdfefe;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rp-manage-box input:focus {
  outline: none;
  border-color: #67b7eb;
  box-shadow: 0 0 0 3px rgba(22, 153, 235, 0.16);
}

.rp-entry-card .rp-btn-primary.rp-btn-xl {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding-top: 14px;
  padding-bottom: 14px;
  box-shadow: 0 12px 24px rgba(11, 109, 182, 0.3);
}

.rp-entry-card .rp-btn-primary.rp-btn-xl::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -130%;
  width: 56%;
  height: 200%;
  transform: rotate(25deg);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.28) 46%,
    rgba(255, 255, 255, 0) 100%
  );
  animation: rp-btn-sheen 3s ease-in-out infinite;
  pointer-events: none;
}

.rp-manage-box .rp-btn-secondary {
  width: 100%;
  border-radius: 9px;
  box-shadow: 0 7px 16px rgba(31, 63, 98, 0.2);
}

.rp-manage-result {
  margin-top: 14px;
  border-top: 1px solid #dde3ea;
  padding-top: 14px;
}

.rp-manage-result p {
  margin: 6px 0;
}

.rp-manage-result ul {
  margin-top: 8px;
}

.rp-inline-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.rp-calendar {
  padding: 16px;
}

.rp-calendar-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.rp-calendar-head strong {
  font-size: 30px;
  text-transform: capitalize;
}

.rp-weekdays,
.rp-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 7px;
}

.rp-weekdays span {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #4d5563;
}

.rp-day {
  border: 1px solid #d7dde4;
  background: #f0f3f7;
  color: #a1a8b4;
  border-radius: 8px;
  min-height: 44px;
  position: relative;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
}

.rp-day:disabled {
  cursor: not-allowed;
}

.rp-day.is-available {
  background: #edf7ff;
  color: #3d536f;
}

.rp-day.is-active {
  background: #bbddf8;
  color: #1f3859;
}

.rp-day.has-picked {
  border-color: #80bce7;
}

.rp-day-empty {
  visibility: hidden;
}

.rp-picked-count {
  position: absolute;
  top: 2px;
  right: 5px;
  font-style: normal;
  font-size: 10px;
  background: #1a92e3;
  color: #fff;
  border-radius: 99px;
  min-width: 16px;
  line-height: 16px;
}

.rp-time-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 16px;
  margin-top: 16px;
}

.rp-side-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rp-side-card {
  padding: 12px;
}

.rp-side-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  align-items: center;
}

.rp-side-row h4 {
  margin: 0;
  font-size: 18px;
}

.rp-slot-panel {
  padding: 16px;
}

.rp-slot-panel h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.rp-slot-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rp-slot-btn {
  border: 0;
  border-radius: 6px;
  padding: 10px 20px;
  background: #c7e3fa;
  color: #2f4e73;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.rp-slot-btn:hover {
  transform: translateY(-1px);
}

.rp-slot-btn.is-active {
  background: linear-gradient(90deg, #0f93e6, #0a82d4);
  color: #fff;
}

.rp-legend {
  margin: 12px 0;
  color: #6a7380;
  font-size: 14px;
}

.rp-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #bbddf9;
  margin-right: 5px;
}

.rp-chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rp-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e9f4fe;
  color: #205077;
  border: 1px solid #bfdcf4;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 13px;
}

.rp-chip button {
  border: 0;
  background: transparent;
  color: #29628d;
  cursor: pointer;
  font-size: 15px;
  line-height: 1;
  padding: 0;
}

.rp-form-actions {
  margin-top: 16px;
}

.rp-student-panel {
  background: #f3f3f4;
  border: 1px solid #d1d7de;
  border-radius: 8px;
  padding: 18px 20px 20px;
}

.rp-student-panel-title {
  margin: 0 0 18px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #2f3846;
}

.rp-student-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 170px;
  gap: 20px;
  align-items: start;
}

.rp-student-left {
  padding-right: 10px;
}

.rp-field-label {
  display: block;
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
  color: #2e3747;
}

.rp-field-label span {
  color: #f05858;
  margin-left: 2px;
}

.rp-field-input {
  width: 100%;
  border: 1px solid #c4ced9;
  background: #f5f5f6;
  border-radius: 4px;
  padding: 10px 12px;
  font-family: inherit;
  font-size: 14px;
  margin: 0 0 12px;
  color: #303948;
}

.rp-field-input::placeholder {
  color: #9aa4b1;
}

.rp-phone-combo {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 8px;
}

.rp-phone-prefix {
  border: 1px solid #c4ced9;
  background: #f5f5f6;
  border-radius: 4px;
  padding: 10px 8px;
  font-family: inherit;
  font-size: 14px;
  color: #2e3747;
  margin-bottom: 12px;
}

.rp-conditions-box {
  margin-top: 4px;
  padding: 10px 12px;
  border: 1px solid #ccd8e4;
  border-radius: 6px;
  background: #eef4fa;
}

.rp-conditions-box h4 {
  margin: 0 0 8px;
  font-size: 14px;
  color: #2f3a4a;
}

.rp-condition-item {
  display: block;
  margin: 0;
  color: #344255;
}

.rp-condition-checkline {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
}

.rp-condition-item input {
  margin-right: 0;
  margin-top: 2px;
  flex-shrink: 0;
}

.rp-condition-item span {
  font-size: 13px;
  line-height: 1.4;
}

.rp-condition-row {
  margin: 10px 0;
}

.rp-condition-details {
  margin: 6px 0 0 24px;
}

.rp-condition-details summary {
  cursor: pointer;
  color: #0e8fde;
  font-size: 12px;
  text-decoration: underline;
  outline: none;
}

.rp-condition-details[open] summary {
  color: #0a74b6;
}

.rp-condition-description {
  margin-top: 6px;
  padding: 8px 10px;
  border: 1px solid #d5deea;
  border-radius: 6px;
  background: #f6f9fc;
  color: #415066;
  font-size: 12px;
  line-height: 1.45;
  text-align: left;
}

.rp-condition-description p {
  margin: 0 0 8px;
}

.rp-condition-description p:last-child {
  margin-bottom: 0;
}

.rp-condition-description ul,
.rp-condition-description ol {
  margin: 6px 0 6px 18px;
}

.rp-student-right {
  border-left: 1px solid #d4dbe3;
  padding-left: 18px;
}

.rp-student-level-row {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.rp-student-level-media {
  width: 78px;
  height: 78px;
  object-fit: cover;
}

.rp-student-level-info h4 {
  margin: 0;
  font-size: 18px;
  line-height: 1.08;
}

.rp-student-summary-meta p {
  margin: 7px 0;
  font-size: 14px;
  color: #374252;
}

.rp-student-summary-meta p strong {
  font-weight: 700;
}

.rp-student-block-list {
  margin: 2px 0 0 20px;
  padding: 0;
}

.rp-student-block-list li {
  margin: 3px 0;
  font-size: 14px;
  color: #374252;
}

.rp-student-photo-wrap {
  display: flex;
  justify-content: center;
}

.rp-student-teacher-photo {
  width: 150px;
  height: 210px;
  object-fit: cover;
  border: 1px solid #d0d6dd;
  border-radius: 0;
  background: #f4f4f4;
}

.rp-student-reschedule-note {
  margin: 0;
  font-size: 14px;
  color: #4f5969;
}

.rp-student-actions {
  display: flex;
  justify-content: flex-end;
}

.rp-confirm-box {
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 190px;
  gap: 14px;
}

.rp-student-form label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.rp-student-form input {
  width: 100%;
  border: 1px solid #c8d2de;
  border-radius: 7px;
  padding: 10px 12px;
  margin-top: 5px;
  font-size: 15px;
}

.rp-confirm-summary h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.rp-confirm-summary p {
  margin: 5px 0;
}

.rp-confirm-summary ul {
  margin: 6px 0 0 18px;
}

.rp-confirm-side {
  display: flex;
  justify-content: center;
}

.rp-success-box {
  max-width: 980px;
  margin: 0 auto;
  padding: 28px;
  text-align: center;
}

.rp-success-icon {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  border: 6px solid #18c88a;
  margin: 0 auto 12px;
  position: relative;
}

.rp-success-icon::before {
  content: "";
  position: absolute;
  width: 22px;
  height: 44px;
  border-right: 7px solid #18c88a;
  border-bottom: 7px solid #18c88a;
  transform: rotate(45deg);
  left: 30px;
  top: 14px;
}

.rp-success-box h2 {
  margin: 0 0 8px;
  font-size: 40px;
}

.rp-success-box p {
  margin: 0 0 14px;
  color: #566170;
  font-size: 15px;
}

.rp-empty {
  color: #6f7784;
}

.rp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(227, 228, 230, 0.86);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.rp-modal-card {
  width: min(470px, 92vw);
  background: #f7f7f8;
  border: 1px solid #d8dde2;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  padding: 26px 24px;
  text-align: center;
}

.rp-modal-card h3 {
  margin: 0;
  font-size: 56px;
}

.rp-modal-card p {
  margin: 8px 0 14px;
  color: #606a79;
  font-size: 19px;
}

.rp-current-select {
  width: 100%;
  border: 1px solid #b7d4e9;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 16px;
  margin-bottom: 6px;
  font-family: inherit;
  background: #fff;
}

.rp-current-empty {
  background: #eff4f8;
  border-radius: 8px;
  padding: 10px;
  color: #637183;
  margin-bottom: 8px;
}

.rp-fade-up {
  animation: rp-fade-up 0.4s ease both;
}

@keyframes rp-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rp-btn-sheen {
  0% {
    left: -130%;
  }
  55%,
  100% {
    left: 150%;
  }
}

@keyframes rp-carousel-sheen {
  0% {
    left: -36%;
  }
  46%,
  100% {
    left: 118%;
  }
}

@media (max-width: 1024px) {
  .rp-stepper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rp-level-grid,
  .rp-teacher-grid,
  .rp-time-layout,
  .rp-confirm-box,
  .rp-student-grid {
    grid-template-columns: 1fr;
  }

  .rp-clock {
    font-size: 16px;
  }

  .rp-stage h2 {
    font-size: 28px;
  }

  .rp-level-card h3,
  .rp-teacher-card h3 {
    font-size: 24px;
  }

  .rp-welcome-title-content * {
    font-size: 24px;
  }

  .rp-welcome-subtitle-content * {
    font-size: 15px;
  }

.rp-welcome-carousel {
  min-height: 96px;
}

.rp-welcome-slide-item,
.rp-welcome-avatar {
  width: 56px;
  height: 56px;
}

.rp-welcome-slide-set {
  gap: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
}

  .rp-level-desc {
    font-size: 15px;
  }

  .rp-btn {
    font-size: 18px;
  }

  .rp-student-right {
    border-left: 0;
    padding-left: 0;
  }

  .rp-student-panel-title {
    font-size: 30px;
  }

  .rp-field-label,
  .rp-field-input,
  .rp-phone-prefix,
  .rp-student-summary-meta p,
  .rp-student-block-list li,
  .rp-student-reschedule-note,
  .rp-condition-item span {
    font-size: 16px;
  }

  .rp-condition-details summary {
    font-size: 14px;
  }

  .rp-student-level-info h4 {
    font-size: 24px;
  }

  .rp-student-actions {
    justify-content: flex-start;
  }

  .rp-modal-card h3 {
    font-size: 30px;
  }

  .rp-modal-card p {
    font-size: 18px;
  }

  .rp-current-select {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rp-btn,
  .rp-level-card,
  .rp-teacher-card,
  .rp-welcome-slide-item,
  .rp-welcome-carousel::after,
  .rp-entry-card .rp-btn-primary.rp-btn-xl::after,
  .rp-fade-up {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .rp-welcome-track.is-sliding {
    transition: none !important;
  }
}
