﻿@import url('open-iconic/font/css/open-iconic-bootstrap.min.css');
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap');

@-webkit-keyframes border-transform {
  0%, 100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
  }
}

@keyframes border-transform {
  0%, 100% {
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46% / 49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62% / 49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45% / 61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33% / 70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66% / 56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50% / 35% 61% 39% 65%;
  }
}

@keyframes active-reply-at-you-glow {
  0%, 100% {
    box-shadow: 0px 0px 6px 0px #b8860b;
  }
  50% {
    box-shadow: 0px 0px 10px 0px #b8860b;
  }
}

@keyframes marquee {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(-100%, 0);
  }
}

@keyframes breathing {
  0% {
    transform: scale(0.75);
  }

  50% {
    transform: scale(1);
  }

  100% {
    transform: scale(0.75);
  }
}

@keyframes police {
  0%, 100% {
    background-color: red;
    border-color: yellow;
    color: blue;
  }

  50% {
    background-color: blue;
    border-color: ghostwhite;
    color: red;
  }
}

@keyframes border-hover {
  0% {
    border-radius: 30px;
  }

  100% {
    border-radius: 15px;
  }
}

@keyframes expand {
  0% {
    transform: scaleY(0);
  }

  100% {
    transform: scaleY(1);
  }
}

