.textclip-ellipsis {
  text-overflow: ellipsis;
}

.mainfont {
  font: 16px Montserrat, "Segoe UI", Arial, sans-serif;
}

.separator {
  min-height: 20px;
  width: 100%;
  pointer-events: none;
}

.separator-s {
  min-height: 6px;
  width: 100%;
  pointer-events: none;
}

.row {
  display: flex;
  flex-direction: row;
}

.center {
  display: flex;
  justify-content: center;
  width: 100%;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  width: 100%;
  min-height: 100%;
  margin: auto;
  color: #c2c2c2;
  background-color: #1f1f1f;
  background-image: url("Images/diagonal_stripe.png");
  background-repeat: repeat;
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 60px;
}

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 60px;
  background: linear-gradient(90deg, #202020 0%, #3a3a3a 100%);
}

#nav-logo {
  display: flex;
  align-items: center;
  width: 110px;
  height: 60px;
  padding-left: 8px;
}

#nav-logo img {
  width: 92px;
  height: auto;
}

#searchbar {
  position: absolute;
  left: 50%;
  width: 430px;
  height: 36px;
  transform: translateX(-50%);
  border: 0;
  border-radius: 8px;
  padding: 0 42px 0 12px;
  outline: none;
  color: #404040;
  background: #bdbdbd url("Images/magnifying_glass.png") no-repeat right 11px center;
  background-size: 18px 18px;
  font: 16px Montserrat, "Segoe UI", Arial, sans-serif;
}

#searchbar::placeholder {
  color: #7b7b7b;
}

#nav-right-content {
  position: absolute;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

#login-button {
  width: 92px;
  height: 36px;
}

#register-button {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100px;
  height: 36px;
  border: 1px solid rgba(112, 112, 112, 0.7);
  border-radius: .2rem;
  color: #343434;
  background-color: #c2c2c2;
  text-decoration: none;
}

#sidebar {
  position: fixed;
  top: 60px;
  bottom: 0;
  left: 0;
  z-index: 110;
  width: 258px;
  background: #202020;
  transition: transform 0.28s ease;
}

#sidebar-tabs {
  position: relative;
  display: flex;
  width: 100%;
  height: 42px;
  background: #222222;
}

#tab-container-left,
#tab-container-right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}

.sidebar-tab {
  color: #d7d7d7;
  font-size: 18px;
}

#tab-line-active {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 3px;
  background: #9B2D2D;
}

#tab-line-dummy {
  display: none;
}

#sidetoggle {
  position: absolute;
  top: 0;
  right: -28px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 42px;
  border: 0;
  color: #9B2D2D;
  background: #252525;
  cursor: pointer;
  line-height: 1;
  user-select: none;
}

#sidetoggle:focus-visible {
  outline: 2px solid #D76969;
  outline-offset: -2px;
}

#sidetoggle-t {
  display: block;
  font-size: 34px;
  line-height: 34px;
}

body.sidebar-collapsed #sidebar {
  transform: translateX(-258px) !important;
}

body.sidebar-collapsed #contentwrapper {
  padding-left: 0 !important;
}

body.sidebar-collapsed footer.row.center {
  left: 0 !important;
}

body.sidebar-collapsed .footer-content {
  transform: none;
}

#sidebar-tabs-content {
  min-height: calc(100% - 42px);
}

#trending-tab,
#catagories-tab {
  min-height: 42px;
}

#catagories-tab {
  display: none;
}

.sidebar-tab-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.sidetab-name-and-viewers,
.sidetab-name-and-viewers-trending {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 6px 8px;
  gap: 8px;
  color: #c2c2c2;
  text-decoration: none;
}

.sidetab-name-and-viewers {
  justify-content: space-between;
}

.sidetab-name-and-viewers-trending:hover,
.sidetab-name-and-viewers:hover {
  background: rgba(255, 255, 255, 0.04);
}

.sidebar-tab-usertitle {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}

.sidebar-username {
  color: #c2c2c2;
  font-size: 14px;
}

.sidebar-streamtitle {
  max-width: 140px;
  color: #c2c2c2;
  font-size: 12px;
}

.sidebar-catagoryname {
  color: #c2c2c2;
  font-size: 18px;
}

.sidebar-user-icon {
  width: 32px;
  height: 32px;
  border-radius: 3px;
  object-fit: cover;
}

