@font-face {
  font-family: "Factor A TRIAL";
  src: url("../fonts/../fonts/FactorALight-Regular.woff2") format("woff2");
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Factor A TRIAL";
  src: url("../fonts/../fonts/FactorA-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: "Factor A TRIAL";
  src: url("../fonts/../fonts/FactorAMedium-Regular.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
* {
  box-sizing: border-box;
}

:root {
  --font-family: "Factor A TRIAL", sans-serif;
  --second-family: "Bork Display", sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #0e1724;
  color: #fff;
  font-family: var(--font-family);
}

.header {
  background: #05041d;
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 20px;
}
.header__nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.header__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  color: white;
  background: #2563eb;
}
.header__link:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}
.header__link:active {
  transform: translateY(0);
}
.header__link--csv {
  background: #313131;
}
.header__link--csv:hover {
  background: #212121;
}
.header__link--ods {
  background: #313131;
}
.header__link--ods:hover {
  background: #212121;
}

.form {
  width: 560px;
  margin: 0 auto;
  padding: 8px 18px 18px;
}
.form__title {
  margin: 0 0 14px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
}
.form__top {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}
.form__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.form__label {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.form__text-input, .form__select, .form__count-input {
  height: 30px;
  box-sizing: border-box;
  border: 2px solid #7c7c7c;
  background: #0e1724;
  color: #fff;
  font: inherit;
}
.form__text-input, .form__select {
  width: 193px;
  padding: 0 10px;
}
.form__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #474d5a 50%), linear-gradient(135deg, #474d5a 50%, transparent 50%);
  background-position: calc(100% - 18px) 12px, calc(100% - 8px) 12px;
  background-size: 10px 10px, 10px 10px;
  background-repeat: no-repeat;
}
.form__bottom {
  display: grid;
  grid-template-columns: 150px 1fr;
  -moz-column-gap: 22px;
       column-gap: 22px;
  margin-bottom: 16px;
}
.form__table-head {
  display: grid;
  grid-template-columns: 1fr 92px;
  -moz-column-gap: 14px;
       column-gap: 14px;
  margin-bottom: 8px;
}
.form__section-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
}
.form__options, .form__items {
  display: grid;
  gap: 6px;
}
.form__radio-option, .form__checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  color: #fff;
}
.form__radio-input, .form__checkbox-input, .form__file-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.form__radio-mark {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  border: 2px solid #7c7c7c;
  border-radius: 50%;
  background: #0e1724;
}
.form__radio-input:checked + .form__radio-mark {
  background: radial-gradient(circle, #2e64e7 0 5px, #0e1724 6px);
  border-color: #134e9b;
}
.form__checkbox-mark {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 2px solid #7c7c7c;
  background: #0e1724;
}
.form__checkbox-input:checked + .form__checkbox-mark {
  border-color: #134e9b;
  background: #1d2025;
}
.form__checkbox-input:checked + .form__checkbox-mark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  width: 5px;
  height: 10px;
  border: solid #134e9b;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.form__item-row {
  display: grid;
  grid-template-columns: 1fr 46px;
  align-items: center;
  -moz-column-gap: 14px;
       column-gap: 14px;
}
.form__count-input {
  width: 42px;
  padding: 0;
  text-align: center;
}
.form__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  justify-content: center;
}
.form__file-button, .form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 3px;
  background: #171717;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.form__file-button:hover, .form__submit:hover {
  border-color: #2e64e7;
}
.form__file-button:focus-visible, .form__submit:focus-visible {
  outline: 2px solid #2e64e7;
  outline-offset: 2px;
}
.form__file-button:hover {
  background: #1d2025;
}
.form__submit {
  width: 243px;
  background: #2e64e7;
  color: #0e1724;
}
.form__submit:hover {
  background: #134e9b;
  border-color: #134e9b;
}
.form__submit--secondary {
  background: #3d4044;
  color: #fff;
}
.form__submit--secondary:hover {
  background: #1d2025;
}
.form__buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-direction: column;
}
.form__file-name {
  font-size: 18px;
  color: #474d5a;
}
.form__summary {
  margin: 0 0 14px;
  padding: 12px 14px;
  border: 2px solid #7c7c7c;
  border-radius: 8px;
  background: #171717;
  font-size: 18px;
  color: #fff;
}
.form__summary-title {
  margin-bottom: 8px;
  font-weight: 700;
  color: #1764c9;
}
.form__summary-row {
  margin-bottom: 6px;
}
.form__summary-row--total {
  margin-bottom: 0;
  font-weight: 700;
  color: #134e9b;
}/*# sourceMappingURL=style.css.map */