#self-help h1 {
  font-size: 4rem;
  color: #222;
}
#self-help b {
  text-decoration: none !important;
}
#self-help h3 {
  font-size: 2rem;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #222;
}

.flex-container {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.space-between {
  justify-content: space-between;
}
.space-evenly {
  justify-content: space-evenly;
}

.justify-center {
  justify-content: center;
}
.justify-start {
  justify-content: flex-start;
}
.mt-50 {
  margin-top: 60px;
}
.mb-50 {
  margin-bottom: 50px;
}

#faq_categories {
}
a.faq_category {
  text-decoration: none;
  padding: 10px 20px;
  margin: 10px;
  background: #f5f5f5;
  border-radius: 6px;
  text-align: center;
  min-width: 260px;
  display: inline-block;
  transition: all 0.3s ease;
  border: solid 1px transparent;
  font-size: 15px;
}
a.faq_category:hover {
  border: solid 1px #e1e1e1;
  background: #fff;
}

.faq_category:hover .faq_category_icon {
  filter: brightness(4.5);
  filter: grayscale(100%);
  /*filter: blur(3px);*/
}

a.faq_category .fa {
  font-size: 38px;
  display: block;
  color: #25003a;
  margin-bottom: 6px;
}

.faq_category_icon {
  max-width: 54px;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}

#faq_top_questions {
  margin-top: 20px;
}

#faq_top_questions .fa {
  float: right;
  color: #ffbf00;
  transition: all 0.3s ease;
}
#faq_top_questions a {
  text-decoration: none;
  display: block;
  padding: 10px;
  background: #f5f5f5;
  margin-bottom: 6px;
  transition: all 0.3s ease;
}
#faq_top_questions a:hover {
  background: #e9e9e9;
}

#faq_top_questions a:hover > .fa {
  margin-right: 10px;
  color: #111;
}

@media only screen and (max-width: 767px) {
  #self-help h1 {
    font-size: 2.8rem;
    color: #222;
  }

  #self-help h3 {
    font-size: 1.6rem;
    margin-top: 14px;
    margin-bottom: 14px;
  }

  #faq_top_questions a {
    font-size: 14px;
  }
  #faq_top_questions .fa {
    display: none;
  }

  a.faq_category {
    min-width: 170px !important;
    width: 170px;
    max-width: 170px;
    font-size: 14px;
  }
  .faq_category_icon {
    max-width: 44px;
  }
}

/* SEARCH */

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

#faq_header {
  width: 100%;
  /* background: url(https://www.duckyluck.ag/media/duckyluck.com/files/2273_1628110859_faq_search_bg.jpg); */
  background-size: cover;
}

#faq_search_form {
  width: 60%;
  margin: 0 auto;
}

.faq_input_group {
  position: relative;
  display: flex;
  border-radius: 96px;
}

.faq_search_input {
  border-top-left-radius: 96px;
  border-bottom-left-radius: 96px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  box-shadow: none;
  background: #fff;
  flex: 1;

  padding: 16px;
  padding-left: 20px;

  border: none;

  font-size: 1em;
  outline: none;

  color: #7852a9;
}

.faq_search_input::placeholder {
  color: #7852a9;
}

.faq_search_button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 96px;
  border-bottom-right-radius: 96px;
  border: 1px solid rgba(34, 34, 34, 0.15);
  padding: 16px 20px;
  border: none;
  background: #fff;
  color: #7852a9;
  transition: all 0.3s ease;
}
.faq_search_button:hover {
  background: #7852a9;
  color: #fff;
  cursor: pointer;
}
.faq_search_button .fa {
  font-size: 18px;
}

/* SEARCH RESULTS */
.ajax_loading {
  background: #666;
  background: linear-gradient(110deg, #ebebeb 8%, #f5f5f5 18%, #ebebeb 33%);
  background-size: 200% 100%;
  animation: 1.5s shine linear infinite;
  height: 100px;
}

@keyframes shine {
  to {
    background-position-x: -200%;
  }
}

/* FAQ FEEDBACK */
#feedback_message {
  display: none;
}
#feedback_message_form {
  display: flex;
}

#feedback_textarea {
  resize: vertical;
  overflow: auto;
  width: 100%;
  padding: 10px;
  min-height: 100px;
  margin-right: 10px;
  border: solid 1px #ccc;
  transition: all 0.3s ease;
  font-size: 1em;
}

#feedback_textarea:focus {
  outline: 1px solid #ababab;
}

#feedback_button {
  background: #4a1452;
  color: #fff;
  transition: all 0.3s ease;
  border-radius: 6px;
  min-width: 100px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
#feedback_button:hover {
  cursor: pointer;
  color: #ffbf00;
}

#feedback_button .fa {
  color: #ffbf00;
  font-size: 38px;
  display: block;
}
#feedback_button p {
  margin-top: 10px;
}
a.feedback_method {
  text-decoration: none;
  color: #fff;
}

.feedback_method:hover > .fa {
  color: #fff !important;
  background-color: #fff;
}

#chat_launcher_off p {
  font-size: 14px;
}

.disabled {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  opacity: 0.6;
}
.button-active {
  background: #ccc !important;
}

/* FAQ FEEDBACK END */

#faq_search_results {
  display: none;
}
#faq_search_results_list {
  margin: 20px 0;
}
#faq_search_results_list a {
  display: block;
  padding: 10px 0;
  border-bottom: dashed 1px #ccc;
  text-decoration: none;
}
#faq_search_results_list a:hover {
  border-bottom: solid 1px #ccc;
  color: #ffbf00;
}

@media only screen and (max-width: 767px) {
  #faq_search_form {
    width: 90%;
  }

  #feedback_button {
    min-width: 60px;
  }
  #feedback_button .fa {
    font-size: 28px;
  }
  #feedback_button p {
    font-size: 0.9em !important;
  }
}
