body {
  word-wrap: break-word;
}

.item-container {
  display: flex;
  align-items: stretch;
}

.item {
  width: 33%;
  min-height: 100%;
}

.item:not(:last-child) {
  margin-right: 15px;
}


@media (max-width: 767px) {
  .item-container {
    flex-direction: column;
  }


  .item {
    width: 100%;
    height: auto;
  }

  .item:not(:last-child) {
    margin-right: 0;
    margin-bottom: 15px;
  }
}



.check-group {
  padding: 1.5rem;
  counter-reset: total;
  counter-reset: checked;
}

.check-group>*+* {
  margin-top: 0.75rem;
}

.checkbox {
  cursor: pointer;
  display: flex;
  align-items: center;
  counter-increment: total;
}

.checkbox__input {
  position: absolute;
  width: 1.375em;
  height: 1.375em;
  opacity: 0;
  cursor: pointer;
}

.checkbox__input:checked+.checkbox__icon .tick {
  stroke-dashoffset: 0;
}

.checkbox__icon {
  width: 1.375em;
  height: 1.375em;
  flex-shrink: 0;
  overflow: visible;
}

.checkbox__icon .tick {
  stroke-dasharray: 20px;
  stroke-dashoffset: 20px;
  transition: stroke-dashoffset .2s ease-out;
}

.checkbox__label {
  margin-left: 0.5em;
}

.check-group .checkbox input[type="checkbox"]:checked {
  counter-increment: checked;
}

.check-group__result {
  font-weight: bold;
  padding-top: 0.75rem;
  border-top: 1px solid rgb(0 0 0 / 0.2);
}

.check-group__result::after {
  content: counter(checked) " / " counter(total);
  padding-left: 1ch;
}

/*docs*/
.wrapper {
  min-height: 70vh;
}

.wrapper h1 {
  margin-bottom: 50px;
  text-align: center;
  word-wrap: break-word;
}

.wrapper p,
.wrapper ul li {
  font-size: 18px;
  line-height: 22px;
}

.wrapper p:not(:last-child) {
  margin-bottom: 16px;
}

.wrapper a {
  text-decoration: none;
  cursor: pointer;
  color: var(--color-primary);
}

.wrapper a:hover {
  color: var(--color-hover);
}

@media(max-width:640px) {
  .wrapper {
    padding: 150px 50px;
    text-align: justify;
  }

}

@media(max-width:480px) {
  .wrapper {
    padding: 200px 25px;
  }

  .wrapper p,
  .wrapper ul li {
    font-size: 16px;
  }

  .wrapper h1 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}

/*thanks*/
.thanksWrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.thanks__img-box {
  text-align: center;
}

.thanksLogo {
  width: 80px;
}

.thanksTextContent {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}

.thanksText {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .thanksLogo {
    width: 80px;
  }

  .thanksWrapper {
    padding: 0 30px;
  }

  .thanksText {
    font-size: 14px;
  }
}

.docs-header {
  background-color: rgba(151, 151, 151, 0.5) !important;
}