:root {
  --basic-color-white: #fff;
  --Yellow-main-color: #edff00;
}
* {
  box-sizing: border-box;
}

.black.black {
  color: #17364b;
}

.po_root {
  padding: 263px 20px 150px;
  max-width: 1414px;
  margin: 0 auto;
  width: 100%;
}
.po-title {
  margin: 0 0 60px 0;
  font-size: 44px;
  letter-spacing: 0;
  font-weight: 600;
  color: #17364b;
}
.po-form {
  margin: 0;
}
.po-validationSummary {
  background: rgba(178, 37, 37, 0.08);
  border: 1px solid rgba(178, 37, 37, 0.24);
  border-radius: 10px;
  color: #8f1f1f;
  font-size: 15px;
  margin: 0 0 24px;
  padding: 14px 18px;
}
.po-validationSummary ul {
  margin: 0;
  padding-left: 18px;
}
.po-validationSummary.validation-summary-valid {
  display: none;
}

.po-wrap {
  display: grid;
  grid-template-columns: 398px 1fr;
  gap: 36px;
  justify-content: space-between;
}

.po-nav {
  position: sticky;
  top: 48px;
  align-self: start;
}
.po-navItem {
  display: block;
  padding: 40px 0px;
  color: #ACB7BF;
  text-decoration: none;
  border-bottom: 1px solid #ACB7BF;
  font-size: 24px;
  font-family: Commissioner;
  font-weight: 400;
}
.po-navItem:first-of-type {
  padding-top: 0;
}
.po-navGroup {
  border-bottom: 1px solid #ACB7BF;
}
.po-navItem--child {
  padding-left: 36px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 0;
  font-size: 24px;
}

.po-navItem--child:first-of-type {
  padding-top: 40px;
}

.po-navItem.is-active {
  color: #17364b;
}

.po-main {
  max-width: 832px;
}
.po-section.po-section {
  background-color: rgba(206, 207, 209, 0.2);
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
}
.po-sectionHeader {
  align-items: center;
  background: transparent;
  border: 0;
  color: #17364b;
  cursor: default;
  display: flex;
  font-weight: 400;
  font-size: 24px;
  gap: 12px;
  justify-content: space-between;
  padding: 32px 36px 0px;
  width: 100%;
}
.po-sectionHeader--check {
  justify-content: space-between;
  padding-bottom: 32px;
}
.po-sectionBody {
  padding: 20px 36px 40px;
  display: block;
}
.po-sectionBody--empty {
  display: none;
  padding: 0;
}
.po-section--optional.is-open .po-sectionHeader {
  padding-bottom: 0;
}
.po-section--optional .po-sectionBody {
  display: none;
}
.po-section--optional.is-open .po-sectionBody {
  display: block;
}

.po-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  row-gap: 20px;
  column-gap: 36px;
}
.po-grid--single {
  grid-template-columns: minmax(0, 1fr);
}
.po-grid--twoUp {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.po-grid--threeUp {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.po-grid--fourUp {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.po-grid--yourInfoAddress {
  grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(0, 0.9fr));
}
.po-grid--narrowField {
  max-width: 400px;
}
.po-grid--halfWidth {
  max-width: calc((100% - 36px) / 2);
}
.po-grid--tallLabels .po-label {
  min-height: 49px;
  display: flex;
  align-items: flex-end;
}
.po-chevron::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #94a3b8;
  border-bottom: 2px solid #94a3b8;
  transform: rotate(45deg);
  transition: transform 180ms ease;
}
.po-section--optional.is-open .po-chevron::before {
  transform: rotate(-135deg);
}
.po-chevron {
  cursor: pointer;
}
.po-col-12 {
  grid-column: span 12;
}
.po-col-6 {
  grid-column: span 6;
}
.po-col-4 {
  grid-column: span 4;
}
.po-col-3 {
  grid-column: span 3;
}
.po-col-2 {
  grid-column: span 2;
}

@media (max-width: 980px) {
  .po-wrap {
    grid-template-columns: 1fr;
  }
  .po-nav {
    display: none;
  }
  .po-main {
    max-width: none;
  }
  .po-col-6,
  .po-col-4,
  .po-col-3,
  .po-col-2 {
    grid-column: span 12;
  }
  .po-grid--twoUp,
  .po-grid--threeUp,
  .po-grid--fourUp,
  .po-grid--yourInfoAddress {
    grid-template-columns: minmax(0, 1fr);
  }
  .po-grid--narrowField {
    max-width: none;
  }
  .po-grid--halfWidth {
    max-width: none;
  }
  .po-grid--tallLabels .po-label {
    min-height: auto;
    display: block;
    line-height: normal;
  }
  .po-sectionHeader--check {
    padding-bottom: 32px;
  }
  .po-section--optional.is-open .po-sectionHeader {
    padding-bottom: 0;
  }
  .po-title {
    font-size: 34px;
  }
}

.po-label {
  color: #ACB7BF;
  display: block;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
}

.po-input,
.po-select {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  /* border: 1px solid rgba(255, 255, 255, 0.92); */
  border: none;
  background: #fff;
  color: #c8d0d8;
  font-size: 16px;
  font-weight: 400;
  padding: 0 16px;
  outline: none;
  /* box-shadow: 0 1px 0 rgba(255, 255, 255, 0.45); */
  box-shadow: none;
}
.po-input:focus,
.po-select:focus {
  border-color: #d5dbe1;
}

.po-textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #fff;
  padding: 12px;
  outline: none;
  font-size: 14px;
}

