@-webkit-keyframes fill {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fill {
  0% {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fade {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@-webkit-keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(1turn);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(1turn);
  }
}

@-webkit-keyframes copyTextSupport {
  0% {
    transform: translateY(-45px);
  }

  23% {
    transform: translateY(43px);
  }

  77% {
    transform: translateY(43px);
  }

  to {
    transform: translateY(-45px);
  }
}

@keyframes copyTextSupport {
  0% {
    transform: translateY(-45px);
  }

  23% {
    transform: translateY(43px);
  }

  77% {
    transform: translateY(43px);
  }

  to {
    transform: translateY(-45px);
  }
}

@-webkit-keyframes move-gradient-3colors {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(66.7%);
  }
}

@keyframes move-gradient-3colors {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(66.7%);
  }
}

@-webkit-keyframes skeletonFlare {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(200%);
  }
}

@keyframes skeletonFlare {
  0% {
    transform: translateX(0);
  }

  to {
    transform: translateX(200%);
  }
}

.header {
  background: var(--color-page-bg);
  border-radius: 0;
}

.header .auth-container .search-menu-button {
  display: none;
}

@media (max-width: 773px) {
  .header .auth-container .search-menu-button {
    align-items: center;
    background-color: #f7f8fa;
    border-radius: 13px;
    display: flex;
    height: 44px;
    justify-content: center;
    margin: 0 9px;
    display: none;
    width: 51px;
  }

  .header .auth-container .search-menu-button .search-menu-button__icon {
    height: 24.5px;
    width: 24.5px;
  }
}

.auth__get-start-button:before {
  background: linear-gradient(
    to right,
    var(--color-brand-blue) 0,
    var(--color-brand-green) 25%,
    var(--color-brand-blue) 50%,
    var(--color-brand-green) 75%,
    var(--color-brand-green) 100%
  );
}

.auth__get-start-button {
  padding: 0 15px;
  width: auto;
}

@media (max-width: 880px) {
  .auth__auth-button {
    order: 0;
  }
}

@media (max-width: 580px) {
  .auth {
    display: flex;
  }
}

@media (max-width: 510px) {
  .header {
    padding: 0 25px;
  }

  .logo__text {
    display: none;
  }
}

.main {
  background-attachment: fixed;
  /* background-image: url(/pictures/svg/knowledgeBase/main-bg.svg); */
  background-position: top 78px right calc(50vw - 621px - 50vh);
  background-repeat: no-repeat;
  background-size: auto calc(100vh - 78px);
  display: flex;
  max-width: var(--width-small-section);
  min-height: calc(100vh - 78px);
  position: relative;
  width: 100%;
}

@media (max-width: 1300px) {
  .main {
    background-position: top 78px right calc(-50vh - -39px);
  }
}

.main .search-menu-overlay {
  background: rgba(0, 0, 0, 0.34);
  cursor: pointer;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: 0.25s;
  visibility: hidden;
  width: 100vw;
  z-index: 550;
}

.main .search-menu-overlay_active {
  opacity: 1;
  visibility: visible;
}

.article {
  /* margin-top: 15px */
}

.article img {
  cursor: pointer;
}

.article ol,
.article ul {
  padding-left: 33px;
  margin: 10px 0 10px;
}

.article ol ul {
  margin-top: 10px;
}

.article ul ul {
  margin-top: 10px;
}

.article ul li {
  list-style: disc;
}

.article ol li {
  list-style: decimal;
}

.article h1 {
  color: var(--color-base-text-primary);
  font-size: 48px;
  letter-spacing: -0.08px;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 0.67em;
  margin-top: 0.67em;
  margin-top: 0;
  font-weight: 400;
}

section.content h1 {
  color: var(--color-base-text-primary);
  font-size: 48px;
  letter-spacing: -0.08px;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 0.67em;
  margin-top: 0.67em;
  margin-top: 0;
  font-weight: 400;
}

.article h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0.83em;
  margin-top: 0.83em;
}

.article h2,
.article h3 {
  color: var(--color-base-text-primary);
  line-height: 1.2em;
  scroll-margin-top: 100px;
  
}

.article h2 {
  margin-top: 50px;
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

.article h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1em;
  margin-top: 30px;
}

.article h4 {
  color: var(--color-base-text-primary);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
  margin-bottom: 1.33em;
  margin-top: 1.33em;
}

.article h5 {
  font-size: 0.83em;
  margin-bottom: 1.67em;
  margin-top: 1.67em;
}

.article h6 {
  font-size: 0.67em;
  margin-bottom: 2.33em;
  margin-top: 2.33em;
}

.article p {
  margin-bottom: 1em;
  margin-top: 1em;
  line-height: 1.4;
  font-size: 17px;
}

.article a {
  text-decoration: underline;
}

.article a:hover {
  color: #0af;
}

.article figure.image {
  align-items: stretch;
  display: flex;
  margin: 15px auto;
  max-height: 300px;
}