@keyframes fade-opacity {
  from {
    opacity: 0;
  }

  to {
    opacity: 100;
  }
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

@keyframes diagonal-slide {
  100% {
    background-position: -100px 100px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee {
    white-space: normal
  }

  .marquee span {
    animation: none;
    padding-left: 0;
  }
}

@media (min-width: 641px) {
  .nav-bottom {
    position: absolute;
    bottom: 0;
  }

  .thread-content {
    display: block;
  }
}

/**/

.blink {
  animation: blinker 1s cubic-bezier(0, 1, 0, 1) infinite;
}

.search-content-timestamp {
  background-color: ghostwhite;
  border-left: 1px solid ghostwhite;
  border-top: 1px solid ghostwhite;
  border-radius: 5px;
  padding: 0 5px 0 5px;
  text-shadow: none;
  font-size: 11px;
  font-weight: bold;
  color: black;
  position: relative;
}

.search-threads-dropdown {
  position: absolute;
  min-height: 85px;
  max-height: 200px;
  padding-left: .1em;
  list-style-type: none;
  background-color: rgb(16, 16, 16);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom: 1px solid ghostwhite;
  border-left: 1px solid dimgrey;
  border-right: 1px solid dimgrey;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 9999;
}

.search-threads-dropdown > li {
  padding-top: .5em;
  padding-bottom: .5em;
  padding-left: .5em;
  width: 466px;
  cursor: pointer;
  transition: .1s;
}

.search-threads-dropdown > li:hover {
  background-color: #1e1e1e;;
}

.search-selected-threads {
  display: flex;
  margin-top: 0.25em;
  margin-bottom: 0.75em;
  font-size: 14px;
}

.search-selected-threads > div {
  margin-left: .5em;
  background-color: darkslategrey;
  padding: .3em;
  border-radius: 5px;
  cursor: pointer;
}

.search-threads-title {
  font-size: 14px;
}

.search-threads-title .marquee {
  animation: marquee 1s linear infinite;
}

.search-user-dropdown {
  position: absolute;
  min-height: 85px;
  max-height: 200px;
  padding-left: .1em;
  list-style-type: none;
  background-color: rgb(16, 16, 16);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom: 1px solid ghostwhite;
  border-left: 1px solid dimgrey;
  border-right: 1px solid dimgrey;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 9999;
}

.search-user-dropdown > li {
  padding-top: .5em;
  padding-bottom: .5em;
  padding-left: .5em;
  width: 466px;
  cursor: pointer;
  transition: .1s;
}

.search-user-dropdown > li:hover {
  background-color: #1e1e1e;;
}

.search-selected-users {
  display: flex;
  margin-top: 0.25em;
  margin-bottom: 0.75em;
  font-size: 14px;
}

.search-selected-users > div {
  margin-left: .5em;
  background-color: darkslategrey;
  padding: .3em;
  border-radius: 5px;
  cursor: pointer;
}

.filter-switch label {
  cursor: pointer;
}

.filter-switch-item input:checked + label {
  color: inherit;
}

.filter-switch-item input:not(:checked) + label {
  --bg-opacity: 0;
  box-shadow: none;
}

.filter-user-dropdown {
  position: absolute;
  width: 466px;
  min-height: 85px;
  max-height: 200px;
  padding-left: .1em;
  list-style-type: none;
  background-color: rgb(16, 16, 16);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-bottom: 1px solid ghostwhite;
  border-left: 1px solid dimgrey;
  border-right: 1px solid dimgrey;
  overflow-y: scroll;
  overflow-x: hidden;
  z-index: 9999;
}

.filter-user-dropdown > li {
  padding-top: .5em;
  padding-bottom: .5em;
  padding-left: .5em;
  width: 466px;
  cursor: pointer;
  transition: .1s;
}

.filter-user-dropdown > li:hover {
  background-color: #1e1e1e;;
}

.filter-user-avatars {
  width: 64px;
  height: 64px;
}

.filter-selected-users {
  display: flex;
  margin-top: -.75em;
  margin-bottom: .35em;
}

.filter-selected-users > div {
  margin-left: .5em;
  background-color: darkslategrey;
  padding: .3em;
  border-radius: 5px;
  cursor: pointer;
}

.filter-input {
  text-align: center;
}

.filter-input input[type=checkbox] {
  display: none;
}

/* to hide the checkbox itself */
.filter-input input[type=checkbox] + label i {
  font-family: FontAwesome;
  display: inline-block;
}

.filter-input input[type=checkbox] + label i {
  font-size: 30px;
}

/* unchecked icon */
.filter-input input[type=checkbox] + label i {
  letter-spacing: 10px;
}

/* space between checkbox and label */
.filter-input input[type=checkbox]:checked + label i {
  color: darkred;
}

/* checked icon */
.filter-input input[type=checkbox]:checked + label i {
  letter-spacing: 10px;
}

/* allow space for check mark */

.br-br {
  content: " ";
  display: none;
}

.reply-quotes {
  display: flex;
  align-content: baseline;
  position: absolute;
  justify-content: flex-start;
  top: -16px;
  right: 0;
}

.reply-quotes > .active-reply-quotes > .active-reply-quote {
  max-width: 200px;
  position: initial;
  background-color: #464bb4;
  padding-left: 8px;
  padding-right: 0;
  text-align: center;
}

.active-reply-quote-at-you {
  background-color: #b8860b !important;
  animation: active-reply-at-you-glow 4s linear infinite;
}

.reply-quotes > .active-reply-quotes > .active-reply-quote > .active-reply-quote-content {
  font-size: 14px;
  font-weight: bold;
}

.reply-quotes > .active-reply-quotes > .active-reply-quote:hover {
  background-color: #585dbb;
  transition: .1s;
}

.active-reply-quotes {
  justify-content: start;
}

.active-reply-quote {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  max-width: 220px;
  margin-top: 1em;
  margin-right: 1em;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: flex;
  position: relative;
  top: -17px;
  left: 10%;
  margin-bottom: -16px;
  border-radius: 5px;
  transition: .1s;
}

.active-reply-quote-content {
  font-size: 12px;
  width: fit-content;
  overflow: hidden;
}

.fade-off {
  -webkit-mask-image: linear-gradient(90deg, #000000 60%, transparent);
}

.fade-grad {
  -webkit-mask-image: linear-gradient(90deg, #000000 77%, transparent);
}

.active-reply-edit-content {
  position: relative;
}

.active-reply-edit-content > form {
  position: relative;
}

.active-reply-edit-content > form > textarea:hover {
  filter: none;
}

.active-reply-edit-content > form > textarea {
  background-color: rgb(16, 16, 16);
  color: ghostwhite;
  width: 80%;
  border: 1px solid ghostwhite;
  border-radius: 5px;
  height: 253px;
  animation: .1s fade-opacity;
  overflow-x: hidden;
  resize: none;
  padding-left: 8px;
  padding-top: 8px;
  margin-right: 5px;
}

.active-reply-content {
  position: fixed;
  bottom: 10px;
  width: 80%;
  left: 10%;
}

.active-reply-content > form {
  position: relative;
  display: flex;
  justify-content: center;
}

.active-reply-content > form > textarea:hover {
  filter: none;
}

.active-reply-content > form > textarea {
  background-color: rgb(16, 16, 16);
  color: ghostwhite;
  width: 80%;
  border: 1px solid ghostwhite;
  border-radius: 5px;
  max-height: 300px;
  min-height: 40px;
  animation: .1s fade-opacity;
  overflow-x: hidden;
  resize: none;
  padding-left: 8px;
  padding-top: 8px;
  margin-right: 5px;
}

.active-reply-content > form > input {
  background-color: rgb(16, 16, 16);
  color: ghostwhite;
  width: 80%;
  border: 1px solid ghostwhite;
  border-radius: 5px;
  max-height: 300px;
  min-height: 40px;
  animation: .1s fade-opacity;
  overflow-x: hidden;
  resize: none;
  padding-left: 8px;
  margin-right: 5px;
}

.active-reply-quote-discard {
  font-size: 17px;
  font-weight: bold;
  float: right;
  background-color: ghostwhite !important;
  color: black !important;
  border: none;
  border-radius: 100%;
  margin-right: -32px;
  position: relative;
  width: 24px;
  height: 24px;
  display: block;
  align-items: center;
  justify-content: center;
  text-align: left;
  z-index: 9999;
  top: -20px;
  left: -10px;
}

.active-reply-quote-discard > span {
  position: relative;
  top: -7px;
  left: -5px;
}

.active-reply-quote-discard:hover {
  background-color: black !important;
  border-color: black !important;
  color: ghostwhite !important;
}

.active-reply-edit-discard {
  font-size: 17px;
  font-weight: bold;
  float: right;
  background-color: ghostwhite !important;
  color: black !important;
  border: none;
  border-radius: 100%;
  margin-right: -32px;
  position: relative;
  width: 24px;
  height: 24px;
  display: block;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.active-reply-edit-discard > span {
  position: relative;
  top: -7px;
  left: -5px;
}

.active-reply-edit-discard:hover {
  background-color: black !important;
  border-color: black !important;
  color: ghostwhite !important;
}

.active-reply-edit-discard {
  position: relative;
  right: 185px;
  top: -13px;
}

.active-reply-discard {
  font-size: 17px;
  font-weight: bold;
  float: right;
  background-color: ghostwhite !important;
  color: black !important;
  border: none;
  border-radius: 100%;
  margin-right: -32px;
  position: relative;
  width: 24px;
  height: 24px;
  display: block;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.active-reply-discard > span {
  position: relative;
  top: -7px;
  left: -5px;
}

.active-reply-discard:hover {
  background-color: black !important;
  border-color: black !important;
  color: ghostwhite !important;
}

.active-reply-discard {
  position: relative;
  left: -19px;
  top: -13px;
}

.page-select {
  display: inline;
}

.page-select > .page-progress-wrap > form > input {
  position: absolute;
  text-align: center;
  background: none;
  color: ghostwhite;
  border: none;
  font-size: 12px;
  font-weight: bold;
  width: 40px;
  height: 40px;
  left: 3px;
  bottom: 3px;
  border-radius: 100%;
}

.page-buttons {
  height: 50px;
}

.page-button:after {
  content: '';
  position: absolute;
  transition: all .1s cubic-bezier(.25, .75, .5, 1.25);
  width: 0;
  right: 0%;
  bottom: 0;
  height: 100%;
  background: #fff;
  z-index: -1;
}

.page-button:hover:after, .page-button.hover:after {
  width: 100%;
  right: auto;
  left: 0;
}

.page-button {
  border: 1px solid #fff;
  width: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all 200ms cubic-bezier(.25, .75, .5, 1);
  text-decoration: none;
  color: ghostwhite;
}

.quoted-0 {
  background-color: #284646 !important;
  transition: .1s;
}

.quoted-1 {
  background-color: #462846 !important;
  transition: .1s;
}

.quoted-2 {
  background-color: #464628 !important;
  transition: .1s;
}

.quoted-3 {
  background-color: #283746 !important;
  transition: .1s;
}

.close {
  color: ghostwhite;
  text-shadow: none;
  -webkit-transition: .1s linear;
  -o-transition: .1s linear;
  transition: .1s linear;
  color: dimgray;
  outline: none !important;
}

.close:hover {
  color: ghostwhite;
  text-shadow: none;
}

.modal {
  z-index: 9999;
}

.modal-content {
  background-color: rgb(20, 20, 20);
  border-top: 1px solid ghostwhite;
  border-bottom: 1px solid ghostwhite;
  border-left: 1px solid dimgrey;
  border-right: 1px solid dimgrey;
}

.modal-body > textarea {
  width: 100%;
  min-height: 260px;
  background-color: #1e1e1e !important;
  border: 1px solid ghostwhite;
  color: ghostwhite;
  border-radius: .25rem;
  -webkit-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  -o-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.modal-body > textarea:focus {
  width: 100%;
  background-color: #1e1e1e;
  border: 1px solid ghostwhite;
  border-color: #ff0000;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25) !important;
}

.btn-t-opt {
  width: 64px;
}

.btn-accept {
  background-color: #2e8b57 !important;
  border-color: #2e8b57 !important;
}

.btn-accept:hover {
  background-color: #429667 !important;
  border-color: #429667 !important;
  transition: .1s;
}

.btn-deal {
  background-color: #2e8b57 !important;
  border-color: #2e8b57 !important;
}

.btn-deal:hover {
  background-color: #429667 !important;
  border-color: #429667 !important;
  transition: .1s;
}

.btn-watch {
  background-color: #4682B4 !important;
  border-color: #4682B4 !important;
}

.btn-watch:hover {
  background-color: #588ebb !important;
  border-color: #588ebb !important;
  transition: .1s;
}

.btn-lock {
  background-color: #b8860b !important;
  border-color: #b8860b !important;
}

.btn-lock:hover {
  background-color: #bf9223 !important;
  border-color: #bf9223 !important;
  transition: .1s;
}

.btn-report {
  color: ghostwhite;
  background-color: #b22222 !important;
  border-color: #b22222 !important;
}

.btn-report:hover {
  /*animation: police 1s infinite;*/
  background-color: #dc4747 !important;
  border-color: #dc4747 !important;
  transition: .1s;
}

.btn-bump {
  background-color: #9370db !important;
  border-color: #9370db !important;
}

.btn-bump:hover {
  background-color: #9d7ede !important;
  border-color: #9d7ede !important;
  transition: .1s;
}

/**/

#page-button-first:after {
  content: "\f100";
  font-family: "Font Awesome 5 Free", emoji;
  font-weight: 900;
}
#page-button-first:before {
  content: "\f100";
  font-family: "Font Awesome 5 Free", emoji;
  font-weight: 900;
}

#page-button-previous:after {
  content: "\f104";
  font-family: "Font Awesome 5 Free", emoji;
  font-weight: 900;
}
#page-button-previous:before {
  content: "\f104";
  font-family: "Font Awesome 5 Free", emoji;
  font-weight: 900;
}

#page-button-last:after {
  content: "\f101";
  font-family: "Font Awesome 5 Free", emoji;
  font-weight: 900;
}
#page-button-last:before {
  content: "\f101";
  font-family: "Font Awesome 5 Free", emoji;
  font-weight: 900;
}

#page-button-next:after {
  content: "\f105";
  font-family: "Font Awesome 5 Free", emoji;
  font-weight: 900;
}
#page-button-next:before {
  content: "\f105";
  font-family: "Font Awesome 5 Free", emoji;
  font-weight: 900;
}

