@font-face {
  font-family: "InstrumentSans-Regular";
  src: url("https://www.revechat.com/wp-content/themes/revechat/fonts/generalsans/InstrumentSans-Regular.ttf")
    format("truetype");
}
@font-face {
  font-family: "InstrumentSans-Medium";
  src: url("https://www.revechat.com/wp-content/themes/revechat/fonts/generalsans/InstrumentSans-Medium.ttf")
    format("truetype");
}
@font-face {
  font-family: "InstrumentSans-SemiBold";
  src: url("https://www.revechat.com/wp-content/themes/revechat/fonts/generalsans/InstrumentSans-SemiBold.ttf")
    format("truetype");
}
@font-face {
  font-family: "InstrumentSans-Bold";
  src: url("https://www.revechat.com/wp-content/themes/revechat/fonts/generalsans/InstrumentSans-Bold.ttf")
    format("truetype");
}
.m_revechat_help_center {
  background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 600px,
      #fff 900px
    ),
    url(https://www.revechat.com/wp-content/themes/revechat/images/help-center/help-center.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 172px 0 100px 0;
}
.m_revechat_help_center h1 {
  color: #000;
  text-align: center;
  font-family: "Plus Jakarta Sans";
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%; /* 72px */
  letter-spacing: -0.6px;
  margin: 0px;
  padding: 0px;
}
.m_revechat_help_center p {
  color: #414651;
  text-align: center;
  font-family: "InstrumentSans-Medium";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  margin: 0px;
  padding: 14px 0px 40px 0px;
}
.m_revechat_help_center .input-group .form-control {
  max-width: 70%;
}
.m_revechat_help_center .container #m_revechat_help_center_category_list {
  max-width: 1170px;
  padding: 40px 28px;
  margin: 80px auto auto;
  background-color: #fff;
  border-radius: 20px;
  background: #fff;
}
.m_revechat_help_center .container #m_revechat_help_center_category_list a {
  text-decoration: none;
}
.m_revechat_help_center .row:last-child .m_revechat_help_center_category_inner {
  border: 1px solid var(--gray-light-mode-200, #e9eaeb);
}
.m_revechat_help_center .row:last-child .m_revechat_help_center_category_inner {
    position: relative;
    border-radius: 12px;
    background: #fff; /* or var(--Primary-Colors-White) */
    display: flex;
    padding: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
    overflow: hidden;
    z-index: 1;
}

/* Simulated border with gradient */
.m_revechat_help_center_category_inner::before, .m_revechat_help_center_all_categories li a.animate-in::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(to right, rgba(99, 20, 186, 1), rgba(147, 9, 222, 1), rgba(241, 116, 140, 1));
    -webkit-mask:
      linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
    clip-path: inset(100% 100% 100% 100%);
    
}
.m_revechat_help_center_all_categories li a{
  position: relative;
}
.m_revechat_help_center_category_inner.animate-in::before, .m_revechat_help_center_all_categories li a.animate-in::before {
    animation: drawBorder .5s forwards;
    box-shadow: 0 0 8px rgba(147, 9, 222, 0.4);
}

.m_revechat_help_center_category_inner.animate-out::before, .m_revechat_help_center_all_categories li a.animate-out::before {
    animation: eraseBorder .5s forwards;
    box-shadow: 0 0 8px rgba(147, 9, 222, 0.4);
}

@keyframes drawBorder {
    0%   { clip-path: inset(100% 100% 100% 100%); }
    25%  { clip-path: inset(0% 100% 100% 0%); }
    50%  { clip-path: inset(0% 0% 100% 0%); }
    75%  { clip-path: inset(0% 0% 0% 0%); }
    100% { clip-path: inset(0% 0% 0% 0%); }
}

@keyframes eraseBorder {
    0%   { clip-path: inset(0% 0% 0% 0%); }
    25%  { clip-path: inset(0% 0% 100% 0%); }
    50%  { clip-path: inset(0% 100% 100% 0%); }
    75%  { clip-path: inset(100% 100% 100% 100%); }
    100% { clip-path: inset(100% 100% 100% 100%); }
}