.article figure.image img {
  cursor: pointer;
  display: block;
  margin: 0 auto;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.article figure.image figcaption {
  opacity: 0.7;
  text-align: center;
}

.article blockquote {
  border-left: 5px solid #eee;
  padding: 10px 20px;
}

.article a {
  font-size: inherit;
  font-weight: inherit;
}

.article img {
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.article pre {
  overflow: auto;
}

.article .info-box {
  background: #fff;
  border-left: 7px solid #ee445e;
  box-shadow: 4px 3px 7px 0 #aaa;
  margin: 40px 0;
}

.article .info-box .info-box-title {
  align-items: center;
  display: flex;
  font-size: 0.9em;
  font-weight: 700;
  overflow: hidden;
  padding: 15px 30px;
}

.article .info-box-warning .info-box-title {
  background: #f7e8ea;
  color: #000;
}

.article .info-box-warning .info-box-title:before {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-2h2v2zm0-4h-2V7h2v6z"></path></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 24px;
  margin-right: 10px;
  width: 24px;
}

.article .info-box .info-box-content {
  padding: 15px;
}

.article strong,
.article th {
  font-weight: 500;
}

.article .blog-header-link {
  margin-left: 20px;
  opacity: 0;
  transition: opacity 0.1s;
}

.article :hover > .blog-header-link {
  opacity: 100%;
}

.article .colored-box {
  border-radius: 12px;
  margin-bottom: 24px;
  padding: 20px 24px;
  border-left: 4px solid;
  transition: all 0.2s ease;
  margin: 10px 0;
}

.article .colored-box:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
  transform: translateY(-1px);
}

/* Info / Blue */
.article .colored-box.blue-box {
  background: #eff6ff;

  color: #1e40af;
}

/* Purple / Indigo */
.article .colored-box.indigo-box {
  background: #eef2ff;

  color: #4338ca;
}

.article .colored-box.purple-box {
  background: #faf5ff;

  color: #7e22ce;
}

/* Pink */
.article .colored-box.pink-box {
  background: #fdf2f8;

  color: #be185d;
}

/* Warning / Red */
.article .colored-box.red-box {
  background: #fef2f2;

  color: #b91c1c;
}

/* Orange */
.article .colored-box.orange-box {
  background: #fff7ed;

  color: #c2410c;
}

/* Yellow / Caution */
.article .colored-box.yellow-box {
  background: #fefce8;

  color: #a16207;
}

/* Success / Green */
.article .colored-box.green-box {
  background: #f0fdf4;

  color: #15803d;
}

/* Teal */
.article .colored-box.teal-box {
  background: #f0fdfa;

  color: #0f766e;
}

/* Cyan */
.article .colored-box.cyan-box {
  background: #ecfeff;

  color: #0e7490;
}

/* Neutral / Gray */
.article .colored-box.gray-box {
  background: #f9fafb;

  color: #374151;
}

.article .colored-box p {
  margin: 0 0 12px 0;
  line-height: 1.6;
}

.article .colored-box p:last-child {
  margin-bottom: 0;
}

/* Опционально: иконки для разных типов */
.article .colored-box.blue-box::before,
.article .colored-box.green-box::before,
.article .colored-box.yellow-box::before,
.article .colored-box.red-box::before {
  font-size: 18px;
  margin-right: 8px;
  vertical-align: middle;
}

.article .blog-expanded {
  margin-bottom: 20px;
  margin-top: 20px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.article .blog-expanded:hover {
  border-color: #d1d5db;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.article .blog-expanded input[type="checkbox"] {
  display: none;
}

.article .blog-expanded label {
  background-color: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 24px;
  position: relative;
  transition: background-color 0.2s ease;
  user-select: none;
  color: #1f2937;
}

.article .blog-expanded label:hover {
  background-color: #f9fafb;
}

.article .blog-expanded label::after {
  content: "";
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.article .blog-expanded input[type="checkbox"]:checked ~ label::after {
  transform: rotate(180deg);
}

.article .blog-expanded input[type="checkbox"]:not(:checked) ~ label::after {
  transform: rotate(0deg);
}

.article .blog-expanded input[type="checkbox"]:not(:checked) ~ div {
  max-height: 0;
  padding: 0 24px;
  opacity: 0;
  overflow: hidden;
}

.article .blog-expanded > div {
  background-color: #f9fafb;
  padding: 20px 24px 24px 24px;
  max-height: 3000px;
  opacity: 1;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease,
    opacity 0.3s ease;
  border-top: 1px solid #e5e7eb;
}

.article .blog-expanded .h1,
.article .blog-expanded .h2,
.article .blog-expanded .h3,
.article .blog-expanded .h4,
.article .colored-box .h1,
.article .colored-box .h2,
.article .colored-box .h3,
.article .colored-box .h4 {
  margin-bottom: 12px;
  margin-top: 12px;
}

.article .blog-expanded .h1:first-child,
.article .blog-expanded .h2:first-child,
.article .blog-expanded .h3:first-child,
.article .blog-expanded .h4:first-child {
  margin-top: 0;
}

.article .blog-expanded p:last-child {
  margin-bottom: 0;
}

.anchor-nav-container {
  display: none;
}

.menu {
  scrollbar-gutter: stable both-edges;
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: column;
  max-height: calc(100vh - 240px);
  height: fit-content;
  max-width: 440px;
  border-radius: 10px;
  overflow: auto;
  position: sticky;
  row-gap: 20px;
  top: 10px;
  transition: 0.25s;
  width: 100%;
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
}

@media (min-width: 773px) {
  .menu.full-height {
    max-height: calc(100vh - 20px);
  }
}

/* Webkit browsers */
@media (max-width: 773px) {
  .menu {
    height: 100vh;
    position: fixed;
    top: 0;
    transform: translateX(-100%);
    z-index: 9999;
    max-height: none;
    left: 0;
  }
}

@media (max-width: 419px) {
  .menu {
    max-width: none;
  }
}

body {
  --sb-track-color: #ffffff;
  --sb-thumb-color: hsla(200, 97%, 40%, 0.15);
  --sb-size: 5px;
}

.menu .search-menu-button[data-search="close-button"] {
  display: none;
}

@media (max-width: 773px) {
  .menu .search-menu-button[data-search="close-button"] {
    cursor: pointer;
    display: block;
    display: none;
    height: 43px;
    position: absolute;
    right: 20px;
    top: 10px;
    width: 43px;
  }

  .menu
    .search-menu-button[data-search="close-button"]
    .search-menu-button__line {
    background-color: #252b36;
    border-radius: 2px;
    display: block;
    height: 4px;
    left: 5px;
    position: absolute;
    width: 33px;
  }

  .menu
    .search-menu-button[data-search="close-button"]
    .search-menu-button__line:first-of-type {
    top: 20px;
    transform: rotate(-45deg);
  }

  .menu
    .search-menu-button[data-search="close-button"]
    .search-menu-button__line:last-of-type {
    top: 20px;
    transform: rotate(45deg);
  }
}

.request-education-button {
  align-items: center;
  color: var(--color-baset-text-primary);
  display: flex;
  font-size: 18px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.2em;
  background: transparent;
  border-radius: 20px;
  display: block;
  flex-shrink: 0;
  font-weight: 500;
  height: 39px;
  margin-top: 20px;
  max-width: 277px;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 10;
  z-index: 1;
  position: relative;
  display: flex;
  justify-content: center;
  padding: 10px 5px;
}

.request-education-button::before {
  -webkit-animation: move-gradient-3colors 1.3s linear infinite;
  animation: move-gradient-3colors 1.3s linear infinite;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  background: linear-gradient(
    90deg,
    #c5fce7 0,
    #d6e7fd 33.3%,
    #c5fce7 66.7%,
    #d6e7fd
  );
  content: "";
  height: 100%;
  left: -200%;
  position: absolute;
  top: 0;
  transition: 0.5s;
  width: 300%;
  z-index: -1;
}

.menu_open {
  transform: translateX(0);
}

.request-education-box {
  align-items: flex-start;
  background-color: #8af2bd;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 4px;
  margin-top: 20px;
  overflow: hidden;
  padding: 13px 14px 12px 12px;
  width: 294px;
}

@media (max-width: 773px) {
  .request-education-box {
    margin-top: 66px;
  }
}

.request-education-down-content {
  align-items: center;
  background-color: #252b36;
  border-radius: 13px;
  display: flex;
  gap: 4px;
  height: 38px;
  justify-content: space-between;
  padding: 8.5px 8px 13px 13px;
  z-index: 200;
}

.request-education-down-content svg {
  flex-shrink: 0;
}

.request-education-up-title {
  color: #252b36;
  font-size: 21px;
  font-weight: 800;
  position: relative;
  z-index: 300;
}

.request-education-up-title:before {
  background: transparent;
  border: 12px solid #b2ffd8;
  border-radius: 50%;
  content: "";
  height: 74px;
  left: -17px;
  position: absolute;
  top: -36px;
  width: 74px;
  z-index: -1;
}

.request-education-up-subtitle {
  color: #266344;
  font-size: 12px;
  font-weight: 500;
  position: relative;
  transform: translateY(-3px);
  z-index: 30;
}

.request-education-up-subtitle:before {
  height: 74px;
  right: -30px;
  top: -100px;
  width: 74px;
  z-index: 1;
}

.request-education-up-subtitle:after,
.request-education-up-subtitle:before {
  background: transparent;
  border: 12px solid #b2ffd8;
  border-radius: 50%;
  content: "";
  position: absolute;
}

.request-education-up-subtitle:after {
  height: 164px;
  right: 14px;
  top: -17px;
  width: 164px;
  z-index: -1;
}

.request-education-down-text {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
  z-index: 300;
}

.request-education-up-button-box {
  align-items: flex-end;
  display: flex;
  gap: 12px;
  width: 100%;
}

main.main {
  flex-direction: row;
  gap: 10px;
  margin-bottom: 20px;
}

aside {
  bottom: 0;
}

.content a[data-fancybox] {
  display: block;
  max-height: 465px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  width: fit-content;
  border-radius: 10px;
  border: 1px solid rgba(3, 135, 201, 0.2);
  margin: 10px 0 30px;
}

.content a[data-fancybox] img {
  width: 100%;
  height: auto;
  max-height: 465px;
  object-fit: contain;
  transition: transform 0.3s ease;
  border-radius: 15px;
  margin-top: 0;
}

.content a[data-fancybox]:hover img {
  transform: scale(1.03);
}

.chatapp-nav-section ul {
  font-size: 16px;
}

.search-container {
  width: 100%;
  max-width: 400px;
}

.search-wrapper {
  box-sizing: border-box;
  position: relative;
  font-size: 16px;
  width: 100%;
}

.search-bar__input {
  box-sizing: border-box;
  padding: 10px 5px 10px 18px;
  background-color: transparent;
}

.search-bar__button {
  margin-left: -5px;
}

.search-bar__input {
  width: calc(100% - 25px);
  box-sizing: border-box;
}

.search-bar {
  display: flex;
  align-items: center;
  background-color: #f3f3f3;
  border-radius: 5px;
  overflow: hidden;
  height: 50px;
}

.search-list {
  position: absolute;
  left: 0;
  top: calc(100% + 2px);
  border-radius: 0 0 10px 10px;
  padding-top: 10px;
  background-color: #fff;
  z-index: 20;
  padding-left: 0;
  max-height: 480px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  border: 1px solid #00000015;
  border-top: none;
  border-radius: 10px;
  box-shadow: 0 0 15px #00000015;
}

.search-list::-webkit-scrollbar {
  width: var(--sb-size);
}

.search-list::-webkit-scrollbar-track {
  background: var(--sb-track-color);
}

.search-list::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 5px;
}

@supports not selector(::-webkit-scrollbar) {
  .search-list {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}

.search-list.active {
  opacity: 1;
  visibility: visible;
}

.content h2,
.content h3 {
  color: #252b36;
  font-family: "Inter", sans-serif;
  margin: 20px 0;
  font-weight: 500;
  font-size: 32px;
}

.content h3 {
  margin: 50px 0 20px;
}

.chatapp-nav-term > a {
  width: fit-content;
  display: block;
  text-decoration: underline !important;
  padding: 0 !important;
}

.chatapp-nav-wrapper {
  display: flex;
  box-sizing: border-box;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  margin-right: -5px;
  padding-right: 5px;
  flex-direction: column;
  letter-spacing: -.05em;
}


.chatapp-nav-wrapper::-webkit-scrollbar {
  width: var(--sb-size);
}

.chatapp-nav-wrapper::-webkit-scrollbar-track {
  background: var(--sb-track-color);
}

.chatapp-nav-wrapper::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 5px;
}

@supports not selector(::-webkit-scrollbar) {
  .chatapp-nav-wrapper {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}
.chatapp-nav-section {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 250px;
}

.chatapp-nav-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 15px 0;
  color: #252b36;
}

.chatapp-nav-list {
  list-style: none;
  padding-left: 0;
  width: 100%;
  box-sizing: border-box;
}

.chatapp-nav-list ul {
  list-style: none;
  /* padding-left: 5px; */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    padding 0.3s ease;
}

.chatapp-nav-list > li > ul {
  padding-left: 25px;
}

.chatapp-nav-list > li > ul li.parent_active {
  margin-left: -25px;
  padding-left: 25px;
  
}
.chatapp-nav-list > li > ul li ul li.parent_active {
  margin-left: -25px;
  padding-left: 50px;
}
.chatapp-nav-list > li > ul li ul li .chatapp-nav-term {
  font-size: 15px;
}

.chatapp-nav-list ul ul > li {
  padding-left: 25px;
}
.chatapp-nav-list ul.open {
  max-height: max-content;
  opacity: 1;
  transition:
    max-height 0.5s ease,
    opacity 0.4s ease 0.1s,
    padding 0.3s ease;
}

.chatapp-nav-wrapper
  > div
  > ul
  > li
  > .chatapp-nav-term-wrapper
  > .chatapp-nav-term {
  font-size: 17px;
  color: #131313;
}

.chatapp-nav-wrapper > div > ul > li > a {
  font-size: 17px;
  color: #131313;
}

.chatapp-nav-wrapper > div > ul > li > ul > li > a {
  font-size: 16px;
  color: #131313;
  font-weight: 400;
}

.chatapp-nav-list a {
  text-decoration: none;
  color: #131313;
  padding: 4px 5px;
  display: block;
  font-size: 15px;
  font-weight: 400;
  border-radius: 8px;
  transition:
    background-color 0.35s ease,
    color 0.35s ease;
  /* padding-left: 35px; */
  box-sizing: border-box;
}

.chatapp-nav-home-item a {
  padding-left: 5px;
}

.chatapp-nav-list a:hover {
  color: #0389cb;
}



.chatapp-nav-term {
  font-weight: 400;
  cursor: pointer;
  position: relative;
  padding-left: 20px;
  user-select: none;
  border-radius: 8px;
  color: #131313;
  padding: 8px 13px 8px 8px;
  transition:
    background-color 0.35s ease,
    color 0.35s ease;
  padding-right: 20px;
  /* margin-left: 10px; */
  /* margin-left: -5px; */
  padding-left: 30px;
}

.chatapp-nav-term:hover {
  color: #252b36;
}

.chatapp-nav-term:before {
  content: "";
  position: absolute;
  left: 10px;
  top: calc(50% - 3px);
  transition: transform 0.3s ease;
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 1px solid #131313;
  border-bottom: 1px solid #131313;
  transform: rotate(-45deg);
}

.chatapp-nav-term.open:before {
  transform: rotate(45deg);
  top: calc(50% - 5px);
}

.chatapp-nav-section
  > .chatapp-nav-list
  > li
  > .chatapp-nav-term-wrapper
  > .chatapp-nav-term.open {
  /* background-color: #f3f3f3; */
  margin-bottom: 5px;
  font-weight: 500;
}

.chatapp-nav-post {
  margin: 3px 0;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.chatapp-nav-post:hover {
  transform: translateX(3px);
}

.article pre {
  white-space: pre-wrap;
}

section.content {
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 50px 70px;
  position: relative;
  line-height: 1.4;
  letter-spacing: -.05em;
font-size: 17px;
}

.content .content {
  padding: 0;
  border-radius: 0;
  background-color: transparent;
}

.content iframe {
  display: block;
  max-width: 100%;
  box-sizing: border-box;
  height: fit-content;
  width: 100%;
  height: 340px;
}

.search-loading {
  display: block;
  width: 100%;
  padding: 10px;
  position: relative;
  height: 40px;
  background: linear-gradient(
    90deg,
    #f0f0f0 0%,
    #f0f0f0 40%,
    #e0e0e0 50%,
    #f0f0f0 60%,
    #f0f0f0 100%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite ease-in-out;
  border-radius: 4px;
}

.no-results {
  padding: 10px;
  text-align: center;
  color: #666;
  font-size: 14px;
  background: #f9f9f9;
  border-radius: 4px;
  border-left: 3px solid #e0e0e0;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.search-list {
  width: 100%;
  box-sizing: border-box;
}

.search-list ul {
  padding: 0;
}

#search-container .search-list a {
  display: block;
  font-size: 16px;
  letter-spacing: -0.4px;
  box-sizing: border-box;
  line-height: 1.2;
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid #00000015;
}
#search-container .search-list {
  max-height: 215px;
  overflow: auto;
  padding: 20px 30px;
  box-sizing: border-box;
}
.search-list ul li {
  padding: 5px 10px 15px;
  padding-bottom: 0;
  transition: 0.35s ease;
}

.search-list ul li a {
  display: block;
  color: #333;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.35s ease;
  border-bottom: 1px solid #00000015;
  padding-bottom: 10px;
}

.search-list ul li a:hover {
  color: #0d6efd;
}

.search-list ul ul li:hover {
  background-color: #e5e5e5;
}

.search-list ul li:last-child {
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: none;
}

.for-base-1 {
  position: relative;
}

.for-base-2 {
  position: relative;
}

.for-base-1::before {
  content: "Версия 1.0";
  position: absolute;
  right: 3px;
  bottom: 0;
  color: #000;
  opacity: 0.5;
  font-size: 12px;
}

.for-base-2::before {
  content: "Версия 2.0";
  position: absolute;
  right: 3px;
  bottom: 0;
  color: #000;
  opacity: 0.5;
  font-size: 12px;
}

.anchor-nav-container {
  padding: 25px;
  box-sizing: border-box;
  max-width: 500px;
  width: 100%;
  height: fit-content;
  background-color: #edf7fb;
  border-radius: 10px;
  box-sizing: border-box;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.anchor-nav {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

p.anchor-nav__title {
  font-size: 16px;
  color: rgba(0, 0, 0, 0.7);
  box-sizing: border-box;
  display: block;
  margin: 0;
  margin-bottom: 26px;
  font-weight: 500;
}

.content a.anchor-nav__link {
  display: block;
  position: relative;
  color: #000;
  font-size: 18px;
  margin-bottom: 15px;
  padding-left: 15px;
  text-decoration: none;
}

.content a.anchor-nav__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  background-color: #00000070;
  border-radius: 50%;
}

.anchor-nav__link--h3::before {
  display: none;
}
.anchor-nav__link--h2::before {
  display: none;
}

.content a.anchor-nav__link.anchor-nav__link--h3 {
  margin-left: 10px;
  margin-top: -10px;
  color: rgba(0, 0, 0, 0.8);
  font-size: 16px;
}

.content a.anchor-nav__link:hover {
  color: #000;
}

.main {
  align-items: stretch;
}

@media (max-width: 768px) {
  main.main {
    /* flex-direction: column-reverse; */
  }

  .anchor-nav-container {
    margin: 0 20px;
    position: static;
    width: calc(100% - 40px);
    max-width: none;
    box-sizing: border-box;
    display: none !important;
  }

  .content.article {
    padding: 20px 0;
  }

  .menu {
    background-color: #fff;
  }
}

.content figure.table table {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-all;
}

.custom-ul li {
  list-style: disc;
}

.chatapp-nav-wrapper {
  /* padding-top: 20px; */
}

section.content img:not(.img-icon) {
  width: 100%;
}

.close-nav-btn {
  display: none;
}

@media (max-width: 419px) {
  .chatapp-nav-wrapper {
    position: relative;
  }

  .close-nav-btn {
    display: none;
    position: fixed;
    right: 15px;
    top: 65px;

    width: 30px;
    height: 30px;
    z-index: 100;
    background-color: #e7e7e7cb;
    border-radius: 5px;
  }

  .close-nav-btn::before {
    content: "";
    position: absolute;
    left: 5px;
    top: calc(50% - 1px);
    width: calc(100% - 10px);
    height: 1px;
    background-color: #000;
    opacity: 0.7;
    transform: rotate(45deg);
    pointer-events: none;
  }

  .close-nav-btn::after {
    content: "";
    position: absolute;
    left: 5px;
    top: calc(50% - 1px);
    width: calc(100% - 10px);
    height: 1px;
    background-color: #000;
    opacity: 0.7;
    transform: rotate(-45deg);
    pointer-events: none;
  }
}

/* .chatapp-nav-section:last-child > ul > li > div > .chatapp-nav-term {
  opacity: 0.7;
  font-size: 12px;
} */

.content ul li {
  list-style: disc;
  margin-bottom: 5px;
}
.content ul li:last-child {
  margin-bottom: 0;
}

.article .accord-item {
  border: 1px solid #ddd;
  margin-bottom: 10px;
  border-radius: 4px;
  overflow: hidden;
}

.article .accord-item .accord-question + br {
  display: none;
}

.accord-item > br {
  display: none;
}

.article .accord-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.article .accord-item:hover {
  border-color: #d1d5db;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.article .accord-question {
  background: #ffffff;
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: #1f2937;
  user-select: none;
  display: block;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.2s ease;
  position: relative;
}

.article .accord-question::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
  position: absolute;
  right: 15px;
  top: calc(50% - 10px);
  padding-right: 30px;
}

.article .accord-item.active .accord-question::after {
  transform: rotate(180deg);
}

.article .accord-item.active .accord-question {
  background: #f9fafb;
}

.article .accord-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  background: #ffffff;
}

.article .accord-item.active > .accord-content {
  padding: 0 20px 20px 20px;
  max-height: max-content;
}

main.main {
  max-width: 1370px;
  padding: 0 15px;
  box-sizing: border-box;
  margin-top: 20px;
}

/* Контейнер кнопки контактов */
.contacts-dropdown-container {
  position: relative;
  display: inline-block;
  margin-left: 12px;
}

/* Кнопка контактов */
.contacts-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.contacts-btn:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

.contacts-btn svg {
  flex-shrink: 0;
}

/* Выпадающее меню */
.contacts-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 280px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.contacts-dropdown-container.active .contacts-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contacts-dropdown__inner {
  padding: 16px;
}

.contacts-dropdown__title {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  padding: 0 4px;
}

/* Список контактов */
.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: #374151;
  font-size: 14px;
  transition: all 0.2s ease;
  position: relative;
}

