:root {
  --first-color: #3b3b98;
}

.question--open .answer {
  overflow: visible !important;
  max-height: 300px !important;
  padding: 20px;
}

@media screen and (max-width: 575.98px) {
  body {
    word-break: break-word;
  }
  .question--open .answer {
    max-height: 550px !important;
  }
}

.thanks {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: 200px 0 150px;
}
.thanks .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
}
.thanks img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}
.thanks p {
  text-align: center;
  font-size: 18px;
  color: inherit;
}
.thanks p.thanks-text {
  color: var(--first-color);
}
@media screen and (max-width: 767.98px) {
  .thanks {
    padding: 150px 0 100px;
  }
  .thanks p {
    font-size: 14px;
  }
}
.docs {
  word-break: break-word;
  padding: 50px 0;
}
.docs a.logo-link {
  display: flex;
  justify-content: center;
}
.docs a.logo-link img {
  width: 100px;
  margin-bottom: 50px;
}
.docs h1 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 36px;
}
.docs h2 {
  margin-bottom: 10px;
  font-size: 32px;
}
.docs h3 {
  margin-bottom: 10px;
  font-size: 26px;
}
.docs ul {
  list-style-type: disc;
  padding-left: 20px;
}
.docs li, .docs p {
  color: inherit;
  line-height: 1.929;
}
.docs a {
  text-decoration: none !important;
  color: var(--first-color);
  transition: 0.3s;
}
.docs a:hover {
  color: #000;
}