/*!*************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./src/scss/sections/faq.scss ***!
  \*************************************************************************************************************************************************/

/*** LTR websites ***/

.faq {
  color: #fff;
  padding: 40px 0;
  background-color: #000000;
  text-align: center;
}

.faq br {
  display: none;
}

.faq .wrapper {
  display: flex;
  flex-direction: column;
}

.faq_title {
  margin-bottom: 10px;
}

.faq_description {
  margin-bottom: 15px;
}

.faq_select {
  padding: 15px 24px;
  font-size: 16px;
  background: rgba(52, 52, 52, 0.5215686275);
  border-radius: 11px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../../.././assets/images/faq_select.svg);
  background-position: calc(100% - 15px);
  background-repeat: no-repeat;
}

.faq_select option {
  background-color: #000000;
}

.faq_btns {
  display: none;
  overflow: auto;
  background: #0d0d0d;
}

.faq_btns-btn {
  font-size: 16px;
  font-weight: 400;
  opacity: 0.5;
  padding: 14px 50px;
  position: relative;
}

.faq_btns-btn::after {
  content: "";
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-image: linear-gradient(to left, rgba(255, 0, 24, 0), #78b52e, #78b52e, rgba(255, 0, 24, 0));
  opacity: 0;
}

.faq_btns-btn-active {
  opacity: 1;
  text-shadow: 3px 2px 15px rgba(255, 255, 255, 0.8);
}

.faq_btns-btn-active::after {
  opacity: 1;
}

.faq_wrapper {
  margin-top: 15px;
  border-radius: 6.693px;
  border: 2px solid #1d1d1d;
  background: linear-gradient(270deg, rgba(36, 36, 36, 0.54) 0%, rgba(0, 0, 0, 0) 100%);
  padding: 30px;
  text-align: left;
}

.faq_wrapper-single {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s;
}

.faq_wrapper-single:not(:last-child) {
  margin-bottom: 30px;
}

.faq_wrapper-single-active {
  border-bottom: 1px solid rgb(255, 255, 255);
}

.faq_wrapper-single-active .faq_wrapper-title::before {
  transform: translateY(-50%) rotate(0deg);
}

.faq_wrapper-title {
  font-size: 17px;
  padding: 0;
  width: 100%;
  text-align: left;
  position: relative;
  padding-right: 35px;
}

.faq_wrapper-title::after,
.faq_wrapper-title::before {
  content: "";
  background-color: #fff;
  position: absolute;
  width: 25px;
  height: 2px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

.faq_wrapper-title::before {
  transform: translateY(-50%) rotate(90deg);
}

.faq_wrapper-description {
  font-size: 16px;
  line-height: 120%;
  font-weight: 400;
  margin-top: 12px;
  color: #e1e1e1;
}