.contact-item:hover {
  background: #f3f4f6;
  color: #1f2937;
}

.contact-item__icon {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  flex-shrink: 0;
  object-fit: cover;
}

.contact-item__text {
  flex: 1;
  font-weight: 500;
}

.contact-item__arrow {
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s ease;
}

.contact-item:hover .contact-item__arrow {
  opacity: 1;
  transform: translateX(0);
}

.contact-separator {
  height: 1px;
  background: #e5e7eb;
  margin: 4px 0;
}

/* Адаптив для планшетов */
@media (max-width: 768px) {
  .contacts-btn span {
    display: none;
  }

  .contacts-btn {
    padding: 8px 12px;
  }

  .contacts-dropdown {
    right: 0;
    width: 260px;
  }
}

/* Адаптив для мобильных */
@media (max-width: 480px) {
  .contacts-dropdown-container {
    margin-left: 8px;
  }

  .contacts-btn {
    padding: 6px 10px;
    border-radius: 6px;
  }

  .contacts-dropdown {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 16px 16px 0 0;
    transform: translateY(100%);
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.1);
  }

  .contacts-dropdown-container.active .contacts-dropdown {
    transform: translateY(0);
  }

  .contacts-dropdown::before {
    content: "";
    display: block;
    width: 40px;
    height: 4px;
    background: #d1d5db;
    border-radius: 2px;
    margin: 12px auto 8px;
  }

  .contacts-dropdown__inner {
    padding: 12px 20px 24px;
  }

  .contact-item {
    padding: 14px 12px;
  }
}

