:root {
  --font-ui: "Nunito", Arial, sans-serif;
}

* {
  box-sizing: border-box;
  font-family: inherit;
}

html,
body {
  height: 100%;
  margin: 0;
  font-family: var(--font-ui);
  font-weight: 400;
}

body {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.04), transparent 42%),
    #030711;
}

main {
  position: relative;
  display: grid;
  width: min(500px, calc(100vw - 30px));
  gap: 22px;
  justify-items: center;
  padding: 0;
}

body.is-searching main {
  width: min(520px, calc(100vw - 30px));
}

body.is-conversation main {
  width: min(920px, calc(100vw - 30px));
}

#voiceMark {
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  filter: drop-shadow(0 0 18px rgba(0, 174, 255, 0.9));
}

.hero-only {
  display: none !important;
}

#voiceMark span {
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #35d7ff, #006cff);
}

#voiceMark span:nth-child(1),
#voiceMark span:nth-child(7) {
  height: 12px;
  opacity: 0.45;
}

#voiceMark span:nth-child(2),
#voiceMark span:nth-child(6) {
  height: 28px;
}

#voiceMark span:nth-child(3),
#voiceMark span:nth-child(5) {
  height: 44px;
}

#voiceMark span:nth-child(4) {
  height: 64px;
  width: 7px;
}

#filters {
  display: grid;
  width: 100%;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 34px 16px;
  background: rgba(18, 20, 27, 0.66);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
}

.filter-separator {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

body:not(.is-searching):not(.is-conversation) #controls {
  width: 100%;
  margin-top: -2px;
}

body:not(.is-searching):not(.is-conversation) #findButton {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: #f5f6fa;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 500;
}

.is-searching #voiceMark,
.is-conversation #voiceMark,
.is-searching #controls,
.is-conversation #controls {
  display: none;
}

#statusPanel {
  position: relative;
  display: grid;
  width: min(520px, 100%);
  justify-items: center;
  border: 1px solid rgba(140, 155, 185, 0.14);
  border-radius: 28px;
  padding: 46px 34px 26px;
  background: rgba(16, 19, 28, 0.72);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
}

.is-conversation #statusPanel {
  width: 100%;
  grid-template-columns: 1fr;
  justify-items: stretch;
  overflow: hidden;
  border-radius: 34px;
  padding: 0;
}

#statusPanel[hidden] {
  display: none;
}

#statusIcon {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02) 58%, transparent 60%);
  box-shadow:
    0 0 0 20px rgba(255, 255, 255, 0.025),
    0 0 70px rgba(255, 255, 255, 0.12);
  color: #fff;
}

#statusIcon i {
  font-size: 34px;
  line-height: 1;
}

#statusTitle {
  margin-top: 34px;
  color: #f6f7fb;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.03em;
  text-align: center;
}

.is-conversation #statusTitle {
  min-height: 118px;
  margin-top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 42px 58px 0;
  color: rgba(246, 247, 251, 0.78);
  font-size: 28px;
  font-weight: 500;
  text-align: left;
}

.status-header {
  display: contents;
}

.is-conversation .status-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 24px 24px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.is-conversation .status-header #statusTitle {
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  flex: 1;
  min-width: 0;
  font-size: 22px;
  line-height: 1.15;
}

#statusSubtitle {
  margin-top: 12px;
  color: rgba(246, 247, 251, 0.55);
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}

.status-wave {
  display: flex;
  height: 56px;
  align-items: center;
  justify-content: center;
  width: min(360px, 100%);
  gap: 7px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
}

.is-conversation .status-wave {
  width: 300px;
  margin-top: 0;
}

.status-wave span {
  width: 3px;
  height: 4px;
  opacity: 0.25;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.28);
  transition: height 0.08s linear, opacity 0.08s linear;
}

.is-searching .status-wave {
  display: none;
}

#searchMeta {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 24px;
  color: rgba(246, 247, 251, 0.7);
  font-size: 22px;
  font-weight: 300;
}

#searchTimer {
  color: #f6f7fb;
  font-weight: 400;
}

#statusControls {
  display: grid;
  width: 100%;
  gap: 14px;
  margin-top: 22px;
}

#statusControls.in-call {
  grid-template-columns: 1fr auto auto;
  align-items: center;
}

.is-conversation #statusControls {
  width: 100%;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  padding: 0 64px 58px;
}

