@charset "UTF-8";
/* reset */
:root {
  --dxp-s-link-text-decoration-hover: none;
  --dxp-s-link-text-decoration-focus: none;
  --primary: #052832;
  --primary-70: rgba(5, 40, 50, 0.7);
  --primary-50: rgba(5, 40, 50, 0.5);
  --primary-20: rgba(5, 40, 50, 0.2);
  --primary-10: rgba(5, 40, 50, 0.1);
  --primary-05: rgba(5, 40, 50, 0.05);
  --primary-03: rgba(5, 40, 50, 0.03);
  --s-primary: #2088FD;
  --s-primary-40: rgba(0, 98, 255, 0.4);
  --s-primary-30: rgb(32, 136, 253, 0.3);
  --secondary: #0062FF;
  --secondary-50: rgba(0, 98, 255, 0.5);
  --secondary-10: rgba(0, 98, 255, 0.1);
  --color-white: #fff;
  --color-black: #000;
  --color-black-20: rgba(0, 0, 0, 0.2);
  --color-black-40: rgba(0, 0, 0, 0.4);
  --color-black-80: rgba(0, 0, 0, 0.8);
  --color-gr-10: rgba(5, 40, 80, 0.1);
  --color-gr-05: rgba(5, 40, 80, 0.05);
  --color-gr-03: rgba(5, 40, 80, 0.03);
  --color-red: rgb(255, 66, 55);
  --color-red-10: rgba(255, 66, 55, 0.1);
  --header-height: 71px;
  --footer-height: 380px;
  --content-width: 1920px;
  --side-padding: 60px;
  --side-padding-large: calc(var(--side-padding) + 160px);
  --timeline-handle-size: 8px;
  overflow-wrap: break-word;
  word-break: break-word;
}
@supports (--safe-top: constant(safe-area-inset-top)) {
  :root {
    --safe-top: constant(safe-area-inset-top);
    --safe-bottom: constant(safe-area-inset-bottom);
  }
}
@supports (--safe-top: env(safe-area-inset-top)) {
  :root {
    --safe-top: env(safe-area-inset-top);
    --safe-bottom: env(safe-area-inset-bottom);
  }
}

*, ::before, ::after {
  box-sizing: border-box;
}

html, body, p, ul, ol, li, dl, dt, dd, blockquote, figure,
h1, h2, h3, h4, h5, h6, fieldset, legend, input, textarea, select, button {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
}

body {
  font: 400 15px/1.6 "SamsungBody", -apple-system, BlinkMacSystemFont, system-ui, "Segoe UI", Roboto, "Helvetica Neue", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
  color: var(--primary);
  -webkit-text-size-adjust: none;
}

li {
  list-style: none;
}

address {
  font-style: normal;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, textarea, select, button {
  appearance: none;
  border-radius: 0;
}

input, textarea, select {
  width: 100%;
}

textarea {
  width: 100%;
  padding: 8px 16px;
  border: 2px solid var(--primary-10);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 400;
  resize: none;
}

button {
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
button:disabled {
  cursor: default;
}

a {
  color: inherit;
  text-decoration: none;
}

fieldset, iframe {
  border: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

td, th {
  padding: 0;
}

th {
  font-weight: 400;
}

.sr-only, legend, caption, [hidden] {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  white-space: nowrap;
  clip-path: polygon(0 0, 0 0, 0 0);
}

:focus {
  outline: 0;
  /* border-color: var(--secondary);
  box-shadow: 0 0 5px var(--secondary-10); */
}

:active {
  outline: 0;
  border-color: var(--secondary);
}

::placeholder {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  color: var(--primary-50);
}

:not(html, body)::-webkit-scrollbar {
  width: 24px;
}
:not(html, body)::-webkit-scrollbar-thumb {
  border: 8px solid transparent;
  border-radius: 16px;
  background-color: var(--color-gr-10);
  background-clip: padding-box;
}

@media (max-width: 120em) {
  :root {
    --side-padding: 3.125vw;
    --side-padding-large: calc(var(--side-padding) + 8.33%);
  }
}
@media (max-width: 64em) {
  :root {
    --header-height: 5.6rem;
    --side-padding: 1.6rem;
    --side-padding-large: 1.6rem;
    --timeline-handle-size: 0.8rem;
  }
  html {
    font-size: 62.5%;
  }
}
.dimmed {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100dvh;
  padding: 0 var(--side-padding);
  background: rgba(0, 0, 0, 0.4);
}

/* slds style */
/* modal
.slds-modal__header{
    padding: 40px;
    border-bottom: 0;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    background-color: var(--color-white);
}
.slds-modal__content{
    padding: 40px;
    border-radius: 16px;
    background-color: var(--color-white);
}
.slds-modal__header + .slds-modal__content{
    border-radius: 0;
}
.slds-modal__footer{
    padding: 40px;
    border-top: 0;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    background-color: var(--color-white);
} */
/* fonts */
@font-face {
  font-family: "SamsungHead";
  font-weight: 300;
  font-display: swap;
  src: local("SamsungHeadBeta04-Light"), url("/sfsites/c/resource/forumFonts3/BETA_FORUM_FONTS/SamsungHeadBeta04-Light.woff2") format("woff2");
}
@font-face {
  font-family: "SamsungHead";
  font-weight: 400;
  font-display: swap;
  src: local("SamsungHeadBeta04-Regular"), url("/sfsites/c/resource/forumFonts3/BETA_FORUM_FONTS/SamsungHeadBeta04-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "SamsungHead";
  font-weight: 500;
  font-display: swap;
  src: local("SamsungHeadBeta04-Medium"), url("/sfsites/c/resource/forumFonts3/BETA_FORUM_FONTS/SamsungHeadBeta04-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "SamsungHead";
  font-weight: 700;
  font-display: swap;
  src: local("SamsungHeadBeta04-Bold"), url("/sfsites/c/resource/forumFonts3/BETA_FORUM_FONTS/SamsungHeadBeta04-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "SamsungBody";
  font-weight: 300;
  font-display: swap;
  src: local("SamsungBodyBeta03-Light"), url("/sfsites/c/resource/forumFonts3/BETA_FORUM_FONTS/SamsungBodyBeta03-Light.woff2") format("woff2");
}
@font-face {
  font-family: "SamsungBody";
  font-weight: 400;
  font-display: swap;
  src: local("SamsungBodyBeta03-Regular"), url("/sfsites/c/resource/forumFonts3/BETA_FORUM_FONTS/SamsungBodyBeta03-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "SamsungBody";
  font-weight: 700;
  font-display: swap;
  src: local("SamsungBodyBeta03-Bold"), url("/sfsites/c/resource/forumFonts3/BETA_FORUM_FONTS/SamsungBodyBeta03-Bold.woff2") format("woff2");
}
/* typography */
.display-typo {
  font-size: 48px;
  font-family: "SamsungHead";
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 64em) {
  .display-typo {
    font-size: 2rem;
  }
}

.d1-typo {
  font-size: 32px;
  font-family: "SamsungHead";
  font-weight: 700;
}

.h1-typo {
  font-size: 24px;
  font-family: "SamsungHead";
  font-weight: 700;
}

.h2-typo {
  font-size: 20px;
  font-family: "SamsungHead";
  font-weight: 700;
}

.h3-typo {
  font-size: 16px;
  font-family: "SamsungHead";
  font-weight: 700;
}

.h4-typo {
  font-size: 15px;
  font-family: "SamsungHead";
  font-weight: 700;
}

.p1-typo {
  font-size: 20px;
}

.p2-typo {
  font-size: 16px;
}

.p3-typo {
  font-size: 15px;
}

.p4-typo {
  font-size: 14px;
}

.p5-typo {
  font-size: 13px;
}

.bold {
  font-weight: 700;
}

/* button */
.chip-list, .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.btn-wrap .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
  min-width: 40px;
  height: 36px;
  padding: 0 10px;
  border: 2px solid var(--color-gr-10);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
}

.btn-wrap.evenly .btn {
  flex: 1;
}

.btn.small {
  min-width: 56px;
  height: 28px;
  border-radius: 8px;
  font-weight: 400;
}
.btn.primary {
  padding: 0 12px;
  border: 0;
  background-color: var(--primary);
  color: var(--color-white);
}
.btn.primary:hover::after, .btn.primary:focus::after {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.2);
}
.btn.primary:active {
  color: rgba(255, 255, 255, 0.5);
}
.btn.secondary {
  padding: 0 12px;
  border: 0;
  background-color: var(--color-gr-05);
}
.btn.secondary:hover::after, .btn.secondary:focus::after {
  width: 100%;
  height: 100%;
}
.btn.secondary.is-active {
  background-color: var(--color-white);
}
.btn.btn-toggle {
  gap: 0 !important;
  padding-right: 6px;
}
.btn.btn-toggle .ico {
  transition: 0.3s;
}
.btn.btn-toggle.is-active {
  border-color: transparent;
  background-color: var(--color-gr-05);
}
.btn.btn-toggle.is-active .ico {
  transform: rotate(-180deg);
}
.btn:hover::after, .btn:focus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: inherit;
  background-color: var(--color-gr-10);
  transform: translate(-50%, -50%);
}
.btn:active {
  color: var(--primary-50);
}
.btn:active .ico {
  opacity: 0.5;
}
.btn[data-active=false] > * {
  opacity: 0.2;
}
.btn[data-active=false]:active > *:not(.ico) {
  opacity: 1;
}
.btn svg {
  width: 16px;
}
.btn .count {
  margin-left: -8px;
}

.multiple-btns {
  display: inline-flex;
  align-items: center;
  column-gap: 4px;
  padding: 4px;
  border-radius: 12px;
  background-color: var(--color-gr-05);
}
.multiple-btns .btn {
  height: 28px;
  border: 0;
  border-radius: 8px;
}
.multiple-btns .btn:hover, .multiple-btns .btn:focus {
  background-color: var(--color-gr-05);
}
.multiple-btns .btn--active {
  background-color: var(--color-white);
}
.multiple-btns .btn--active:hover, .multiple-btns .btn--active:focus {
  background-color: var(--color-gr-10);
}

/* icons */
.ico {
  display: inline-block;
  overflow: hidden;
  width: 16px;
  height: 16px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: middle;
}
.ico-search {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18.031 16.617L22.314 20.899L20.899 22.314L16.617 18.031C15.0237 19.3082 13.042 20.0029 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20.0029 13.042 19.3082 15.0237 18.031 16.617ZM16.025 15.875C17.2941 14.5699 18.0029 12.8204 18 11C18 7.132 14.867 4 11 4C7.132 4 4 7.132 4 11C4 14.867 7.132 18 11 18C12.8204 18.0029 14.5699 17.2941 15.875 16.025L16.025 15.875Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-search-type2 {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.29199 2C13.3191 2.00026 16.5849 5.26556 16.585 9.29297C16.5849 11.0364 15.971 12.6359 14.9502 13.8906L18 16.9404L17.4697 17.4717L16.9395 18.002L13.8896 14.9512C12.6349 15.9721 11.0354 16.5858 9.29199 16.5859C5.26486 16.5858 2.00013 13.3204 2 9.29297C2.00003 5.26549 5.2648 2.00013 9.29199 2ZM9.29199 3.5C6.0934 3.50013 3.50003 6.09375 3.5 9.29297C3.50013 12.4921 6.09346 15.0858 9.29199 15.0859C12.4904 15.0857 15.0848 12.492 15.085 9.29297C15.0849 6.09382 12.4905 3.50026 9.29199 3.5Z' fill='%23052832'/%3E%3C/svg%3E%0A%0A");
}
.ico-caret-down {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7.64018 10.3681C6.98886 9.58653 7.54465 8.3999 8.56205 8.3999H15.438C16.4554 8.3999 17.0111 9.58653 16.3598 10.3681L12.9219 14.4937C12.4421 15.0694 11.5579 15.0694 11.0781 14.4937L7.64018 10.3681Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-angle-down {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12.0007 13.1722L16.9507 8.22217L18.3647 9.63617L12.0007 16.0002L5.63672 9.63617L7.05072 8.22217L12.0007 13.1722Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-angle-up {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12.0007 10.8278L16.9507 15.7778L18.3647 14.3638L12.0007 7.99983L5.63672 14.3638L7.05072 15.7778L12.0007 10.8278Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-check {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M10.0007 15.172L19.1927 5.979L20.6077 7.393L10.0007 18L3.63672 11.636L5.05072 10.222L10.0007 15.172Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-like {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12.001 4.52898C14.35 2.41998 17.98 2.48998 20.243 4.75698C22.505 7.02498 22.583 10.637 20.479 12.993L11.999 21.485L3.52101 12.993C1.41701 10.637 1.49601 7.01898 3.75701 4.75698C6.02201 2.49298 9.64501 2.41698 12.001 4.52898Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-report {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4.00059 20V14C4.00059 11.8783 4.84345 9.84344 6.34374 8.34315C7.84403 6.84285 9.87886 6 12.0006 6C14.1223 6 16.1572 6.84285 17.6574 8.34315C19.1577 9.84344 20.0006 11.8783 20.0006 14V20H21.0006V22H3.00059V20H4.00059ZM6.00059 20H18.0006V14C18.0006 12.4087 17.3685 10.8826 16.2432 9.75736C15.118 8.63214 13.5919 8 12.0006 8C10.4093 8 8.88317 8.63214 7.75795 9.75736C6.63273 10.8826 6.00059 12.4087 6.00059 14V20ZM11.0006 2H13.0006V5H11.0006V2ZM19.7786 4.808L21.1926 6.222L19.0726 8.343L17.6576 6.929L19.7786 4.808ZM2.80859 6.222L4.22259 4.808L6.34359 6.928L4.93059 8.344L2.80859 6.222ZM7.00059 14C7.00059 12.6739 7.52738 11.4021 8.46506 10.4645C9.40274 9.52678 10.6745 9 12.0006 9V11C11.2049 11 10.4419 11.3161 9.87927 11.8787C9.31666 12.4413 9.00059 13.2044 9.00059 14H7.00059Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-bookmark {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 2H20C20.2652 2 20.5196 2.10536 20.7071 2.29289C20.8946 2.48043 21 2.73478 21 3V22.276C21.0001 22.3594 20.9793 22.4416 20.9395 22.5149C20.8997 22.5882 20.8422 22.6505 20.7722 22.6959C20.7023 22.7413 20.622 22.7685 20.5388 22.775C20.4557 22.7815 20.3722 22.767 20.296 22.733L12 19.03L3.704 22.732C3.6279 22.766 3.54451 22.7805 3.46141 22.774C3.37831 22.7676 3.29813 22.7405 3.22818 22.6952C3.15822 22.6499 3.1007 22.5878 3.06085 22.5146C3.021 22.4414 3.00008 22.3593 3 22.276V3C3 2.73478 3.10536 2.48043 3.29289 2.29289C3.48043 2.10536 3.73478 2 4 2ZM19 19.965V4H5V19.965L12 16.841L19 19.965ZM12 13.5L9.061 15.045L9.622 11.773L7.245 9.455L10.531 8.977L12 6L13.47 8.977L16.755 9.455L14.378 11.773L14.938 15.045L12 13.5Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-link {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M17.6568 14.828L16.2428 13.414L17.6568 12C18.0282 11.6286 18.3229 11.1876 18.5239 10.7023C18.7249 10.217 18.8284 9.69681 18.8284 9.1715C18.8284 8.6462 18.7249 8.12605 18.5239 7.64073C18.3229 7.15542 18.0282 6.71445 17.6568 6.343C17.2853 5.97156 16.8444 5.67691 16.359 5.47589C15.8737 5.27487 15.3536 5.1714 14.8283 5.1714C14.303 5.1714 13.7828 5.27487 13.2975 5.47589C12.8122 5.67691 12.3712 5.97156 11.9998 6.343L10.5858 7.757L9.17177 6.343L10.5858 4.929C11.7141 3.81892 13.2353 3.19966 14.8181 3.2061C16.401 3.21255 17.9171 3.84418 19.0364 4.96341C20.1556 6.08265 20.7872 7.5988 20.7937 9.18162C20.8001 10.7644 20.1808 12.2857 19.0708 13.414L17.6568 14.828ZM14.8278 17.657L13.4138 19.071C12.8583 19.6356 12.1965 20.0846 11.4666 20.3922C10.7367 20.6998 9.95319 20.8598 9.16115 20.863C8.36911 20.8662 7.58428 20.7126 6.85191 20.411C6.11954 20.1094 5.45414 19.6658 4.89408 19.1057C4.33402 18.5456 3.89039 17.8802 3.58878 17.1479C3.28717 16.4155 3.13354 15.6307 3.13677 14.8386C3.13999 14.0466 3.3 13.263 3.60757 12.5331C3.91513 11.8033 4.36417 11.1415 4.92877 10.586L6.34277 9.172L7.75677 10.586L6.34277 12C5.97133 12.3714 5.67668 12.8124 5.47566 13.2977C5.27463 13.783 5.17117 14.3032 5.17117 14.8285C5.17117 15.3538 5.27463 15.874 5.47566 16.3593C5.67668 16.8446 5.97133 17.2856 6.34277 17.657C6.71421 18.0284 7.15518 18.3231 7.6405 18.5241C8.12581 18.7251 8.64597 18.8286 9.17127 18.8286C9.69657 18.8286 10.2167 18.7251 10.702 18.5241C11.1874 18.3231 11.6283 18.0284 11.9998 17.657L13.4138 16.243L14.8278 17.657ZM14.8278 7.757L16.2428 9.172L9.17177 16.242L7.75677 14.828L14.8278 7.758V7.757Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-time {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12C2 6.477 6.477 2 12 2C17.523 2 22 6.477 22 12C22 17.523 17.523 22 12 22ZM12 20C14.1217 20 16.1566 19.1571 17.6569 17.6569C19.1571 16.1566 20 14.1217 20 12C20 9.87827 19.1571 7.84344 17.6569 6.34315C16.1566 4.84285 14.1217 4 12 4C9.87827 4 7.84344 4.84285 6.34315 6.34315C4.84285 7.84344 4 9.87827 4 12C4 14.1217 4.84285 16.1566 6.34315 17.6569C7.84344 19.1571 9.87827 20 12 20ZM13 12H17V14H11V7H13V12Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-share {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M10 3V5H5V19H19V14H21V20C21 20.2652 20.8946 20.5196 20.7071 20.7071C20.5196 20.8946 20.2652 21 20 21H4C3.73478 21 3.48043 20.8946 3.29289 20.7071C3.10536 20.5196 3 20.2652 3 20V4C3 3.73478 3.10536 3.48043 3.29289 3.29289C3.48043 3.10536 3.73478 3 4 3H10ZM17.586 5H13V3H21V11H19V6.414L12 13.414L10.586 12L17.586 5Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-users {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 9C7.66304 9 8.29893 8.73661 8.76777 8.26777C9.23661 7.79893 9.5 7.16304 9.5 6.5C9.5 5.83696 9.23661 5.20107 8.76777 4.73223C8.29893 4.26339 7.66304 4 7 4C6.33696 4 5.70107 4.26339 5.23223 4.73223C4.76339 5.20107 4.5 5.83696 4.5 6.5C4.5 7.16304 4.76339 7.79893 5.23223 8.26777C5.70107 8.73661 6.33696 9 7 9ZM7 11C6.40905 11 5.82389 10.8836 5.27792 10.6575C4.73196 10.4313 4.23588 10.0998 3.81802 9.68198C3.40016 9.26412 3.06869 8.76804 2.84254 8.22208C2.6164 7.67611 2.5 7.09095 2.5 6.5C2.5 5.90905 2.6164 5.32389 2.84254 4.77792C3.06869 4.23196 3.40016 3.73588 3.81802 3.31802C4.23588 2.90016 4.73196 2.56869 5.27792 2.34254C5.82389 2.1164 6.40905 2 7 2C8.19347 2 9.33807 2.47411 10.182 3.31802C11.0259 4.16193 11.5 5.30653 11.5 6.5C11.5 7.69347 11.0259 8.83807 10.182 9.68198C9.33807 10.5259 8.19347 11 7 11ZM17.5 13C18.0304 13 18.5391 12.7893 18.9142 12.4142C19.2893 12.0391 19.5 11.5304 19.5 11C19.5 10.4696 19.2893 9.96086 18.9142 9.58579C18.5391 9.21071 18.0304 9 17.5 9C16.9696 9 16.4609 9.21071 16.0858 9.58579C15.7107 9.96086 15.5 10.4696 15.5 11C15.5 11.5304 15.7107 12.0391 16.0858 12.4142C16.4609 12.7893 16.9696 13 17.5 13ZM17.5 15C16.4391 15 15.4217 14.5786 14.6716 13.8284C13.9214 13.0783 13.5 12.0609 13.5 11C13.5 9.93913 13.9214 8.92172 14.6716 8.17157C15.4217 7.42143 16.4391 7 17.5 7C18.5609 7 19.5783 7.42143 20.3284 8.17157C21.0786 8.92172 21.5 9.93913 21.5 11C21.5 12.0609 21.0786 13.0783 20.3284 13.8284C19.5783 14.5786 18.5609 15 17.5 15ZM20 21V20.5C20 19.837 19.7366 19.2011 19.2678 18.7322C18.7989 18.2634 18.163 18 17.5 18C16.837 18 16.2011 18.2634 15.7322 18.7322C15.2634 19.2011 15 19.837 15 20.5V21H13V20.5C13 19.9091 13.1164 19.3239 13.3425 18.7779C13.5687 18.232 13.9002 17.7359 14.318 17.318C14.7359 16.9002 15.232 16.5687 15.7779 16.3425C16.3239 16.1164 16.9091 16 17.5 16C18.0909 16 18.6761 16.1164 19.2221 16.3425C19.768 16.5687 20.2641 16.9002 20.682 17.318C21.0998 17.7359 21.4313 18.232 21.6575 18.7779C21.8836 19.3239 22 19.9091 22 20.5V21H20ZM10 21V17C10 16.2044 9.68393 15.4413 9.12132 14.8787C8.55871 14.3161 7.79565 14 7 14C6.20435 14 5.44129 14.3161 4.87868 14.8787C4.31607 15.4413 4 16.2044 4 17V21H2V17C2 15.6739 2.52678 14.4021 3.46447 13.4645C4.40215 12.5268 5.67392 12 7 12C8.32608 12 9.59785 12.5268 10.5355 13.4645C11.4732 14.4021 12 15.6739 12 17V21H10Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-reply {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M5.455 15L1 18.5V3C1 2.73478 1.10536 2.48043 1.29289 2.29289C1.48043 2.10536 1.73478 2 2 2H17C17.2652 2 17.5196 2.10536 17.7071 2.29289C17.8946 2.48043 18 2.73478 18 3V15H5.455ZM4.763 13H16V4H3V14.385L4.763 13ZM8 17H18.237L20 18.385V8H21C21.2652 8 21.5196 8.10536 21.7071 8.29289C21.8946 8.48043 22 8.73478 22 9V22.5L17.545 19H9C8.73478 19 8.48043 18.8946 8.29289 18.7071C8.10536 18.5196 8 18.2652 8 18V17Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-view {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12.0006 3C17.3926 3 21.8786 6.88 22.8196 12C21.8796 17.12 17.3926 21 12.0006 21C6.60864 21 2.12264 17.12 1.18164 12C2.12164 6.88 6.60864 3 12.0006 3ZM12.0006 19C14.0401 18.9996 16.019 18.3068 17.6135 17.0352C19.208 15.7635 20.3235 13.9883 20.7776 12C20.3219 10.0133 19.2056 8.24 17.6113 6.97003C16.017 5.70005 14.0389 5.00853 12.0006 5.00853C9.96234 5.00853 7.98433 5.70005 6.39002 6.97003C4.7957 8.24 3.67941 10.0133 3.22364 12C3.67774 13.9883 4.79331 15.7635 6.38778 17.0352C7.98225 18.3068 9.96117 18.9996 12.0006 19ZM12.0006 16.5C10.8072 16.5 9.66257 16.0259 8.81866 15.182C7.97475 14.3381 7.50064 13.1935 7.50064 12C7.50064 10.8065 7.97475 9.66193 8.81866 8.81802C9.66257 7.97411 10.8072 7.5 12.0006 7.5C13.1941 7.5 14.3387 7.97411 15.1826 8.81802C16.0265 9.66193 16.5006 10.8065 16.5006 12C16.5006 13.1935 16.0265 14.3381 15.1826 15.182C14.3387 16.0259 13.1941 16.5 12.0006 16.5ZM12.0006 14.5C12.6637 14.5 13.2996 14.2366 13.7684 13.7678C14.2372 13.2989 14.5006 12.663 14.5006 12C14.5006 11.337 14.2372 10.7011 13.7684 10.2322C13.2996 9.76339 12.6637 9.5 12.0006 9.5C11.3376 9.5 10.7017 9.76339 10.2329 10.2322C9.76403 10.7011 9.50064 11.337 9.50064 12C9.50064 12.663 9.76403 13.2989 10.2329 13.7678C10.7017 14.2366 11.3376 14.5 12.0006 14.5Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-activity {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.455 19L2 22.5V4C2 3.73478 2.10536 3.48043 2.29289 3.29289C2.48043 3.10536 2.73478 3 3 3H21C21.2652 3 21.5196 3.10536 21.7071 3.29289C21.8946 3.48043 22 3.73478 22 4V18C22 18.2652 21.8946 18.5196 21.7071 18.7071C21.5196 18.8946 21.2652 19 21 19H6.455ZM5.763 17H20V5H4V18.385L5.763 17ZM11 10H13V12H11V10ZM7 10H9V12H7V10ZM15 10H17V12H15V10Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-notification {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19.998 17.001H21.998V19.001H1.99805V17.001H3.99805V10.001C3.99805 7.87924 4.8409 5.84441 6.34119 4.34412C7.84148 2.84383 9.87632 2.00098 11.998 2.00098C14.1198 2.00098 16.1546 2.84383 17.6549 4.34412C19.1552 5.84441 19.998 7.87924 19.998 10.001V17.001ZM17.998 17.001V10.001C17.998 8.40968 17.3659 6.88355 16.2407 5.75834C15.1155 4.63312 13.5893 4.00098 11.998 4.00098C10.4067 4.00098 8.88062 4.63312 7.75541 5.75834C6.63019 6.88355 5.99805 8.40968 5.99805 10.001V17.001H17.998ZM8.99805 21.001H14.998V23.001H8.99805V21.001Z' fill='%23052832'/%3E%3Cpath d='M15 21H9V23H15V21Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-tracking {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M14.998 23.001H8.99805V21.001H14.998V23.001Z' fill='%23052832'/%3E%3Cpath d='M16.6904 8.84473L10.6689 14.8662L7.30664 11.501L8.7207 10.0879L10.6689 12.0381L15.2754 7.43164L16.6904 8.84473Z' fill='%23052832'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.998 2.00098C14.1198 2.00098 16.155 2.84346 17.6553 4.34375C19.1556 5.84404 19.998 7.87924 19.998 10.001V17.001H21.998V19.001H1.99805V17.001H3.99805V10.001C3.99805 7.87924 4.84053 5.84404 6.34082 4.34375C7.84111 2.84346 9.87632 2.00098 11.998 2.00098ZM11.998 4.00098C10.4067 4.00098 8.88108 4.63357 7.75586 5.75879C6.63064 6.88401 5.99805 8.40968 5.99805 10.001V17.001H17.998V10.001C17.998 8.40968 17.3655 6.88401 16.2402 5.75879C15.115 4.63357 13.5893 4.00098 11.998 4.00098Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-watching {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M14.998 23.001H8.99805V21.001H14.998V23.001Z' fill='%23052832'/%3E%3Cpath d='M12.998 15.501H10.998V13.501H12.998V15.501Z' fill='%23052832'/%3E%3Cpath d='M12.998 12.001H10.998V6.00098H12.998V12.001Z' fill='%23052832'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.998 2.00098C14.1198 2.00098 16.155 2.84346 17.6553 4.34375C19.1556 5.84404 19.998 7.87924 19.998 10.001V17.001H21.998V19.001H1.99805V17.001H3.99805V10.001C3.99805 7.87924 4.84053 5.84404 6.34082 4.34375C7.84111 2.84346 9.87632 2.00098 11.998 2.00098ZM11.998 4.00098C10.4067 4.00098 8.88108 4.63357 7.75586 5.75879C6.63064 6.88401 5.99805 8.40968 5.99805 10.001V17.001H17.998V10.001C17.998 8.40968 17.3655 6.88401 16.2402 5.75879C15.115 4.63357 13.5893 4.00098 11.998 4.00098Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-watching-first {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M14.998 23.001H8.99805V21.001H14.998V23.001Z' fill='%23052832'/%3E%3Cpath d='M13.498 15.001H11.498V9.20508L9.49805 9.74121V7.6709L11.998 7.00098H13.498V15.001Z' fill='%23052832'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.998 2.00098C14.1198 2.00098 16.155 2.84346 17.6553 4.34375C19.1556 5.84404 19.998 7.87924 19.998 10.001V17.001H21.998V19.001H1.99805V17.001H3.99805V10.001C3.99805 7.87924 4.84053 5.84404 6.34082 4.34375C7.84111 2.84346 9.87632 2.00098 11.998 2.00098ZM11.998 4.00098C10.4067 4.00098 8.88108 4.63357 7.75586 5.75879C6.63064 6.88401 5.99805 8.40968 5.99805 10.001V17.001H17.998V10.001C17.998 8.40968 17.3655 6.88401 16.2402 5.75879C15.115 4.63357 13.5893 4.00098 11.998 4.00098Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-muted {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M14.998 23.001H8.99805V21.001H14.998V23.001Z' fill='%23052832'/%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M21.4844 19.4863L20.0703 20.9004L18.1709 19.001H1.99805V17.001H3.99805V10.001C3.99805 8.55954 4.38764 7.15847 5.10742 5.9375L3.09961 3.92969L4.51367 2.51562L21.4844 19.4863ZM6.58398 7.41406C6.20148 8.21419 5.99805 9.09715 5.99805 10.001V17.001H16.1709L6.58398 7.41406Z' fill='%23052832'/%3E%3Cpath d='M21.998 19.001H21.9697L21.998 18.9727V19.001Z' fill='%23052832'/%3E%3Cpath d='M11.998 2.00098C14.1198 2.00098 16.155 2.84346 17.6553 4.34375C19.1556 5.84404 19.998 7.87924 19.998 10.001V15.1719L17.998 13.1719V10.001C17.998 8.40968 17.3655 6.88401 16.2402 5.75879C15.115 4.63357 13.5893 4.00098 11.998 4.00098C11.0948 4.00098 10.2128 4.2049 9.41309 4.58691L7.93555 3.10938C9.15625 2.39003 10.5571 2.00098 11.998 2.00098Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-notification-header {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 15C20 16.1046 20.8954 17 22 17V19H2V17C3.10457 17 4 16.1046 4 15V10C4 7.87827 4.84285 5.84344 6.34315 4.34315C7.84344 2.84285 9.87827 2 12 2C14.1217 2 16.1566 2.84285 17.6569 4.34315C19.1571 5.84344 20 7.87827 20 10V15ZM9 21H15V23H9V21Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-arrow-down {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M13.0007 16.172L18.3647 10.808L19.7787 12.222L12.0007 20L4.22266 12.222L5.63666 10.808L11.0007 16.172V4H13.0007V16.172Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-arrow-left {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3059_89541)'%3E%3Cpath d='M10.828 12.0007L15.778 16.9507L14.364 18.3647L8 12.0007L14.364 5.63672L15.778 7.05072L10.828 12.0007Z' fill='%23052832'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3059_89541'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.ico-arrow-right {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3059_89545)'%3E%3Cpath d='M13.1727 12.0007L8.22266 7.05072L9.63666 5.63672L16.0007 12.0007L9.63666 18.3647L8.22266 16.9507L13.1727 12.0007Z' fill='%23052832'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3059_89545'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.ico-arrow-up {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M13.0007 7.828L18.3647 13.192L19.7787 11.778L12.0007 4L4.22266 11.778L5.63666 13.192L11.0007 7.828V20H13.0007V7.828Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-arrow-expand {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18.0015 7.41302L9.39447 16.02L7.98047 14.606L16.5865 5.99902H9.00147V3.99902H20.0015V14.999H18.0015V7.41302Z' fill='%23052832'/%3E%3Cpath d='M5.98095 16.6075L14.588 8.00048L16.002 9.41448L7.39595 18.0215L14.981 18.0215L14.981 20.0215L3.98095 20.0215L3.98095 9.02148L5.98095 9.02148L5.98095 16.6075Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-arrow-collapse {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M10.021 15.414L4.414 21.021L3 19.607L8.606 14H4.021V12H12.021V20H10.021V15.414Z' fill='%23052832'/%3E%3Cpath d='M13.9985 8.60748L19.6055 3.00048L21.0195 4.41448L15.4135 10.0215L19.9985 10.0215L19.9985 12.0215L11.9985 12.0215L11.9985 4.02148L13.9985 4.02148L13.9985 8.60748Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-xmark {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12.0007 10.5862L16.9507 5.63623L18.3647 7.05023L13.4147 12.0002L18.3647 16.9502L16.9507 18.3642L12.0007 13.4142L7.05072 18.3642L5.63672 16.9502L10.5867 12.0002L5.63672 7.05023L7.05072 5.63623L12.0007 10.5862Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-facebook {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M10.0992 9.46657H8.19922V11.9999H10.0992V19.5999H13.2659V11.9999H15.5725L15.7992 9.46657H13.2659V8.4108C13.2659 7.80597 13.3875 7.56657 13.9721 7.56657H15.7992V4.3999H13.3875C11.11 4.3999 10.0992 5.40247 10.0992 7.32274V9.46657Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-instagram {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M11.9992 3.19995C9.60928 3.19995 9.31008 3.21022 8.37142 3.25275C5.17555 3.39942 3.39942 5.17262 3.25275 8.37142C3.20949 9.31082 3.19922 9.61002 3.19922 12C3.19922 14.3899 3.20949 14.6898 3.25202 15.6285C3.39869 18.8244 5.17189 20.6005 8.37069 20.7472C9.31009 20.7897 9.60928 20.7999 11.9992 20.7999C14.3892 20.7999 14.6891 20.7897 15.6278 20.7472C18.8207 20.6005 20.6012 18.8273 20.7457 15.6285C20.7889 14.6898 20.7992 14.3899 20.7992 12C20.7992 9.61002 20.789 9.31082 20.7464 8.37215C20.6027 5.17922 18.8273 3.40015 15.6285 3.25348C14.6891 3.21022 14.3892 3.19995 11.9992 3.19995ZM11.9992 4.78615C14.3488 4.78615 14.6275 4.79495 15.5559 4.83748C17.9407 4.94602 19.0546 6.07755 19.1632 8.44475C19.2057 9.37242 19.2138 9.65108 19.2138 12.0007C19.2138 14.351 19.205 14.629 19.1632 15.5566C19.0539 17.9216 17.9429 19.0554 15.5559 19.1639C14.6275 19.2064 14.3503 19.2152 11.9992 19.2152C9.64962 19.2152 9.37095 19.2064 8.44329 19.1639C6.05262 19.0546 4.94455 17.918 4.83602 15.5559C4.79349 14.6282 4.78469 14.3503 4.78469 12C4.78469 9.65035 4.79422 9.37242 4.83602 8.44402C4.94529 6.07755 6.05629 4.94528 8.44329 4.83675C9.37169 4.79495 9.64962 4.78615 11.9992 4.78615ZM7.48042 12C7.48042 9.50442 9.50369 7.48115 11.9992 7.48115C14.4948 7.48115 16.518 9.50442 16.518 12C16.518 14.4962 14.4948 16.5195 11.9992 16.5195C9.50369 16.5195 7.48042 14.4955 7.48042 12ZM11.9992 14.9333C10.3793 14.9333 9.06589 13.6206 9.06589 12C9.06589 10.38 10.3793 9.06662 11.9992 9.06662C13.6192 9.06662 14.9326 10.38 14.9326 12C14.9326 13.6206 13.6192 14.9333 11.9992 14.9333ZM15.6402 7.30295C15.6402 6.71995 16.1132 6.24695 16.697 6.24695C17.28 6.24695 17.7522 6.71995 17.7522 7.30295C17.7522 7.88595 17.28 8.35895 16.697 8.35895C16.1132 8.35895 15.6402 7.88595 15.6402 7.30295Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-sns-x {
  padding: 3px;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M21.742 21.75l-7.563-11.179 7.056-8.321h-2.456l-5.691 6.714-4.54-6.714H2.359l7.29 10.776L2.25 21.75h2.456l6.035-7.118 4.818 7.118h6.191-.008zM7.739 3.818L18.81 20.182h-2.447L5.29 3.818h2.447z' fill='%23052832'/%3E%3C/svg%3E%0A");
  background-origin: content-box;
}
.ico-twitter {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18.3622 8.63876C18.5713 13.2543 15.1277 18.3999 9.03122 18.3999C7.17737 18.3999 5.45268 17.8561 4 16.925C5.74184 17.1306 7.48025 16.6462 8.85978 15.5666C7.42424 15.5403 6.21159 14.591 5.79213 13.2874C6.30759 13.3857 6.81506 13.3571 7.27566 13.2314C5.69726 12.9138 4.6069 11.4926 4.64233 9.97201C5.08579 10.2176 5.59097 10.365 6.1293 10.3822C4.66748 9.40535 4.25373 7.47574 5.11322 6.00083C6.73162 7.98642 9.15123 9.29225 11.8794 9.42934C11.4005 7.37749 12.9584 5.3999 15.0785 5.3999C16.0214 5.3999 16.8752 5.79862 17.4741 6.43611C18.2216 6.28988 18.9256 6.01569 19.5588 5.63982C19.3131 6.40641 18.7931 7.04847 18.1153 7.45518C18.7793 7.37521 19.4125 7.19927 20 6.93765C19.5611 7.59799 19.0056 8.17607 18.3622 8.63876Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-youtube {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M18.8742 6.18755C19.6442 6.40898 20.1942 7.01791 20.4142 7.73755C20.6892 9.12148 20.7992 10.5608 20.7992 12C20.7992 13.4393 20.6892 14.8786 20.4142 16.2625C20.1942 17.0375 19.6442 17.5911 18.8742 17.8125C17.4992 18.2 11.9992 18.2 11.9992 18.2C11.9992 18.2 6.49922 18.2 5.12422 17.8125C4.35422 17.5911 3.80422 16.9822 3.58422 16.2625C3.30922 14.8786 3.19922 13.4393 3.19922 12C3.19922 10.5608 3.30922 9.12148 3.58422 7.73755C3.80422 6.96255 4.35422 6.40898 5.12422 6.18755C6.49922 5.80005 11.9992 5.80005 11.9992 5.80005C11.9992 5.80005 17.4992 5.80005 18.8742 6.18755ZM14.8042 12L10.2392 9.34291V14.6572L14.8042 12Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-buzzsprout {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M14.6904 8.94116H16.1777V10.1609C16.1749 12.1331 14.7244 13.7673 12.8125 14.1482V19.7996H11.2148V14.1648C9.25606 13.8198 7.75707 12.1656 7.75488 10.1609V8.94116H9.16992V8.10229H14.6904V8.94116ZM4.00586 12.8718C4.00586 12.8718 7.30873 12.6677 9.21875 14.5671C11.1234 16.4618 10.9239 19.7355 10.9229 19.7517C10.9229 19.7517 7.61936 19.957 5.70996 18.0574C3.81041 16.1671 4.00383 12.9051 4.00586 12.8718ZM19.9932 12.8718C19.9951 12.9043 20.189 16.1668 18.2891 18.0574C16.3794 19.957 13.0762 19.7517 13.0762 19.7517C13.0751 19.7339 12.8758 16.4613 14.7803 14.5671C16.6882 12.6695 19.9865 12.8714 19.9932 12.8718ZM8.53613 10.1609C8.53921 11.7188 9.67998 13.0422 11.2148 13.3738V12.5544C10.0371 12.2534 9.16992 11.2273 9.16992 10.0076V9.71851H8.53613V10.1609ZM14.6904 10.0076C14.6904 11.1686 13.9037 12.1538 12.8125 12.5056V13.3523C14.2989 12.9875 15.3922 11.6865 15.3955 10.1609V9.71851H14.6904V10.0076ZM11.9297 4.19995C13.4541 4.19995 14.6903 5.38056 14.6904 6.83667V7.78979H9.16992V6.83667C9.17005 5.38063 10.406 4.20007 11.9297 4.19995Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-rss {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7.04199 15.1199C8.05944 15.1199 8.88379 15.9431 8.88379 16.9597C8.88378 17.9763 8.05944 18.7996 7.04199 18.7996C6.02456 18.7995 5.19923 17.9763 5.19922 16.9597C5.19922 15.9431 6.02455 15.1199 7.04199 15.1199ZM5.19922 9.83569C10.141 9.87054 14.139 13.8638 14.1758 18.7996H11.4453C11.4103 15.3751 8.62799 12.5971 5.19922 12.5623V9.83569ZM5.19922 5.19995C12.7046 5.2263 18.7816 11.3019 18.7988 18.7996H16.0703C16.0523 12.7962 11.1941 7.95286 5.19922 7.92651V5.19995Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-linkedin {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.8491 5.3999C5.85174 5.3999 5.19922 6.0548 5.19922 6.91523C5.19922 7.75739 5.83282 8.43121 6.81083 8.43121H6.82975C7.84668 8.43121 8.47898 7.75739 8.47898 6.91523C8.45963 6.0548 7.84668 5.3999 6.8491 5.3999ZM18.7992 13.3696V18.3999H15.8837V13.7067C15.8837 12.5283 15.4627 11.7235 14.4071 11.7235C13.6015 11.7235 13.1229 12.2653 12.9116 12.7899C12.8348 12.9774 12.815 13.2377 12.815 13.5007V18.3997H9.89925C9.89925 18.3997 9.93839 10.4509 9.89925 9.62811H12.8152V10.8711C12.8125 10.8757 12.8092 10.8803 12.806 10.8848L12.806 10.8848C12.8023 10.8898 12.7987 10.8949 12.7959 10.8998H12.8152V10.8711C13.2027 10.2747 13.8937 9.42214 15.4429 9.42214C17.3611 9.42214 18.7992 10.6758 18.7992 13.3696ZM8.2872 18.3999H5.37251V9.62811H8.2872V18.3999Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-setting {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15.9039 4.26063C15.7294 3.97814 15.4431 3.77126 15.1074 3.68689C14.7712 3.60251 14.4136 3.64689 14.1126 3.81001C13.6124 4.0806 13.0095 4.0803 12.5096 3.8092L11.9916 3.52829C11.5227 3.27401 11.2306 2.78341 11.2306 2.25C11.2306 1.57 10.6453 1 9.92149 1H8.07838C7.35455 1 6.76922 1.57 6.76922 2.25C6.76922 2.78344 6.47727 3.2741 6.00844 3.52857L5.49106 3.80939C4.99118 4.08072 4.38802 4.08095 3.88793 3.81001C3.58695 3.64689 3.22869 3.60251 2.89243 3.68689C2.55681 3.77126 2.27049 3.97814 2.09601 4.26063L1.17575 5.75813C1.00196 6.04063 0.954667 6.37688 1.04457 6.69188C1.13446 7.00751 1.35421 7.27624 1.65519 7.43938C2.14764 7.70668 2.45437 8.22201 2.45453 8.78233L2.45466 9.21767C2.45483 9.77794 2.14826 10.2933 1.65585 10.5606C1.35487 10.7244 1.13446 10.9925 1.04457 11.3075C0.954672 11.6231 1.00195 11.9594 1.17575 12.2419L2.09734 13.7394C2.27113 14.0219 2.55747 14.2287 2.89309 14.3131C3.22938 14.3975 3.58695 14.3531 3.8886 14.19C4.38875 13.9194 4.99174 13.9197 5.49161 14.1908L6.00774 14.4708C6.47696 14.7252 6.76921 15.2162 6.76921 15.75C6.76921 16.43 7.35453 17 8.07836 17H9.92096C10.6455 17 11.2301 16.43 11.2301 15.75C11.2305 15.2162 11.523 14.7253 11.9923 14.4709L12.509 14.1907C13.0089 13.9197 13.6119 13.9194 14.1121 14.19C14.4137 14.3531 14.7713 14.3975 15.1069 14.3131C15.4432 14.2287 15.7295 14.0219 15.9033 13.7394L16.8243 12.2419C16.998 11.9594 17.0453 11.6231 16.9554 11.3081C16.8655 10.9925 16.6458 10.7238 16.3448 10.5606C15.8524 10.2933 15.5457 9.77797 15.5457 9.21767V8.78231C15.5457 8.22202 15.8524 7.70666 16.3448 7.43936C16.6458 7.27562 16.8655 7.00749 16.9554 6.69248C17.0453 6.37685 16.9981 6.04061 16.8243 5.75812L15.9039 4.26063Z' stroke='%23052832' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.6667 9C11.6667 10.4728 10.4728 11.6667 9 11.6667C7.52724 11.6667 6.33333 10.4728 6.33333 9C6.33333 7.52724 7.52724 6.33333 9 6.33333C10.4728 6.33333 11.6667 7.52724 11.6667 9Z' stroke='%23052832' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico-write {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.757 2.99998L14.757 4.99998H5V19H19V9.24298L21 7.24298V20C21 20.2652 20.8946 20.5195 20.7071 20.7071C20.5196 20.8946 20.2652 21 20 21H4C3.73478 21 3.48043 20.8946 3.29289 20.7071C3.10536 20.5195 3 20.2652 3 20V3.99998C3 3.73476 3.10536 3.48041 3.29289 3.29287C3.48043 3.10533 3.73478 2.99998 4 2.99998H16.757ZM20.485 2.09998L21.9 3.51598L12.708 12.708L11.296 12.711L11.294 11.294L20.485 2.09998Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-solved {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2453_52303)'%3E%3Cpath d='M6.455 19L2 22.5V4C2 3.73478 2.10536 3.48043 2.29289 3.29289C2.48043 3.10536 2.73478 3 3 3H21C21.2652 3 21.5196 3.10536 21.7071 3.29289C21.8946 3.48043 22 3.73478 22 4V18C22 18.2652 21.8946 18.5196 21.7071 18.7071C21.5196 18.8946 21.2652 19 21 19H6.455ZM11.293 12.121L8.818 9.646L7.404 11.061L11.293 14.95L16.95 9.293L15.536 7.879L11.293 12.121Z' fill='%23052832'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2453_52303'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.ico-read {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2453_52307)'%3E%3Cpath d='M2 8.99401C1.99947 8.20621 2.15435 7.42605 2.45577 6.69819C2.75718 5.97034 3.19921 5.30909 3.75655 4.75231C4.31388 4.19553 4.97558 3.75416 5.70373 3.45348C6.43189 3.15279 7.21221 2.99869 8 3.00001H16C19.313 3.00001 22 5.69501 22 8.99401V21H8C4.687 21 2 18.305 2 15.006V8.99401ZM20 19V8.99401C19.9974 7.93451 19.5749 6.91925 18.8251 6.17063C18.0754 5.42201 17.0595 5.00106 16 5.00001H8C7.47485 4.99869 6.9546 5.10106 6.4691 5.30123C5.98359 5.50141 5.54238 5.79546 5.17076 6.16652C4.79914 6.53758 4.50443 6.97835 4.30353 7.46356C4.10262 7.94876 3.99947 8.46886 4 8.99401V15.006C4.00265 16.0655 4.42511 17.0808 5.17486 17.8294C5.9246 18.578 6.9405 18.999 8 19H20ZM14 11H16V13H14V11ZM8 11H10V13H8V11Z' fill='%23052832'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2453_52307'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.ico-notification-bubble {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2453_52315)'%3E%3Cpath d='M6.455 19L2 22.5V4C2 3.73478 2.10536 3.48043 2.29289 3.29289C2.48043 3.10536 2.73478 3 3 3H21C21.2652 3 21.5196 3.10536 21.7071 3.29289C21.8946 3.48043 22 3.73478 22 4V18C22 18.2652 21.8946 18.5196 21.7071 18.7071C21.5196 18.8946 21.2652 19 21 19H6.455ZM4 18.385L5.763 17H20V5H4V18.385ZM11 13H13V15H11V13ZM11 7H13V12H11V7Z' fill='%23052832'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2453_52315'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.ico-draft {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2453_52311)'%3E%3Cpath d='M9.00002 2.003V2H19.998C20.55 2 21 2.455 21 2.992V21.008C20.9998 21.2712 20.895 21.5235 20.7088 21.7095C20.5226 21.8955 20.2702 22 20.007 22H3.99302C3.8617 21.9991 3.73185 21.9723 3.61087 21.9212C3.48989 21.8701 3.38017 21.7957 3.28796 21.7022C3.19575 21.6087 3.12286 21.4979 3.07346 21.3762C3.02406 21.2545 2.9991 21.1243 3.00002 20.993V8L9.00002 2.003ZM5.83002 8H9.00002V4.83L5.83002 8ZM11 4V9C11 9.26522 10.8947 9.51957 10.7071 9.70711C10.5196 9.89464 10.2652 10 10 10H5.00002V20H19V4H11Z' fill='%23052832'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2453_52311'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.ico-account {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2453_52319)'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12C2 6.477 6.477 2 12 2C17.523 2 22 6.477 22 12C22 17.523 17.523 22 12 22ZM7.013 18.256C8.42855 19.3877 10.1877 20.0029 12 20C13.97 20 15.773 19.288 17.167 18.108C16.5157 17.4397 15.7371 16.9089 14.877 16.5468C14.017 16.1847 13.0931 15.9988 12.16 16C11.1926 15.9989 10.2355 16.1989 9.34947 16.5872C8.46343 16.9756 7.66778 17.5439 7.013 18.256ZM5.616 16.82C6.45645 15.9281 7.47067 15.2177 8.59614 14.7327C9.72161 14.2477 10.9345 13.9984 12.16 14C13.3417 13.9985 14.512 14.2304 15.6037 14.6824C16.6955 15.1344 17.6873 15.7976 18.522 16.634C19.3781 15.4291 19.8836 14.0106 19.9826 12.5359C20.0815 11.0612 19.77 9.58789 19.0825 8.27946C18.395 6.97102 17.3585 5.87862 16.088 5.12345C14.8174 4.36827 13.3625 3.97984 11.8846 4.00125C10.4067 4.02267 8.96366 4.45308 7.71552 5.24476C6.46738 6.03643 5.46296 7.1584 4.81369 8.4862C4.16442 9.814 3.89569 11.2957 4.03732 12.7669C4.17894 14.2382 4.72537 15.6414 5.616 16.821V16.82ZM12 13C10.9391 13 9.92172 12.5786 9.17157 11.8284C8.42143 11.0783 8 10.0609 8 9C8 7.93913 8.42143 6.92172 9.17157 6.17157C9.92172 5.42143 10.9391 5 12 5C13.0609 5 14.0783 5.42143 14.8284 6.17157C15.5786 6.92172 16 7.93913 16 9C16 10.0609 15.5786 11.0783 14.8284 11.8284C14.0783 12.5786 13.0609 13 12 13ZM12 11C12.5304 11 13.0391 10.7893 13.4142 10.4142C13.7893 10.0391 14 9.53043 14 9C14 8.46957 13.7893 7.96086 13.4142 7.58579C13.0391 7.21071 12.5304 7 12 7C11.4696 7 10.9609 7.21071 10.5858 7.58579C10.2107 7.96086 10 8.46957 10 9C10 9.53043 10.2107 10.0391 10.5858 10.4142C10.9609 10.7893 11.4696 11 12 11Z' fill='%23052832'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2453_52319'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.ico-edit {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2453_52323)'%3E%3Cpath d='M12.9 6.85796L17.142 11.101L7.242 21H3V16.757L12.9 6.85696V6.85796ZM14.314 5.44396L16.435 3.32196C16.6225 3.13449 16.8768 3.02917 17.142 3.02917C17.4072 3.02917 17.6615 3.13449 17.849 3.32196L20.678 6.15096C20.8655 6.33849 20.9708 6.5928 20.9708 6.85796C20.9708 7.12313 20.8655 7.37743 20.678 7.56496L18.556 9.68596L14.314 5.44396Z' fill='%23202327'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2453_52323'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.ico-location {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2453_52327)'%3E%3Cpath d='M12 20.9L16.95 15.95C17.9289 14.971 18.5955 13.7238 18.8656 12.3659C19.1356 11.0081 18.9969 9.60064 18.4671 8.3216C17.9373 7.04256 17.04 5.94935 15.8889 5.18021C14.7378 4.41107 13.3844 4.00055 12 4.00055C10.6156 4.00055 9.26222 4.41107 8.11109 5.18021C6.95996 5.94935 6.06275 7.04256 5.53292 8.3216C5.00308 9.60064 4.86442 11.0081 5.13445 12.3659C5.40449 13.7238 6.07111 14.971 7.05 15.95L12 20.9ZM12 23.728L5.636 17.364C4.37734 16.1054 3.52019 14.5017 3.17293 12.7559C2.82567 11.0101 3.00391 9.20047 3.6851 7.55595C4.36629 5.91142 5.51984 4.50582 6.99988 3.51689C8.47992 2.52796 10.22 2.00012 12 2.00012C13.78 2.00012 15.5201 2.52796 17.0001 3.51689C18.4802 4.50582 19.6337 5.91142 20.3149 7.55595C20.9961 9.20047 21.1743 11.0101 20.8271 12.7559C20.4798 14.5017 19.6227 16.1054 18.364 17.364L12 23.728ZM12 13C12.5304 13 13.0391 12.7893 13.4142 12.4143C13.7893 12.0392 14 11.5305 14 11C14 10.4696 13.7893 9.9609 13.4142 9.58583C13.0391 9.21076 12.5304 9.00004 12 9.00004C11.4696 9.00004 10.9609 9.21076 10.5858 9.58583C10.2107 9.9609 10 10.4696 10 11C10 11.5305 10.2107 12.0392 10.5858 12.4143C10.9609 12.7893 11.4696 13 12 13ZM12 15C10.9391 15 9.92172 14.5786 9.17158 13.8285C8.42143 13.0783 8 12.0609 8 11C8 9.93918 8.42143 8.92176 9.17158 8.17162C9.92172 7.42147 10.9391 7.00004 12 7.00004C13.0609 7.00004 14.0783 7.42147 14.8284 8.17162C15.5786 8.92176 16 9.93918 16 11C16 12.0609 15.5786 13.0783 14.8284 13.8285C14.0783 14.5786 13.0609 15 12 15Z' fill='%23052832'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2453_52327'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.ico-checked {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2453_52335)'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12C2 6.477 6.477 2 12 2C17.523 2 22 6.477 22 12C22 17.523 17.523 22 12 22ZM11.003 16L18.073 8.929L16.659 7.515L11.003 13.172L8.174 10.343L6.76 11.757L11.003 16Z' fill='%23052832'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2453_52335'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.ico-unchecked {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2453_52331)'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12C2 6.477 6.477 2 12 2C17.523 2 22 6.477 22 12C22 17.523 17.523 22 12 22ZM12 20C14.1217 20 16.1566 19.1571 17.6569 17.6569C19.1571 16.1566 20 14.1217 20 12C20 9.87827 19.1571 7.84344 17.6569 6.34315C16.1566 4.84285 14.1217 4 12 4C9.87827 4 7.84344 4.84285 6.34315 6.34315C4.84285 7.84344 4 9.87827 4 12C4 14.1217 4.84285 16.1566 6.34315 17.6569C7.84344 19.1571 9.87827 20 12 20Z' fill='%23052832'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2453_52331'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.ico-multi-select {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2453_52339)'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12C2 6.477 6.477 2 12 2C17.523 2 22 6.477 22 12C22 17.523 17.523 22 12 22ZM12 20C14.1217 20 16.1566 19.1571 17.6569 17.6569C19.1571 16.1566 20 14.1217 20 12C20 9.87827 19.1571 7.84344 17.6569 6.34315C16.1566 4.84285 14.1217 4 12 4C9.87827 4 7.84344 4.84285 6.34315 6.34315C4.84285 7.84344 4 9.87827 4 12C4 14.1217 4.84285 16.1566 6.34315 17.6569C7.84344 19.1571 9.87827 20 12 20ZM11.003 16L6.76 11.757L8.174 10.343L11.003 13.172L16.659 7.515L18.074 8.929L11.003 16Z' fill='%23052832'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2453_52339'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.ico-download {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 4L10 12.5M10 12.5L14.6154 8.5M10 12.5L5.38462 8.5M15.5 16L4.5 16' stroke='%23052832' stroke-width='1.5'/%3E%3C/svg%3E%0A");
}
.ico-add {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2814_97451)'%3E%3Cpath d='M11 11V5H13V11H19V13H13V19H11V13H5V11H11Z' fill='%23052832'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2814_97451'%3E%3Crect width='24' height='24' fill='%23052832'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.ico-del {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3509_95797)'%3E%3Cpath d='M15.8307 9.16406V10.8307H4.16406V9.16406H15.8307Z' fill='%23052832'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3509_95797'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.ico-users-blue {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='12' fill='%232088FD' fill-opacity='0.1'/%3E%3Cmask id='mask0_1990_19912' style='mask-type:luminance' maskUnits='userSpaceOnUse' x='0' y='0' width='24' height='24'%3E%3Ccircle cx='12' cy='12' r='12' fill='white'/%3E%3C/mask%3E%3Cg mask='url(%23mask0_1990_19912)'%3E%3Cpath d='M12 14.2815C17.3019 14.2815 21.5996 16.4572 21.5996 19.1409C21.5994 21.8245 17.3018 24.0002 12 24.0002C6.69817 24.0002 2.40056 21.8245 2.40039 19.1409C2.40039 16.4572 6.69807 14.2815 12 14.2815ZM12 4.80005C14.4217 4.80005 16.3846 6.76311 16.3848 9.18481C16.3848 11.6067 14.4219 13.5706 12 13.5706C9.57814 13.5705 7.61523 11.6067 7.61523 9.18481C7.61544 6.76312 9.57827 4.80007 12 4.80005Z' fill='%232088FD'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ico-planet {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 12.5C10.0376 12.5 12.5 10.0376 12.5 7C12.5 3.96243 10.0376 1.5 7 1.5M7 12.5C3.96243 12.5 1.5 10.0376 1.5 7C1.5 3.96243 3.96243 1.5 7 1.5M7 12.5C8.27898 12.5 9.31579 10.0376 9.31579 7C9.31579 3.96243 8.27898 1.5 7 1.5M7 12.5C5.72102 12.5 4.68421 10.0376 4.68421 7C4.68421 3.96243 5.72102 1.5 7 1.5M1.78947 5.26316H12.2105M1.78947 8.73684H12.2105' stroke='%231E1E1E' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}
.ico-search-filter {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3509_95734)'%3E%3Cpath d='M5 17.5026L2.5 17.5026L2.5 15.8359L5 15.8359L5 14.1693L6.66667 14.1693L6.66667 19.1693L5 19.1693L5 17.5026ZM5 4.16927L2.5 4.16927L2.5 2.5026L5 2.5026L5 0.835937L6.66667 0.835937L6.66667 5.83594L5 5.83594L5 4.16927ZM15 9.16927L17.5 9.16927L17.5 10.8359L15 10.8359L15 12.5026L13.3333 12.5026L13.3333 7.5026L15 7.5026L15 9.16927ZM11.6667 9.16927L11.6667 10.8359L2.5 10.8359L2.5 9.16927L11.6667 9.16927ZM8.33333 2.5026L17.5 2.5026L17.5 4.16927L8.33333 4.16927L8.33333 2.5026ZM8.33333 15.8359L17.5 15.8359L17.5 17.5026L8.33333 17.5026L8.33333 15.8359Z' fill='%23202327'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3509_95734'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.ico-guideline {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.3682 0C11.2107 -2.1489e-07 11.8888 -0.000723949 12.4355 0.0439453C12.9908 0.0893604 13.478 0.185879 13.9277 0.415039C14.643 0.779723 15.2253 1.36175 15.5898 2.07715C15.8188 2.52686 15.9146 3.01411 15.96 3.56934C16.0046 4.11602 16.0039 4.79341 16.0039 5.63574V10.3682C16.0039 11.2107 16.0046 11.8888 15.96 12.4355C15.9145 12.9908 15.819 13.478 15.5898 13.9277C15.2252 14.6432 14.6432 15.2252 13.9277 15.5898C13.478 15.819 12.9908 15.9145 12.4355 15.96C11.8888 16.0046 11.2107 16.0039 10.3682 16.0039H5.63574C4.79341 16.0039 4.11602 16.0046 3.56934 15.96C3.01411 15.9146 2.52686 15.8188 2.07715 15.5898C1.36175 15.2253 0.779723 14.643 0.415039 13.9277C0.18588 13.478 0.0893606 12.9908 0.0439453 12.4355C-0.000723981 11.8888 -2.149e-07 11.2107 0 10.3682V5.63574C0 4.7934 -0.000675215 4.11603 0.0439453 3.56934C0.0893278 3.01388 0.185877 2.52702 0.415039 2.07715C0.779696 1.36147 1.36147 0.779696 2.07715 0.415039C2.52702 0.185877 3.01388 0.0893278 3.56934 0.0439453C4.11603 -0.000675353 4.79339 0 5.63574 0H10.3682ZM5.63574 1.5C4.76866 1.5 4.16288 1.50058 3.69141 1.53906C3.22878 1.57686 2.96103 1.64749 2.75781 1.75098C2.32438 1.97182 1.97182 2.32438 1.75098 2.75781C1.64749 2.96102 1.57686 3.22879 1.53906 3.69141C1.50058 4.16288 1.5 4.76866 1.5 5.63574V10.3682C1.5 11.2354 1.50054 11.842 1.53906 12.3135C1.57687 12.7755 1.64758 13.043 1.75098 13.2461C1.97183 13.6793 2.32455 14.0322 2.75781 14.2529C2.961 14.3564 3.22895 14.4271 3.69141 14.4648C4.16287 14.5033 4.76868 14.5039 5.63574 14.5039H10.3682C11.2354 14.5039 11.842 14.5034 12.3135 14.4648C12.7756 14.427 13.043 14.3564 13.2461 14.2529C13.6794 14.0321 14.0321 13.6794 14.2529 13.2461C14.3564 13.043 14.427 12.7756 14.4648 12.3135C14.5034 11.842 14.5039 11.2354 14.5039 10.3682V5.63574C14.5039 4.76868 14.5033 4.16287 14.4648 3.69141C14.4271 3.22895 14.3564 2.961 14.2529 2.75781C14.0322 2.32455 13.6793 1.97183 13.2461 1.75098C13.043 1.64758 12.7755 1.57687 12.3135 1.53906C11.842 1.50054 11.2354 1.5 10.3682 1.5H5.63574ZM8.13574 8.7793C10.0408 8.77943 11.8157 9.61017 12.6348 11.1426C12.9978 11.8221 12.8349 12.5205 12.4238 12.998C12.0357 13.4486 11.4318 13.7137 10.8076 13.7139H5.46387C4.83951 13.7138 4.23482 13.4488 3.84668 12.998C3.43566 12.5205 3.27287 11.822 3.63574 11.1426C4.45482 9.6101 6.23064 8.77938 8.13574 8.7793ZM8.13574 10.2793C6.61683 10.2794 5.44578 10.9369 4.95801 11.8496C4.93054 11.9012 4.9346 11.9261 4.93555 11.9326C4.93752 11.9452 4.94611 11.9762 4.9834 12.0195C5.06704 12.1166 5.24535 12.2138 5.46387 12.2139H10.8076C11.0258 12.2137 11.2034 12.1165 11.2871 12.0195C11.3243 11.9763 11.333 11.9453 11.335 11.9326C11.3359 11.9261 11.3401 11.9014 11.3125 11.8496C10.8247 10.9369 9.65457 10.2794 8.13574 10.2793ZM8.13574 2.67188C9.60368 2.67211 10.7938 3.86212 10.7939 5.33008C10.7937 6.79797 9.60363 7.98902 8.13574 7.98926C6.66778 7.9891 5.47677 6.79803 5.47656 5.33008C5.4767 3.86206 6.66773 2.67203 8.13574 2.67188ZM8.13574 4.17188C7.49616 4.17203 6.9767 4.69049 6.97656 5.33008C6.97677 5.9696 7.49621 6.4891 8.13574 6.48926C8.7752 6.48902 9.29373 5.96955 9.29395 5.33008C9.29381 4.69055 8.77525 4.17211 8.13574 4.17188Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-badge {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M211 7.3C205 1 196-1.4 187.6 .8s-14.9 8.9-17.1 17.3L154.7 80.6l-62-17.5c-8.4-2.4-17.4 0-23.5 6.1s-8.5 15.1-6.1 23.5l17.5 62L18.1 170.6c-8.4 2.1-15 8.7-17.3 17.1S1 205 7.3 211l46.2 45L7.3 301C1 307-1.4 316 .8 324.4s8.9 14.9 17.3 17.1l62.5 15.8-17.5 62c-2.4 8.4 0 17.4 6.1 23.5s15.1 8.5 23.5 6.1l62-17.5 15.8 62.5c2.1 8.4 8.7 15 17.1 17.3s17.3-.2 23.4-6.4l45-46.2 45 46.2c6.1 6.2 15 8.7 23.4 6.4s14.9-8.9 17.1-17.3l15.8-62.5 62 17.5c8.4 2.4 17.4 0 23.5-6.1s8.5-15.1 6.1-23.5l-17.5-62 62.5-15.8c8.4-2.1 15-8.7 17.3-17.1s-.2-17.4-6.4-23.4l-46.2-45 46.2-45c6.2-6.1 8.7-15 6.4-23.4s-8.9-14.9-17.3-17.1l-62.5-15.8 17.5-62c2.4-8.4 0-17.4-6.1-23.5s-15.1-8.5-23.5-6.1l-62 17.5L341.4 18.1c-2.1-8.4-8.7-15-17.1-17.3S307 1 301 7.3L256 53.5 211 7.3z'/%3E%3C/svg%3E%0A");
}
.ico-success {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_4092_114523)'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12C2 6.477 6.477 2 12 2C17.523 2 22 6.477 22 12C22 17.523 17.523 22 12 22ZM12 20C14.1217 20 16.1566 19.1571 17.6569 17.6569C19.1571 16.1566 20 14.1217 20 12C20 9.87827 19.1571 7.84344 17.6569 6.34315C16.1566 4.84285 14.1217 4 12 4C9.87827 4 7.84344 4.84285 6.34315 6.34315C4.84285 7.84344 4 9.87827 4 12C4 14.1217 4.84285 16.1566 6.34315 17.6569C7.84344 19.1571 9.87827 20 12 20ZM11.003 16L6.76 11.757L8.174 10.343L11.003 13.172L16.659 7.515L18.074 8.929L11.003 16Z' fill='%230062FF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4092_114523'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.ico-error {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12C2 6.477 6.477 2 12 2C17.523 2 22 6.477 22 12C22 17.523 17.523 22 12 22ZM12 20C14.1217 20 16.1566 19.1571 17.6569 17.6569C19.1571 16.1566 20 14.1217 20 12C20 9.87827 19.1571 7.84344 17.6569 6.34315C16.1566 4.84285 14.1217 4 12 4C9.87827 4 7.84344 4.84285 6.34315 6.34315C4.84285 7.84344 4 9.87827 4 12C4 14.1217 4.84285 16.1566 6.34315 17.6569C7.84344 19.1571 9.87827 20 12 20ZM11 15H13V17H11V15ZM11 7H13V13H11V7Z' fill='%238A8A8A'/%3E%3C/svg%3E%0A");
}
.ico-warning {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_4092_114528)'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12C2 6.477 6.477 2 12 2C17.523 2 22 6.477 22 12C22 17.523 17.523 22 12 22ZM12 20C14.1217 20 16.1566 19.1571 17.6569 17.6569C19.1571 16.1566 20 14.1217 20 12C20 9.87827 19.1571 7.84344 17.6569 6.34315C16.1566 4.84285 14.1217 4 12 4C9.87827 4 7.84344 4.84285 6.34315 6.34315C4.84285 7.84344 4 9.87827 4 12C4 14.1217 4.84285 16.1566 6.34315 17.6569C7.84344 19.1571 9.87827 20 12 20ZM12 10.586L14.828 7.757L16.243 9.172L13.414 12L16.243 14.828L14.828 16.243L12 13.414L9.172 16.243L7.757 14.828L10.586 12L7.757 9.172L9.172 7.757L12 10.586Z' fill='%23FF383C'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4092_114528'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.ico-close-white {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_4092_114526)'%3E%3Cpath d='M11.9968 10.5828L16.9468 5.63281L18.3608 7.04681L13.4108 11.9968L18.3608 16.9468L16.9468 18.3608L11.9968 13.4108L7.04681 18.3608L5.63281 16.9468L10.5828 11.9968L5.63281 7.04681L7.04681 5.63281L11.9968 10.5828Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_4092_114526'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

/* icon mask */
.ico-mask {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--icon-color, #052832);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
}
.ico-mask-account {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12C2 6.477 6.477 2 12 2C17.523 2 22 6.477 22 12C22 17.523 17.523 22 12 22ZM7.013 18.256C8.42855 19.3877 10.1877 20.0029 12 20C13.97 20 15.773 19.288 17.167 18.108C16.5157 17.4397 15.7371 16.9089 14.877 16.5468C14.017 16.1847 13.0931 15.9988 12.16 16C11.1926 15.9989 10.2355 16.1989 9.34947 16.5872C8.46343 16.9756 7.66778 17.5439 7.013 18.256ZM5.616 16.82C6.45645 15.9281 7.47067 15.2177 8.59614 14.7327C9.72161 14.2477 10.9345 13.9984 12.16 14C13.3417 13.9985 14.512 14.2304 15.6037 14.6824C16.6955 15.1344 17.6873 15.7976 18.522 16.634C19.3781 15.4291 19.8836 14.0106 19.9826 12.5359C20.0815 11.0612 19.77 9.58789 19.0825 8.27946C18.395 6.97102 17.3585 5.87862 16.088 5.12345C14.8174 4.36827 13.3625 3.97984 11.8846 4.00125C10.4067 4.02267 8.96366 4.45308 7.71552 5.24476C6.46738 6.03643 5.46296 7.1584 4.81369 8.4862C4.16442 9.814 3.89569 11.2957 4.03732 12.7669C4.17894 14.2382 4.72537 15.6414 5.616 16.821V16.82ZM12 13C10.9391 13 9.92172 12.5786 9.17157 11.8284C8.42143 11.0783 8 10.0609 8 9C8 7.93913 8.42143 6.92172 9.17157 6.17157C9.92172 5.42143 10.9391 5 12 5C13.0609 5 14.0783 5.42143 14.8284 6.17157C15.5786 6.92172 16 7.93913 16 9C16 10.0609 15.5786 11.0783 14.8284 11.8284C14.0783 12.5786 13.0609 13 12 13ZM12 11C12.5304 11 13.0391 10.7893 13.4142 10.4142C13.7893 10.0391 14 9.53043 14 9C14 8.46957 13.7893 7.96086 13.4142 7.58579C13.0391 7.21071 12.5304 7 12 7C11.4696 7 10.9609 7.21071 10.5858 7.58579C10.2107 7.96086 10 8.46957 10 9C10 9.53043 10.2107 10.0391 10.5858 10.4142C10.9609 10.7893 11.4696 11 12 11Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12C2 6.477 6.477 2 12 2C17.523 2 22 6.477 22 12C22 17.523 17.523 22 12 22ZM7.013 18.256C8.42855 19.3877 10.1877 20.0029 12 20C13.97 20 15.773 19.288 17.167 18.108C16.5157 17.4397 15.7371 16.9089 14.877 16.5468C14.017 16.1847 13.0931 15.9988 12.16 16C11.1926 15.9989 10.2355 16.1989 9.34947 16.5872C8.46343 16.9756 7.66778 17.5439 7.013 18.256ZM5.616 16.82C6.45645 15.9281 7.47067 15.2177 8.59614 14.7327C9.72161 14.2477 10.9345 13.9984 12.16 14C13.3417 13.9985 14.512 14.2304 15.6037 14.6824C16.6955 15.1344 17.6873 15.7976 18.522 16.634C19.3781 15.4291 19.8836 14.0106 19.9826 12.5359C20.0815 11.0612 19.77 9.58789 19.0825 8.27946C18.395 6.97102 17.3585 5.87862 16.088 5.12345C14.8174 4.36827 13.3625 3.97984 11.8846 4.00125C10.4067 4.02267 8.96366 4.45308 7.71552 5.24476C6.46738 6.03643 5.46296 7.1584 4.81369 8.4862C4.16442 9.814 3.89569 11.2957 4.03732 12.7669C4.17894 14.2382 4.72537 15.6414 5.616 16.821V16.82ZM12 13C10.9391 13 9.92172 12.5786 9.17157 11.8284C8.42143 11.0783 8 10.0609 8 9C8 7.93913 8.42143 6.92172 9.17157 6.17157C9.92172 5.42143 10.9391 5 12 5C13.0609 5 14.0783 5.42143 14.8284 6.17157C15.5786 6.92172 16 7.93913 16 9C16 10.0609 15.5786 11.0783 14.8284 11.8284C14.0783 12.5786 13.0609 13 12 13ZM12 11C12.5304 11 13.0391 10.7893 13.4142 10.4142C13.7893 10.0391 14 9.53043 14 9C14 8.46957 13.7893 7.96086 13.4142 7.58579C13.0391 7.21071 12.5304 7 12 7C11.4696 7 10.9609 7.21071 10.5858 7.58579C10.2107 7.96086 10 8.46957 10 9C10 9.53043 10.2107 10.0391 10.5858 10.4142C10.9609 10.7893 11.4696 11 12 11Z'/%3E%3C/svg%3E");
}
.ico-mask-notification-bubble {
  -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2453_52315)'%3E%3Cpath d='M6.455 19L2 22.5V4C2 3.73478 2.10536 3.48043 2.29289 3.29289C2.48043 3.10536 2.73478 3 3 3H21C21.2652 3 21.5196 3.10536 21.7071 3.29289C21.8946 3.48043 22 3.73478 22 4V18C22 18.2652 21.8946 18.5196 21.7071 18.7071C21.5196 18.8946 21.2652 19 21 19H6.455ZM4 18.385L5.763 17H20V5H4V18.385ZM11 13H13V15H11V13ZM11 7H13V12H11V7Z' fill='%23052832'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2453_52315'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2453_52315)'%3E%3Cpath d='M6.455 19L2 22.5V4C2 3.73478 2.10536 3.48043 2.29289 3.29289C2.48043 3.10536 2.73478 3 3 3H21C21.2652 3 21.5196 3.10536 21.7071 3.29289C21.8946 3.48043 22 3.73478 22 4V18C22 18.2652 21.8946 18.5196 21.7071 18.7071C21.5196 18.8946 21.2652 19 21 19H6.455ZM4 18.385L5.763 17H20V5H4V18.385ZM11 13H13V15H11V13ZM11 7H13V12H11V7Z' fill='%23052832'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2453_52315'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}
.ico-mask-notification {
  -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19.998 17.001H21.998V19.001H1.99805V17.001H3.99805V10.001C3.99805 7.87924 4.8409 5.84441 6.34119 4.34412C7.84148 2.84383 9.87632 2.00098 11.998 2.00098C14.1198 2.00098 16.1546 2.84383 17.6549 4.34412C19.1552 5.84441 19.998 7.87924 19.998 10.001V17.001ZM17.998 17.001V10.001C17.998 8.40968 17.3659 6.88355 16.2407 5.75834C15.1155 4.63312 13.5893 4.00098 11.998 4.00098C10.4067 4.00098 8.88062 4.63312 7.75541 5.75834C6.63019 6.88355 5.99805 8.40968 5.99805 10.001V17.001H17.998ZM8.99805 21.001H14.998V23.001H8.99805V21.001Z' fill='%23052832'/%3E%3Cpath d='M15 21H9V23H15V21Z' fill='%23052832'/%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19.998 17.001H21.998V19.001H1.99805V17.001H3.99805V10.001C3.99805 7.87924 4.8409 5.84441 6.34119 4.34412C7.84148 2.84383 9.87632 2.00098 11.998 2.00098C14.1198 2.00098 16.1546 2.84383 17.6549 4.34412C19.1552 5.84441 19.998 7.87924 19.998 10.001V17.001ZM17.998 17.001V10.001C17.998 8.40968 17.3659 6.88355 16.2407 5.75834C15.1155 4.63312 13.5893 4.00098 11.998 4.00098C10.4067 4.00098 8.88062 4.63312 7.75541 5.75834C6.63019 6.88355 5.99805 8.40968 5.99805 10.001V17.001H17.998ZM8.99805 21.001H14.998V23.001H8.99805V21.001Z' fill='%23052832'/%3E%3Cpath d='M15 21H9V23H15V21Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.ico-mask-edit {
  -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2453_52323)'%3E%3Cpath d='M12.9 6.85796L17.142 11.101L7.242 21H3V16.757L12.9 6.85696V6.85796ZM14.314 5.44396L16.435 3.32196C16.6225 3.13449 16.8768 3.02917 17.142 3.02917C17.4072 3.02917 17.6615 3.13449 17.849 3.32196L20.678 6.15096C20.8655 6.33849 20.9708 6.5928 20.9708 6.85796C20.9708 7.12313 20.8655 7.37743 20.678 7.56496L18.556 9.68596L14.314 5.44396Z' fill='%23202327'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2453_52323'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  mask-image: url("data:image/svg+xml;utf8,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2453_52323)'%3E%3Cpath d='M12.9 6.85796L17.142 11.101L7.242 21H3V16.757L12.9 6.85696V6.85796ZM14.314 5.44396L16.435 3.32196C16.6225 3.13449 16.8768 3.02917 17.142 3.02917C17.4072 3.02917 17.6615 3.13449 17.849 3.32196L20.678 6.15096C20.8655 6.33849 20.9708 6.5928 20.9708 6.85796C20.9708 7.12313 20.8655 7.37743 20.678 7.56496L18.556 9.68596L14.314 5.44396Z' fill='%23202327'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2453_52323'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

/* category color */
/* chip */
.chip-list {
  margin-top: 20px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 8px;
  height: 28px;
  padding: 0 12px;
  border-radius: 14px;
  background-color: var(--category-bg);
  font-size: 12px;
  color: var(--category-color);
}
.chip:hover, .chip:focus {
  text-decoration: none !important;
}
.chip.new::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: -5px;
  border-radius: 50%;
  background-color: var(--category-color);
}
.chip--ghost {
  border: 1px solid var(--category-border);
  background-color: transparent;
}
.chip--s {
  height: 22px;
  padding: 0 8px;
  background-color: var(--color-gr-05);
}

.color-chip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.color-chip .inner {
  width: 10px;
  height: 10px;
  border-radius: inherit;
}

/* badges */
.badges {
  display: inline-block;
  overflow: hidden;
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
  text-indent: 100%;
  white-space: nowrap;
  vertical-align: middle;
}
.badges.small {
  width: 40px;
  height: 40px;
}
.badges-basic {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32766)'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%23EDDFAE'/%3E%3Cpath d='M22.5507 45.9877H11.5703V56.968H22.5507V45.9877Z' fill='%23DCCB90'/%3E%3Cpath d='M88.4296 45.9879H77.4492V56.9683H88.4296V45.9879Z' fill='%23DCCB90'/%3E%3Cpath d='M33.5311 56.9683H22.5508V67.9486H33.5311V56.9683Z' fill='%23DCCB90'/%3E%3Cpath d='M77.4491 56.9683H66.4688V67.9486H77.4491V56.9683Z' fill='%23DCCB90'/%3E%3Cpath d='M44.5077 67.9486H33.5273V78.929H44.5077V67.9486Z' fill='%23DCCB90'/%3E%3Cpath d='M55.4882 67.9486H44.5078V78.929H55.4882V67.9486Z' fill='%23DCCB90'/%3E%3Cpath d='M66.4686 67.9486H55.4883V78.929H66.4686V67.9486Z' fill='%23DCCB90'/%3E%3Cpath d='M39.0194 24.6755H28.0391V35.6559H39.0194V24.6755Z' fill='%23DCCB90'/%3E%3Cpath d='M71.9569 24.6757H60.9766V35.656H71.9569V24.6757Z' fill='%23DCCB90'/%3E%3Cpath d='M33.0771 54V43.78H36.2971C38.5511 43.78 39.8531 44.774 39.8531 46.636C39.8531 47.518 39.4751 48.19 38.7331 48.624C39.6991 49.058 40.2171 49.842 40.2171 50.976C40.2171 52.992 38.8031 54 36.5491 54H33.0771ZM36.4651 49.632H34.9811V52.25H36.5491C37.7111 52.25 38.2991 51.774 38.2991 50.934C38.2991 50.094 37.8791 49.632 36.4651 49.632ZM36.2971 45.53H34.9811V47.854H36.2971C37.5151 47.854 37.9351 47.364 37.9351 46.636C37.9351 45.866 37.4731 45.53 36.2971 45.53ZM44.8062 54.168C42.8042 54.168 40.7742 52.572 40.7742 49.912C40.7742 47.21 42.7622 45.642 44.8342 45.642C45.9122 45.642 46.8642 46.076 47.4662 46.79V45.81H49.3562V54H47.4662V52.936C46.8642 53.706 45.8842 54.168 44.8062 54.168ZM45.1142 52.432C46.5982 52.432 47.5642 51.214 47.5642 49.884C47.5642 48.554 46.5842 47.364 45.1142 47.364C43.7422 47.364 42.6362 48.442 42.6362 49.884C42.6362 51.326 43.7282 52.432 45.1142 52.432ZM53.4242 54.168C51.6182 54.168 50.4282 53.454 49.7842 52.18L51.5342 51.34C51.9262 52.11 52.6122 52.53 53.5082 52.53C54.4462 52.53 54.9082 52.082 54.9082 51.536C54.9082 50.92 53.9142 50.808 52.9902 50.598C51.5902 50.304 50.1202 49.87 50.1202 48.134C50.1202 46.832 51.3802 45.628 53.3402 45.628C54.9782 45.628 56.0562 46.286 56.6862 47.322L55.0762 48.134C54.7402 47.56 54.1242 47.196 53.3402 47.196C52.4442 47.196 52.0242 47.616 52.0242 48.078C52.0242 48.554 52.4862 48.736 53.9002 49.03C55.2722 49.296 56.7842 49.8 56.7842 51.494C56.7842 52.642 55.7762 54.168 53.4242 54.168ZM57.5154 54V45.81H59.4194V54H57.5154ZM57.2774 43.808C57.2774 43.094 57.7394 42.618 58.4674 42.618C59.2094 42.618 59.6574 43.094 59.6574 43.808C59.6574 44.522 59.2094 44.984 58.4674 44.984C57.7114 44.984 57.2774 44.522 57.2774 43.808ZM64.4109 54.168C62.0029 54.168 60.1549 52.25 60.1549 49.912C60.1549 47.504 62.0309 45.642 64.4109 45.642C66.2449 45.642 67.6869 46.692 68.3169 48.176L66.6229 48.89C66.2449 47.98 65.4329 47.42 64.4249 47.42C63.0389 47.42 62.0029 48.526 62.0029 49.912C62.0029 51.284 63.0529 52.39 64.4389 52.39C65.5029 52.39 66.2729 51.774 66.6509 50.864L68.3449 51.592C67.7009 53.104 66.3009 54.168 64.4109 54.168Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32766'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-member {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32781)'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%23FF6BCB'/%3E%3Cpath d='M22.5507 45.9877H11.5703V56.968H22.5507V45.9877Z' fill='%23FF86D4'/%3E%3Cpath d='M88.4296 45.9879H77.4492V56.9683H88.4296V45.9879Z' fill='%23FF86D4'/%3E%3Cpath d='M33.5311 56.9683H22.5508V67.9486H33.5311V56.9683Z' fill='%23FF86D4'/%3E%3Cpath d='M77.4491 56.9683H66.4688V67.9486H77.4491V56.9683Z' fill='%23FF86D4'/%3E%3Cpath d='M44.5077 67.9486H33.5273V78.929H44.5077V67.9486Z' fill='%23FF86D4'/%3E%3Cpath d='M55.4882 67.9486H44.5078V78.929H55.4882V67.9486Z' fill='%23FF86D4'/%3E%3Cpath d='M66.4686 67.9486H55.4883V78.929H66.4686V67.9486Z' fill='%23FF86D4'/%3E%3Cpath d='M39.0194 24.6755H28.0391V35.6559H39.0194V24.6755Z' fill='%23FF86D4'/%3E%3Cpath d='M71.9569 24.6757H60.9766V35.656H71.9569V24.6757Z' fill='%23FF86D4'/%3E%3Cpath d='M21.9583 53V42.78H23.8483L26.9423 47.078L30.1623 42.78H31.9683V53H30.0643V45.832L26.9283 50.06L23.8623 45.902V53H21.9583ZM37.0576 53.168C34.4816 53.168 32.7316 51.306 32.7316 48.926C32.7316 46.546 34.5936 44.642 36.9876 44.642C39.4096 44.642 41.2016 46.406 41.2016 48.856V49.57H34.5376C34.8036 50.732 35.7136 51.502 37.0576 51.502C38.1216 51.502 38.9336 50.942 39.3256 50.06L40.8796 50.956C40.1656 52.286 38.8916 53.168 37.0576 53.168ZM36.9876 46.308C35.8536 46.308 34.9716 46.98 34.6356 47.988H39.2836C39.0036 46.882 38.1636 46.308 36.9876 46.308ZM41.9598 53V44.81H43.8358V45.762C44.3538 45.076 45.1658 44.642 46.1738 44.642C47.4618 44.642 48.3578 45.174 48.8338 46.056C49.3938 45.202 50.3458 44.642 51.5218 44.642C53.7198 44.642 54.8538 45.944 54.8538 48.072V53H52.9218V48.226C52.9218 47.036 52.3198 46.28 51.1438 46.28C50.1218 46.28 49.3378 46.98 49.3378 48.422V53H47.4198V48.17C47.4198 46.994 46.8318 46.28 45.6978 46.28C44.6338 46.28 43.8498 47.008 43.8498 48.464V53H41.9598ZM60.4078 53.168C59.2878 53.168 58.3078 52.706 57.7198 51.936V53H55.8438V42.64H57.7338V45.846C58.3218 45.104 59.2738 44.642 60.3798 44.642C62.4378 44.642 64.4118 46.21 64.4118 48.912C64.4118 51.558 62.3958 53.168 60.4078 53.168ZM60.0858 51.432C61.4858 51.432 62.5498 50.298 62.5498 48.884C62.5498 47.456 61.4578 46.364 60.0858 46.364C58.6438 46.364 57.6498 47.526 57.6498 48.884C57.6498 50.368 58.7418 51.432 60.0858 51.432ZM69.2352 53.168C66.6592 53.168 64.9092 51.306 64.9092 48.926C64.9092 46.546 66.7712 44.642 69.1652 44.642C71.5872 44.642 73.3792 46.406 73.3792 48.856V49.57H66.7152C66.9812 50.732 67.8912 51.502 69.2352 51.502C70.2992 51.502 71.1112 50.942 71.5032 50.06L73.0572 50.956C72.3432 52.286 71.0692 53.168 69.2352 53.168ZM69.1652 46.308C68.0312 46.308 67.1492 46.98 66.8132 47.988H71.4612C71.1812 46.882 70.3412 46.308 69.1652 46.308ZM74.1374 53V44.81H76.0134V46.028C76.3914 45.23 77.0914 44.81 78.1134 44.81C78.7154 44.81 79.1774 44.95 79.5554 45.16L78.8414 46.952C78.5474 46.756 78.2534 46.63 77.7074 46.63C76.6014 46.63 76.0274 47.218 76.0274 48.632V53H74.1374Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32781'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-appreciated {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32796)'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%23FF6775'/%3E%3Cpath d='M75.8674 29.1955C68.7239 22.0538 57.1441 22.0538 50.0024 29.1955C42.8608 22.0538 31.2792 22.0538 24.1375 29.1955C16.9958 36.3372 16.9958 47.9187 24.1375 55.0604L50.0024 80.9254L75.8674 55.0604C83.0091 47.9187 83.0091 36.3372 75.8674 29.1955Z' fill='%23FF8490'/%3E%3Cpath d='M6.7207 54L10.3607 43.78H12.2787L15.9187 54H13.9307L13.3007 52.18H9.3387L8.7087 54H6.7207ZM11.3267 46.482L9.9827 50.36H12.6707L11.3267 46.482ZM21.0747 54.168C19.9547 54.168 18.9887 53.776 18.4007 53.034V57.766H16.5247V45.81H18.4007V46.902C18.9747 46.146 19.9407 45.642 21.0607 45.642C23.1187 45.642 25.0927 47.21 25.0927 49.912C25.0927 52.6 23.0487 54.168 21.0747 54.168ZM20.7667 52.432C22.1667 52.432 23.2307 51.298 23.2307 49.884C23.2307 48.456 22.1387 47.364 20.7667 47.364C19.3527 47.364 18.3307 48.484 18.3307 49.884C18.3307 51.298 19.3387 52.432 20.7667 52.432ZM30.3377 54.168C29.2177 54.168 28.2517 53.776 27.6637 53.034V57.766H25.7877V45.81H27.6637V46.902C28.2377 46.146 29.2037 45.642 30.3237 45.642C32.3817 45.642 34.3557 47.21 34.3557 49.912C34.3557 52.6 32.3117 54.168 30.3377 54.168ZM30.0297 52.432C31.4297 52.432 32.4937 51.298 32.4937 49.884C32.4937 48.456 31.4017 47.364 30.0297 47.364C28.6157 47.364 27.5937 48.484 27.5937 49.884C27.5937 51.298 28.6017 52.432 30.0297 52.432ZM35.0507 54V45.81H36.9267V47.028C37.3047 46.23 38.0047 45.81 39.0267 45.81C39.6287 45.81 40.0907 45.95 40.4687 46.16L39.7547 47.952C39.4607 47.756 39.1667 47.63 38.6207 47.63C37.5147 47.63 36.9407 48.218 36.9407 49.632V54H35.0507ZM44.7916 54.168C42.2156 54.168 40.4656 52.306 40.4656 49.926C40.4656 47.546 42.3276 45.642 44.7216 45.642C47.1436 45.642 48.9356 47.406 48.9356 49.856V50.57H42.2716C42.5376 51.732 43.4476 52.502 44.7916 52.502C45.8556 52.502 46.6676 51.942 47.0596 51.06L48.6136 51.956C47.8996 53.286 46.6256 54.168 44.7916 54.168ZM44.7216 47.308C43.5876 47.308 42.7056 47.98 42.3696 48.988H47.0176C46.7376 47.882 45.8976 47.308 44.7216 47.308ZM53.6838 54.168C51.2758 54.168 49.4278 52.25 49.4278 49.912C49.4278 47.504 51.3038 45.642 53.6838 45.642C55.5178 45.642 56.9598 46.692 57.5898 48.176L55.8958 48.89C55.5178 47.98 54.7058 47.42 53.6978 47.42C52.3118 47.42 51.2758 48.526 51.2758 49.912C51.2758 51.284 52.3258 52.39 53.7118 52.39C54.7758 52.39 55.5458 51.774 55.9238 50.864L57.6178 51.592C56.9738 53.104 55.5738 54.168 53.6838 54.168ZM58.2458 54V45.81H60.1498V54H58.2458ZM58.0078 43.808C58.0078 43.094 58.4698 42.618 59.1978 42.618C59.9398 42.618 60.3878 43.094 60.3878 43.808C60.3878 44.522 59.9398 44.984 59.1978 44.984C58.4418 44.984 58.0078 44.522 58.0078 43.808ZM64.9174 54.168C62.9154 54.168 60.8854 52.572 60.8854 49.912C60.8854 47.21 62.8734 45.642 64.9454 45.642C66.0234 45.642 66.9754 46.076 67.5774 46.79V45.81H69.4674V54H67.5774V52.936C66.9754 53.706 65.9954 54.168 64.9174 54.168ZM65.2254 52.432C66.7094 52.432 67.6754 51.214 67.6754 49.884C67.6754 48.554 66.6954 47.364 65.2254 47.364C63.8534 47.364 62.7474 48.442 62.7474 49.884C62.7474 51.326 63.8394 52.432 65.2254 52.432ZM70.1614 47.504V45.81H71.5614V44.564L73.4654 43.262V45.81H75.1314V47.504H73.4654V50.57C73.4654 52.012 73.6894 52.222 75.1314 52.222V54H74.8654C72.3594 54 71.5614 53.202 71.5614 50.584V47.504H70.1614ZM79.7451 54.168C77.1691 54.168 75.4191 52.306 75.4191 49.926C75.4191 47.546 77.2811 45.642 79.6751 45.642C82.0971 45.642 83.8891 47.406 83.8891 49.856V50.57H77.2251C77.4911 51.732 78.4011 52.502 79.7451 52.502C80.8091 52.502 81.6211 51.942 82.0131 51.06L83.5671 51.956C82.8531 53.286 81.5791 54.168 79.7451 54.168ZM79.6751 47.308C78.5411 47.308 77.6591 47.98 77.3231 48.988H81.9711C81.6911 47.882 80.8511 47.308 79.6751 47.308ZM88.4133 54.168C86.4113 54.168 84.3813 52.572 84.3813 49.912C84.3813 47.21 86.3693 45.642 88.4413 45.642C89.5053 45.642 90.4573 46.062 91.0593 46.776V43.64H92.9633V54H91.0733V52.936C90.4713 53.706 89.4913 54.168 88.4133 54.168ZM88.7213 52.432C90.2053 52.432 91.1713 51.214 91.1713 49.884C91.1713 48.554 90.1913 47.364 88.7213 47.364C87.3493 47.364 86.2433 48.442 86.2433 49.884C86.2433 51.326 87.3353 52.432 88.7213 52.432Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32796'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-anniversary {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32800)'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%23FFAE56'/%3E%3Cg style='mix-blend-mode:multiply' opacity='0.45'%3E%3Cpath d='M76.2205 64.1194H72.3127V44.773C72.3127 42.82 70.7295 41.2368 68.7764 41.2368H29.2803C27.3273 41.2368 25.7441 42.82 25.7441 44.773V64.1194H22.8036C21.8071 64.1194 21 64.9264 21 65.923V69.7562C21 70.7527 21.8071 71.5598 22.8036 71.5598H76.2224C77.2189 71.5598 78.026 70.7527 78.026 69.7562V65.923C78.026 64.9264 77.2189 64.1194 76.2224 64.1194H76.2205Z' fill='%23EF7D02'/%3E%3C/g%3E%3Cg style='mix-blend-mode:multiply' opacity='0.45'%3E%3Cpath d='M47.3732 31.856V38.6807H51.6491V31.856C52.8133 31.5117 53.9119 30.8795 54.8319 29.9613C57.7706 27.0226 57.7706 22.2585 54.8319 19.3198L49.5121 14L44.1923 19.3198C41.2536 22.2585 41.2536 27.0226 44.1923 29.9595C45.1123 30.8795 46.2091 31.5099 47.3751 31.8542L47.3732 31.856Z' fill='%23EF7D02'/%3E%3C/g%3E%3Cpath d='M8.53906 54L12.1791 43.78H14.0971L17.7371 54H15.7491L15.1191 52.18H11.1571L10.5271 54H8.53906ZM13.1451 46.482L11.8011 50.36H14.4891L13.1451 46.482ZM18.3431 54V45.81H20.2191V46.818C20.7651 46.104 21.6051 45.642 22.6691 45.642C24.6991 45.642 25.9171 46.944 25.9171 49.142V54H23.9991V49.338C23.9991 48.064 23.3831 47.28 22.1511 47.28C21.0731 47.28 20.2331 48.064 20.2331 49.506V54H18.3431ZM26.9225 54V45.81H28.7985V46.818C29.3445 46.104 30.1845 45.642 31.2485 45.642C33.2785 45.642 34.4965 46.944 34.4965 49.142V54H32.5785V49.338C32.5785 48.064 31.9625 47.28 30.7305 47.28C29.6525 47.28 28.8125 48.064 28.8125 49.506V54H26.9225ZM35.5019 54V45.81H37.4059V54H35.5019ZM35.2639 43.808C35.2639 43.094 35.7259 42.618 36.4539 42.618C37.1959 42.618 37.6439 43.094 37.6439 43.808C37.6439 44.522 37.1959 44.984 36.4539 44.984C35.6979 44.984 35.2639 44.522 35.2639 43.808ZM41.1094 54L37.9874 45.81H39.9614L42.0754 51.578L44.1474 45.81H46.0934L43.0134 54H41.1094ZM50.1444 54.168C47.5684 54.168 45.8184 52.306 45.8184 49.926C45.8184 47.546 47.6804 45.642 50.0744 45.642C52.4964 45.642 54.2884 47.406 54.2884 49.856V50.57H47.6244C47.8904 51.732 48.8004 52.502 50.1444 52.502C51.2084 52.502 52.0204 51.942 52.4124 51.06L53.9664 51.956C53.2524 53.286 51.9784 54.168 50.1444 54.168ZM50.0744 47.308C48.9404 47.308 48.0584 47.98 47.7224 48.988H52.3704C52.0904 47.882 51.2504 47.308 50.0744 47.308ZM55.0466 54V45.81H56.9226V47.028C57.3006 46.23 58.0006 45.81 59.0226 45.81C59.6246 45.81 60.0866 45.95 60.4646 46.16L59.7506 47.952C59.4566 47.756 59.1626 47.63 58.6166 47.63C57.5106 47.63 56.9366 48.218 56.9366 49.632V54H55.0466ZM64.0126 54.168C62.2066 54.168 61.0166 53.454 60.3726 52.18L62.1226 51.34C62.5146 52.11 63.2006 52.53 64.0966 52.53C65.0346 52.53 65.4966 52.082 65.4966 51.536C65.4966 50.92 64.5026 50.808 63.5786 50.598C62.1786 50.304 60.7086 49.87 60.7086 48.134C60.7086 46.832 61.9686 45.628 63.9286 45.628C65.5666 45.628 66.6446 46.286 67.2746 47.322L65.6646 48.134C65.3286 47.56 64.7126 47.196 63.9286 47.196C63.0326 47.196 62.6126 47.616 62.6126 48.078C62.6126 48.554 63.0746 48.736 64.4886 49.03C65.8606 49.296 67.3726 49.8 67.3726 51.494C67.3726 52.642 66.3646 54.168 64.0126 54.168ZM71.8698 54.168C69.8678 54.168 67.8378 52.572 67.8378 49.912C67.8378 47.21 69.8258 45.642 71.8978 45.642C72.9758 45.642 73.9278 46.076 74.5298 46.79V45.81H76.4198V54H74.5298V52.936C73.9278 53.706 72.9478 54.168 71.8698 54.168ZM72.1778 52.432C73.6618 52.432 74.6278 51.214 74.6278 49.884C74.6278 48.554 73.6478 47.364 72.1778 47.364C70.8058 47.364 69.6998 48.442 69.6998 49.884C69.6998 51.326 70.7918 52.432 72.1778 52.432ZM77.4762 54V45.81H79.3522V47.028C79.7302 46.23 80.4302 45.81 81.4522 45.81C82.0542 45.81 82.5162 45.95 82.8942 46.16L82.1802 47.952C81.8862 47.756 81.5922 47.63 81.0462 47.63C79.9402 47.63 79.3662 48.218 79.3662 49.632V54H77.4762ZM84.7432 57.78L86.4652 53.594L83.1052 45.81H85.1212L87.4032 51.326L89.5592 45.81H91.5472L86.6612 57.78H84.7432Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32800'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-aficionado {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32806)'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%23E071FF'/%3E%3Cpath d='M50.0011 12.8242C29.4687 12.8242 12.8242 29.4687 12.8242 50.0011C12.8242 70.5334 29.4687 87.1779 50.0011 87.1779C70.5334 87.1779 87.1779 70.5334 87.1779 50.0011C87.1779 29.4687 70.5334 12.8242 50.0011 12.8242ZM72.7834 63.1549L56.4814 61.2255L50.0011 76.3087L43.5207 61.2255L27.2187 63.1549L37.0404 50.0011L27.2187 36.8472L43.5207 38.7766L50.0011 23.6934L56.4814 38.7766L72.7834 36.8472L62.9618 50.0011L72.7834 63.1549Z' fill='%23E896FF'/%3E%3Cpath d='M13.4134 54L17.0534 43.78H18.9714L22.6114 54H20.6234L19.9934 52.18H16.0314L15.4014 54H13.4134ZM18.0194 46.482L16.6754 50.36H19.3634L18.0194 46.482ZM23.3794 54V47.504H21.9934V45.81H23.3794V45.796C23.3794 43.444 24.3314 42.52 26.8094 42.52H26.9774V44.27C25.4794 44.27 25.2974 44.606 25.2974 45.796V45.81H26.9774V47.504H25.2974V54H23.3794ZM27.7754 54V45.81H29.6794V54H27.7754ZM27.5374 43.808C27.5374 43.094 27.9994 42.618 28.7274 42.618C29.4694 42.618 29.9174 43.094 29.9174 43.808C29.9174 44.522 29.4694 44.984 28.7274 44.984C27.9714 44.984 27.5374 44.522 27.5374 43.808ZM34.6794 54.168C32.2714 54.168 30.4234 52.25 30.4234 49.912C30.4234 47.504 32.2994 45.642 34.6794 45.642C36.5134 45.642 37.9554 46.692 38.5854 48.176L36.8914 48.89C36.5134 47.98 35.7014 47.42 34.6934 47.42C33.3074 47.42 32.2714 48.526 32.2714 49.912C32.2714 51.284 33.3214 52.39 34.7074 52.39C35.7714 52.39 36.5414 51.774 36.9194 50.864L38.6134 51.592C37.9694 53.104 36.5694 54.168 34.6794 54.168ZM39.2414 54V45.81H41.1454V54H39.2414ZM39.0034 43.808C39.0034 43.094 39.4654 42.618 40.1934 42.618C40.9354 42.618 41.3834 43.094 41.3834 43.808C41.3834 44.522 40.9354 44.984 40.1934 44.984C39.4374 44.984 39.0034 44.522 39.0034 43.808ZM46.1229 54.168C43.7429 54.168 41.8809 52.264 41.8809 49.912C41.8809 47.504 43.7709 45.642 46.1229 45.642C48.4889 45.642 50.3649 47.532 50.3649 49.912C50.3649 52.222 48.5449 54.168 46.1229 54.168ZM46.1229 52.39C47.4809 52.39 48.5029 51.256 48.5029 49.912C48.5029 48.554 47.4809 47.42 46.1229 47.42C44.7789 47.42 43.7429 48.512 43.7429 49.912C43.7429 51.284 44.7789 52.39 46.1229 52.39ZM51.1091 54V45.81H52.9851V46.818C53.5311 46.104 54.3711 45.642 55.4351 45.642C57.4651 45.642 58.6831 46.944 58.6831 49.142V54H56.7651V49.338C56.7651 48.064 56.1491 47.28 54.9171 47.28C53.8391 47.28 52.9991 48.064 52.9991 49.506V54H51.1091ZM63.4545 54.168C61.4525 54.168 59.4225 52.572 59.4225 49.912C59.4225 47.21 61.4105 45.642 63.4825 45.642C64.5605 45.642 65.5125 46.076 66.1145 46.79V45.81H68.0045V54H66.1145V52.936C65.5125 53.706 64.5325 54.168 63.4545 54.168ZM63.7625 52.432C65.2465 52.432 66.2125 51.214 66.2125 49.884C66.2125 48.554 65.2325 47.364 63.7625 47.364C62.3905 47.364 61.2845 48.442 61.2845 49.884C61.2845 51.326 62.3765 52.432 63.7625 52.432ZM72.7585 54.168C70.7565 54.168 68.7265 52.572 68.7265 49.912C68.7265 47.21 70.7145 45.642 72.7865 45.642C73.8505 45.642 74.8025 46.062 75.4045 46.776V43.64H77.3085V54H75.4185V52.936C74.8165 53.706 73.8365 54.168 72.7585 54.168ZM73.0665 52.432C74.5505 52.432 75.5165 51.214 75.5165 49.884C75.5165 48.554 74.5365 47.364 73.0665 47.364C71.6945 47.364 70.5885 48.442 70.5885 49.884C70.5885 51.326 71.6805 52.432 73.0665 52.432ZM82.2725 54.168C79.8925 54.168 78.0305 52.264 78.0305 49.912C78.0305 47.504 79.9205 45.642 82.2725 45.642C84.6385 45.642 86.5145 47.532 86.5145 49.912C86.5145 52.222 84.6945 54.168 82.2725 54.168ZM82.2725 52.39C83.6305 52.39 84.6525 51.256 84.6525 49.912C84.6525 48.554 83.6305 47.42 82.2725 47.42C80.9285 47.42 79.8925 48.512 79.8925 49.912C79.8925 51.284 80.9285 52.39 82.2725 52.39Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32806'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-enthusiast {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32810)'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%23B594FF'/%3E%3Cg opacity='0.8'%3E%3Cpath d='M23.2127 29.7621C40.7426 27.2498 57.7915 22.2761 75.2941 19.6089C73.2373 25.7085 71.1877 31.8099 69.1454 37.9149C76.8045 36.6287 84.4399 35.7487 92.2119 35.6394C89.9328 41.4366 87.6755 47.241 85.4346 53.0527C83.232 58.777 81.0457 64.5068 78.8704 70.2402C59.577 72.5102 40.8665 78.0632 21.5839 80.3916C24.0981 74.3976 26.5904 68.3946 29.0645 62.3843C21.992 63.4792 14.9451 64.2007 7.78516 64.2736C13.0685 52.8323 18.1898 41.32 23.2127 29.7621Z' fill='%23CBB4FF'/%3E%3C/g%3E%3Cpath d='M15.7155 54V43.78H21.7775V45.6H17.6195V47.952H21.7775V49.772H17.6195V52.18H21.7775V54H15.7155ZM22.7217 54V45.81H24.5977V46.818C25.1437 46.104 25.9837 45.642 27.0477 45.642C29.0777 45.642 30.2957 46.944 30.2957 49.142V54H28.3777V49.338C28.3777 48.064 27.7617 47.28 26.5297 47.28C25.4517 47.28 24.6117 48.064 24.6117 49.506V54H22.7217ZM30.6516 47.504V45.81H32.0516V44.564L33.9556 43.262V45.81H35.6216V47.504H33.9556V50.57C33.9556 52.012 34.1796 52.222 35.6216 52.222V54H35.3556C32.8496 54 32.0516 53.202 32.0516 50.584V47.504H30.6516ZM36.4488 54V43.64H38.3388V46.79C38.8988 46.076 39.7388 45.642 40.7888 45.642C42.8188 45.642 44.0368 46.944 44.0368 49.142V54H42.1048V49.352C42.1048 48.064 41.4888 47.28 40.2568 47.28C39.1788 47.28 38.3528 48.092 38.3528 49.506V54H36.4488ZM48.1781 54.168C46.2321 54.168 45.0281 52.866 45.0281 50.668V45.81H46.9461V50.472C46.9461 51.746 47.5061 52.53 48.6961 52.53C49.7461 52.53 50.5161 51.746 50.5161 50.304V45.81H52.4061V54H50.5301V53.062C50.0121 53.748 49.2281 54.168 48.1781 54.168ZM56.4961 54.168C54.6901 54.168 53.5001 53.454 52.8561 52.18L54.6061 51.34C54.9981 52.11 55.6841 52.53 56.5801 52.53C57.5181 52.53 57.9801 52.082 57.9801 51.536C57.9801 50.92 56.9861 50.808 56.0621 50.598C54.6621 50.304 53.1921 49.87 53.1921 48.134C53.1921 46.832 54.4521 45.628 56.4121 45.628C58.0501 45.628 59.1281 46.286 59.7581 47.322L58.1481 48.134C57.8121 47.56 57.1961 47.196 56.4121 47.196C55.5161 47.196 55.0961 47.616 55.0961 48.078C55.0961 48.554 55.5581 48.736 56.9721 49.03C58.3441 49.296 59.8561 49.8 59.8561 51.494C59.8561 52.642 58.8481 54.168 56.4961 54.168ZM60.5873 54V45.81H62.4913V54H60.5873ZM60.3493 43.808C60.3493 43.094 60.8113 42.618 61.5393 42.618C62.2813 42.618 62.7293 43.094 62.7293 43.808C62.7293 44.522 62.2813 44.984 61.5393 44.984C60.7833 44.984 60.3493 44.522 60.3493 43.808ZM67.2588 54.168C65.2568 54.168 63.2268 52.572 63.2268 49.912C63.2268 47.21 65.2148 45.642 67.2868 45.642C68.3648 45.642 69.3168 46.076 69.9188 46.79V45.81H71.8088V54H69.9188V52.936C69.3168 53.706 68.3368 54.168 67.2588 54.168ZM67.5668 52.432C69.0508 52.432 70.0168 51.214 70.0168 49.884C70.0168 48.554 69.0368 47.364 67.5668 47.364C66.1948 47.364 65.0888 48.442 65.0888 49.884C65.0888 51.326 66.1808 52.432 67.5668 52.432ZM75.8768 54.168C74.0708 54.168 72.8808 53.454 72.2368 52.18L73.9868 51.34C74.3788 52.11 75.0648 52.53 75.9608 52.53C76.8988 52.53 77.3608 52.082 77.3608 51.536C77.3608 50.92 76.3668 50.808 75.4428 50.598C74.0428 50.304 72.5728 49.87 72.5728 48.134C72.5728 46.832 73.8328 45.628 75.7928 45.628C77.4308 45.628 78.5088 46.286 79.1388 47.322L77.5288 48.134C77.1928 47.56 76.5768 47.196 75.7928 47.196C74.8968 47.196 74.4768 47.616 74.4768 48.078C74.4768 48.554 74.9388 48.736 76.3528 49.03C77.7248 49.296 79.2368 49.8 79.2368 51.494C79.2368 52.642 78.2288 54.168 75.8768 54.168ZM79.5373 47.504V45.81H80.9373V44.564L82.8413 43.262V45.81H84.5073V47.504H82.8413V50.57C82.8413 52.012 83.0653 52.222 84.5073 52.222V54H84.2413C81.7353 54 80.9373 53.202 80.9373 50.584V47.504H79.5373Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32810'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-admired {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32815)'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%233BAFFF'/%3E%3Cpath d='M23.2127 29.7621C40.7426 27.2498 57.7915 22.2761 75.2941 19.6089C73.2373 25.7085 71.1877 31.8099 69.1454 37.9149C76.8045 36.6287 84.4399 35.7487 92.2119 35.6394C89.9328 41.4366 87.6755 47.241 85.4346 53.0527C83.232 58.777 81.0457 64.5068 78.8704 70.2402C59.577 72.5102 40.8665 78.0632 21.5839 80.3916C24.0981 74.3976 26.5904 68.3946 29.0645 62.3843C21.992 63.4792 14.9451 64.2007 7.78516 64.2736C13.0685 52.8323 18.1898 41.32 23.2127 29.7621Z' fill='%231596EF'/%3E%3Cpath d='M20.6255 54L24.2655 43.78H26.1835L29.8235 54H27.8355L27.2055 52.18H23.2435L22.6135 54H20.6255ZM25.2315 46.482L23.8875 50.36H26.5755L25.2315 46.482ZM33.7718 54.168C31.7698 54.168 29.7398 52.572 29.7398 49.912C29.7398 47.21 31.7278 45.642 33.7998 45.642C34.8638 45.642 35.8158 46.062 36.4178 46.776V43.64H38.3218V54H36.4318V52.936C35.8298 53.706 34.8498 54.168 33.7718 54.168ZM34.0798 52.432C35.5638 52.432 36.5298 51.214 36.5298 49.884C36.5298 48.554 35.5498 47.364 34.0798 47.364C32.7078 47.364 31.6018 48.442 31.6018 49.884C31.6018 51.326 32.6938 52.432 34.0798 52.432ZM39.3097 54V45.81H41.1857V46.762C41.7037 46.076 42.5157 45.642 43.5237 45.642C44.8117 45.642 45.7077 46.174 46.1837 47.056C46.7437 46.202 47.6957 45.642 48.8717 45.642C51.0697 45.642 52.2037 46.944 52.2037 49.072V54H50.2717V49.226C50.2717 48.036 49.6697 47.28 48.4937 47.28C47.4717 47.28 46.6877 47.98 46.6877 49.422V54H44.7697V49.17C44.7697 47.994 44.1817 47.28 43.0477 47.28C41.9837 47.28 41.1997 48.008 41.1997 49.464V54H39.3097ZM53.1938 54V45.81H55.0978V54H53.1938ZM52.9558 43.808C52.9558 43.094 53.4178 42.618 54.1458 42.618C54.8878 42.618 55.3358 43.094 55.3358 43.808C55.3358 44.522 54.8878 44.984 54.1458 44.984C53.3898 44.984 52.9558 44.522 52.9558 43.808ZM56.0994 54V45.81H57.9754V47.028C58.3534 46.23 59.0534 45.81 60.0754 45.81C60.6774 45.81 61.1394 45.95 61.5174 46.16L60.8034 47.952C60.5094 47.756 60.2154 47.63 59.6694 47.63C58.5634 47.63 57.9894 48.218 57.9894 49.632V54H56.0994ZM65.8403 54.168C63.2643 54.168 61.5143 52.306 61.5143 49.926C61.5143 47.546 63.3763 45.642 65.7703 45.642C68.1923 45.642 69.9843 47.406 69.9843 49.856V50.57H63.3203C63.5863 51.732 64.4963 52.502 65.8403 52.502C66.9043 52.502 67.7163 51.942 68.1083 51.06L69.6623 51.956C68.9483 53.286 67.6743 54.168 65.8403 54.168ZM65.7703 47.308C64.6363 47.308 63.7543 47.98 63.4183 48.988H68.0663C67.7863 47.882 66.9463 47.308 65.7703 47.308ZM74.5085 54.168C72.5065 54.168 70.4765 52.572 70.4765 49.912C70.4765 47.21 72.4645 45.642 74.5365 45.642C75.6005 45.642 76.5525 46.062 77.1545 46.776V43.64H79.0585V54H77.1685V52.936C76.5665 53.706 75.5865 54.168 74.5085 54.168ZM74.8165 52.432C76.3005 52.432 77.2665 51.214 77.2665 49.884C77.2665 48.554 76.2865 47.364 74.8165 47.364C73.4445 47.364 72.3385 48.442 72.3385 49.884C72.3385 51.326 73.4305 52.432 74.8165 52.432Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32815'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-devotee {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32819)'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%23C0A9FF'/%3E%3Cpath d='M63.0327 16.1746L20.6562 58.551V78.085H40.192L82.5667 35.7104L63.0327 16.1746Z' fill='%23AC8EFF'/%3E%3Cpath d='M22.1656 54V43.78H24.9516C28.3676 43.78 30.3556 45.964 30.3556 48.89C30.3556 51.83 28.1156 54 25.0356 54H22.1656ZM24.7276 45.544H24.0696V52.236H24.8116C27.1356 52.236 28.4516 50.696 28.4516 48.89C28.4516 46.902 27.2476 45.544 24.7276 45.544ZM35.1732 54.168C32.5972 54.168 30.8472 52.306 30.8472 49.926C30.8472 47.546 32.7092 45.642 35.1032 45.642C37.5252 45.642 39.3172 47.406 39.3172 49.856V50.57H32.6532C32.9192 51.732 33.8292 52.502 35.1732 52.502C36.2372 52.502 37.0492 51.942 37.4412 51.06L38.9952 51.956C38.2812 53.286 37.0072 54.168 35.1732 54.168ZM35.1032 47.308C33.9692 47.308 33.0872 47.98 32.7512 48.988H37.3992C37.1192 47.882 36.2792 47.308 35.1032 47.308ZM42.2168 54L39.0948 45.81H41.0688L43.1828 51.578L45.2548 45.81H47.2008L44.1208 54H42.2168ZM51.1679 54.168C48.7879 54.168 46.9259 52.264 46.9259 49.912C46.9259 47.504 48.8159 45.642 51.1679 45.642C53.5339 45.642 55.4099 47.532 55.4099 49.912C55.4099 52.222 53.5899 54.168 51.1679 54.168ZM51.1679 52.39C52.5259 52.39 53.5479 51.256 53.5479 49.912C53.5479 48.554 52.5259 47.42 51.1679 47.42C49.8239 47.42 48.7879 48.512 48.7879 49.912C48.7879 51.284 49.8239 52.39 51.1679 52.39ZM55.4362 47.504V45.81H56.8362V44.564L58.7402 43.262V45.81H60.4062V47.504H58.7402V50.57C58.7402 52.012 58.9642 52.222 60.4062 52.222V54H60.1402C57.6342 54 56.8362 53.202 56.8362 50.584V47.504H55.4362ZM65.02 54.168C62.444 54.168 60.694 52.306 60.694 49.926C60.694 47.546 62.556 45.642 64.95 45.642C67.372 45.642 69.164 47.406 69.164 49.856V50.57H62.5C62.766 51.732 63.676 52.502 65.02 52.502C66.084 52.502 66.896 51.942 67.288 51.06L68.842 51.956C68.128 53.286 66.854 54.168 65.02 54.168ZM64.95 47.308C63.816 47.308 62.934 47.98 62.598 48.988H67.246C66.966 47.882 66.126 47.308 64.95 47.308ZM73.9822 54.168C71.4062 54.168 69.6562 52.306 69.6562 49.926C69.6562 47.546 71.5182 45.642 73.9122 45.642C76.3342 45.642 78.1262 47.406 78.1262 49.856V50.57H71.4622C71.7282 51.732 72.6382 52.502 73.9822 52.502C75.0462 52.502 75.8582 51.942 76.2502 51.06L77.8042 51.956C77.0902 53.286 75.8162 54.168 73.9822 54.168ZM73.9122 47.308C72.7782 47.308 71.8962 47.98 71.5602 48.988H76.2082C75.9282 47.882 75.0882 47.308 73.9122 47.308Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32819'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-respected {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32823)'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%2321BB83'/%3E%3Cpath d='M39.8456 37.4174L53.0194 16.4387C54.1435 14.6442 56.7251 14.5476 57.9804 16.2547C60.6348 19.8638 61.4929 24.4877 60.3123 28.8073L58.137 36.7597H70.154C74.5283 36.7597 77.8313 40.7241 77.0406 45.0255L72.905 67.5692C72.3694 70.4896 69.8243 72.6102 66.8546 72.6102H39.8438V37.4174H39.8456Z' fill='%232AD497'/%3E%3Cpath d='M35.0634 37.4174H24.0977V72.6102H35.0634V37.4174Z' fill='%232AD497'/%3E%3Cpath d='M14.1478 54V43.78H17.4238C19.8318 43.78 21.2458 45.222 21.2458 47.336C21.2458 48.568 20.6298 49.73 19.5238 50.318L21.5678 54H19.3978L17.7598 50.878H16.0518V54H14.1478ZM17.2558 49.128C18.7958 49.128 19.3418 48.302 19.3418 47.266C19.3418 46.216 18.7118 45.558 17.2558 45.558H16.0518V49.128H17.2558ZM25.6241 54.168C23.0481 54.168 21.2981 52.306 21.2981 49.926C21.2981 47.546 23.1601 45.642 25.5541 45.642C27.9761 45.642 29.7681 47.406 29.7681 49.856V50.57H23.1041C23.3701 51.732 24.2801 52.502 25.6241 52.502C26.6881 52.502 27.5001 51.942 27.8921 51.06L29.4461 51.956C28.7321 53.286 27.4581 54.168 25.6241 54.168ZM25.5541 47.308C24.4201 47.308 23.5381 47.98 23.2021 48.988H27.8501C27.5701 47.882 26.7301 47.308 25.5541 47.308ZM33.6063 54.168C31.8003 54.168 30.6103 53.454 29.9663 52.18L31.7163 51.34C32.1083 52.11 32.7943 52.53 33.6903 52.53C34.6283 52.53 35.0903 52.082 35.0903 51.536C35.0903 50.92 34.0963 50.808 33.1723 50.598C31.7723 50.304 30.3023 49.87 30.3023 48.134C30.3023 46.832 31.5623 45.628 33.5223 45.628C35.1603 45.628 36.2383 46.286 36.8683 47.322L35.2583 48.134C34.9223 47.56 34.3063 47.196 33.5223 47.196C32.6263 47.196 32.2063 47.616 32.2063 48.078C32.2063 48.554 32.6683 48.736 34.0823 49.03C35.4543 49.296 36.9663 49.8 36.9663 51.494C36.9663 52.642 35.9583 54.168 33.6063 54.168ZM42.2474 54.168C41.1274 54.168 40.1614 53.776 39.5734 53.034V57.766H37.6974V45.81H39.5734V46.902C40.1474 46.146 41.1134 45.642 42.2334 45.642C44.2914 45.642 46.2654 47.21 46.2654 49.912C46.2654 52.6 44.2214 54.168 42.2474 54.168ZM41.9394 52.432C43.3394 52.432 44.4034 51.298 44.4034 49.884C44.4034 48.456 43.3114 47.364 41.9394 47.364C40.5254 47.364 39.5034 48.484 39.5034 49.884C39.5034 51.298 40.5114 52.432 41.9394 52.432ZM51.0888 54.168C48.5128 54.168 46.7628 52.306 46.7628 49.926C46.7628 47.546 48.6248 45.642 51.0188 45.642C53.4408 45.642 55.2328 47.406 55.2328 49.856V50.57H48.5688C48.8348 51.732 49.7448 52.502 51.0888 52.502C52.1528 52.502 52.9648 51.942 53.3568 51.06L54.9108 51.956C54.1968 53.286 52.9228 54.168 51.0888 54.168ZM51.0188 47.308C49.8848 47.308 49.0028 47.98 48.6668 48.988H53.3148C53.0348 47.882 52.1948 47.308 51.0188 47.308ZM59.981 54.168C57.573 54.168 55.725 52.25 55.725 49.912C55.725 47.504 57.601 45.642 59.981 45.642C61.815 45.642 63.257 46.692 63.887 48.176L62.193 48.89C61.815 47.98 61.003 47.42 59.995 47.42C58.609 47.42 57.573 48.526 57.573 49.912C57.573 51.284 58.623 52.39 60.009 52.39C61.073 52.39 61.843 51.774 62.221 50.864L63.915 51.592C63.271 53.104 61.871 54.168 59.981 54.168ZM64.1123 47.504V45.81H65.5123V44.564L67.4163 43.262V45.81H69.0823V47.504H67.4163V50.57C67.4163 52.012 67.6403 52.222 69.0823 52.222V54H68.8163C66.3103 54 65.5123 53.202 65.5123 50.584V47.504H64.1123ZM73.696 54.168C71.12 54.168 69.37 52.306 69.37 49.926C69.37 47.546 71.232 45.642 73.626 45.642C76.048 45.642 77.84 47.406 77.84 49.856V50.57H71.176C71.442 51.732 72.352 52.502 73.696 52.502C74.76 52.502 75.572 51.942 75.964 51.06L77.518 51.956C76.804 53.286 75.53 54.168 73.696 54.168ZM73.626 47.308C72.492 47.308 71.61 47.98 71.274 48.988H75.922C75.642 47.882 74.802 47.308 73.626 47.308ZM82.3642 54.168C80.3622 54.168 78.3322 52.572 78.3322 49.912C78.3322 47.21 80.3202 45.642 82.3922 45.642C83.4562 45.642 84.4082 46.062 85.0102 46.776V43.64H86.9142V54H85.0242V52.936C84.4222 53.706 83.4422 54.168 82.3642 54.168ZM82.6722 52.432C84.1562 52.432 85.1222 51.214 85.1222 49.884C85.1222 48.554 84.1422 47.364 82.6722 47.364C81.3002 47.364 80.1942 48.442 80.1942 49.884C80.1942 51.326 81.2862 52.432 82.6722 52.432Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32823'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-greattopic {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32829)'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%23FF8FB4'/%3E%3Cpath d='M27.4492 22.7861V66.345H50.0002V83.3812L72.5493 66.345V22.7861H27.4492Z' fill='%23FFA7C5'/%3E%3Cpath d='M15.7136 54.14C12.5216 54.14 10.4076 51.732 10.4076 48.89C10.4076 45.992 12.6056 43.64 15.6296 43.64C17.7716 43.64 19.4236 44.732 20.2776 46.258L18.5976 47.266C17.9536 46.076 16.9876 45.488 15.6436 45.488C13.7816 45.488 12.2976 46.986 12.2976 48.89C12.2976 50.78 13.7256 52.292 15.7136 52.292C17.2396 52.292 18.2896 51.438 18.6676 50.08H15.4056V48.26H20.7116V49.016C20.7116 51.774 18.7796 54.14 15.7136 54.14ZM21.5492 54V45.81H23.4252V47.028C23.8032 46.23 24.5032 45.81 25.5252 45.81C26.1272 45.81 26.5892 45.95 26.9672 46.16L26.2532 47.952C25.9592 47.756 25.6652 47.63 25.1192 47.63C24.0132 47.63 23.4392 48.218 23.4392 49.632V54H21.5492ZM31.2901 54.168C28.7141 54.168 26.9641 52.306 26.9641 49.926C26.9641 47.546 28.8261 45.642 31.2201 45.642C33.6421 45.642 35.4341 47.406 35.4341 49.856V50.57H28.7701C29.0361 51.732 29.9461 52.502 31.2901 52.502C32.3541 52.502 33.1661 51.942 33.5581 51.06L35.1121 51.956C34.3981 53.286 33.1241 54.168 31.2901 54.168ZM31.2201 47.308C30.0861 47.308 29.2041 47.98 28.8681 48.988H33.5161C33.2361 47.882 32.3961 47.308 31.2201 47.308ZM39.9583 54.168C37.9563 54.168 35.9263 52.572 35.9263 49.912C35.9263 47.21 37.9143 45.642 39.9863 45.642C41.0643 45.642 42.0163 46.076 42.6183 46.79V45.81H44.5083V54H42.6183V52.936C42.0163 53.706 41.0363 54.168 39.9583 54.168ZM40.2663 52.432C41.7503 52.432 42.7163 51.214 42.7163 49.884C42.7163 48.554 41.7363 47.364 40.2663 47.364C38.8943 47.364 37.7883 48.442 37.7883 49.884C37.7883 51.326 38.8803 52.432 40.2663 52.432ZM45.2023 47.504V45.81H46.6023V44.564L48.5063 43.262V45.81H50.1723V47.504H48.5063V50.57C48.5063 52.012 48.7303 52.222 50.1723 52.222V54H49.9063C47.4003 54 46.6023 53.202 46.6023 50.584V47.504H45.2023ZM56.8905 54V45.6H54.1605V43.78H61.5385V45.6H58.7945V54H56.8905ZM64.6557 54.168C62.2757 54.168 60.4137 52.264 60.4137 49.912C60.4137 47.504 62.3037 45.642 64.6557 45.642C67.0217 45.642 68.8977 47.532 68.8977 49.912C68.8977 52.222 67.0777 54.168 64.6557 54.168ZM64.6557 52.39C66.0137 52.39 67.0357 51.256 67.0357 49.912C67.0357 48.554 66.0137 47.42 64.6557 47.42C63.3117 47.42 62.2757 48.512 62.2757 49.912C62.2757 51.284 63.3117 52.39 64.6557 52.39ZM74.1919 54.168C73.0719 54.168 72.1059 53.776 71.5179 53.034V57.766H69.6419V45.81H71.5179V46.902C72.0919 46.146 73.0579 45.642 74.1779 45.642C76.2359 45.642 78.2099 47.21 78.2099 49.912C78.2099 52.6 76.1659 54.168 74.1919 54.168ZM73.8839 52.432C75.2839 52.432 76.3479 51.298 76.3479 49.884C76.3479 48.456 75.2559 47.364 73.8839 47.364C72.4699 47.364 71.4479 48.484 71.4479 49.884C71.4479 51.298 72.4559 52.432 73.8839 52.432ZM78.9049 54V45.81H80.8089V54H78.9049ZM78.6669 43.808C78.6669 43.094 79.1289 42.618 79.8569 42.618C80.5989 42.618 81.0469 43.094 81.0469 43.808C81.0469 44.522 80.5989 44.984 79.8569 44.984C79.1009 44.984 78.6669 44.522 78.6669 43.808ZM85.8004 54.168C83.3924 54.168 81.5444 52.25 81.5444 49.912C81.5444 47.504 83.4204 45.642 85.8004 45.642C87.6344 45.642 89.0764 46.692 89.7064 48.176L88.0124 48.89C87.6344 47.98 86.8224 47.42 85.8144 47.42C84.4284 47.42 83.3924 48.526 83.3924 49.912C83.3924 51.284 84.4424 52.39 85.8284 52.39C86.8924 52.39 87.6624 51.774 88.0404 50.864L89.7344 51.592C89.0904 53.104 87.6904 54.168 85.8004 54.168Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32829'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-goodtopic {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32833)'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%233ADC5D'/%3E%3Cpath d='M27.4492 22.7861V66.345H50.0002V83.3812L72.5493 66.345V22.7861H27.4492Z' fill='%2349EC6C'/%3E%3Cpath d='M16.722 54.14C13.53 54.14 11.416 51.732 11.416 48.89C11.416 45.992 13.614 43.64 16.638 43.64C18.78 43.64 20.432 44.732 21.286 46.258L19.606 47.266C18.962 46.076 17.996 45.488 16.652 45.488C14.79 45.488 13.306 46.986 13.306 48.89C13.306 50.78 14.734 52.292 16.722 52.292C18.248 52.292 19.298 51.438 19.676 50.08H16.414V48.26H21.72V49.016C21.72 51.774 19.788 54.14 16.722 54.14ZM26.602 54.168C24.222 54.168 22.36 52.264 22.36 49.912C22.36 47.504 24.25 45.642 26.602 45.642C28.968 45.642 30.844 47.532 30.844 49.912C30.844 52.222 29.024 54.168 26.602 54.168ZM26.602 52.39C27.96 52.39 28.982 51.256 28.982 49.912C28.982 48.554 27.96 47.42 26.602 47.42C25.258 47.42 24.222 48.512 24.222 49.912C24.222 51.284 25.258 52.39 26.602 52.39ZM35.6325 54.168C33.2525 54.168 31.3905 52.264 31.3905 49.912C31.3905 47.504 33.2805 45.642 35.6325 45.642C37.9985 45.642 39.8745 47.532 39.8745 49.912C39.8745 52.222 38.0545 54.168 35.6325 54.168ZM35.6325 52.39C36.9905 52.39 38.0125 51.256 38.0125 49.912C38.0125 48.554 36.9905 47.42 35.6325 47.42C34.2885 47.42 33.2525 48.512 33.2525 49.912C33.2525 51.284 34.2885 52.39 35.6325 52.39ZM44.453 54.168C42.451 54.168 40.421 52.572 40.421 49.912C40.421 47.21 42.409 45.642 44.481 45.642C45.545 45.642 46.497 46.062 47.099 46.776V43.64H49.003V54H47.113V52.936C46.511 53.706 45.531 54.168 44.453 54.168ZM44.761 52.432C46.245 52.432 47.211 51.214 47.211 49.884C47.211 48.554 46.231 47.364 44.761 47.364C43.389 47.364 42.283 48.442 42.283 49.884C42.283 51.326 43.375 52.432 44.761 52.432ZM55.8821 54V45.6H53.1521V43.78H60.5301V45.6H57.7861V54H55.8821ZM63.6473 54.168C61.2673 54.168 59.4053 52.264 59.4053 49.912C59.4053 47.504 61.2953 45.642 63.6473 45.642C66.0133 45.642 67.8893 47.532 67.8893 49.912C67.8893 52.222 66.0693 54.168 63.6473 54.168ZM63.6473 52.39C65.0053 52.39 66.0273 51.256 66.0273 49.912C66.0273 48.554 65.0053 47.42 63.6473 47.42C62.3033 47.42 61.2673 48.512 61.2673 49.912C61.2673 51.284 62.3033 52.39 63.6473 52.39ZM73.1835 54.168C72.0635 54.168 71.0975 53.776 70.5095 53.034V57.766H68.6335V45.81H70.5095V46.902C71.0835 46.146 72.0495 45.642 73.1695 45.642C75.2275 45.642 77.2015 47.21 77.2015 49.912C77.2015 52.6 75.1575 54.168 73.1835 54.168ZM72.8755 52.432C74.2755 52.432 75.3395 51.298 75.3395 49.884C75.3395 48.456 74.2475 47.364 72.8755 47.364C71.4615 47.364 70.4395 48.484 70.4395 49.884C70.4395 51.298 71.4475 52.432 72.8755 52.432ZM77.8964 54V45.81H79.8004V54H77.8964ZM77.6584 43.808C77.6584 43.094 78.1204 42.618 78.8484 42.618C79.5904 42.618 80.0384 43.094 80.0384 43.808C80.0384 44.522 79.5904 44.984 78.8484 44.984C78.0924 44.984 77.6584 44.522 77.6584 43.808ZM84.792 54.168C82.384 54.168 80.536 52.25 80.536 49.912C80.536 47.504 82.412 45.642 84.792 45.642C86.626 45.642 88.068 46.692 88.698 48.176L87.004 48.89C86.626 47.98 85.814 47.42 84.806 47.42C83.42 47.42 82.384 48.526 82.384 49.912C82.384 51.284 83.434 52.39 84.82 52.39C85.884 52.39 86.654 51.774 87.032 50.864L88.726 51.592C88.082 53.104 86.682 54.168 84.792 54.168Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32833'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-nicetopic {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32837)'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%236ACECC'/%3E%3Cpath d='M27.4492 22.7861V66.345H50.0002V83.3812L72.5493 66.345V22.7861H27.4492Z' fill='%232BBCB1'/%3E%3Cpath d='M15.9001 54V43.78H18.0561L22.4801 50.738V43.78H24.3841V54H22.3541L17.8041 46.818V54H15.9001ZM25.4355 54V45.81H27.3395V54H25.4355ZM25.1975 43.808C25.1975 43.094 25.6595 42.618 26.3875 42.618C27.1295 42.618 27.5775 43.094 27.5775 43.808C27.5775 44.522 27.1295 44.984 26.3875 44.984C25.6315 44.984 25.1975 44.522 25.1975 43.808ZM32.3311 54.168C29.9231 54.168 28.0751 52.25 28.0751 49.912C28.0751 47.504 29.9511 45.642 32.3311 45.642C34.1651 45.642 35.6071 46.692 36.2371 48.176L34.5431 48.89C34.1651 47.98 33.3531 47.42 32.3451 47.42C30.9591 47.42 29.9231 48.526 29.9231 49.912C29.9231 51.284 30.9731 52.39 32.3591 52.39C33.4231 52.39 34.1931 51.774 34.5711 50.864L36.2651 51.592C35.6211 53.104 34.2211 54.168 32.3311 54.168ZM40.8847 54.168C38.3087 54.168 36.5587 52.306 36.5587 49.926C36.5587 47.546 38.4207 45.642 40.8147 45.642C43.2367 45.642 45.0287 47.406 45.0287 49.856V50.57H38.3647C38.6307 51.732 39.5407 52.502 40.8847 52.502C41.9487 52.502 42.7607 51.942 43.1527 51.06L44.7067 51.956C43.9927 53.286 42.7187 54.168 40.8847 54.168ZM40.8147 47.308C39.6807 47.308 38.7987 47.98 38.4627 48.988H43.1107C42.8307 47.882 41.9907 47.308 40.8147 47.308ZM51.678 54V45.6H48.948V43.78H56.326V45.6H53.582V54H51.678ZM59.4432 54.168C57.0632 54.168 55.2012 52.264 55.2012 49.912C55.2012 47.504 57.0912 45.642 59.4432 45.642C61.8092 45.642 63.6852 47.532 63.6852 49.912C63.6852 52.222 61.8652 54.168 59.4432 54.168ZM59.4432 52.39C60.8012 52.39 61.8232 51.256 61.8232 49.912C61.8232 48.554 60.8012 47.42 59.4432 47.42C58.0992 47.42 57.0632 48.512 57.0632 49.912C57.0632 51.284 58.0992 52.39 59.4432 52.39ZM68.9794 54.168C67.8594 54.168 66.8934 53.776 66.3054 53.034V57.766H64.4294V45.81H66.3054V46.902C66.8794 46.146 67.8454 45.642 68.9654 45.642C71.0234 45.642 72.9974 47.21 72.9974 49.912C72.9974 52.6 70.9534 54.168 68.9794 54.168ZM68.6714 52.432C70.0714 52.432 71.1354 51.298 71.1354 49.884C71.1354 48.456 70.0434 47.364 68.6714 47.364C67.2574 47.364 66.2354 48.484 66.2354 49.884C66.2354 51.298 67.2434 52.432 68.6714 52.432ZM73.6923 54V45.81H75.5963V54H73.6923ZM73.4543 43.808C73.4543 43.094 73.9163 42.618 74.6443 42.618C75.3863 42.618 75.8343 43.094 75.8343 43.808C75.8343 44.522 75.3863 44.984 74.6443 44.984C73.8883 44.984 73.4543 44.522 73.4543 43.808ZM80.5879 54.168C78.1799 54.168 76.3319 52.25 76.3319 49.912C76.3319 47.504 78.2079 45.642 80.5879 45.642C82.4219 45.642 83.8639 46.692 84.4939 48.176L82.7999 48.89C82.4219 47.98 81.6099 47.42 80.6019 47.42C79.2159 47.42 78.1799 48.526 78.1799 49.912C78.1799 51.284 79.2299 52.39 80.6159 52.39C81.6799 52.39 82.4499 51.774 82.8279 50.864L84.5219 51.592C83.8779 53.104 82.4779 54.168 80.5879 54.168Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32837'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-popularlink {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32841)'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%2388CDF5'/%3E%3Cg opacity='0.85'%3E%3Cpath d='M12.9805 52.1764C12.9805 30.3688 28.2076 12.981 51.9792 12.981C75.7508 12.981 86.6564 28.5997 86.6564 45.3007C86.6564 58.3653 79.3872 66.8132 69.6621 66.8132C63.9652 66.8132 60.1338 64.4557 57.8747 61.4096C55.4188 64.6507 51.2923 66.7149 45.9889 66.7149C37.4426 66.7149 30.2717 61.3112 30.2717 50.5058C30.2717 39.7003 37.5409 31.3508 47.9547 31.3508C52.1796 31.3508 55.4207 32.8246 57.483 34.9854L57.8765 31.9392H68.3868L66.5213 49.7206C66.0294 54.5339 67.0132 56.3995 69.9591 56.3995C73.5937 56.3995 76.0496 50.8993 76.0496 44.4153C76.0496 31.9392 66.5213 23.2945 50.999 23.2945C35.4768 23.2945 23.591 35.4754 23.591 52.1746C23.591 65.7311 31.7438 76.4381 47.9529 76.4381C57.7763 76.4381 64.3587 73.197 69.367 67.7934L77.3249 74.3758C70.6441 81.8417 60.919 86.6551 47.8545 86.6551C25.2598 86.6551 12.9805 72.215 12.9805 52.1746V52.1764ZM56.399 48.0499C56.399 43.7285 53.5496 40.7807 49.3265 40.7807C44.1197 40.7807 40.977 44.8088 40.977 49.6222C40.977 53.9436 43.9247 56.793 48.3446 56.793C52.7644 56.793 56.399 53.4535 56.399 48.0499Z' fill='%235CBAEA'/%3E%3C/g%3E%3Cpath d='M9.83049 54V43.78H13.3305C15.4445 43.78 17.0125 45.404 17.0125 47.42C17.0125 49.436 15.4445 51.074 13.3165 51.074H11.7345V54H9.83049ZM13.1905 45.544H11.7345V49.31H13.1905C14.2825 49.31 15.0945 48.498 15.0945 47.42C15.0945 46.37 14.3105 45.544 13.1905 45.544ZM21.5372 54.168C19.1572 54.168 17.2952 52.264 17.2952 49.912C17.2952 47.504 19.1852 45.642 21.5372 45.642C23.9032 45.642 25.7792 47.532 25.7792 49.912C25.7792 52.222 23.9592 54.168 21.5372 54.168ZM21.5372 52.39C22.8952 52.39 23.9172 51.256 23.9172 49.912C23.9172 48.554 22.8952 47.42 21.5372 47.42C20.1932 47.42 19.1572 48.512 19.1572 49.912C19.1572 51.284 20.1932 52.39 21.5372 52.39ZM31.0734 54.168C29.9534 54.168 28.9874 53.776 28.3994 53.034V57.766H26.5234V45.81H28.3994V46.902C28.9734 46.146 29.9394 45.642 31.0594 45.642C33.1174 45.642 35.0914 47.21 35.0914 49.912C35.0914 52.6 33.0474 54.168 31.0734 54.168ZM30.7654 52.432C32.1654 52.432 33.2294 51.298 33.2294 49.884C33.2294 48.456 32.1374 47.364 30.7654 47.364C29.3514 47.364 28.3294 48.484 28.3294 49.884C28.3294 51.298 29.3374 52.432 30.7654 52.432ZM38.9364 54.168C36.9904 54.168 35.7864 52.866 35.7864 50.668V45.81H37.7044V50.472C37.7044 51.746 38.2644 52.53 39.4544 52.53C40.5044 52.53 41.2744 51.746 41.2744 50.304V45.81H43.1644V54H41.2884V53.062C40.7704 53.748 39.9864 54.168 38.9364 54.168ZM44.1744 54V43.64H46.0784V54H44.1744ZM50.8459 54.168C48.8439 54.168 46.8139 52.572 46.8139 49.912C46.8139 47.21 48.8019 45.642 50.8739 45.642C51.9519 45.642 52.9039 46.076 53.5059 46.79V45.81H55.3959V54H53.5059V52.936C52.9039 53.706 51.9239 54.168 50.8459 54.168ZM51.1539 52.432C52.6379 52.432 53.6039 51.214 53.6039 49.884C53.6039 48.554 52.6239 47.364 51.1539 47.364C49.7819 47.364 48.6759 48.442 48.6759 49.884C48.6759 51.326 49.7679 52.432 51.1539 52.432ZM56.4522 54V45.81H58.3282V47.028C58.7062 46.23 59.4062 45.81 60.4282 45.81C61.0302 45.81 61.4922 45.95 61.8702 46.16L61.1562 47.952C60.8622 47.756 60.5682 47.63 60.0222 47.63C58.9162 47.63 58.3422 48.218 58.3422 49.632V54H56.4522ZM65.7917 54V43.78H67.6957V52.18H71.4337V54H65.7917ZM72.4013 54V45.81H74.3053V54H72.4013ZM72.1633 43.808C72.1633 43.094 72.6253 42.618 73.3533 42.618C74.0953 42.618 74.5433 43.094 74.5433 43.808C74.5433 44.522 74.0953 44.984 73.3533 44.984C72.5973 44.984 72.1633 44.522 72.1633 43.808ZM75.3068 54V45.81H77.1828V46.818C77.7288 46.104 78.5688 45.642 79.6328 45.642C81.6628 45.642 82.8808 46.944 82.8808 49.142V54H80.9628V49.338C80.9628 48.064 80.3468 47.28 79.1148 47.28C78.0368 47.28 77.1968 48.064 77.1968 49.506V54H75.3068ZM83.8862 54V43.64H85.7762V49.758L89.2622 45.81H91.5302L88.3662 49.352L91.6422 54H89.5282L87.0782 50.472L85.7762 51.914V54H83.8862Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32841'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-hotlink {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32846)'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%23FF6775'/%3E%3Cpath d='M12.9805 52.1764C12.9805 30.3688 28.2076 12.981 51.9792 12.981C75.7508 12.981 86.6564 28.5997 86.6564 45.3007C86.6564 58.3653 79.3872 66.8132 69.6621 66.8132C63.9652 66.8132 60.1338 64.4557 57.8747 61.4096C55.4188 64.6507 51.2923 66.7149 45.9889 66.7149C37.4426 66.7149 30.2717 61.3112 30.2717 50.5058C30.2717 39.7003 37.5409 31.3508 47.9547 31.3508C52.1796 31.3508 55.4207 32.8246 57.483 34.9854L57.8765 31.9392H68.3868L66.5213 49.7206C66.0294 54.5339 67.0132 56.3995 69.9591 56.3995C73.5937 56.3995 76.0496 50.8993 76.0496 44.4153C76.0496 31.9392 66.5213 23.2945 50.999 23.2945C35.4768 23.2945 23.591 35.4754 23.591 52.1746C23.591 65.7311 31.7438 76.4381 47.9529 76.4381C57.7763 76.4381 64.3587 73.197 69.367 67.7934L77.3249 74.3758C70.6441 81.8417 60.919 86.6551 47.8545 86.6551C25.2598 86.6551 12.9805 72.215 12.9805 52.1746V52.1764ZM56.399 48.0499C56.399 43.7285 53.5496 40.7807 49.3265 40.7807C44.1197 40.7807 40.977 44.8088 40.977 49.6222C40.977 53.9436 43.9247 56.793 48.3446 56.793C52.7644 56.793 56.399 53.4535 56.399 48.0499Z' fill='%23F14D5D'/%3E%3Cpath d='M30.53 54V49.786H26.61V54H24.706V43.78H26.61V47.966H30.53V43.78H32.434V54H30.53ZM37.4655 54.168C35.0855 54.168 33.2235 52.264 33.2235 49.912C33.2235 47.504 35.1135 45.642 37.4655 45.642C39.8315 45.642 41.7075 47.532 41.7075 49.912C41.7075 52.222 39.8875 54.168 37.4655 54.168ZM37.4655 52.39C38.8235 52.39 39.8455 51.256 39.8455 49.912C39.8455 48.554 38.8235 47.42 37.4655 47.42C36.1215 47.42 35.0855 48.512 35.0855 49.912C35.0855 51.284 36.1215 52.39 37.4655 52.39ZM41.7339 47.504V45.81H43.1339V44.564L45.0379 43.262V45.81H46.7039V47.504H45.0379V50.57C45.0379 52.012 45.2619 52.222 46.7039 52.222V54H46.4379C43.9319 54 43.1339 53.202 43.1339 50.584V47.504H41.7339ZM50.9161 54V43.78H52.8201V52.18H56.5581V54H50.9161ZM57.5258 54V45.81H59.4298V54H57.5258ZM57.2878 43.808C57.2878 43.094 57.7498 42.618 58.4778 42.618C59.2198 42.618 59.6678 43.094 59.6678 43.808C59.6678 44.522 59.2198 44.984 58.4778 44.984C57.7218 44.984 57.2878 44.522 57.2878 43.808ZM60.4313 54V45.81H62.3073V46.818C62.8533 46.104 63.6933 45.642 64.7573 45.642C66.7873 45.642 68.0053 46.944 68.0053 49.142V54H66.0873V49.338C66.0873 48.064 65.4713 47.28 64.2393 47.28C63.1613 47.28 62.3213 48.064 62.3213 49.506V54H60.4313ZM69.0107 54V43.64H70.9007V49.758L74.3867 45.81H76.6547L73.4907 49.352L76.7667 54H74.6527L72.2027 50.472L70.9007 51.914V54H69.0107Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32846'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-famouslink {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32850)'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%2368E6E4'/%3E%3Cpath d='M12.9805 52.1764C12.9805 30.3688 28.2076 12.981 51.9792 12.981C75.7508 12.981 86.6564 28.5997 86.6564 45.3007C86.6564 58.3653 79.3872 66.8132 69.6621 66.8132C63.9652 66.8132 60.1338 64.4557 57.8747 61.4096C55.4188 64.6507 51.2923 66.7149 45.9889 66.7149C37.4426 66.7149 30.2717 61.3112 30.2717 50.5058C30.2717 39.7003 37.5409 31.3508 47.9547 31.3508C52.1796 31.3508 55.4207 32.8246 57.483 34.9854L57.8765 31.9392H68.3868L66.5213 49.7206C66.0294 54.5339 67.0132 56.3995 69.9591 56.3995C73.5937 56.3995 76.0496 50.8993 76.0496 44.4153C76.0496 31.9392 66.5213 23.2945 50.999 23.2945C35.4768 23.2945 23.591 35.4754 23.591 52.1746C23.591 65.7311 31.7438 76.4381 47.9529 76.4381C57.7763 76.4381 64.3587 73.197 69.367 67.7934L77.3249 74.3758C70.6441 81.8417 60.919 86.6551 47.8545 86.6551C25.2598 86.6551 12.9805 72.215 12.9805 52.1746V52.1764ZM56.399 48.0499C56.399 43.7285 53.5496 40.7807 49.3265 40.7807C44.1197 40.7807 40.977 44.8088 40.977 49.6222C40.977 53.9436 43.9247 56.793 48.3446 56.793C52.7644 56.793 56.399 53.4535 56.399 48.0499Z' fill='%2331D4D2'/%3E%3Cpath d='M8.89069 54V43.78H14.6727V45.6H10.7947V47.952H14.6727V49.772H10.7947V54H8.89069ZM19.3347 54.168C17.3327 54.168 15.3027 52.572 15.3027 49.912C15.3027 47.21 17.2907 45.642 19.3627 45.642C20.4407 45.642 21.3927 46.076 21.9947 46.79V45.81H23.8847V54H21.9947V52.936C21.3927 53.706 20.4127 54.168 19.3347 54.168ZM19.6427 52.432C21.1267 52.432 22.0927 51.214 22.0927 49.884C22.0927 48.554 21.1127 47.364 19.6427 47.364C18.2707 47.364 17.1647 48.442 17.1647 49.884C17.1647 51.326 18.2567 52.432 19.6427 52.432ZM24.941 54V45.81H26.817V46.762C27.335 46.076 28.147 45.642 29.155 45.642C30.443 45.642 31.339 46.174 31.815 47.056C32.375 46.202 33.327 45.642 34.503 45.642C36.701 45.642 37.835 46.944 37.835 49.072V54H35.903V49.226C35.903 48.036 35.301 47.28 34.125 47.28C33.103 47.28 32.319 47.98 32.319 49.422V54H30.401V49.17C30.401 47.994 29.813 47.28 28.679 47.28C27.615 47.28 26.831 48.008 26.831 49.464V54H24.941ZM42.8011 54.168C40.4211 54.168 38.5591 52.264 38.5591 49.912C38.5591 47.504 40.4491 45.642 42.8011 45.642C45.1671 45.642 47.0431 47.532 47.0431 49.912C47.0431 52.222 45.2231 54.168 42.8011 54.168ZM42.8011 52.39C44.1591 52.39 45.1811 51.256 45.1811 49.912C45.1811 48.554 44.1591 47.42 42.8011 47.42C41.4571 47.42 40.4211 48.512 40.4211 49.912C40.4211 51.284 41.4571 52.39 42.8011 52.39ZM50.9373 54.168C48.9913 54.168 47.7873 52.866 47.7873 50.668V45.81H49.7053V50.472C49.7053 51.746 50.2653 52.53 51.4553 52.53C52.5053 52.53 53.2753 51.746 53.2753 50.304V45.81H55.1653V54H53.2893V53.062C52.7713 53.748 51.9873 54.168 50.9373 54.168ZM59.2553 54.168C57.4493 54.168 56.2593 53.454 55.6153 52.18L57.3653 51.34C57.7573 52.11 58.4433 52.53 59.3393 52.53C60.2773 52.53 60.7393 52.082 60.7393 51.536C60.7393 50.92 59.7453 50.808 58.8213 50.598C57.4213 50.304 55.9513 49.87 55.9513 48.134C55.9513 46.832 57.2113 45.628 59.1713 45.628C60.8093 45.628 61.8873 46.286 62.5173 47.322L60.9073 48.134C60.5713 47.56 59.9553 47.196 59.1713 47.196C58.2753 47.196 57.8553 47.616 57.8553 48.078C57.8553 48.554 58.3173 48.736 59.7313 49.03C61.1033 49.296 62.6153 49.8 62.6153 51.494C62.6153 52.642 61.6073 54.168 59.2553 54.168ZM66.7315 54V43.78H68.6355V52.18H72.3735V54H66.7315ZM73.3411 54V45.81H75.2451V54H73.3411ZM73.1031 43.808C73.1031 43.094 73.5651 42.618 74.2931 42.618C75.0351 42.618 75.4831 43.094 75.4831 43.808C75.4831 44.522 75.0351 44.984 74.2931 44.984C73.5371 44.984 73.1031 44.522 73.1031 43.808ZM76.2467 54V45.81H78.1227V46.818C78.6687 46.104 79.5087 45.642 80.5727 45.642C82.6027 45.642 83.8207 46.944 83.8207 49.142V54H81.9027V49.338C81.9027 48.064 81.2867 47.28 80.0547 47.28C78.9767 47.28 78.1367 48.064 78.1367 49.506V54H76.2467ZM84.826 54V43.64H86.716V49.758L90.202 45.81H92.47L89.306 49.352L92.582 54H90.468L88.018 50.472L86.716 51.914V54H84.826Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32850'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-greatreply {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32854)'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%2388CDF5'/%3E%3Cpath d='M50.0282 52.5573L18.3789 32.4858V69.6208H81.6757V32.4858L50.0282 52.5573Z' fill='%235CBAEA'/%3E%3Cpath d='M81.6757 28.2755H18.3789L49.8187 48.2139C49.9463 48.2959 50.1102 48.2959 50.2377 48.2139L81.6776 28.2755H81.6757Z' fill='%235CBAEA'/%3E%3Cpath d='M15.1462 54.14C11.9542 54.14 9.84018 51.732 9.84018 48.89C9.84018 45.992 12.0382 43.64 15.0622 43.64C17.2042 43.64 18.8562 44.732 19.7102 46.258L18.0302 47.266C17.3862 46.076 16.4202 45.488 15.0762 45.488C13.2142 45.488 11.7302 46.986 11.7302 48.89C11.7302 50.78 13.1582 52.292 15.1462 52.292C16.6722 52.292 17.7222 51.438 18.1002 50.08H14.8382V48.26H20.1442V49.016C20.1442 51.774 18.2122 54.14 15.1462 54.14ZM20.9818 54V45.81H22.8578V47.028C23.2358 46.23 23.9358 45.81 24.9578 45.81C25.5598 45.81 26.0218 45.95 26.3998 46.16L25.6858 47.952C25.3918 47.756 25.0978 47.63 24.5518 47.63C23.4458 47.63 22.8718 48.218 22.8718 49.632V54H20.9818ZM30.7227 54.168C28.1467 54.168 26.3967 52.306 26.3967 49.926C26.3967 47.546 28.2587 45.642 30.6527 45.642C33.0747 45.642 34.8667 47.406 34.8667 49.856V50.57H28.2027C28.4687 51.732 29.3787 52.502 30.7227 52.502C31.7867 52.502 32.5987 51.942 32.9907 51.06L34.5447 51.956C33.8307 53.286 32.5567 54.168 30.7227 54.168ZM30.6527 47.308C29.5187 47.308 28.6367 47.98 28.3007 48.988H32.9487C32.6687 47.882 31.8287 47.308 30.6527 47.308ZM39.3909 54.168C37.3889 54.168 35.3589 52.572 35.3589 49.912C35.3589 47.21 37.3469 45.642 39.4189 45.642C40.4969 45.642 41.4489 46.076 42.0509 46.79V45.81H43.9409V54H42.0509V52.936C41.4489 53.706 40.4689 54.168 39.3909 54.168ZM39.6989 52.432C41.1829 52.432 42.1489 51.214 42.1489 49.884C42.1489 48.554 41.1689 47.364 39.6989 47.364C38.3269 47.364 37.2209 48.442 37.2209 49.884C37.2209 51.326 38.3129 52.432 39.6989 52.432ZM44.6349 47.504V45.81H46.0349V44.564L47.9389 43.262V45.81H49.6049V47.504H47.9389V50.57C47.9389 52.012 48.1629 52.222 49.6049 52.222V54H49.3389C46.8329 54 46.0349 53.202 46.0349 50.584V47.504H44.6349ZM53.8171 54V43.78H57.0931C59.5011 43.78 60.9151 45.222 60.9151 47.336C60.9151 48.568 60.2991 49.73 59.1931 50.318L61.2371 54H59.0671L57.4291 50.878H55.7211V54H53.8171ZM56.9251 49.128C58.4651 49.128 59.0111 48.302 59.0111 47.266C59.0111 46.216 58.3811 45.558 56.9251 45.558H55.7211V49.128H56.9251ZM65.2934 54.168C62.7174 54.168 60.9674 52.306 60.9674 49.926C60.9674 47.546 62.8294 45.642 65.2234 45.642C67.6454 45.642 69.4374 47.406 69.4374 49.856V50.57H62.7734C63.0394 51.732 63.9494 52.502 65.2934 52.502C66.3574 52.502 67.1694 51.942 67.5614 51.06L69.1154 51.956C68.4014 53.286 67.1274 54.168 65.2934 54.168ZM65.2234 47.308C64.0894 47.308 63.2074 47.98 62.8714 48.988H67.5194C67.2394 47.882 66.3994 47.308 65.2234 47.308ZM74.7456 54.168C73.6256 54.168 72.6596 53.776 72.0716 53.034V57.766H70.1956V45.81H72.0716V46.902C72.6456 46.146 73.6116 45.642 74.7316 45.642C76.7896 45.642 78.7636 47.21 78.7636 49.912C78.7636 52.6 76.7196 54.168 74.7456 54.168ZM74.4376 52.432C75.8376 52.432 76.9016 51.298 76.9016 49.884C76.9016 48.456 75.8096 47.364 74.4376 47.364C73.0236 47.364 72.0016 48.484 72.0016 49.884C72.0016 51.298 73.0096 52.432 74.4376 52.432ZM79.4586 54V43.64H81.3626V54H79.4586ZM83.5401 57.78L85.2621 53.594L81.9021 45.81H83.9181L86.2001 51.326L88.3561 45.81H90.3441L85.4581 57.78H83.5401Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32854'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-goodreply {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32860)'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%23B6EF43'/%3E%3Cpath d='M50.0282 52.5573L18.3789 32.4858V69.6208H81.6757V32.4858L50.0282 52.5573Z' fill='%2399DC13'/%3E%3Cpath d='M81.6757 28.2755H18.3789L49.8187 48.2139C49.9463 48.2959 50.1102 48.2959 50.2377 48.2139L81.6776 28.2755H81.6757Z' fill='%2399DC13'/%3E%3Cpath d='M14.9831 54.14C11.7911 54.14 9.6771 51.732 9.6771 48.89C9.6771 45.992 11.8751 43.64 14.8991 43.64C17.0411 43.64 18.6931 44.732 19.5471 46.258L17.8671 47.266C17.2231 46.076 16.2571 45.488 14.9131 45.488C13.0511 45.488 11.5671 46.986 11.5671 48.89C11.5671 50.78 12.9951 52.292 14.9831 52.292C16.5091 52.292 17.5591 51.438 17.9371 50.08H14.6751V48.26H19.9811V49.016C19.9811 51.774 18.0491 54.14 14.9831 54.14ZM24.863 54.168C22.483 54.168 20.621 52.264 20.621 49.912C20.621 47.504 22.511 45.642 24.863 45.642C27.229 45.642 29.105 47.532 29.105 49.912C29.105 52.222 27.285 54.168 24.863 54.168ZM24.863 52.39C26.221 52.39 27.243 51.256 27.243 49.912C27.243 48.554 26.221 47.42 24.863 47.42C23.519 47.42 22.483 48.512 22.483 49.912C22.483 51.284 23.519 52.39 24.863 52.39ZM33.8936 54.168C31.5136 54.168 29.6516 52.264 29.6516 49.912C29.6516 47.504 31.5416 45.642 33.8936 45.642C36.2596 45.642 38.1356 47.532 38.1356 49.912C38.1356 52.222 36.3156 54.168 33.8936 54.168ZM33.8936 52.39C35.2516 52.39 36.2736 51.256 36.2736 49.912C36.2736 48.554 35.2516 47.42 33.8936 47.42C32.5496 47.42 31.5136 48.512 31.5136 49.912C31.5136 51.284 32.5496 52.39 33.8936 52.39ZM42.7141 54.168C40.7121 54.168 38.6821 52.572 38.6821 49.912C38.6821 47.21 40.6701 45.642 42.7421 45.642C43.8061 45.642 44.7581 46.062 45.3601 46.776V43.64H47.2641V54H45.3741V52.936C44.7721 53.706 43.7921 54.168 42.7141 54.168ZM43.0221 52.432C44.5061 52.432 45.4721 51.214 45.4721 49.884C45.4721 48.554 44.4921 47.364 43.0221 47.364C41.6501 47.364 40.5441 48.442 40.5441 49.884C40.5441 51.326 41.6361 52.432 43.0221 52.432ZM54.9802 54V43.78H58.2562C60.6642 43.78 62.0782 45.222 62.0782 47.336C62.0782 48.568 61.4622 49.73 60.3562 50.318L62.4002 54H60.2302L58.5922 50.878H56.8842V54H54.9802ZM58.0882 49.128C59.6282 49.128 60.1742 48.302 60.1742 47.266C60.1742 46.216 59.5442 45.558 58.0882 45.558H56.8842V49.128H58.0882ZM66.4565 54.168C63.8805 54.168 62.1305 52.306 62.1305 49.926C62.1305 47.546 63.9925 45.642 66.3865 45.642C68.8085 45.642 70.6005 47.406 70.6005 49.856V50.57H63.9365C64.2025 51.732 65.1125 52.502 66.4565 52.502C67.5205 52.502 68.3325 51.942 68.7245 51.06L70.2785 51.956C69.5645 53.286 68.2905 54.168 66.4565 54.168ZM66.3865 47.308C65.2525 47.308 64.3705 47.98 64.0345 48.988H68.6825C68.4025 47.882 67.5625 47.308 66.3865 47.308ZM75.9087 54.168C74.7887 54.168 73.8227 53.776 73.2347 53.034V57.766H71.3587V45.81H73.2347V46.902C73.8087 46.146 74.7747 45.642 75.8947 45.642C77.9527 45.642 79.9267 47.21 79.9267 49.912C79.9267 52.6 77.8827 54.168 75.9087 54.168ZM75.6007 52.432C77.0007 52.432 78.0647 51.298 78.0647 49.884C78.0647 48.456 76.9727 47.364 75.6007 47.364C74.1867 47.364 73.1647 48.484 73.1647 49.884C73.1647 51.298 74.1727 52.432 75.6007 52.432ZM80.6217 54V43.64H82.5257V54H80.6217ZM84.7032 57.78L86.4252 53.594L83.0652 45.81H85.0812L87.3632 51.326L89.5192 45.81H91.5072L86.6212 57.78H84.7032Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32860'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-nicereply {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32866)'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%236ACECC'/%3E%3Cg opacity='0.9'%3E%3Cpath d='M50.0282 52.5573L18.3789 32.4858V69.6208H81.6757V32.4858L50.0282 52.5573Z' fill='%232BBCB1'/%3E%3Cpath d='M81.6757 28.2755H18.3789L49.8187 48.2139C49.9463 48.2959 50.1102 48.2959 50.2377 48.2139L81.6776 28.2755H81.6757Z' fill='%232BBCB1'/%3E%3C/g%3E%3Cpath d='M14.1612 54V43.78H16.3172L20.7412 50.738V43.78H22.6452V54H20.6152L16.0652 46.818V54H14.1612ZM23.6966 54V45.81H25.6006V54H23.6966ZM23.4586 43.808C23.4586 43.094 23.9206 42.618 24.6486 42.618C25.3906 42.618 25.8386 43.094 25.8386 43.808C25.8386 44.522 25.3906 44.984 24.6486 44.984C23.8926 44.984 23.4586 44.522 23.4586 43.808ZM30.5922 54.168C28.1842 54.168 26.3362 52.25 26.3362 49.912C26.3362 47.504 28.2122 45.642 30.5922 45.642C32.4262 45.642 33.8682 46.692 34.4982 48.176L32.8042 48.89C32.4262 47.98 31.6142 47.42 30.6062 47.42C29.2202 47.42 28.1842 48.526 28.1842 49.912C28.1842 51.284 29.2342 52.39 30.6202 52.39C31.6842 52.39 32.4542 51.774 32.8322 50.864L34.5262 51.592C33.8822 53.104 32.4822 54.168 30.5922 54.168ZM39.1458 54.168C36.5698 54.168 34.8198 52.306 34.8198 49.926C34.8198 47.546 36.6818 45.642 39.0758 45.642C41.4978 45.642 43.2898 47.406 43.2898 49.856V50.57H36.6258C36.8918 51.732 37.8018 52.502 39.1458 52.502C40.2098 52.502 41.0218 51.942 41.4138 51.06L42.9678 51.956C42.2538 53.286 40.9798 54.168 39.1458 54.168ZM39.0758 47.308C37.9418 47.308 37.0598 47.98 36.7238 48.988H41.3718C41.0918 47.882 40.2518 47.308 39.0758 47.308ZM50.7761 54V43.78H54.0521C56.4601 43.78 57.8741 45.222 57.8741 47.336C57.8741 48.568 57.2581 49.73 56.1521 50.318L58.1961 54H56.0261L54.3881 50.878H52.6801V54H50.7761ZM53.8841 49.128C55.4241 49.128 55.9701 48.302 55.9701 47.266C55.9701 46.216 55.3401 45.558 53.8841 45.558H52.6801V49.128H53.8841ZM62.2524 54.168C59.6764 54.168 57.9264 52.306 57.9264 49.926C57.9264 47.546 59.7884 45.642 62.1824 45.642C64.6044 45.642 66.3964 47.406 66.3964 49.856V50.57H59.7324C59.9984 51.732 60.9084 52.502 62.2524 52.502C63.3164 52.502 64.1284 51.942 64.5204 51.06L66.0744 51.956C65.3604 53.286 64.0864 54.168 62.2524 54.168ZM62.1824 47.308C61.0484 47.308 60.1664 47.98 59.8304 48.988H64.4784C64.1984 47.882 63.3584 47.308 62.1824 47.308ZM71.7046 54.168C70.5846 54.168 69.6186 53.776 69.0306 53.034V57.766H67.1546V45.81H69.0306V46.902C69.6046 46.146 70.5706 45.642 71.6906 45.642C73.7486 45.642 75.7226 47.21 75.7226 49.912C75.7226 52.6 73.6786 54.168 71.7046 54.168ZM71.3966 52.432C72.7966 52.432 73.8606 51.298 73.8606 49.884C73.8606 48.456 72.7686 47.364 71.3966 47.364C69.9826 47.364 68.9606 48.484 68.9606 49.884C68.9606 51.298 69.9686 52.432 71.3966 52.432ZM76.4176 54V43.64H78.3216V54H76.4176ZM80.4991 57.78L82.2211 53.594L78.8611 45.81H80.8771L83.1591 51.326L85.3151 45.81H87.3031L82.4171 57.78H80.4991Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32866'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-basic.small {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32873)'%3E%3Cpath d='M20 0.5C30.7696 0.5 39.5008 9.23041 39.501 20C39.501 30.7698 30.7698 39.501 20 39.501C9.23041 39.5008 0.5 30.7696 0.5 20C0.500197 9.23054 9.23054 0.500197 20 0.5Z' fill='%23EDDFAE' stroke='%23E6D494'/%3E%3Cpath d='M9.02104 18.395H4.62891V22.7872H9.02104V18.395Z' fill='%23DCCB90'/%3E%3Cpath d='M35.3726 18.395H30.9805V22.7872H35.3726V18.395Z' fill='%23DCCB90'/%3E%3Cpath d='M13.4117 22.7871H9.01953V27.1792H13.4117V22.7871Z' fill='%23DCCB90'/%3E%3Cpath d='M30.982 22.7871H26.5898V27.1792H30.982V22.7871Z' fill='%23DCCB90'/%3E%3Cpath d='M17.8062 27.1792H13.4141V31.5713H17.8062V27.1792Z' fill='%23DCCB90'/%3E%3Cpath d='M22.1968 27.1792H17.8047V31.5713H22.1968V27.1792Z' fill='%23DCCB90'/%3E%3Cpath d='M26.5875 27.1792H22.1953V31.5713H26.5875V27.1792Z' fill='%23DCCB90'/%3E%3Cpath d='M15.607 9.87012H11.2148V14.2623H15.607V9.87012Z' fill='%23DCCB90'/%3E%3Cpath d='M28.7828 9.87012H24.3906V14.2623H28.7828V9.87012Z' fill='%23DCCB90'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32873'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-member.small {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32887)'%3E%3Cpath d='M20 0.5C30.7696 0.5 39.5008 9.23041 39.501 20C39.501 30.7698 30.7698 39.501 20 39.501C9.23041 39.5008 0.5 30.7696 0.5 20C0.500197 9.23054 9.23054 0.500197 20 0.5Z' fill='%23FF6BCB' stroke='%23FF5CC5'/%3E%3Cpath d='M9.02104 18.395H4.62891V22.7872H9.02104V18.395Z' fill='%23FFAEE2'/%3E%3Cpath d='M35.3726 18.395H30.9805V22.7872H35.3726V18.395Z' fill='%23FFAEE2'/%3E%3Cpath d='M13.4117 22.7871H9.01953V27.1792H13.4117V22.7871Z' fill='%23FFAEE2'/%3E%3Cpath d='M30.982 22.7871H26.5898V27.1792H30.982V22.7871Z' fill='%23FFAEE2'/%3E%3Cpath d='M17.8062 27.1792H13.4141V31.5713H17.8062V27.1792Z' fill='%23FFAEE2'/%3E%3Cpath d='M22.1968 27.1792H17.8047V31.5713H22.1968V27.1792Z' fill='%23FFAEE2'/%3E%3Cpath d='M26.5875 27.1792H22.1953V31.5713H26.5875V27.1792Z' fill='%23FFAEE2'/%3E%3Cpath d='M15.607 9.87012H11.2148V14.2623H15.607V9.87012Z' fill='%23FFAEE2'/%3E%3Cpath d='M28.7828 9.87012H24.3906V14.2623H28.7828V9.87012Z' fill='%23FFAEE2'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32887'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-appreciated.small {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32901)'%3E%3Cpath d='M20 0.5C30.7696 0.5 39.5008 9.23041 39.501 20C39.501 30.7698 30.7698 39.501 20 39.501C9.23041 39.5008 0.5 30.7696 0.5 20C0.500197 9.23054 9.23054 0.500197 20 0.5Z' fill='%23FF6775' stroke='%23FE5968'/%3E%3Cpath d='M30.3462 11.6782C27.4888 8.82148 22.8569 8.82148 20.0002 11.6782C17.1435 8.82148 12.5109 8.82148 9.65422 11.6782C6.79755 14.5348 6.79755 19.1674 9.65422 22.0241L20.0002 32.3701L30.3462 22.0241C33.2028 19.1674 33.2028 14.5348 30.3462 11.6782Z' fill='%23FF97A1'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32901'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-anniversary.small {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32904)'%3E%3Cpath d='M20 0.5C30.7696 0.5 39.5008 9.23041 39.501 20C39.501 30.7698 30.7698 39.501 20 39.501C9.23041 39.5008 0.5 30.7696 0.5 20C0.500197 9.23054 9.23054 0.500197 20 0.5Z' fill='%23FFAE56' stroke='%23FFA543'/%3E%3Cg style='mix-blend-mode:multiply' opacity='0.45'%3E%3Cpath d='M30.4866 26.6476H28.9235V18.9091C28.9235 18.1279 28.2902 17.4946 27.509 17.4946H11.7106C10.9294 17.4946 10.2961 18.1279 10.2961 18.9091V26.6476H9.11989C8.72127 26.6476 8.39844 26.9705 8.39844 27.3691V28.9024C8.39844 29.301 8.72127 29.6238 9.11989 29.6238H30.4874C30.886 29.6238 31.2088 29.301 31.2088 28.9024V27.3691C31.2088 26.9705 30.886 26.6476 30.4874 26.6476H30.4866Z' fill='%23E77800'/%3E%3C/g%3E%3Cg style='mix-blend-mode:multiply' opacity='0.45'%3E%3Cpath d='M18.947 13.7425V16.4724H20.6573V13.7425C21.123 13.6048 21.5624 13.3519 21.9304 12.9846C23.1059 11.8092 23.1059 9.90349 21.9304 8.72803L19.8025 6.6001L17.6746 8.72803C16.4991 9.90349 16.4991 11.8092 17.6746 12.9839C18.0426 13.3519 18.4813 13.6041 18.9477 13.7418L18.947 13.7425Z' fill='%23E77800'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32904'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-aficionado.small {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32909)'%3E%3Cpath d='M20 0.5C30.7696 0.5 39.5008 9.23041 39.501 20C39.501 30.7698 30.7698 39.501 20 39.501C9.23041 39.5008 0.5 30.7696 0.5 20C0.500197 9.23054 9.23054 0.500197 20 0.5Z' fill='%23E071FF' stroke='%23DC5FFF'/%3E%3Cpath d='M19.9996 5.12964C11.7867 5.12964 5.12891 11.7874 5.12891 20.0004C5.12891 28.2133 11.7867 34.8711 19.9996 34.8711C28.2126 34.8711 34.8704 28.2133 34.8704 20.0004C34.8704 11.7874 28.2126 5.12964 19.9996 5.12964ZM29.1126 25.2619L22.5918 24.4902L19.9996 30.5234L17.4075 24.4902L10.8867 25.2619L14.8154 20.0004L10.8867 14.7388L17.4075 15.5106L19.9996 9.47732L22.5918 15.5106L29.1126 14.7388L25.1839 20.0004L29.1126 25.2619Z' fill='%23E896FF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32909'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-enthusiast.small {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32912)'%3E%3Cpath d='M20 0.5C30.7696 0.5 39.5008 9.23041 39.501 20C39.501 30.7698 30.7698 39.501 20 39.501C9.23041 39.5008 0.5 30.7696 0.5 20C0.500197 9.23054 9.23054 0.500197 20 0.5Z' fill='%23B594FF' stroke='%23A882FE'/%3E%3Cg opacity='0.8'%3E%3Cpath d='M9.28428 11.9048C16.2962 10.8999 23.1158 8.91039 30.1169 7.84351C29.2941 10.2833 28.4743 12.7239 27.6574 15.1659C30.721 14.6514 33.7752 14.2994 36.884 14.2557C35.9723 16.5746 35.0694 18.8964 34.1731 21.2211C33.292 23.5108 32.4175 25.8027 31.5474 28.096C23.83 29.004 16.3458 31.2252 8.63278 32.1566C9.63845 29.759 10.6354 27.3578 11.625 24.9537C8.79602 25.3916 5.97724 25.6802 3.11328 25.7094C5.22664 21.1329 7.27513 16.5279 9.28428 11.9048Z' fill='%23CDB7FF'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32912'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-admired.small {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32916)'%3E%3Cpath d='M20 0.5C30.7696 0.5 39.5008 9.23041 39.501 20C39.501 30.7698 30.7698 39.501 20 39.501C9.23041 39.5008 0.5 30.7696 0.5 20C0.500197 9.23054 9.23054 0.500197 20 0.5Z' fill='%233BAFFF' stroke='%2328A1F5'/%3E%3Cpath d='M9.28428 11.9048C16.2962 10.8999 23.1158 8.91039 30.1169 7.84351C29.2941 10.2833 28.4743 12.7239 27.6574 15.1659C30.721 14.6514 33.7752 14.2994 36.884 14.2557C35.9723 16.5746 35.0694 18.8964 34.1731 21.2211C33.292 23.5108 32.4175 25.8027 31.5474 28.096C23.83 29.004 16.3458 31.2252 8.63278 32.1566C9.63845 29.759 10.6354 27.3578 11.625 24.9537C8.79602 25.3916 5.97724 25.6802 3.11328 25.7094C5.22664 21.1329 7.27513 16.5279 9.28428 11.9048Z' fill='%231596EF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32916'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-devotee.small {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32919)'%3E%3Cpath d='M20 0.5C30.7696 0.5 39.5008 9.23041 39.501 20C39.501 30.7698 30.7698 39.501 20 39.501C9.23041 39.5008 0.5 30.7696 0.5 20C0.500197 9.23054 9.23054 0.500197 20 0.5Z' fill='%23C0A9FF' stroke='%23B49AFF'/%3E%3Cpath d='M25.2123 6.46997L8.26172 23.4205V31.2341H16.076L33.0259 14.2843L25.2123 6.46997Z' fill='%23AC8EFF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32919'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-respected.small {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32922)'%3E%3Cpath d='M20 0.5C30.7696 0.5 39.5008 9.23041 39.501 20C39.501 30.7698 30.7698 39.501 20 39.501C9.23041 39.5008 0.5 30.7696 0.5 20C0.500197 9.23054 9.23054 0.500197 20 0.5Z' fill='%2321BB83' stroke='%2311B479'/%3E%3Cpath d='M15.9382 14.9671L21.2078 6.57558C21.6574 5.85777 22.69 5.81915 23.1921 6.50198C24.2539 7.94562 24.5972 9.79517 24.1249 11.523L23.2548 14.704H28.0616C29.8113 14.704 31.1325 16.2897 30.8163 18.0103L29.162 27.0278C28.9478 28.1959 27.9297 29.0442 26.7418 29.0442H15.9375V14.9671H15.9382Z' fill='%233FE2A7'/%3E%3Cpath d='M14.0269 14.967H9.64062V29.0442H14.0269V14.967Z' fill='%233FE2A7'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32922'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-greattopic.small {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32927)'%3E%3Cpath d='M20 0.5C30.7696 0.5 39.5008 9.23041 39.501 20C39.501 30.7698 30.7698 39.501 20 39.501C9.23041 39.5008 0.5 30.7696 0.5 20C0.500197 9.23054 9.23054 0.500197 20 0.5Z' fill='%23FF8FB4' stroke='%23FF7BA7'/%3E%3Cpath d='M10.9805 9.1145V26.538H20.0009V33.3525L29.0205 26.538V9.1145H10.9805Z' fill='%23FFB7CF'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32927'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-goodtopic.small {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32930)'%3E%3Cpath d='M20 0.5C30.7696 0.5 39.5008 9.23041 39.501 20C39.501 30.7698 30.7698 39.501 20 39.501C9.23041 39.5008 0.5 30.7696 0.5 20C0.500197 9.23054 9.23054 0.500197 20 0.5Z' fill='%233ADC5D' stroke='%2324CF49'/%3E%3Cpath d='M10.9805 9.1145V26.538H20.0009V33.3525L29.0205 26.538V9.1145H10.9805Z' fill='%2377FD94'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32930'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-nicetopic.small {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32933)'%3E%3Cpath d='M20 0.5C30.7696 0.5 39.5008 9.23041 39.501 20C39.501 30.7698 30.7698 39.501 20 39.501C9.23041 39.5008 0.5 30.7696 0.5 20C0.500197 9.23054 9.23054 0.500197 20 0.5Z' fill='%236ACECC' stroke='%2341C6C4'/%3E%3Cpath d='M10.9805 9.1145V26.538H20.0009V33.3525L29.0205 26.538V9.1145H10.9805Z' fill='%2322B8AC'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32933'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-popularlink.small {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32936)'%3E%3Cpath d='M20 0.5C30.7696 0.5 39.5008 9.23041 39.501 20C39.501 30.7698 30.7698 39.501 20 39.501C9.23041 39.5008 0.5 30.7696 0.5 20C0.500197 9.23054 9.23054 0.500197 20 0.5Z' fill='%2388CDF5' stroke='%236DC3F4'/%3E%3Cg opacity='0.85'%3E%3Cpath d='M5.19141 20.8706C5.19141 12.1475 11.2822 5.19238 20.7909 5.19238C30.2995 5.19238 34.6618 11.4399 34.6618 18.1203C34.6618 23.3461 31.7541 26.7253 27.8641 26.7253C25.5853 26.7253 24.0527 25.7823 23.1491 24.5638C22.1668 25.8603 20.5162 26.6859 18.3948 26.6859C14.9762 26.6859 12.1079 24.5245 12.1079 20.2023C12.1079 15.8801 15.0156 12.5403 19.1811 12.5403C20.8711 12.5403 22.1675 13.1299 22.9924 13.9941L23.1498 12.7757H27.354L26.6077 19.8882C26.411 21.8136 26.8045 22.5598 27.9829 22.5598C29.4367 22.5598 30.419 20.3597 30.419 17.7661C30.419 12.7757 26.6077 9.3178 20.3988 9.3178C14.1899 9.3178 9.43561 14.1902 9.43561 20.8698C9.43561 26.2924 12.6967 30.5752 19.1804 30.5752C23.1098 30.5752 25.7427 29.2788 27.746 27.1174L30.9292 29.7503C28.2569 32.7367 24.3668 34.662 19.141 34.662C10.1031 34.662 5.19141 28.886 5.19141 20.8698V20.8706ZM22.5588 19.22C22.5588 17.4914 21.4191 16.3123 19.7298 16.3123C17.6471 16.3123 16.39 17.9235 16.39 19.8489C16.39 21.5774 17.5691 22.7172 19.337 22.7172C21.105 22.7172 22.5588 21.3814 22.5588 19.22Z' fill='%234CB3E8'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32936'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-hotlink.small {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32940)'%3E%3Cpath d='M20 0.5C30.7696 0.5 39.5008 9.23041 39.501 20C39.501 30.7698 30.7698 39.501 20 39.501C9.23041 39.5008 0.5 30.7696 0.5 20C0.500197 9.23054 9.23054 0.500197 20 0.5Z' fill='%23FF6775' stroke='%23FC5766'/%3E%3Cpath d='M5.19141 20.8706C5.19141 12.1475 11.2822 5.19238 20.7909 5.19238C30.2995 5.19238 34.6618 11.4399 34.6618 18.1203C34.6618 23.3461 31.7541 26.7253 27.8641 26.7253C25.5853 26.7253 24.0527 25.7823 23.1491 24.5638C22.1668 25.8603 20.5162 26.6859 18.3948 26.6859C14.9762 26.6859 12.1079 24.5245 12.1079 20.2023C12.1079 15.8801 15.0156 12.5403 19.1811 12.5403C20.8711 12.5403 22.1675 13.1299 22.9924 13.9941L23.1498 12.7757H27.354L26.6077 19.8882C26.411 21.8136 26.8045 22.5598 27.9829 22.5598C29.4367 22.5598 30.419 20.3597 30.419 17.7661C30.419 12.7757 26.6077 9.3178 20.3988 9.3178C14.1899 9.3178 9.43561 14.1902 9.43561 20.8698C9.43561 26.2924 12.6967 30.5752 19.1804 30.5752C23.1098 30.5752 25.7427 29.2788 27.746 27.1174L30.9292 29.7503C28.2569 32.7367 24.3668 34.662 19.141 34.662C10.1031 34.662 5.19141 28.886 5.19141 20.8698V20.8706ZM22.5588 19.22C22.5588 17.4914 21.4191 16.3123 19.7298 16.3123C17.6471 16.3123 16.39 17.9235 16.39 19.8489C16.39 21.5774 17.5691 22.7172 19.337 22.7172C21.105 22.7172 22.5588 21.3814 22.5588 19.22Z' fill='%23EA5361'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32940'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-famouslink.small {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32943)'%3E%3Cpath d='M20 0.5C30.7696 0.5 39.5008 9.23041 39.501 20C39.501 30.7698 30.7698 39.501 20 39.501C9.23041 39.5008 0.5 30.7696 0.5 20C0.500197 9.23054 9.23054 0.500197 20 0.5Z' fill='%2368E6E4' stroke='%234CDEDC'/%3E%3Cpath d='M5.19141 20.8706C5.19141 12.1475 11.2822 5.19238 20.7909 5.19238C30.2995 5.19238 34.6618 11.4399 34.6618 18.1203C34.6618 23.3461 31.7541 26.7253 27.8641 26.7253C25.5853 26.7253 24.0527 25.7823 23.1491 24.5638C22.1668 25.8603 20.5162 26.6859 18.3948 26.6859C14.9762 26.6859 12.1079 24.5245 12.1079 20.2023C12.1079 15.8801 15.0156 12.5403 19.1811 12.5403C20.8711 12.5403 22.1675 13.1299 22.9924 13.9941L23.1498 12.7757H27.354L26.6077 19.8882C26.411 21.8136 26.8045 22.5598 27.9829 22.5598C29.4367 22.5598 30.419 20.3597 30.419 17.7661C30.419 12.7757 26.6077 9.3178 20.3988 9.3178C14.1899 9.3178 9.43561 14.1902 9.43561 20.8698C9.43561 26.2924 12.6967 30.5752 19.1804 30.5752C23.1098 30.5752 25.7427 29.2788 27.746 27.1174L30.9292 29.7503C28.2569 32.7367 24.3668 34.662 19.141 34.662C10.1031 34.662 5.19141 28.886 5.19141 20.8698V20.8706ZM22.5588 19.22C22.5588 17.4914 21.4191 16.3123 19.7298 16.3123C17.6471 16.3123 16.39 17.9235 16.39 19.8489C16.39 21.5774 17.5691 22.7172 19.337 22.7172C21.105 22.7172 22.5588 21.3814 22.5588 19.22Z' fill='%2331D4D2'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32943'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-greatreply.small {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32946)'%3E%3Cpath d='M20 0.5C30.7696 0.5 39.5008 9.23041 39.501 20C39.501 30.7698 30.7698 39.501 20 39.501C9.23041 39.5008 0.5 30.7696 0.5 20C0.500197 9.23054 9.23054 0.500197 20 0.5Z' fill='%2388CDF5' stroke='%236CBEEE'/%3E%3Cpath d='M20.0113 21.023L7.35156 12.9944V27.8484H32.6703V12.9944L20.0113 21.023Z' fill='%235CBAEA'/%3E%3Cpath d='M32.6703 11.3101H7.35156L19.9275 19.2854C19.9785 19.3182 20.0441 19.3182 20.0951 19.2854L32.671 11.3101H32.6703Z' fill='%235CBAEA'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32946'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-goodreply.small {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32951)'%3E%3Cpath d='M20 0.5C30.7696 0.5 39.5008 9.23041 39.501 20C39.501 30.7698 30.7698 39.501 20 39.501C9.23041 39.5008 0.5 30.7696 0.5 20C0.500197 9.23054 9.23054 0.500197 20 0.5Z' fill='%23B6EF43' stroke='%23A9E62D'/%3E%3Cpath d='M20.0113 21.023L7.35156 12.9944V27.8484H32.6703V12.9944L20.0113 21.023Z' fill='%2399DC13'/%3E%3Cpath d='M32.6703 11.3101H7.35156L19.9275 19.2854C19.9785 19.3182 20.0441 19.3182 20.0951 19.2854L32.671 11.3101H32.6703Z' fill='%2399DC13'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32951'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-nicereply.small {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='40' height='40' viewBox='0 0 40 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2311_32956)'%3E%3Cpath d='M20 0.5C30.7696 0.5 39.5008 9.23041 39.501 20C39.501 30.7698 30.7698 39.501 20 39.501C9.23041 39.5008 0.5 30.7696 0.5 20C0.500197 9.23054 9.23054 0.500197 20 0.5Z' fill='%236ACECC' stroke='%2351CDCA'/%3E%3Cg opacity='0.9'%3E%3Cpath d='M20.0113 21.023L7.35156 12.9944V27.8484H32.6703V12.9944L20.0113 21.023Z' fill='%2323B1A7'/%3E%3Cpath d='M32.6703 11.3101H7.35156L19.9275 19.2854C19.9785 19.3182 20.0441 19.3182 20.0951 19.2854L32.671 11.3101H32.6703Z' fill='%2323B1A7'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2311_32956'%3E%3Crect width='40' height='40' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-reader {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2404_37135)'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%23F4E769'/%3E%3Cpath d='M50.0025 33.7961L16.1523 19.8789V69.2932L50.0025 83.6148L83.8508 69.2932V19.8789L50.0025 33.7961Z' fill='%23E8CF3D'/%3E%3Cpath d='M26.1602 55.1231V45.1484H29.3575C29.9496 45.1484 30.4761 45.2322 30.9352 45.4017C31.3944 45.5711 31.7842 45.8079 32.1031 46.1122C32.4219 46.4183 32.666 46.7826 32.8336 47.2053C33.0012 47.6298 33.0869 48.0998 33.0869 48.6191C33.0869 49.2203 32.9429 49.7832 32.6569 50.3061C32.3691 50.8308 31.9537 51.2371 31.4071 51.5286L33.402 55.1213H31.285L29.6855 52.0751H28.0185V55.1213H26.1602V55.1231ZM29.1936 50.3681C29.5761 50.3681 29.8968 50.3207 30.1573 50.2241C30.416 50.1294 30.6255 49.9964 30.7859 49.8288C30.9462 49.6612 31.0591 49.4662 31.1284 49.2476C31.1976 49.029 31.2304 48.7976 31.2304 48.5498C31.2304 48.0397 31.0682 47.6353 30.7458 47.3347C30.4215 47.0341 29.9059 46.8847 29.1954 46.8847H28.0203V50.3681H29.1954H29.1936Z' fill='white'/%3E%3Cpath d='M37.4478 55.1387C36.8193 55.1387 36.2454 55.0349 35.7262 54.829C35.2069 54.6231 34.7624 54.3389 34.3944 53.98C34.0264 53.6193 33.7385 53.1966 33.5345 52.7083C33.3304 52.2219 33.2266 51.7009 33.2266 51.147C33.2266 50.5932 33.3341 50.0575 33.5472 49.5656C33.7604 49.0737 34.0555 48.6474 34.429 48.2885C34.8025 47.9278 35.2415 47.6436 35.748 47.4322C36.2527 47.2209 36.7974 47.1152 37.3804 47.1152C37.9634 47.1152 38.5209 47.2118 39.0274 47.4031C39.532 47.5944 39.9674 47.864 40.3318 48.2102C40.6962 48.5563 40.9804 48.9644 41.1863 49.4326C41.3921 49.9009 41.4942 50.4146 41.4942 50.9703V51.6243H34.9901C35.1177 52.1891 35.3946 52.6446 35.8245 52.9907C36.2527 53.3369 36.7956 53.51 37.4496 53.51C37.9689 53.51 38.4207 53.3824 38.8015 53.1274C39.184 52.8723 39.4719 52.5316 39.6632 52.1035L41.1808 52.978C40.8346 53.6247 40.35 54.1458 39.7251 54.543C39.1002 54.9401 38.3423 55.1369 37.4496 55.1369L37.4478 55.1387ZM37.3786 48.744C36.8229 48.744 36.3419 48.866 35.9375 49.112C35.5312 49.3579 35.247 49.6804 35.083 50.083H39.6195C39.4828 49.644 39.2187 49.3106 38.827 49.0847C38.4353 48.8588 37.9525 48.744 37.3786 48.744Z' fill='white'/%3E%3Cpath d='M45.9839 55.137C45.5011 55.137 45.0256 55.0477 44.5556 54.8674C44.0855 54.687 43.6647 54.4265 43.2912 54.084C42.9177 53.7415 42.6171 53.3224 42.3894 52.8269C42.1617 52.3313 42.0469 51.7666 42.0469 51.1344C42.0469 50.5022 42.158 49.9247 42.3821 49.4291C42.6044 48.9336 42.9013 48.5127 43.2712 48.1702C43.6392 47.8277 44.0637 47.5672 44.541 47.3868C45.0183 47.2065 45.5084 47.1172 46.0094 47.1172C46.5378 47.1172 47.0242 47.2137 47.4724 47.4032C47.9187 47.5945 48.2867 47.855 48.5782 48.1848V47.1299H50.422V55.1243H48.5782V53.9892C48.2867 54.3463 47.9133 54.6269 47.4578 54.8309C47.0023 55.035 46.5104 55.1388 45.9821 55.1388L45.9839 55.137ZM46.2845 53.4427C46.6307 53.4427 46.9495 53.3826 47.241 53.2623C47.5325 53.1421 47.7821 52.9763 47.9916 52.7613C48.2011 52.5481 48.3669 52.2986 48.4908 52.018C48.6129 51.7356 48.6748 51.4313 48.6748 51.1071C48.6748 50.7828 48.6129 50.4913 48.4908 50.2089C48.3687 49.9265 48.2011 49.6805 47.9916 49.471C47.7821 49.2615 47.5307 49.0975 47.241 48.9773C46.9495 48.8571 46.6307 48.7969 46.2845 48.7969C45.9384 48.7969 45.6305 48.8571 45.3353 48.9773C45.0402 49.0975 44.7815 49.2597 44.5629 49.4656C44.3442 49.6714 44.173 49.9156 44.0509 50.1961C43.9289 50.4785 43.8669 50.7828 43.8669 51.1071C43.8669 51.4313 43.9289 51.7374 44.0509 52.0253C44.173 52.3113 44.3442 52.5591 44.5629 52.7686C44.7815 52.9781 45.0384 53.1439 45.3353 53.2623C45.6305 53.3826 45.9475 53.4427 46.2845 53.4427Z' fill='white'/%3E%3Cpath d='M55.1558 55.1377C54.673 55.1377 54.1975 55.0485 53.7274 54.8681C53.2574 54.6877 52.8366 54.4272 52.4631 54.0847C52.0896 53.7422 51.789 53.3232 51.5613 52.8276C51.3335 52.3321 51.2188 51.7673 51.2188 51.1351C51.2188 50.5029 51.3299 49.9254 51.554 49.4299C51.7762 48.9343 52.0732 48.5135 52.443 48.171C52.8111 47.8284 53.2355 47.5679 53.7129 47.3876C54.1902 47.2072 54.6803 47.1179 55.1813 47.1179C55.6823 47.1179 56.1833 47.2163 56.6297 47.4112C57.076 47.608 57.444 47.8776 57.7374 48.2238V45.0137H59.5957V55.125H57.7519V53.99C57.4604 54.3471 57.087 54.6276 56.6315 54.8317C56.176 55.0357 55.6841 55.1396 55.1558 55.1396V55.1377ZM55.4564 53.4434C55.8025 53.4434 56.1214 53.3833 56.4129 53.263C56.7044 53.1428 56.954 52.977 57.1635 52.762C57.373 52.5489 57.5388 52.2993 57.6627 52.0187C57.7847 51.7363 57.8467 51.4321 57.8467 51.1078C57.8467 50.7835 57.7847 50.492 57.6627 50.2096C57.5406 49.9272 57.373 49.6813 57.1635 49.4718C56.954 49.2622 56.7025 49.0983 56.4129 48.978C56.1214 48.8578 55.8025 48.7977 55.4564 48.7977C55.1102 48.7977 54.8023 48.8578 54.5072 48.978C54.2121 49.0983 53.9534 49.2604 53.7347 49.4663C53.5161 49.6722 53.3449 49.9163 53.2228 50.1969C53.1007 50.4792 53.0388 50.7835 53.0388 51.1078C53.0388 51.4321 53.1007 51.7382 53.2228 52.026C53.3449 52.312 53.5161 52.5598 53.7347 52.7693C53.9534 52.9788 54.2102 53.1446 54.5072 53.263C54.8023 53.3833 55.1194 53.4434 55.4564 53.4434Z' fill='white'/%3E%3Cpath d='M64.6119 55.1387C63.9833 55.1387 63.4094 55.0349 62.8902 54.829C62.371 54.6231 61.9265 54.3389 61.5584 53.98C61.1904 53.6193 60.9026 53.1966 60.6985 52.7083C60.4945 52.2219 60.3906 51.7009 60.3906 51.147C60.3906 50.5932 60.4981 50.0575 60.7113 49.5656C60.9244 49.0737 61.2196 48.6474 61.5931 48.2885C61.9665 47.9278 62.4056 47.6436 62.9121 47.4322C63.4167 47.2209 63.9615 47.1152 64.5445 47.1152C65.1275 47.1152 65.6849 47.2118 66.1914 47.4031C66.6961 47.5944 67.1315 47.864 67.4959 48.2102C67.8602 48.5563 68.1445 48.9644 68.3503 49.4326C68.5562 49.9009 68.6582 50.4146 68.6582 50.9703V51.6243H62.1542C62.2817 52.1891 62.5586 52.6446 62.9886 52.9907C63.4167 53.3369 63.9596 53.51 64.6137 53.51C65.1329 53.51 65.5847 53.3824 65.9655 53.1274C66.3481 52.8723 66.636 52.5316 66.8272 52.1035L68.3449 52.978C67.9987 53.6247 67.5141 54.1458 66.8892 54.543C66.2643 54.9401 65.5064 55.1369 64.6137 55.1369L64.6119 55.1387ZM64.5426 48.744C63.987 48.744 63.506 48.866 63.1016 49.112C62.6953 49.3579 62.4111 49.6804 62.2471 50.083H66.7835C66.6469 49.644 66.3827 49.3106 65.991 49.0847C65.5993 48.8588 65.1165 48.744 64.5426 48.744Z' fill='white'/%3E%3Cpath d='M69.4766 47.1307H71.3075V48.3204C71.681 47.5279 72.3642 47.1307 73.3571 47.1307C73.6486 47.1307 73.911 47.1635 74.1423 47.2273C74.3755 47.2911 74.5814 47.373 74.7636 47.4732L74.0658 49.2222C73.9292 49.1311 73.7761 49.0564 73.6085 48.9963C73.4391 48.938 73.2241 48.907 72.96 48.907C72.4225 48.907 72.0144 49.0601 71.7375 49.3643C71.4587 49.6704 71.3203 50.1678 71.3203 50.8601V55.1232H69.4766V47.1289V47.1307Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2404_37135'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-certified {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2404_38396)'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%23DDF07B'/%3E%3Cpath d='M72.3163 84.228C57.4371 84.228 42.5598 84.228 27.6807 84.228C25.3469 61.3964 25.3451 38.605 27.6807 15.7734C42.5598 15.7734 57.4371 15.7734 72.3163 15.7734C74.6501 38.605 74.6519 61.3946 72.3163 84.228Z' fill='%239CDD36'/%3E%3Cpath d='M84.228 27.6827V72.3182C61.3964 74.6538 38.605 74.6538 15.7734 72.3182C15.7734 57.4391 15.7734 42.5618 15.7734 27.6827C38.605 25.3489 61.3964 25.3471 84.228 27.6827Z' fill='%239CDD36'/%3E%3Cpath d='M26.0098 53.4102C25.2446 53.4102 24.545 53.279 23.9128 53.0167C23.2788 52.7543 22.7395 52.3991 22.2932 51.9491C21.8468 51.5009 21.5007 50.9707 21.2547 50.3622C21.0088 49.7537 20.8867 49.1015 20.8867 48.4092C20.8867 47.6805 21.0179 47.0118 21.2821 46.4015C21.5462 45.793 21.9088 45.2665 22.3679 44.822C22.827 44.3774 23.3699 44.0313 23.9948 43.7817C24.6179 43.5321 25.2902 43.4082 26.0098 43.4082C26.4744 43.4082 26.9225 43.4683 27.3561 43.5886C27.7897 43.7088 28.1942 43.8764 28.5731 44.0932C28.9503 44.31 29.2928 44.5724 29.597 44.8821C29.9013 45.1918 30.1636 45.5343 30.3822 45.9133L28.7553 46.9025C28.4638 46.3888 28.0958 45.9825 27.6495 45.6855C27.2031 45.3886 26.6565 45.2392 26.0098 45.2392C25.5361 45.2392 25.0989 45.3212 24.698 45.4833C24.2972 45.6454 23.9511 45.8695 23.6596 46.1537C23.3681 46.438 23.1404 46.775 22.9764 47.1594C22.8124 47.5456 22.7304 47.961 22.7304 48.4092C22.7304 48.8574 22.8124 49.2582 22.9764 49.639C23.1404 50.0197 23.3663 50.3531 23.6523 50.6392C23.9383 50.9234 24.2808 51.1475 24.6762 51.3096C25.0715 51.4718 25.5033 51.5519 25.9679 51.5519C26.6602 51.5519 27.245 51.3843 27.7242 51.0509C28.2015 50.7175 28.5731 50.2894 28.8373 49.7683L30.5316 50.6155C30.313 51.0272 30.047 51.4062 29.7318 51.7505C29.4167 52.0948 29.0669 52.3918 28.6788 52.6377C28.2908 52.8837 27.8735 53.075 27.4217 53.2098C26.9717 53.3446 26.4999 53.412 26.008 53.412L26.0098 53.4102Z' fill='white'/%3E%3Cpath d='M35.233 53.4102C34.6044 53.4102 34.0305 53.3063 33.5113 53.1005C32.9921 52.8946 32.5475 52.6104 32.1795 52.2515C31.8115 51.8908 31.5237 51.4681 31.3196 50.9798C31.1156 50.4934 31.0117 49.9723 31.0117 49.4185C31.0117 48.8646 31.1192 48.329 31.3324 47.8371C31.5455 47.3452 31.8407 46.9189 32.2141 46.56C32.5876 46.1993 33.0267 45.9151 33.5332 45.7037C34.0378 45.4924 34.5826 45.3867 35.1656 45.3867C35.7485 45.3867 36.306 45.4833 36.8125 45.6746C37.319 45.8659 37.7526 46.1355 38.117 46.4817C38.4813 46.8278 38.7655 47.2359 38.9714 47.7041C39.1773 48.1723 39.2793 48.6861 39.2793 49.2418V49.8958H32.7753C32.9028 50.4606 33.1797 50.9161 33.6097 51.2622C34.0378 51.6084 34.5807 51.7814 35.2348 51.7814C35.754 51.7814 36.2058 51.6539 36.5866 51.3989C36.9692 51.1438 37.257 50.8031 37.4483 50.375L38.9641 51.2495C38.618 51.8962 38.1334 52.4173 37.5085 52.8144C36.8854 53.2098 36.1257 53.4084 35.233 53.4084V53.4102ZM35.1656 47.0155C34.6099 47.0155 34.1289 47.1375 33.7245 47.3835C33.3182 47.6294 33.034 47.9519 32.87 48.3545H37.4064C37.2698 47.9155 37.0056 47.5821 36.6139 47.3561C36.2222 47.1302 35.7394 47.0155 35.1656 47.0155Z' fill='white'/%3E%3Cpath d='M40.0977 45.4042H41.9286V46.5938C42.3021 45.8013 42.9853 45.4042 43.9782 45.4042C44.2697 45.4042 44.5321 45.437 44.7634 45.5007C44.9966 45.5645 45.2025 45.6465 45.3847 45.7467L44.6869 47.4957C44.5503 47.4046 44.3972 47.3299 44.2296 47.2698C44.0602 47.2115 43.8452 47.1805 43.581 47.1805C43.0436 47.1805 42.6355 47.3335 42.3586 47.6378C42.0798 47.9438 41.9414 48.4412 41.9414 49.1335V53.3967H40.0977V45.4023V45.4042Z' fill='white'/%3E%3Cpath d='M45.6992 45.4029H47.0656V44.1877L48.9239 42.916V45.4029H50.5508V47.0571H48.9239V50.0486C48.9239 50.3947 48.9421 50.6753 48.9786 50.8885C49.015 51.1034 49.0897 51.2674 49.2045 51.3804C49.3174 51.4951 49.4814 51.5698 49.6964 51.6063C49.9095 51.6427 50.1956 51.6609 50.5508 51.6609V53.3972H50.2903C49.6709 53.3972 49.1535 53.3425 48.7399 53.2332C48.3245 53.1239 47.9948 52.9399 47.7488 52.6794C47.5029 52.4188 47.328 52.0781 47.2223 51.6555C47.1166 51.231 47.0656 50.7008 47.0656 50.0632V47.0571H45.6992V45.4029Z' fill='white'/%3E%3Cpath d='M51.2049 43.4496C51.2049 43.1034 51.3088 42.8229 51.5183 42.6097C51.7278 42.3966 52.0102 42.2891 52.3655 42.2891C52.7207 42.2891 53.0141 42.3966 53.2199 42.6097C53.424 42.8247 53.5278 43.1034 53.5278 43.4496C53.5278 43.7957 53.4258 44.0727 53.2199 44.2822C53.0159 44.4917 52.7298 44.5974 52.3655 44.5974C52.0011 44.5974 51.7041 44.4935 51.5037 44.2822C51.3033 44.0727 51.2031 43.7957 51.2031 43.4496H51.2049ZM51.4363 45.4026H53.2946V53.3969H51.4363V45.4026Z' fill='white'/%3E%3Cpath d='M54.0625 45.4033H55.4161V45.3888C55.4161 44.8149 55.4781 44.3248 55.6001 43.9204C55.724 43.5159 55.9171 43.1843 56.1813 42.9293C56.4455 42.6742 56.7898 42.4884 57.2125 42.3681C57.637 42.2497 58.1526 42.1914 58.7629 42.1914H58.9269V43.9003C58.5625 43.9003 58.271 43.9222 58.0524 43.9695C57.8337 44.0151 57.668 44.0971 57.5532 44.2155C57.4402 44.3339 57.3655 44.4888 57.3346 44.6801C57.3018 44.8714 57.2872 45.1137 57.2872 45.4033H58.9269V47.0576H57.2872V53.3977H55.4161V47.0576H54.0625V45.4033Z' fill='white'/%3E%3Cpath d='M59.4727 43.4496C59.4727 43.1034 59.5765 42.8229 59.786 42.6097C59.9955 42.3966 60.2779 42.2891 60.6332 42.2891C60.9884 42.2891 61.2818 42.3966 61.4876 42.6097C61.6917 42.8247 61.7955 43.1034 61.7955 43.4496C61.7955 43.7957 61.6935 44.0727 61.4876 44.2822C61.2836 44.4917 60.9976 44.5974 60.6332 44.5974C60.2688 44.5974 59.9737 44.4935 59.7733 44.2822C59.5729 44.0727 59.4727 43.7957 59.4727 43.4496ZM59.704 45.4026H61.5623V53.3969H59.704V45.4026Z' fill='white'/%3E%3Cpath d='M66.5884 53.4102C65.9599 53.4102 65.386 53.3063 64.8668 53.1005C64.3475 52.8946 63.903 52.6104 63.535 52.2515C63.167 51.8908 62.8791 51.4681 62.6751 50.9798C62.471 50.4934 62.3672 49.9723 62.3672 49.4185C62.3672 48.8646 62.4747 48.329 62.6878 47.8371C62.901 47.3452 63.1961 46.9189 63.5696 46.56C63.9431 46.2011 64.3822 45.9151 64.8886 45.7037C65.3951 45.4924 65.938 45.3867 66.521 45.3867C67.104 45.3867 67.6615 45.4833 68.168 45.6746C68.6745 45.8659 69.1081 46.1355 69.4724 46.4817C69.8368 46.8278 70.121 47.2359 70.3269 47.7041C70.5328 48.1723 70.6348 48.6861 70.6348 49.2418V49.8958H64.1308C64.2583 50.4606 64.5352 50.9161 64.9633 51.2622C65.3915 51.6084 65.9344 51.7814 66.5903 51.7814C67.1095 51.7814 67.5595 51.6539 67.9421 51.3989C68.3247 51.1438 68.6125 50.8031 68.8038 50.375L70.3196 51.2495C69.9735 51.8962 69.4888 52.4173 68.8639 52.8144C68.2409 53.2098 67.4811 53.4084 66.5884 53.4084V53.4102ZM66.521 47.0155C65.9654 47.0155 65.4844 47.1375 65.0799 47.3835C64.6737 47.6294 64.3895 47.9519 64.2255 48.3545H68.7619C68.6253 47.9155 68.3611 47.5821 67.9694 47.3561C67.5777 47.1302 67.0949 47.0155 66.521 47.0155Z' fill='white'/%3E%3Cpath d='M75.1324 53.4112C74.6496 53.4112 74.1741 53.3219 73.704 53.1415C73.234 52.9612 72.8131 52.7007 72.4396 52.3581C72.0662 52.0156 71.7656 51.5966 71.5378 51.1011C71.3101 50.6055 71.1953 50.0407 71.1953 49.4086C71.1953 48.7764 71.3064 48.1988 71.5305 47.7033C71.7528 47.2077 72.0498 46.7869 72.4196 46.4444C72.7876 46.1019 73.2121 45.8414 73.6894 45.661C74.1668 45.4806 74.6568 45.3914 75.1579 45.3914C75.6589 45.3914 76.1599 45.4897 76.6062 45.6847C77.0526 45.8814 77.4206 46.1511 77.7139 46.4972V43.2871H79.5722V53.3984H77.7285V52.2634C77.437 52.6205 77.0635 52.9011 76.6081 53.1051C76.1526 53.3092 75.6607 53.413 75.1324 53.413V53.4112ZM75.433 51.7168C75.7791 51.7168 76.0979 51.6567 76.3894 51.5365C76.6809 51.4162 76.9305 51.2505 77.14 51.0355C77.3496 50.8223 77.5153 50.5727 77.6392 50.2922C77.7631 50.0098 77.8232 49.7055 77.8232 49.3812C77.8232 49.0569 77.7613 48.7654 77.6392 48.483C77.5172 48.2007 77.3496 47.9547 77.14 47.7452C76.9305 47.5357 76.6791 47.3717 76.3894 47.2515C76.0979 47.1312 75.7791 47.0711 75.433 47.0711C75.0868 47.0711 74.7789 47.1312 74.4838 47.2515C74.1886 47.3717 73.9299 47.5339 73.7113 47.7397C73.4927 47.9456 73.3214 48.1897 73.1994 48.4703C73.0773 48.7527 73.0154 49.0569 73.0154 49.3812C73.0154 49.7055 73.0773 50.0116 73.1994 50.2994C73.3232 50.5855 73.4927 50.8332 73.7113 51.0428C73.9299 51.2523 74.1868 51.4181 74.4838 51.5365C74.7789 51.6567 75.0959 51.7168 75.433 51.7168Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2404_38396'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-firstemoji {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2404_30162)'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%23D6CCA7'/%3E%3Cpath d='M22.5507 45.9883H11.5703V56.9686H22.5507V45.9883Z' fill='%23C6B787'/%3E%3Cpath d='M88.4296 45.9883H77.4492V56.9686H88.4296V45.9883Z' fill='%23C6B787'/%3E%3Cpath d='M33.5311 56.9688H22.5508V67.9491H33.5311V56.9688Z' fill='%23C6B787'/%3E%3Cpath d='M77.4491 56.9688H66.4688V67.9491H77.4491V56.9688Z' fill='%23C6B787'/%3E%3Cpath d='M44.5116 67.9492H33.5312V78.9296H44.5116V67.9492Z' fill='%23C6B787'/%3E%3Cpath d='M55.4921 67.9492H44.5117V78.9296H55.4921V67.9492Z' fill='%23C6B787'/%3E%3Cpath d='M66.4686 67.9492H55.4883V78.9296H66.4686V67.9492Z' fill='%23C6B787'/%3E%3Cpath d='M39.0194 24.6758H28.0391V35.6561H39.0194V24.6758Z' fill='%23C6B787'/%3E%3Cpath d='M71.9569 24.6758H60.9766V35.6561H71.9569V24.6758Z' fill='%23C6B787'/%3E%3Cpath d='M17.3495 43.0566H22.9918V44.833H19.206V47.1285H22.9918V48.9048H19.206V53.0313H17.3477V43.0566H17.3495Z' fill='white'/%3E%3Cpath d='M23.7831 43.0844C23.7831 42.7382 23.8869 42.4576 24.0964 42.2445C24.3059 42.0313 24.5883 41.9238 24.9436 41.9238C25.2989 41.9238 25.5922 42.0313 25.798 42.2445C26.0021 42.4595 26.1059 42.7382 26.1059 43.0844C26.1059 43.4305 26.0039 43.7074 25.798 43.9169C25.594 44.1265 25.308 44.2321 24.9436 44.2321C24.5792 44.2321 24.2823 44.1283 24.0819 43.9169C23.8815 43.7074 23.7812 43.4305 23.7812 43.0844H23.7831ZM24.0163 45.0374H25.8746V53.0317H24.0163V45.0374Z' fill='white'/%3E%3Cpath d='M26.9414 45.037H28.7724V46.2267C29.1459 45.4341 29.8291 45.037 30.822 45.037C31.1135 45.037 31.3758 45.0698 31.6072 45.1335C31.8404 45.1973 32.0463 45.2793 32.2284 45.3795L31.5307 47.1285C31.394 47.0374 31.241 46.9627 31.0734 46.9026C30.904 46.8443 30.689 46.8133 30.4248 46.8133C29.8874 46.8133 29.4793 46.9663 29.2023 47.2706C28.9236 47.5766 28.7851 48.074 28.7851 48.7663V53.0295H26.9414V45.0352V45.037Z' fill='white'/%3E%3Cpath d='M35.7675 53.045C34.8839 53.045 34.1497 52.881 33.5667 52.5512C32.9837 52.2233 32.5337 51.7478 32.2148 51.1247L33.9237 50.3559C34.115 50.7057 34.3756 50.9753 34.7035 51.163C35.0314 51.3506 35.414 51.4454 35.8513 51.4454C36.2885 51.4454 36.6492 51.3543 36.8752 51.1721C37.1029 50.9899 37.2177 50.7731 37.2177 50.5199C37.2177 50.3814 37.1648 50.2684 37.061 50.181C36.9553 50.0935 36.8187 50.0188 36.6511 49.9533C36.4816 49.8877 36.2849 49.833 36.0571 49.7911C35.8294 49.7474 35.5926 49.7 35.3466 49.6472C35.0005 49.578 34.6616 49.496 34.3282 49.3994C33.9948 49.3047 33.6978 49.1717 33.4337 49.0022C33.1695 48.8328 32.9563 48.616 32.7924 48.35C32.6284 48.0859 32.5464 47.7525 32.5464 47.3535C32.5464 47.0492 32.6211 46.7559 32.7723 46.4735C32.9217 46.1911 33.1349 45.9415 33.4082 45.7247C33.6814 45.5079 34.0112 45.3367 34.3993 45.211C34.7855 45.0853 35.2173 45.0215 35.691 45.0215C36.4926 45.0215 37.1594 45.1691 37.6932 45.466C38.2252 45.763 38.6478 46.1656 38.9575 46.6776L37.3871 47.4209C37.2231 47.1531 36.9954 46.9417 36.7039 46.785C36.4124 46.6302 36.0754 46.5518 35.6928 46.5518C35.2555 46.5518 34.9331 46.6338 34.7235 46.7996C34.514 46.9654 34.4084 47.1567 34.4084 47.3735C34.4084 47.6249 34.5632 47.8053 34.8729 47.9146C35.1827 48.0239 35.6381 48.1387 36.2393 48.2607C36.5673 48.3209 36.897 48.401 37.2304 48.5012C37.5638 48.6014 37.8663 48.7363 38.1395 48.9057C38.4128 49.0751 38.6333 49.2919 38.8027 49.5579C38.9703 49.8239 39.0559 50.1555 39.0559 50.5545C39.0559 50.8241 38.9922 51.1047 38.8646 51.3943C38.7371 51.6858 38.5385 51.9555 38.2707 52.2033C38.0011 52.451 37.6622 52.6533 37.2523 52.8099C36.8424 52.9666 36.3505 53.045 35.7766 53.045H35.7675Z' fill='white'/%3E%3Cpath d='M39.4141 45.0376H40.7805V43.8224L42.6388 42.5508V45.0376H44.2638V46.6919H42.6388V49.6834C42.6388 50.0295 42.657 50.3101 42.6934 50.5232C42.7298 50.7382 42.8045 50.9022 42.9193 51.0151C43.0323 51.1299 43.1962 51.2046 43.4112 51.241C43.6244 51.2775 43.9104 51.2957 44.2657 51.2957V53.0319H44.007C43.3875 53.0319 42.8701 52.9773 42.4566 52.868C42.0412 52.7587 41.7114 52.5746 41.4655 52.3141C41.2195 52.0554 41.0446 51.7129 40.939 51.2902C40.8333 50.8657 40.7823 50.3356 40.7823 49.6979V46.6919H39.4159V45.0376H39.4141Z' fill='white'/%3E%3Cpath d='M48.543 43.0566H54.4585V44.833H50.3994V47.1285H54.4585V48.9048H50.3994V51.255H54.4585V53.0313H48.543V43.0566Z' fill='white'/%3E%3Cpath d='M55.457 45.0381H57.288V46.0711C57.5431 45.7487 57.8637 45.4936 58.2518 45.306C58.638 45.1183 59.0789 45.0254 59.5708 45.0254C60.1993 45.0254 60.7295 45.1438 61.1631 45.3825C61.5949 45.6211 61.9301 45.9545 62.1669 46.3845C62.4402 45.9709 62.8028 45.6412 63.2528 45.3952C63.7028 45.1493 64.2165 45.0254 64.7904 45.0254C65.8653 45.0254 66.676 45.3187 67.2226 45.9035C67.7691 46.4902 68.0424 47.2918 68.0424 48.3102V53.0306H66.1568V48.4778C66.1568 47.9076 66.0111 47.4576 65.7196 47.1223C65.4281 46.7889 64.9963 46.6213 64.4224 46.6213C63.9214 46.6213 63.5024 46.7908 63.1653 47.1296C62.8283 47.4685 62.6607 47.9804 62.6607 48.6655V53.0306H60.7878V48.425C60.7878 47.8638 60.6457 47.423 60.3633 47.1041C60.0809 46.7835 59.6619 46.6232 59.1062 46.6232C58.587 46.6232 58.157 46.7962 57.8145 47.1442C57.472 47.4922 57.3026 48.0114 57.3026 48.7055V53.0306H55.4589V45.0363L55.457 45.0381Z' fill='white'/%3E%3Cpath d='M72.9731 53.0451C72.3992 53.0451 71.86 52.9412 71.3535 52.7354C70.847 52.5295 70.4079 52.2435 70.0345 51.8791C69.661 51.5147 69.3677 51.0884 69.1527 50.602C68.9377 50.1155 68.832 49.5945 68.832 49.0406C68.832 48.4868 68.9395 47.9548 69.1527 47.4666C69.3658 46.9801 69.661 46.5538 70.0345 46.1894C70.4079 45.8251 70.847 45.539 71.3535 45.3332C71.8581 45.1273 72.3992 45.0234 72.9731 45.0234C73.547 45.0234 74.0845 45.1273 74.5855 45.3332C75.0865 45.539 75.5255 45.8251 75.9045 46.1894C76.2816 46.5538 76.5786 46.9801 76.7936 47.4666C77.0067 47.953 77.1142 48.4777 77.1142 49.0406C77.1142 49.6036 77.0067 50.1137 76.7936 50.602C76.5786 51.0902 76.2834 51.5147 75.9045 51.8791C75.5255 52.2435 75.0865 52.5295 74.5855 52.7354C74.0845 52.9412 73.547 53.0451 72.9731 53.0451ZM72.9731 51.3107C73.3011 51.3107 73.6053 51.2506 73.8895 51.1321C74.1719 51.0119 74.4179 50.8497 74.6274 50.6457C74.8369 50.4416 75.0008 50.1993 75.1193 49.9206C75.2377 49.6437 75.296 49.3504 75.296 49.0425C75.296 48.7346 75.2359 48.4303 75.1193 48.1516C75.0008 47.8746 74.8369 47.6323 74.6274 47.4265C74.4179 47.2224 74.1719 47.0585 73.8895 46.94C73.6071 46.8198 73.3029 46.7597 72.9731 46.7597C72.6434 46.7597 72.3373 46.8198 72.0513 46.94C71.7652 47.0603 71.5193 47.2224 71.3134 47.4265C71.1094 47.6323 70.9472 47.8728 70.8288 48.1516C70.7104 48.4285 70.6502 48.7255 70.6502 49.0425C70.6502 49.3595 70.7104 49.6419 70.8288 49.9206C70.9472 50.1993 71.1094 50.4398 71.3134 50.6457C71.5175 50.8516 71.7652 51.0137 72.0513 51.1321C72.3391 51.2524 72.6452 51.3107 72.9731 51.3107Z' fill='white'/%3E%3Cpath d='M76.2656 54.972C76.6209 54.972 76.9087 54.9538 77.1274 54.9173C77.346 54.8809 77.5136 54.8062 77.632 54.6914C77.7504 54.5766 77.8288 54.4163 77.8652 54.2068C77.9017 53.9973 77.9199 53.7149 77.9199 53.3596V45.0392H79.7782V53.3742C79.7782 54.0028 79.7235 54.5311 79.6142 54.9592C79.5049 55.3874 79.3227 55.7317 79.0676 55.9904C78.8126 56.2491 78.4774 56.4349 78.0638 56.5442C77.6484 56.6536 77.1365 56.7082 76.5261 56.7082H76.2656V54.9738V54.972ZM77.6867 43.0844C77.6867 42.7382 77.7905 42.4576 78 42.2445C78.2095 42.0313 78.4919 41.9238 78.8472 41.9238C79.2025 41.9238 79.4958 42.0313 79.7016 42.2445C79.9057 42.4595 80.0095 42.7382 80.0095 43.0844C80.0095 43.4305 79.9075 43.7074 79.7016 43.9169C79.4976 44.1265 79.2116 44.2321 78.8472 44.2321C78.4828 44.2321 78.1859 44.1283 77.9855 43.9169C77.7851 43.7074 77.6849 43.4305 77.6849 43.0844H77.6867Z' fill='white'/%3E%3Cpath d='M80.5995 43.0844C80.5995 42.7382 80.7033 42.4576 80.9128 42.2445C81.1224 42.0313 81.4047 41.9238 81.76 41.9238C82.1153 41.9238 82.4086 42.0313 82.6145 42.2445C82.8185 42.4595 82.9223 42.7382 82.9223 43.0844C82.9223 43.4305 82.8203 43.7074 82.6145 43.9169C82.4104 44.1265 82.1244 44.2321 81.76 44.2321C81.3956 44.2321 81.0987 44.1283 80.8983 43.9169C80.6979 43.7074 80.5977 43.4305 80.5977 43.0844H80.5995ZM80.8309 45.0374H82.6892V53.0317H80.8309V45.0374Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2404_30162'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-firstmention {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2404_30228)'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%2388CDF5'/%3E%3Cg opacity='0.85'%3E%3Cpath d='M12.9805 52.1759C12.9805 30.3683 28.2076 12.9805 51.9792 12.9805C75.7508 12.9805 86.6564 28.5993 86.6564 45.3002C86.6564 58.3648 79.3872 66.8127 69.6621 66.8127C63.9652 66.8127 60.1338 64.4553 57.8747 61.4091C55.4188 64.6502 51.2923 66.7144 45.9889 66.7144C37.4426 66.7144 30.2717 61.3107 30.2717 50.5053C30.2717 39.6998 37.5409 31.3503 47.9547 31.3503C52.1796 31.3503 55.4207 32.8242 57.483 34.9849L57.8765 31.9387H68.3868L66.5213 49.7201C66.0294 54.5334 67.0132 56.399 69.9591 56.399C73.5937 56.399 76.0496 50.8988 76.0496 44.4148C76.0496 31.9387 66.5213 23.294 50.999 23.294C35.4768 23.294 23.591 35.475 23.591 52.1741C23.591 65.7306 31.7438 76.4376 47.9529 76.4376C57.7763 76.4376 64.3587 73.1965 69.367 67.7929L77.3249 74.3753C70.6441 81.8413 60.919 86.6546 47.8545 86.6546C25.2598 86.6546 12.9805 72.2146 12.9805 52.1741V52.1759ZM56.399 48.0494C56.399 43.728 53.5496 40.7802 49.3265 40.7802C44.1197 40.7802 40.977 44.8083 40.977 49.6217C40.977 53.9431 43.9247 56.7925 48.3446 56.7925C52.7644 56.7925 56.399 53.4531 56.399 48.0494Z' fill='%235CBAEA'/%3E%3C/g%3E%3Cpath d='M36.7557 37.4746H42.398V39.2509H38.6122V41.5465H42.398V43.3228H38.6122V47.4493H36.7539V37.4746H36.7557Z' fill='white'/%3E%3Cpath d='M43.1893 37.5023C43.1893 37.1562 43.2932 36.8756 43.5027 36.6624C43.7122 36.4493 43.9946 36.3418 44.3498 36.3418C44.7051 36.3418 44.9984 36.4493 45.2043 36.6624C45.4083 36.8774 45.5122 37.1562 45.5122 37.5023C45.5122 37.8485 45.4102 38.1254 45.2043 38.3349C45.0002 38.5444 44.7142 38.6501 44.3498 38.6501C43.9855 38.6501 43.6885 38.5462 43.4881 38.3349C43.2877 38.1254 43.1875 37.8485 43.1875 37.5023H43.1893ZM43.4225 39.4554H45.2808V47.4497H43.4225V39.4554Z' fill='white'/%3E%3Cpath d='M46.3477 39.4549H48.1786V40.6446C48.5521 39.8521 49.2353 39.4549 50.2282 39.4549C50.5197 39.4549 50.7821 39.4877 51.0134 39.5515C51.2466 39.6153 51.4525 39.6973 51.6347 39.7975L50.9369 41.5464C50.8003 41.4553 50.6472 41.3807 50.4796 41.3205C50.3102 41.2622 50.0952 41.2313 49.8311 41.2313C49.2936 41.2313 48.8855 41.3843 48.6086 41.6885C48.3298 41.9946 48.1914 42.492 48.1914 43.1843V47.4474H46.3477V39.4531V39.4549Z' fill='white'/%3E%3Cpath d='M55.1737 47.4629C54.2901 47.4629 53.5559 47.299 52.9729 46.9692C52.3899 46.6413 51.9399 46.1658 51.6211 45.5427L53.33 44.7739C53.5213 45.1237 53.7818 45.3933 54.1098 45.5809C54.4377 45.7686 54.8203 45.8633 55.2575 45.8633C55.6948 45.8633 56.0555 45.7722 56.2814 45.59C56.5091 45.4079 56.6239 45.1911 56.6239 44.9378C56.6239 44.7994 56.5711 44.6864 56.4672 44.599C56.3616 44.5115 56.2249 44.4368 56.0573 44.3712C55.8879 44.3056 55.6911 44.251 55.4634 44.2091C55.2357 44.1654 54.9988 44.118 54.7529 44.0652C54.4067 43.9959 54.0679 43.9139 53.7345 43.8174C53.4011 43.7226 53.1041 43.5896 52.8399 43.4202C52.5757 43.2508 52.3626 43.034 52.1986 42.768C52.0347 42.5038 51.9527 42.1704 51.9527 41.7714C51.9527 41.4672 52.0274 41.1739 52.1786 40.8915C52.328 40.6091 52.5411 40.3595 52.8144 40.1427C53.0877 39.9259 53.4174 39.7546 53.8055 39.6289C54.1917 39.5032 54.6235 39.4395 55.0972 39.4395C55.8988 39.4395 56.5656 39.587 57.0994 39.884C57.6314 40.1809 58.0541 40.5836 58.3638 41.0955L56.7934 41.8388C56.6294 41.571 56.4017 41.3597 56.1102 41.203C55.8187 41.0482 55.4816 40.9698 55.099 40.9698C54.6618 40.9698 54.3393 41.0518 54.1298 41.2176C53.9203 41.3834 53.8146 41.5747 53.8146 41.7915C53.8146 42.0429 53.9695 42.2233 54.2792 42.3326C54.5889 42.4419 55.0444 42.5567 55.6456 42.6787C55.9735 42.7388 56.3033 42.819 56.6367 42.9192C56.9701 43.0194 57.2725 43.1542 57.5458 43.3237C57.8191 43.4931 58.0395 43.7099 58.2089 43.9759C58.3765 44.2419 58.4622 44.5735 58.4622 44.9724C58.4622 45.2421 58.3984 45.5226 58.2709 45.8123C58.1433 46.1038 57.9448 46.3734 57.6769 46.6212C57.4073 46.869 57.0684 47.0712 56.6585 47.2279C56.2486 47.3846 55.7567 47.4629 55.1828 47.4629H55.1737Z' fill='white'/%3E%3Cpath d='M58.8203 39.4556H60.1867V38.2404L62.045 36.9688V39.4556H63.6701V41.1098H62.045V44.1013C62.045 44.4475 62.0632 44.728 62.0997 44.9412C62.1361 45.1562 62.2108 45.3202 62.3256 45.4331C62.4385 45.5479 62.6025 45.6226 62.8175 45.659C63.0306 45.6955 63.3167 45.7137 63.6719 45.7137V47.4499H63.4132C62.7938 47.4499 62.2764 47.3952 61.8628 47.2859C61.4474 47.1766 61.1177 46.9926 60.8717 46.7321C60.6258 46.4734 60.4509 46.1309 60.3452 45.7082C60.2395 45.2837 60.1885 44.7536 60.1885 44.1159V41.1098H58.8221V39.4556H58.8203Z' fill='white'/%3E%3Cpath d='M23.9237 50.5918H25.7674L28.7862 54.7875L31.9289 50.5918H33.6925V60.5665H31.8342V53.5705L28.7735 57.697L25.7802 53.6379V60.5665H23.9219V50.5918H23.9237Z' fill='white'/%3E%3Cpath d='M38.7486 60.5801C38.12 60.5801 37.5462 60.4763 37.0269 60.2704C36.5077 60.0645 36.0632 59.7803 35.6952 59.4214C35.3271 59.0607 35.0393 58.638 34.8352 58.1497C34.6312 57.6633 34.5273 57.1423 34.5273 56.5884C34.5273 56.0346 34.6348 55.4989 34.848 55.007C35.0611 54.5151 35.3563 54.0888 35.7298 53.7299C36.1032 53.3692 36.5423 53.085 37.0488 52.8736C37.5535 52.6623 38.0982 52.5566 38.6812 52.5566C39.2642 52.5566 39.8217 52.6532 40.3281 52.8445C40.8328 53.0358 41.2682 53.3054 41.6326 53.6516C41.997 53.9977 42.2812 54.4058 42.487 54.874C42.6929 55.3423 42.7949 55.856 42.7949 56.4117V57.0657H36.2909C36.4184 57.6305 36.6954 58.086 37.1253 58.4321C37.5534 58.7783 38.0964 58.9514 38.7504 58.9514C39.2696 58.9514 39.7215 58.8238 40.1022 58.5688C40.4848 58.3137 40.7727 57.973 40.964 57.5449L42.4816 58.4194C42.1354 59.0661 41.6508 59.5872 41.0259 59.9844C40.401 60.3815 39.6431 60.5783 38.7504 60.5783L38.7486 60.5801ZM38.6794 54.1854C38.1237 54.1854 37.6427 54.3074 37.2383 54.5534C36.832 54.7993 36.5478 55.1218 36.3838 55.5244H40.9202C40.7836 55.0854 40.5194 54.752 40.1277 54.5261C39.736 54.3002 39.2532 54.1854 38.6794 54.1854Z' fill='white'/%3E%3Cpath d='M43.6133 52.5732H45.4442V53.6645C45.7084 53.3311 46.0436 53.0632 46.4481 52.861C46.8525 52.6588 47.3153 52.5586 47.8345 52.5586C48.8274 52.5586 49.6036 52.8537 50.1647 53.444C50.7258 54.0343 51.0046 54.856 51.0046 55.9126V60.5675H49.1317V56.1221C49.1317 55.5173 48.9823 55.0381 48.6817 54.6865C48.3811 54.3349 47.9311 54.16 47.3299 54.16C46.8015 54.16 46.357 54.3422 45.9981 54.7066C45.6374 55.0709 45.4588 55.5956 45.4588 56.2825V60.5675H43.6151V52.5732H43.6133Z' fill='white'/%3E%3Cpath d='M51.4414 52.5728H52.8078V51.3576L54.6661 50.0859V52.5728H56.2912V54.227H54.6661V57.2185C54.6661 57.5647 54.6843 57.8452 54.7208 58.0584C54.7572 58.2734 54.8319 58.4373 54.9467 58.5503C55.0596 58.6651 55.2236 58.7398 55.4386 58.7762C55.6517 58.8126 55.9378 58.8309 56.293 58.8309V60.5671H56.0343C55.4149 60.5671 54.8975 60.5124 54.4839 60.4031C54.0685 60.2938 53.7388 60.1098 53.4928 59.8493C53.2469 59.5906 53.072 59.2481 52.9663 58.8254C52.8606 58.4009 52.8096 57.8707 52.8096 57.2331V54.227H51.4432V52.5728H51.4414Z' fill='white'/%3E%3Cpath d='M56.951 50.6195C56.951 50.2734 57.0549 49.9928 57.2644 49.7796C57.4739 49.5665 57.7563 49.459 58.1116 49.459C58.4668 49.459 58.7601 49.5665 58.966 49.7796C59.1701 49.9946 59.2739 50.2734 59.2739 50.6195C59.2739 50.9657 59.1719 51.2426 58.966 51.4521C58.762 51.6616 58.4759 51.7673 58.1116 51.7673C57.7472 51.7673 57.4502 51.6634 57.2498 51.4521C57.0494 51.2426 56.9492 50.9657 56.9492 50.6195H56.951ZM57.1824 52.5725H59.0407V60.5669H57.1824V52.5725Z' fill='white'/%3E%3Cpath d='M63.9848 60.5802C63.4109 60.5802 62.8717 60.4764 62.3652 60.2705C61.8587 60.0647 61.4197 59.7786 61.0462 59.4142C60.6727 59.0499 60.3794 58.6236 60.1644 58.1371C59.9494 57.6507 59.8438 57.1296 59.8438 56.5758C59.8438 56.022 59.9512 55.49 60.1644 55.0017C60.3776 54.5153 60.6727 54.089 61.0462 53.7246C61.4197 53.3602 61.8587 53.0742 62.3652 52.8683C62.8699 52.6624 63.4109 52.5586 63.9848 52.5586C64.5587 52.5586 65.0962 52.6624 65.5972 52.8683C66.0982 53.0742 66.5373 53.3602 66.9162 53.7246C67.2933 54.089 67.5903 54.5153 67.8053 55.0017C68.0184 55.4881 68.1259 56.0128 68.1259 56.5758C68.1259 57.1388 68.0184 57.6489 67.8053 58.1371C67.5903 58.6254 67.2951 59.0499 66.9162 59.4142C66.5373 59.7786 66.0982 60.0647 65.5972 60.2705C65.0962 60.4764 64.5587 60.5802 63.9848 60.5802ZM63.9848 58.8458C64.3128 58.8458 64.617 58.7857 64.9012 58.6673C65.1836 58.547 65.4296 58.3849 65.6391 58.1809C65.8486 57.9768 66.0126 57.7345 66.131 57.4558C66.2494 57.1788 66.3077 56.8855 66.3077 56.5776C66.3077 56.2697 66.2476 55.9655 66.131 55.6867C66.0126 55.4098 65.8486 55.1675 65.6391 54.9616C65.4296 54.7576 65.1836 54.5936 64.9012 54.4752C64.6188 54.355 64.3146 54.2948 63.9848 54.2948C63.6551 54.2948 63.349 54.355 63.063 54.4752C62.7769 54.5954 62.531 54.7576 62.3251 54.9616C62.1211 55.1675 61.9589 55.408 61.8405 55.6867C61.7221 55.9637 61.662 56.2606 61.662 56.5776C61.662 56.8946 61.7221 57.177 61.8405 57.4558C61.9589 57.7345 62.1211 57.975 62.3251 58.1809C62.5292 58.3867 62.7769 58.5489 63.063 58.6673C63.3508 58.7875 63.6569 58.8458 63.9848 58.8458Z' fill='white'/%3E%3Cpath d='M68.9336 52.5732H70.7646V53.6645C71.0287 53.3311 71.364 53.0632 71.7684 52.861C72.1729 52.6588 72.6356 52.5586 73.1548 52.5586C74.1478 52.5586 74.9239 52.8537 75.485 53.444C76.0461 54.0343 76.3249 54.856 76.3249 55.9126V60.5675H74.452V56.1221C74.452 55.5173 74.3026 55.0381 74.002 54.6865C73.7014 54.3349 73.2514 54.16 72.6502 54.16C72.1219 54.16 71.6773 54.3422 71.3184 54.7066C70.9577 55.0709 70.7791 55.5956 70.7791 56.2825V60.5675H68.9354V52.5732H68.9336Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2404_30228'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}
.badges-firstlike {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%23F9A448'/%3E%3Cg style='mix-blend-mode:multiply' opacity='0.45'%3E%3Cpath d='M79.0455 27.0729C71.0239 19.0512 58.0195 19.0512 49.9996 27.0729C41.978 19.0512 28.9736 19.0512 20.9537 27.0729C12.9321 35.0945 12.9321 48.0989 20.9537 56.1188L49.9996 85.1646L79.0455 56.1188C87.0672 48.0971 87.0672 35.0927 79.0455 27.0729Z' fill='%23F9A448'/%3E%3C/g%3E%3Cpath d='M22.119 45.3379H27.7613V47.1142H23.9755V49.4097H27.7613V51.1861H23.9755V55.3126H22.1172V45.3379H22.119Z' fill='white'/%3E%3Cpath d='M28.5565 45.3656C28.5565 45.0194 28.6604 44.7389 28.8699 44.5257C29.0794 44.3126 29.3618 44.2051 29.717 44.2051C30.0723 44.2051 30.3656 44.3126 30.5715 44.5257C30.7755 44.7407 30.8794 45.0194 30.8794 45.3656C30.8794 45.7118 30.7774 45.9887 30.5715 46.1982C30.3674 46.4077 30.0814 46.5134 29.717 46.5134C29.3527 46.5134 29.0557 46.4095 28.8553 46.1982C28.6549 45.9887 28.5547 45.7118 28.5547 45.3656H28.5565ZM28.7879 47.3186H30.6462V55.3129H28.7879V47.3186Z' fill='white'/%3E%3Cpath d='M31.7109 47.3182H33.5419V48.5079C33.9154 47.7154 34.5986 47.3182 35.5915 47.3182C35.883 47.3182 36.1453 47.351 36.3767 47.4148C36.6099 47.4786 36.8158 47.5605 36.998 47.6607L36.302 49.4097C36.1654 49.3186 36.0123 49.2439 35.8447 49.1838C35.6753 49.1255 35.4603 49.0945 35.1962 49.0945C34.6587 49.0945 34.2506 49.2476 33.9737 49.5518C33.6949 49.8579 33.5565 50.3553 33.5565 51.0476V55.3107H31.7128V47.3164L31.7109 47.3182Z' fill='white'/%3E%3Cpath d='M40.537 55.3262C39.6534 55.3262 38.9192 55.1622 38.338 54.8325C37.755 54.5045 37.3032 54.029 36.9844 53.406L38.6933 52.6371C38.8846 52.9869 39.1451 53.2566 39.473 53.4442C39.801 53.6319 40.1836 53.7266 40.6208 53.7266C41.0581 53.7266 41.4188 53.6355 41.6447 53.4533C41.8724 53.2711 41.9872 53.0543 41.9872 52.8011C41.9872 52.6626 41.9344 52.5497 41.8305 52.4622C41.7267 52.3748 41.59 52.3001 41.4206 52.2345C41.2512 52.1689 41.0544 52.1143 40.8267 52.0724C40.5989 52.0286 40.3621 51.9813 40.1162 51.9284C39.77 51.8592 39.4311 51.7772 39.0977 51.6807C38.7643 51.5859 38.4674 51.4529 38.2032 51.2835C37.939 51.1141 37.7259 50.8973 37.5601 50.6313C37.3961 50.3671 37.3141 50.0337 37.3141 49.6347C37.3141 49.3305 37.3888 49.0371 37.54 48.7548C37.6894 48.4724 37.9026 48.2228 38.1759 48.006C38.4492 47.7892 38.7789 47.6179 39.167 47.4922C39.555 47.3665 39.985 47.3027 40.4587 47.3027C41.2603 47.3027 41.9271 47.4503 42.4609 47.7473C42.9929 48.0442 43.4155 48.4469 43.7253 48.9588L42.1548 49.7021C41.9908 49.4343 41.7631 49.223 41.4716 49.0663C41.1801 48.9114 40.8431 48.8331 40.4605 48.8331C40.0232 48.8331 39.6989 48.9151 39.4913 49.0809C39.2817 49.2467 39.1761 49.4379 39.1761 49.6547C39.1761 49.9062 39.3309 50.0865 39.6406 50.1958C39.9504 50.3052 40.4058 50.4199 41.007 50.542C41.335 50.6021 41.6647 50.6823 41.9981 50.7825C42.3297 50.8827 42.634 51.0175 42.9072 51.1869C43.1805 51.3564 43.401 51.5732 43.5704 51.8392C43.738 52.1052 43.8236 52.4367 43.8236 52.8357C43.8236 53.1054 43.7599 53.3859 43.6323 53.6756C43.5048 53.9671 43.3062 54.2367 43.0384 54.4845C42.7706 54.7323 42.4299 54.9345 42.02 55.0912C41.6101 55.2479 41.1182 55.3262 40.5443 55.3262H40.537Z' fill='white'/%3E%3Cpath d='M44.1875 47.3189H45.5539V46.1037L47.4122 44.832V47.3189H49.0391V48.9731H47.4122V51.9646C47.4122 52.3108 47.4304 52.5913 47.4668 52.8045C47.5033 53.0195 47.578 53.1834 47.6928 53.2964C47.8057 53.4112 47.9697 53.4859 48.1847 53.5223C48.3978 53.5587 48.6839 53.577 49.0391 53.577V55.3132H48.7786C48.1592 55.3132 47.6417 55.2585 47.2282 55.1492C46.8128 55.0399 46.483 54.8559 46.2371 54.5954C45.9911 54.3348 45.8162 53.9942 45.7106 53.5715C45.6049 53.147 45.5539 52.6168 45.5539 51.9792V48.9731H44.1875V47.3189Z' fill='white'/%3E%3Cpath d='M53.3125 45.3379H55.1708V53.5363H58.82V55.3126H53.3143V45.3379H53.3125Z' fill='white'/%3E%3Cpath d='M59.6133 45.3656C59.6133 45.0194 59.7171 44.7389 59.9266 44.5257C60.1362 44.3126 60.4185 44.2051 60.7738 44.2051C61.1291 44.2051 61.4224 44.3126 61.6283 44.5257C61.8323 44.7407 61.9362 45.0194 61.9362 45.3656C61.9362 45.7118 61.8341 45.9887 61.6283 46.1982C61.4242 46.4077 61.1382 46.5134 60.7738 46.5134C60.4094 46.5134 60.1143 46.4095 59.9139 46.1982C59.7135 45.9887 59.6133 45.7118 59.6133 45.3656ZM59.8447 47.3186H61.703V55.3129H59.8447V47.3186Z' fill='white'/%3E%3Cpath d='M62.8359 45.2012H64.6797V51.1732L68.0811 47.32H70.2946L67.2066 50.7761L70.4039 55.3125H68.3416L65.9513 51.8692L64.6815 53.2775V55.3125H62.8378V45.2012H62.8359Z' fill='white'/%3E%3Cpath d='M74.1236 55.3262C73.495 55.3262 72.9212 55.2224 72.4019 55.0165C71.8827 54.8106 71.4382 54.5264 71.0702 54.1675C70.7021 53.8086 70.4143 53.3841 70.2102 52.8958C70.0062 52.4094 69.9023 51.8883 69.9023 51.3345C69.9023 50.7807 70.0098 50.245 70.223 49.7531C70.4362 49.2612 70.7313 48.8349 71.1048 48.476C71.4783 48.1153 71.9173 47.8311 72.4238 47.6197C72.9285 47.4084 73.4732 47.3027 74.0562 47.3027C74.6392 47.3027 75.1967 47.3993 75.7031 47.5906C76.2078 47.7819 76.6432 48.0515 77.0076 48.3977C77.372 48.7438 77.6562 49.1519 77.862 49.6201C78.0679 50.0884 78.1699 50.6021 78.1699 51.1578V51.8118H71.6659C71.7934 52.3766 72.0704 52.8321 72.5003 53.1782C72.9285 53.5244 73.4695 53.6975 74.1254 53.6975C74.6446 53.6975 75.0965 53.5699 75.4791 53.3149C75.8616 53.0598 76.1495 52.7191 76.339 52.291L77.8566 53.1655C77.5104 53.8122 77.0258 54.3333 76.4009 54.7304C75.776 55.1258 75.0181 55.3244 74.1254 55.3244L74.1236 55.3262ZM74.0544 48.9315C73.4987 48.9315 73.0177 49.0535 72.6133 49.2995C72.2088 49.5454 71.9228 49.8679 71.7588 50.2705H76.2952C76.1586 49.8315 75.8944 49.4981 75.5027 49.2722C75.111 49.0463 74.6282 48.9315 74.0544 48.9315Z' fill='white'/%3E%3C/svg%3E%0A%0A");
}
.badges-firstflag {
  background-image: url("data:image/svg+xml;utf8,%3Csvg width='100' height='100' viewBox='0 0 100 100' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2404_37157)'%3E%3Cpath d='M50.0009 100.002C77.6157 100.002 100.002 77.6157 100.002 50.0009C100.002 22.3862 77.6157 0 50.0009 0C22.3862 0 0 22.3862 0 50.0009C0 77.6157 22.3862 100.002 50.0009 100.002Z' fill='%23CCB9F7'/%3E%3Cg opacity='0.8'%3E%3Cpath d='M23.2127 29.7626C40.7426 27.2503 57.7915 22.2766 75.2941 19.6094C73.2373 25.709 71.1877 31.8104 69.1454 37.9154C76.8045 36.6292 84.4399 35.7492 92.2119 35.6399C89.9328 41.4371 87.6755 47.2415 85.4346 53.0532C83.232 58.7775 81.0457 64.5073 78.8704 70.2406C59.577 72.5107 40.8665 78.0637 21.5839 80.392C24.0981 74.3981 26.5904 68.3951 29.0645 62.3848C21.992 63.4797 14.9451 64.2012 7.78516 64.2741C13.0685 52.8328 18.1898 41.3205 23.2127 29.7626Z' fill='%239E7BFF'/%3E%3C/g%3E%3Cpath d='M20.9784 45.3379H26.6207V47.1142H22.8349V49.4097H26.6207V51.1861H22.8349V55.3126H20.9766V45.3379H20.9784Z' fill='white'/%3E%3Cpath d='M27.412 45.3656C27.412 45.0194 27.5158 44.7389 27.7253 44.5257C27.9349 44.3126 28.2172 44.2051 28.5725 44.2051C28.9278 44.2051 29.2211 44.3126 29.427 44.5257C29.631 44.7407 29.7348 45.0194 29.7348 45.3656C29.7348 45.7118 29.6328 45.9887 29.427 46.1982C29.2229 46.4077 28.9369 46.5134 28.5725 46.5134C28.2081 46.5134 27.9112 46.4095 27.7108 46.1982C27.5104 45.9887 27.4102 45.7118 27.4102 45.3656H27.412ZM27.6452 47.3186H29.5035V55.3129H27.6452V47.3186Z' fill='white'/%3E%3Cpath d='M30.5703 47.3182H32.4013V48.5079C32.7748 47.7154 33.458 47.3182 34.4509 47.3182C34.7424 47.3182 35.0047 47.351 35.2361 47.4148C35.4693 47.4786 35.6752 47.5605 35.8573 47.6607L35.1596 49.4097C35.0229 49.3186 34.8699 49.2439 34.7023 49.1838C34.5329 49.1255 34.3179 49.0945 34.0537 49.0945C33.5163 49.0945 33.1082 49.2476 32.8312 49.5518C32.5525 49.8579 32.414 50.3553 32.414 51.0476V55.3107H30.5703V47.3164V47.3182Z' fill='white'/%3E%3Cpath d='M39.3964 55.3262C38.5128 55.3262 37.7786 55.1622 37.1956 54.8325C36.6126 54.5045 36.1626 54.029 35.8438 53.406L37.5527 52.6371C37.7439 52.9869 38.0045 53.2566 38.3324 53.4442C38.6603 53.6319 39.0429 53.7266 39.4802 53.7266C39.9174 53.7266 40.2782 53.6355 40.5041 53.4533C40.7318 53.2711 40.8466 53.0543 40.8466 52.8011C40.8466 52.6626 40.7937 52.5497 40.6899 52.4622C40.5842 52.3748 40.4476 52.3001 40.28 52.2345C40.1105 52.1689 39.9138 52.1143 39.686 52.0724C39.4583 52.0286 39.2215 51.9813 38.9755 51.9284C38.6294 51.8592 38.2905 51.7772 37.9571 51.6807C37.6237 51.5859 37.3267 51.4529 37.0626 51.2835C36.7984 51.1141 36.5852 50.8973 36.4213 50.6313C36.2573 50.3671 36.1753 50.0337 36.1753 49.6347C36.1753 49.3305 36.25 49.0371 36.4012 48.7548C36.5506 48.4724 36.7638 48.2228 37.0371 48.006C37.3103 47.7892 37.6401 47.6179 38.0282 47.4922C38.4144 47.3665 38.8462 47.3027 39.3199 47.3027C40.1215 47.3027 40.7883 47.4503 41.3221 47.7473C41.8541 48.0442 42.2767 48.4469 42.5864 48.9588L41.016 49.7021C40.852 49.4343 40.6243 49.223 40.3328 49.0663C40.0413 48.9114 39.7043 48.8331 39.3217 48.8331C38.8844 48.8331 38.562 48.9151 38.3525 49.0809C38.1429 49.2467 38.0373 49.4379 38.0373 49.6547C38.0373 49.9062 38.1921 50.0865 38.5018 50.1958C38.8116 50.3052 39.267 50.4199 39.8682 50.542C40.1962 50.6021 40.5259 50.6823 40.8593 50.7825C41.1927 50.8827 41.4952 51.0175 41.7684 51.1869C42.0417 51.3564 42.2622 51.5732 42.4316 51.8392C42.5992 52.1052 42.6848 52.4367 42.6848 52.8357C42.6848 53.1054 42.6211 53.3859 42.4935 53.6756C42.366 53.9671 42.1674 54.2367 41.8996 54.4845C41.63 54.7323 41.2911 54.9345 40.8812 55.0912C40.4713 55.2479 39.9794 55.3262 39.4055 55.3262H39.3964Z' fill='white'/%3E%3Cpath d='M43.043 47.3189H44.4094V46.1037L46.2677 44.832V47.3189H47.8928V48.9731H46.2677V51.9646C46.2677 52.3108 46.2859 52.5913 46.3223 52.8045C46.3588 53.0195 46.4334 53.1834 46.5482 53.2964C46.6612 53.4112 46.8251 53.4859 47.0401 53.5223C47.2533 53.5587 47.5393 53.577 47.8946 53.577V55.3132H47.6359C47.0164 55.3132 46.499 55.2585 46.0855 55.1492C45.6701 55.0399 45.3403 54.8559 45.0944 54.5954C44.8484 54.3367 44.6735 53.9942 44.5679 53.5715C44.4622 53.147 44.4112 52.6168 44.4112 51.9792V48.9731H43.0448V47.3189H43.043Z' fill='white'/%3E%3Cpath d='M52.1737 45.3379H57.816V47.1142H54.0302V49.4097H57.816V51.1861H54.0302V55.3126H52.1719V45.3379H52.1737Z' fill='white'/%3E%3Cpath d='M58.8398 45.2012H60.6981V55.3125H58.8398V45.2012Z' fill='white'/%3E%3Cpath d='M65.4409 55.3265C64.9582 55.3265 64.4826 55.2372 64.0126 55.0568C63.5426 54.8765 63.1217 54.6159 62.7482 54.2734C62.3748 53.9309 62.0741 53.5119 61.8464 53.0163C61.6187 52.5208 61.5039 51.956 61.5039 51.3238C61.5039 50.6917 61.615 50.1141 61.8391 49.6186C62.0614 49.123 62.3584 48.7022 62.7282 48.3597C63.0962 48.0172 63.5207 47.7566 63.998 47.5763C64.4754 47.3959 64.9654 47.3066 65.4664 47.3066C65.9948 47.3066 66.4812 47.4032 66.9294 47.5927C67.3758 47.784 67.7438 48.0445 68.0353 48.3742V47.3194H69.879V55.3137H68.0353V54.1787C67.7438 54.5358 67.3703 54.8163 66.9148 55.0204C66.4594 55.2244 65.9675 55.3283 65.4391 55.3283L65.4409 55.3265ZM65.7416 53.6321C66.0877 53.6321 66.4065 53.572 66.698 53.4518C66.9895 53.3315 67.2391 53.1657 67.4486 52.9508C67.6581 52.7376 67.8239 52.488 67.9478 52.2074C68.0699 51.9251 68.1318 51.6208 68.1318 51.2965C68.1318 50.9722 68.0699 50.6807 67.9478 50.3983C67.8258 50.1159 67.6581 49.87 67.4486 49.6605C67.2391 49.451 66.9877 49.287 66.698 49.1668C66.4065 49.0465 66.0877 48.9864 65.7416 48.9864C65.3954 48.9864 65.0875 49.0465 64.7924 49.1668C64.4972 49.287 64.2385 49.4491 64.0199 49.655C63.8013 49.8609 63.63 50.105 63.508 50.3856C63.3859 50.668 63.3239 50.9722 63.3239 51.2965C63.3239 51.6208 63.3859 51.9269 63.508 52.2147C63.63 52.5008 63.8013 52.7485 64.0199 52.958C64.2385 53.1676 64.4954 53.3334 64.7924 53.4518C65.0875 53.572 65.4045 53.6321 65.7416 53.6321Z' fill='white'/%3E%3Cpath d='M77.2196 54.0967C76.9281 54.4793 76.5547 54.7799 76.0992 54.9985C75.6437 55.2172 75.1464 55.3265 74.6089 55.3265C74.1261 55.3265 73.6506 55.2372 73.1806 55.0568C72.7105 54.8765 72.2897 54.6159 71.9162 54.2734C71.5427 53.9309 71.2421 53.5119 71.0144 53.0163C70.7867 52.5208 70.6719 51.956 70.6719 51.3238C70.6719 50.6917 70.783 50.1141 71.0071 49.6186C71.2294 49.123 71.5263 48.7022 71.8962 48.3597C72.2642 48.0172 72.6887 47.7566 73.166 47.5763C73.6433 47.3959 74.1334 47.3066 74.6344 47.3066C75.1628 47.3066 75.6492 47.4105 76.0974 47.6145C76.5437 47.8204 76.9117 48.0991 77.2032 48.4489V47.3194H79.047V55.0095C79.047 55.5669 78.9577 56.088 78.781 56.5744C78.6024 57.059 78.3419 57.4854 77.9957 57.8497C77.6496 58.2141 77.2196 58.502 76.7041 58.7133C76.1885 58.9246 75.5945 59.0303 74.9205 59.0303C74.4012 59.0303 73.9294 58.9738 73.5067 58.859C73.0822 58.7443 72.7033 58.5858 72.3662 58.3817C72.0292 58.1777 71.7322 57.9354 71.4771 57.6584C71.2221 57.3797 71.0035 57.0736 70.8213 56.7366L72.4609 55.74C72.7524 56.2775 73.0804 56.6783 73.4447 56.9424C73.8091 57.2066 74.3101 57.3378 74.9478 57.3378C75.2939 57.3378 75.6073 57.274 75.8915 57.1465C76.1739 57.019 76.4126 56.8514 76.6093 56.6418C76.8043 56.4323 76.9555 56.1864 77.0593 55.904C77.1632 55.6216 77.216 55.3301 77.216 55.0295V54.1004L77.2196 54.0967ZM74.9113 53.6321C75.2575 53.6321 75.5763 53.572 75.8678 53.4518C76.1593 53.3315 76.4089 53.1657 76.6184 52.9508C76.8279 52.7376 76.9937 52.488 77.1176 52.2074C77.2397 51.9251 77.3016 51.6208 77.3016 51.2965C77.3016 50.9722 77.2397 50.6807 77.1176 50.3983C76.9955 50.1159 76.8279 49.87 76.6184 49.6605C76.4089 49.451 76.1575 49.287 75.8678 49.1668C75.5763 49.0465 75.2575 48.9864 74.9113 48.9864C74.5652 48.9864 74.2573 49.0465 73.9622 49.1668C73.667 49.287 73.4083 49.4491 73.1897 49.655C72.9711 49.8609 72.7998 50.105 72.6777 50.3856C72.5557 50.668 72.4937 50.9722 72.4937 51.2965C72.4937 51.6208 72.5557 51.9269 72.6777 52.2147C72.7998 52.5008 72.9711 52.7485 73.1897 52.958C73.4083 53.1676 73.6652 53.3334 73.9622 53.4518C74.2573 53.572 74.5743 53.6321 74.9113 53.6321Z' fill='white'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2404_37157'%3E%3Crect width='100' height='100' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A%0A");
}

/* form */
.input-item input {
  height: 36px;
  padding: 0 12px;
  border: 2px solid var(--color-gr-10);
  border-radius: 12px;
}

/* combobox */
.combobox {
  position: relative;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}
.combobox-btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 36px;
  padding: 0 34px 0 12px;
  border: 2px solid var(--color-gr-10);
  border-radius: 12px;
  line-height: 1.2;
  text-align: left;
}
.combobox-btn::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 20px;
  height: 20px;
  background: transparent url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7.64018 10.3681C6.98886 9.58653 7.54465 8.3999 8.56205 8.3999H15.438C16.4554 8.3999 17.0111 9.58653 16.3598 10.3681L12.9219 14.4937C12.4421 15.0694 11.5579 15.0694 11.0781 14.4937L7.64018 10.3681Z' fill='%23052832'/%3E%3C/svg%3E%0A") no-repeat 50%/contain;
  transform: translateY(-50%);
}
.combobox-btn:hover, .combobox-btn:focus {
  background-color: var(--color-gr-05);
}
.combobox-btn:active {
  color: var(--primary-50);
}
.combobox-btn:active::after,
.combobox-btn:active .color-chip {
  opacity: 0.5;
}
.combobox input {
  height: 36px;
  padding: 2px 12px 0 12px;
  border: 0;
}
.combobox .input-search {
  padding-left: 40px;
  background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18.031 16.617L22.314 20.899L20.899 22.314L16.617 18.031C15.0237 19.3082 13.042 20.0029 11 20C6.032 20 2 15.968 2 11C2 6.032 6.032 2 11 2C15.968 2 20 6.032 20 11C20.0029 13.042 19.3082 15.0237 18.031 16.617ZM16.025 15.875C17.2941 14.5699 18.0029 12.8204 18 11C18 7.132 14.867 4 11 4C7.132 4 4 7.132 4 11C4 14.867 7.132 18 11 18C12.8204 18.0029 14.5699 17.2941 15.875 16.025L16.025 15.875Z' fill='%23052832' opacity='0.5'/%3E%3C/svg%3E%0A") no-repeat 12px 50%/20px;
}
.combobox .input-search::placeholder {
  font-size: 13px !important;
}
.combobox .dropdown {
  padding: 8px 0;
}
.combobox .dropdown-list {
  margin: 4px 4px 0;
}
.combobox .dropdown-item .color-chip {
  width: 20px;
  height: 20px;
}

.dropdown {
  position: absolute;
  left: -4px;
  top: -4px;
  z-index: 3;
  display: none;
  overflow-y: auto;
  width: max-content;
  max-width: 328px;
  min-width: 328px;
  max-height: 452px;
  padding: 8px;
  border: 2px solid var(--color-gr-10);
  border-radius: 12px;
  background-color: var(--color-white);
  box-shadow: 0 8px 16px var(--primary-05);
  font-weight: 700;
}
.dropdown.is-active {
  display: block;
}
.dropdown.base .dropdown-item > * {
  padding-left: 16px;
}

.dropdown-item > * {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 8px;
  width: 100%;
  border-radius: 8px;
  padding: 8px 16px 8px 32px;
  text-align: left;
  text-decoration: none !important;
}
.dropdown-item > *:hover, .dropdown-item > *:focus {
  background-color: var(--color-gr-05);
}
.dropdown-item + .dropdown-item {
  margin-top: 4px;
}
.dropdown-item .color-chip {
  width: 14px;
  margin-right: 8px;
  padding: 0;
}
.dropdown-item .category {
  font-size: 13px;
  font-weight: 400;
  color: var(--primary-50);
}

.dropdown-list.link .dropdown-item > * {
  padding-left: 16px;
}
.dropdown-list.link .dropdown-item .description {
  padding-left: 24px;
}

.dropdown-item.is-active > *,
.combobox .dropdown-item > *:hover,
.combobox .dropdown-item > *:focus {
  background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M10.0007 15.172L19.1927 5.979L20.6077 7.393L10.0007 18L3.63672 11.636L5.05072 10.222L10.0007 15.172Z' fill='%23052832'/%3E%3C/svg%3E%0A") no-repeat 4px 50%/20px;
}

.right-top-wrap {
  position: relative;
}
.right-top-wrap .dropdown {
  left: auto;
  right: -4px;
}

/* checkbox */
.chk-wrap {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 14px;
}
.chk-wraplabel {
  font-size: 14px;
}
.chk-wrap input[type=checkbox] {
  display: none;
}
.chk-wrap .chk-mark {
  flex-shrink: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-50);
  border-radius: 50%;
  background: #fff;
  position: relative;
  margin-right: 8px;
  vertical-align: middle;
}
.chk-wrap.right .chk-mark {
  margin-left: 8px;
  margin-right: 0;
}
.chk-wrap.small .chk-mark {
  width: 16px;
  height: 16px;
}
.chk-wrap.small input[type=checkbox]:checked + .chk-mark::after {
  top: 2px;
  left: 2px;
  width: 8px;
  height: 5px;
}
.chk-wrap input[type=checkbox]:checked + .chk-mark {
  border-color: var(--secondary);
  background: var(--secondary);
}
.chk-wrap input[type=checkbox]:checked + .chk-mark::after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--color-white);
  border-bottom: 2px solid var(--color-white);
  transform: rotate(-45deg);
}

/* radio */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.radio-wrap {
  display: flex;
  align-items: center;
  padding-top: 7px;
  padding-bottom: 7px;
}
.radio-wrap label {
  cursor: pointer;
  font-size: 16px;
  user-select: none;
}
.radio-wrap input[type=radio] {
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-50);
  border-radius: 50%;
  cursor: pointer;
  margin-right: 10px;
  transition: all 0.2s ease;
}
.radio-wrap input[type=radio]:hover:not(:disabled) {
  border-color: var(--secondary);
}
.radio-wrap input[type=radio]:checked {
  border-color: var(--secondary);
  background: var(--secondary);
  box-shadow: inset 0 0 0 2px var(--color-white);
}
.radio-wrap input[type=radio]:disabled {
  background-color: var(--primary-20);
}
.radio-wrap.small label {
  font-size: 14px;
  font-weight: 700;
}

.radio-item {
  display: flex;
  align-items: flex-start;
}
.radio-item label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
}
.radio-item label strong {
  font-size: 15px;
  font-weight: 700;
}

/* modal */
.modal-overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  width: 100%;
  height: 100dvh;
  padding: 0 var(--side-padding);
  background: rgba(0, 0, 0, 0.4);
}
.modal-overlay .modal-dialog {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 90vw;
  min-width: 520px;
  max-height: 90vh;
  padding: 40px;
  border-radius: 16px;
  background-color: var(--color-white);
}
.modal-overlay .modal-header {
  position: relative;
  flex-shrink: 0;
  padding-bottom: 40px;
}
.modal-overlay .modal-header-title {
  font-size: 16px;
  font-family: "SamsungHead";
  font-weight: 700;
}
.modal-overlay .modal-header-text {
  margin-top: 8px;
}
.modal-overlay .modal-header.include-btn {
  display: flex;
  justify-content: space-between;
}
.modal-overlay .modal-header.include-btn .modal-header-title {
  font-size: 20px;
}
.modal-overlay .modal-header .btn-wrap.btn-close-wrap {
  padding: unset;
}
.modal-overlay .modal-header .btn-wrap.btn-close-wrap .btn {
  padding-left: 10px;
  padding-right: 10px;
}
.modal-overlay .modal-body {
  min-height: 0;
  overflow-y: auto;
  overflow-y: auto;
  margin: 0 -20px;
  padding: 0 20px;
}
.modal-overlay .modal-footer {
  flex-shrink: 0;
  padding-top: 40px;
}
.modal-overlay .modal-footer .btn-wrap {
  padding-top: 0;
}
.modal-overlay .btn-wrap {
  justify-content: center;
  padding-top: 40px;
}
.modal-overlay .btn-wrap .btn {
  text-transform: none;
}
.modal-overlay.is-active {
  display: flex;
}

.btn:not(.btn-toggle),
.chip--s,
.tab-navigation,
.list-column,
.topic-stats .label {
  text-transform: uppercase;
}

.tab-navigation.full {
  width: 100%;
  padding: 4px 2px;
  border-radius: 12px;
  background-color: var(--primary-05);
}
.tab-navigation.full .tab-item-wrap {
  display: flex;
}
.tab-navigation.full .tab-item-wrap .tab-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2px;
  padding: 3.5px 12px;
  flex: 1 1 25%;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}
.tab-navigation.full .tab-item-wrap .tab-item:hover, .tab-navigation.full .tab-item-wrap .tab-item:focus {
  background-color: var(--color-gr-05);
  text-decoration: none !important;
}
.tab-navigation.full .tab-item-wrap .tab-item:active {
  color: var(--primary-50);
}
.tab-navigation.full .tab-item-wrap .tab-item.is-active {
  background-color: var(--color-white);
}
.tab-navigation.full .tab-item-wrap .tab-item.is-active:hover, .tab-navigation.full .tab-item-wrap .tab-item.is-active:focus {
  background-color: var(--color-gr-10);
}

.tab-navigation.bg {
  padding: 4px 2px;
  border-radius: 12px;
  background-color: var(--primary-05);
}
.tab-navigation.bg .tab-item-wrap {
  display: flex;
}
.tab-navigation.bg .tab-item-wrap .tab-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 2px;
  padding: 3.5px 12px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
}
.tab-navigation.bg .tab-item-wrap .tab-item:hover, .tab-navigation.bg .tab-item-wrap .tab-item:focus {
  background-color: var(--color-gr-05);
  text-decoration: none !important;
}
.tab-navigation.bg .tab-item-wrap .tab-item:active {
  color: var(--primary-50);
}
.tab-navigation.bg .tab-item-wrap .tab-item.is-active {
  background-color: var(--color-white);
}
.tab-navigation.bg .tab-item-wrap .tab-item.is-active:hover, .tab-navigation.bg .tab-item-wrap .tab-item.is-active:focus {
  background-color: var(--color-gr-10);
}

/* form */
.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* error */
.error-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 600px;
  padding: 0 var(--side-padding) 40px;
}
.error-wrap > * {
  color: #1e1e1e;
  text-align: center;
}
.error-wrap .message-code {
  font-family: "SamsungHead";
  font-weight: 700;
  font-size: 100px;
  line-height: 1.2;
}
.error-wrap .message-title {
  margin-top: 20px;
  font-size: 24px;
  font-family: "SamsungHead";
  font-weight: 700;
}
.error-wrap .message-description {
  margin-top: 4px;
  font-size: 16px;
}
.error-wrap .base-btn-group {
  gap: 10px;
  justify-content: center;
  max-width: unset;
}

/* toast */
.toast {
  position: fixed;
  width: 400px;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 12px;
  margin-right: 12px;
  animation: slideUp 0.3s ease-out;
}
.toast-inner {
  display: flex;
  gap: 12px;
  position: relative;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  background: var(--color-black-80);
  color: var(--color-white);
}
.toast-inner .toast-icon .ico {
  width: 24px;
  height: 24px;
}
.toast-inner .toast-content {
  padding-right: 36px;
}
.toast-inner .toast-close {
  display: block;
  position: absolute;
  top: 16px;
  right: 16px;
}
.toast-inner .toast-close .ico {
  width: 24px;
  height: 24px;
}

@keyframes slideUp {
  from {
    transform: translateX(-50%) translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
}
@media (min-width: 64.063em) {
  /* combobox */
  .multiple-forms {
    display: flex;
    border: 2px solid var(--color-gr-10);
    border-radius: 12px;
  }
  .multiple-forms .combobox {
    flex-grow: 1;
  }
  .multiple-forms .combobox:not(:first-of-type)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 20px;
    border-left: 1px solid var(--color-gr-10);
    transform: translateY(-50%);
  }
  .multiple-forms .combobox-btn {
    height: 32px;
    border: 0;
    border-radius: 0;
  }
  .multiple-forms .combobox:first-child .combobox-btn {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
  }
  .multiple-forms .combobox:last-child .combobox-btn {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
  }
  .multiple-forms .dropdown {
    left: -6px;
    top: -6px;
  }
  /* tab */
  .tab-navigation .combobox-btn {
    display: none;
  }
  .tab-navigation .dropdown {
    position: static;
    display: inline-flex;
    align-items: center;
    column-gap: 4px;
    overflow-y: visible;
    min-width: auto;
    max-height: none;
    padding: 4px;
    border: 0;
    background-color: var(--color-gr-05);
    box-shadow: none;
  }
  .tab-navigation .tab-item {
    padding: 3.5px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
  }
  .tab-navigation .tab-item:hover, .tab-navigation .tab-item:focus {
    background-color: var(--color-gr-05);
    text-decoration: none !important;
  }
  .tab-navigation .tab-item:active {
    color: var(--primary-50);
  }
  .tab-navigation .tab-item.is-active {
    background-color: var(--color-white);
  }
  .tab-navigation .tab-item.is-active:hover, .tab-navigation .tab-item.is-active:focus {
    background-color: var(--color-gr-10);
  }
  .tab-navigation .tab-item .sup {
    padding-left: 4px;
    color: var(--primary-50);
  }
}
@media (max-width: 64em) {
  /* button */
  .btn-wrap, .chip-list {
    gap: 0.4rem;
  }
  .btn-wrap .btn {
    column-gap: 0.8rem;
    min-width: 4rem;
    height: 3.6rem;
    padding: 0.2rem 1rem 0 1rem;
    border-width: 0.2rem;
    border-radius: 1.2rem;
    font-size: 1.3rem;
  }
  .btn.primary, .btn.secondary {
    padding: 0.2rem 1.2rem 0 1.2rem;
  }
  .btn.small {
    min-width: 5.6rem;
    height: 2.8rem;
    border-radius: 0.8rem;
  }
  .btn:hover::after, .btn:focus::after {
    width: calc(100% + 0.4rem);
    height: calc(100% + 0.4rem);
  }
  .btn svg {
    width: 1.6rem;
  }
  .btn .count {
    margin-left: -0.4rem;
  }
  .multiple-btns {
    column-gap: 0.4rem;
    padding: 0.4rem;
    border-radius: 1.2rem;
  }
  .multiple-btns .btn {
    height: 2.8rem;
    border-radius: 0.8rem;
  }
  /* icons */
  .ico {
    width: 1.6rem;
    height: 1.6rem;
  }
  .ico-sns-x {
    padding: 0.3rem;
  }
  /* chip */
  .chip-list {
    gap: 0.4rem;
    margin-top: 0;
  }
  .chip {
    column-gap: 0.8rem;
    height: 2.4rem;
    padding: 0 0.8rem;
    border-radius: 1.2rem;
    font-size: 1.1rem;
  }
  .chip.new::before {
    width: 1.4rem;
    height: 1.4rem;
    margin-left: -0.3rem;
  }
  .chip--s {
    height: 2.2rem;
    padding: 0 0.8rem;
  }
  .color-chip {
    width: 1.4rem;
    height: 1.4rem;
  }
  .color-chip .inner {
    width: 1rem;
    height: 1rem;
  }
  /* form */
  .input-item input {
    height: 3.6rem;
    padding: 0 2rem;
    border-width: 0.2rem;
    border-radius: 1.2rem;
  }
  /* combobox */
  .combobox {
    font-size: 1.3rem;
  }
  .combobox-btn {
    gap: 0.8rem;
    height: 3.6rem;
    padding-right: 3.2rem;
    padding-left: 1.2rem;
    border-width: 0.2rem;
    border-radius: 1.2rem;
  }
  .combobox-btn::after {
    right: 1.2rem;
    width: 2rem;
    height: 2rem;
  }
  .combobox input {
    height: 3.6rem;
    padding: 0.2rem 1.2rem 0 1.2rem;
  }
  .combobox .input-search {
    padding-left: 4rem;
    background-position-x: 1.2rem;
    background-size: 2rem;
  }
  .combobox .dropdown {
    width: calc(100% + 0.8rem);
    max-width: none;
    padding: 0.8rem 0;
  }
  .combobox .dropdown-list {
    margin: 0.4rem 0.4rem 0;
  }
  .combobox .dropdown-item .color-chip {
    width: 2rem;
    height: 2rem;
  }
  .dropdown {
    left: -0.4rem;
    top: -0.4rem;
    min-width: 20rem;
    max-height: 45.2rem;
    padding: 0.8rem;
    border-width: 0.2rem;
    border-radius: 1.2rem;
  }
  .dropdown.base .dropdown-item > * {
    padding-left: 1.6rem;
  }
  .dropdown-item > * {
    row-gap: 0.8rem;
    border-radius: 0.8rem;
    padding: 0.8rem 1.6rem 0.8rem 3.2rem;
  }
  .dropdown-item + .dropdown-item {
    margin-top: 0.4rem;
  }
  .dropdown-item .color-chip {
    padding: 0;
  }
  .dropdown-item.is-active > *,
  .combobox .dropdown-item > *:hover,
  .combobox .dropdown-item > *:focus {
    background-position-x: 0.4rem;
    background-size: 2rem;
  }
  .right-top-wrap .dropdown {
    right: -0.4rem;
  }
  .multiple-forms {
    flex-direction: column;
    gap: 0.4rem;
  }
  /* form */
  .form-wrap {
    gap: 3.2rem;
  }
  /* tab */
  .tab-navigation .combobox-btn {
    border: 0;
    background-color: var(--color-white);
  }
  .tab-navigation .dropdown {
    min-width: 20rem;
    padding: 0.8rem;
  }
  .tab-navigation .dropdown .tab-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    border-radius: 0.8rem;
    padding: 0.8rem 1.6rem 0.8rem 3.2rem;
    text-align: left;
  }
  .tab-navigation .dropdown .tab-item.is-active {
    background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M10.0007 15.172L19.1927 5.979L20.6077 7.393L10.0007 18L3.63672 11.636L5.05072 10.222L10.0007 15.172Z' fill='%23052832'/%3E%3C/svg%3E%0A") no-repeat 0.4rem 50%/2rem;
  }
  .tab-navigation .dropdown .tab-item:hover, .tab-navigation .dropdown .tab-item:focus {
    background-color: var(--color-gr-05);
  }
  /* modal */
  .modal-overlay .modal-dialog {
    min-width: unset;
    padding: 4rem;
    max-height: calc(100vh - 5.4rem);
  }
  .modal-overlay .modal-header {
    padding-bottom: 2rem;
  }
  .modal-overlay .modal-header-title {
    font-size: 1.5rem;
  }
  .modal-overlay .modal-header-text {
    font-size: 1.4rem;
  }
  .modal-overlay .modal-footer {
    padding-top: 2rem;
  }
  .modal-overlay .btn-wrap {
    padding-top: 4rem;
  }
  .modal-overlay .btn-wrap .btn {
    width: 100%;
    min-height: 3.6rem;
  }
  .modal-overlay .btn-wrap.reverse .btn:first-child {
    order: 1;
  }
  .modal-overlay .btn-wrap.row {
    flex-direction: unset;
  }
  .modal-overlay p + p {
    margin-top: 8px;
  }
  .modal-overlay p strong {
    font-size: 16px;
    font-family: "SamsungHead";
    font-weight: 700;
  }
  /* error */
  .error-wrap {
    min-height: calc(100vh - var(--header-height));
    padding-bottom: 14.6rem;
  }
  .error-wrap .message-code {
    font-size: 6rem;
  }
  .error-wrap .message-title {
    font-size: 1.6rem;
  }
  .error-wrap .message-description {
    font-size: 1.4rem;
  }
  .error-wrap .base-btn-group {
    position: absolute;
    bottom: 4rem;
    width: calc(100% - 4rem);
  }
  .error-wrap .base-btn-group .base-button {
    width: 100%;
  }
}
@media (max-width: 47.938em) {
  /* tab */
  .tab-navigation.full, .tab-navigation.bg {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .tab-navigation.full::-webkit-scrollbar, .tab-navigation.bg::-webkit-scrollbar {
    display: none;
  }
  .tab-navigation.full .tab-item-wrap, .tab-navigation.bg .tab-item-wrap {
    flex-wrap: nowrap;
    min-width: max-content;
  }
  .tab-navigation.full .tab-item-wrap .tab-item, .tab-navigation.bg .tab-item-wrap .tab-item {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 3.5px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
  }
  .tab-navigation.full .tab-item-wrap .tab-item.is-active, .tab-navigation.bg .tab-item-wrap .tab-item.is-active {
    background-color: var(--color-white);
  }
  /* modal */
  .modal-overlay {
    align-items: flex-end;
    padding: 0;
  }
  .modal-overlay .modal-dialog {
    width: 100%;
    padding: 4rem 2rem 2rem;
    max-width: none;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .modal-overlay .modal-body {
    font-size: 1.4rem;
  }
  .modal-overlay .btn-wrap {
    flex-direction: column;
  }
  .modal-overlay p strong {
    font-size: 1.5rem;
  }
  /* toast */
  .toast {
    bottom: 1.2rem;
    width: calc(100% - 2.4rem);
    left: auto;
    transform: unset;
  }
  .toast-inner {
    padding: 1.2rem;
    font-size: 1.4rem;
    box-shadow: 0 0.8rem 1.6rem 0 var(--primary-05);
  }
}
/* layout */
.wrap {
  min-width: 320px;
}

.container {
  min-height: calc(100vh - var(--footer-height));
  padding-top: var(--header-height);
  background-color: #f2f4f6;
}
.container.desktop-white {
  background-color: var(--color-white);
}

.content:has(.editor-container) .list-view {
  padding-bottom: 160px;
}
.content .inner.small {
  width: 1200px;
  margin: 0 auto;
}
.content .inner.small h2.h1-typo {
  margin-top: 60px;
}

.detail-container, .page-header .inner, .list-view {
  max-width: var(--content-width);
  margin: 0 auto;
}

.list-view {
  padding: 0 var(--side-padding) 40px;
  transition: padding-bottom 0.3s;
}

.list-header {
  position: sticky;
  top: var(--header-height);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-top: 40px;
  background-color: #f2f4f6;
}
.list-header::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 30px;
  background: linear-gradient(#f2f4f6 0%, transparent 100%);
}
.list-header .btn-wrap {
  margin-left: auto;
}
.list-header .tracking .dropdown-item > a,
.list-header .tracking .dropdown-item > button {
  padding-top: 4px;
  padding-bottom: 4px;
  background-position-y: 4px;
}
.list-header .tracking .dropdown-item + .dropdown-item {
  margin-top: 16px;
}
.list-header .tracking .label {
  font-size: 13px;
}
.list-header .tracking .description {
  width: 100%;
  padding-left: 24px;
  font-size: 11px;
  font-weight: 400;
}

.page-header {
  position: relative;
  z-index: 2;
  background-color: var(--color-white);
}
.page-header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px var(--side-padding);
}
.page-header .inner.padding-bottom-none {
  padding-bottom: 0;
}

.detail-container {
  padding: 60px var(--side-padding-large);
}

.overflow {
  overflow: hidden;
}

.caution {
  color: var(--color-red) !important;
}

.activation {
  color: var(--secondary) !important;
}

.align-ct {
  text-align: center;
}

@media (min-width: 64.063em) {
  .display-mo {
    display: none;
  }
}
@media (max-width: 80em) {
  .container.bg-white {
    background-color: var(--color-white);
  }
  .content .inner.small {
    width: auto;
    padding: 0 2rem;
  }
  .content .inner.small h2.h1-typo {
    margin-top: 0;
  }
}
@media (max-width: 64em) {
  .inner.small {
    padding: 0 1.6rem;
  }
  .list-header {
    flex-wrap: wrap;
    gap: 1.6rem;
    margin-bottom: 1.6rem;
    padding-top: 1.6rem;
  }
  .list-header::after {
    height: 3rem;
  }
  .list-header .multiple-forms,
  .list-header c-sdf-category-selector {
    width: 100%;
  }
  .page-header {
    box-shadow: 0 0.8rem 1.6rem var(--primary-05);
  }
  .page-header .inner {
    flex-wrap: wrap;
    padding: 2rem;
  }
  .page-header .category-title {
    align-items: center;
    width: 100%;
  }
  .page-header .category-title .description {
    display: none;
  }
  .page-header .topic-stats {
    width: 100%;
    margin-top: 1.2rem;
  }
  .detail-container {
    padding-top: 1.6rem;
    padding-bottom: 4rem;
  }
}
/* home */
.intro-banner {
  background: url("../../assets/images/common/bg-intro.png") no-repeat 50%/cover;
  color: var(--color-white);
  text-align: center;
}
.intro-banner .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 40px;
  max-width: 840px;
  margin: 0 auto;
  height: 600px;
  padding: 0 60px;
}
.intro-banner p {
  font-size: 20px;
}

@media (max-width: 64em) {
  /* home */
  .intro-banner .inner {
    row-gap: 2rem;
    height: 38rem;
    padding: 0 4rem;
  }
  .intro-banner p {
    font-size: 1.5rem;
  }
}
/* categories */
.categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.category-title {
  position: relative;
  padding: 20px 0 20px 160px;
}
.category-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  border-radius: 4px;
  background-color: var(--category-color);
}
.category-title a:hover, .category-title a:focus {
  text-decoration: none !important;
}
.category-title .name {
  font-size: 32px;
  font-family: "SamsungHead";
  font-weight: 700;
}
.category-title .description {
  font-size: 20px;
}
.category-title .category-logo {
  position: absolute;
  left: 48px;
  top: 20px;
  width: 80px;
}
.category-title .color-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  border-radius: 4px;
}
.category-title.type-sub {
  padding: 10px 0;
}
.category-title.type-sub::before {
  content: none;
}
.category-title.type-sub .color-bar {
  display: none;
}
.category-item {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  padding: 20px;
  border-radius: 20px;
  background-color: var(--color-white);
}
.category-item .category-title {
  width: 49.6599%;
  padding-left: 124px;
}
.category-item .category-title .name {
  font-size: 20px;
}
.category-item .category-title .description {
  font-size: 16px;
}
.category-item .category-title .category-logo {
  width: 60px;
}
.category-item .category-title .chip-list {
  margin-top: 16px;
}
.category-item .topics {
  width: 46.932%;
  padding: 20px 0;
}
.category-item .topics .value {
  font-size: 20px;
  font-family: "SamsungHead";
  font-weight: 700;
  text-align: right;
}
.category-item .topics .value .new {
  padding-right: 8px;
  font-size: 12px;
  font-family: "SamsungBody";
  font-weight: 700;
  color: var(--primary-70);
}
.category-item .topics .latest li {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.category-item .topics .latest .date {
  min-width: 80px;
  color: var(--primary-50);
  text-align: right;
}

.category-item:hover,
.topic-list .list-body li:hover,
.activity-list .list-body li:hover {
  background-color: var(--color-gr-03);
}

.category-item:active,
.topic-list .list-body li:active,
.activity-list .list-body li:active {
  background-color: var(--color-gr-05);
}

/* topics */
.avatar {
  overflow: hidden;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.users {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-self: baseline;
  justify-content: center;
  gap: 4px;
}
.users img,
.users .avatar {
  width: 32px;
  height: 32px;
}
.users .more {
  min-width: 37px;
  height: 32px;
  padding: 2px 0;
  border: 1px solid var(--primary);
  border-radius: 16px;
  text-align: center;
}

.topic-list {
  border-radius: 16px;
  background-color: var(--color-white);
}
.topic-list .col {
  flex-shrink: 0;
  width: 200px;
  text-align: center;
}
.topic-list .num {
  width: 80px;
}
.topic-list .list-column {
  display: flex;
  align-items: center;
  padding: 40px 40px 20px;
  border-radius: 16px 16px 0 0;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.topic-list .list-column [data-sort] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  white-space: nowrap;
}
.topic-list .list-column [data-sort]::after {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12.0007 13.1722L16.9507 8.22217L18.3647 9.63617L12.0007 16.0002L5.63672 9.63617L7.05072 8.22217L12.0007 13.1722Z' fill='%23052832'/%3E%3C/svg%3E%0A") no-repeat 50%/contain;
}
.topic-list .list-column [data-sort=ASC]::after {
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12.0007 10.8278L16.9507 15.7778L18.3647 14.3638L12.0007 7.99983L5.63672 14.3638L7.05072 15.7778L12.0007 10.8278Z' fill='%23052832'/%3E%3C/svg%3E%0A");
}
.topic-list .list-body li {
  position: relative;
  display: flex;
  padding: 40px;
}
.topic-list .list-body li::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: calc(100% - 80px);
  border-top: 1px solid var(--color-gr-10);
  transform: translateX(-50%);
}
.topic-list .list-body li:last-child {
  border-radius: 0 0 16px 16px;
}
.topic-list .list-body .num {
  padding-top: 4px;
}
.topic-list .list-body .visited {
  background-color: var(--color-gr-03);
}
.topic-list .list-body .visited .topic-link p {
  color: var(--primary-50);
}
.topic-list .list-column li:first-child,
.topic-list .topic-link {
  flex-grow: 1;
  padding-right: 60px;
  text-align: left;
}
.topic-list .topic-link a:hover, .topic-list .topic-link a:focus {
  text-decoration: none !important;
}
.topic-list .topic-link .title {
  font-size: 16px;
  font-family: "SamsungHead";
  font-weight: 700;
}

.topic-stats {
  position: relative;
  display: flex;
}
.topic-stats .col {
  flex-shrink: 0;
  width: 80px;
  text-align: center;
}
.topic-stats .user-summary {
  width: 200px;
}
.topic-stats .label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
}
.topic-stats .value {
  display: block;
  padding-top: 4px;
}

/* posts */
.post-item {
  display: flex;
  gap: 32px;
  padding: 40px;
  border-radius: 16px;
  background-color: var(--color-white);
}
.post-item .comment-list,
.post-item .comment-box {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s;
}
.post-item .comment-list.is-expand,
.post-item .comment-box.is-expand {
  grid-template-rows: 1fr;
}
.post-item .comment-list .post-item {
  margin-top: 40px;
  padding: 0 40px;
  background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='28' viewBox='0 0 24 28' fill='none'%3E%3Cpath d='M3 3V15C3 20.5228 7.47715 25 13 25H21' stroke='%23052850' stroke-opacity='0.1' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E%0A") no-repeat 0 8px;
}
.post-item .comment-box textarea {
  margin-top: 40px;
}
.post-item .comment-box .btn-wrap {
  justify-content: flex-end;
}
.post-avatar {
  flex-shrink: 0;
  width: 60px;
}
.post-body {
  flex-grow: 1;
}
.post-meta {
  display: flex;
  align-items: center;
}
.post-meta .author {
  border-bottom: 0;
  font-size: 16px;
  font-family: "SamsungHead";
  font-weight: 700;
  color: var(--primary) !important;
}
.post-meta .author:hover, .post-meta .author:focus {
  text-decoration: none !important;
}
.post-meta .chip {
  margin-left: 4px;
}
.post-meta .post-info {
  position: relative;
  margin-left: auto;
  color: var(--primary-50);
}
.post-meta .post-info .activity::before {
  content: "";
  display: inline-block;
  height: 12px;
  margin: 0 12px 0 8px;
  border-left: 1px solid var(--color-gr-10);
}
.post-meta .post-info .read-state {
  position: absolute;
  right: -20px;
  top: calc(50% - 4px);
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--category-color);
}
.post-meta .post-info .read-state[data-read=true] {
  visibility: hidden;
  opacity: 0;
  transition: 0.5s ease-out;
}
.post-content {
  margin-top: 12px;
}
.post-actions {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
}
.post-actions .btn-wrap:last-child {
  justify-content: flex-end;
}

.comment-list .post-item {
  margin-top: 20px;
}
.comment-box textarea {
  max-width: 100%;
  padding: 10px 18px;
  border: 2px solid var(--color-gr-10);
  border-radius: 12px;
}

/* topic timeline */
.timeline-indicator {
  position: sticky;
  right: 0;
  top: 140px;
  float: right;
  margin-right: -160px;
  padding: 20px 8px;
  font-size: 13px;
  transition: 0.3s;
}
.timeline-indicator .date {
  color: var(--primary-50) !important;
}
.timeline-progress {
  position: relative;
  width: 140px;
  height: 300px;
}
.timeline-progress::before {
  content: "";
  position: absolute;
  left: 50%;
  width: var(--timeline-handle-size);
  height: 100%;
  border-radius: 4px;
  background-color: var(--color-gr-10);
  transform: translateX(-50%);
  cursor: pointer;
}
.timeline-progress-handle {
  position: absolute;
  left: 0;
  width: 100%;
  height: 40px;
  transition: 0.1s;
  cursor: grab;
}
.timeline-progress-handle::before {
  content: "";
  position: absolute;
  left: 50%;
  width: var(--timeline-handle-size);
  height: 100%;
  border-radius: 4px;
  background-color: var(--primary);
  transform: translateX(-50%);
}
.timeline-progress > .date {
  position: absolute;
  left: calc(50% - 4px);
  white-space: nowrap;
}
.timeline-progress > .date:hover, .timeline-progress > .date:focus {
  text-decoration: none;
}
.timeline-progress > .date::before {
  content: "";
  display: inline-block;
  width: var(--timeline-handle-size);
  height: var(--timeline-handle-size);
  margin-right: 8px;
  border-radius: 50%;
  background-color: var(--primary-50);
}
.timeline-progress > .date.last::before {
  background-color: var(--category-color);
}
.timeline-progress .posted {
  top: calc(-1 * var(--timeline-handle-size));
}
.timeline-progress .last {
  bottom: -6px;
}
.timeline-progress .last.new {
  color: var(--category-color);
}
.timeline-progress .last.new::before {
  background-color: var(--category-color);
}
.timeline-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  height: 100%;
  white-space: nowrap;
}
.timeline-content span:empty {
  display: none;
}
.timeline-content .index {
  width: 50%;
  font-weight: 700;
  text-align: right;
}
.timeline-content .date {
  width: 50%;
}

.util-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 100;
  width: 100%;
  border-top: 1px solid var(--color-gr-10);
  background-color: var(--color-white);
  box-shadow: 0 -5px 10px var(--primary-05);
  transform: translateY(100%);
  transition: 0.35s ease-in-out;
  opacity: 0;
}
.util-bar.active {
  transform: translateY(0);
  opacity: 1;
}
.util-bar .inner {
  display: flex;
  justify-content: space-between;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 28px var(--side-padding-large);
}
.util-bar .btn-wrap {
  position: relative;
}
.util-bar .tracking {
  position: absolute;
  left: calc(100% + 4px);
  bottom: 0;
  display: flex;
  flex-direction: column-reverse;
  width: max-content;
  border: 2px solid var(--color-gr-10);
  border-radius: 12px;
  background-color: var(--color-white);
}
.util-bar .tracking .btn {
  justify-content: flex-start;
  width: 100%;
  height: 32px;
  border: 0;
}
.util-bar .tracking .options {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s;
}
.util-bar .tracking .options.is-active {
  grid-template-rows: 1fr;
}

/* my page */
.mypage .tab-navigation {
  margin-top: 40px;
}

.util-header-container {
  position: relative;
  z-index: 3;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--primary-10);
  /* box-shadow: 0 8px 16px 0 var(--primary-05); */
}
.util-header-container .util-header {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: var(--content-width);
  min-height: 48px;
  margin: 0 auto;
  padding: 20px var(--side-padding);
  /* Tooltip */
  /* 화살표 추가 */
}
.util-header-container .util-header .h2-typo {
  flex-grow: 1;
  width: 657px;
}
.util-header-container .util-header .search-wrap {
  flex-shrink: 0;
  display: flex;
  gap: 12px;
  width: 400px;
  padding: 9px 12px;
  border-radius: 12px;
  background-color: var(--primary-05);
}
.util-header-container .util-header .search-wrap .ico {
  width: 20px;
  height: 20px;
}
.util-header-container .util-header .search-wrap .input-search {
  width: 100%;
  border: 0;
  background-color: transparent;
  font-size: 13px;
  font-weight: 500;
}
.util-header-container .util-header .search-wrap .btn-filter {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 12px;
}
.util-header-container .util-header .search-wrap .btn-filter:hover, .util-header-container .util-header .search-wrap .btn-filter:focus {
  background-color: var(--primary-03);
}
.util-header-container .util-header .search-wrap .btn-filter:active {
  background-color: var(--primary-05);
}
.util-header-container .util-header .search-wrap.combobox {
  padding: 0;
}
.util-header-container .util-header .search-wrap.combobox .combobox-btn {
  height: 38px;
  padding-right: 12px;
  border: 0;
  color: var(--primary-70);
}
.util-header-container .util-header .search-wrap.combobox .combobox-btn::after {
  display: none;
}
.util-header-container .util-header .search-wrap .dropdown {
  top: 0;
  left: 0;
  max-width: 400px;
  min-width: 400px;
  max-height: unset;
}
.util-header-container .util-header .search-wrap .dropdown ::placeholder {
  font-size: 13px;
  font-weight: 700;
}
.util-header-container .util-header .search-wrap .dropdown input {
  padding: 0 40px 0 16px;
  font-size: 13px;
  font-weight: 700;
}
.util-header-container .util-header .search-wrap .dropdown .info-msg {
  margin-top: 4px;
  padding: 8px 16px;
  font-weight: 400;
  color: var(--primary-50);
}
.util-header-container .util-header .search-wrap .dropdown .btn-close {
  position: absolute;
  right: 8px;
  padding: 8px;
  z-index: 1;
}
.util-header-container .util-header .search-wrap .dropdown .btn-close .ico {
  opacity: 0.5;
}
.util-header-container .util-header .search-wrap .dropdown .dropdown-list {
  margin-left: 0;
  margin-right: 0;
}
.util-header-container .util-header .search-wrap .dropdown .dropdown-list + .dropdown-list {
  position: relative;
  margin-top: 8px;
  padding-top: 8px;
}
.util-header-container .util-header .search-wrap .dropdown .dropdown-list + .dropdown-list::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary-10);
}
.util-header-container .util-header .search-wrap .dropdown .dropdown-item > * {
  padding-left: 12px;
}
.util-header-container .util-header .search-wrap .dropdown .dropdown-item > :focus,
.util-header-container .util-header .search-wrap .dropdown .dropdown-item > :hover, .util-header-container .util-header .search-wrap .dropdown .dropdown-item.is-active > * {
  border-radius: 0;
  background-image: none;
  background-color: var(--primary-03);
}
.util-header-container .util-header .search-wrap .dropdown .dropdown-item .user-profile-avatar {
  width: 28px;
  height: 28px;
  margin-top: -4px;
  margin-bottom: -4px;
  font-size: 13px;
}
.util-header-container .util-header .relatied-menu {
  flex-grow: 1;
  width: 664px;
}
.util-header-container .util-header .relatied-menu > ul {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}
.util-header-container .util-header .relatied-menu li {
  position: relative;
}
.util-header-container .util-header .relatied-menu li a.depth1, .util-header-container .util-header .relatied-menu li button.depth1 {
  font-family: "SamsungHead";
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}
.util-header-container .util-header .relatied-menu .dropdown {
  left: unset;
  right: -10px;
  top: 30px;
}
.util-header-container .util-header .relatied-menu .dropdown .dropdown-item > * {
  padding-left: 16px;
}
.util-header-container .util-header .relatied-menu .dropdown .dropdown-item button {
  align-items: unset;
}
.util-header-container .util-header .relatied-menu .dropdown .dropdown-item button .ico {
  margin-top: 2px;
}
.util-header-container .util-header .relatied-menu .dropdown .dropdown-item button .text-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.util-header-container .util-header .relatied-menu .dropdown .dropdown-item.line {
  position: relative;
  margin-top: 16px;
}
.util-header-container .util-header .relatied-menu .dropdown .dropdown-item.line::before {
  content: "";
  display: block;
  position: absolute;
  top: -8px;
  width: 100%;
  height: 1px;
  background-color: var(--primary-10);
}
.util-header-container .util-header .relatied-menu .dropdown .label {
  font-size: 13px;
}
.util-header-container .util-header .relatied-menu .dropdown .description {
  font-size: 11px;
  font-weight: 400;
}
.util-header-container .util-header .user-area {
  flex-shrink: 0;
  display: flex;
  gap: 12px;
}
.util-header-container .util-header .user-area .notification, .util-header-container .util-header .user-area .user {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.util-header-container .util-header .user-area .notification {
  background-color: var(--primary-05);
}
.util-header-container .util-header .user-area .notification .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.util-header-container .util-header .user-area .user {
  position: relative;
}
.util-header-container .util-header .user-area .user .user-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-05);
  border: 1px solid var(--primary-10);
  border-radius: 50%;
  font-size: 24px;
  font-family: "SamsungHead";
  font-weight: 700;
  color: var(--color-black-20);
}
.util-header-container .util-header .user-area .user .dropdown {
  right: 0;
  left: auto;
}
.util-header-container .util-header .user-area .user .dropdown .label {
  font-size: 15px;
  font-family: "SamsungHead";
  font-weight: 700;
  font-size: 13px;
}
.util-header-container .util-header .user-area .user .dropdown .description {
  font-size: 13px;
  font-weight: 400;
}
.util-header-container .util-header .user-area .user .bg-dash {
  margin-left: -8px;
  margin-right: -8px;
}
.util-header-container .util-header .user-area .user .sign-out {
  padding-left: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 13px;
}
.util-header-container .util-header .tooltip-wrapper {
  position: relative;
  display: inline-block;
}
.util-header-container .util-header .tooltip {
  position: absolute;
  top: calc(100% + 8px);
  right: 6px;
  padding: 12px;
  background-color: var(--primary);
  color: var(--color-white);
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.1s ease;
  pointer-events: none;
  z-index: 10;
}
.util-header-container .util-header .tooltip::before {
  content: "";
  position: absolute;
  bottom: 100%;
  right: 8px;
  border: 6px solid transparent;
  border-bottom-color: var(--primary);
}
.util-header-container .util-header .tooltip-wrapper:hover .tooltip {
  opacity: 1;
  visibility: visible;
}
.util-header-container .only-mobile {
  display: none;
}

.user-navigation-container {
  width: 1200px;
  margin: 0 auto;
}

.user-profile-avatar {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  background-color: var(--primary-05);
  border: 1px solid var(--primary-10);
  border-radius: 50%;
  color: var(--color-black-20);
  font-size: 24px;
  font-family: "SamsungHead";
  font-weight: 700;
}

.user-profile-wrap {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}
.user-profile-wrap .user-profile-avatar {
  margin-bottom: 0;
}
.user-profile-wrap .user-profile-information {
  flex-grow: 1;
}
.user-profile-wrap .info-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  height: 60px;
}
.user-profile-wrap .info-wrap .info {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}
.user-profile-wrap .info-wrap .info .name {
  display: inline-block;
  margin-right: 8px;
  font-size: 32px;
  font-family: "SamsungHead";
  font-weight: 700;
}
.user-profile-wrap .info-wrap .info .grade,
.user-profile-wrap .info-wrap .info .email {
  display: inline-block;
  padding: 4px 8px;
  height: 22px;
  border-radius: 22px;
  font-size: 13px;
  font-size: 11px;
}
.user-profile-wrap .info-wrap .info .grade {
  color: var(--secondary);
  background-color: var(--secondary-10);
}
.user-profile-wrap .info-wrap .info .email {
  color: var(--primary);
  background-color: var(--primary-10);
}
.user-profile-wrap .info-wrap .btn-wrap {
  align-content: flex-start;
  justify-content: flex-end;
  position: relative;
  margin-top: 12px;
}
.user-profile-wrap .info-wrap .btn-wrap .btn {
  gap: 8px !important;
}
.user-profile-wrap .info-wrap .btn-wrap .btn.btn-toggle {
  padding-right: 12px;
  text-transform: uppercase;
}
.user-profile-wrap .info-wrap .btn-wrap .dropdown {
  top: 0;
  right: -336px;
  left: auto;
}
.user-profile-wrap .info-wrap .btn-wrap .dropdown .dropdown-item.is-active > * {
  background-position: 4px 10px;
}
.user-profile-wrap .info-wrap .btn-wrap .dropdown .dropdown-item .label {
  font-size: 13px;
}
.user-profile-wrap .info-wrap .btn-wrap .dropdown .dropdown-item .description {
  padding-left: 24px;
  font-size: 11px;
  font-weight: 400;
}
.user-profile-wrap .info-wrap + .user-stats {
  margin-top: 20px;
}
.user-profile-wrap .intro {
  margin-top: 20px;
  line-height: 1.4;
}
.user-profile-wrap .intro a, .user-profile-wrap .intro button {
  color: var(--secondary);
}
.user-profile-wrap.small {
  align-items: center;
  margin-bottom: 10px;
}
.user-profile-wrap.small .user-profile {
  gap: 16px;
}
.user-profile-wrap.small .user-profile .user-profile-avatar {
  width: 68px;
  height: 68px;
  margin-bottom: 0;
}
.user-profile-wrap.small .user-profile .info {
  margin-top: 0;
}
.user-profile-wrap.small .user-profile .info .name {
  font-size: 20px;
}
.user-profile-wrap.small > .btn-wrap {
  margin-top: 0;
}

.user-stats {
  display: flex;
  gap: 40px;
  margin-top: 12px;
}
.user-stats li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.user-stats .label {
  font-size: 14px;
  font-weight: 700;
}

.user-navigation .user-nav {
  display: flex;
}
.user-navigation .user-nav .user-nav__summary {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 54px;
  font-size: 16px;
  font-family: "SamsungHead";
  font-weight: 700;
}
.user-navigation .user-nav .user-nav__summary[data-active=true] {
  color: var(--secondary);
}
.user-navigation .user-nav .user-nav__summary[data-active=true]::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--secondary);
}
.user-navigation .user-nav .user-nav__summary .ico {
  margin-right: 4px;
}

.card-section {
  margin-top: 30px;
}
.card-section .card {
  width: 100%;
  padding: 40px;
  border-radius: 20px;
  background-color: var(--color-white);
}

/* summary */
.user-content .section-title {
  margin-bottom: 12px;
  font-size: 20px;
  font-family: "SamsungHead";
  font-weight: 700;
}
.user-content .stats-content {
  display: flex;
  margin: 0 -60px;
}
.user-content .stats-content .col {
  position: relative;
  flex: 1 1 30%;
  padding: 0 60px;
  border-left: 1px solid var(--primary-10);
}
.user-content .stats-content .col:first-child {
  border-left: 0;
}
.user-content .stats-content .user-stats-list {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  margin: -5px -60px;
}
.user-content .stats-content .user-stats-item {
  position: relative;
  padding: 5px 60px;
}
.user-content .stats-content .user-stats-item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: var(--primary-10);
}
.user-content .stats-content .user-stats-item:nth-child(n+7)::after {
  display: none;
}
.user-content .stats-content .user-stats-item .summary-item-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.user-content .stats-content .user-stats-item .stat-label {
  font-size: 15px;
  text-transform: none;
  color: var(--primary);
}
.user-content .stats-content .user-stats-item .stat-value {
  font-weight: 700;
}
.user-content .unified-summary-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}
.user-content .user-summary-list {
  border-top: 1px solid #eee;
}
.user-content .user-summary-item {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}
.user-content .user-summary-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.user-content .user-summary-wrap + .user-summary-wrap {
  margin-top: 4px;
}
.user-content .summary-title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.user-content .summary-date {
  flex-shrink: 0;
  color: var(--primary-50);
}
.user-content .summary-likes {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
}
.user-content .summary-link {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  color: var(--secondary);
}
.user-content .summary-count {
  flex-shrink: 0;
  height: 24px;
  padding: 2px 10px;
  border: 1px solid var(--primary-10);
  border-radius: 12px;
  font-size: 12px;
  color: var(--primary-50);
}
.user-content .summary-username {
  font-weight: 700;
}
.user-content .summary-replies,
.user-content .summary-grant {
  color: var(--primary-50);
}
.user-content .summary-code {
  color: var(--secondary);
}
.user-content .categories-content .list-column {
  display: flex;
  align-items: center;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}
.user-content .categories-content .list-column .col:first-child {
  flex-grow: 1;
  text-align: left;
}
.user-content .categories-content .list-body li {
  display: flex;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--primary-10);
}
.user-content .categories-content .list-body li .col:first-child {
  position: relative;
  padding-left: 22px;
  flex-grow: 1;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.user-content .categories-content .list-body li .col:first-child .color-chip {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.user-content .categories-content .col {
  flex-shrink: 0;
  width: 80px;
  text-align: center;
}
.user-content .members-content {
  display: flex;
  column-gap: 120px;
}
.user-content .members-content .col {
  position: relative;
  flex: 1 1 30%;
  /* 2번째, 3번째 항목 앞에 세로선 */
}
.user-content .members-content .col:nth-child(2)::before, .user-content .members-content .col:nth-child(3)::before {
  content: "";
  position: absolute;
  left: -60px;
  top: 0;
  height: 100%;
  width: 1px;
  background-color: var(--color-gr-10);
}
.user-content .members-content-list {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  margin-top: 12px;
}
.user-content .members-content-list .members-list-item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.user-content .members-content-list .user-profile-avatar {
  width: 60px;
  height: 60px;
  margin-bottom: 0;
  font-size: 24px;
}
.user-content .badges-section {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
}
.user-content .badges-section .section-title {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
.user-content .badges-section .section-title:first-child {
  margin-top: 0;
}
.user-content .badges-section .user-profile-avatar {
  margin-bottom: 0;
}
.user-content .badges-section .badges-info {
  display: flex;
  align-items: center;
  gap: 40px;
}
.user-content .badges-section .badges-info img {
  width: 200px;
  height: 200px;
}
.user-content .badges-section .badges-info .item-desc strong {
  font-size: 24px;
  font-family: "SamsungHead";
  font-weight: 700;
}
.user-content .badges-section .badges-info .item-desc p {
  font-size: 20px;
  color: var(--primary-50);
}
.user-content .badges-section .badges-content-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  gap: 40px 20px;
}
.user-content .badges-section .badges-content-list .badges-list-item {
  flex: 0 1 30%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.user-content .badges-section .badges-content-list .badges-list-item .badges, .user-content .badges-section .badges-content-list .badges-list-item img {
  flex-shrink: 0;
}
.user-content .badges-section .badges-content-list .badges-list-item .item-desc {
  margin-top: 8px;
}
.user-content .badges-section .badges-content-list .badges-list-item .item-desc p {
  color: var(--primary-50);
}
.user-content .badges-section .badges-content-list .badges-list-item .item-desc strong {
  font-size: 16px;
  font-family: "SamsungHead";
  font-weight: 700;
}
.user-content .badges-section .badges-content-list .badges-list-item .item-desc .awarded {
  margin-top: 8px;
  font-size: 12px;
}
.user-content .badges-section .badges-content-list .badges-list-item.checked {
  position: relative;
}
.user-content .badges-section .badges-content-list .badges-list-item.checked::after {
  content: "";
  display: block;
  position: absolute;
  top: 66px;
  left: 66px;
  width: 32px;
  height: 32px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3059_89732)'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12C2 6.477 6.477 2 12 2C17.523 2 22 6.477 22 12C22 17.523 17.523 22 12 22ZM11.003 16L18.073 8.929L16.659 7.515L11.003 13.172L8.174 10.343L6.76 11.757L11.003 16Z' fill='%23052832'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3059_89732'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
}
.user-content .badges-section .badges-content-list .badges-list-item.disabled img {
  filter: grayscale(100%);
}
.user-content .badges-section .members-content {
  display: block;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid var(--primary-10);
}
.user-content .badges-section .members-content .my-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.user-content .badges-section .members-content .my-info-inner {
  display: flex;
  gap: 20px;
}
.user-content .badges-section .members-content .my-info .btn-wrap .btn {
  text-transform: unset;
}
.user-content .badges-section .members-content .members-content-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 30px;
  margin-left: -60px;
  margin-right: -60px;
  position: relative;
}
.user-content .badges-section .members-content .members-content-list .members-list-item {
  position: relative;
  align-items: flex-start;
  padding: 10px 60px;
}
.user-content .badges-section .members-content .members-content-list .members-list-item::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  right: 0;
  background-color: var(--primary-10);
}
.user-content .badges-section .members-content .members-content-list .members-list-item:nth-child(3n)::after {
  display: none;
}

.empty {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 316px;
  font-size: 16px;
  color: var(--primary-50);
}

/* activity */
.user-content .filter-section {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.user-content .filter-section .filter-select-container {
  display: flex;
  gap: 8px;
}
.user-content .activity-list-section {
  padding-bottom: 40px;
}

.activity-list {
  margin-top: 12px;
  border-radius: 20px;
  background-color: var(--color-white);
}
.activity-list .list-column {
  position: relative;
  display: flex;
  align-items: center;
  padding: 40px 40px 20px;
  justify-content: space-between;
}
.activity-list .section-title {
  margin-bottom: 0;
  text-transform: none;
}
.activity-list .right-column {
  display: flex;
  gap: 4px;
}
.activity-list .activity-search-wrap {
  position: absolute;
  right: 40px;
  z-index: 1;
  display: none;
  gap: 4px;
  background-color: var(--color-white);
}
.activity-list .activity-search-wrap .btn {
  text-transform: none !important;
}
.activity-list .activity-search-wrap .search-wrap {
  display: flex;
  gap: 12px;
  width: 400px;
  padding: 7.5px 12px;
  border-radius: 12px;
  background-color: var(--primary-05);
}
.activity-list .activity-search-wrap .search-wrap .ico {
  width: 20px;
  height: 20px;
  opacity: 0.5;
}
.activity-list .activity-search-wrap .search-wrap .input-search {
  width: 100%;
  border: 0;
  background-color: transparent;
  font-size: 13px;
  font-weight: 500;
}
.activity-list .user-profile-avatar {
  width: 60px;
  height: 60px;
  margin-bottom: 0;
  font-size: 24px;
}
.activity-list .activity-link {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.activity-list .activity-link .top-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
  min-width: 0;
}
.activity-list .activity-link .top-row .ico {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.activity-list .activity-link .top-row a {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.activity-list .activity-link .top-row a .search-word {
  color: var(--secondary);
}
.activity-list .activity-link .top-row a .title {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
  min-width: 0;
  font-weight: 700;
}
.activity-list .activity-link .top-row a .title .ellipsis {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.activity-list .activity-link .top-row a .description {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 8px;
  color: var(--primary-50);
}
.activity-list .activity-link .top-row a .description.replies {
  padding-left: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='40' viewBox='0 0 16 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5.33398V13.334C2 17.0159 4.98477 20.0007 8.66667 20.0007H14' stroke='%23052850' stroke-opacity='0.1' stroke-width='3.33333' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: left center;
  background-size: 16px auto;
}
.activity-list .activity-link .top-row a .description .user-profile-avatar {
  width: 40px;
  height: 40px;
  font-size: 16px;
}
.activity-list .activity-link .top-row a .description .ico {
  flex-shrink: 0;
  margin-right: 4px;
}
.activity-list .activity-link .top-row a .description p {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.activity-list .activity-link .bottom-row {
  width: 100%;
  min-width: 0;
  padding-left: 80px;
}
.activity-list .activity-link .bottom-row .chip-list {
  margin-top: 8px;
}
.activity-list .activity-link .bottom-row .chip-list .chip {
  font-size: 14px;
}
.activity-list .activity-link .bottom-row .chip-list .chip--ghost {
  padding-left: 20px;
  padding-right: 20px;
}
.activity-list .activity-link .bottom-row .chip-list .chip--ghost .ico {
  display: none;
}
.activity-list .activity-link a:hover, .activity-list .activity-link a:focus {
  text-decoration: none !important;
}
.activity-list .chk-wrap {
  padding-top: 18px;
}
.activity-list .date {
  flex-shrink: 0;
  text-align: right;
  color: var(--primary-50);
}
.activity-list .list-body li {
  position: relative;
  display: flex;
  padding: 32px 40px;
  gap: 20px;
  width: 100%;
}
.activity-list .list-body li::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: calc(100% - 80px);
  border-top: 1px solid var(--color-gr-10);
  transform: translateX(-50%);
}
.activity-list .list-body li:last-child {
  border-radius: 0 0 16px 16px;
}
.activity-list .list-body .visited {
  background-color: var(--color-gr-03);
}
.activity-list .list-body .visited > * {
  opacity: 0.3;
}
.activity-list .result-text-wrap {
  display: none;
}

/* notifications*/
.notifications-list-section .list-column {
  padding-top: 20px;
}
.notifications-list-section .tab-navigation {
  margin-top: 0;
}
.notifications-list-section .right-column .btn {
  text-transform: none !important;
}
.notifications-list-section .list-body li:first-child::before {
  display: none;
}

.unread-icon-wrap {
  position: absolute;
  top: 50%;
  left: 13px;
  transform: translateY(-50%);
}
.unread-icon-wrap .dot {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--secondary);
}

/* setting */
.user-preferences-container {
  padding-bottom: 40px;
}
.user-preferences-container .tab-navigation.full {
  display: none;
}
.user-preferences-container .user-preferences-inner {
  display: flex;
  align-items: stretch;
  gap: 40px;
  margin-top: 40px;
}
.user-preferences-container .user-preferences-inner .lnb-content {
  position: relative;
  width: 260px;
  flex-shrink: 0;
}
.user-preferences-container .user-preferences-inner .lnb-content::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: var(--primary-10);
}
.user-preferences-container .user-preferences-inner .lnb-content li {
  margin-top: 40px;
}
.user-preferences-container .user-preferences-inner .lnb-content li:first-child {
  margin-top: 0;
}
.user-preferences-container .user-preferences-inner .lnb-content li h4 {
  font-size: 15px;
  font-family: "SamsungHead";
  font-weight: 700;
}
.user-preferences-container .user-preferences-inner .lnb-content li .setting-menu {
  margin-top: 12px;
}
.user-preferences-container .user-preferences-inner .lnb-content li .setting-menu a {
  display: block;
  position: relative;
  padding-right: 40px;
}
.user-preferences-container .user-preferences-inner .lnb-content li .setting-menu .title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.user-preferences-container .user-preferences-inner .lnb-content li .setting-menu .title .ico-mask {
  width: 20px;
  height: 20px;
}
.user-preferences-container .user-preferences-inner .lnb-content li .setting-menu .description {
  padding-left: 28px;
  font-size: 13px;
  color: var(--primary-50);
}
.user-preferences-container .user-preferences-inner .lnb-content li.is-active a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: var(--secondary);
}
.user-preferences-container .user-preferences-inner .lnb-content li.is-active .title {
  color: var(--secondary);
}
.user-preferences-container .user-preferences-inner .lnb-content li.is-active .title .ico-mask {
  --icon-color: var(--secondary);
}
.user-preferences-container .user-preferences-inner .lnb-content li.is-active .description {
  color: var(--secondary-50);
}
.user-preferences-container .user-preferences-inner .main-content {
  flex-grow: 1;
  width: 100%;
}
.user-preferences-container .user-preferences-inner .main-content .btn {
  text-transform: none !important;
}
.user-preferences-container .user-preferences-inner .main-content .preferences-content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.user-preferences-container .user-preferences-inner .main-content .preferences-content-header .user-profile {
  display: flex;
  align-items: center;
  gap: 20px;
}
.user-preferences-container .user-preferences-inner .main-content .preferences-content-header .user-profile .user-profile-avatar {
  flex-shrink: 0;
  margin-bottom: 0;
}
.user-preferences-container .user-preferences-inner .main-content .preferences-content-header .user-profile .user-name {
  font-size: 20px;
  font-family: "SamsungHead";
  font-weight: 700;
}
.user-preferences-container .user-preferences-inner .main-content .preferences-content-header .btn-wrap .btn .ico-mask {
  display: none;
}
.user-preferences-container .user-preferences-inner .main-content textarea {
  resize: none;
  height: 240px;
}
.user-preferences-container .base-btn-group {
  max-width: unset;
}
.user-preferences-container .base-btn-group .base-button:disabled {
  background-color: var(--s-primary-40);
}

.list-line-type .detail-title {
  font-size: 13px;
}
.list-line-type.gap-other .form-wrap {
  gap: 32px;
}
.list-line-type .form-wrap {
  gap: 12px;
  padding: 40px 0;
  border-top: 1px solid var(--primary-10);
}
.list-line-type .form-wrap:first-child {
  padding-top: 0;
  border-top: 0;
}
.list-line-type .form-wrap:last-child {
  padding-bottom: 0;
}
.list-line-type .form-wrap .switch {
  align-items: center;
}
.list-line-type .form-wrap .switch .toggle-switch-wrap {
  flex: 0 0 48px;
}

.base-btn-group {
  justify-content: flex-end;
  max-width: unset;
}
.base-btn-group .base-button {
  width: 236px;
}

.form-wrap-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.multi-select-wrap {
  display: flex;
  gap: 20px;
  position: relative;
}
.multi-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 2px;
  background-color: var(--primary-10);
}
.multi-select-wrap .form-control.selector {
  flex: 1 1 40%;
}

.base-button:disabled {
  background-color: var(--s-primary-40);
}

.tracking-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.tracking-list-wrap .list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tracking-list-wrap .list .title-wrap .title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}
.tracking-list-wrap .list .title-wrap .title .ico {
  width: 20px;
  height: 20px;
}
.tracking-list-wrap .list .title-wrap .description {
  font-size: 14px;
  color: var(--primary-50);
}
.tracking-list-wrap .list .form-wrap {
  border-top: 0;
  padding: 0;
}
.tracking-list-wrap .list .form-wrap .form-control .dropdown-menu {
  left: 0;
  top: 100%;
  margin-top: 4px;
}
.tracking-list-wrap .list .multiple-forms .combobox-btn::after {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2814_97451)'%3E%3Cpath d='M11 11V5H13V11H19V13H13V19H11V13H5V11H11Z' fill='%23052832'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2814_97451'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
}
.tracking-list-wrap .multiple-forms .combobox {
  font-size: 16px;
}
.tracking-list-wrap .multiple-forms .combobox .combobox-btn {
  height: 44px;
  padding: 0 16px;
  padding-right: 36px;
  font-weight: 400;
  color: var(--primary-50);
}
.tracking-list-wrap .multiple-forms .dropdown {
  top: -2px;
}

.watched-list-wrap {
  overflow-y: auto;
  max-height: 140px;
  padding: 12px;
  border: 2px solid var(--primary-10);
  border-radius: 24px;
}
.watched-list-wrap .chip-list {
  gap: 12px;
  margin-top: 0;
}

.form-style-box {
  margin-top: 8px;
  padding: 16px;
  border-radius: 12px;
  border: 2px solid var(--primary-10);
  font-size: 16px;
}

.radio-gr-title {
  line-height: 36px;
  font-size: 13px;
  color: var(--primary-50);
}

.bg-dash {
  width: 100%;
  height: 1px;
  margin-top: 8px;
  margin-bottom: 8px;
  background-color: var(--primary-10);
}

.history-modal {
  width: 1000px;
}
.history-modal .auth-info {
  display: flex;
  justify-content: space-between;
}
.history-modal .auth-info .date {
  font-size: 13px;
  color: var(--primary-50);
}
.history-modal .user {
  display: flex;
  gap: 16px;
  align-items: center;
}
.history-modal .user .user-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: var(--primary-05);
  border: 1px solid var(--primary-10);
  border-radius: 50%;
  font-size: 24px;
  font-family: "SamsungHead";
  font-weight: 700;
  color: var(--color-black-20);
}
.history-modal .user .name {
  font-size: 16px;
  font-weight: 700;
}
.history-modal .filter-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.history-modal .filter-wrap .btn-wrap {
  padding-top: 0;
}
.history-modal .modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.revisions-wrap {
  display: flex;
  gap: 80px;
  margin-top: 20px;
}
.revisions-wrap .revision-title {
  font-size: 20px;
  font-family: "SamsungHead";
  font-weight: 700;
}
.revisions-wrap .col {
  flex: 1 1 40%;
  position: relative;
}
.revisions-wrap .col::before {
  display: block;
  position: absolute;
  top: 0;
  left: -40px;
  content: "";
  width: 1px;
  height: 100%;
  background-color: var(--primary-10);
}
.revisions-wrap .col:first-child::before {
  display: none;
}
.revisions-wrap .diff-del {
  color: var(--color-red);
  background-color: var(--color-red-10);
}
.revisions-wrap .diff-ins {
  color: var(--secondary);
  background-color: var(--secondary-10);
}

.page-wrap {
  display: flex;
  gap: 8px;
}
.page-wrap .current {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 36px;
  padding: 0 12px;
  border: 2px solid var(--color-gr-10);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
}
.page-wrap .btn-wrap {
  gap: 8px;
}
.page-wrap .btn-wrap .btn {
  padding-left: 10px;
  padding-right: 10px;
}

/* mypage > reports */
.report-content {
  padding-bottom: 40px;
}

.report-list-wrap {
  margin-top: 30px;
}
.report-list-wrap .chip {
  text-transform: none;
}
.report-list-wrap .align-left {
  text-align: left;
}
.report-list-wrap .report-card {
  margin-top: 10px;
  border-radius: 20px;
  background-color: var(--color-white);
}
.report-list-wrap .report-card:first-child {
  margin-top: 0;
}
.report-list-wrap .report-card-header {
  display: flex;
  flex-direction: column;
  padding: 40px 40px 20px 40px;
}
.report-list-wrap .report-card-header .date-wrap {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
.report-list-wrap .report-card-header .post-time {
  display: flex;
  align-items: center;
  gap: 12px;
}
.report-list-wrap .report-card-header .post-time .title {
  font-family: "SamsungHead";
  font-weight: 700;
}
.report-list-wrap .report-card-header .post-time .time {
  color: var(--primary-50);
}
.report-list-wrap .report-card-header .h3-typo {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--primary-10);
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.report-list-wrap .report-card-header .category-wrap {
  margin-top: 12px;
}
.report-list-wrap .report-card-body {
  display: flex;
  padding: 20px 40px 40px 40px;
  transition: background-color 0.2s;
}
.report-list-wrap .report-card-body:hover {
  background-color: var(--color-gr-05);
}
.report-list-wrap .report-card-body [role=columnheader] {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--primary-10);
  font-size: 14px;
  font-weight: 700;
}
.report-list-wrap .report-card-body [role=listitem] {
  padding-top: 16px;
}
.report-list-wrap .report-card-body .report-item {
  flex: 1 1 auto;
  min-width: 0;
}
.report-list-wrap .report-card-body .report-item .reported-user {
  display: flex;
  gap: 20px;
}
.report-list-wrap .report-card-body .report-item .user-avatar {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}
.report-list-wrap .report-card-body .report-item .user-content {
  flex: 1;
  min-width: 0;
}
.report-list-wrap .report-card-body .report-item .user-title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-weight: 700;
  min-width: 0;
  overflow: hidden;
  word-break: break-all;
}
.report-list-wrap .report-card-body .report-item .user-title .ico {
  flex-shrink: 0;
}
.report-list-wrap .report-card-body .report-item .user-message {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--primary-50);
}
.report-list-wrap .report-card-body .report-info {
  flex: 1 0 360px;
  display: flex;
  text-align: center;
}
.report-list-wrap .report-card-body .report-info > li {
  flex: 1 0 120px;
}
.report-list-wrap .report-card-body .report-info > li [role=listitem] {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
}
.report-list-wrap .report-card-body .reporter {
  display: flex;
  justify-content: center;
}
.report-list-wrap .report-card-body .reporter .reporter-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.report-list-wrap .report-card-footer {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin: 0 40px;
  padding: 40px 0;
  border-top: 1px solid var(--primary-10);
}
.report-list-wrap .report-card-footer .btn-wrap {
  flex-shrink: 0;
}
.report-list-wrap .reviewer-info {
  flex-grow: 1;
  display: flex;
  gap: 40px;
}
.report-list-wrap .reviewer-info li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.report-list-wrap .reviewer-info li span {
  font-weight: 700;
}

/* global search*/
.global-search-wrap {
  padding-bottom: 40px;
}
.global-search-wrap [class^=base-label] + .checkbox-group,
.global-search-wrap [class^=base-label] + .form-control {
  margin-top: 0;
}
.global-search-wrap .base-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 14px !important;
  font-weight: 700;
}
.global-search-wrap .btn {
  column-gap: 2px;
  text-transform: none !important;
}
.global-search-wrap .page-title {
  font-size: 20px;
  font-family: "SamsungHead";
  font-weight: 700;
}
.global-search-wrap .search-basic-wrap {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.global-search-wrap .search-basic-wrap .base-form-group.small {
  flex-grow: 1;
  display: flex;
  gap: 8px;
}
.global-search-wrap .search-basic-wrap .base-form-group.small .form-control.selector {
  width: 200px;
}
.global-search-wrap .search-basic-wrap .btn-wrap {
  flex-shrink: 0;
}
.global-search-wrap .search-basic-wrap .btn-wrap .btn {
  height: 44px;
  padding-left: 20px;
  padding-right: 20px;
}
.global-search-wrap .section-wrap {
  margin-top: 20px;
}
.global-search-wrap .section-wrap > .btn-wrap .btn {
  background-color: var(--color-white);
  border: 2px solid var(--primary-10);
}
.global-search-wrap .section-wrap > .btn-wrap .btn.is-active {
  background-color: var(--primary-05);
  border: 2px solid var(--primary-05);
}
.global-search-wrap .section-wrap .section-contents {
  display: none;
  margin-top: 20px;
}
.global-search-wrap .advanced-filters-wrap .form-wrap {
  display: flex;
  flex-direction: unset;
  gap: 8px 40px;
}
.global-search-wrap .advanced-filters-wrap .form-wrap > .col {
  flex: 1 1 40%;
}
.global-search-wrap .advanced-filters-wrap .form-wrap > .col > div:not(:first-child) {
  margin-top: 12px;
}
.global-search-wrap .advanced-filters-wrap .form-wrap > .col .dropdown {
  top: -2px;
  left: -2px;
  max-width: unset;
  width: calc(100% + 4px);
}
.global-search-wrap .advanced-filters-wrap .form-wrap .combobox .combobox-btn {
  height: 42px;
  padding-left: 16px;
  padding-top: 6px;
  font-size: 16px;
  font-weight: 400;
}
.global-search-wrap .advanced-filters-wrap .form-wrap .combobox .combobox-btn::after {
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.13152 7.77364C4.75435 7.34258 5.06047 6.66797 5.63324 6.66797H14.3615C14.9343 6.66797 15.2404 7.34258 14.8633 7.77364L10.6245 12.6179C10.2925 12.9973 9.70226 12.9973 9.37025 12.6179L5.13152 7.77364Z' fill='%23052832'/%3E%3C/svg%3E") no-repeat 50%/contain;
}
.global-search-wrap .checkbox-group {
  gap: 8px;
}
.global-search-wrap .checkbox-group .chk-group-title {
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
}
.global-search-wrap .checkbox-group .chk-wrap {
  font-weight: 700;
  font-size: 15px;
}
.global-search-wrap .checkbox-group .base-form-group.small {
  margin-top: 4px;
}
.global-search-wrap .filters-count-wrap .form-wrap {
  row-gap: 12px;
}
.global-search-wrap .filters-count-wrap .form-wrap .row .base-form-group {
  position: relative;
  display: flex;
  gap: 20px;
  min-width: 0;
}
.global-search-wrap .filters-count-wrap .form-wrap .row .base-form-group::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 2px;
  background-color: var(--primary-10);
}
.global-search-wrap .filters-count-wrap .form-wrap .row .base-form-group .count-input {
  flex: 1 1 40%;
  position: relative;
}
.global-search-wrap .filters-count-wrap .form-wrap .row .base-form-group .count-input .btn-wrap {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
}
.global-search-wrap .filters-count-wrap .form-wrap .row .base-form-group .count-input .btn-wrap .btn {
  min-width: 20px;
  height: 20px;
  padding-left: 4px;
  padding-right: 4px;
  border: 0;
}
.global-search-wrap .filters-count-wrap .form-wrap .row .base-form-group .count-input .btn-wrap .btn .ico {
  width: 20px;
  height: 20px;
}
.global-search-wrap .filters-count-wrap .form-wrap .row .base-form-group .count-input .btn-wrap .btn:hover, .global-search-wrap .filters-count-wrap .form-wrap .row .base-form-group .count-input .btn-wrap .btn:focus, .global-search-wrap .filters-count-wrap .form-wrap .row .base-form-group .count-input .btn-wrap .btn:active {
  border-radius: 4px;
}
.global-search-wrap .filters-count-wrap input[type=number]:hover::-webkit-outer-spin-button, .global-search-wrap .filters-count-wrap input[type=number]:hover::-webkit-inner-spin-button, .global-search-wrap .filters-count-wrap input[type=number]:focus::-webkit-outer-spin-button, .global-search-wrap .filters-count-wrap input[type=number]:focus::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.global-search-wrap .calender-group {
  display: flex;
  gap: 8px;
}
.global-search-wrap .calender-group .form-control.selector {
  flex: 120px;
  flex-grow: 0;
  flex-shrink: 1;
}
.global-search-wrap .calender-group .box-calender {
  flex-grow: 1;
}
.global-search-wrap .search-result-wrap {
  margin-top: 20px;
}
.global-search-wrap .search-result-wrap .card {
  padding: 0;
  border-radius: unset;
  background-color: unset;
}
.global-search-wrap .search-result-wrap .search-result-list {
  margin-top: 12px;
  border-radius: 20px;
  background-color: var(--color-white);
}
.global-search-wrap .search-result-wrap .search-result-list .list-column {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 40px 10px;
  justify-content: flex-end;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body li {
  position: relative;
  display: flex;
  gap: 20px;
  width: 100%;
  padding: 32px 40px;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body li::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: calc(100% - 80px);
  border-top: 1px solid var(--color-gr-10);
  transform: translateX(-50%);
}
.global-search-wrap .search-result-wrap .search-result-list .list-body li:first-child {
  padding-top: 10px;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body li:first-child::before {
  display: none;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body li:hover {
  background-color: var(--color-gr-03);
}
.global-search-wrap .search-result-wrap .search-result-list .list-body li:last-child {
  border-radius: 0 0 16px 16px;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body li .content-list-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body li .content-list-wrap a {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body li .content-list-wrap .title {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  font-weight: 700;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body li .content-list-wrap .title .ico {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body li .content-list-wrap .chip-list {
  margin-top: 0;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body li .content-list-wrap .chip-list .chip {
  justify-content: unset;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body li .content-list-wrap .ellipsis {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body li .content-list-wrap .description {
  color: var(--primary-50);
}
.global-search-wrap .search-result-wrap .search-result-list .list-body li .content-list-wrap .description p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body.category {
  padding-top: 40px;
  padding-bottom: 40px;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body.category li {
  gap: 0;
  padding-top: 8px;
  padding-bottom: 8px;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body.category li::before {
  display: none;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body.category li:last-child {
  border-radius: 0;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body.category li > a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body.category li .color-chip {
  width: 28px;
  height: 28px;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body.category li .color-chip .inner {
  width: 14px;
  height: 14px;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body.user {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 40px;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body.user li {
  padding: 0;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body.user li a {
  display: flex;
  align-items: center;
  gap: 12px;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body.user li a .user-profile-avatar {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  font-size: 15px;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body.user li:hover {
  background-color: transparent;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body.user li:last-child {
  border-radius: 0;
}
.global-search-wrap .search-result-wrap .search-result-list .list-body.user li::before {
  border-top: 0;
}
.global-search-wrap .search-result-wrap .search-result-list .bg-keyword {
  display: inline-block;
  background-color: #F2DC16;
  border-radius: 14px;
}

@media (max-width: 120em) {
  /* my page */
  .user-navigation-container .user-profile-wrap > .btn-wrap .dropdown {
    right: 0;
  }
}
@media (max-width: 80em) {
  .timeline-indicator {
    padding-left: 0;
    padding-right: 0;
  }
  /* my page */
  .user-navigation-container {
    padding: 0;
  }
  .user-stats {
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 8px;
    margin-top: 12px;
    margin-bottom: 0;
  }
  .user-stats .label {
    font-size: 12px;
  }
  .user-stats .value {
    font-size: 13px;
  }
  /* summary */
  .user-content .user-summary-list {
    border-top: 0;
  }
  .user-content .user-summary-list .user-summary-item:last-child {
    border-bottom: 0;
  }
  /* global search*/
  .global-search-wrap {
    padding-bottom: 4rem !important;
  }
}
@media (min-width: 64.063em) {
  /* topics */
  .topic-list .list-body .col:not(.topic-list) .ico,
  .topic-stats .user-summary .value,
  .topic-stats .ico {
    display: none;
  }
  .util-bar .sr-only {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    clip-path: none;
  }
}
@media (max-width: 64em) {
  /* categories */
  .categories {
    gap: 1.6rem;
  }
  .category-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 0 0.8rem 2rem;
  }
  .category-title .name {
    font-size: 1.6rem !important;
  }
  .category-title .description {
    font-size: 1.4rem !important;
  }
  .category-title .category-logo {
    position: static;
    order: -1;
    width: 3.2rem !important;
  }
  .category-title .color-bar {
    left: 0;
    width: 0.4rem;
    border-radius: 0.2rem;
  }
  .category-title.type-sub {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }
  .category-item {
    position: relative;
    flex-direction: column;
    gap: 2rem;
    padding: 1.6rem 1.2rem 1.6rem 3.2rem;
  }
  .category-item .category-title {
    position: static;
    flex-direction: column;
    align-items: stretch;
    width: auto;
    padding: 0;
  }
  .category-item .category-title .chip-list {
    margin-top: 0;
  }
  .category-item .category-title .color-bar {
    left: 1.2rem;
    top: 50%;
    height: calc(100% - 2.4rem);
    transform: translateY(-50%);
  }
  .category-item .topics {
    width: auto;
    padding: 0;
  }
  .category-item .topics .value {
    display: flex;
    flex-direction: row-reverse;
    align-items: baseline;
    justify-content: flex-end;
    gap: 0.8rem;
    font-size: 1.6rem;
  }
  .category-item .topics .value .new {
    padding-right: 0;
    font-size: 1.1rem;
  }
  .category-item .topics .latest {
    font-size: 1.3rem;
  }
  .category-item .topics .latest li {
    margin-top: 0.4rem;
  }
  .category-item .topics .latest .date {
    min-width: 8rem;
  }
  /* topics */
  .avatar {
    width: 4rem;
    height: 4rem;
  }
  .topic-list {
    border-radius: 2rem;
  }
  .topic-list .list-column {
    display: none;
  }
  .topic-list .list-body li {
    flex-wrap: wrap;
    row-gap: 2rem;
    padding: 2rem;
  }
  .topic-list .list-body li:first-child::before {
    content: none;
  }
  .topic-list .list-body .users {
    display: none;
  }
  .topic-list .list-body .col {
    width: 25%;
    padding-top: 0;
  }
  .topic-list .list-body .col:not(.topic-link) {
    font-size: 1.3rem;
    opacity: 0.5;
  }
  .topic-list .list-body .col:not(.topic-link) .ico {
    margin-right: 0.4rem;
  }
  .topic-list .topic-link {
    width: 100% !important;
    padding-right: 0;
    font-size: 1.3rem;
  }
  .topic-list .topic-link .title {
    font-size: 1.5rem;
  }
  .topic-list .topic-link .chip-list {
    margin-top: 0.8rem;
  }
  .topic-stats .col {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    flex: 1;
    opacity: 0.5;
  }
  .topic-stats .label,
  .topic-stats .users {
    display: none;
  }
  .topic-stats .value {
    padding-top: 0;
    font-size: 1.3rem;
  }
  /* posts */
  .post-item {
    position: relative;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.6rem;
    border-radius: 1.6rem;
  }
  .post-item .comment-list .post-item {
    margin-top: 2rem;
    padding: 0 2.4rem;
    background-position-y: 0.8rem;
    background-size: 1.6rem;
  }
  .post-item .comment-box textarea {
    margin-top: 2rem;
  }
  .post-item .btn-history {
    position: absolute;
    right: 1.6rem;
    top: 1.6rem;
  }
  .post-item .btn-toggle {
    width: 100%;
    margin-top: 2rem;
    column-gap: 0.8rem !important;
  }
  .post-avatar {
    width: 4rem;
  }
  .post-meta .author {
    font-size: 1.5rem;
  }
  .post-meta .chip {
    margin-left: 0.4rem;
  }
  .post-meta .post-info {
    font-size: 1.3rem;
  }
  .post-meta .post-info .activity::before {
    height: 1.2rem;
    margin-right: 0.8rem;
    margin-left: 0.4rem;
  }
  .post-meta .post-info .read-state {
    right: -1.2rem;
    top: calc(50% - 0.4rem);
    width: 0.8rem;
    height: 0.8rem;
  }
  .post-content {
    margin-top: 1.2rem;
    font-size: 1.4rem;
  }
  .post-actions {
    padding-top: 2rem;
  }
  .post-actions .btn-toggle {
    display: none;
  }
  .comment-list .post-item {
    margin-top: 1.6rem;
  }
  .comment-box textarea {
    padding: 2rem;
    border-width: 0.2rem;
    border-radius: 1.2rem;
  }
  /* topic timeline */
  .timeline-indicator {
    position: fixed;
    left: 0;
    top: auto;
    bottom: 6rem;
    z-index: 2;
    float: none;
    width: 100%;
    margin-right: 0;
    padding: 0.4rem 1.6rem 0;
    border-top: 0.1rem solid var(--color-gr-10);
    background-color: var(--color-white);
    box-shadow: 0 -0.5rem 1rem var(--primary-05);
  }
  .timeline-progress {
    width: auto;
    height: 5.4rem;
  }
  .timeline-progress::before {
    left: auto;
    top: 50%;
    width: 100%;
    height: var(--timeline-handle-size);
    border-radius: 0.4rem;
    transform: translateY(-50%);
  }
  .timeline-progress-handle {
    width: 4rem;
    height: 100%;
  }
  .timeline-progress-handle::before {
    left: auto;
    top: 50%;
    width: 100%;
    height: var(--timeline-handle-size);
    border-radius: 0.4rem;
    transform: translateY(-50%);
  }
  .timeline-progress > .date {
    left: auto;
    top: calc(50% - 0.4rem);
    padding-top: 1rem;
  }
  .timeline-progress > .date::before {
    display: block;
    position: absolute;
    top: 0;
    margin: 0 0 2px;
  }
  .timeline-progress .posted {
    left: 0;
  }
  .timeline-progress .last {
    right: 0;
    bottom: auto;
  }
  .timeline-progress .last::before {
    right: 0;
  }
  .timeline-content {
    justify-content: flex-start;
    align-items: stretch;
    gap: 0.4rem;
    height: auto;
    padding-left: 0.1rem;
  }
  .timeline-content .index,
  .timeline-content .date {
    width: auto;
    text-align: left;
  }
  .util-bar {
    border-top: 0;
    box-shadow: none;
  }
  .util-bar .inner {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
  .util-bar .btn-wrap:first-child .btn {
    width: 4rem;
    height: 3.6rem;
  }
  .util-bar .btn-wrap:first-child .ico {
    flex-shrink: 0;
  }
  .util-bar .tracking {
    border: 0;
  }
  .util-bar .tracking .btn {
    justify-content: center;
    border: 0.2rem solid var(--color-gr-10);
  }
  /* my page */
  .mypage .tab-navigation {
    margin-top: 1.6rem;
  }
  .util-header-container {
    z-index: unset;
  }
  .util-header-container .util-header {
    gap: 1.8rem;
    padding: 1.2rem 2.4rem;
  }
  .util-header-container .util-header .h2-typo {
    font-size: 1.6rem;
    flex-grow: 1;
    position: relative;
  }
  .util-header-container .util-header .h2-typo::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 2rem;
    background-color: var(--primary-10);
  }
  .util-header-container .util-header .h2-typo a {
    display: block;
    position: relative;
    margin-right: 1.6rem;
  }
  .util-header-container .util-header .h2-typo a::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1.6rem;
    height: 1.6rem;
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12.0007 13.1722L16.9507 8.22217L18.3647 9.63617L12.0007 16.0002L5.63672 9.63617L7.05072 8.22217L12.0007 13.1722Z' fill='%23052832'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: contain;
  }
  .util-header-container .util-header .user-area {
    gap: 1rem;
  }
  .util-header-container .util-header .user-area .notification {
    width: 3.2rem;
    height: 3.2rem;
  }
  .util-header-container .util-header .user-area .user {
    width: 3.2rem;
    height: 3.2rem;
  }
  .util-header-container .util-header .user-area .user .user-avatar {
    width: 3.2rem;
    height: 3.2rem;
    font-size: 1.6rem;
  }
  .util-header-container .util-header .search-wrap.combobox {
    display: none !important;
  }
  .util-header-container .util-header .relatied-menu {
    display: none;
    position: absolute;
    top: 5.7rem;
    left: 0;
    background-color: var(--color-white);
    width: 100vw;
    height: calc(100vh - var(--header-height));
    z-index: 3;
  }
  .util-header-container .util-header .relatied-menu.is-active {
    display: block;
  }
  .util-header-container .util-header .relatied-menu > ul {
    display: block;
    padding: 2.4rem 3.6rem;
  }
  .util-header-container .util-header .relatied-menu > ul > li > a.depth1, .util-header-container .util-header .relatied-menu > ul > li > button.depth1 {
    display: block;
    width: 100%;
    padding: 1.6rem 0;
    font-size: 1.4rem;
    font-weight: 400;
    text-align: left;
  }
  .util-header-container .util-header .relatied-menu .dropdown {
    position: unset;
    width: 100%;
    min-width: unset;
    max-height: unset;
    padding: 1rem 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .util-header-container .util-header .relatied-menu .dropdown .dropdown-item {
    font-weight: 400;
  }
  .util-header-container .util-header .relatied-menu .dropdown .dropdown-item > * {
    padding: 1rem;
  }
  .util-header-container .util-header .relatied-menu .dropdown .dropdown-item > *:hover, .util-header-container .util-header .relatied-menu .dropdown .dropdown-item > *:active, .util-header-container .util-header .relatied-menu .dropdown .dropdown-item > *:focus {
    font-weight: bold;
  }
  .util-header-container .util-header .relatied-menu .dropdown .dropdown-item .ico, .util-header-container .util-header .relatied-menu .dropdown .dropdown-item .description {
    display: none;
  }
  .util-header-container .util-header .relatied-menu .dropdown .dropdown-item.line {
    margin-top: 0;
  }
  .util-header-container .util-header .relatied-menu .dropdown .dropdown-item.line::before {
    display: none;
  }
  .util-header-container .util-header .search-wrap.combobox .dropdown {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: unset;
    min-width: unset;
    height: 100dvh;
    border: 0;
    border-radius: 0;
    background-color: var(--color-white);
    box-shadow: none;
  }
  .util-header-container .util-header .search-wrap.combobox .dropdown .dropdown-item > * {
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    font-size: 1.4rem;
    font-weight: 400;
  }
  .util-header-container .util-header .search-wrap.combobox .dropdown .dropdown-item .color-chip {
    width: 2.8rem;
    height: 2.8rem;
  }
  .util-header-container .util-header .search-wrap.combobox .dropdown .dropdown-item .color-chip .inner {
    width: 1.4rem;
    height: 1.4rem;
  }
  .util-header-container .util-header .search-wrap.combobox .dropdown .dropdown-item .user-profile-avatar {
    margin-top: 0;
    margin-bottom: 0;
  }
  .util-header-container .only-mobile {
    display: block;
  }
  .user-navigation-container {
    width: 100%;
  }
  .user-navigation-container .user-profile-wrap {
    position: relative;
    margin-bottom: 2rem;
  }
  .user-navigation-container .user-profile-wrap .user-profile-avatar {
    width: 4rem;
    height: 4rem;
  }
  .user-navigation-container .user-profile-wrap .info-wrap {
    gap: 1.2rem;
    height: auto;
  }
  .user-navigation-container .user-profile-wrap .info-wrap .info {
    flex-grow: 1;
  }
  .user-navigation-container .user-profile-wrap .info-wrap .info .name {
    display: block;
    width: 100%;
    margin: 0;
    font-size: 1.6rem;
  }
  .user-navigation-container .user-profile-wrap .info-wrap .btn-wrap {
    flex-shrink: 0;
    margin-top: 0;
  }
  .user-navigation-container .user-profile-wrap .info-wrap .btn-wrap .btn {
    width: 4rem;
    height: 3.6rem;
  }
  .user-navigation-container .user-profile-wrap .info-wrap .btn-wrap .btn .word {
    display: none;
  }
  .user-navigation-container .user-profile-wrap .info-wrap .btn-wrap .btn .ico {
    flex-shrink: 0;
  }
  .user-navigation-container .user-profile-wrap .info-wrap .btn-wrap .dropdown {
    width: auto;
  }
  .user-navigation-container .user-profile-wrap .user-profile .user-profile-avatar {
    width: 4rem;
    height: 4rem;
    margin-bottom: 0;
    font-size: 1.6rem;
  }
  .user-navigation-container .user-profile-wrap .intro {
    margin-top: 1.2rem;
    font-size: 1.1rem;
  }
  .user-navigation-container .user-stats {
    display: grid;
    grid-template-columns: 40% 1fr;
  }
  .user-navigation-container .user-navigation {
    overflow-x: auto;
    overflow-y: hidden;
  }
  .user-navigation-container .user-navigation .user-nav {
    gap: 24px;
  }
  .user-navigation-container .user-navigation .user-nav .user-nav__summary {
    flex: 0 0 auto;
  }
  .card-section {
    margin-top: 1.6rem;
  }
  .card-section .card {
    max-width: calc(100vw - 4rem);
    padding: 2rem;
  }
  /* summary */
  .user-content .section-title {
    font-size: 1.6rem;
  }
  .user-content .stats-section .stats-content {
    margin: 0;
    flex-direction: column;
  }
  .user-content .stats-section .stats-content .col {
    padding: 2rem 0;
    border-left: 0;
    border-top: 1px solid var(--primary-10);
  }
  .user-content .stats-section .stats-content .col:first-child {
    padding-top: 0;
    padding-bottom: 0;
    border-top: 0;
  }
  .user-content .stats-section .user-stats-list {
    grid-template-rows: auto;
    grid-auto-flow: row; /* 모바일에서는 다시 가로 방향 */
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
  }
  .user-content .stats-section .user-stats-item {
    padding-left: 0;
    padding-right: 0;
  }
  .user-content .stats-section .user-stats-item:nth-child(3n+1) {
    padding-top: 4rem;
  }
  .user-content .stats-section .user-stats-item::after {
    display: none;
  }
  .user-content .stats-section .user-stats-item:nth-child(3n+1)::after {
    display: block;
    top: 2rem;
    left: 0;
    width: 100%;
    height: 1px;
  }
  .user-content .stats-section .user-stats-item:first-child {
    padding-top: 0;
  }
  .user-content .stats-section .user-stats-item:first-child::after {
    display: none;
  }
  .user-content .summary-title,
  .user-content .summary-meta,
  .user-content .summary-date,
  .user-content .summary-username,
  .user-content .summary-replies,
  .user-content .summary-grant,
  .user-content .summary-code,
  .user-content .categories-content .list-body li .col {
    font-size: 1.4rem;
  }
  .user-content .summary-count {
    font-size: 1.1rem;
  }
  .user-content .members-content {
    flex-direction: column;
    row-gap: 4rem;
  }
  .user-content .members-content .h3-typo {
    font-size: 1.5rem;
  }
  .user-content .members-content .col:nth-child(2)::before, .user-content .members-content .col:nth-child(3)::before {
    left: 0;
    top: -2rem;
    height: 1px;
    width: 100%;
  }
  .user-content .members-content .members-content-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0.8rem;
  }
  .user-content .members-content .members-content-list .members-list-item {
    flex: 1 1 40%;
  }
  .user-content .members-content .members-content-list .user-profile-avatar {
    width: 4rem;
    height: 4rem;
  }
  .user-content .categories-content .col {
    width: 6rem;
  }
  .user-content .categories-content .list-column .col {
    font-size: 1.2rem;
  }
  .user-content .unified-summary-section {
    grid-template-columns: 1fr;
    gap: 1.6rem 0;
  }
  .user-content .badges-section {
    padding-bottom: 1.6rem;
  }
  .user-content .badges-section .section-title {
    margin-top: 2rem;
  }
  .user-content .badges-section .badges-content-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem 0;
  }
  .user-content .badges-section .badges-content-list .badges-list-item {
    gap: 1.2rem;
  }
  .user-content .badges-section .badges-content-list .badges-list-item .badges, .user-content .badges-section .badges-content-list .badges-list-item img {
    width: 8rem;
    height: 8rem;
  }
  .user-content .badges-section .badges-content-list .badges-list-item strong {
    font-size: 1.5rem;
  }
  .user-content .badges-section .badges-content-list .badges-list-item p {
    font-size: 1.4rem;
  }
  .user-content .badges-section .badges-content-list .badges-list-item.checked::after {
    top: 5.6rem;
    left: 5.6rem;
    width: 2.4rem;
    height: 2.4rem;
  }
  .user-content .badges-section .badges-info {
    flex-direction: column;
    row-gap: 1.8rem;
  }
  .user-content .badges-section .badges-info img {
    width: 12rem;
    height: 12rem;
  }
  .user-content .badges-section .badges-info .item-desc {
    text-align: center;
  }
  .user-content .badges-section .badges-info .item-desc strong {
    font-size: 2rem;
  }
  .user-content .badges-section .badges-info .item-desc p {
    font-size: 1.6rem;
  }
  .user-content .badges-section .members-content {
    margin-top: 2rem;
    padding-top: 2rem;
  }
  .user-content .badges-section .members-content .my-info {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 1.2rem;
  }
  .user-content .badges-section .members-content .btn-wrap {
    width: 100%;
  }
  .user-content .badges-section .members-content .btn-wrap .btn {
    width: 100%;
  }
  .user-content .badges-section .members-content .btn-wrap .btn.is-active {
    border: 0;
    background-color: var(--color-gr-05);
  }
  .user-content .badges-section .members-content .members-content-list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2rem;
    margin-top: 2rem;
    margin-left: 0;
    margin-right: 0;
  }
  .user-content .badges-section .members-content .members-content-list .members-list-item {
    padding: 0;
  }
  .user-content .badges-section .members-content .members-content-list .members-list-item::after {
    display: none;
  }
  .user-content .badges-section .members-content .members-content-list .members-list-item .user-profile-avatar {
    width: 6rem;
    height: 6rem;
  }
  .empty {
    min-height: 20rem;
    font-size: 1.5rem;
  }
  /* activity */
  .user-content .filter-section {
    display: none;
  }
  .user-content .activity-list-section {
    padding-bottom: 1.6rem;
  }
  .activity-list .user-profile-avatar {
    width: 4rem;
    height: 4rem;
  }
  .activity-list .list-column {
    padding: 2rem;
  }
  .activity-list .list-body li {
    padding: 2.4rem 2rem;
    width: 100%;
    min-width: 0;
  }
  .activity-list .list-body li .date {
    position: absolute;
    top: 2.4rem;
    right: 2rem;
    font-size: 1.3rem;
  }
  .activity-list .list-body li::before {
    width: calc(100% - 4rem);
  }
  .activity-list .activity-link {
    width: 100%;
    min-width: 0;
  }
  .activity-list .activity-link .top-row {
    flex-direction: column;
    width: 100%;
    min-width: 0;
    gap: 1.2rem;
  }
  .activity-list .activity-link .top-row .ico {
    width: 1.6rem;
    height: 1.6rem;
  }
  .activity-list .activity-link .top-row a {
    width: 100%;
    min-width: 0;
  }
  .activity-list .activity-link .top-row a .title {
    font-size: 1.3rem;
    width: 100%;
    min-width: 0;
  }
  .activity-list .activity-link .top-row a .title .ellipsis {
    flex: 1;
    min-width: 0;
  }
  .activity-list .activity-link a .description {
    font-size: 1.3rem;
    width: 100%;
    min-width: 0;
  }
  .activity-list .activity-link a .description p {
    flex: 1;
    min-width: 0;
  }
  .activity-list .activity-link a .description.replies {
    gap: 1.2rem;
  }
  .activity-list .activity-link .bottom-row {
    padding-left: 0;
    width: 100%;
    min-width: 0;
  }
  .activity-list .activity-link .bottom-row .chip-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-width: 0;
  }
  .activity-list .activity-link .bottom-row .chip-list .chip.new {
    display: block;
    flex: 0 1 auto;
    min-width: 0;
    max-width: calc(100% - 13rem);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
  .activity-list .activity-link .bottom-row .chip-list .chip--ghost {
    flex-shrink: 0;
    opacity: 0.5;
    padding: 0;
    min-width: 6rem;
  }
  .activity-list .activity-link .bottom-row .chip-list .chip--ghost .bold {
    display: none;
  }
  .activity-list .activity-link .bottom-row .chip-list .chip--ghost .ico {
    display: flex;
  }
  .activity-list .chk-wrap {
    padding-top: 0.8rem;
  }
  .activity-list .activity-search-wrap {
    justify-content: flex-end;
    width: calc(100% - 4rem);
    right: 2rem;
  }
  .activity-list .activity-search-wrap .search-wrap {
    width: 100%;
  }
  .activity-list .result-text-wrap {
    padding: 0 2rem 0.4rem 2rem;
  }
  .activity-list .result-text-wrap .result-text {
    font-size: 1.1rem;
    color: var(--primary-50);
  }
  /* notifications*/
  .notifications-list-section .tab-navigation {
    margin-top: 0;
  }
  .notifications-list-section .right-column .btn-wrap {
    display: none;
  }
  .notifications-list-section .list-body li {
    flex-direction: column;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
  .notifications-list-section .list-body li .activity-link .top-row {
    flex-direction: unset;
  }
  .notifications-list-section .list-body li .activity-link .top-row a .description {
    margin-top: 0;
  }
  .notifications-list-section .list-body li .activity-link .top-row a .description p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: unset;
  }
  .notifications-list-section .list-body li .activity-link .top-row a .title .ellipsis {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: unset;
  }
  .notifications-list-section .list-body li .date {
    position: relative;
    top: auto;
    right: auto;
  }
  .unread-icon-wrap {
    top: 2.8rem;
    left: 0.6rem;
    transform: unset;
  }
  .unread-icon-wrap .dot {
    width: 0.8rem;
    height: 0.8rem;
  }
  /* setting */
  .user-preferences-container {
    /* dropdown menu toast style */
  }
  .user-preferences-container .tab-navigation.full {
    display: block;
  }
  .user-preferences-container .tab-navigation.full .tab-item {
    flex-grow: 1;
  }
  .user-preferences-container .card-section {
    position: relative;
    padding-top: 100px;
  }
  .user-preferences-container .section-title {
    display: none;
  }
  .user-preferences-container .user-preferences-inner {
    display: block;
    margin-top: 0;
  }
  .user-preferences-container .user-preferences-inner .lnb-content {
    position: absolute;
    top: 0;
    left: 8px;
    width: auto;
  }
  .user-preferences-container .user-preferences-inner .lnb-content::after {
    display: none;
  }
  .user-preferences-container .user-preferences-inner .lnb-content li {
    display: none;
    margin-top: 0;
  }
  .user-preferences-container .user-preferences-inner .lnb-content li h4 {
    display: none;
  }
  .user-preferences-container .user-preferences-inner .lnb-content li.is-active {
    display: block;
  }
  .user-preferences-container .user-preferences-inner .lnb-content li.is-active a {
    padding-right: 0;
  }
  .user-preferences-container .user-preferences-inner .lnb-content li.is-active a::after {
    display: none;
  }
  .user-preferences-container .user-preferences-inner .lnb-content li.is-active .title {
    color: var(--primary);
  }
  .user-preferences-container .user-preferences-inner .lnb-content li.is-active .description {
    padding-left: 0;
    color: var(--primary-50);
  }
  .user-preferences-container .user-preferences-inner .lnb-content li .setting-menu {
    margin-top: 0;
  }
  .user-preferences-container .user-preferences-inner .lnb-content li .setting-menu .title .ico-mask {
    display: none;
  }
  .user-preferences-container .user-preferences-inner .main-content .preferences-content-header {
    position: relative;
    margin-bottom: 2.8rem;
  }
  .user-preferences-container .user-preferences-inner .main-content .preferences-content-header .user-profile .user-name {
    font-size: 1.6rem;
  }
  .user-preferences-container .user-preferences-inner .main-content .preferences-content-header .btn-wrap {
    position: absolute;
    left: 4rem;
    top: 4rem;
  }
  .user-preferences-container .user-preferences-inner .main-content .preferences-content-header .btn-wrap .btn {
    width: 2.4rem;
    min-width: unset;
    height: 2.4rem;
    padding: 0;
    border: 2px solid var(--color-white);
    border-radius: 50%;
    background-color: var(--primary);
  }
  .user-preferences-container .user-preferences-inner .main-content .preferences-content-header .btn-wrap .btn .ico-mask {
    display: block;
    --icon-color: var(--color-white);
    width: 1.2rem;
    height: 1.2rem;
  }
  .user-preferences-container .user-preferences-inner .main-content .preferences-content-header .btn-wrap .btn .word {
    display: none;
  }
  .user-preferences-container .base-btn-group {
    margin-top: 3.2rem;
  }
  .user-preferences-container .base-btn-group button,
  .user-preferences-container .base-btn-group a {
    width: 100%;
  }
  .user-preferences-container .base-form-group .form-control.selector .dropdown-menu {
    position: fixed;
    top: auto;
    bottom: 0;
    z-index: 11;
    border: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: none;
    max-height: 50dvh;
  }
  .list-line-type .form-wrap {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }
  .list-line-type .form-wrap .switch {
    position: relative;
  }
  .list-line-type .form-wrap .switch .base-label {
    padding-right: 7.2rem;
  }
  .list-line-type .form-wrap .switch .toggle-switch-wrap {
    position: absolute;
    top: 0;
    right: 0;
  }
  .list-line-type.gap-other .form-wrap {
    gap: 2.4rem;
  }
  .form-wrap-inner {
    margin-top: 3.2rem;
    gap: 2rem;
  }
  .tracking-list-wrap {
    gap: 2.4rem;
  }
  .tracking-list-wrap .list .title-wrap .title,
  .tracking-list-wrap .list .title-wrap .description {
    font-size: 1.3rem;
  }
  .form-style-box {
    padding: 1.2rem;
    font-size: 1.5rem;
  }
  .history-modal .modal-header.include-btn .modal-header-title {
    font-size: 1.6rem;
  }
  .history-modal .user .auth {
    font-size: 1.4rem;
  }
  .history-modal .user .name {
    margin-top: 0;
    font-size: 1.5rem;
  }
  .history-modal .multiple-btns .btn {
    width: auto;
  }
  .history-modal .modal-footer .page-wrap .btn-wrap {
    flex-direction: row;
  }
  .history-modal .modal-footer .page-wrap .btn-wrap .btn {
    width: auto;
  }
  .revisions-wrap {
    flex-direction: column;
    row-gap: 4rem;
  }
  .revisions-wrap .revision-title {
    font-size: 1.6rem;
  }
  .revisions-wrap .col::before {
    left: 0;
    top: -2rem;
    width: 100%;
    height: 0.1rem;
  }
  /* mypage > reports */
  .report-content {
    padding-bottom: 1.6rem;
  }
  .report-list-wrap {
    margin-top: 1.6rem;
  }
  .report-list-wrap .report-card-header {
    padding: 2rem;
    font-size: 1.4rem;
  }
  .report-list-wrap .report-card-header .h3-typo {
    margin-top: 2rem;
    padding-top: 2rem;
  }
  .report-list-wrap .report-card-body {
    flex-direction: column;
    padding: 0 2rem 2.6rem 2rem;
    font-size: 1.3rem;
  }
  .report-list-wrap .report-card-body [role=columnheader] {
    padding-bottom: 0;
    border-bottom: 0;
    font-size: 1.2rem;
  }
  .report-list-wrap .report-card-body .report-item {
    border-top: 1px solid var(--primary-10);
  }
  .report-list-wrap .report-card-body .report-item [role=columnheader] {
    display: none;
  }
  .report-list-wrap .report-card-body .report-item .reported-user {
    flex-direction: column;
    gap: 0.8rem;
  }
  .report-list-wrap .report-card-body .report-item .user-avatar {
    width: 4rem;
    height: 4rem;
  }
  .report-list-wrap .report-card-body .report-info {
    flex: 0 1 auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    width: auto;
    margin-top: 0.8rem;
    text-align: left;
  }
  .report-list-wrap .report-card-body .report-info > li {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    width: auto;
  }
  .report-list-wrap .report-card-body .report-info > li [role=listitem] {
    padding-top: 0;
    min-height: unset;
  }
  .report-list-wrap .report-card-footer {
    flex-direction: column;
    gap: 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
  }
  .report-list-wrap .report-card-footer .reviewer-info {
    flex-direction: column;
    gap: 1.2rem;
  }
  .report-list-wrap .report-card-footer .reviewer-info > li:nth-child(1) {
    order: 1;
  }
  .report-list-wrap .report-card-footer .reviewer-info > li:nth-child(2) {
    order: 3;
  }
  .report-list-wrap .report-card-footer .reviewer-info > li:nth-child(3) {
    order: 2;
  }
  .report-list-wrap .report-card-footer .btn-wrap {
    width: 100%;
  }
  .report-list-wrap .report-card-footer .btn-wrap .btn {
    width: 100%;
  }
  /* global search*/
  .global-search-wrap .search-basic-wrap {
    flex-direction: column;
  }
  .global-search-wrap .search-basic-wrap .base-form-group.small {
    flex-direction: column;
  }
  .global-search-wrap .search-basic-wrap .base-form-group.small .form-control.selector {
    width: 100%;
  }
  .global-search-wrap .search-basic-wrap .base-form-group.small .form-control.selector .dropdown-toggle {
    width: 100%;
  }
  .global-search-wrap .search-basic-wrap .btn-wrap .btn {
    width: 100%;
  }
  .global-search-wrap .advanced-filters-wrap .form-wrap {
    flex-direction: column;
    gap: 2rem;
  }
  .global-search-wrap .advanced-filters-wrap .form-wrap .combobox .combobox-btn {
    font-size: 1.5rem;
  }
  .global-search-wrap .advanced-filters-wrap .form-wrap > .col > div:not(:first-child) {
    margin-top: 2rem;
  }
  .global-search-wrap .filters-count-wrap .form-wrap .row .base-form-group .count-input .btn-wrap {
    display: none;
  }
  .global-search-wrap .checkbox-group {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .global-search-wrap .calender-group .dimmed {
    display: block !important;
  }
  .global-search-wrap .search-result-wrap .search-result-list .list-column {
    padding: 2rem;
  }
  .global-search-wrap .search-result-wrap .search-result-list .list-body li {
    flex-direction: column;
    row-gap: 1.2rem;
    padding: 2.4rem 2rem;
  }
  .global-search-wrap .search-result-wrap .search-result-list .list-body li::before {
    width: calc(100% - 4rem);
  }
  .global-search-wrap .search-result-wrap .search-result-list .list-body li:first-child {
    padding-top: 2.4rem;
  }
  .global-search-wrap .search-result-wrap .search-result-list .list-body li:first-child::before {
    display: block;
  }
  .global-search-wrap .search-result-wrap .search-result-list .list-body li .user-profile-avatar {
    width: 4rem;
    height: 4rem;
    margin-bottom: 0;
    font-size: 1.3rem;
  }
  .global-search-wrap .search-result-wrap .search-result-list .list-body li .content-list-wrap .title {
    font-size: 1.3rem;
  }
  .global-search-wrap .search-result-wrap .search-result-list .list-body li .content-list-wrap .title .ico {
    width: 1.6rem;
    height: 1.6rem;
  }
  .global-search-wrap .search-result-wrap .search-result-list .list-body li .content-list-wrap .description {
    font-size: 1.3rem;
  }
  .global-search-wrap .search-result-wrap .search-result-list .list-body li .content-list-wrap .description p {
    -webkit-line-clamp: 4;
  }
  .global-search-wrap .search-result-wrap .search-result-list .list-body.category li > a {
    font-size: 1.4rem;
  }
  .global-search-wrap .search-result-wrap .search-result-list .list-body.user {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.4rem;
    padding: 2rem;
  }
  .global-search-wrap .search-result-wrap .search-result-list .list-body.user li a {
    font-size: 1.4rem;
  }
  .global-search-wrap .search-result-wrap .search-result-list .list-body.user li a .user-profile-avatar {
    width: 2.8rem;
    height: 2.8rem;
  }
}
/* sdp */
.sdp-content {
  --red: #ec2000;
  --border-color: #dcdeee;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 80px;
  font-size: 16px;
}
.sdp-content ::placeholder,
.sdp-content .form-control .placeholder {
  font-size: 16px;
  font-weight: 400;
  color: #9e9e9e;
}
.sdp-content-inner {
  padding: 100px 102px;
  border-radius: 36px;
  background-color: var(--color-white);
}
.sdp-content-inner.col {
  display: flex;
  column-gap: 126px;
}
.sdp-content-inner.col .base-text-group {
  flex-shrink: 0;
  width: 384px;
  text-align: left;
}
.sdp-content-inner.col .base-text-group .text-group-title {
  max-width: none;
}
.sdp-content-inner.col .base-text-group .text-group-text {
  font-size: 20px;
}
.sdp-content-inner.col .content-wrap {
  flex: 1 1 auto;
}
.sdp-content-inner.col .content-wrap.margin-top {
  margin-top: 48px;
}
.sdp-content-inner.col .base-section-panel {
  gap: 24px;
  padding: unset;
  border: unset;
  border-radius: unset;
  background-color: unset;
}

.small-container {
  max-width: 588px;
  margin: 0 auto;
}

/* login */
.sdp-content.sdf-login {
  max-width: 640px;
}
.sdp-content.sdf-login .base-text-group .text-group-title {
  max-width: none;
  font-size: 26px;
}
.sdp-content.sdf-login .form-wrap {
  gap: 12px;
}
.sdp-content.sdf-login .form-wrap .chk-wrap {
  color: var(--primary-70);
}
.sdp-content.sdf-login .form-wrap .base-btn-group {
  width: 100%;
  margin-top: 16px;
}

/* forums onboarding flow */
.on-boarding {
  display: flex;
  gap: 24px;
  width: 88%;
  margin: 0 auto 60px;
  text-align: center;
}
.on-boarding li {
  position: relative;
  width: 25%;
}
.on-boarding li + li::before {
  content: "";
  position: absolute;
  left: -50%;
  top: 23px;
  width: calc(100% - 56px);
  height: 2px;
  border-radius: 1px;
  background-color: var(--s-primary);
  transform: translateX(16px);
}
.on-boarding .mark {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 28px;
  border: 1px solid var(--s-primary);
  border-radius: 50%;
  background-color: var(--color-white);
  font-size: 21px;
  font-family: "SamsungHead";
  font-weight: 700;
  color: var(--s-primary);
}
.on-boarding .mark--bg {
  display: none;
}
.on-boarding .step {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--s-primary);
}
.on-boarding .title {
  display: none;
  font-size: 20px;
  font-family: "SamsungHead";
  font-weight: 700;
  opacity: 0.4;
}
.on-boarding .description {
  display: none;
  margin-top: 4px;
  color: #535353;
}
.on-boarding .completed .mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--color-white) url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M10.0007 15.172L19.1927 5.979L20.6077 7.393L10.0007 18L3.63672 11.636L5.05072 10.222L10.0007 15.172Z' fill='%232088fd'/%3E%3C/svg%3E%0A") no-repeat 50%;
  transform: translate(-50%, -50%);
}
.on-boarding .completed ~ li .mark {
  background-color: var(--s-primary);
  color: var(--color-white);
}
.on-boarding .current .mark {
  background-color: var(--s-primary);
  color: var(--color-white);
}
.on-boarding .current .mark--bg {
  position: absolute;
  left: calc(50% - 24px);
  top: 0;
  z-index: 0;
  display: flex;
  margin-bottom: 0;
  border-color: var(--s-primary-30);
  background-color: #f6f6f6;
  scale: 1.5;
}
.on-boarding .current .mark--bg::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border: inherit;
  border-radius: inherit;
}
.on-boarding .current .title {
  display: block;
  opacity: 1;
}
.on-boarding .current ~ li::before {
  background-color: #79b8fe;
}
.on-boarding .current ~ li .mark {
  border: 0;
  background-color: #79b8fe;
  color: var(--color-white);
}
.on-boarding .current::before,
.on-boarding .current + li::before {
  width: calc(100% - 68px);
}
.on-boarding .current + li::before {
  transform: translateX(28px);
}
.on-boarding.guide {
  width: auto;
  margin-bottom: 0;
}
.on-boarding.guide li + li::before {
  width: calc(100% - 40px);
  transform: translateX(8px);
}
.on-boarding.guide .mark {
  margin-bottom: 16px;
}
.on-boarding.guide .title {
  display: block;
  opacity: 1;
}
.on-boarding.guide .description {
  display: block;
}

.text-group-title {
  font-size: 36px;
  font-family: "SamsungHead";
  font-weight: 700;
  line-height: 1.333;
}

.text-group-text {
  font-size: 20px;
}

.text-group-email {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 18px;
  color: var(--s-primary);
}
.text-group-email .ico {
  width: 24px;
  height: 24px;
}

.base-text-group {
  margin-bottom: 60px;
  text-align: center;
}
.base-text-group .text-group-title {
  max-width: 58%;
  margin: 0 auto;
}
.base-text-group .text-group-text {
  margin-top: 24px;
  color: #363636;
}
.base-text-group .text-group-email {
  margin-top: 24px;
}

.base-notice {
  max-width: 792px;
  margin: 0 auto;
  border-radius: 8px;
  background: rgba(32, 136, 253, 0.08);
  padding: 24px;
  font-size: 18px;
  color: #363636;
}
.base-notice ul {
  padding-left: 40px;
}
.base-notice li {
  list-style: initial;
}
.base-notice .base-link-text {
  padding: 8px 10px;
}
.base-notice .base-link-text:last-child {
  margin-top: 32px;
}

.noti-text {
  color: var(--red);
}

.base-btn-group {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 588px;
  margin: 40px auto 0;
}
.base-btn-group.row {
  flex-direction: column;
  row-gap: 16px;
}
.base-btn-group.underline {
  align-items: flex-start;
}

.base-button {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 4px;
  position: relative;
  width: 100%;
  height: 56px;
  border-radius: 28px;
  background: var(--s-primary);
  font-size: 16px;
  font-family: "SamsungHead";
  font-weight: 700;
  color: #fff;
}
.base-button:hover, .base-button:focus {
  background-color: #1d7ce6;
}
.base-button:disabled {
  background-color: #ddd;
}
.base-button.outline {
  border: 1px solid #1E1E1E;
  background: 0 0;
  color: #1E1E1E;
}
.base-button.outline:hover:not(:disabled), .base-button.outline:focus:not(:disabled) {
  background-color: #EFEFEF;
}
.base-button.outline:disabled {
  border: 1px solid #C4C4C4;
  color: #C4C4C4;
}
.base-button.seondary {
  background-color: #e5e5e5;
  color: var(--primary);
}
.base-button.seondary:hover:not(:disabled), .base-button.seondary:focus:not(:disabled) {
  background-color: #d0d0d0;
}
.base-button.tertiary {
  background-color: #1E1E1E;
  color: var(--color-white);
}
.base-button.tertiary:hover:not(:disabled), .base-button.tertiary:focus:not(:disabled) {
  background-color: #535353;
}
.base-button.tertiary:disabled {
  background-color: #ddd;
  color: #C4C4C4;
}
.base-button.small {
  height: 44px;
}
.base-button.full {
  width: 100%;
}
.base-button > .ico.left {
  position: absolute;
  left: 4px;
  width: 36px;
  height: 36px;
}
.base-link-text {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-family: "SamsungHead";
  font-weight: 700;
  color: var(--s-primary);
}
.base-link-text::after {
  content: "";
  display: inline-block;
  overflow: hidden;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M5.14307 13.7144L10.8574 8.00007L5.14307 2.28578' stroke='%232088FD' stroke-width='1.37143'/%3E%3C/svg%3E%0A") no-repeat 50%/contain;
  text-indent: 100%;
  white-space: nowrap;
}
.base-link-text:hover, .base-link-text:focus {
  text-decoration: none !important;
}

.base-link-underline {
  font-weight: 700;
  color: var(--color-black-40);
  text-decoration: underline;
}

.base-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  height: 32px;
  padding: 0 16px;
  border-radius: 32px;
  background-color: rgba(15, 66, 207, 0.05);
  font-size: 12px;
  font-weight: 700;
  color: #0F42CF;
  text-transform: uppercase;
}
.base-badge + .text-group-title {
  margin-top: 16px;
}

.form-control {
  position: relative;
  display: block;
  height: 56px;
  padding: 0 16px;
  border: 1px solid #c4c4c4;
  border-radius: 8px;
  background-color: #fff;
  font-family: "SamsungBody";
  transition: 0.15s ease-in-out;
}
.form-control:not(:read-only):focus, .form-control.selector.is-active {
  border: 1px solid var(--s-primary);
  background-color: rgba(32, 136, 253, 0.04);
}
.form-control:disabled {
  background-color: rgba(30, 30, 30, 0.1);
}
.form-control.selector {
  padding: 0;
}
.form-control.selector::after {
  content: "";
  position: absolute;
  right: 16px;
  top: calc(50% - 8px);
  display: inline-block;
  overflow: hidden;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M2.28613 5.14307L8.00042 10.8574L13.7147 5.14307' stroke='%23363636' stroke-width='1.37143'/%3E%3C/svg%3E%0A") no-repeat 50%/contain;
  text-indent: 100%;
  white-space: nowrap;
  pointer-events: none;
  flex-shrink: 0;
}
.form-control.selector.is-active::after {
  transform: rotate(180deg);
}
.form-control.selector.is-active .dropdown-menu {
  display: block;
}
.form-control.multi::after {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2814_97451)'%3E%3Cpath d='M11 11V5H13V11H19V13H13V19H11V13H5V11H11Z' fill='%23052832'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2814_97451'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E") !important;
}
.form-control .dropdown-toggle {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 16px;
  padding-right: 40px;
  border-radius: inherit;
  text-align: left;
}
.form-control .dropdown-toggle .txt {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
  min-width: 0;
}
.form-control .dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  z-index: 10;
  display: none;
  overflow-y: auto;
  width: 100%;
  min-width: 160px;
  max-height: 436px;
  margin-top: 4px;
  padding: 8px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: var(--color-white);
  color: #212529;
  will-change: transform;
}
.form-control .dropdown-menu.check .dropdown-item {
  position: relative;
  padding-left: 44px;
}
.form-control .dropdown-menu.check .dropdown-item .ico {
  position: absolute;
  top: 8px;
  left: 12px;
  width: 20px;
  height: 20px;
  padding: 0;
}
.form-control .dropdown-menu.search {
  max-height: unset !important;
  overflow-y: unset !important;
}
.form-control .dropdown-menu.search .search-wrap {
  margin-top: 0;
}
.form-control .dropdown-menu.search .option-list {
  overflow-y: auto;
  max-height: 200px !important;
  margin-top: 8px;
}
.form-control .dropdown-menu.multi .select-list {
  margin: 8px;
}
.form-control .dropdown-menu .search-container {
  width: 100%;
}
.form-control .dropdown-item {
  display: flex;
  align-items: center;
  padding: 8px 16px;
  font-weight: 600;
}
.form-control .dropdown-item:hover, .form-control .dropdown-item:focus {
  background-color: rgba(15, 66, 207, 0.1);
  color: #16181b;
  text-decoration: none;
}
.form-control .dropdown-item:active {
  background: 0 0;
  color: #1528b3;
}
.form-control .search-wrap {
  display: flex;
  gap: 12px;
  padding: 9px 12px;
  margin: 8px;
  border-radius: 12px;
  background-color: var(--primary-05);
}
.form-control .search-wrap .ico {
  width: 20px;
  height: 20px;
}
.form-control .search-wrap .input-search {
  width: 100%;
  border: 0;
  background-color: transparent;
  font-size: 13px;
  font-weight: 500;
}

.base-form-group.line {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}
.base-form-group .base-label {
  font-size: 18px;
  font-family: "SamsungBody";
  font-weight: 700;
  line-height: 1.333;
  color: #363636;
}
.base-form-group .base-label.required::after {
  content: "*";
  color: var(--red);
  margin-left: 4px;
  font-weight: 400;
}
.base-form-group .base-label-guide {
  font-family: "SamsungBody";
}
[class^=base-label] + .form-control,
[class^=base-label] + .checkbox-group {
  margin-top: 12px;
}
[class^=base-label] + .base-label-guide + .checkbox-group {
  margin-top: 24px;
}

.base-form-group .base-label .comment {
  display: block;
  font-size: 14px;
  color: var(--primary-50);
  font-weight: 400;
}
.base-form-group .base-label-guide {
  margin-top: 4px;
  font-size: 16px;
  color: #363636;
  line-height: 1.5;
}
.base-form-group.small .base-label {
  font-family: "SamsungBody";
  font-size: 14px;
  line-height: 1.6;
}
.base-form-group.small .form-control {
  height: 44px;
  border-radius: 12px;
  border: 2px solid var(--primary-10);
  font-size: 16px;
  font-family: "SamsungBody";
  font-weight: 400;
  padding-top: 4px;
}
.base-form-group.small .form-control:not(.selector):read-only {
  background-color: var(--primary-05);
}
.base-form-group.small .form-control:not(:read-only):focus, .base-form-group.small .form-control.selector.is-active {
  border: 2px solid var(--secondary);
  background-color: var(--color-white);
}
.base-form-group.small .form-control.selector {
  padding: 0;
}
.base-form-group.small .form-control.selector::after {
  right: 12px;
  top: calc(50% - 10px);
  display: inline-block;
  overflow: hidden;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.13152 7.77364C4.75435 7.34258 5.06047 6.66797 5.63324 6.66797H14.3615C14.9343 6.66797 15.2404 7.34258 14.8633 7.77364L10.6245 12.6179C10.2925 12.9973 9.70226 12.9973 9.37025 12.6179L5.13152 7.77364Z' fill='%23052832'/%3E%3C/svg%3E") no-repeat 50%/contain;
  text-indent: 100%;
  white-space: nowrap;
}
.base-form-group.small .form-control.selector .dropdown-toggle {
  padding-right: 36px;
  padding-top: 4px;
}
.base-form-group.small .form-control .dropdown-menu {
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  max-height: 172px;
  margin-top: 0;
  border-radius: 12px;
  border: 2px solid var(--primary-10);
  box-shadow: 0 8px 16px 0 var(--primary-05);
}
.base-form-group.small .form-control .dropdown-item {
  font-size: 13px;
}
.base-form-group.small ::placeholder,
.base-form-group.small .form-control .placeholder {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-50);
}
.base-form-group.small textarea {
  padding-top: 16px;
  padding-bottom: 16px;
}
.base-form-group.col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.base-form-group.col > label,
.base-form-group.col > div,
.base-form-group.col > .base-label,
.base-form-group.col > .form-control {
  min-width: 0;
}
.base-form-group.col .form-control {
  margin-top: 0;
}
.base-form-group.col .right-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.base-form-group.col .right-col .btn-wrap {
  justify-content: flex-end;
}
.base-form-group.col .btn-wrap.btn-download .btn {
  justify-content: left;
  width: 100%;
  height: 44px;
  font-size: 16px;
}
.base-form-group.underline .inner-wrap {
  position: relative;
  padding-top: 8px;
}
.base-form-group.underline .input-label {
  position: absolute;
  top: 20px;
  left: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-black-20);
  pointer-events: none;
  transition: all 0.3s ease;
  transform-origin: left;
}
.base-form-group.underline .label-text {
  font-size: 14px;
  color: #666;
  margin-bottom: 16px;
  display: block;
}
.base-form-group.underline .input-field {
  width: 100%;
  border: none;
  border-bottom: 2px solid #d0d0d0;
  padding: 12px 0;
  font-size: 18px;
  font-weight: 700;
  outline: none;
  transition: all 0.3s ease;
  background: transparent;
}
.base-form-group.underline .input-field:hover:not(:focus) {
  border-bottom-color: var(--color-black);
}
.base-form-group.underline .input-field:focus {
  border-bottom-color: var(--s-primary);
}
.base-form-group.underline .input-field:focus ~ .input-label, .base-form-group.underline .input-field:not(:placeholder-shown) ~ .input-label {
  top: -8px;
  font-size: 12px;
  color: var(--s-primary);
  font-weight: 400;
}
.base-form-group .base-btn-group {
  height: 48px;
  margin-top: 12px;
  font-size: 14px;
}
.base-form-group .base-btn-group .base-button {
  height: 48px;
}

.checkbox-group {
  display: grid;
  gap: 16px;
}
.checkbox-group.col2 {
  grid-template-columns: repeat(2, 1fr);
}
.checkbox-group.col4 {
  grid-template-columns: repeat(4, 1fr);
}

.base-checkbox {
  cursor: pointer;
}
.base-checkbox .checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  word-break: keep-all;
}
.base-checkbox .checkbox-icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin: 3px 0 0 3px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}
.base-checkbox .checkbox-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 8px;
  height: 6px;
  border: 1.5px solid var(--color-white);
  border-width: 0 0 1.5px 1.5px;
  transform: rotate(-45deg);
  opacity: 0;
}
.base-checkbox .checkbox-text {
  font-family: "SamsungBody";
}
.base-checkbox input:checked + .checkbox-label .checkbox-icon {
  border-color: var(--s-primary);
  background-color: var(--s-primary);
}
.base-checkbox input:checked + .checkbox-label .checkbox-icon::after {
  opacity: 1;
}

.terms-box .base-form-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.terms-box .base-form-group + .base-form-group {
  margin-top: 24px;
}
.terms-box .terms-arrow {
  flex: 0 0 16px;
  display: inline-block;
  overflow: hidden;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M5.14307 13.7144L10.8574 8.00007L5.14307 2.28578' stroke='%23363636' stroke-width='1.37143'/%3E%3C/svg%3E%0A") no-repeat 50%/contain;
  text-indent: 100%;
  white-space: nowrap;
}

.base-section-panel {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 48px 40px 32px;
  border: 1px solid var(--border-color);
  border-radius: 24px;
  background-color: #f8f9fa;
}

.profile-image .thumb {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  border-radius: 50%;
  background-color: #d9d9d9;
  object-fit: cover;
}
.profile-image .btn-wrap {
  justify-content: center;
  margin-top: 16px;
}
.profile-image .btn-wrap .btn {
  padding: 0 18px;
}

.toggle-switch-wrap {
  display: inline-block;
  position: relative;
}
.toggle-switch-wrap .toggle-switch-input {
  display: none;
}
.toggle-switch-wrap .toggle-switch-input:checked + .toggle-switch-label {
  background-color: var(--secondary);
}
.toggle-switch-wrap .toggle-switch-input:checked + .toggle-switch-label::before {
  transform: translateX(20px);
}
.toggle-switch-wrap .toggle-switch-label {
  display: block;
  width: 48px;
  height: 24px;
  background-color: var(--primary-10);
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease;
}
.toggle-switch-wrap .toggle-switch-label::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 16px;
  background-color: var(--color-white);
  border-radius: 4px;
  transition: transform 0.3s ease;
}
.toggle-switch-wrap .toggle-switch-label:active::before {
  width: 20px;
}

/* modal */
.base-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100dvh;
  padding: 0 24px;
  background: rgba(0, 0, 0, 0.6);
}
.base-modal .base-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 996px;
  padding: 40px 40px 32px;
  border-radius: 24px;
  background-color: var(--color-white);
}
.base-modal .base-modal-dialog.md {
  max-width: 520px;
}
.base-modal .base-notice {
  padding: 0;
  background: 0 0;
  font-size: 20px;
  color: #535353;
}
.base-modal .base-notice .title {
  margin-bottom: 12px;
  font-size: 24px;
  font-family: "SamsungHead";
  font-weight: 700;
  color: var(--color-black);
  text-align: center;
}

@media (max-width: 80em) {
  .sdp-content {
    max-width: unset;
    padding-top: 0;
    padding-bottom: 0;
  }
  .sdp-content ::placeholder,
  .sdp-content .form-control .placeholder {
    font-size: 14px;
  }
  .sdp-content .sdp-content-inner {
    padding: 40px 24px 60px;
    border-radius: 0;
    font-size: 14px;
  }
  .sdp-content .sdp-content-inner.col {
    flex-direction: column;
  }
  .sdp-content .sdp-content-inner.col .content-wrap.margin-top {
    margin-top: 0;
  }
  .sdp-content .sdp-content-inner.col .base-text-group {
    width: 100%;
  }
  .sdp-content .sdp-content-inner.col .base-text-group .text-group-text {
    font-size: 16px;
  }
  .sdp-content .sdp-content-inner.col .base-text-group .text-group-email {
    margin-top: 16px;
    font-size: 14px;
  }
  .sdp-content .sdp-content-inner.col .base-text-group .text-group-email .ico {
    width: 20px;
    height: 20px;
  }
  .sdp-content .sdp-content-inner.col .base-btn-group {
    max-width: unset;
  }
  .sdp-content .sdp-content-inner.col .base-btn-group .base-button {
    width: 100%;
  }
}
@media (max-width: 64em) {
  /* forums onboarding flow */
  .on-boarding {
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 6rem;
    text-align: left;
  }
  .on-boarding li {
    display: flex;
    gap: 1.6rem;
    width: auto;
  }
  .on-boarding li + li::before {
    left: 1.9rem !important;
    top: -100%;
    width: 0.2rem !important;
    height: calc(100% + 20px);
    transform: translate(0, -20px) !important;
  }
  .on-boarding .mark {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    margin: 0;
    font-size: 1.8rem;
  }
  .on-boarding .step {
    margin-bottom: 0.4rem;
    font-size: 1.4rem;
  }
  .on-boarding .title {
    display: block;
    font-size: 1.6rem;
  }
  .on-boarding .description {
    margin-top: 0.4rem;
  }
  .on-boarding .completed .mark::after {
    background-size: 2rem;
  }
  .on-boarding .current .mark--bg {
    display: none;
  }
  .text-group-title {
    font-size: 2.4rem;
  }
  .text-group-text {
    font-size: 1.6rem;
  }
  .base-text-group {
    margin-bottom: 4rem;
  }
  .base-text-group .text-group-title {
    max-width: none;
  }
  .base-text-group .text-group-text {
    margin-top: 0.8rem;
  }
  .base-notice {
    border-radius: 0.8rem;
    padding: 1.6rem;
    font-size: 1.4rem;
  }
  .base-notice ul {
    padding-left: 4rem;
  }
  .base-notice .base-link-text {
    padding: 1rem;
  }
  .base-notice .base-link-text:last-child {
    margin-top: 2rem;
  }
  .base-btn-group {
    flex-direction: column-reverse;
    gap: 1.6rem;
    margin-top: 4rem;
  }
  .base-button {
    height: 4.8rem;
    border-radius: 2.4rem;
    font-size: 1.4rem;
  }
  .base-link-text {
    gap: 0.4rem;
    font-size: 1.4rem;
  }
  .base-link-text::after {
    width: 1.4rem;
    height: 1.4rem;
  }
  .base-link-text:hover, .base-link-text:focus {
    text-decoration: none !important;
  }
  .base-badge + .text-group-title {
    margin-top: 0.8rem;
  }
  .form-control {
    height: 4.8rem;
    padding: 0 1.6rem;
    border-radius: 0.4rem;
  }
  .form-control.selector::after {
    right: 1.6rem;
    top: calc(50% - 0.8rem);
    width: 1.6rem;
    height: 1.6rem;
  }
  .form-control .dropdown-toggle {
    padding: 0 1.6rem;
    padding-right: 3.2rem;
  }
  .form-control .dropdown-toggle .txt {
    width: auto;
  }
  .form-control .dropdown-menu {
    min-width: 16rem;
    max-height: 29.8rem;
    margin-top: 0.4rem;
    padding: 0.8rem 0;
    border-radius: 0.4rem;
  }
  .form-control .dropdown-item {
    display: flex;
    align-items: center;
    padding: 1.6rem 2.4rem;
    font-weight: 400;
  }
  .base-form-group.line {
    margin-bottom: 1.6rem;
    padding-bottom: 1.6rem;
  }
  .base-form-group .base-label {
    font-size: 1.4rem;
    line-height: 1.428;
  }
  .base-form-group .base-label.required::after {
    margin-left: 0.4rem;
  }
  [class^=base-label] + .form-control {
    margin-top: 0.8rem;
  }
  [class^=base-label] + .checkbox-group,
  [class^=base-label] + .base-label-guide + .checkbox-group {
    margin-top: 1.6rem;
  }
  .base-form-group .base-label .comment {
    font-size: 1.3rem;
  }
  .base-form-group .base-label-guide {
    font-size: 1.4rem;
  }
  .base-form-group.col {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.8rem;
  }
  .base-form-group.col .right-col .btn-wrap {
    display: block;
  }
  .base-form-group.col .right-col .btn-wrap .btn {
    width: 100%;
  }
  .base-form-group.small .base-label {
    font-size: 1.3rem;
  }
  .base-form-group.small .form-control {
    font-size: 1.5rem;
  }
  .base-form-group.small .dropdown-item {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    font-weight: 700;
  }
  .base-form-group .dropdown-menu.check .dropdown-item {
    padding-left: 4rem;
  }
  .checkbox-group {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.6rem 0.8rem;
  }
  .base-checkbox .checkbox-label {
    gap: 1.2rem;
  }
  .base-checkbox .checkbox-icon {
    flex: 0 0 1.8rem;
    width: 1.8rem;
    height: 1.8rem;
    margin: 0.3rem 0 0 0.3rem;
    border-radius: 0.4rem;
  }
  .terms-box .base-form-group {
    gap: 1.6rem;
  }
  .terms-box .base-form-group + .base-form-group {
    margin-top: 1.6rem;
  }
  .terms-box .terms-arrow {
    flex: 0 0 1.6rem;
    width: 1.4rem;
    height: 1.4rem;
  }
  .base-section-panel {
    gap: 2.4rem;
    padding: 2rem;
    border-radius: 1.6rem;
  }
  .profile-image .thumb {
    width: 8rem;
    height: 8rem;
  }
  .profile-image .btn-wrap {
    margin-top: 1.6rem;
  }
  .profile-image .btn-wrap .btn {
    padding: 0 1.8rem;
  }
  /* modal */
  .base-modal {
    padding: 0 2.4rem;
  }
  .base-modal .base-modal-dialog {
    padding: 3.2rem 2.4rem 2.4rem;
    border-radius: 1.6rem;
  }
  .base-modal .base-btn-group {
    margin-top: 3.2rem;
  }
  .base-modal .base-notice {
    font-size: 1.4rem;
  }
  .base-modal .base-notice .title {
    margin-bottom: 1.2rem;
    font-size: 2rem;
  }
}
/*! Lightning Design System 2.28.0 */
:root {
  --slds-g-link-color: var(--primary);
  --slds-g-link-color-hover: var(--primary-50);
  --slds-g-link-color-focus: var(--primary-50);
  --slds-g-link-color-active: var(--primary-70);
  --slds-g-shadow-outset-focus-1: 0 0 0 2px #fff,0 0 0 4px var(--primary);
  --slds-g-shadow-inset-focus-1: 0 0 0 2px #fff inset,0 0 0 4px var(--primary) inset;
  --slds-g-shadow-inset-inverse-focus-1: 0 0 0 2px var(--primary) inset,0 0 0 4px #fff inset;
  --slds-g-shadow-outline-focus-1: 0 0 0 2px var(--secondary);
  --slds-c-input-spacing-inline-start: 16px;
  --slds-c-input-radius-border: 12px;
  --slds-c-input-text-color: var(--primary);
  --slds-c-input-color-border: var(--primary-10);
  --slds-c-input-color-background: var(--color-white);
  --slds-c-dropdown-font-family: "SamsungBody";
  --slds-c-dropdown-font-size: 13px;
  --slds-c-dropdown-font-weight: 700;
  --slds-c-dropdown-font-style: normal;
  --slds-c-listbox-option-color-background-hover: var(--secondary-10);
  --slds-c-tooltip-color-background: var(--primary);
  --slds-c-icon-color-foreground-default: var(--primary);
  --slds-c-input-color-border-focus: var(--secondary);
  --dxp-c-input-width-border: 2px;
  --dxp-s-form-element-text-font-family: "SamsungBody";
  --dxp-s-dropdown-color-background-hover: (--secondary-10);
  --dxp-s-form-element-label-font-weight: 700;
}

::-webkit-input-placeholder {
  font-size: 16px;
  color: var(--primary-50);
  opacity: 1;
}

::-moz-placeholder {
  font-size: 16px;
  color: var(--primary-50);
  opacity: 1;
}

:-ms-input-placeholder {
  font-size: 16px;
  color: var(--primary-50);
  opacity: 1;
}

::-ms-input-placeholder {
  font-size: 16px;
  color: var(--primary-50);
  opacity: 1;
}

::placeholder {
  font-size: 16px;
  color: var(--primary-50);
  opacity: 1;
}

a {
  color: var(--primary);
}

a:focus-visible {
  outline-color: var(--primary);
}

.slds-form-element__label {
  color: var(--primary);
  font-size: 14px;
  font-weight: 700 !important;
  padding-right: 0;
  padding-top: 0;
  margin-bottom: 8px;
}

.slds-form-element__icon .slds-button_icon {
  position: relative;
}

.slds-form-element__help, .slds-form-element__helper {
  font-size: 14px;
  margin-top: 4px;
  color: var(--primary-50);
}

.slds-form-element__addon {
  flex-shrink: 0;
  align-self: center;
}

.slds-input {
  padding-top: 2px;
  min-height: 44px;
  line-height: 1.6;
  border: 2px solid var(--slds-c-input-color-border, var(--sds-c-input-color-border, var(--slds-g-color-border-base-4, #c9c9c9)));
  font-size: 16px;
}

.slds-input.slds-is-disabled, .slds-input[disabled] {
  background-color: var(--primary-03);
  border-color: var(--primary-10);
  color: var(--primary-70);
}

.slds-input[readonly] {
  padding-top: 2px;
  padding-right: var(--slds-c-input-spacing-inline-end, var(--slds-c-input-spacing-horizontal-end, var(--sds-c-input-spacing-horizontal-end, 1rem)));
  padding-bottom: 0;
  padding-left: var(--slds-c-input-spacing-inline-start, var(--slds-c-input-spacing-horizontal-start, var(--sds-c-input-spacing-horizontal-start, 0.75rem)));
  background-color: var(--primary-03);
  border-color: var(--primary-10);
  color: var(--primary);
}

.slds-input--height, .slds-input_faux, .slds-input_height {
  min-height: 44px;
}

.slds-input_faux {
  padding-top: 2px;
  line-height: 1.33333;
  align-items: center;
}

.slds-input-has-icon .slds-input__icon {
  fill: var(--primary);
}

.slds-input, .slds-combobox__input, lightning-combobox::part(input-button) {
  padding-right: 52px;
}

.slds-input__icon-group_right .slds-input__icon--right, .slds-input__icon-group_right .slds-input__icon_right {
  right: 16px;
}

.slds-select {
  height: 44px;
}

.slds-select[multiple], .slds-select[size] {
  min-height: 44px;
}

.slds-dropdown__item .slds-has-icon .slds-icon {
  fill: var(--primary-50);
}

.slds-dropdown {
  border: 2px solid var(--primary-10);
  border-radius: 12px;
  background: var(--color-white);
  -webkit-box-shadow: 0 8px 16px 0 var(--primary-05);
  box-shadow: 0 8px 16px 0 var(--primary-05);
  color: var(--primary);
}

.slds-dropdown--actions a, .slds-dropdown_actions a {
  color: var(--primary);
}

.slds-picklist__label .slds-icon {
  fill: var(--primary-50);
}

.slds-combobox_container.slds-has-selection .slds-combobox__input-value:focus {
  outline: 2px solid var(--primary);
}

.slds-listbox__option-icon {
  color: var(--primary-50);
}

.slds-input_faux:not(.slds-combobox__input-value) {
  color: var(--primary-50);
}

.slds-combobox_object-switcher .slds-combobox__input {
  color: var(--primary-50);
}

.slds-combobox__input.slds-has-focus, .slds-combobox__input:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.slds-has-inline-listbox .slds-combobox__input:focus, .slds-has-object-switcher .slds-combobox__input:focus {
  outline: 2px solid var(--primary);
}

.slds-day_adjacent-month {
  color: var(--primary-50);
}

.slds-has-notification .slds-utility-bar__action {
  background: var(--primary-50);
}

.slds-publisher__input {
  max-height: 44px;
}

.slds-publisher--comment, .slds-publisher_comment {
  min-height: 44px;
  max-height: 44px;
}

.slds-pill_container {
  min-height: 44px;
}

.slds-text-link {
  color: var(--primary);
}

.slds-listbox_vertical .slds-listbox__option {
  font-size: 13px;
  font-weight: 700;
}

.slds-listbox_vertical .slds-listbox__option:focus, .slds-listbox_vertical .slds-listbox__option:hover, .slds-listbox_vertical .slds-listbox__option.slds-has-focus, .slds-listbox--vertical .slds-listbox__option:focus, .slds-listbox--vertical .slds-listbox__option:hover, .slds-listbox--vertical .slds-listbox__option.slds-has-focus {
  box-shadow: none;
  -webkit-box-shadow: none;
  background-color: var(--secondary-10);
}

.box-calendar .slds-form-element__control .slds-input__icon_right {
  position: absolute;
  right: 8px;
  top: 50%;
  width: 36px;
  height: 36px;
  transform: translateY(-50%);
  margin-top: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3585_87136)'%3E%3Cpath d='M14.1641 2.5026H17.4974C17.7184 2.5026 17.9304 2.5904 18.0867 2.74668C18.2429 2.90296 18.3307 3.11492 18.3307 3.33594V16.6693C18.3307 16.8903 18.2429 17.1022 18.0867 17.2585C17.9304 17.4148 17.7184 17.5026 17.4974 17.5026H2.4974C2.27638 17.5026 2.06442 17.4148 1.90814 17.2585C1.75186 17.1022 1.66406 16.8903 1.66406 16.6693V3.33594C1.66406 3.11492 1.75186 2.90296 1.90814 2.74668C2.06442 2.5904 2.27638 2.5026 2.4974 2.5026H5.83073V0.835938H7.4974V2.5026H12.4974V0.835938H14.1641V2.5026ZM12.4974 4.16927H7.4974V5.83594H5.83073V4.16927H3.33073V7.5026H16.6641V4.16927H14.1641V5.83594H12.4974V4.16927ZM16.6641 9.16927H3.33073V15.8359H16.6641V9.16927Z' fill='%23052832'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3585_87136'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: 20px auto;
}
.box-calendar .slds-form-element__control .slds-input__icon_right svg, .box-calendar .slds-form-element__control .slds-input__icon_right .slds-assistive-text {
  display: none;
}
.box-calendar .slds-form-element__help:has(+ .slds-datepicker) {
  display: none;
}
.box-calendar .slds-datepicker__filter {
  align-items: center;
  gap: 8px;
  padding: 0;
  font-family: "SamsungHead";
  font-size: 14px;
  font-weight: 700;
}
.box-calendar .slds-datepicker__filter .slds-datepicker__filter--month,
.box-calendar .slds-datepicker__filter .slds-datepicker__filter_month {
  order: 2;
  gap: 24px;
  justify-content: flex-end;
  position: relative;
}
.box-calendar .slds-datepicker__filter .slds-datepicker__filter--month h2,
.box-calendar .slds-datepicker__filter .slds-datepicker__filter_month h2 {
  position: absolute;
  left: 0;
}
.box-calendar .slds-datepicker__filter .slds-datepicker__filter--month .slds-align-middle .slds-button_icon-container,
.box-calendar .slds-datepicker__filter .slds-datepicker__filter_month .slds-align-middle .slds-button_icon-container {
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3509_95962)'%3E%3Cpath d='M10.828 11.9968L15.778 16.9468L14.364 18.3608L8 11.9968L14.364 5.63281L15.778 7.04681L10.828 11.9968Z' fill='%23052832'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3509_95962'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
}
.box-calendar .slds-datepicker__filter .slds-datepicker__filter--month .slds-align-middle .slds-button_icon-container svg.slds-button__icon,
.box-calendar .slds-datepicker__filter .slds-datepicker__filter_month .slds-align-middle .slds-button_icon-container svg.slds-button__icon {
  display: none;
}
.box-calendar .slds-datepicker__filter .slds-datepicker__filter--month .slds-align-middle:last-of-type .slds-button_icon-container,
.box-calendar .slds-datepicker__filter .slds-datepicker__filter_month .slds-align-middle:last-of-type .slds-button_icon-container {
  transform: rotate(180deg);
}
.box-calendar .slds-datepicker__filter .slds-shrink-none {
  order: 1;
}
.box-calendar .slds-datepicker__filter .slds-shrink-none .slds-select_container select {
  height: 24px;
  padding-left: 0;
  padding-right: 0;
  border: none;
  font-weight: 700;
  pointer-events: none;
  cursor: not-allowed;
}
.box-calendar .slds-datepicker__filter .slds-shrink-none .slds-select_container::after, .box-calendar .slds-datepicker__filter .slds-shrink-none .slds-select_container::before {
  display: none;
}
.box-calendar .slds-datepicker {
  padding: 16px;
}
.box-calendar .slds-datepicker thead > tr > th {
  padding: 12px 0;
  border-bottom: 0;
  font-size: 11px;
  font-weight: 400;
  color: var(--primary);
}
.box-calendar .slds-datepicker tbody > tr > td {
  padding: 2px;
  font-size: 11px;
  font-weight: 400;
  color: var(--primary);
}
.box-calendar .slds-datepicker tbody > tr > td.slds-day_adjacent-month {
  color: var(--primary-50);
}
.box-calendar .slds-datepicker tbody > tr > td .slds-day {
  width: 32px;
  height: 32px;
  margin: 0;
  padding-top: 2px;
  border-radius: 4px;
  line-height: 1.6;
}
.box-calendar .slds-datepicker tbody > tr > td.slds-is-selected > .slds-day {
  background: var(--secondary);
  box-shadow: none;
  -webkit-box-shadow: none;
}
.box-calendar .slds-datepicker .slds-has-multi-selection:nth-child(1 of .slds-is-selected-multi) > .slds-day::before, .box-calendar .slds-datepicker .slds-has-multi-selection:nth-child(1 of .slds-is-selected-multi) > .slds-day::after {
  border-radius: 0;
}
.box-calendar .slds-datepicker td.slds-is-selected-multi + .slds-is-selected-multi > .slds-day::before {
  background: var(--secondary);
  box-shadow: none;
  -webkit-box-shadow: none;
}
.box-calendar .slds-align_absolute-center.slds-text-link {
  position: absolute;
  top: 16px;
  right: 44px;
  width: 24px;
  height: 24px;
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_3509_95963)'%3E%3Cpath d='M12 7C14.7614 7 17 9.23858 17 12C17 14.7614 14.7614 17 12 17C9.23858 17 7 14.7614 7 12C7 9.23858 9.23858 7 12 7Z' stroke='%23052832' stroke-width='2'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_3509_95963'%3E%3Crect width='24' height='24' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: center center;
  background-size: cover;
  color: transparent;
}

/* lwc combobox small type */
.slds-form-element.small .slds-truncate {
  font-size: 13px;
}
.slds-form-element.small .slds-input,
.slds-form-element.small .slds-combobox__input,
.slds-form-element.small lightning-combobox::part(input-button) {
  padding-right: 38px;
  font-size: 13px;
  font-weight: 700;
}
.slds-form-element.small .slds-input--height,
.slds-form-element.small .slds-input_faux,
.slds-form-element.small .slds-input_height {
  min-height: unset;
}

/* toast
.slds-notify_toast {
    background: var(--color-black-80);
    box-shadow: 0px 8px 16px 0px var(--color-black-20);
    border-radius: 16px;
    padding: 16px;
}
.slds-notify_toast .slds-button_icon {
    width: 24px;
    height: 24px;
}
.slds-notify_toast .slds-button__icon {
    width: 12px;
    height: 12px;
}
.slds-notify_toast .slds-button__icon path {
    fill: var(--color-white);
}
.slds-notify_toast .slds-notify__content,
.slds-notify_toast .slds-notify__content h2,
.slds-notify_toast .slds-notify__content p,
.slds-notify_toast .slds-notify__content ul,
.slds-notify_toast .slds-notify__content li,
.slds-notify_toast .slds-notify__content a {
    color: var(--color-white);
}
.slds-theme_success .slds-icon path {
    fill: var(--secondary);
}
.slds-theme_warning .slds-icon path {
    fill: var(--color-red);
}
.slds-theme_info .slds-icon path,
.slds-theme_error .slds-icon path {
    fill: #8A8A8A;
} */
@media (max-width: 64em) {
  .slds-truncate {
    font-size: 1.5rem;
  }
  .slds-input-has-icon .slds-input__icon {
    width: 1.4rem;
    height: auto;
  }
  .slds-input-has-icon .slds-input__icon .slds-icon--xx-small, .slds-input-has-icon .slds-input__icon .slds-icon_xx-small {
    width: 2rem;
    height: 2rem;
  }
  .slds-input__icon-group_right {
    transform: translateY(-50%);
  }
  .box-calendar .slds-input {
    padding-right: 1.6rem;
  }
  /* lwc combobox small type */
  .slds-form-element.small .slds-input,
  .slds-form-element.small .slds-combobox__input,
  .slds-form-element.small lightning-combobox::part(input-button) {
    padding-right: 2.6rem;
  }
  .slds-form-element.small .slds-input--height,
  .slds-form-element.small .slds-input_faux,
  .slds-form-element.small .slds-input_height {
    min-height: 3.6rem;
  }
  .slds-form-element.small .slds-input__icon-group_right .slds-input__icon--right,
  .slds-form-element.small .slds-input__icon-group_right .slds-input__icon_right {
    right: 0.8rem;
  }
  .slds-form-element.small .slds-input-has-icon .slds-input__icon .slds-icon--xx-small,
  .slds-form-element.small .slds-input-has-icon .slds-input__icon .slds-icon_xx-small {
    width: 1.2rem;
  }
  /* toast
  .slds-notify_toast {
      width: 100%;
      max-width: 100%;
      min-width: auto;
      padding: 1.2rem;
      font-size: 1.4rem;
  }
  .slds-notify_toast .slds-notify__content {
      padding-right: 3rem;
      font-size: 1.4rem;
  }
  .slds-notify_toast .slds-notify__content p,
  .slds-notify_toast .slds-notify__content ul,
  .slds-notify_toast .slds-notify__content li,
  .slds-notify_toast .slds-notify__content a {
      font-size: 1.4rem;
  }
  .slds-notify_toast .slds-notify__content h2 {
      font-size:1.4rem;
  }
  .slds-icon_container {
      margin-right: .8rem;
  }
  .slds-notify__close {
      margin-left: .8rem;
  } */
}