/**/

.page-buttons-wrap {
  width: 46px;
  height: 46px;
  display: block;
  border-radius: 50px;
  right: 74px;
  position: fixed;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}

.page-buttons-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-buttons-wrap::after {
  position: absolute;
  text-align: center;
  line-height: 46px;
  font-size: 16px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: ghostwhite;
  color: ghostwhite;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
}

.page-buttons-wrap:hover::after {
  opacity: 0;
}

.page-buttons-wrap::before {
  position: absolute;
  text-align: center;
  line-height: 46px;
  font-size: 16px;
  opacity: 0;
  background-color: ghostwhite;
  color: ghostwhite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
}

.page-buttons-wrap:hover::before {
  opacity: 1;
}

.page-buttons-wrap svg path {
  fill: none;
}

.page-buttons-wrap svg.progress-circle path {
  stroke: ghostwhite;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}

/**/

.page-progress-wrap {
  bottom: 127px;
  width: 46px;
  height: 46px;
  display: block;
  border-radius: 50px;
  right: 74px;
  position: fixed;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}

.page-progress-wrap::after {
  position: absolute;
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: ghostwhite;
  color: ghostwhite;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
}

.page-progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-progress-wrap::after {
  position: absolute;
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: ghostwhite;
  color: ghostwhite;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
}