.m_revechat_help_center
  .row:last-child
  .m_revechat_help_center_category_inner
  p {
  color: var(--gray-light-mode-500, #717680);
  font-family: "InstrumentSans-Regular";
  font-size: 13px;
  font-style: normal;
  text-align: left;
  font-weight: 400;
  line-height: 150%; /* 19.5px */
  letter-spacing: -0.13px;
  margin: 0px;
  padding: 4px 0px 0px 0px;
}
.m_revechat_help_center_category_inner_right p span {
  position: relative;
  padding-right: 24px;
}
.m_revechat_help_center_category_inner_right p span:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px;
  right: 10px;
  width: 1px;
  height: 12px;
  border: 1px solid #d5d7da;
}
.m_revechat_help_center_category_inner_right p span:last-child:after {
  display: none;
}
.m_revechat_help_center
  .row:last-child
  .m_revechat_help_center_category_inner
  h3 {
  color: var(--gray-light-mode-900-section-header, #181d27);
  font-family: "Plus Jakarta Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 27px */
  letter-spacing: -0.18px;
  margin: 0px;
  padding: 0px 0px 0px 0px;
}
.m_revechat_help_center
  .row:last-child
  .m_revechat_help_center_category_inner
  .m_revechat_help_center_category_inner_right {
  padding-left: 12px;
}
.m_revechat_most_viewed_articles {
  padding: 120px 0px 108px 0px;
  border-radius: 20px;
  background: var(--gray-light-mode-50, #fafafa);
  margin: 0px 8px;
}
.m_revechat_most_viewed_articles h2 {
  color: var(--gray-light-mode-800, #252b37);
  font-family: "Plus Jakarta Sans";
  font-size: 36px;
  font-style: normal;
  text-align: center;
  font-weight: 700;
  line-height: 130%; /* 46.8px */
  letter-spacing: -0.18px;
  margin: 0px;
  padding: 0px 0px 24px 0px;
}
.m_revechat_most_viewed_articles .container {
  max-width: 1170px;
  margin: auto;
}
.m_revechat_most_viewed_articles .container .accordion-item {
  border: none;
  margin-bottom: 24px;
}
.m_revechat_most_viewed_articles .container .accordion-item .accordion-body,
.m_revechat_most_viewed_articles .container .accordion-button {
  border-radius: 16px;
  background: var(--gray-light-mode-50, #fafafa);
}
.m_revechat_most_viewed_articles .container .accordion-item .accordion-body {
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  padding: 0px 24px 24px 24px;
}
.m_revechat_most_viewed_articles .container .accordion-item .accordion-body a {
  display: flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background: linear-gradient(90deg, #ec7a92 0%, #b22ce3 100%);
  color: #fff;
  font-family: "InstrumentSans-SemiBold";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 150% */
  margin: 0px;
  text-decoration: none;
  display: inline-block;
}
/* .m_revechat_most_viewed_articles .container .accordion-item .accordion-body h3{
    color: var(--gray-light-mode-900-section-header, #181D27);
    font-family: "InstrumentSans-SemiBold";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    padding: 0px;
    margin: 0px;
} */
.m_revechat_most_viewed_articles .container .accordion-item .accordion-body p {
  color: var(--gray-light-mode-700, #414651);
  font-family: "InstrumentSans-Regular";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  padding: 0px 0px 24px 0px;
  margin: 0px;
}
.m_revechat_most_viewed_articles .container .accordion-button {
  color: var(--gray-light-mode-900-section-header, #181d27);
  font-family: "InstrumentSans-SemiBold";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 27px */
  margin: 0px;
  padding: 24px 24px 24px 24px;
}
.m_revechat_most_viewed_articles
  .container
  .accordion-button:not(.collapsed)::after {
  background-image: none;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #717680;
  border-left: 1px solid #717680;
  transform: rotate(45deg);
}
.m_revechat_most_viewed_articles .container .accordion-button::after {
  background-image: none;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #717680;
  border-left: 1px solid #717680;
  transform: rotate(-135deg);
}
.m_revechat_most_viewed_articles .container .accordion-button {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom: none;
  box-shadow: none;
}
.m_revechat_most_viewed_articles .container .accordion-button.collapsed {
  border-radius: 16px;
  border: 1px solid var(--gray-light-mode-200, #e9eaeb);
  background: #fff;
}
.m_revechat_help_center_subcategories_breadcrumb ul {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 60px 0px 40px 0px;
  margin: auto 100px;
}
.m_revechat_help_center_subcategories_breadcrumb ul li {
  list-style-type: none;
  padding: 0px 12px;
}
.m_revechat_help_center_subcategories_breadcrumb ul li a,
.m_revechat_help_center_subcategories_breadcrumb ul li span,
.m_revechat_help_center_subcategories_breadcrumb ul li a:hover {
  color: var(--gray-light-mode-700, #414651);
  font-family: "InstrumentSans-regular";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 19.5px */
  letter-spacing: -0.13px;
  text-decoration: none;
  position: relative;
}
.m_revechat_help_center_subcategories_breadcrumb ul li a:after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #717680;
  border-left: 1px solid #717680;
  transform: rotate(135deg);
  position: absolute;
  right: -12px;
  top: 6px;
}
.m_revechat_help_center_subcategories_image_and_title {
  display: flex;
  align-items: flex-start;
}
.m_revechat_help_center_subcategories_title {
  padding-left: 24px;
}
.m_revechat_help_center_sub_cate_title ul li {
  list-style: none;
  position: relative;
}
.m_revechat_help_center_sub_cate_title ul li:after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #414651;
  border-left: 1px solid #414651;
  transform: rotate(135deg);
  position: absolute;
  left: -8px;
  top: 20px;
  transition: all 0.3s ease-in-out;
}
.m_revechat_help_center_sub_cate_title ul li.open:after {
  transform: rotate(226deg);
}
.m_revechat_help_center_all_subcategories .container {
  border-radius: 16px;
  border: 1px solid var(--gray-light-mode-200, #e9eaeb);
  background: #fff;
  padding: 24px;
}
.m_revechat_help_center_sub_cate_title .sub_cate_dropdown_menu {
  list-style: none;
  padding: 0;
}
.m_revechat_help_center_sub_cate_title .sub_cate_dropdown_menu li.has-sub span {
  cursor: pointer;
  color: var(--gray-light-mode-800, #252b37);
  font-family: "InstrumentSans-Regular";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  text-decoration: none;
}
.m_revechat_help_center_sub_cate_title .sub_cate_dropdown_menu > li {
  padding: 12px;
  color: var(--gray-light-mode-800, #252b37);
  font-family: "Instrument Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
}
.m_revechat_help_center_sub_cate_title
  .sub_cate_dropdown_menu
  > li
  ul
  li:after {
  display: none;
}

.m_revechat_help_center_sub_cate_title .sub_cate_dropdown_menu li ul {
  list-style: none;
  padding-left: 20px;
  display: none;
  margin-top: 10px;
}
.m_revechat_help_center_sub_cate_title .sub_cate_dropdown_menu li ul li {
  padding: 12px 0px;
}
.m_revechat_help_center_sub_cate_title .sub_cate_dropdown_menu li ul li a {
  color: var(--gray-light-mode-800, #252b37);
  font-family: "InstrumentSans-Regular";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 21px */
  text-decoration: none;
}

.m_revechat_help_center_sub_cate_title .sub_cate_dropdown_menu li.open > ul {
  display: block;
}
.m_revechat_help_center_subcategories_title h2 {
  color: var(--gray-light-mode-800, #252b37);
  font-family: "Plus Jakarta Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 33.6px */
  letter-spacing: -0.24px;
  margin: 0px;
  padding: 0px;
}
.m_revechat_help_center_subcategories_title p,
.sub_cate_dropdown_menu p {
  color: var(--gray-light-mode-500, #717680);
  font-family: "InstrumentSans-regular";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 19.5px */
  letter-spacing: -0.13px;
  padding: 8px 0px 0px 0px;
  margin: 0px;
}
.m_revechat_help_center_subcategories_title p span:last-child,
.sub_cate_dropdown_menu p span:last-child {
  position: relative;
  padding-left: 12px;
}
.m_revechat_help_center_subcategories_title p span:last-child:after,
.sub_cate_dropdown_menu p span:last-child:after {
  content: "";
  display: block;
  width: 1px;
  height: 12px;
  border-left: 1px solid #717680;
  position: absolute;
  left: 5px;
  top: 1px;
}
.m_revechat_help_center_subcategories_image_and_title {
  padding: 24px;
}
.revechat_breadcrumb {
  margin: 0px;
}
.m_revechat_help_center_sub_cate_title h2 {
  color: var(--gray-light-mode-900-section-header, #181d27);
  font-family: "Plus Jakarta Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 27px */
  letter-spacing: -0.18px;
  padding: 0px;
  margin: 0px;
}
.sub_cate_dropdown_menu {
  margin: 12px 24px 12px 12px;
}
/* Default hidden state */
.sub_cate_dropdown_menu .has-sub .dropdown_toggle_inner p,
.sub_cate_dropdown_menu .has-sub ul {
  display: none;
}

/* When .open is added, show the p and ul */
.sub_cate_dropdown_menu .has-sub.open .dropdown_toggle_inner p,
.sub_cate_dropdown_menu .has-sub.open ul {
  display: block;
}
.m_revechat_help_center_all_categories ul {
  margin: 0px;
  padding: 0px;
}
.m_revechat_help_center_all_categories ul li {
  list-style: none;
  margin: 6px 0px;
}
.m_revechat_help_center_all_categories ul li a {
  color: var(--gray-light-mode-700, #414651);
  font-family: "InstrumentSans-Medium";
  font-weight: 500;
  font-size: 16px;
  line-height: 150%; /* 24px */
  padding: 12px;
  text-decoration: none;
  border-radius: 12px;
  border: 1px solid var(--gray-light-mode-200, #e9eaeb);
  background: var(--Primary-Colors-White, #fff);
  display: flex;
  align-items: center;
  align-self: stretch;
}
.m_revechat_help_center_all_categories ul li a.active {
  border-radius: 12px;
  background: var(--Secondary-Colors-Purple-Purple-90, #6c69f9);
}
.m_revechat_help_center_all_categories ul li a.active {
  color: #fff;
}
.m_revechat_help_center_all_categories ul li a img {
  max-width: 100%;
  margin-right: 12px;
}
.sub_category h3 {
  border-bottom: 1px solid var(--gray-light-mode-200, #e9eaeb);
  color: var(--gray-light-mode-900-section-header, #181d27);
  font-family: "Plus Jakarta Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 150%;
  padding: 16px 20px;
  margin: 0px;
}
.sub_category {
  border-radius: 16px;
  border: 1px solid var(--gray-light-mode-200, #e9eaeb);
  background: #fff;
  padding: 0px 0px 0px 0px;
  margin: 6px 0px 18px 0px;
}
.sub_category ul {
  padding: 12px 0px 0px 24px;
  margin: 0px;
}
.sub_category ul.sub_sub_category li a {
  color: var(--gray-light-mode-700, #252b37);
  font-family: "InstrumentSans-Medium";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  padding: 8px 0px;
  margin: 0px;
}
.sub_category ul.sub_sub_category li:not(.has-dropdown):hover, .sub_category ul.sub_sub_category ul.sub_sub_sub_category li:hover{
 border-radius: 8px;
 background: var(--gray-light-mode-100, #f5f5f5);
}
.sub_category ul.sub_sub_category li, .sub_category ul.sub_sub_category ul.sub_sub_sub_category li{
 transition: .3s ease-in-out;
}
.sub_category ul.sub_sub_category ul.sub_sub_sub_category li a {
  color: var(--gray-light-mode-700, #414651);
  font-family: "InstrumentSans-Medium";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  padding: 8px 0px;
  margin: 0px;
}
.sub_category ul li {
  list-style: none;
  color: var(--gray-light-mode-800, #252b37);
  font-family: "InstrumentSans-Medium";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  padding: 12px 8px;
  margin: 0px;
}
/* .sub_category .sub_sub_category:first-of-type li:last-child {
  padding: 12px 8px 0px 8px;
} */
.sub_category ul li.has-dropdown{
  padding: 0px 8px 9px 8px;
}
.has-dropdown > ul {
  display: none;
  padding-left: 8px;
  margin: 0px;
}
.has-dropdown > ul li {
  list-style: none;
}
.has-dropdown span {
  display: block;
  padding: 12px 0px 12px 16px;
}
.has-dropdown span.dropdown-label:hover {
     border-radius: 8px;
    background: var(--gray-light-mode-100, #f5f5f5);
}
.has-dropdown span.meta-info {
  color: var(--gray-light-mode-500, #717680);
  font-family: "InstrumentSans-Regular";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
  display: none;
  padding: 4px 0px 0px 8px;
}
.has-dropdown.open span.meta-info {
  display: block;
}
.has-dropdown.open > ul {
  display: block;
  padding-left: 24px;
}
.dropdown-label {
  cursor: pointer;
  display: inline-block;
  position: relative;
  padding-left: 0px;
}
.dropdown-label:after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-top: 1px solid #414651;
  border-left: 1px solid #414651;
  transform: rotate(135deg);
  position: absolute;
  left: 4px;
  top: 20px;
  transition: all 0.3s ease-in-out;
}
.has-dropdown.open .dropdown-label:after {
  transform: rotate(224deg);
}
.sub_sub_sub_category li:last-child {
  padding: 8px 0px 0px 0px;
}
.sub_sub_sub_category li {
  padding: 8px !important;
}

ul.sub_sub_category:first-child {
  padding: 12px 24px 0px 24px;
}
ul.sub_sub_category:last-child {
  padding: 0px 24px 12px 10px;
}
.m_revechat_blog_page_banner_inner .popular-keywords {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 0px 0px 0px;
}
.m_revechat_blog_page_banner_inner .popular-keywords p {
  color: var(--gray-light-mode-700, #414651);
  text-align: center;
  font-family: "InstrumentSans-Medium";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px; /* 142.857% */
  padding: 0px;
}
.m_revechat_blog_page_banner_inner .popular-keywords a {
  color: var(--gray-light-mode-800, #252b37);
  text-align: center;
  font-family: var(--Typeface-Family-Text, "InstrumentSans-Regular");
  font-size: var(--Typeface-Size-body-sm, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  border-radius: 40px;
  border: 1px solid var(--gray-light-mode-200, #e9eaeb);
  background: var(--Primary-Colors-White, #fff);
  padding: 4px 14px;
  margin: 0px 4px;
}
.m_revechat_blog_page_banner_inner .popular-keywords p {
  margin: 0px 8px 0px 0px;
}
.m_revechat_most_viewed_articles_single_item {
  display: flex;
  align-items: center;
  justify-content: start;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--gray-light-mode-200, #e9eaeb);
  background: var(--Primary-Colors-White, #fff);
  position: relative;
  margin-bottom: 12px;
}
.m_revechat_most_viewed_articles_single_item:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 1px solid #717680;
  border-left: 1px solid #717680;
  transform: rotate(135deg);
  position: absolute;
  right: 24px;
  top: 45%;
}
.m_revechat_most_viewed_articles_single_item_right {
  padding-left: 16px;
}
.m_revechat_most_viewed_articles_single_item_right h3 {
  color: var(--gray-light-mode-900-section-header, #181d27);
  font-family: "Inter";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px; /* 162.5% */
  padding: 0px;
  margin: 0px;
}
.m_revechat_most_viewed_articles_single_item_right p {
  overflow: hidden;
  color: var(--gray-light-mode-700, #414651);
  text-overflow: ellipsis;
  font-family: "InstrumentSans-Regular";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
  padding: 6px 100px 0px 0px;
  margin: 0px;
}
.m_revechat_help_center_search_result {
    width: 70%;
    margin: auto;
    background: #fff;
    text-align: left;
    border-radius: 16px;
    box-shadow: 0px 20px 24px -4px rgba(16, 24, 40, 0.08), 0px 8px 8px -4px rgba(16, 24, 40, 0.03);
    padding: 16px;
    margin-top: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
}

.m_revechat_help_center_search_result_inner {
  padding: 12px 20px;
}
.m_revechat_help_center_search_result_inner:hover {
  border-radius: 12px;
  background: var(--gray-light-mode-100, #f5f5f5);
}
.m_revechat_help_center_search_result_inner a {
  color: var(--gray-light-mode-800, #252b37);
  font-family: "InstrumentSans-Medium";
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 24px */
  text-decoration: none;
  padding: 0px;
  margin: 0px;
}
.m_revechat_help_center_search_result_inner ul {
  display: flex;
  align-items: center;
  justify-content: start;
  margin: 0x;
  padding: 0px;
}
.m_revechat_help_center_search_result_inner ul li {
  list-style: none;
  padding: 0px 5px;
}
.m_revechat_help_center_search_result_inner ul li a {
  color: var(--gray-light-mode-500, #717680);
  font-family: var(--Typeface-Family-Text, "InstrumentSans-Regular");
  font-size: var(--Typeface-Size-caption, 12px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 18px */
  text-decoration: none;
  position: relative;
  padding: 0px;
  margin: 0px;
}
.m_revechat_help_center_search_result_inner ul li a::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 3px;
  right: -5px;
  width: 1px;
  height: 10px;
  border: 1px solid #d5d7da;
  transform: rotate(15deg);
}
.m_revechat_help_center_search_result_inner ul li a:last-child:after {
  display: none;
}
.m_revechat_most_viewed_articles_single_item_right_excerpt_mobile{
  display: none;
}
/* .m_revechat_most_viewed_articles_single_item_left{
  width: 15%;
}
.m_revechat_most_viewed_articles_single_item_right{
  width: auto;
} */
 .m_revechat_blog_details_page_content div.code-toolbar {
  display: grid!important;
 }
 .m_revechat_help_center_search_results_pg {
  padding: 60px 0px;
  border-radius: var(--Spacing-space-5, 20px);
  background: #fff;
}
.m_revechat_help_center_search_results_pg main {
  max-width: 760px;
  margin: auto;
}
.m_revechat_help_center_search_results_pg main ul {
  margin: 0px;
  padding: 0px;
}
.m_revechat_help_center_search_results_pg main h1 {
  margin: 0px;
  padding: 0px 0px 40px 0px;
  color: var(--gray-light-mode-500, #717680);
  font-family: var(--Typeface-Family-Text, "InstrumentSans-Regular");
  font-size: var(--Typeface-Size-body-sm, 14px);
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
.m_revechat_help_center_search_results_pg main h1 span {
  margin: 0px;
  padding: 0px;
  color: var(--gray-light-mode-700, #414651);
  font-family: var(--Typeface-Family-Text, "InstrumentSans-SemiBold");
  font-size: var(--Typeface-Size-body-sm, 14px);
  font-style: normal;
  font-weight: 600;
  line-height: 20px;
}
.m_revechat_help_center_search_results_pg main ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: var(--Spacing-space-3, 12px);
  border: 1px solid var(--gray-light-mode-200, #e9eaeb);
  background: #fff;
  list-style: none;
  margin-bottom: 12px;
}
.m_revechat_help_center_search_results_pg main ul li a {
  color: var(--gray-light-mode-800, #252b37);
  font-family: var(--Typeface-Family-Text, "InstrumentSans-SemiBold");
  font-size: var(--Typeface-Size-body, 16px);
  font-style: normal;
  font-weight: 600;
  line-height: 150%; /* 24px */
  width: 100%;
  height: 100%;
  display: block;
  margin: 0px;
  padding: 20px;
}
.m_revechat_help_center_search_results_pg main ul li a p {
  overflow: hidden;
  color: var(--gray-light-mode-700, #414651);
  text-overflow: ellipsis;
  font-family: var(--Typeface-Family-Text, "InstrumentSans-regular");
  font-size: var(--Typeface-Size-body, 16px);
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 24px */
  margin: 0px;
  padding: 12px 0px 0px 0px;
}
input[type="search"]::-webkit-search-cancel-button {
    cursor: pointer;
}
.m_revechat_help_center .m_revechat_blog_page_banner_inner .input-group .form-control{
  z-index: 999;
}
#accordionPanelsStayOpenExample .accordion-item{
  background-color: transparent!important;
}
h1.help_center_title{
  color: var(--gray-light-mode-900-section-header, #181D27);
font-family: var(--Typeface-Family-Heading, "Plus Jakarta Sans");
font-size: var(--Typeface-Size-h2, 36px);
font-style: normal;
font-weight: 700;
line-height: 130%; /* 46.8px */
letter-spacing: var(--Typeface-Letter-spacing-md, -0.25px);
margin: 0px;
padding: 0px 0px 32px 0px;
}
@media only screen and (max-width: 991px) {
.m_revechat_help_center .input-group .form-control, .m_revechat_help_center_search_result {
    max-width: 100%;
    width: 100%;
}
  .m_revechat_help_center_search_results_pg main {
    max-width: 100%;
    margin: auto;
  }
}
@media only screen and (max-width: 769px) {
  .m_revechat_help_center .container #m_revechat_help_center_category_list {
    padding: 20px 0px;
  }
  .m_revechat_help_center_all_categories ul li a{
    display: none;
  }
  .m_revechat_help_center_all_categories ul li a.active{
    display: block;
  }
  .m_revechat_help_center h1{
    font-size: 40px;
  }
  .m_revechat_help_center{
    padding: 148px 0px 48px 0px;
  }
  .m_revechat_help_center p {
    padding: 12px 0px 24px 0px;
}
.m_revechat_blog_page_banner_inner .input-group .form-control{
  padding: 12px 48px;
}
.m_revechat_help_center .container #m_revechat_help_center_category_list{
  margin: 49px auto auto;
  padding: 12px 0px;
}
.m_revechat_help_center .row:last-child .m_revechat_help_center_category_inner h3{
  font-size: 16px;
}
.m_revechat_help_center .row:last-child .m_revechat_help_center_category_inner p{
  font-size: 12px;
}
.m_revechat_help_center_category_inner_left img{
  max-width: 100%;
}
.m_revechat_most_viewed_articles{
  padding: 71px 0px 48px 0px;
}
.m_revechat_most_viewed_articles h2{
  padding: 0px 0px 31px 0px;
  font-size: 24px;
}
.m_revechat_most_viewed_articles_single_item_right h3{
  font-size: 14px;
  padding-right: 48px;
  line-height: 100%;
}
.m_revechat_help_center .row:last-child .m_revechat_help_center_category_inner{
  margin-bottom: 12px;
}
.m_revechat_most_viewed_articles_single_item_right_excerpt_mobile{
  display: block;
}
.m_revechat_most_viewed_articles_single_item_right_excerpt_desktop{
  display: none;
}
.m_revechat_most_viewed_articles_single_item_right p{
  padding: 6px 48px 0px 0px;
}
.m_revechat_most_viewed_articles_single_item_left{
  width: 14%;
}
.m_revechat_most_viewed_articles_single_item_right{
  width: 86%;
}
.m_revechat_most_viewed_articles_single_item{
  padding: 16px;
}
.m_revechat_most_viewed_articles_single_item:after{
  width: 10px;
  height: 10px;
}
.m_revechat_help_center_subcategories_breadcrumb ul {
    padding: 40px 0px 24px 0px;
}
.sub_category h3{
  font-size: 16px;
  line-height: 100%;
  padding: 12px 16px;
}
.sub_category ul li{
  font-size: 14px;
}
ul.sub_sub_category {
    padding: 8px 16px;
}
.dropdown-label:after{
  left: -10px;
}
.sub_category ul li{
  padding: 8px 12px;
}
.revechat_start_free_trail_clm_newsletter_btn{
  position: relative;
  width: 100%;
margin: auto;
}
.revechat_start_free_trail_clm_newsletter_btn .form-control{
  display: flex;
  padding: 0px 0px 0px 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  border-radius: 12px;
background: #FFF;
min-height: 64px;
width: 100%;
}
.revechat_start_free_trail_clm_newsletter_btn .revechat_start_free_trail_clm_btn {
 margin-top: 12px;
 width: 100%;
}
.revechat_start_free_trail_clm_newsletter_btn .revechat_start_free_trail_clm_btn a {
  padding: 12px 20px;
}
.m_revechat_help_center_subcategories_breadcrumb ul{
margin: auto;
}
.m_revechat_blog_page_banner_inner .popular-keywords p{
  display: block;
  width: 100%;
  padding-bottom: 12px;
}
.m_revechat_blog_page_banner_inner .popular-keywords{
  flex-wrap: wrap;
}
.m_revechat_blog_page_banner_inner .popular-keywords a{
  margin: 3px;
}
h1.help_center_title{
  display: none;
}
}