/* Overlay для мобильных */
.contacts-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 999;
  pointer-events: none;
}

@media (max-width: 480px) {
  .contacts-overlay {
    display: block;
  }

  .contacts-dropdown-container.active .contacts-overlay {
    pointer-events: all;
    opacity: 1;
  }
}
.content table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  margin: 24px 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(3, 137, 203, 0.20);
}

.content table th,
.content table td {
  padding: 14px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(3, 137, 203, 0.20);
  border-right: 1px solid rgba(3, 137, 203, 0.20);
}

.content table th:last-child,
.content table td:last-child {
  border-right: none;
}

.content table th {
  background-color: rgba(3, 137, 203, 0.07);
  font-weight: 600;
  font-size: 14px;
  color: #374151;
  border-bottom: 1px solid rgba(3, 137, 203, 0.20);
}

.content table td {
  background-color: transparent;
  color: #1f2937;
  font-size: 14px;
  line-height: 1.6;
}

.content table tbody tr:last-child td {
  border-bottom: none;
}

.content table td:first-child {
  font-weight: 500;
  color: #111827;
}

/* Адаптив */
@media (max-width: 768px) {
  .content table {
    font-size: 13px;
    border-radius: 8px;
    margin: 16px 0;
  }

  .content table th,
  .content table td {
    padding: 10px 12px;
  }

  .content table th {
    font-size: 12px;
  }
}