.page-progress-wrap:hover::after {
  opacity: 0;
}

.page-progress-wrap::before {
  position: absolute;
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  background-color: ghostwhite;
  color: ghostwhite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
}

.page-progress-wrap:hover::before {
  opacity: 1;
}

.page-progress-wrap svg path {
  fill: none;
}

.page-progress-wrap svg.progress-circle path {
  stroke: ghostwhite;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}

.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: "\2191";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: ghostwhite;
  color: ghostwhite;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap::before {
  position: absolute;
  content: "\2191";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  opacity: 0;
  background-color: ghostwhite;
  color: ghostwhite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
}

.progress-wrap:hover::before {
  opacity: 1;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: ghostwhite;
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all .1s linear;
  transition: all .1s linear;
}

.progress-circle {
  background-color: rgb(16, 16, 16);
  border-radius: 100%;
}

.box-shadow {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
}

.marquee {
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
}

.marquee > span {
  display: inline-block;
  padding-left: 100%;
  will-change: transform;
  animation: marquee 15s linear infinite;
}

.marquee:hover > span {
  animation: none;
  padding: 0;
}

.alerts-item > .marquee > span {
  animation: marquee 10s linear infinite;
  display: inline-block;
  padding-left: 100%;
  will-change: transform;
}

.alerts-item > .marquee:hover > span {
  animation: marquee 5s linear infinite;
}