.sidebar-reddot {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.viewercount-and-icon {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #c2c2c2;
}

.visibility-text {
  font-size: 11px;
  color: #c5c5c5;
}

#hr-sidebartabs {
  border-color: #000;
  opacity: 0.15;
  border-radius: 4px;
  margin: 0;
}

#contentwrapper {
  min-height: 100vh;
  padding-top: 60px;
  padding-left: 258px;
  transition: padding-left 0.28s ease;
}

#contentwrapper2 {
  position: relative;
  min-height: calc(100vh - 60px);
  padding-bottom: 68px;
}

.auth-errors {
  display: none;
  margin-top: 3px;
  color: #e03930;
  font-size: 13px;
}

.default-form-page {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex-wrap: nowrap;
  max-width: 1320px;
  width: 430px;
  margin: 20px;
  border-radius: 10px;
  background-color: rgba(210, 210, 210, 0.75);
  overflow: hidden;
}

.signin-containers {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 30.4rem;
}

.forms-field {
  border: 1px solid #909090;
  border-radius: 2px;
  padding: 9px 7px;
  font: 400 1rem Montserrat, "Segoe UI", Arial, sans-serif;
  color: #3c3c3c;
  background-color: #d9d9d9;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  appearance: textfield;
  user-select: none;
  outline: none;
}

.form-password {
  position: relative;
  top: -1px;
  border-radius: 0 0 .2rem .2rem;
}

.form-email {
  border-radius: .2rem .2rem 0 0;
}

.form-border-error {
  border: 1px solid #e03930;
}

.main-button {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 18rem;
  height: 40px;
  border: 1px solid rgba(112, 112, 112, 0.7);
  border-radius: .2rem;
  padding: .3rem 0;
  color: #d0d0d0;
  background-color: #9B2D2D;
  box-sizing: border-box;
  cursor: pointer;
  font: 16px Montserrat, "Segoe UI", Arial, sans-serif;
  text-decoration: none;
  transition: 0.2s;
}

.main-button:hover {
  background-color: #D76969;
}

.sub-button {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 18rem;
  height: 40px;
  border: 1px solid rgba(112, 112, 112, 0.7);
  border-radius: .2rem;
  padding: .3rem 0;
  color: #343434;
  background-color: #c2c2c2;
  box-sizing: border-box;
  cursor: pointer;
  font: 16px Montserrat, "Segoe UI", Arial, sans-serif;
  text-decoration: none;
}

.send-input-button {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  float: right;
  border: 1px solid rgba(112, 112, 112, 0.7);
  border-radius: .2rem;
  color: #d0d0d0;
  background-color: #9B2D2D;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
  outline: none;
  transition: 0.2s;
}

.send-input-button:hover {
  background-color: #D76969;
}

.info-text {
  position: relative;
  left: 430px;
  bottom: 320px;
  color: #ffffff;
  font: 16.6666px Montserrat, "Segoe UI", Arial, sans-serif;
}

.float-left {
  float: left;
  width: 100%;
}

.text-link {
  color: #681212;
}

.forms-container-a {
  display: flex;
  flex-direction: column;
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
}

.forms-container-b {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
}

.standalone-form-field {
  border-radius: .2rem;
}

.form-desc {
  display: flex;
  justify-content: space-around;
  flex-direction: row;
  margin-bottom: 20px;
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  color: #202020;
}

.checkbox-container {
  display: flex;
  flex-direction: row;
  gap: 6px;
  color: #202020;
}

.input-desc {
  margin-bottom: 3px;
  color: #202020;
}

#login-page-bg {
  position: relative;
  display: flex;
  width: 100%;
  min-height: calc(100vh - 112px);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 83px;
}

#login-page {
  height: 480px;
}

#register-page {
  max-height: 720px;
}

.auth-view {
  display: none;
}

.auth-view.is-active {
  display: flex;
}

#login-header {
  display: flex;
  justify-content: space-around;
  align-self: flex-start;
  min-width: 100%;
  background-color: rgba(8, 8, 8, 1);
}

#login-header > a {
  align-self: center;
  position: relative;
  width: 120px;
  padding: 12px;
}

#login-header img {
  display: block;
  width: 100%;
  height: auto;
}

#signin-form-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  align-content: center;
  width: 100%;
  margin: auto;
}

