.faq-container {
  width: 100%;
  color: #fff;
  font-family: var(--font-body);
  min-width: 280px;
  min-height: calc(100vh - 241px);
}
@media screen and (max-width: 767.9px) {
  .faq-container {
    min-height: calc(100vh - 410px);
  }
}
.faq-container .faq-wrapper {
  min-width: 280px;
  max-width: 1200px;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .faq-container .faq-wrapper {
    margin: 0px auto;
  }
}
.faq-container .faq-header,
.faq-container .faq-body {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .faq-container .faq-header,
  .faq-container .faq-body {
    flex-direction: column;
  }
}
.faq-container .faq-header .faq-header-l,
.faq-container .faq-header .faq-body-l,
.faq-container .faq-body .faq-header-l,
.faq-container .faq-body .faq-body-l {
  flex: 0 0 calc(70% - 24px);
  width: calc(70% - 24px);
}
@media screen and (max-width: 768px) {
  .faq-container .faq-header .faq-header-l,
  .faq-container .faq-header .faq-body-l,
  .faq-container .faq-body .faq-header-l,
  .faq-container .faq-body .faq-body-l {
    flex: 1;
    width: 100%;
  }
}
.faq-container .faq-header .faq-header-r,
.faq-container .faq-header .faq-body-r,
.faq-container .faq-body .faq-header-r,
.faq-container .faq-body .faq-body-r {
  flex: 0 0 30%;
}
@media screen and (max-width: 768px) {
  .faq-container .faq-header .faq-header-r,
  .faq-container .faq-header .faq-body-r,
  .faq-container .faq-body .faq-header-r,
  .faq-container .faq-body .faq-body-r {
    flex: 1;
  }
}
@media screen and (max-width: 768px) {
  .faq-container .faq-body > .faq-body-l {
    order: 2;
  }
  .faq-container .faq-body > .faq-body-r {
    order: 1;
  }
}
.faq-container .faq-header h1 {
  font-family: var(--font-title);
  font-size: 78px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .faq-container .faq-header h1 {
    font-size: 36px;
    text-align: center;
  }
}
.faq-container .faq-header .faq-header-r {
  display: flex;
  align-items: center;
}
.faq-container .faq-header .faq-header-r .faq-search {
  display: flex;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #65748f;
  align-items: center;
  transition: border-color ease-in-out 0.2s;
  gap: 8px;
}
.faq-container .faq-header .faq-header-r .faq-search input {
  flex: 0 0 calc(100% - 32px);
  color: #fff;
  width: 100%;
  font-size: 16px;
  background-color: transparent;
  border: none;
  outline: none;
  height: 20px;
}
.faq-container .faq-header .faq-header-r .faq-search input::-moz-placeholder {
  color: #65748f;
}
.faq-container .faq-header .faq-header-r .faq-search input::placeholder {
  color: #65748f;
}
.faq-container .faq-header .faq-header-r .faq-search img.delete {
  display: none;
  cursor: pointer;
}
.faq-container .faq-header .faq-header-r .faq-search.active {
  border-color: #fff;
}
.faq-container .faq-body .question {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid #303048;
  width: 100%;
  margin-bottom: 24px;
  cursor: pointer;
}
@media screen and (max-width: 500px) {
  .faq-container .faq-body .question {
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
  }
}
.faq-container .faq-body .question:last-of-type {
  margin-bottom: unset;
}
.faq-container .faq-body .question.hide {
  display: none;
}
.faq-container .faq-body .faq-chat {
  color: #fff;
  font-size: 18px;
}
.faq-container .faq-body .faq-chat a {
  color: #fff;
  text-decoration: underline;
}
.faq-container .faq-body .question .question-header {
  display: flex;
  gap: 16px;
  align-items: center;
  cursor: pointer;
}
.faq-container .faq-body .question .question-header > h2 {
  flex: 1 1 auto;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.faq-container .faq-body .question .question-header > img {
  flex: 0 0 14px;
  transition: transform ease-in-out 0.4s;
}
.faq-container .faq-body .question.show .question-header > img {
  transform: rotate(-45deg);
}
.faq-container .faq-body .question .question-body {
  max-height: 0px;
  overflow: hidden;
  transition: all ease-in-out 0.4s;
  font-size: 14px;
  color: #BEBFCB;
  cursor: default;
}
.faq-container .faq-body .question .question-body .question-spacer {
  padding-top: 16px;
  height: 0px;
}
.faq-container .faq-body .question .question-body .question-content-sub {
  margin-top: 16px;
}
.faq-container .faq-body .question .question-body .question-content-sub > h3 {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 8px;
  color: #BEBFCB;
}
.faq-container .faq-body .question .question-body .question-content-sub .question-content-sub-desc p {
  font-size: 14px;
  color: #BEBFCB;
}
.faq-container .faq-body .question .question-body .question-content-wrapper * {
  color: #bebfcb !important;
}
.faq-container .faq-body .question .question-body .question-content-wrapper * p {
  color: #bebfcb !important;
}
.faq-container .faq-body .question .question-body .question-content-wrapper * a {
  color: #fff !important;
  font-weight: 700 !important;
  text-decoration: underline !important;
}
.faq-container .faq-body .question .question-body p {
  margin-bottom: 8px;
}
.faq-container .faq-body .question .question-body p:last-of-type {
  margin-bottom: 0px;
}
.faq-container .faq-body .question .question-body a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
}
.faq-container .faq-body .category-list {
  max-height: 500px;
  overflow: auto;
}
@media screen and (min-width: 768px) {
  .faq-container .faq-body .category-list.overflowed {
    padding-right: 6px;
  }
}
.faq-container .faq-body .category-list::-webkit-scrollbar {
  width: 2px;
  background-color: #19191a;
}
@media screen and (max-width: 768px) {
  .faq-container .faq-body .category-list::-webkit-scrollbar {
    display: none;
  }
}
.faq-container .faq-body .category-list::-webkit-scrollbar-track {
  background-color: #19191a;
}
.faq-container .faq-body .category-list::-webkit-scrollbar-thumb {
  background-color: #505050;
  border-radius: 90px;
  border: none;
}
.faq-container .faq-body .faq-category {
  display: flex;
  padding: 12px 24px;
  gap: 24px;
  align-items: center;
  transition: all ease-in-out 0.2s;
  border-radius: 12px;
  border: 1px solid transparent;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .faq-container .faq-body .faq-category {
    margin-bottom: 0px;
  }
}
.faq-container .faq-body .faq-category:last-of-type {
  margin-bottom: unset;
}
.faq-container .faq-body .faq-category .faq-category-img-wrapper {
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 6px;
  flex: 0 0 48px;
}
.faq-container .faq-body .faq-category span {
  font-size: 18px;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 48px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
}
.faq-container .faq-body .faq-category.selected, .faq-container .faq-body .faq-category:hover {
  cursor: pointer;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.faq-container .faq-body .category-filter {
  display: none;
}
@media screen and (max-width: 768px) {
  .faq-container .faq-body .category-filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .faq-container .faq-body .category-filter button {
    color: #c3d4f3;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    padding: 6px 12px;
    background-color: transparent;
    border: 1px solid #65748f;
    border-radius: 12px;
  }
  .faq-container .faq-body .category-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    gap: 12px;
    padding: 20px 0;
    transition: all ease-in-out 0.2s;
    max-height: unset;
  }
  .faq-container .faq-body .faq-category {
    display: inline-block;
    padding: 12px;
    background: #161c27;
    transition: all ease-in-out 0.2s;
  }
  .faq-container .faq-body .faq-category .faq-category-img-wrapper {
    display: none;
  }
  .faq-container .faq-body .faq-category span {
    overflow: unset;
    text-overflow: unset;
    height: auto;
    white-space: nowrap;
  }
  .faq-container .faq-body .category-list.all {
    flex-direction: column;
    flex-wrap: wrap;
    overflow: auto;
  }
  .faq-container .faq-body .category-list.all .faq-category {
    width: 100%;
    display: flex;
    padding: 12px;
    gap: 24px;
    align-items: center;
    transition: all ease-in-out 0.2s;
    border-radius: 12px;
    border: 1px solid transparent;
    background: transparent;
  }
  .faq-container .faq-body .category-list.all .faq-category .faq-category-img-wrapper {
    display: inline-block;
  }
  .faq-container .faq-body .category-list.all .faq-category span {
    white-space: normal;
    font-size: 14px;
    line-height: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 48px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
  }
  .faq-container .faq-body .category-list.all .faq-category.selected, .faq-container .faq-body .category-list.all .faq-category:hover {
    cursor: pointer;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
  }
}
.faq-container .question-items {
  margin-top: 24px;
}
.faq-container .question-item {
  display: flex;
  padding: 12px;
  border-radius: 12px;
  background: #3c3c3c;
  align-items: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 320px) {
  .faq-container .question-item {
    padding: 8px;
  }
}
.faq-container .question-item:last-of-type {
  margin-bottom: unset;
}
.faq-container .question-item .question-item-title {
  flex: 0 0 30%;
  color: #bbb;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 500px) {
  .faq-container .question-item .question-item-title {
    font-size: 12px;
  }
}
.faq-container .question-item .question-item-info {
  flex: 0 0 calc(70% - 48px);
  color: #bbb;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0px 16px;
}
@media screen and (max-width: 500px) {
  .faq-container .question-item .question-item-info {
    font-size: 12px;
  }
}
@media screen and (max-width: 320px) {
  .faq-container .question-item .question-item-info {
    flex: 0 0 calc(70% - 40px);
    padding: 0px 8px;
  }
}
.faq-container .question-item .question-item-info p {
  margin-bottom: 0px !important;
}
.faq-container .question-item .question-item-video {
  flex: 0 0 48px;
  width: 48px;
}
@media screen and (max-width: 320px) {
  .faq-container .question-item .question-item-video {
    flex: 0 0 40px;
  }
}
.faq-container .question-item .question-item-video .faq-play-video {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid var(--primary-color);
  background: #2c2c2c;
}
@media screen and (max-width: 320px) {
  .faq-container .question-item .question-item-video .faq-play-video {
    width: 40px;
    height: 40px;
  }
  .faq-container .question-item .question-item-video .faq-play-video img {
    width: 12px;
    height: 12px;
  }
}
.faq-container .question-item .question-item-video .faq-play-video:hover {
  background: #273e29;
}
.faq-container #faq-youtube-player {
  background: rgba(0, 0, 0, 0.6);
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 100;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-container #faq-youtube-player .player-wrapper {
  background: #000;
  min-width: 280px;
  min-height: 158px;
  max-width: 1000px;
  max-height: 560px;
  width: 100%;
  height: 100%;
  margin: 24px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .faq-container #faq-youtube-player .player-wrapper {
    max-width: 800px;
    max-height: 448px;
  }
}
@media screen and (max-width: 1024px) {
  .faq-container #faq-youtube-player .player-wrapper {
    max-width: 768px;
    max-height: 430px;
  }
}
@media screen and (max-width: 768px) {
  .faq-container #faq-youtube-player .player-wrapper {
    max-width: 560px;
    max-height: 315px;
  }
}
@media screen and (max-width: 500px) {
  .faq-container #faq-youtube-player .player-wrapper {
    max-width: 320px;
    max-height: 180px;
  }
}
.faq-container #faq-youtube-player .player-wrapper img {
  position: absolute;
  top: 0;
  width: 24px;
  height: 24px;
  right: -24px;
  top: -12px;
}
@media screen and (max-width: 768px) {
  .faq-container #faq-youtube-player .player-wrapper img {
    top: unset;
    bottom: -40px;
    left: calc(50% - 16px);
    width: 32px;
    height: 32px;
  }
}/*# sourceMappingURL=style.css.map */