#onlineStats {
  width: 100%;
  color: rgba(245, 246, 250, 0.56);
  font-size: 14px;
  font-weight: 300;
  text-align: center;
}

#onlineStats span {
  color: #f5f6fa;
  font-weight: 400;
}

#banPanel {
  width: 100%;
}

.ban-card {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 95, 134, 0.24);
  border-radius: 28px;
  padding: 28px 22px;
  background: rgba(255, 95, 134, 0.08);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.ban-title {
  color: #ff8aa1;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}

.ban-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 12px;
  color: rgba(245, 246, 250, 0.62);
  font-size: 14px;
  font-weight: 300;
}

.ban-row strong {
  color: #f5f6fa;
  font-size: 14px;
  font-weight: 400;
  text-align: right;
}

body.is-banned #filters,
body.is-banned #controls,
body.is-banned #onlineStats,
body.is-banned #statusPanel {
  display: none !important;
}

.is-searching #onlineStats,
.is-conversation #onlineStats {
  display: none;
}

#conversationBody {
  display: none;
}

.is-conversation #conversationBody {
  display: grid;
  grid-template-columns: 170px auto 1fr;
  gap: 46px;
  align-items: center;
  padding: 82px 64px 76px;
}

#partnerAvatar {
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.55);
}

#partnerAvatar.partner-male {
  border-color: rgba(72, 199, 255, 0.28);
  background: rgba(72, 199, 255, 0.08);
  color: #28aef5;
  box-shadow: inset 0 0 40px rgba(72, 199, 255, 0.06);
}

#partnerAvatar.partner-female {
  border-color: rgba(255, 95, 134, 0.28);
  background: rgba(255, 95, 134, 0.08);
  color: #ff5f86;
  box-shadow: inset 0 0 40px rgba(255, 95, 134, 0.06);
}

#partnerAvatar svg {
  display: block;
  width: 78px;
  height: 78px;
}

#connectionIndicator {
  display: none;
}

.is-conversation #connectionIndicator {
  display: flex;
  align-items: end;
  flex-shrink: 0;
  gap: 10px;
  color: #00e28a;
}

.connection-bars {
  display: flex;
  align-items: end;
  gap: 7px;
}

#connectionIndicator .connection-bars span {
  width: 6px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.22;
  box-shadow: none;
}

#connectionIndicator .connection-bars span.active {
  opacity: 1;
  box-shadow: 0 0 16px currentColor;
}

#connectionIndicator .connection-bars span:nth-child(1) {
  height: 12px;
}

#connectionIndicator .connection-bars span:nth-child(2) {
  height: 22px;
}

#connectionIndicator .connection-bars span:nth-child(3) {
  height: 32px;
}

#connectionIndicator .connection-bars span:nth-child(4) {
  height: 44px;
}

#connectionPing {
  min-width: 44px;
  width: auto;
  background: none;
  border-radius: 0;
  color: currentColor;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1;
  text-shadow: none;
  white-space: nowrap;
}

#filters[hidden] {
  display: none;
}

#statusIcon[hidden],
#statusSubtitle[hidden],
#timer[hidden],
#searchMeta[hidden],
#findButton[hidden],
#cancelButton[hidden],
#endButton[hidden],
#micButton[hidden] {
  display: none;
}

.filter-group {
  display: grid;
  gap: 12px;
}

.filter-title {
  color: rgba(245, 246, 250, 0.52);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.title-icon {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: #2388ff;
  font-size: 25px;
  line-height: 1;
  text-shadow: 0 0 16px rgba(0, 119, 255, 0.8);
}

.options,
#controls,
#confirmControls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 100%;
}

.options-three {
  grid-template-columns: repeat(3, 1fr);
}

.gender-options {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  --gender-half-height: 32px;
  --gender-slant-offset: calc(tan(28deg) * var(--gender-half-height));
}

.gender-options::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 1px solid rgba(210, 224, 255, 0.86);
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.025);
  box-shadow:
    0 0 0 1px rgba(210, 224, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  content: "";
  opacity: 0;
  pointer-events: none;
}