.divider {
  border-left: 1px solid ghostwhite;
  height: 44px;
  margin-left: .5em;
  margin-right: .5em;
}

html, body {
  font-family: 'Source Code Pro', Helvetica, Arial, sans-serif;
  color: ghostwhite;
  overflow-x: hidden;
  background-color: rgb(16, 16, 16);
  background-image: url("../img/logo-repeat.jpg");
  background-repeat: repeat;
  background-position: 0 0;
  animation: diagonal-slide 60s linear infinite;
  scroll-behavior: smooth;
}

a, .btn-link {
  color: rgb(139, 0, 0);
}

.unselectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.selectable {
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  user-select: text !important;
}

::selection {
  color: black;
  background: ghostwhite;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #202020;
}

::-webkit-scrollbar-thumb {
  background: #555;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(248, 248, 255, 0.5);
}

::-webkit-scrollbar-thumb:active {
  background: ghostwhite;
}

textarea:focus, input:focus {
  outline: none;
}

.btn-link {
  padding: 0;
}

.btn-link:hover {
  text-decoration: none;
  color: ghostwhite;
}

.btn-link:focus {
  text-decoration: none;
}

.btn-cancel {
  color: dimgray;
  padding-right: 1em;
}

.btn-cancel:hover {
  color: ghostwhite;
}

.btn-cancel:active {
  border-color: none;
}

.btn-primary {
  color: ghostwhite;
  background-position: center;
  transition: background 1s;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, .3) radial-gradient(circle, transparent 1%, rgba(255, 255, 255, .3) 1%) center / 15000%;
}