#register-form-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  align-content: center;
  width: 100%;
  margin-bottom: 16px;
}

#signin-fields {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 80%;
  margin: 16px;
}

#signin-input-container {
  display: flex;
  flex-direction: column;
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
}

footer.row.center {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 90;
  height: 64px;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #111111;
  background: #242424;
  transition: left 0.28s ease;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1;
  transform: translateX(129px);
  transition: transform 0.28s ease;
}

footer a {
  color: #3f2469;
}

footer span {
  display: inline-flex;
  align-items: center;
}

.footer-x {
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

#homepage {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: min(100% - 40px, 1320px);
  min-width: 630px;
  min-height: calc(100vh - 148px);
  margin: 20px auto 103px;
  border-radius: 15px;
  padding: 13px 10px 16px;
  background-color: rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

#homepage-row1 {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#row-1-titles,
#row-1-content {
  display: grid;
  grid-template-columns: minmax(290px, 1fr) 390px;
  column-gap: 18px;
  align-items: start;
}

#editorschoicetext,
.sectiontext {
  margin-left: 10px;
  margin-bottom: 12px;
  color: #c2c2c2;
  font: 700 26px Montserrat, "Segoe UI", Arial, sans-serif;
  user-select: none;
}

#editorschoicetext {
  grid-column: 3;
  text-align: center;
}

.streamsection,
.streamsection-right {
  position: relative;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  min-width: 0;
}

.streams,
.streams-nowrap {
  display: flex;
  flex-direction: row;
}

.streams {
  flex-wrap: wrap;
}

.streams-nowrap {
  flex-wrap: nowrap;
}

.streams-nowrap-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.stream {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-width: 220px;
}

.stream > a {
  width: 200px;
  height: 115px;
  margin: 7.3px;
  border-radius: 10px;
  background-color: #707070;
  background-repeat: no-repeat, no-repeat, repeat;
  background-size: cover, auto, auto;
  background-position: center, center, center;
  transition: 0.2s;
}

.stream > a:hover,
.streamplayer-s:hover,
.catagory > a:hover {
  box-shadow: inset 0 0 10px red;
}

.streamname {
  max-width: 208px;
  margin-left: 7px;
  overflow: hidden;
  color: #c2c2c2;
  font-size: 18px;
  white-space: nowrap;
}

.streamname > a,
.streamername-s > a {
  color: #c2c2c2;
  text-decoration: none;
}

.streamername-and-viewers {
  display: flex;
  justify-content: space-between;
  margin-right: 7px;
  margin-left: 7px;
}

.streamername-s {
  font-size: 14px;
}

.streamplayer-s {
  position: relative;
  display: block;
  width: 350px;
  height: 200px;
  margin: 7.3px 10px 0;
  border-radius: 10px;
  background: url("Images/placeholder2.jpg") center / cover no-repeat #1f1f1f;
  transition: 0.2s;
}

#liveicon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
}

#homepage-row2,
#homepage-row3,
#homepage-row4 {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  overflow: hidden;
}

#content-scroll-container-streams1,
#content-scroll-container-catagory,
#content-scroll-favourite-container-catagory {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
  overflow: hidden;
}

#homepage-row3 .streamsection,
#homepage-row4 .streamsection {
  flex: 1;
  min-width: 0;
}

.left-scroll-btn,
.right-scroll-btn,
.left-scroll-btn-cat,
.right-scroll-btn-cat {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  transform: translateY(-50%);
  border: 0;
  border-radius: 50%;
  color: #c2c2c2;
  background: rgba(38, 38, 38, 0.88);
  cursor: pointer;
  font-size: 36px;
  line-height: 1;
}

.left-scroll-btn,
.left-scroll-btn-cat {
  left: 0;
}

.right-scroll-btn,
.right-scroll-btn-cat {
  right: 0;
}