.gender-options:has(.gender-option:first-child.active)::before {
  border-color: rgba(72, 199, 255, 0.88);
  background: rgba(72, 199, 255, 0.1);
  clip-path: polygon(
    0 0,
    calc(50% + var(--gender-slant-offset)) 0,
    calc(50% - var(--gender-slant-offset)) 100%,
    0 100%
  );
  box-shadow:
    0 0 0 1px rgba(72, 199, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  opacity: 1;
}

.gender-options:has(.gender-option:last-child.active)::before {
  border-color: rgba(255, 95, 134, 0.88);
  background: rgba(255, 95, 134, 0.1);
  clip-path: polygon(
    calc(50% + var(--gender-slant-offset)) 0,
    100% 0,
    100% 100%,
    calc(50% - var(--gender-slant-offset)) 100%
  );
  box-shadow:
    0 0 0 1px rgba(255, 95, 134, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  opacity: 1;
}

.gender-options::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.14);
  clip-path: polygon(
    calc(50% + var(--gender-slant-offset) - 0.5px) 0,
    calc(50% + var(--gender-slant-offset) + 0.5px) 0,
    calc(50% - var(--gender-slant-offset) + 0.5px) 100%,
    calc(50% - var(--gender-slant-offset) - 0.5px) 100%
  );
  content: "";
  pointer-events: none;
}

#controls {
  grid-template-columns: 1fr;
  margin-top: 10px;
}

#controls.in-call {
  grid-template-columns: 1fr auto;
}

button {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.04);
  color: #f5f6fa;
  cursor: pointer;
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 500;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

button:active {
  transform: scale(0.98);
}

button:disabled {
  cursor: default;
  opacity: 0.7;
}

.option {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 13px 10px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(245, 246, 250, 0.68);
  font-size: 15px;
  font-weight: 400;
  box-shadow: none;
}

.option i {
  font-size: 28px;
  line-height: 1;
}

.option.active {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.035);
  color: #f5f6fa;
  box-shadow:
    0 0 0 1px rgba(210, 224, 255, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.gender-option {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 64px;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.gender-option.active {
  border-color: transparent;
  background: transparent;
  color: #f5f6fa;
  box-shadow: none;
}

.gender-option i {
  position: static;
  font-size: 30px;
  transform: none;
}

.gender-option span {
  position: static;
  font-family: var(--font-ui);
  font-size: 32px;
  font-weight: 100;
  line-height: 1;
  transform: none;
}

#cancelButton,
#confirmCancelButton {
  border: 1px solid rgba(116, 147, 198, 0.22);
  background: rgba(10, 22, 42, 0.52);
  color: #f4f6ff;
  box-shadow: none;
}

#cancelButton {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 400;
}

#cancelButton i {
  color: #2493ff;
  font-size: 22px;
  line-height: 1;
}

#endButton,
#confirmEndButton {
  background: #f0505c;
  color: #fff;
  box-shadow: 0 14px 34px rgba(240, 80, 92, 0.2);
}

#endButton {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff4163, #ce243d);
  box-shadow:
    0 0 0 1px rgba(255, 116, 140, 0.34),
    0 16px 42px rgba(255, 36, 75, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  font-size: 32px;
}

#endButton i {
  font-size: 34px;
  line-height: 1;
}

.icon-button {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.is-conversation .icon-button {
  width: 88px;
  height: 88px;
}

.icon-button i {
  font-size: 22px;
  line-height: 1;
}

.icon-button.muted {
  background: #f0505c;
  color: #fff;
}

.icon-button.muted::after {
  position: absolute;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transform: rotate(-45deg);
}

#timer {
  color: #f4f6ff;
  font-family: var(--font-ui);
  font-size: 70px;
  font-weight: 100;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 48px;
  text-shadow: 0 0 42px rgba(255, 255, 255, 0.2);
}

.is-conversation #timer {
  margin-top: 0;
  font-size: 58px;
}

.find-icon {
  display: inline-grid;
  width: 30px;
  height: 30px;
  margin-right: 18px;
  vertical-align: middle;
}

.find-icon i {
  font-size: 30px;
  line-height: 1;
}

#confirm {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.58);
}

#report {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.58);
}

#notice {
  position: fixed;
  inset: 0;
  z-index: 21;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.58);
}

#confirm[hidden],
#report[hidden],
#notice[hidden],
[hidden] {
  display: none;
}

#confirmBox,
#reportBox {
  display: grid;
  width: min(300px, calc(100vw - 40px));
  gap: 16px;
  border: 1px solid #252b3a;
  border-radius: 22px;
  padding: 20px;
  background: #111620;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

#reportControls {
  display: grid;
  gap: 10px;
}

#reportControls button {
  min-height: 48px;
  padding: 12px 14px;
  font-size: 14px;
}

