@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Regular.woff2") format("woff2"), url("fonts/Montserrat-Regular.woff") format("woff"), url("fonts/Montserrat-Regular.eot") format("embedded-opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-SemiBold.woff2") format("woff2"), url("fonts/Montserrat-SemiBold.woff") format("woff"), url("fonts/Montserrat-SemiBold.eot") format("embedded-opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Bold.woff2") format("woff2"), url("fonts/Montserrat-Bold.woff") format("woff"), url("fonts/Montserrat-Bold.eot") format("embedded-opentype");
  font-weight: 700;
  font-style: normal;
}
body {
  background-color: #F2F2F2;
  font-family: "Montserrat", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 12px;
}
@media (max-width: 860px) {
  * {
    font-size: 11px;
  }
}

svg {
  display: block;
  width: 100%;
  height: 100%;
}

.logo {
  width: 281px;
  height: 35px;
  display: block;
  margin-bottom: 35px;
}
@media (max-width: 860px) {
  .logo {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}

.form {
  padding-inline: 50px;
  padding-block: 40px;
  border-radius: 30px;
  background-color: #fff;
  max-width: 812px;
  margin: 50px auto;
  width: 100%;
  height: calc(100vh - 100px);
  position: relative;
}
@media (max-width: 860px) {
  .form {
    padding: 10px;
    margin: 0;
    border-radius: 0;
    height: 100%;
  }
}

.form-inside__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
}

.content__steps {
  padding-top: 10px;
}

.content__step {
  padding-bottom: 10px;
}

.content__step::marker {
  content: none;
  display: none;
}

html, body {
  height: 100%;
}

.form__footer {
  position: absolute;
  bottom: 40px;
  left: 0;
  padding-inline: 50px;
  padding-top: 20px;
  background-color: #fff;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
@media (max-width: 860px) {
  .form__footer {
    padding: 10px;
    padding-bottom: 0px;
    border-radius: 0;
    bottom: 10px;
    gap: 10px;
  }
}

.form__submit {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #555;
  border: none;
  border-radius: 10px;
  padding: 15px 20px;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-block;
}
@media (max-width: 860px) {
  .form__submit {
    width: 100%;
    text-align: center;
  }
}

.quant {
  height: 26px;
  width: 26px;
  min-width: 26px;
  display: block;
  border: 1px solid #A9A9A9;
  border-radius: 5px;
  position: relative;
}
@media (max-width: 860px) {
  .quant {
    height: 20px;
    width: 20px;
    min-width: 20px;
    margin-top: 4px;
  }
}

.checked {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  width: 16px;
  height: 16px;
  margin: auto;
  display: none;
}
@media (max-width: 860px) {
  .checked {
    width: 12px;
    height: 12px;
  }
}

#agree {
  display: none;
}

#agree:checked ~ .quant .checked {
  display: block;
}

label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
@media (max-width: 860px) {
  label {
    gap: 10px;
    align-items: flex-start;
  }
}
label p {
  line-height: 1.4em;
}

h1 {
  font-weight: bold;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.semibold {
  font-weight: 600;
}

.center {
  text-align: center;
}

.form__checkbox {
  position: relative;
}

.form__inside {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  overflow-y: auto;
}

.info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 25px;
  padding-bottom: 5px;
  line-height: 1.61em;
}

p span {
  font-weight: 600;
}

strong {
  font-weight: 600;
}

.content {
  line-height: 1.61em;
  counter-reset: section;
}
.content .content__section {
  counter-increment: section;
}
.content .content__section .content__list--ordered {
  list-style: none;
  counter-reset: item;
}
.content .content__section .content__list--ordered > li {
  counter-increment: item;
  padding-left: 2em;
  position: relative;
}
.content .content__section .content__list--ordered > li::before {
  content: counter(section) "." counter(item) ".";
  position: absolute;
  left: 0;
}
.content .content__section .content__list--ordered > li .content__list--sub {
  list-style: none;
  counter-reset: subitem;
}
.content .content__section .content__list--ordered > li .content__list--sub > li {
  counter-increment: subitem;
  padding-left: 35px;
}
.content .content__section .content__list--ordered > li .content__list--sub > li::before {
  content: counter(section) "." counter(item) "." counter(subitem) ".";
}

.content__section-title {
  font-weight: 600;
  text-transform: uppercase;
  padding-block: 20px;
}

th {
  font-weight: 600;
}

.content__term {
  padding-bottom: 5px;
}
.content__term dt {
  display: inline;
  font-weight: 600;
}
.content__term dd {
  display: inline;
}

.content__requisites {
  padding-bottom: 5px;
}
.content__requisites div {
  padding-bottom: 5px;
}
.content__requisites dt {
  font-weight: 600;
}
table {
  border-spacing: 0;
  padding-block: 10px;
  width: 100%;
}

thead {
  background-color: #555;
}
thead tr th:first-child {
  border-top-left-radius: 10px;
}
thead tr th:last-child {
  border-top-right-radius: 10px;
}

th {
  color: #fff;
  padding: 10px;
}

td {
  padding: 10px;
  line-height: 1.4em;
}

li {
  padding-bottom: 5px;
}
li ul {
  padding-top: 10px;
  padding-left: 15px;
}

#section-10 ol > li {
  padding-left: 30px;
}

tbody tr td {
  border-bottom: 1px solid #555;
  border-right: 1px solid #555;
}
tbody tr td:first-child {
  border-right: 1px solid #555;
  border-left: 1px solid #555;
}
tbody tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
tbody tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}

.form__tooltip {
  position: absolute;
  bottom: 100%;
  left: 0;
  background-color: #333;
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 11px;
  line-height: 1.4em;
  max-width: 260px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
  white-space: normal;
}
.form__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 16px;
  border: 5px solid transparent;
  border-top-color: #333;
}
.form__tooltip--visible {
  opacity: 1;
  transform: translateY(0);
}

.form__submit {
  cursor: pointer;
}
.form__submit--disabled {
  opacity: 0.4;
  cursor: not-allowed;
}/*# sourceMappingURL=style.css.map */