/* components/optometry-booking/optometry-booking.css — استایل پرمیوم صفحه بیوگرافی و نوبت‌دهی */

.doctor-page-wrapper {
  background: #f8fafc;
  padding-bottom: 80px;
  font-family: inherit;
}

/* ۱) هیرو سکشن (Doctor Hero) */
.doctor-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  padding: 80px 0 60px 0;
  border-bottom: 4px solid #E9B94E;
  position: relative;
  overflow: hidden;
}

.doctor-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(233, 185, 78, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.doctor-hero-inner {
  display: flex;
  gap: 50px;
  align-items: center;
}

.hero-image-side {
  flex: 0 0 320px;
  display: flex;
  justify-content: center;
}

.doctor-img-container {
  position: relative;
  width: 280px;
  height: 350px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  border: 4px solid rgba(255, 255, 255, 0.1);
  background: #1e293b;
}

.doctor-profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.doctor-img-container:hover .doctor-profile-img {
  transform: scale(1.06);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #E9B94E;
  color: #0f172a;
  padding: 10px 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 20px rgba(233, 185, 78, 0.4);
  animation: floatBadge 3s ease-in-out infinite;
}

.experience-badge .exp-num {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.experience-badge .exp-txt {
  font-size: 11px;
  font-weight: 700;
  margin-top: 2px;
}

.hero-info-side {
  flex: 1;
}

.doctor-status-badge {
  background: rgba(233, 185, 78, 0.15);
  color: #E9B94E;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(233, 185, 78, 0.3);
}

.hero-doctor-name {
  font-size: 32px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 10px 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-doctor-subtitle {
  font-size: 16px;
  color: #e2e8f0;
  margin: 0 0 25px 0;
  font-weight: 500;
}

.doctor-meta-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.meta-item i {
  color: #E9B94E;
}

.hero-doctor-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #94a3b8;
  margin-bottom: 30px;
  max-width: 800px;
}

.hero-actions {
  display: flex;
  gap: 15px;
}

.btn-hero-book {
  background: #E9B94E;
  color: #0f172a;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(233, 185, 78, 0.2);
  transition: all 0.3s ease;
}

.btn-hero-book:hover {
  background: #d4a300;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(233, 185, 78, 0.3);
}

.btn-hero-info {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-hero-info:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ۲) گرید دو ستونه صفحه اصلی */
.main-content-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 30px;
  margin-top: 40px;
  align-items: start;
}

.doctor-details-column {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* ۳) تب‌های تعاملی بیوگرافی و تخصص‌ها */
.tabs-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.tabs-headers {
  display: flex;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.tab-header-btn {
  flex: 1;
  background: none;
  border: none;
  padding: 18px 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.tab-header-btn:hover {
  color: #0f172a;
  background: rgba(233, 185, 78, 0.03);
}

.tab-header-btn.active {
  color: #E9B94E;
  border-bottom-color: #E9B94E;
  background: #ffffff;
}

.tab-header-btn.active i {
  color: #E9B94E;
}

.tabs-content {
  padding: 30px;
}

.tab-pane {
  display: none;
  animation: fadeInTab 0.4s ease forwards;
}

.tab-pane.active {
  display: block;
}

.tab-pane h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 15px 0;
}

.tab-pane p {
  font-size: 14px;
  line-height: 1.8;
  color: #475569;
  margin: 0 0 25px 0;
}

/* تایم‌لاین سوابق */
.timeline-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  padding-right: 15px;
}

.timeline-features::before {
  content: '';
  position: absolute;
  top: 10px;
  right: 25px;
  bottom: 10px;
  width: 2px;
  background: #e2e8f0;
}

.timeline-item {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.timeline-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #E9B94E;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #E9B94E;
  margin-right: 14px;
  box-shadow: 0 0 0 4px #fff;
}

.timeline-details {
  flex: 1;
}

.timeline-details h4 {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 5px 0;
}

.timeline-details p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}

/* لیست تخصص‌ها */
.services-list-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.services-list-details li {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.service-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(233, 185, 78, 0.1);
  color: #d4a300;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.service-text {
  flex: 1;
}

.service-text strong {
  display: block;
  font-size: 14px;
  color: #1e293b;
  margin-bottom: 4px;
}

.service-text span {
  font-size: 13px;
  line-height: 1.6;
  color: #64748b;
  display: block;
}

/* تجهیزات پیشرفته */
.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.tech-card {
  border: 1px solid #f1f5f9;
  background: #f8fafc;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.tech-card:hover {
  background: #fff;
  border-color: #E9B94E;
  box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}