.catagories {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  overflow: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.catagories::-webkit-scrollbar {
  display: none;
}

.favourite-catagories {
  min-height: 360px;
}

.info-text-grey {
  align-items: center;
  min-height: 120px;
  color: #9a9a9a;
  font-size: 16px;
}

.catagory {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.catagory > a {
  width: 200px;
  height: 300px;
  margin: 7.3px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: contain, cover, cover;
  background-position: 0 280px, center, center;
  transition: 0.2s;
}

.catagory > a:hover {
  background-position: center, 0 280px, center;
}

.catagoryname {
  margin-bottom: 8px;
  color: #c2c2c2;
  font-size: 26px;
  text-align: center;
}

.catagory > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}

.viewercount-homepage-categories {
  margin-right: 5px;
  color: #c2c2c2;
  font-size: 18px;
}

#livebutton {
  z-index: 7;
  max-height: 100%;
  height: 10%;
  position: fixed;
  top: 12px;
  right: 202px;
  width: 35px;
  height: 35px;
  background: url("Images/red_dot.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 98.5%, 0%;
  object-fit: contain;
  cursor: pointer;
}

#livebutton:hover {
  background: url("Images/red_dot_glow.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 98.5%, 0%;
}

#livetext {
  position: fixed;
  padding: 10px;
  width: 31px;
  top: 10px;
  right: 232px;
  opacity: 0;
  overflow: hidden;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
  cursor: default;
  user-select: none;
  color: #CC1414;
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  pointer-events: none;
  text-align: right;
  white-space: nowrap;
}

#livebutton:hover #livetext,
#livetext:hover {
  width: 96px;
  opacity: 1;
  color: #FF0000;
}

.nav-user-button img {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  object-fit: cover;
}

.nav-notif-button {
  z-index: 5;
  bottom: 0;
  position: relative;
  float: right;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 3px;
  padding: 9px;
  background: transparent;
  outline: none;
  color: #c2c2c2;
  font-size: 30px;
  cursor: pointer;
  user-select: none;
}

.nav-notif-button:hover,
.nav-notif-button.is-open {
  background: transparent;
}

.nav-notif-icon {
  display: block;
  width: 35px;
  height: 35px;
  fill: #c2c2c2;
  pointer-events: none;
}

.notification-indicator {
  position: absolute;
  top: 2px;
  right: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 17px;
  height: 17px;
  border-radius: 999px;
  padding: 0 4px;
  color: #ffffff;
  background: #9b2d2d;
  font: 700 10px Montserrat, "Segoe UI", Arial, sans-serif;
}

.notification-indicator[hidden] {
  display: none;
}

.nav-menu-button {
  z-index: 5;
  bottom: 0;
  position: relative;
  float: right;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 3px;
  padding: 6px;
  background: transparent;
  object-fit: contain;
  margin: 4px;
  margin-right: 10px;
  outline: none;
  color: #c2c2c2;
  font-size: 30px;
  cursor: pointer;
  user-select: none;
}

.nav-menu-button:hover,
.nav-menu-button.is-open {
  background: transparent;
}

.nav-menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 30px;
  pointer-events: none;
}

.nav-menu-icon span {
  display: block;
  width: 32px;
  height: 4px;
  border-radius: 999px;
  background: #c2c2c2;
}

#dropdownmenu {
  position: fixed;
  top: 60px;
  right: 16px;
  z-index: 250;
  display: flex;
  flex-direction: column;
  min-height: 100px;
  max-height: 800px;
  width: 256px;
  border-radius: 7px;
  gap: 8px;
  padding: 10px;
  background-color: rgba(34, 34, 34, 0.7);
  transition: opacity 0.2s;
}

#dropdownmenu[hidden] {
  display: none;
}

.dropdownmenu-link,
.dropdownmenu-link-live {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 38px;
  max-width: 100%;
  border: 0;
  border-radius: 11px;
  margin: 0;
  padding: 0 10px;
  color: #c2c2c2;
  background: #303030;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  font: 18px/1.2 Montserrat, "Segoe UI", Arial, sans-serif;
  transition: background 0.2s ease;
}

.dropdownmenu-link-live {
  background: #703535;
}

.dropdownmenu-link:hover {
  background: #454545;
}

.dropdownmenu-link-live:hover {
  background: #9c2323;
}

.dropdownmenu-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.dropdown-inner {
  position: relative;
  top: 0;
  display: flex;
  align-items: center;
  min-width: 0;
  width: 100%;
  white-space: nowrap;
}

.settings-icon,
.info-icon {
  position: relative;
  bottom: 0;
  flex: 0 0 auto;
  margin-right: 8px;
  font-size: 21px;
  line-height: 1;
}