.btn-primary:active {
  background-color: rgba(255, 255, 255, .3);
  background-size: 100%;
  transition: background .1s;
}

.btn-toggled {
  background-color: rgb(139, 0, 0) !important;
}

.top-row.auth {
  background-image: url("../img/logo-repeat.jpg");
  background-repeat: repeat;
  background-position: 0 0;
  animation: diagonal-slide 60s linear infinite;
}

.context-menu-button:focus {
  opacity: 0;
}

.context-menu-item > a {
  margin-left: 0 !important;
}

.nav-profile {
  margin: 1em;
  position: fixed !important;
  top: 0 !important;
  right: 0;
}

.main {
  background-image: url("../img/logo-repeat.jpg");
  background-repeat: repeat;
  background-position: 0 0;
  animation: diagonal-slide 60s linear infinite;
}

.content {
  padding-top: 1.1rem;
  overflow: hidden;
}

.valid.modified:not([type=checkbox]) {
  outline: 1px solid #26b050;
}

.invalid {
  outline: 1px solid red;
}

.validation-message {
  color: red;
}

#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

.context-menu {
  z-index: 9999;
  display: none;
  position: absolute;
  font-size: 16px;
  border-top: 1px solid ghostwhite;
  border-bottom: 1px solid ghostwhite;
  border-left: 1px solid dimgrey;
  border-right: 1px solid dimgrey;
  border-radius: 5px;
  float: left;
  right: 0;
  animation: fade-opacity .1s, expand .1s;
  background-color: rgb(16, 16, 16);
}

.context-menu-item {
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  word-break: normal;
  white-space: nowrap;
}

.context-menu-item:hover {
  background-color: dimgray;
  transition: .1s;
}

.btn.focus, .btn:focus {
  outline: 0;
  box-shadow: none !important;
}

button + .context-menu:active,
button:focus + .context-menu {
  display: initial;
}

.context-menu > ul {
  list-style: none;
}

.context-menu > ul > li:hover {
  background-color: rgb(139, 0, 0);
}

.color-ghostwhite {
  color: ghostwhite;
}

