/* =========================================================
   CharacterCounter.COM — SMS Character Counter Test CSS
   File name: smsTest.css
   For: smsTest.html
========================================================= */

/* ------------------------------
   Base
------------------------------ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  border: none;
  font-family: 'Roboto', Arial, sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #fff;
  color: #111;
}

p {
  margin-top: 1em;
  margin-bottom: 1em;
}

input[type='text'],
input[type='number'],
textarea,
button {
  font: inherit;
}

button {
  cursor: pointer;
}

textarea {
  font-size: 18px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ------------------------------
   Main Page
------------------------------ */

.sms-page-main {
  width: 100%;
}

.sms-tool-section {
  padding: 92px 10px 36px;
}

.parent,
.sms-tool-grid {
  display: grid;
  grid-template-columns: minmax(0, 790px) 300px;
  grid-template-rows: auto auto auto auto;
  column-gap: 18px;
  row-gap: 0;
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px;
}

/* ------------------------------
   Grid Placement
------------------------------ */

#title {
  grid-area: 1 / 1 / 2 / 2;
}

.sms-metrics {
  grid-area: 2 / 1 / 3 / 2;
}

#div9,
.sms-compose-area {
  grid-area: 3 / 1 / 4 / 2;
}

#text-content {
  grid-area: 4 / 1 / 5 / 2;
}

#sidebar {
  grid-area: 1 / 2 / 5 / 3;
}

/* ------------------------------
   Title / Intro
------------------------------ */

.sms-title-block {
  text-align: center;
  padding: 0 0 16px;
}

.sms-title-block h1 {
  margin: 0 0 8px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #111;
}

.sms-intro {
  max-width: 760px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.5;
  color: #333;
}

/* ------------------------------
   Metric Cards
------------------------------ */

.sms-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 12px;
  width: 100%;
}

.metric-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 66px;
  height: 66px;
  padding: 8px 7px;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
}

.metric-card-wide {
  grid-column: auto;
}

.metric-label,
#div1,
#div3,
#div5,
#div7,
#segmentLimitLabel,
#unicodeMetricLabel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  margin: 0 0 4px;
  background: transparent;
  color: #555;
  border: none;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.018em;
  text-align: center;
}

#div1,
#div7,
#unicodeMetricLabel {
  white-space: nowrap;
}

.metric-value,
#div2,
#div4,
#div6,
#div8,
#segmentLimitValue,
#unicodeCountOutput {
  display: block;
  margin: 0;
  background: transparent;
  color: #111;
  border: none;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  overflow-wrap: anywhere;
}

.metric-character-value {
  white-space: nowrap;
}

.metric-limit {
  color: #777;
  font-size: 0.72em;
  font-weight: 700;
}

#div8.metric-value,
.metric-card #div8 {
  font-size: 21px;
}

/* ------------------------------
   Compose Area
------------------------------ */

.sms-compose-area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
  align-items: start;
  width: 100%;
}

.sms-textarea-wrap {
  width: 100%;
  text-align: left;
}

.textarea-shell {
  position: relative;
  width: 100%;
}

/* ------------------------------
   Textarea
------------------------------ */

#userWord,
textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 285px;
  height: 325px;
  padding: 8px 15px 42px 15px;
  border: 3px solid #d1d1d1;
  border-radius: 14px;
  outline: none;
  resize: vertical;
  line-height: 1.55;
  color: #111;
  background: #fff;
  font-size: 18px;
}

#userWord:focus,
textarea:focus {
  border-color: #555;
  -webkit-box-shadow: 0 8px 6px -6px #999;
  -moz-box-shadow: 0 8px 6px -6px #999;
  box-shadow: 0 8px 6px -6px #999;
}

#userWord::placeholder,
textarea::placeholder {
  color: #777;
}