#notificationListContainer {
  position: fixed;
  top: 60px;
  right: 60px;
  z-index: 245;
  display: flex;
  flex-direction: column;
  width: min(390px, calc(100vw - 32px));
  max-height: min(440px, calc(100vh - 88px));
  overflow-y: auto;
  border: 1px solid rgba(194, 194, 194, 0.08);
  border-radius: 7px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.39), rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0) 80%, rgba(64, 64, 64, 0) 100%);
  box-shadow: none;
}

#notificationListContainer[hidden] {
  display: none;
}

.notification-list-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 54px;
  padding: 12px 14px;
  color: #c2c2c2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.notification-list-item:last-child {
  border-bottom: 0;
}

.notification-list-title {
  color: #d7d7d7;
  font-weight: 700;
  font-size: 14px;
}

.notification-list-body {
  color: #9b9b9b;
  font-size: 13px;
  line-height: 1.35;
}

#profile-page {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100% - 40px, 1320px);
  min-width: 970px;
  min-height: calc(100vh - 148px);
  margin: 20px auto 103px;
  border-radius: 15px;
  padding: 10px 10px 48px;
  background-color: rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

#profile-banner-container {
  position: relative;
  width: 100%;
  height: 354px;
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.1) url("Images/aux_logo_transparent.png") center / auto no-repeat;
}

#profile-banner,
#profile-banner > img {
  width: 100%;
  height: 100%;
  border-radius: 7px;
}

#profile-banner > img {
  display: block;
  object-fit: cover;
  object-position: center;
}

#profile-header {
  position: absolute;
  top: 255px;
  left: 64px;
  display: flex;
  z-index: 2;
}

#profile-user-image {
  position: relative;
  width: 192px;
  height: 192px;
  border: 5px solid #c2c2c2;
  border-radius: 12px;
  background: #646464 url("Images/vignette.png") center / cover;
}

#profile-user-image > a,
#profile-user-image > a > img {
  display: block;
  width: 100%;
  height: 100%;
}

#profile-user-image > a > img {
  border-radius: 6px;
  object-fit: cover;
}

#profile-header-2 {
  position: relative;
  min-height: 70px;
}

#profile-stats-container {
  position: relative;
  width: min(458px, calc(100% - 270px));
  margin-top: 6px;
  margin-left: 270px;
  color: #787878;
  font-size: 16px;
}

#followers-area,
.profile-following-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

#follower-count-container,
#follower-count,
#following-count {
  display: flex;
  align-items: center;
  gap: 6px;
}

.profile-stat-icon {
  color: #787878;
  font-size: 15px;
  line-height: 1;
}

.FollowersButton,
.FollowingButton {
  color: #787878;
  text-decoration: none;
}

#follow-button {
  width: 75px;
  height: 30px;
  margin-left: 8px;
  line-height: 1;
}

#joined-date {
  margin-top: 4px;
  font-size: 14px;
}

.profile-main-row {
  display: grid;
  grid-template-columns: minmax(0, 724px) minmax(260px, 1fr);
  gap: 16px;
  align-items: start;
}

.profile-main-column {
  min-width: 0;
}

.profile-sub-container {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  margin-top: 4px;
  margin-left: 24px;
}

#prefix-icon-profile {
  width: 0;
  height: 28px;
}

#profile-username-container {
  display: flex;
  align-items: center;
  min-width: 0;
}

#profile-username {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #c2c2c2;
  font-size: 32px;
  line-height: 1;
  text-decoration: none;
}

#profile-username:hover span:first-child {
  text-decoration: underline;
}

.aux-verified-badge-mini {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #9b2d2d url("Images/Aux-X-icon-black.svg?v=2") center / 14px 14px no-repeat;
}

.separator-v-s {
  display: block;
  width: 6px;
  height: 1px;
}

.suffix-container-profile {
  display: inline-flex;
  align-items: center;
}

.user-level,
.partner-level {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  border-radius: 3px;
  padding: 0 4px;
  color: #ffffff;
  font-size: 10px;
  line-height: 1;
}

.user-level {
  background: #b52929;
}

.partner-level {
  background: #553eb7;
}

#profile-content-container {
  position: relative;
  width: min(700px, calc(100% - 24px));
  margin-top: 12px;
  margin-left: 24px;
}