@media (max-width: 640px) {
  .content .table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 16px 0;
    border-radius: 12px;
  }

  .content .table-wrapper table {
    margin: 0;
    min-width: 500px;
  }
}

/* Утилитарные классы — оставляем как были */
.content table.table-compact th,
.content table.table-compact td {
  padding: 8px 12px;
  font-size: 13px;
}

.content table tbody tr:first-child {
  background-color: rgba(3, 137, 203, .07);
}

.content table.table-centered th,
.content table.table-centered td {
  text-align: center;
}

.content table td.cell-success {
  background-color: #f0fdf4 !important;
  color: #15803d;
  font-weight: 500;
}

.content table td.cell-warning {
  background-color: #fefce8 !important;
  color: #a16207;
  font-weight: 500;
}

.content table td.cell-error {
  background-color: #fef2f2 !important;
  color: #b91c1c;
  font-weight: 500;
}

.content table td.cell-info {
  background-color: #eff6ff !important;
  color: #1e40af;
  font-weight: 500;
}

.get-back-wrapper {
  margin-top: 20px;
}

.btn-gotop {
  width: 50px;
  border-radius: 50%;
  background-color: #0389cb;
  box-sizing: border-box;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  border: 1px solid #0389cb;
}

.btn-gotop:hover {
  background-color: #fff;
}