.po-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #17364b;
  margin: 0px 0 20px;
}
.po-detailBlock + .po-detailBlock {
  margin-top: 42px;
}
.po-subblock {
  margin-top: 20px;
}
.po-subblock--clientType {
  margin-top: 38px;
}

.po-radioRow {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.po-radioRow--detail {
  gap: 18px 28px;
}
.po-radioRow--inline {
  gap: 18px;
  flex-wrap: nowrap;
}
.po-radioRow--clientType {
  gap: 28px 34px;
}
.po-radioRow--clientTypeSecondary,
.po-radioRow--clientTypeOther {
  margin-top: 16px;
}
.po-radio {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #acb7bf;
  cursor: pointer;
  user-select: none;
  font-weight: 400;
}
.po-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.po-radio span {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid #acb7bf;
  background: #fff;
  position: relative;
}
.po-radio input:checked + span {
  border-color: #17364b;
}
.po-radio input:checked + span::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: #17364b;
}
.po-field--narrow {
  max-width: 400px;
}
.po-label--inline {
  color: #acb7bf;
  margin-bottom: 0;
}
.po-label--inlineUpload {
  color: #acb7bf;
  margin-bottom: 0;
  white-space: nowrap;
}

.po-selectWrap {
  position: relative;
}
.po-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 58px;
}
.po-select::-ms-expand {
  display: none;
}
.po-selectWrap::after {
  content: '';
  position: absolute;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #cfd6de;
  border-bottom: 2px solid #cfd6de;
  transform: translateY(-62%) rotate(45deg);
  pointer-events: none;
}

.po-checkTitle {
  display: flex;
  align-items: center;
  gap: 18px;
  cursor: pointer;
}
.po-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.po-check {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  border: 2px solid #acb7bf;
  background: transparent;
  position: relative;
  flex: 0 0 auto;
}
.po-checkbox:checked + .po-check {
  border-color: #17364b;
  background: #17364b;
}
.po-checkbox:checked + .po-check::after {
  content: '';
  position: absolute;
  left: 8px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: 2px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg);
}

.po-divider {
  height: 1px;
  background: rgba(17, 24, 39, 0.08);
  margin: 16px 0;
}
.po-mt-10 {
  margin-top: 10px;
}
.po-mt-14 {
  margin-top: 14px;
}
.po-mt-24 {
  margin-top: 24px;
}
.po-hidden {
  display: none !important;
}

.po-file {
  width: 100%;
}
.po-fileInput {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
}
.po-fileRow {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.po-fileButton {
  min-width: 176px;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  background: #fff;
  color: #acb7bf;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
}
.po-filePlus {
  font-size: 22px;
  line-height: 1;
  margin-top: -2px;
}
.po-fileName {
  color: #acb7bf;
  font-size: 16px;
}
.po-inlineQuestion {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.po-uploadInline {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
}
.po-textarea--large {
  min-height: 106px;
  border: none;
  resize: none;
}

.po-submitBar {
  /* position: sticky; */
  /* bottom: 0; */
  padding: 14px 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.35));
  margin-top: 40px;
}
.po-submitBtn {
  width: 100%;
  height: 40px;
  border: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  background-color: #EDFF00;
  border-radius: 40px;
  transition: background-color 150ms ease;
}

.po-submitBtn:hover {
  background-color: #d5d500;
}

.po-submitBtn:active {
  background-color: #a0a000;
}

.po-submitBtn:disabled {
  background-color: #f0f0f0;
  color: #c8d0d8;
  cursor: not-allowed;
}