#profile-content-container-2 {
  position: relative;
  min-width: 0;
  margin-top: 8px;
  margin-left: 16px;
}

#bio-container {
  position: relative;
  width: 100%;
  min-height: 96px;
  border: 1px solid rgba(112, 112, 112, 0.7);
  border-radius: 5px;
  background: #c2c2c2 url("Images/paper_fibers.png") center;
}

#bio {
  padding: 9px;
  color: #353535;
  font-size: 16px;
  word-wrap: break-word;
}

.secondary-title {
  margin-top: 14px;
  margin-bottom: 6px;
  color: #c2c2c2;
  font-size: 20px;
  font-weight: 700;
}

#posted-comments-outer-container {
  width: 100%;
}

#posted-comments-container {
  width: 100%;
  min-height: 140px;
  border: 1px solid #404040;
  border-radius: 5px;
  padding: 6px;
  color: #787878;
  background: #161616;
}

#leave-comment-form {
  display: flex;
  align-items: stretch;
  width: 100%;
}

#leave-comment {
  min-height: 38px;
  flex: 1;
  resize: vertical;
  border: 1px solid #303030;
  border-radius: 3px;
  padding: 8px;
  color: #c2c2c2;
  background: #101010;
  font-family: inherit;
}

#send-comment-button-container {
  width: 150px;
}

#send-comment-button {
  width: 100%;
  height: 38px;
  font-size: 13px;
}

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

.comments-toolbar {
  align-items: center;
  margin: 6px 0;
}

#refresh-comments-button,
.standard-button {
  border: 1px solid rgba(112, 112, 112, 0.7);
  border-radius: 3px;
  padding: 4px 8px;
  color: #353535;
  background: #c2c2c2;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
}

#comments-area {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.comment-card {
  display: flex;
  gap: 8px;
  width: 100%;
  border-radius: 4px;
  padding: 6px;
  background: #282828;
}

#comment-pfp {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 5px;
  object-fit: cover;
}

.comment-body {
  min-width: 0;
  flex: 1;
}

#comment-header {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
}

#comment-username {
  display: flex;
  align-items: center;
  gap: 4px;
}

#comment-username > a {
  color: #c2c2c2;
  font-weight: 700;
  text-decoration: none;
}

.tiny-level {
  height: 13px;
  font-size: 8px;
}

.comment-age {
  color: #777;
  font-size: 12px;
}

.comment-card p {
  margin: 3px 0 0;
  color: #a9a9a9;
  font-size: 13px;
}

#reruns {
  width: 100%;
}

#reruns-container {
  min-height: 140px;
  border-radius: 5px;
  padding: 6px;
  background: rgba(0, 0, 0, 0.12);
}

.rerun {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 95px;
  border-radius: 8px;
  padding: 10px;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  transition: 0.2s;
}

.rerun:hover {
  box-shadow: inset 0 0 10px red;
}

@media (max-width: 1100px) {
  #profile-page {
    min-width: 0;
  }

  .profile-main-row {
    grid-template-columns: 1fr;
  }

  #profile-content-container-2 {
    margin-left: 24px;
    width: min(700px, calc(100% - 24px));
  }
}

@media (max-width: 900px) {
  #sidebar {
    display: none;
  }

  #contentwrapper {
    padding-left: 0;
  }

  footer.row.center {
    left: 0;
  }

  .footer-content {
    transform: none;
  }

  #searchbar {
    width: min(42vw, 360px);
  }
}

@media (max-width: 640px) {
  #navbar {
    align-items: flex-start;
    height: 104px;
    padding-top: 8px;
  }

  #nav-logo {
    width: 84px;
    height: 44px;
  }

  #nav-logo img {
    width: 72px;
  }

  #searchbar {
    top: 58px;
    width: calc(100% - 32px);
  }

  #nav-right-content {
    top: 12px;
  }

  #login-button,
  #register-button {
    width: 78px;
    font-size: 14px;
  }

  #contentwrapper {
    padding-top: 104px;
  }

  #login-page-bg {
    min-height: calc(100vh - 156px);
    align-items: flex-start;
    padding-top: 16px;
  }

  .default-form-page {
    width: min(430px, calc(100vw - 28px));
    margin: 14px;
  }

  .info-text {
    position: static;
    margin-left: 0 !important;
    color: #202020;
    text-align: center;
  }
}