.btn-gotop svg path {
  transition: 0.35s ease;
  stroke: #fff;
}

.btn-gotop:hover svg path {
  stroke: #0389cb;
}

.scroll-top {
  opacity: 0;
  visibility: hidden;

  height: 100%;
  width: 50px;
  position: sticky;
  margin-left: auto;
  margin-right: -50px;
  bottom: 30px;
  height: fit-content;
  pointer-events: none;
  transition: 0.35s ease;
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.flex-imgs p {
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.flex-imgs p a {
  max-width: 100%;
  display: block;
  width: auto;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .flex-imgs p a {
    box-sizing: border-box;
    width: calc(50% - 7.5px);
  }

  .flex-imgs p {
    flex-wrap: wrap;
    gap: 15px;
  }
}

@media (max-width: 560px) {
  .flex-imgs p a img {
    box-sizing: border-box;
    width: 100%;
  }
}
.parent_active {
  background-color: #f3f3f3;
  border-radius: 10px;
  transition: 0.35s ease;
  padding-top: 5px;
  padding-bottom: 3px;
  /* padding-left: 15px; */
}

.parent_first-active {
  background-color: #F3F3F3;
  padding-top: 15px;
  padding-bottom: 15px;
}

.content a {
  color: #0389cb;
}

@media (max-width: 1200px) {
  .menu {
    max-width: 320px;
    padding: 10px;
  }

  .chatapp-nav-section {
    min-width: 0;
  }

  .chatapp-nav-list a {
    /* padding-left: 25px; */
    font-size: 14px;
  }

  section.content {
    padding: 30px;
  }

  .scroll-top {
    margin-right: -10px;
  }
}

@media (max-width: 920px) {
  .menu {
    max-width: 210px;
  }

  .menu .chatapp-nav-home-item a {
    padding-left: 0;
    font-size: 16px;
  }

  .chatapp-nav-term {
    font-size: 15px;
  }
  .chatapp-nav-list a {
    font-weight: 400;
    font-size: 14px;
  }
  .parent_active {
    padding-left: 5px;
  }

  .chatapp-nav-list a {
    padding-left: 30px;
  }

  .chatapp-nav-list > li > ul {
    padding-left: 5px;
  }
  .chatapp-nav-list ul ul > li {
    padding-left: 10px;
  }
  .chatapp-nav-list > li > ul li ul li.parent_active {
    padding-left: 30px;
  }
}
.chatapp-nav-list li.parent_active a {
  color: rgba(19, 19, 19, .7);
}
.mobile-menu-head {
  display: none;
}

@media (max-width: 773px) {
  .menu {
    max-width: none;
    width: 100%;
  }

  .menu .chatapp-nav-wrapper {
    flex-direction: column;
  }

  .menu .search-container {
    display: none;
  }

  .mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    width: 100%;
    box-sizing: border-box;
  }

  .mobile-menu-head p {
    display: block;
    font-size: 24px;
  }

  .mobile-nav-close {
    width: 24px;
    height: 24px;
    box-sizing: border-box;
    position: relative;
    border: none;
    background-color: transparent;
    display: block;
  }

  .mobile-nav-close::before {
    content: "";
    width: 20px;
    left: 2px;
    height: 2px;
    background-color: #000;
    top: calc(50% - 1px);
    position: absolute;
    transform: rotate(45deg);
    pointer-events: none;
  }

  .mobile-nav-close::after {
    content: "";
    width: 20px;
    left: 2px;
    height: 2px;
    background-color: #000;
    top: calc(50% - 1px);
    position: absolute;
    transform: rotate(-45deg);
    pointer-events: none;
  }

  .scroll-top {
    width: 50px;
    height: 50px;
    position: fixed;
    margin-left: 0;
    right: 35px;
    bottom: 80px;
  }

  .chatapp-nav-home-item a {
    font-size: 16px;
    padding-left: 10px;
  }
}

@media (max-width: 768px) {
  .content.article {
    background-color: transparent;
  }

  section.content h1 {
    font-size: 36px;
    margin-bottom: 30px;
  }
}

@media (max-width: 500px) {
  .scroll-top {
    right: 29px;
  }
}

.cp-mobile-menu {
  position: fixed;
  top: 50px;
  height: calc(100% - 50px);
  left: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 50;
  overflow: auto;
  background-color: #f3f3f3;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  top: 0;
  visibility: hidden;
  -webkit-transition: 0.35s ease;
  transition: 0.35s ease;
}

.cp-mobile-menu.active {
  opacity: 1;
  top: 50px;
  visibility: visible;
}

.cp-mobile-menu ul {
  list-style: none;
}

.cp-mobile-menu > ul {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-bottom: 30px;
}

.cp-mobile-menu > ul > li > a {
  color: 16px;
  padding: 16px 16px 16px 0;
  text-decoration: none;
  color: #131313;
  display: block;
  border-bottom: 1px solid rgba(19, 19, 19, 0.062745098);
  display: block;
  position: relative;
}

.cp-mobile-menu > ul > li.with-sublist.active {
  background-color: #fff;
  margin: 0 -20px;
  padding: 8px 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Скрыт по умолчанию */
.cp-mobile-menu > ul > li.with-sublist > ul {
  padding: 0;
  margin: 0;
  padding-left: 16px;
  max-height: 0;
  overflow: hidden;
  box-sizing: border-box;
  transition: max-height 0.3s ease;
}

.cp-header__nav>ul>li.with-sublist>ul {
  box-shadow: 0px 1px 5px rgba(0,0,0,0.05000000074505806)
}

.cp-mobile-menu > ul > li.with-sublist {
  transition: .35s ease;
}


/* Раскрыт когда active */
.cp-mobile-menu > ul > li.with-sublist.active > ul {
  max-height: 999px;
  padding-left: 0;
}

.cp-mobile-menu > ul > li.with-sublist.active > a {
  border-bottom: none;
}

.cp-mobile-menu > ul > li.with-sublist.active a::before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.cp-mobile-menu > ul > li.with-sublist > a {
  color: 16px;
  text-decoration: none;
  padding: 10px;
  padding-left: 0;
  color: #131313;
  display: block;
  border-bottom: 1px solid rgba(19, 19, 19, 0.062745098);
  display: block;
  position: relative;
}

.cp-mobile-menu > ul > li.with-sublist > a::before {
  content: "";
  position: absolute;
  right: 20px;
  top: calc(50% - 2px);
  height: 4px;
  width: 8px;
  background-image: url(../../assets/imgs/icons/cp-arrow.svg);
}

.cp-mobile-menu > ul > li.with-sublist > ul {
  padding: 0;
  margin: 0;
  padding-left: 12px;
}

.cp-mobile-menu > ul > li.with-sublist > ul > li > a {
  color: #000;
  font-size: 14px;
  text-decoration: none;
  padding: 10px 12px;
  display: block;
  font-weight: 500;
}

.cp-mobile-menu > ul > li.with-sublist > ul > li ul li {
  padding-left: 16px;
}

.cp-mobile-menu > ul > li.with-sublist > ul > li ul li a {
  display: block;
  font-size: 14px;
  text-decoration: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: rgba(18, 18, 18, 0.8);
  padding: 10px;
  padding-left: 32px;
}

.cp-mobile-menu .cp-mobile__support {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}

.cp-mobile-menu .cp-mobile__support span {
  display: block;
  font-size: 16px;
  color: rgba(18, 18, 18, 0.8);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-bottom: 5px;
}

.cp-mobile-menu .cp-mobile__support .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 30px;
}

.cp-mobile-menu .cp-mobile__support .links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
}