.textarea-copy-button {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  min-width: 54px;
  padding: 6px 11px;
  background: rgba(30, 123, 30, 0.76);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.textarea-copy-button:hover {
  background: rgba(30, 123, 30, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

.textarea-copy-button:focus-visible {
  outline: 3px solid #111;
  outline-offset: 3px;
}

.textarea-copy-button.copied {
  background: rgba(25, 115, 25, 0.9);
}

.textarea-copy-button.copy-error {
  background: rgba(170, 70, 30, 0.9);
}

.sms-warning {
  margin: 7px 0 0;
  font-size: 15px;
  line-height: 1.45;
  color: #8a4b00;
  text-align: left;
}

.sms-warning:empty {
  display: none;
  margin: 0;
}

.sms-warning strong {
  color: #613500;
}

/* ------------------------------
   Mini SMS Preview
------------------------------ */

.sms-mini-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 325px;
  min-height: 325px;
  max-height: 325px;
  padding: 8px 5px 8px 8px;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.sms-mini-preview::before {
  content: "";
  position: absolute;
  right: 3px;
  top: var(--mini-scroll-track-top, 58px);
  width: 5px;
  height: var(--mini-scroll-track-height, 240px);
  background: #ededed;
  border-radius: 999px;
  pointer-events: none;
  z-index: 3;
}

.sms-mini-preview::after {
  content: "";
  position: absolute;
  right: 3px;
  top: var(--mini-scroll-thumb-top, 58px);
  width: 5px;
  height: var(--mini-scroll-thumb-height, 46px);
  background: #8f8f8f;
  border-radius: 999px;
  pointer-events: none;
  z-index: 4;
}

.sms-mini-preview.no-custom-scrollbar::before,
.sms-mini-preview.no-custom-scrollbar::after {
  display: none;
}

.mini-preview-top {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  align-items: flex-start;
  flex: 0 0 auto;
  margin: 0 0 9px;
  padding-right: 2px;
}

.mini-preview-top h2 {
  flex: 0 0 auto;
  margin: 0;
  color: #111;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.mini-segment-count {
  flex: 0 0 auto;
  padding: 4px 6px;
  background: #f1f3f4;
  color: #111;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.mini-segment-preview {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  min-height: 0;
  max-height: none;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 2px;
  background: #fff;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mini-segment-preview.has-scroll {
  overflow-y: scroll;
  padding-right: 3px;
}

.mini-segment-preview::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.mini-segment-preview::-webkit-scrollbar-track {
  background: transparent;
}

.mini-segment-preview::-webkit-scrollbar-thumb {
  background: transparent;
}

.mini-segment-group {
  width: 100%;
  flex: 0 0 auto;
}

.mini-segment-label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  margin: 0 0 6px;
  color: #555;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
}

.mini-segment-label-main,
.mini-segment-label-count {
  display: block;
}

.mini-segment-label-main {
  color: #333;
}

.mini-segment-label-count {
  color: #777;
  font-size: 12px;
}

.mini-segment-row {
  display: grid;
  grid-template-columns: repeat(18, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
}

.mini-segment-box,
.mini-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  min-width: 0;
  border: 1px solid #c8c8c8;
  border-radius: 2px;
  background: #fff;
  color: #222;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  overflow: hidden;
  text-align: center;
}

.mini-filled,
.mini-used-box {
  background: #d8d8d8;
}

.mini-empty,
.mini-empty-box {
  background: #fff;
}

.mini-unicode,
.mini-unicode-box {
  background: #ffd6df;
}

.mini-extended,
.mini-extended-box {
  background: #fff2b8;
}

.mini-continuation-box {
  color: #666;
}

.mini-segment-expand-button {
  display: none;
}

.mini-preview-legend {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 auto;
  gap: 5px 7px;
  margin: 9px 0 0;
  color: #555;
  font-size: 10.5px;
  line-height: 1.2;
}

.mini-preview-legend span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.mini-legend-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid #bbb;
  border-radius: 2px;
}

.mini-used {
  background: #d8d8d8;
}

.mini-empty {
  background: #fff;
}

.mini-unicode {
  background: #ffd6df;
}

.mini-extended {
  background: #fff2b8;
}

/* ------------------------------
   Sidebar / Ad Placeholder
------------------------------ */

.sms-sidebar,
#sidebar {
  width: 300px;
  min-width: 300px;
  min-height: 600px;
  margin-left: 0;
  background: transparent;
}

/* ------------------------------
   Article Content
------------------------------ */