@media (max-width: 980px) {
  .po_root {
    padding: 120px 20px 100px;
  }
  .po-radioRow--inline {
    flex-wrap: wrap;
  }
  .po-uploadInline {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 767px) {
  .po_root {
    padding: 120px 16px 100px;
  }
  .po-title {
    margin-bottom: 28px;
    font-size: 30px;
    line-height: 1.05;
  }
  .po-wrap {
    gap: 0;
  }
  .po-section.po-section {
    border-radius: 18px;
    margin-bottom: 14px;
  }
  .po-sectionHeader {
    padding: 24px 18px 0;
    font-size: 18px;
    line-height: 1.2;
  }
  .po-sectionHeader--check {
    padding-bottom: 24px;
  }
  .po-section--optional.is-open .po-sectionHeader {
    padding-bottom: 0;
  }
  .po-sectionBody {
    padding: 18px 18px 28px;
  }
  .po-checkTitle {
    gap: 12px;
  }
  .po-check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
  }
  .po-checkbox:checked + .po-check::after {
    left: 6px;
    top: 2px;
  }
  .po-label,
  .po-subtitle,
  .po-radio,
  .po-fileName,
  .po-fileButton,
  .po-label--inline,
  .po-label--inlineUpload {
    font-size: 14px;
  }
  .po-input,
  .po-select,
  .po-fileButton {
    height: 44px;
    font-size: 16px;
  }
  .po-grid {
    row-gap: 16px;
    column-gap: 16px;
  }
  .po-detailBlock + .po-detailBlock {
    margin-top: 28px;
  }
  .po-subblock--clientType {
    margin-top: 28px;
  }
  .po-radioRow,
  .po-radioRow--clientType,
  .po-radioRow--detail {
    gap: 14px;
  }
  .po-radioRow--clientTypeSecondary,
  .po-radioRow--clientTypeOther {
    margin-top: 14px;
  }
  .po-radioRow--inline {
    gap: 14px;
  }
  .po-fileRow {
    gap: 10px;
    align-items: flex-start;
    flex-direction: column;
  }
  .po-fileButton {
    min-width: 0;
    width: 100%;
    justify-content: flex-start;
  }
  .po-fileName {
    width: 100%;
    line-height: 1.3;
  }
  .po-inlineQuestion {
    gap: 10px;
    align-items: flex-start;
  }
  .po-label--inline,
  .po-label--inlineUpload {
    white-space: normal;
  }
  .po-uploadInline {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .po-field--narrow,
  .po-grid--narrowField,
  .po-grid--halfWidth {
    max-width: none;
  }
  .po-textarea {
    font-size: 16px;
  }
  .po-textarea--large {
    min-height: 160px;
  }
  .po-submitBar {
    margin-top: 28px;
    padding: 8px 0 0;
    background: none;
  }
  .po-submitBtn {
    height: 46px;
    font-size: 14px;
  }
}

@media (min-width: 981px) {
  .po_root {
    max-width: none;
    padding: 120px 32px 140px;
  }
  .po-title {
    font-size: 36px;
    line-height: 1.08;
    margin-bottom: 48px;
  }
  .po-wrap {
    grid-template-columns: minmax(190px, 220px) minmax(0, 1fr);
    gap: 32px;
  }
  .po-main {
    max-width: none;
  }
  .po-navItem {
    padding: 20px 0;
    font-size: 18px;
    line-height: 1.4;
  }
  .po-navItem--child {
    padding-left: 22px;
  }
  .po-section.po-section {
    border-radius: 18px;
  }
  .po-sectionHeader {
    font-size: 20px;
    padding: 24px 28px 0;
  }
  .po-sectionHeader--check {
    padding-bottom: 24px;
  }
  .po-section--optional.is-open .po-sectionHeader {
    padding-bottom: 0;
  }
  .po-sectionBody {
    padding: 20px 28px 40px;
  }
  .po-grid {
    column-gap: 24px;
  }
  .po-grid--halfWidth {
    max-width: calc((100% - 24px) / 2);
  }
  .po-radioRow--clientType {
    gap: 20px 24px;
  }
}

@media (min-width: 1100px) {
  .po_root {
    padding: 132px 48px 140px;
  }
  .po-wrap {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 40px;
  }
  .po-title {
    font-size: 44px;
  }
  .po-navItem {
    font-size: 20px;
  }
}

@media (min-width: 1240px) {
  .po_root {
    max-width: 1240px;
    padding: 150px 64px 140px;
  }
  .po-wrap {
    grid-template-columns: 253px minmax(0, 1fr);
    gap: 56px;
  }
  .po-navItem {
    padding: 24px 0;
    font-size: 21px;
  }
  .po-navItem--child {
    padding-left: 28px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .po-sectionHeader {
    font-size: 22px;
    padding: 28px 32px 0;
  }
  .po-sectionHeader--check {
    padding-bottom: 28px;
  }
  .po-section--optional.is-open .po-sectionHeader {
    padding-bottom: 0;
  }
  .po-sectionBody {
    padding: 20px 32px 42px;
  }
  .po-grid {
    column-gap: 32px;
  }
  .po-grid--halfWidth {
    max-width: calc((100% - 32px) / 2);
  }
  .po-radioRow--clientType {
    gap: 24px 30px;
  }
}


@media (min-width: 1366px) {
  .po_root {
    max-width: 1366px;
    padding: 180px 80px 140px;
  }
  .po-title {
    margin-bottom: 56px;
    font-size: 56px;
  }
  .po-wrap {
    grid-template-columns: 300px minmax(0, 832px);
    gap: 70px;
  }
  .po-main {
    max-width: 832px;
  }
  .po-navItem {
    padding: 30px 0;
    font-size: 22px;
  }
  .po-navItem--child {
    padding-left: 32px;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}

@media (min-width: 1600px) {
  .po_root {
    max-width: 1414px;
    padding: 220px 0 150px;
  }
  .po-wrap {
    grid-template-columns: 398px 832px;
    gap: 184px;
  }
  .po-navItem {
    padding: 40px 0;
    font-size: 24px;
  }
  .po-navItem--child {
    padding-left: 36px;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 24px;
  }
}

@media (min-width: 1920px) {
  .po_root {
    padding-top: 263px;
  }
  .po-title {
    font-size: 79px;
    line-height: 1.1;
  }
}