.btn-primary:disabled {
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-primary:hover:disabled {
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-primary {
  color: ghostwhite;
  background-color: #8b0000;
  border-color: #8b0000;
  -webkit-transition: .1s linear;
  -o-transition: .1s linear;
  transition: .1s linear;
}

.btn-primary > .fas { /*the below padding property and value should go in above if this does not work*/
  padding: 0px;
}

.btn-primary:active {
  outline: none;
  box-shadow: none !important;
}

.btn-primary:focus {
  outline: none;
  box-shadow: none !important;
}

.btn-primary:hover {
  background-color: #961919;
  border-color: #961919;
}

.btn-primary.btn-accordion:hover {
  background-color: rgb(139, 0, 0) !important;
  border-color: rgb(139, 0, 0) !important;
}

.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: ghostwhite;
  background-color: darkred;
  border-color: darkred;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}

.btn-primary.btn-transparent {
  background-color: transparent;
  border: none;
  font-size: 18px;
  border-radius: 100%;
}

.btn-primary.btn-transparent:hover {
  background-color: darkred;
  border-color: darkred;
}

.form-text {
  margin-top: .25rem;
  font-size: .875em;
  color: darkgrey;
}

.form-control {
  background-color: #1e1e1e;
  color: ghostwhite;
  font-size: 13px;
}

.form-control:focus {
  color: ghostwhite;
  background-color: #1e1e1e;
  border-color: #ff0000;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}

.form-control:disabled {
  background-color: rgb(100, 20, 20);
  color: ghostwhite;
}

.table-threads {
  border-collapse: separate;
  border-spacing: 0;
  animation: .1s fade-opacity;
}

.table-threads > tbody > tr > td {
  border: 1px solid ghostwhite;
  border-style: none none solid none;
}

.table-threads > tbody > tr {
  height: 27px;
  border-bottom: 1px solid ghostwhite;
  background-color: rgb(16, 16, 16);
}

.table-threads > tbody > tr:first-child > td:first-child {
  border-top-left-radius: 5px;
}

.table-threads > tbody > tr:first-child > td:last-child {
  border-top-right-radius: 5px;
}

.table-threads > tbody > tr:last-child > td:first-child {
  border-bottom-left-radius: 5px;
}

.table-threads > tbody > tr:last-child > td:last-child {
  border-bottom-right-radius: 5px;
}

.table-threads > tbody > tr:first-child > td {
  border-top-style: solid;
}

.table-threads > tbody > tr > td:first-child {
  border-left: none;
}

.no-bg {
  background: none;
}

.replacement-icon {
  width: 30px;
}

.platform-icon {
  font-size: 22px;
  margin-left: .35em;
  border-radius: 100%;
  text-align: center;
  padding-top: 0.15em;
  height: 27px;
}

.platform-icon:hover {
  filter: none;
}

.info-box {
  color: ghostwhite;
}

.sidebar {
  text-transform: uppercase;
  position: fixed !important;
  z-index: 9999;
}

.sidebar-info {
  background-color: rgb(40, 40, 40);
  border-radius: 5px;
  margin-bottom: 1em;
  color: ghostwhite;
}

.navbar-brand {
  position: relative;
}

.nav-logo-top, .nav-logo-badge {
  position: absolute;
  top: 0;
}

.nav-logo-top {
  height: 60px;
}

.nav-logo-badge {
  height: 79px;
  top: -6px;
  left: -5px;
}

.nav-profile-name {
  margin-left: 0 !important;
}

select option {
  margin: 40px;
  background: rgba(0, 0, 0, 0.3);
  color: ghostwhite;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

.center-table {
  margin-left: auto;
  margin-right: auto;
}

.center {
  position: absolute;
  left: 30%;
  top: 50%;
  transform: translate(-30%, -50%);
}

.center-x {
  position: absolute;
  left: 42.5%;
}

.center-y {
  position: absolute;
  top: 42.5%;
}

.new-thread {
  animation: expand 1s;
}

.thread-filter-options-menu {
  height: 240px;
  animation: expand .1s;
  animation: fade-opacity .1s;
}

.thread-platform-selling-state-icon {
  font-size: 14px;
  top: -43px;
  position: relative;
  left: -27px;
  color: ghostwhite;
  font-variant: all-petite-caps;
  text-align: center;
  text-orientation: sideways;
  writing-mode: vertical-rl;
}

.thread-content {
  font-size: 14px;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-x: hidden;
  overflow-y: scroll;
  height: 100vh;
  background-color: rgb(16, 16, 16);
  border: 1px solid ghostwhite;
  transition-property: none;
  transition-duration: 150ms;
  transform: translateX(0%);
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 1111;
  right: 0;
}

.index-reply-textbox > textbox {
  background-color: rgb(16, 16, 16);
  color: ghostwhite;
  width: 100%;
  border: 1px solid ghostwhite;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-left-radius: 5px;
  margin-top: .5em;
  margin-bottom: .5em;
  min-height: 50px;
}

.index-reply-textbox {
}

.deal-row-participants {
  float: left;
  display: flex;
}

.deal-row-participant-finalised > img {
  border: 2px solid #339900;
}

.deal-row-participant-accepted > img {
  border: 2px solid #339900;
}

.deal-row-participant-pending > img {
  border: 2px solid #ffcc00;
}

.deal-row-participant {
  padding-right: .1em;
}

.deal-row-participant > img {
  width: 32px;
  height: 32px;
  border-radius: 100%;
}

.deal-handshake-icon {
  top: -22px;
  right: -13px;
  font-size: 14px;
  position: relative;
  padding: 0.2em;
  border-radius: 100%;
  height: 25px;
  width: 25px;
  border: 1px solid ghostwhite;
}

.deal-handshake-icon::before {
  position: relative;
  top: 2px;
}

.deal-content {
  font-size: 14px;
  line-height: 1.3;
  word-wrap: break-word;
}

.profile-card {
}

.profile-card-avatar:hover {
  filter: none;
}

.profile-card-name:hover {
  filter: none;
}

.profile-card a {
  color: ghostwhite;
  text-decoration: none;
}

.profile-card-vip a {
  color: mediumpurple !important;
}

.profile-card-mod a {
  color: green !important;
}

.profile-card-admin a {
  color: darkred !important;
}

.profile-card-reply {
  font-size: 12px;
  margin: 1em;
}

.profile-card-reply-avatar > img:hover {
  filter: none;
}

.profile-card-reply-avatar > a:hover {
  filter: none;
}

.profile-card-reply-avatar a {
  color: ghostwhite;
  text-decoration: none;
}

.profile-card-reply-avatar {
  position: relative;
  font-size: 12px;
}

.profile-card-reply-avatar-left {
  top: -8px;
  left: -13px;
}

.profile-card-reply-avatar-right {
  top: -8px;
  left: 13px;
}

.btn-copy > span {
  position: absolute;
  color: dimgray;
  font-size: 14px;
  padding: .3em;
  border-radius: 100%;
  width: 22px;
  cursor: pointer;
}

.btn-copy > span:hover {
  color: ghostwhite;
}

.d-contents {
  display: contents;
}

.mt-6 {
  margin-top: 4.4em !important;
}

/* Google */
.material-symbols-rounded {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48
}

/* Bootstrap overrides */
.table td:not(:first-child), .table th {
  vertical-align: middle;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: rgb(139, 0, 0) !important;
}

.custom-checkbox .custom-control-input:checked:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(139, 0, 0, 0.333);
}
.custom-checkbox .custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 0, 0, 0.333);
}
.custom-checkbox .custom-control-input:active ~ .custom-control-label::before {
  background-color: rgb(139, 0, 0);
}