#text-content,
.sms-content {
  max-width: 790px;
  padding: 36px 5px 5px;
  color: #111;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

#text-content h2,
.sms-content h2 {
  margin: 1.55em 0 0.55em;
  color: #111;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

#text-content h3,
.sms-content h3 {
  margin: 1.25em 0 0.4em;
  color: #111;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
}

#text-content p,
.sms-content p {
  margin-top: 1em;
  margin-bottom: 1em;
  color: #111;
  font-size: 18px;
  line-height: 1.65;
}

#text-content ul,
.sms-content ul {
  margin: 1em 0;
  padding-left: 1.35em;
}

#text-content li,
.sms-content li {
  margin: 0.45em 0;
  color: #111;
  font-size: 18px;
  line-height: 1.6;
}

#text-content a,
.sms-content a {
  color: #1a73e8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

#text-content a:hover,
.sms-content a:hover {
  text-decoration-thickness: 2px;
}

/* ------------------------------
   Info Tables
------------------------------ */

.sms-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0 26px;
}

.sms-info-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
}

.sms-info-table th,
.sms-info-table td {
  padding: 12px 14px;
  border: 1px solid #d0d0d0;
  text-align: left;
  vertical-align: top;
  color: #111;
  font-size: 16px;
  line-height: 1.45;
}

.sms-info-table th {
  background: #f1f3f4;
  font-weight: 800;
}

.sms-info-table td {
  background: #fff;
}

/* ------------------------------
   Older Posts Placeholder
------------------------------ */

.older-posts {
  padding-top: 0;
}

/* ------------------------------
   Light Theme Compatibility
------------------------------ */

.light-theme #userWord,
.light-theme textarea {
  background-color: var(--black, #fff);
  color: var(--light-color-alt, #111);
}

.light-theme #userWord::placeholder,
.light-theme textarea::placeholder {
  color: #7a7f8f;
}

.light-theme #userWord:focus,
.light-theme textarea:focus {
  border-color: #555;
}

/* ------------------------------
   Large Desktop Preview Upgrade
------------------------------ */

@media only screen and (min-width: 1200px) {
  .parent,
  .sms-tool-grid {
    grid-template-columns: minmax(0, 900px) 300px;
    max-width: 1240px;
  }

  .sms-compose-area {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 16px;
  }

  #userWord,
  textarea {
    min-height: 285px;
    height: 325px;
  }

  .sms-mini-preview {
    height: 325px;
    min-height: 325px;
    max-height: 325px;
    padding: 8px 5px 8px 8px;
  }

  .mini-preview-top h2 {
    font-size: 18px;
  }

  .mini-segment-count {
    font-size: 12px;
    padding: 4px 7px;
  }

  .mini-segment-row {
    grid-template-columns: repeat(20, minmax(0, 1fr));
    gap: 2px;
  }

  .mini-segment-box,
  .mini-box {
    font-size: 10px;
  }

  #text-content,
  .sms-content {
    max-width: 900px;
  }
}

/* ------------------------------
   Very Large Desktop Preview Upgrade
------------------------------ */

@media only screen and (min-width: 1400px) {
  .parent,
  .sms-tool-grid {
    grid-template-columns: minmax(0, 1000px) 300px;
    max-width: 1360px;
  }

  .sms-compose-area {
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 18px;
  }

  #userWord,
  textarea {
    min-height: 365px;
    height: 365px;
  }

  .sms-mini-preview {
    height: 365px;
    min-height: 365px;
    max-height: 365px;
    padding: 9px 5px 9px 9px;
  }

  .mini-segment-row {
    grid-template-columns: repeat(20, minmax(0, 1fr));
    gap: 3px;
  }

  .mini-segment-box,
  .mini-box {
    font-size: 11px;
    border-radius: 3px;
  }

  .mini-preview-top h2 {
    font-size: 19px;
  }

  .mini-segment-label {
    font-size: 14px;
  }

  .mini-segment-label-count {
    font-size: 12.5px;
  }

  #text-content,
  .sms-content {
    max-width: 1000px;
  }
}

/* ------------------------------
   Responsive: Tablet
------------------------------ */

@media only screen and (max-width: 992px) {
  .sms-tool-section {
    padding-top: 84px;
  }

  .parent,
  .sms-tool-grid {
    grid-template-columns: minmax(0, 790px);
    max-width: 820px;
    padding: 10px;
  }

  #title {
    grid-area: 1 / 1 / 2 / 2;
  }

  .sms-metrics {
    grid-area: 2 / 1 / 3 / 2;
  }

  #div9,
  .sms-compose-area {
    grid-area: 3 / 1 / 4 / 2;
  }

  #text-content {
    grid-area: 4 / 1 / 5 / 2;
  }

  .sms-sidebar,
  #sidebar {
    display: none;
  }

  #userWord,
  textarea {
    min-height: 285px;
    height: 325px;
    padding-top: 7px;
  }

  .sms-mini-preview {
    height: 325px;
    min-height: 325px;
    max-height: 325px;
  }

  #text-content,
  .sms-content {
    max-width: 100%;
  }
}

