/* יומן ציבורי — עמוד חוויה */

.exp-public-cal {
  margin-bottom: 20px;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 245, 0.95) 100%);
  border: 1px solid rgba(12, 60, 30, 0.1);
  box-shadow: 0 18px 48px -32px rgba(12, 60, 30, 0.28);
}

.exp-public-cal__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  margin-bottom: 14px;
}

.exp-public-cal__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.exp-public-cal__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: #0c3c1e;
  min-width: 120px;
}

.exp-public-cal__btn,
.exp-public-cal__arrow {
  border: 1px solid rgba(12, 60, 30, 0.14);
  background: #fff;
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
  color: #2d4a38;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.exp-public-cal__btn {
  padding: 6px 12px;
  font-size: 0.82rem;
}

.exp-public-cal__arrow {
  width: 34px;
  height: 34px;
  padding: 0;
  font-size: 1.2rem;
  line-height: 1;
}

.exp-public-cal__btn:hover,
.exp-public-cal__arrow:hover {
  background: #f0f8ea;
  border-color: rgba(12, 60, 30, 0.28);
}

.exp-public-cal__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.78rem;
  color: #5f6b66;
}

.exp-public-cal__legend li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.exp-public-cal__swatch {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  flex-shrink: 0;
}

.exp-public-cal__swatch--open { background: #d4edc4; border: 1px solid #7cb86a; }
.exp-public-cal__swatch--full { background: #fde7e6; border: 1px solid #e08a84; }
.exp-public-cal__swatch--cancel { background: #eceeea; border: 1px solid #b8bfb4; }

.exp-public-cal__canvas {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
  min-width: 0;
}

.exp-public-cal__dow {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: #6b7a72;
  padding: 6px 2px;
}

.exp-public-cal__cell {
  position: relative;
  min-height: 72px;
  border: 1px solid rgba(12, 60, 30, 0.08);
  border-radius: 12px;
  padding: 6px 5px 5px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
  min-width: 0;
}

.exp-public-cal__cell-events {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
  position: relative;
}

.exp-public-cal__cell--expired .exp-public-cal__cell-events,
.exp-public-cal__cell--expired .exp-public-cal__mini-chip {
  filter: blur(5px);
  opacity: 0.45;
  pointer-events: none;
  user-select: none;
}

.exp-public-cal__cell-expired-label {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 4px;
  border-radius: inherit;
  text-align: center;
  font-size: clamp(0.52rem, 1.8vw, 0.68rem);
  font-weight: 800;
  line-height: 1.25;
  color: #4a5650;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}

.exp-public-cal__cell--expired {
  cursor: not-allowed;
  background: #f4f5f3;
}

.exp-public-cal__cell:has(.exp-public-cal__chip.is-expanded) {
  overflow: visible;
  z-index: 12;
}

.exp-public-cal__cell--muted {
  background: #f8faf7;
  opacity: 0.72;
}

.exp-public-cal__cell--today {
  border-color: rgba(12, 60, 30, 0.35);
  box-shadow: inset 0 0 0 1px rgba(12, 60, 30, 0.12);
}

.exp-public-cal__cell--has-events {
  background: linear-gradient(180deg, #fff 0%, #f8fbf5 100%);
}

.exp-public-cal__num {
  align-self: flex-end;
  font-size: 0.78rem;
  font-weight: 800;
  color: #0c3c1e;
  line-height: 1;
}

.exp-public-cal__chip {
  position: relative;
  width: 100%;
  min-width: 0;
  border: 0;
  border-radius: 8px;
  padding: 4px 6px;
  font-size: 0.68rem;
  font-weight: 700;
  text-align: right;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.exp-public-cal__chip-text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.3;
  min-width: 0;
}

.exp-public-cal__chip.is-truncatable::after {
  content: '…';
  position: absolute;
  left: 5px;
  bottom: 4px;
  font-size: 0.72em;
  font-weight: 900;
  color: inherit;
  opacity: 0.75;
  pointer-events: none;
}

.exp-public-cal__chip.is-truncatable.is-expanded::after {
  display: none;
}

.exp-public-cal__chip.is-expanded {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  z-index: 20;
  box-shadow: 0 10px 28px -8px rgba(12, 60, 30, 0.35);
  transform: none;
}

.exp-public-cal__chip.is-expanded .exp-public-cal__chip-text {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
}

.exp-public-cal__chip-more {
  display: block;
  font-size: 0.58rem;
  font-weight: 800;
  color: #5f6b66;
  text-align: center;
  line-height: 1.2;
  padding: 2px 0;
}

.exp-public-cal__chip:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(12, 60, 30, 0.12);
}

.exp-public-cal__chip--open {
  background: #e8f5dd;
  color: #1f5c30;
}

.exp-public-cal__chip--full {
  background: #fde7e6;
  color: #9b1c1c;
  font-weight: 800;
}

.exp-public-cal__chip--cancel {
  background: #eceeea;
  color: #7a827c;
  text-decoration: line-through;
  cursor: not-allowed;
  opacity: 0.85;
}

.exp-public-cal__hint {
  margin: 12px 0 0;
  font-size: 0.8rem;
  color: #6b7a72;
  text-align: center;
}

.session-item.is-highlighted {
  outline: 2px solid rgba(12, 60, 30, 0.45);
  box-shadow: 0 0 0 4px rgba(12, 60, 30, 0.1), 0 18px 40px -22px rgba(12, 60, 30, 0.35);
  transform: translateY(-2px);
}

@media (max-width: 720px) {
  .exp-public-cal {
    padding: 14px 12px 12px;
    border-radius: 16px;
  }

  .exp-public-cal__cell {
    min-height: 58px;
    padding: 4px 3px;
    border-radius: 8px;
  }

  .exp-public-cal__dow {
    font-size: 0.65rem;
    padding: 4px 0;
  }

  .exp-public-cal__num {
    font-size: 0.72rem;
  }

  .exp-public-cal__chip {
    font-size: 0.62rem;
    padding: 3px 4px;
  }

  .exp-public-cal__legend {
    width: 100%;
    justify-content: center;
  }

  .exp-public-cal__title {
    font-size: 1rem;
    width: 100%;
    text-align: center;
    order: 3;
  }

  .exp-public-cal__nav {
    width: 100%;
    justify-content: center;
  }
}

/* תצוגה מקדימה בכרטיס הרשמה */
.exp-cal-preview-wrap {
  margin: 0 0 14px;
}

.exp-cal-preview {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  position: relative;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(12, 60, 30, 0.12);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff 0%, #f8fbf5 100%);
  text-align: right;
  font: inherit;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

.exp-cal-preview__trigger {
  position: absolute;
  inset: 0;
  z-index: 5;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.exp-cal-preview__trigger:focus-visible {
  outline: 2px solid rgba(12, 60, 30, 0.45);
  outline-offset: 2px;
}

.exp-cal-preview:has(.exp-cal-preview__trigger:hover),
.exp-cal-preview:has(.exp-cal-preview__trigger:focus-visible) {
  border-color: rgba(12, 60, 30, 0.28);
  box-shadow: 0 10px 28px -18px rgba(12, 60, 30, 0.28);
  transform: translateY(-1px);
}

.exp-cal-preview__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px 10px;
}

.exp-cal-preview__month {
  font-size: 0.76rem;
  font-weight: 800;
  color: #0c3c1e;
  text-align: center;
  margin-bottom: 4px;
}

.exp-cal-preview__label {
  font-size: 0.82rem;
  font-weight: 800;
  color: #0c3c1e;
}

.exp-cal-preview__count {
  font-size: 0.76rem;
  color: #5f6b66;
}

.exp-cal-preview__more {
  font-size: 0.78rem;
  font-weight: 700;
  color: #1f5c30;
}

.exp-public-cal--preview {
  margin: 0;
  padding: 8px 6px 4px;
  border: 0;
  box-shadow: none;
  background: transparent;
  pointer-events: none;
}

.exp-public-cal__canvas--preview {
  gap: 2px;
}

.exp-public-cal--preview-compact .exp-public-cal__canvas--preview {
  gap: 3px;
}

.exp-public-cal--preview-compact .exp-public-cal__cell--spacer {
  display: none;
}

@media (max-width: 720px) {
  .exp-public-cal--preview-compact {
    padding: 6px 4px 2px;
  }

  .exp-cal-preview__month {
    font-size: 0.72rem;
    margin-bottom: 6px;
  }

  .exp-public-cal--preview-compact .exp-public-cal__cell {
    min-height: 46px;
  }

  .exp-public-cal--preview-compact .exp-public-cal__cell--has-events {
    min-height: 52px;
  }
}

.exp-public-cal--preview .exp-public-cal__cell--spacer {
  min-height: 52px;
  padding: 0;
  border-color: transparent;
  background: transparent;
  visibility: hidden;
  pointer-events: none;
}

.exp-public-cal--preview .exp-public-cal__cell {
  min-height: 52px;
  padding: 3px 2px 2px;
  border-radius: 6px;
  border-color: rgba(12, 60, 30, 0.06);
  gap: 2px;
  overflow: visible;
}

.exp-public-cal--preview .exp-public-cal__cell--has-events {
  min-height: 58px;
  background: linear-gradient(180deg, #fff 0%, #f8fbf5 100%);
}

.exp-public-cal--preview .exp-public-cal__num {
  font-size: 0.64rem;
  align-self: flex-end;
  line-height: 1;
  margin-bottom: 1px;
}

.exp-public-cal__mini-chip {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 4px;
  padding: 2px 4px;
  font-size: 0.58rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
  min-height: 14px;
}

.exp-public-cal__mini-chip.exp-public-cal__chip--open,
.exp-public-cal__mini-chip.exp-public-cal__chip--green { background: #e8f5dd; color: #1f5c30; }
.exp-public-cal__mini-chip.exp-public-cal__chip--blue { background: #e8f0ff; color: #1e4a8a; }
.exp-public-cal__mini-chip.exp-public-cal__chip--purple { background: #f0e8ff; color: #5b3a96; }
.exp-public-cal__mini-chip.exp-public-cal__chip--orange { background: #fff4e0; color: #b35c00; }
.exp-public-cal__mini-chip.exp-public-cal__chip--full,
.exp-public-cal__mini-chip.exp-public-cal__chip--red { background: #fde7e6; color: #b3261e; }
.exp-public-cal__mini-chip.exp-public-cal__chip--cancel,
.exp-public-cal__mini-chip.exp-public-cal__chip--gray { background: #eceeea; color: #7a827c; text-decoration: line-through; }
.exp-public-cal__mini-chip--more {
  background: #eef1ee;
  color: #5f6b66;
  text-align: center;
  font-size: 0.54rem;
}

@media (max-width: 420px) {
  .exp-public-cal--preview .exp-public-cal__cell {
    min-height: 48px;
  }

  .exp-public-cal--preview .exp-public-cal__cell--has-events {
    min-height: 54px;
  }

  .exp-public-cal__mini-chip {
    font-size: 0.52rem;
    padding: 1px 3px;
  }
}

.exp-public-cal__chip--blue {
  background: #e8f0ff;
  color: #1e4a8a;
}

.exp-public-cal__chip--purple {
  background: #f0e8ff;
  color: #5b3a96;
}

.exp-public-cal__chip--orange {
  background: #fff4e0;
  color: #b35c00;
}

.exp-public-cal__chip.is-selected {
  outline: 2px solid rgba(12, 60, 30, 0.45);
  box-shadow: 0 0 0 2px rgba(12, 60, 30, 0.12);
}

/* מודל לוח זמינות */
.exp-modal--calendar {
  z-index: 11050;
  align-items: center;
  padding: clamp(12px, 3vw, 28px);
}

.exp-modal--calendar .exp-modal__shell--calendar {
  width: min(920px, calc(100vw - 32px));
  max-width: min(920px, calc(100vw - 32px));
  max-height: min(94vh, 960px);
  min-height: min(72vh, 720px);
  display: flex;
  flex-direction: column;
}

.exp-modal--calendar .exp-public-cal--modal .exp-public-cal__cell {
  min-height: 76px;
}

.exp-modal--calendar .exp-public-cal--modal .exp-public-cal__chip {
  font-size: clamp(0.58rem, 1.6vw, 0.72rem);
  padding: 4px 6px;
  line-height: 1.25;
}

.exp-modal--calendar .exp-public-cal--modal .exp-public-cal__chip.is-expanded {
  max-width: min(280px, 92vw);
  width: max-content;
  min-width: 100%;
  left: auto;
}

@media (min-width: 768px) {
  .exp-modal--calendar .exp-modal__shell--calendar {
    width: min(1040px, calc(100vw - 48px));
    max-width: min(1040px, calc(100vw - 48px));
    max-height: min(92vh, 980px);
    min-height: min(68vh, 760px);
  }

  .exp-modal--calendar .exp-public-cal--modal .exp-public-cal__cell {
    min-height: 88px;
  }

  .exp-modal--calendar .exp-public-cal--modal .exp-public-cal__dow {
    font-size: 0.8rem;
  }

  .exp-modal--calendar .exp-public-cal--modal .exp-public-cal__title {
    font-size: 1.15rem;
  }
}

@media (max-width: 640px) {
  .exp-modal--calendar {
    align-items: flex-end;
    padding: 0;
  }

  .exp-modal--calendar .exp-modal__shell--calendar {
    width: 100%;
    max-width: 100%;
    min-height: 0;
    max-height: min(94vh, 900px);
    border-radius: 20px 20px 0 0;
  }

  .exp-modal--calendar .exp-public-cal--modal .exp-public-cal__cell {
    min-height: 64px;
    padding: 4px 3px;
  }

  .exp-modal--calendar .exp-public-cal--modal .exp-public-cal__chip {
    font-size: 0.56rem;
    padding: 3px 5px;
  }

  .exp-modal--calendar .exp-public-cal--modal .exp-public-cal__dow {
    font-size: 0.58rem;
    padding: 3px 0;
  }

  .exp-modal--calendar .exp-public-cal--modal .exp-public-cal__num {
    font-size: 0.68rem;
  }

  .exp-public-cal--modal .exp-public-cal__cell-expired-label {
    font-size: 0.5rem;
    padding: 4px 2px;
  }
}

.exp-cal-modal__body {
  padding: 0 18px 18px;
  overflow: auto;
  flex: 1;
  min-height: 0;
}

.exp-public-cal--modal {
  margin-bottom: 12px;
}

.exp-cal-modal__pick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: #f3f9ee;
  border: 1px solid rgba(12, 60, 30, 0.12);
  margin-bottom: 10px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.exp-cal-modal__pick.is-updated {
  background: #e8f5dd;
  border-color: rgba(12, 60, 30, 0.22);
}

.exp-public-cal--modal .exp-public-cal__cell--has-events:not(.exp-public-cal__cell--expired) {
  cursor: pointer;
}

.exp-public-cal__chip.is-truncatable {
  cursor: pointer;
}

.exp-cal-modal__pick-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.exp-cal-modal__pick-date {
  flex-shrink: 0;
  min-width: 56px;
  padding: 8px 10px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(12, 60, 30, 0.1);
  font-weight: 800;
  font-size: 0.9rem;
  color: #0c3c1e;
  text-align: center;
  line-height: 1.2;
}

.exp-cal-modal__pick-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.86rem;
  color: #2d4a38;
  min-width: 0;
  flex: 1;
}

.exp-cal-modal__pick-meta strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.35;
}

.exp-cal-modal__pick-meta span {
  font-size: 0.78rem;
  color: #5f6b66;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.exp-cal-modal__pick-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.exp-cal-modal__pick-actions .session-pill {
  font-size: 0.75rem;
}

.exp-cal-modal__pick-actions .session-pill.full {
  background: #fde7e6;
  color: #9b1c1c;
}

.exp-cal-modal__hint {
  margin: 0;
  font-size: 0.78rem;
  color: #6b7a72;
  text-align: center;
}

@media (max-width: 640px) {
  .exp-cal-modal__body {
    padding: 0 12px 14px;
  }

  .exp-cal-modal__pick {
    flex-direction: column;
    align-items: stretch;
  }

  .exp-cal-modal__pick-main {
    flex-wrap: wrap;
  }

  .exp-cal-modal__pick-meta strong,
  .exp-cal-modal__pick-meta span {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .exp-cal-modal__pick-date {
    font-size: 0.82rem;
    min-width: 52px;
    padding: 6px 8px;
  }

  .exp-cal-modal__pick-actions {
    justify-content: stretch;
  }

  .exp-cal-modal__pick-actions .btn {
    width: 100%;
  }
}

/* לוח שנה בסקציית תאריכים */
.exp-dates-calendar {
  margin: 0 0 clamp(20px, 4vw, 28px);
  padding: clamp(16px, 3vw, 22px);
  border-radius: var(--radius-lg, 16px);
  border: 1px solid rgba(12, 60, 30, 0.1);
  background: linear-gradient(180deg, rgba(180, 214, 160, 0.12) 0%, #fff 100%);
}

.exp-dates-calendar__lead {
  margin: 0 0 14px;
  color: var(--ink-1, #3d4349);
  line-height: 1.5;
  font-size: 0.95rem;
}

.exp-public-cal--dates {
  margin-bottom: 12px;
}

.exp-dates-calendar__pick {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(47, 125, 63, 0.08);
  border: 1px solid rgba(47, 125, 63, 0.16);
}

.exp-dates-calendar__pick[hidden] {
  display: none !important;
}

.exp-dates-calendar__open-modal {
  width: 100%;
}

/* ── בחירת שעה לתור (התאמה אישית) ─────────────────────────────────────────── */
.exp-appt-picker {
  margin: 0 0 14px;
}

.exp-appt-picker__lead {
  margin: 0 0 12px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #1f5c30;
  text-align: center;
}

.exp-appt-picker__month-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 12px;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(47, 125, 63, 0.06);
  border: 1px solid rgba(47, 125, 63, 0.12);
}

.exp-appt-picker__month-bar--single {
  padding: 6px 10px;
}

.exp-appt-picker__month-label {
  min-width: 7.5rem;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 800;
  color: #0c3c1e;
}

.exp-appt-picker__month-btn {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(12, 60, 30, 0.14);
  border-radius: 10px;
  background: #fff;
  color: #2d4a38;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.exp-appt-picker__month-btn:hover:not(:disabled) {
  background: #f0f8ea;
  border-color: rgba(12, 60, 30, 0.28);
}

.exp-appt-picker__month-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.exp-appt-picker__day[hidden] {
  display: none !important;
}

.exp-appt-picker__empty {
  margin: 8px 0 0;
  font-size: 0.82rem;
  color: #5f6b66;
  text-align: center;
}

.exp-appt-picker__empty[hidden] {
  display: none !important;
}

.exp-appt-picker__days {
  display: grid;
  gap: 14px;
  max-height: 320px;
  overflow-y: auto;
  padding-inline-end: 2px;
}

.exp-appt-picker__day-title {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #0c3c1e;
}

.exp-appt-picker__times {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.exp-appt-picker__time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.2rem;
  padding: 9px 12px;
  border: 1.5px solid rgba(47, 125, 63, 0.28);
  border-radius: 10px;
  background: #fff;
  color: #163a24;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
}

.exp-appt-picker__time:hover,
.exp-appt-picker__time:focus-visible {
  border-color: #2f7d3f;
  background: rgba(47, 125, 63, 0.08);
  transform: translateY(-1px);
}

.exp-appt-section-note {
  margin: 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(47, 125, 63, 0.06);
  border: 1px solid rgba(47, 125, 63, 0.12);
  font-size: 0.9rem;
  color: #2a4a35;
  text-align: center;
}

.exp-appt-section-note a {
  color: #1f5c30;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