.custom-control-input:checked~.custom-control-label::before {
  border-color: rgba(0, 0, 0, 0);
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
  border-color: rgba(0, 0, 0, 0);
}

.custom-control-input:focus~.custom-control-label::before {
  box-shadow: none !important;
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
  color: rgb(248, 248, 255);
  background-color: rgb(248, 248, 255);
  border-color: rgba(0, 0, 0, 0);
}

.table {
  color: ghostwhite;
  table-layout: fixed;
}

.table td, .table th {
  border-top: 1px solid ghostwhite;
  overflow: hidden;
  padding: 0.55rem;
}

.table thead th {
  border: none;
}

.h3, h3 {
  font-size: 2rem;
}

hr {
  border-top: none;
}

.nav-icon {
  margin-left: 2px;
  margin-right: 2.3em;
  font-size: 18px;
}

.nav-link {
  border-radius: 30px !important;
  font-weight: bold;
  letter-spacing: 5px;
  margin-left: 7px;
  margin-right: 6px;
  padding-right: 0px;
}

.nav-link:hover {
  animation: border-hover 1s;
}

.loading {
  animation: .1s fade-opacity;
}

.loading-breathing {
  animation: breathing 1s infinite;
}

.align-center {
  display: flow-root;
  justify-content: center;
  text-align: center;
}

.hide-overflow-x {
  overflow-x: hidden;
}

.hide-overflow-y {
  overflow-y: hidden;
}

.row-striped:nth-of-type(odd) {
  background-color: rgb(16, 16, 16);
}

.row-striped:nth-of-type(even) {
  background-color: rgb(20, 20, 20);
}

/* Font Awesome overrides */
.fas.nav-icon {
  width: 0px;
}

/* jQuery UI */
.ui-tooltip {
  padding: 8px;
  position: absolute;
  z-index: 9999;
  max-width: 480px;
  -webkit-box-shadow: 0 0 6px ghostwhite;
  box-shadow: 0 0 6px ghostwhite;
  background-color: black;
  color: ghostwhite;
  font-size: 16px;
  white-space: pre-line;
  text-align: center;
  letter-spacing: 2px;
  border-radius: 5px;
  font-variant-caps: petite-caps;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow-x: hidden;
  word-break: break-word;
}

body .ui-tooltip {
  border-width: 2px;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.nav-item a:hover {
  color: ghostwhite !important;
  transition: .1s !important;
}

img {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
  image-rendering: pixelated;
}