.settings-suite {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 22px;
  width: 100%;
}
.suite-nav {
  position: sticky;
  top: 18px;
  align-self: start;
  display: grid;
  gap: 5px;
  padding: 8px;
  border: 1px solid #dce5f1;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 35px #102a5b0d;
}
.suite-nav button {
  padding: 11px 13px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #637087;
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
  transition: 0.2s;
}
.suite-nav button:hover {
  background: #f2f6fc;
  color: #17366d;
}
.suite-nav button.active {
  background: #eaf1ff;
  color: #185bc8;
}
.suite-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.suite-card {
  overflow: hidden;
  border: 1px solid #dce5f1;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 35px #102a5b0d;
}
.suite-wide {
  grid-column: 1/-1;
}
.suite-card > header {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 21px 23px;
  border-bottom: 1px solid #e5ebf3;
}
.suite-card > header > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #eaf1ff;
  color: #2165d4;
  font-size: 17px;
  font-weight: 900;
}
.suite-card h2 {
  margin: 0;
  color: #101c36;
  font-size: 22px;
}
.suite-card header p {
  margin: 3px 0 0;
  color: #718098;
  font-size: 14px;
}
.suite-body {
  padding: 18px 23px;
}
.suite-profile {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
}
.suite-avatar {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: linear-gradient(145deg, #2969e8, #174da9);
  color: #fff;
  font-size: 27px;
  font-weight: 900;
  box-shadow: 0 12px 25px #2969e82b;
}
.suite-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.suite-fields label {
  display: grid;
  gap: 6px;
  color: #43516a;
  font-size: 13px;
  font-weight: 800;
}
.suite-fields input,
.suite-fields select,
.suite-row input:not([type="checkbox"]),
.suite-row select,
.suite-password input {
  width: 100%;
  min-height: 46px;
  padding: 9px 11px;
  border: 1px solid #d7e0ec;
  border-radius: 10px;
  background: #fbfcfe;
  color: #17233a;
  font: inherit;
  font-size: 15px;
  outline: 0;
  transition: 0.2s;
}
.suite-fields input:focus,
.suite-fields select:focus,
.suite-row input:focus,
.suite-row select:focus,
.suite-password input:focus {
  border-color: #78a3ec;
  box-shadow: 0 0 0 3px #2969e816;
}
.suite-save {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.suite-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  border-bottom: 1px solid #e8edf4;
}
.suite-row:last-child {
  border-bottom: 0;
}
.suite-row > span {
  min-width: 0;
}
.suite-row b,
.suite-row small {
  display: block;
}
.suite-row b {
  color: #17233a;
  font-size: 15px;
}
.suite-row small {
  margin-top: 4px;
  color: #718098;
  font-size: 13px;
  line-height: 1.4;
}
.suite-row > select,
.suite-row > input,
.suite-row > .styled-select {
  width: min(190px, 44%);
}
.suite-switch {
  position: relative;
  flex: 0 0 48px;
  width: 48px;
  height: 27px;
}
.suite-switch input {
  position: absolute;
  opacity: 0;
}
.suite-switch i {
  position: absolute;
  inset: 0;
  border-radius: 99px;
  background: #d3dce9;
  transition: 0.25s;
}
.suite-switch i:after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 7px #102a5b33;
  transition: 0.25s;
}
.suite-switch input:checked + i {
  background: #2969e8;
}
.suite-switch input:checked + i:after {
  transform: translateX(21px);
}
.suite-primary,
.suite-secondary,
.suite-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 15px;
  border: 1px solid transparent;
  border-radius: 9px;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}
.suite-primary {
  background: #2969e8;
  color: #fff;
}
.suite-secondary {
  border-color: #d4deeb;
  background: #fff;
  color: #17366d;
}
.suite-danger {
  border-color: #f0cfd2;
  background: #fff7f7;
  color: #a72b38;
}
.suite-actions,
.suite-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.suite-actions {
  margin-top: 17px;
}
.suite-status {
  display: grid;
  gap: 3px;
  margin-bottom: 8px;
  padding: 13px;
  border: 1px solid #b9eadf;
  border-radius: 11px;
  background: #eefaf7;
  color: #08745f;
}
.suite-status small {
  font-size: 13px;
}
.suite-password {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.3s,
    opacity 0.25s;
}
.suite-password.open {
  grid-template-rows: 1fr;
  opacity: 1;
}
.suite-password form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  overflow: hidden;
  padding: 0;
}
.suite-password.open form {
  padding: 14px 0;
}
.suite-password form input:first-child {
  grid-column: 1/-1;
}
.suite-plan {
  justify-self: center;
  width: min(100%, 850px);
  background:
    radial-gradient(circle at 75% 0, #4d83dd55, transparent 17rem),
    linear-gradient(145deg, #071d43, #153f7f);
  color: #fff;
}
.suite-plan header {
  border-color: #ffffff18;
}
.suite-plan header > span {
  background: #ffffff15;
  color: #fff;
}
.suite-plan h2 {
  color: #fff;
}
.suite-plan header p {
  color: #c3d1e4;
}
.suite-plan ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 25px;
  padding-left: 20px;
  color: #e7eef8;
}
.suite-plan .suite-actions {
  justify-content: center;
}
.suite-plan .suite-primary {
  background: #25c5a8;
  color: #063d35;
}
.settings-suite[data-motion="reduce"] * {
  transition: none !important;
}
@media (max-width: 1000px) {
  .settings-suite {
    grid-template-columns: 1fr;
  }
  .suite-nav {
    position: static;
    display: flex;
    overflow: auto;
  }
  .suite-nav button {
    white-space: nowrap;
  }
  .suite-grid {
    grid-template-columns: 1fr;
  }
  .suite-wide {
    grid-column: auto;
  }
}
@media (max-width: 620px) {
  .suite-card > header,
  .suite-body {
    padding-left: 17px;
    padding-right: 17px;
  }
  .suite-profile {
    grid-template-columns: 1fr;
  }
  .suite-fields {
    grid-template-columns: 1fr;
  }
  .suite-row {
    align-items: flex-start;
  }
  .suite-row > select,
  .suite-row > input,
  .suite-row > .styled-select {
    width: 45%;
  }
  .suite-password form,
  .suite-plan ul {
    grid-template-columns: 1fr;
  }
  .suite-password form input:first-child {
    grid-column: auto;
  }
}
html[data-formiva-density="compact"] .suite-row {
  min-height: 54px;
}
html[data-formiva-density="compact"] .suite-body {
  padding-top: 12px;
  padding-bottom: 12px;
}
html[data-formiva-text="large"] {
  font-size: 112%;
}
html[data-formiva-contrast="high"] .suite-card,
html[data-formiva-contrast="high"] .suite-nav {
  border-color: #8fa2bb;
}
html[data-formiva-motion="reduce"] * {
  scroll-behavior: auto !important;
  animation-duration: 0.01ms !important;
  transition-duration: 0.01ms !important;
}