.tech-card i {
  font-size: 26px;
  color: #E9B94E;
  margin-bottom: 12px;
  display: block;
}

.tech-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.tech-card p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* ۴) باکس اعتماد بیمه */
.insurance-trust-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: #fff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.insurance-info h3 {
  font-size: 18px;
  font-weight: 800;
  color: #E9B94E;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.insurance-info p {
  font-size: 13px;
  line-height: 1.8;
  color: #cbd5e1;
  margin-bottom: 25px;
}

.insurance-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ins-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  border-radius: 30px;
  font-weight: 700;
  transition: all 0.2s ease;
}

.ins-badge:hover {
  background: #E9B94E;
  color: #0f172a;
  border-color: #E9B94E;
}

/* ۵) نظرات مراجعین */
.reviews-section {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.section-title {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title i {
  color: #E9B94E;
}

.section-subtitle {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 25px 0;
}

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card {
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 20px;
}

.review-card:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.reviewer-name {
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
}

.review-stars {
  color: #ffb700;
  font-size: 12px;
  display: flex;
  gap: 2px;
}

.review-text {
  font-size: 13px;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 10px 0;
}

.review-date {
  font-size: 11px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ۶) سوالات متداول (FAQ) */
.faq-section {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
}

.faq-question-btn {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  text-align: right;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: #1e293b;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.faq-question-btn i {
  color: #64748b;
  transition: transform 0.3s ease;
  font-size: 12px;
}

.faq-item.open {
  border-color: #E9B94E;
  box-shadow: 0 4px 15px rgba(233, 185, 78, 0.05);
}

.faq-item.open .faq-question-btn {
  color: #d4a300;
}

.faq-item.open .faq-question-btn i {
  transform: rotate(180deg);
  color: #d4a300;
}

.faq-answer-pane {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  background: #fffbef;
}

.faq-answer-pane p {
  padding: 0 24px 20px 24px;
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #475569;
}

.faq-item.open .faq-answer-pane {
  max-height: 200px; /* arbitrary height to slide-down */
}

/* ۷) ستون چپ: سایدبار نوبت‌دهی (Sticky) */
.booking-sidebar-column {
  position: sticky;
  top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-form-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  padding: 24px;
}

.booking-card-header {
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.booking-card-header h2 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-card-header h2 i {
  color: #E9B94E;
}

.booking-card-header p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}

/* مراحل نوبت‌دهی */
.step-badge {
  display: inline-flex;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #E9B94E;
  color: #0f172a;
  font-size: 11px;
  font-weight: 800;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
}

.days-picker-container {
  margin-bottom: 20px;
}

.days-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.day-card {
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 10px;
  padding: 10px 4px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.day-card input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.day-card .day-name {
  display: block;
  font-size: 11px;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 2px;
}

.day-card .day-date {
  display: block;
  font-size: 12px;
  color: #0f172a;
  font-weight: 800;
}

.day-card:hover {
  border-color: #E9B94E;
  background: rgba(233, 185, 78, 0.02);
}

.day-card.selected {
  border-color: #E9B94E;
  background: #fffbef;
  box-shadow: 0 0 0 2px rgba(233, 185, 78, 0.1);
}

.day-card.selected .day-name,
.day-card.selected .day-date {
  color: #d4a300;
}

/* تایم اسلات‌ها */
.slots-picker-container {
  margin-bottom: 20px;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.slot-card {
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  transition: all 0.2s ease;
}

.slot-card:hover {
  border-color: #E9B94E;
  background: rgba(233, 185, 78, 0.02);
}

.slot-card.selected {
  border-color: #E9B94E;
  background: #E9B94E;
  color: #0f172a;
  box-shadow: 0 4px 10px rgba(233, 185, 78, 0.15);
}

.slot-card.booked,
.slot-card.disabled {
  border-color: #e2e8f0;
  background: #f1f5f9;
  color: #94a3b8;
  cursor: not-allowed;
  opacity: 0.6;
  text-decoration: line-through;
  pointer-events: none;
}

.slot-card .booked-label {
  display: block;
  font-size: 10px;
  color: #ef4444;
  margin-top: 2px;
  text-decoration: none;
}

/* اطلاعات بیمار */
.patient-info-container {
  margin-bottom: 20px;
  border-top: 1px solid #f1f5f9;
  padding-top: 15px;
}

.form-group {
  margin-bottom: 12px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
}

.form-group input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  box-sizing: border-box;
  background: #f8fafc;
  transition: all 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #E9B94E;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(233, 185, 78, 0.1);
}

.required-star {
  color: #ef4444;
}

.validation-error {
  color: #ef4444;
  font-size: 11px;
  font-weight: 700;
  margin-top: 4px;
  display: block;
}

/* خلاصه فاکتور رزرو */
.checkout-summary-box {
  background: #f8fafc;
  border-radius: 10px;
  padding: 15px;
  border: 1px solid #f1f5f9;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  margin-bottom: 8px;
  color: #475569;
}

.summary-row strong {
  color: #1e293b;
}

.summary-row.total-row {
  margin-bottom: 0;
  padding-top: 10px;
  border-top: 1px dashed #e2e8f0;
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
}

.text-gold-large {
  font-size: 14px;
  color: #d4a300;
  font-weight: 900;
}

.summary-disclaimer {
  font-size: 11px;
  color: #64748b;
  margin: 8px 0 0 0;
  line-height: 1.5;
}

/* دکمه ارسال */
.btn-submit-booking {
  width: 100%;
  padding: 12px;
  background: #E9B94E;
  color: #0f172a;
  border: none;
  border-radius: 10px;
  font-family: inherit;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(233, 185, 78, 0.15);
}

.btn-submit-booking:hover {
  background: #d4a300;
  transform: translateY(-1px);
}

/* هشدارها */
.alert-box {
  background: #fee2e2;
  color: #b91c1c;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 15px;
  border: 1px solid #fca5a5;
}

/* ۸) رسید خرید (Receipt Card) */
.receipt-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.receipt-status-header {
  text-align: center;
  margin-bottom: 20px;
}

.status-icon-circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 12px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.receipt-status-header.success .status-icon-circle {
  background: #d1fae5;
  color: #10b981;
}

.receipt-status-header.failure .status-icon-circle {
  background: #fee2e2;
  color: #ef4444;
}

.receipt-status-header h3 {
  font-size: 16px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 6px 0;
}

.receipt-status-header p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}

.ticket-box {
  background: #fffbef;
  border: 2px dashed #E9B94E;
  border-radius: 12px;
  padding: 18px;
  margin-bottom: 20px;
  position: relative;
}

.ticket-box::before,
.ticket-box::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-radius: 50%;
  transform: translateY(-50%);
  border: 1px solid #E9B94E;
}

.ticket-box::before {
  right: -8px;
}

.ticket-box::after {
  left: -8px;
}

.ticket-title {
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  color: #d4a300;
  margin-bottom: 12px;
  border-bottom: 1px dashed rgba(233, 185, 78, 0.3);
  padding-bottom: 6px;
}

.ticket-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.ticket-item {
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dotted rgba(0,0,0,0.05);
  padding-bottom: 4px;
}

.ticket-item span {
  font-weight: 700;
  color: #64748b;
}

.ticket-item strong {
  font-weight: 800;
  color: #0f172a;
}

.receipt-actions {
  display: flex;
  gap: 10px;
}

.btn-receipt-print {
  flex: 1;
  padding: 10px;
  background: #0f172a;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-receipt-print:hover {
  background: #1e293b;
}

.btn-receipt-home {
  flex: 1;
  padding: 10px;
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-receipt-home:hover {
  background: #e2e8f0;
}

/* انیمیشن‌ها */
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* واکنش‌گرایی */
@media (max-width: 992px) {
  .doctor-hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .doctor-meta-grid {
    justify-content: center;
  }
  .hero-actions {
    justify-content: center;
  }
  .main-content-grid {
    grid-template-columns: 1fr;
  }
  .booking-sidebar-column {
    position: static;
  }
}

@media (max-width: 576px) {
  .doctor-hero {
    padding: 40px 0 30px 0;
  }
  .hero-doctor-name {
    font-size: 24px;
  }
  .hero-doctor-subtitle {
    font-size: 14px;
  }
  .tab-header-btn {
    font-size: 11px;
    padding: 14px 6px;
  }
  .tech-grid {
    grid-template-columns: 1fr;
  }
  .tabs-content {
    padding: 20px 15px;
  }
  .days-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media print {
  body * {
    visibility: hidden;
  }
  .receipt-card, .receipt-card * {
    visibility: visible;
  }
  .receipt-card {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    border: none;
    box-shadow: none;
    padding: 0;
  }
  .receipt-actions {
    display: none;
  }
}
