:root,
page {
  --nut-scale-f: 1;
  --nut-scale-font: var(--nut-scale-f, 1);
  --nut-scale-icon: var(--nut-scale-f, 1);
  --nut-icon-height: calc(16px * var(--nut-scale-icon, var(--nut-scale-f, 1))) !important;
  --nut-icon-width: calc(16px * var(--nut-scale-icon, var(--nut-scale-f, 1))) !important;
  --nut-icon-line-height: calc(16px * var(--nut-scale-icon, var(--nut-scale-f, 1))) !important;
}

/* #ifdef harmony */
/* #endif */
/* #ifndef harmony */
/* #endif */
.nut-row {
  display: flex;
  flex-direction: row;
  width: 100%;
  overflow: hidden;
}
.nut-row:after {
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
  content: "";
}
.nut-row-flex {
  display: flex;
}
.nut-row-flex:after {
  display: none;
}
.nut-row-justify-center {
  justify-content: center;
}
.nut-row-justify-end {
  justify-content: flex-end;
}
.nut-row-justify-space-between {
  justify-content: space-between;
  align-items: center;
}
.nut-row-justify-space-around {
  justify-content: space-around;
}
.nut-row-align-flex-start {
  align-items: flex-start;
}
.nut-row-align-center {
  align-items: center;
}
.nut-row-align-flex-end {
  align-items: flex-end;
}
.nut-row-flex-wrap {
  flex-wrap: wrap;
}
.nut-row-flex-nowrap {
  flex-wrap: nowrap;
}
.nut-row-flex-reverse {
  flex-wrap: wrap-reverse;
}