*{
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
:root{
  --dmain-color: #0a0a0f;
  --dbg-color: #10131a;
  --dtext-color: #0a0a0f;
  --dsubtext-color: #10131a;

  --lmain-color: #fff;
  --lbg-color: #d9e1e6;
  --ltext-color: #fff;
  --lsubtext-color: #d9e1e6;

  /* **Universal** */
  --header: 22px;
  --subheader: 18px;
  --paragraph: 14px;
  --font-header: 'Poppins Black', sans-serif;
  --font-subheader: 'Poppins semibold', sans-serif;
  --font-paragraph: 'Poppins light', sans-serif;
  --hyper-link: #d8236e;
  --hyper-link-hover: #f73072;

  /* **Discord** */
  --dark1: #18191c;
  --dark2: #202225;
  --focus1: #2f3136;
  --focus2: #2b2e32;
  --highlight1: #4f545c;
  --highlight2: #b9bbbe;
}
body{
  background: black;
}
div.container-cerise{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  z-index: 1002;
}
div.layer-a1{
  -webkit-box-align: center;
  align-items: center;
  display: flex;
  -webkit-box-pack: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  min-height: 0;
  max-width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}
div.focus-userprofile{
  box-shadow: 0px 0px 12px #f7307248;
  width: 600px;
  overflow: hidden;
  border-radius: 8px;
  background: rgb(0,0,0);
  padding: 4px;
}
div.profile-inner{
  max-height: 100%;

  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-flex: 1;
  flex-grow: 1;
  border-radius: 8px 8px 0 0;
}
div.topSection{
  margin-bottom: 40px;
  z-index: 1;
}
div.header{
  display: block;
}
div.bannerwrapper{
  pointer-events: none;
  width: 100%;
  height: 100%;
  min-width: 600px;
  min-height: 212px;
  z-index: 0;
  overflow: hidden;
}
div.bannerpremium-rounded{
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  border-radius: 4px 4px 0 0;
  transition: background-color .1s;
}
img.banner{
  background-color: rgb(0,0,0);
  width: 100%;
  height: 212px;
  min-height: 212px;
}
div.header-1{
  position: relative;
}
div.wrapper-avatar{
  pointer-events: none;
  width: 120px;
  height: 120px;
  position: absolute;
  top: -68px;
  left: 22px;
}
div.avatarmask{
  position: absolute;
  pointer-events: none;
  display: block;
  width: auto;
}
div.circle{
  position: absolute;
  top: 60px;
  left: 60px;
  width: 28px;
  height: 28px;
  border: 6px solid black;
  border-radius: 50%;
  background: var(--hyper-link-hover);
  cursor: default;
  pointer-events: none;
}
div.avatarstack{
  display: grid;
  width: 100%;
  height: 100%;
}
img.avatar{
  text-indent: -9999px;
  display: block;
  object-fit: cover;
  pointer-events: none;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  grid-area: 1/1;
}

div.profile-modaloverlay{
  margin: 16px;
  position: relative;
  border-radius: 8px;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  overflow: hidden;
}
div.body-cerise{
  -webkit-box-flex: 0;
  flex: 0 1 385px;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  box-sizing: border-box;
  border-radius: 8px;
  overflow: hidden;
}
div.container-name{
  padding: 12px 12px 0;
  pointer-events: none;
}
div.nametag{
  user-select: text;
  white-space: normal;
  word-break: break-word;
  line-height: 24px;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font-subheader);

  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  align-items: center;
  overflow: hidden;
}
span.username{
  white-space: normal;

  color: var(--lmain-color);
  -webkit-box-flex: 0;
  display: block;
  flex: 0 1 auto;
  text-overflow: ellipsis;
  overflow: hidden;
}
span.discriminator-tag{
  color: var(--highlight2);
  white-space: normal;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--font-subheader);
}
div.divider{
  border-top: 1px solid rgb(255,255,255,0.05);
  margin: 16px 12px 0;
}

div.infoscroll{
  overflow: hidden scroll;
  padding-right: 4px;
  padding: 0 12px;
  height: 100%;

  position: relative;
  box-sizing: border-box;
  min-height: 0;
  -webkit-box-flex: 1;
  flex: 1 1 auto;

}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track{
  background: transparent;
}
::-webkit-scrollbar-thumb{
  background: var(--highlight1);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover{
  background: var(--highlight2);
}
div.userinfo{
  padding: 14px 0;
  pointer-events: none;
}
h1.infosectionheader{
  font-weight: 700;
  color: var(--lmain-color);
  margin-bottom: 8px;
  font-family: var(--font-subheader);
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
div.userinfotext{
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 18px;
  
  white-space: break-spaces;
  word-wrap: break-word;
  user-select: text;
  color: var(--lsubtext-color);
}
div.textbio{
  -webkit-line-clamp: 6;
  font-family: var(--font-paragraph);
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--lsubtext-color);
}
code.inline{
  width: auto;
  height: auto;
  padding: 0.2em;
  margin: -0.2em 0;
  border-radius: 3px;
  font-size: 85%;
  font-family: var(--font-paragraph);
  text-indent: 0;
  border: none;
  white-space: pre-wrap;
  line-height: 1.125rem;
  background: var(--highlight1);
}
h1.discordmembersince{
  font-weight: 700;
  color: var(--lmain-color);
  margin-bottom: 8px;
  font-family: var(--font-subheader);
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
div.membersincecontainer{
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  column-gap: 8px;
  -webkit-box-align: center;
  align-items: center;
}
div.memberinfo{
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 18px;
  font-family: var(--font-paragraph);
  font-weight: 400;
  color: var(--lsubtext-color)
}
h1.note{
  font-weight: 700;
  color: var(--lmain-color);
  margin-bottom: 8px;
  font-family: var(--font-subheader);
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
div.note-cerise{
  margin: -4px;
}
div.notetext{
  height: 43px;
  border-radius: 3px;
  padding: 4px;
  font-size: 14px;
  line-height: 18px;
  border: none;
  box-sizing: border-box;
  color: var(--lsubtext-color);
  font-family: var(--font-paragraph);
  max-height: 88px;
  resize: none;
  width: 100%;
}

div.mediaaccounts{
  padding-top: 0;
  border-top: 1px solid rgb(255,255,255,0.05);
  padding: 16px 0;
  -webkit-box-orient: horizontal;
  flex-direction: row;
  width: 100;
  display: flex;
  -webkit-box-direction: normal;
}
div.mediaconnections{
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: calc(50% - 8px);
}
div.accountcontainer{
  margin-top: 16px;
  padding: 12px 8px;
  border-radius: 4px;
  border: 1px solid rgb(255,255,255,0.05);
}
div.connectedaccount{
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  flex: 0 1;
  gap: 8px;
}
div.accountnamecontainer{
  -webkit-box-flex: 1;
  flex: 1;
  overflow: hidden;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  overflow: hidden;
}
div.connectedaccountname{
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  overflow: hidden;
}
div.accountname{
  white-space: nowrap;
  text-overflow: ellipsis;
  user-select: text;
  font-family: var(--font-paragraph);
  color: var(--lmain-color);
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
}
a.redirectanchor{
  color: var(--lsubtext-color);
  text-decoration: none;
  cursor: pointer;
}
svg.connectedaccountopen{
  width: 18px;
  height: 18px;
  color: var(--lsubtext-color);
  display: block;
  transform: rotate(45deg);
}
img.accounticon{
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  text-indent: -9999px;
}