/* ------------------------------
   Responsive: Small Tablet
------------------------------ */

@media only screen and (max-width: 768px) {
  .sms-title-block h1 {
    font-size: 36px;
  }

  .sms-intro {
    font-size: 16px;
  }

  .sms-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
  }

  .metric-card {
    min-height: 62px;
    height: 62px;
    padding: 7px 5px;
  }

  .metric-label,
  #div1,
  #div3,
  #div5,
  #div7,
  #segmentLimitLabel,
  #unicodeMetricLabel {
    min-height: 20px;
    margin-bottom: 3px;
    font-size: 9.2px;
    letter-spacing: 0.01em;
  }

  .metric-value,
  #div2,
  #div4,
  #div6,
  #div8,
  #segmentLimitValue,
  #unicodeCountOutput {
    font-size: 22px;
  }

  #div8.metric-value,
  .metric-card #div8 {
    font-size: 19px;
  }

  .sms-compose-area {
    grid-template-columns: minmax(0, 1fr) 215px;
    gap: 12px;
  }

  #userWord,
  textarea {
    min-height: 285px;
    height: 325px;
    padding-top: 7px;
    font-size: 18px;
  }

  .sms-mini-preview {
    height: 325px;
    min-height: 325px;
    max-height: 325px;
    padding: 7px 5px 7px 7px;
  }

  .sms-mini-preview::before {
    right: 3px;
    top: var(--mini-scroll-track-top, 56px);
    height: var(--mini-scroll-track-height, 245px);
  }

  .sms-mini-preview::after {
    right: 3px;
    top: var(--mini-scroll-thumb-top, 56px);
  }

  .mini-preview-top {
    gap: 4px;
    margin-bottom: 8px;
  }

  .mini-preview-top h2 {
    font-size: 15px;
    letter-spacing: -0.03em;
  }

  .mini-segment-count {
    padding: 3px 5px;
    font-size: 10px;
  }

  .mini-segment-label {
    font-size: 12.5px;
  }

  .mini-segment-label-count {
    font-size: 11.5px;
  }

  .mini-segment-row {
    grid-template-columns: repeat(18, minmax(0, 1fr));
    gap: 1px;
  }

  .mini-segment-box,
  .mini-box {
    font-size: 10px;
  }

  #text-content,
  .sms-content {
    font-size: 17px;
    line-height: 1.62;
  }

  #text-content p,
  .sms-content p,
  #text-content li,
  .sms-content li {
    font-size: 17px;
    line-height: 1.62;
  }

  .sms-info-table th,
  .sms-info-table td {
    padding: 10px 12px;
    font-size: 15px;
  }
}

/* ------------------------------
   Responsive: Mobile
------------------------------ */