#confirmControls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

#confirmControls button {
  min-height: 48px;
  padding: 12px 14px;
  font-size: 14px;
}

#noticeBox {
  display: grid;
  width: min(280px, calc(100vw - 40px));
  gap: 16px;
  border: 1px solid #252b3a;
  border-radius: 22px;
  padding: 20px;
  background: #111620;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

#noticeButton {
  min-height: 48px;
  padding: 12px 14px;
  font-size: 14px;
}

#rulesModal {
  position: fixed;
  inset: 0;
  z-index: 22;
  display: grid;
  place-items: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.58);
}

#rulesModal[hidden] {
  display: none;
}

#rulesBox {
  display: grid;
  width: min(360px, calc(100vw - 32px));
  max-height: min(84vh, 640px);
  gap: 16px;
  overflow: auto;
  border: 1px solid #252b3a;
  border-radius: 22px;
  padding: 22px 20px;
  background: #111620;
  color: #fff;
}

#rulesTitle {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

#rulesList {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: rgba(245, 246, 250, 0.82);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.45;
  text-align: left;
}

#rulesAcceptButton {
  min-height: 48px;
  padding: 12px 14px;
  font-size: 14px;
}

#partnerWaitHint {
  display: none;
  width: 100%;
  margin-top: 8px;
  padding: 0 64px;
  color: rgba(255, 201, 71, 0.92);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.is-conversation #partnerWaitHint:not([hidden]) {
  display: block;
}

#partnerMicHint {
  display: none;
  width: 100%;
  margin-top: 6px;
  padding: 0 64px;
  color: rgba(255, 143, 122, 0.92);
  font-size: 15px;
  font-weight: 300;
  text-align: center;
}

.is-conversation #partnerMicHint:not([hidden]) {
  display: block;
}

.is-partner-waiting .status-wave span {
  opacity: 0.18 !important;
  height: 4px !important;
  box-shadow: none !important;
}

@media (max-width: 760px) {
  #partnerWaitHint {
    padding: 0 16px;
    font-size: 15px;
  }

  #partnerMicHint {
    padding: 0 16px;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .gender-options {
    --gender-half-height: 29px;
  }

  .gender-option {
    height: 58px;
    min-height: 58px;
    gap: 22px;
  }

  .gender-option i {
    font-size: 29px;
  }

  .gender-option span {
    font-size: 29px;
  }
}

@media (max-width: 760px) {
  body.is-conversation main,
  body.is-searching main {
    width: calc(100vw - 24px);
  }

  .is-conversation #statusPanel {
    border-radius: 24px;
  }

  .is-conversation .status-header {
    gap: 12px;
    min-height: 64px;
    padding: 18px 16px 14px;
  }

  .is-conversation .status-header #statusTitle {
    font-size: 17px;
  }

  .is-conversation #connectionIndicator {
    gap: 8px;
  }

  #connectionPing {
    font-size: 12px;
  }

  .connection-bars {
    gap: 5px;
  }

  #connectionIndicator .connection-bars span {
    width: 5px;
  }

  #connectionIndicator .connection-bars span:nth-child(1) {
    height: 10px;
  }

  #connectionIndicator .connection-bars span:nth-child(2) {
    height: 16px;
  }

  #connectionIndicator .connection-bars span:nth-child(3) {
    height: 22px;
  }

  #connectionIndicator .connection-bars span:nth-child(4) {
    height: 28px;
  }

  .is-conversation #conversationBody {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
    padding: 44px 28px 42px;
  }

  #partnerAvatar {
    width: 104px;
    height: 104px;
  }

  #partnerAvatar svg {
    width: 62px;
    height: 62px;
  }

  .is-conversation #timer {
    font-size: 44px;
  }

  .is-conversation .status-wave {
    width: min(300px, 100%);
  }

  .is-conversation #statusControls {
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    padding: 0 16px 20px;
  }

  .is-conversation #endButton {
    min-height: 56px;
    gap: 10px;
    padding: 0 16px;
    font-size: 16px;
  }

  .is-conversation #endButton i {
    font-size: 20px;
  }

  .is-conversation #reportButton,
  .is-conversation #micButton {
    justify-self: auto;
  }

  .is-conversation .icon-button {
    width: 56px;
    height: 56px;
  }

  #endButton {
    min-height: 72px;
    gap: 18px;
    font-size: 20px;
  }

  #endButton i {
    font-size: 26px;
  }
}
