/* Views/www_webpack/pages/faq/faq_mobile.css */
#faq {
  padding: 20px clamp(20px, 5vw, 10vw);
}
.faq__header {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  margin-bottom: 50px;
}
.faq__title {
  font-size: 2.5em;
  text-transform: uppercase;
}
.faq__search {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  height: 40px;
  margin-left: auto;
  padding: 0 10px;
  border: 2px solid var(--color-border);
  border-radius: 4px;
}
.faq__search input {
  width: 100%;
  height: 100%;
}
.faq__search .icon {
  width: 25px;
  height: 25px;
}
.faq__container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: start;
}
.faq__aside {
  display: grid;
  gap: 20px;
}
.faq__item_title {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 20px;
  align-items: center;
}
.faq__item_title .plus {
  position: relative;
  display: flex;
  width: 20px;
  pointer-events: none;
}
.faq__item_title .plus::before,
.faq__item_title .plus::after {
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--color-red);
  transition: all 100ms;
  content: "";
}
.faq__item_content {
  display: none;
  min-height: 60px;
  margin-left: 100px;
  padding-left: 20px;
  border-left: 3px solid var(--color-red);
}
.faq__item {
  display: grid;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
}
.faq__item.active .plus::after {
  transform: rotate(-90deg);
}
.faq__item.active .faq__item_content {
  display: flex;
  align-items: center;
}
.faq__form_container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
  margin-top: 20px;
  padding: 20px;
  background: var(--color-grey);
  border: 2px solid var(--color-dark-grey);
  border-radius: 8px;
}
.faq__form_container .icon {
  width: 100%;
  max-height: 200px;
}
#faqForm {
  display: grid;
  width: 100%;
}
#faqForm h2 {
  font-weight: normal;
  text-transform: uppercase;
}
#faqForm textarea {
  height: 100px;
  font-size: 1em;
}
#faqForm input {
  background: var(--color-white);
}
#faqForm button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  margin-top: 20px;
  color: var(--color-white);
  font-size: 1.1em;
  background-image: linear-gradient(to right, #0eae57 0%, #0c7475 41%, #0eae57 120%);
  background-size: 200% auto;
  border-radius: 10px;
  transition: all 200ms;
}
#faqForm button:hover {
  background-position: right center;
}
mark {
  color: var(--color-green);
  background: #d6efe3;
}