@media only screen and (max-width: 550px) {
  .sms-tool-section {
    padding: 76px 6px 32px;
  }

  .parent,
  .sms-tool-grid {
    max-width: 100%;
    padding: 6px;
  }

  .sms-title-block {
    padding-bottom: 14px;
  }

  .sms-title-block h1 {
    font-size: 32px;
  }

  .sms-intro {
    font-size: 15px;
    line-height: 1.5;
  }

  .sms-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  .metric-card {
    min-height: 58px;
    height: 58px;
    padding: 6px 4px;
    border-radius: 9px;
  }

  .metric-label,
  #div1,
  #div3,
  #div5,
  #div7,
  #segmentLimitLabel,
  #unicodeMetricLabel {
    min-height: 18px;
    margin-bottom: 3px;
    font-size: 7.8px;
    line-height: 1.05;
    letter-spacing: 0;
  }

  #div1,
  #div7,
  #unicodeMetricLabel {
    white-space: nowrap;
  }

  .metric-value,
  #div2,
  #div4,
  #div6,
  #div8,
  #segmentLimitValue,
  #unicodeCountOutput {
    font-size: 20px;
  }

  #div8.metric-value,
  .metric-card #div8 {
    font-size: 17px;
  }

  .metric-limit {
    font-size: 0.68em;
  }

  .sms-compose-area {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    align-items: start;
  }

  #userWord,
  textarea {
    min-height: 235px;
    height: 285px;
    padding: 7px 13px 40px 13px;
    border-width: 3px;
    border-radius: 12px;
    font-size: 17px;
  }

  .textarea-copy-button {
    right: 10px;
    bottom: 10px;
    padding: 6px 10px;
    font-size: 12px;
  }

  .sms-warning {
    font-size: 14px;
  }

  .sms-mini-preview {
    height: 455px;
    min-height: 455px;
    max-height: 455px;
    padding: 7px 4px 7px 7px;
    border-radius: 12px;
  }

  .sms-mini-preview::before {
    right: 2px;
    top: var(--mini-scroll-track-top, 55px);
    height: var(--mini-scroll-track-height, 378px);
  }

  .sms-mini-preview::after {
    right: 2px;
    top: var(--mini-scroll-thumb-top, 55px);
  }

  .mini-preview-top {
    gap: 6px;
    margin-bottom: 8px;
  }

  .mini-preview-top h2 {
    font-size: 18px;
  }

  .mini-segment-count {
    padding: 4px 7px;
    font-size: 12px;
  }

  .mini-segment-label {
    margin-bottom: 6px;
    font-size: 12px;
  }

  .mini-segment-label-count {
    font-size: 11px;
  }

  .mini-segment-row {
    grid-template-columns: repeat(16, minmax(0, 1fr));
    gap: 1px;
  }

  .mini-segment-box,
  .mini-box {
    border-width: 1px;
    border-radius: 2px;
    font-size: 13px;
    font-weight: 800;
  }

  .mini-preview-legend {
    gap: 5px 7px;
    font-size: 10px;
  }

  .mini-legend-dot {
    width: 8px;
    height: 8px;
  }

  #text-content,
  .sms-content {
    padding-top: 28px;
    font-size: 16px;
    line-height: 1.6;
  }

  #text-content p,
  .sms-content p,
  #text-content li,
  .sms-content li {
    font-size: 16px;
    line-height: 1.6;
  }

  .sms-content h2,
  #text-content h2 {
    font-size: 25px;
  }

  .sms-content h3,
  #text-content h3 {
    font-size: 20px;
  }
}

/* ------------------------------
   Responsive: Small Mobile
------------------------------ */

@media only screen and (max-width: 480px) {
  .mini-segment-row {
    grid-template-columns: repeat(16, minmax(0, 1fr));
    gap: 1px;
  }

  .sms-mini-preview {
    height: 435px;
    min-height: 435px;
    max-height: 435px;
    padding-right: 4px;
  }

  .sms-mini-preview::before {
    height: var(--mini-scroll-track-height, 360px);
  }

  .mini-segment-box,
  .mini-box {
    font-size: 12px;
  }

  .sms-info-table {
    min-width: 500px;
  }
}

/* ------------------------------
   Extra Small Mobile
------------------------------ */

@media only screen and (max-width: 390px) {
  .metric-card {
    min-height: 56px;
    height: 56px;
    padding: 6px 3px;
  }

  .metric-label,
  #div1,
  #div3,
  #div5,
  #div7,
  #segmentLimitLabel,
  #unicodeMetricLabel {
    font-size: 7.2px;
  }

  .metric-value,
  #div2,
  #div4,
  #div6,
  #div8,
  #segmentLimitValue,
  #unicodeCountOutput {
    font-size: 18px;
  }

  #div8.metric-value,
  .metric-card #div8 {
    font-size: 15px;
  }

  .mini-segment-box,
  .mini-box {
    font-size: 11.5px;
  }
}