.cp-mobile-menu .cp-mobile__support .mobile-lang-switcher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  gap: 5px;
  border: none;
  background-color: transparent;
  text-align: center;
  padding: 5px 10px 5px 0;
  margin-top: 30px;
}

.cp-mobile-menu .cp-mobile__support .mobile-lang-switcher span {
  margin: 0;
  padding: 0;
}

.cp-mobile-menu .cp-mobile__support .action {
  margin-top: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.search-overlay .search-list {
  background: none;
  border: none;
  width: 100vw;
  left: -50px;
  box-sizing: border-box;
  padding: 20px;
  padding: 25px 20px;
  border: none;
  box-shadow: none;
  max-height: calc(100vh - 80px);
}
.search-overlay .search-list a {
  padding: 12px 0;
  box-sizing: border-box;
  color: #131313;
  display: block;
  line-height: 1.2;
  letter-spacing: -0.4px;
  font-weight: 400;
  font-size: 16px;
  border-bottom: 1px solid #00000015;
}
body.body {
  display: block;
}
main.main {
  margin: 0 auto;
  margin-top: 20px;
}
.chatapp-nav-wrapper>.chatapp-nav-section>ul>li>.chatapp-nav-term-wrapper>.chatapp-nav-term {
  font-weight: 500;
}

.chatapp-nav-post.active a {
  color: #0389cb !important;
}

.chatapp-nav-post a:hover {
  color: #0389cb !important;
}

.content h2 {
  margin-top: 50px;
}