.faq-thirteen-block{
	padding-bottom: 60px;
}

.faq-thirteen-block :is(.h1, .h2, .h3, .h4, .h5, .h6) {
  margin: 0;
}

.faq-thirteen-block .block-title {
  margin-bottom: 0;
  padding-right: 15px;
}

.faq-thirteen-block__wrapper {
  display: flex;
  gap: 30px;
}

.faq-thirteen-block .items {
  flex: 1;
}

.faq-thirteen-block .items .item {
  border-bottom: 1px solid #01083a;
  background: var(--background);
  transition: background 0.3s ease;
}

.faq-thirteen-block .items .item:last-child {
  margin-bottom: 0px;
}

.faq-thirteen-block .items .item.hidden {
  display: none;
}

.faq-thirteen-block .items .item__number {
  width: 25px;
  color: #d2021a;
  margin-bottom: 0;
}

.faq-thirteen-block .items .item__title {
  flex: 1;
}

.faq-thirteen-block .items .item__status {
  margin-left: auto;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.faq-thirteen-block .items .item__status svg {
  width: 100%;
  height: 100%;
  color: #17488d;
  transition: all 0.3s ease;
}

.faq-thirteen-block .items .item__header {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
  cursor: pointer;
}

.faq-thirteen-block .items .item__content {
  padding: 0 0px 20px 0px;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #7d8795;
  display: none;
}

.faq-thirteen-block .items .item__content * {
  color: #7d8795;
}

.faq-thirteen-block .items .item__text {
  width: 100%;
  max-width: 780px;
}

.faq-thirteen-block__form {
  width: 490px;
  background: #dfdfdf;
  border-radius: 10px;
  padding: 30px;
  height: fit-content;
  position: sticky;
  top: 20px;
}

.faq-thirteen-block .faq-form__top {
  display: flex;
  align-items: center;
  gap: 25px;
}

.faq-thirteen-block .faq-form__top:not(:last-child) {
  margin-bottom: 30px;
}

.faq-thirteen-block .faq-form__top-avatar {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  position: relative;
}

.faq-thirteen-block .faq-form__top-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 100%;
}

.faq-thirteen-block .faq-form__top-avatar::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background: #57dd18;
  border: 3px solid #fff;
}

.faq-thirteen-block .faq-form__top-content {
  flex: 1;
  max-width: 163px;
}

.faq-thirteen-block .faq-form__top-post {
  color: #7d8795;
}

.faq-thirteen-block .faq-form__wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.faq-thirteen-block .faq-form__wrapper:not(:last-child) {
  margin-bottom: 40px;
}

.faq-thirteen-block .faq-form__wrapper-btn {
  width: 100%;
  margin: 0;
}

.faq-thirteen-block .faq-form__socials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.faq-thirteen-block .faq-form__socials:not(:first-child) {
  border-top: 1px solid #01083a;
  padding-top: 15px;
}

.faq-thirteen-block .faq-form__socials-wrap {
  display: flex;
  gap: 10px;
}

.faq-thirteen-block .faq-form__socials-item {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: #fff;
}

.faq-thirteen-block .faq-form__socials-item img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

@media (max-width: 1200px) {
  .faq-thirteen-block__form {
    width: 400px;
  }
}

@media (max-width: 991px) {
  .faq-thirteen-block__header {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .faq-thirteen-block__header .block-title {
    padding-right: 0;
  }

  .faq-thirteen-block__header .top-tag {
    margin-left: 0;
    padding: 10px;
  }

  .faq-thirteen-block .items .item__status {
    width: 20px;
    height: 20px;
  }

  .faq-thirteen-block__form {
    width: 330px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .faq-thirteen-block .faq-form__socials {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .faq-thirteen-block .faq-form__top-avatar {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 767px) {
  .faq-thirteen-block__wrapper {
    flex-direction: column;
  }

  .faq-thirteen-block__form {
    width: 100%;
  }

  .faq-thirteen-block .items .item__title {
    font-size: 14px;
  }

  .faq-thirteen-block .items .item__number {
    font-size: 14px;
  }
}

@media (max-width: 498px) {
  .faq-thirteen-block__form {
    padding: 20px;
  }

  .faq-thirteen-block .faq-form__top {
    gap: 15px;
  }

  .faq-thirteen-block .faq-form__top:not(:last-child) {
    margin-bottom: 20px;
  }

  .faq-thirteen-block .faq-form__top-avatar {
    width: 80px;
    height: 80px;
  }

  .faq-thirteen-block .faq-form__wrapper {
    gap: 15px;
  }

  .faq-thirteen-block .faq-form__wrapper:not(:last-child) {
    margin-bottom: 25px;
  }

  .faq-thirteen-block .faq-form__socials {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .faq-thirteen-block .faq-form__socials-item {
    width: 50px;
    height: 50px;
  }

  .faq-thirteen-block .faq-form__socials-item img {
    width: 21px;
    height: 21px;
  }
}

/*# sourceMappingURL=block.css.map */