.faq-one-block {
  background: var(--background-second);
  padding: 80px 60px;
  background-color: var(--bg_primary_main);
  border-radius: 60px;
  background-image: url("./images/bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 0;
  margin-right: 10px;
  margin-left: 10px;
  width: calc(100% - 20px);
}

.faq-one-block__body {
  display: flex;
  grid-column-gap: 20px;

}

.faq-one-block__left {
  width: 580px;
  display: flex;
  flex-direction: column;
  height: auto;
  flex-shrink: 0;
  gap: 30px;
}

.faq-one-block .faq_image {
  width: 190px;
  height: 150px;
  display: flex;
  flex-shrink: 0;
}

.faq-one-block .faq_image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.faq-one-block__offer {
  margin-top: auto;
}

.faq-one-block__description {
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 20px;
  color: var(--main-text-primary);
}

.faq-one-block .items {
  width: 100%;
}

.faq-one-block .items__wrapper .item {
  margin-bottom: 10px;
  border: 1px solid var(--bg_primary_stroke);
  border-radius: 20px;
  background: var(--bg_primary_main);
  transition: background 0.3s ease;
  margin-bottom: 10px;
  box-shadow: 0px 0px 60px 0px #0B7CDE4D inset;
}

.faq-one-block .items__wrapper .item:last-child {
  margin-bottom: 0px;
}

.faq-one-block .items__wrapper .item.active {
  background: var(--bg_primary_main);
  border: 1px solid var(--bg_primary_stroke);
  box-shadow: none;
}

.faq-one-block .items__wrapper .item.active svg {
  transform: rotate(-180deg);
}

.faq-one-block .items__wrapper .item.active .item__icon {
  background: var(--background-secondary);
}

.faq-one-block .items__wrapper .item__icon {
  min-width: 50px;
  width: 50px;
  height: 50px;
  background: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 30px;
}

.faq-one-block .items__wrapper .item__icon .svg {
  border: 1px dashed var(--second);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-one-block .items__wrapper .item__title {

  color: var(--text_primary_head);
  padding-right: 15px;
}

.faq-one-block .items__wrapper .item.active .item__title {
  color: var(--color_primary);
}

.faq-one-block .items__wrapper .item__status {
  margin-left: auto;
  min-width: 14px;
  width: 14px;
  height: 14px;
}

.faq-one-block .items__wrapper .item__status .vertical {
  transition: opacity 0.3s ease;
}

.faq-one-block .items__wrapper .item__header {
  border-radius: 20px;
  border-bottom: 1px solid var(--background-thirdly);
  padding: 30px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.faq-one-block .items__wrapper .item__content {
  padding: 20px 0px 30px;
  margin: 0 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: var(--text_primary_main);
  display: none;
  border-top: 1px solid var(--color_primary);
}

.faq-one-block .items__wrapper .item__content * {
  color: var(--text_primary_main);
  width: 620px;
}

@media (max-width: 1470px) {
  .faq-one-block__left {
    width: 100%;
    margin-bottom: 30px;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: flex-start;
  }

  .faq-one-block__description {
    font-size: 18px;
  }

  .faq-one-block .items {
    width: 100%;
  }

  .faq-one-block .items__wrapper .item__content * {
    width: 100%;
  }

  .faq-one-block .items__wrapper .item__icon {
    margin-right: 15px;
  }

  .faq-one-block__body {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .faq-one-block .items__wrapper .item__header {
    padding: 15px;
  }

  .faq-one-block .items__wrapper .item__content {
    padding: 15px 0;
    margin: 0 15px;
  }

  .faq-one-block .faq_image {
    width: 125px;
    height: 125px;
  }

  .faq-one-block {
    padding: 30px 5px;
  }
}

@media (max-width: 480px) {
  .faq-one-block__description {
    font-size: 16px;
  }

  .faq-one-block .items__wrapper .item__title {
    font-size: 14px;
  }

  .faq-one-block .items__wrapper .item__icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }

  .faq-one-block .items__wrapper .item__icon .svg {
    width: 30px;
    height: 30px;
  }

  .faq-one-block .items__wrapper .item__content * {
    font-size: 14px;
  }

  .faq-one-block__left {
    flex-direction: column;
    gap: 10px;
  }

  .faq-one-block .faq_image {
    margin-left: auto;
    width: 70px;
    height: 70px;
  }
}

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