body {
  background-color: var(--bs-dark);
  background-image: radial-gradient(at center bottom, #01295e21, #3b006b3b);
  min-height: 100vh;
}

.stickyAlertMain {
  position: fixed;
  top: 5%;
  right: 10px;
  background-color: #13002c;
  color: white;
  border: 1px solid #ffffff;
  z-index: 100000000;
}

.navbar-collapse > a, .navbar-collapse > button {
  margin-right: 3px!important;
  margin-bottom: 5px!important;
}

.promoBtn {
  transition: .3s;
}

.promoBtn:hover {
  transform: scale(1.05);
  transition: .3s;
}

.allCoinsContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-color: none;
  align-items: stretch;
}

.allCoinsContainer > div {
  flex: 1 1;
  flex-shrink: 1;
}

.mainLeaderboardContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.allFiltersInnerDiv {
  display: grid;
}

.filterSearchOuterDivs {
  margin: 13px;
  margin-right: 30px;
  margin-left: 3px;
  max-width: 600px;
  margin-bottom: 2px;
  display: inline-block;
}

.sortByOuterDivs {
  margin: 13px;
  margin-right: 20px;
  margin-left: 3px;
  margin-bottom: 2px;
  display: inline-block;
}

.minMaxRangeInputs {
  margin-right: 4px;
  display: flex;
  justify-content: start;
}

.minMaxRangeInputs > label {
  margin-top: 6px;
  margin-right: 4px;
  margin-left: 4px;
  color: #ffffff80;
}

.minMaxRangeInput > input::placeholder {
  color: rgba(255, 255, 255, 0.753);
  font-weight: 800;
}

.minMaxRangeInput {
  margin-bottom: 3px;
  background: rgba(48, 0, 102, 0.233);
  border: 1px solid rgba(162, 0, 255, 0.466)!important;
  border-radius: 6px;
  outline: none;
  border: none;
  padding: 4px;
  color: white;
  margin-left: 0px;
}

.minMaxRangeInput > p {
  color: rgba(255, 255, 255, 0.603);
  display: inline-block;
  margin-bottom: 2px;
  margin-left: 3px;
}

.minMaxRangeInput > input {
  background-color: rgba(255, 255, 255, 0)!important;
  color: white;
  border: none;
  outline: none;
  max-width: 80px;
}

.pumpReputationCoinAddressCA {
  display: none;
}

select {
  background: rgba(48, 0, 102, 0.233);
  border: 1px solid rgba(162, 0, 255, 0.466)!important;
  font-size: 14px;
  padding: 6px;
  border-radius: 6px;
  margin-right: 4px;
  font-weight: bold;
  color: rgba(255,255,255,0.75);
  border-style: none;
  margin-bottom: 3px;
  display: inline-block;
  min-width: 0;
  padding-left: 2px;
  padding-right: 2px;
}

.filtersCollapseBtn {
  background: rgba(48, 0, 102, 0.233)!important;
  border: 1px solid rgba(162, 0, 255, 0.466)!important;
  color: rgba(255,255,255,0.75);
  font-weight: bold;
  border-style: none;
  padding: 6px;
  font-size: 14px;
  margin-bottom: 3px;
}

.filtersCollapseBtn:hover {
  color: rgba(255, 255, 255, 0.911);
}

.filtersCollapseBtn:focus, .filtersCollapseBtn:active {
  color: white!important;
}

.collapse {
  padding-left: 0px!important;
}

option {
  background-color: rgb(23, 0, 43);
}

select:focus {
  outline: 1px solid rgba(0, 0, 0, 0.281);
}

.searchInput {
  border-radius: 6px;
  background-color: #6f00ff09;
  box-shadow: none;
  border: 1px solid rgba(63, 0, 100, 0.6);
  color: white;
  padding: 3px;
  padding-left: 6px;
  padding-right: 6px;
  padding-bottom: 5px;
  padding-top: 5px;
  width: 300px;
}

.searchInput:focus {
  outline: 1px solid rgba(120, 0, 201, 0.705);
  background-color: none;
}

.allLogInWithWalletBtnOuter {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 6px;
}

.allLogInWithWalletBtnOuter > button {
  color: white;
  background-color: #006faf;
  border: none;
  min-width: 250px;
  padding-left: 20px;
  padding-right: 40px;
}

.allLogInWithWalletBtnOuter > button:hover {
  background-color: #007fcf;
  color: white;
}

.allLogInWithWalletBtnOuter > button:active {
  background-color: #005f8f!important;
  color: white!important;
}

@keyframes shakeIntoView {
  0% {
    background-color: rgba(179,0,255,0.5);
    transform: translate(16px,0px);
  }
  10% {
    transform: translate(-16px,0px);
  }
  20% {
    transform: translate(16px,0px);
  }
  30% {
    transform: translate(-16px,0px);
  }
  40% {
    transform: translate(16px,0px);
  }
  50% {
    transform: translate(-16px,0px);
  }
  60% {
    transform: translate(16px,0px);
  }
  70% {
    transform: translate(-16px,0px);
  }
  80% {
    background-color: rgba(179,0,255,0);
    transform: translate(16px,0px);
  }
  90% {
    transform: translate(-16px,0px);
  }
  100% {
    transform: translate(0px,0px);
  }
}

.playShakeIntoViewAnimation {
  animation: shakeIntoView .8s;
}

.coinOuterDiv {
  display: flex;
  flex-direction: column;
  padding: 12px;
  min-width: 620px;
  max-width: 660px;
  min-height: 200px;
  margin: 10px;
  cursor: pointer;
  border: 1px solid rgb(63, 0, 100);
  background: rgba(24, 0, 39, 0.21);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.692);
  border-radius: 16px;
  transition: .3s;
}

.coinOuterDiv:hover {
  border: 1px solid rgb(127, 0, 201);
  transform: scale(1.02);
  border-radius: 16px;
  transition: .3s;
}

@media (max-width: 650px) {
  .coinOuterDiv {
    min-width: 300px;
    max-width: 400px;
  }
}

.coinListingMiscDetails {
  margin-top: auto!important;
}

.coinListingMiscDetails > p, .premiumCoinDataDetails > p {
  display: inline-block!important;
  font-size: 16px!important;
  border-radius: 16px;
  padding: 2px;
  padding-left: 8px;
  padding-right: 8px;
  vertical-align: bottom!important;
  color: white;
  font-size: 12px;
  margin-bottom: 3px;
}

.coinListingMiscDetails > p {
  background-color: rgba(112, 0, 156, 0.281);
  border: 1px solid rgba(162, 0, 255, 0.425);
}

.premiumCoinDataDetails > p {
  background-color: rgba(0, 112, 156, 0.281);
  border: 1px solid rgba(0, 204, 255, 0.425);
}

.bundlingValueQuickLook {
  background-color: rgba(156, 0, 0, 0.281)!important;
  border: 1px solid rgba(255, 0, 0, 0.425)!important;
}

.outerDevDiv {
  min-width: 500px;
  max-width: 600px;
  margin: 10px;
  padding: 8px;
  display: inline-block;
  border-radius: 16px;
  cursor: pointer;
  flex: 1 1;
  flex-shrink: 1;
  border: 1px solid rgb(63, 0, 100);
  background: rgba(24, 0, 39, 0.21);
  transition: .3s;
}

.outerDevDiv:hover {
  border: 1px solid rgb(127, 0, 201);
  transform: scale(1.02);
  transition: .3s;
  border-radius: 16px;
}

@media (max-width: 650px) {
  .outerDevDiv {
    min-width: 300px;
    max-width: 400px;
  }
}

@media (max-width: 650px) {
  #likesReceivedOuter {
    margin-left: 0px!important;
  }
}

@media (max-width: 650px) {
  #mentionsReceivedOuter {
    margin-left: 0px!important;
  }
}

.likesAndMentionsText {
  display: inline-block;
}

.coinIsLiveStreaming {
  border: 1px solid rgb(40, 126, 0);
  border-radius: 16px;
}

.coinIsLiveStreaming:hover {
  border: 1px solid rgb(9, 228, 1)!important;
  transform: scale(1.02);
  border-radius: 16px;
  transition: .3s;
}

.isCoinLiveStreamingText, .coinHitKOTHText, .coinHitRayText, .coinIsRepeatImage {
  display: inline-block;
  color: white!important;
  margin-bottom: 0px;
  font-size: 13px;
  color: var(--bs-dark);
  font-weight: 800;
  border-radius: 5px;
  padding: 1px;
  padding-left: 4px;
  padding-right: 4px;
  margin-top: 5px;
  margin-right: 2px;
}

.isCoinLiveStreamingText {
  background-color: var(--bs-primary);
}

.coinHitKOTHText {
  background-color: rgb(179, 93, 12);
}

.coinHitRayText {
  background-color: #096a9b;
}

.coinIsRepeatImage {
  background-color: #fa0000;
}

.paginationButtons > button {
  color: rgb(175, 175, 175)!important;
}

.paginationButtons > button:hover {
  color: rgb(175, 175, 175)!important;
}

.paginationButtons > button:focus {
  color: rgb(175, 175, 175)!important;
}

.paginationButtons > .paginationMorePagesAllowed {
  color: rgb(255, 255, 255)!important;
}

.paginationButtons > .paginationMorePagesAllowed:focus {
  color: rgb(255, 255, 255)!important;
}

.paginationButtons > .paginationMorePagesAllowed:hover {
  color: rgb(255, 255, 255)!important;
}

.paginationButtons > .paginationMorePagesAllowed:active {
  color: rgb(255, 255, 255)!important;
}

.innerStatIconText {
  display: inline-block;
  margin-right: 2px;
  margin-bottom: 5px;
  border-radius: 5px;
  padding: 2px;
  padding-left: 5px;
  padding-right: 5px;
}

.innerStatIconText > p {
  display: inline-block;
  margin-bottom: 0px;
  margin-left: 3px;
}

.creatorScoreAndRaydiumProjects {
  font-size: 18px;
}

.helpIconBtn {
  display: inline-block;
  transition: .3s;
  font-size: 15px;
}

.helpIconBtn:hover {
  transform: scale(1.05);
  color: var(--bs-dark)!important;
  background-color: white!important;
  transition: .3s;
}

.nameOfCoin {
  max-width: 500px;
  margin-bottom: 3px;
  font-weight: 800;
}

.socialIcons {
  margin-bottom: 0px;
  color: rgb(255,255,255);
  font-size: 19px;
}

.socialIcons > svg {
  width: 23px;
  height: 23px;
}

.descriptionOfCoin {
  max-width: 280px;
}

.allTokenLinksOuter > label, .allTradingLinksOuter > label {
  color: white;
  font-weight: 800;
  margin-bottom: 3px;
}

.allTokenLinks, .allTradingLinks {
  margin-bottom: 6px;
}

.allTokenLinks > button, .allTradingLinks > button {
  color: white;
  margin-bottom: 4px;
  transition: .3s;
  font-weight: 800;
  padding: 3px;
  padding-left: 13px;
  padding-right: 13px;
  margin-right: 6px;
  background-color: #4500a0;
  border: none;
}

.allTokenLinks > button:hover, .allTradingLinks > button:hover {
  color: white;
  transition: .3s;
  transform: scale(1.05);
  background-color: #5100bb;
}

.allTokenLinks > button:active, .allTradingLinks > button:active {
  color: white!important;
  background-color: #5100bb!important;
}

.tokenBadgePositive {
  background-image: linear-gradient(0deg, rgba(75, 201, 43,0.8), rgba(75, 201, 43,0.65), rgba(75, 201, 43,0.55));
  color: white;
  border-radius: 6px;
  padding: 2px;
  padding-left: 6px;
  padding-right: 6px;
  font-weight: 800;
  margin-right: 4px;
  display: inline-block;
  margin-bottom: 0px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.tokenHolderBadgeTier1, .tokenHolderBadgeTier2, .tokenHolderBadgeTier3 {
  color: white;
  border-radius: 6px;
  padding: 4px;
  padding-left: 6px;
  padding-right: 6px;
  font-weight: 800;
  margin-right: 4px;
  display: inline-block;
  margin-bottom: 0px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.tokenHolderBadgeTier1 {
  background-image: linear-gradient(0deg, rgba(43, 177, 201, 0.8), rgba(43, 177, 201,0.65), rgba(43, 177, 201,0.55));
  box-shadow: 0px 1px 2px rgb(38, 214, 205);
}

.tokenHolderBadgeTier2 {
  background-image: linear-gradient(0deg, rgba(104, 24, 252, 0.8), rgba(104, 24, 252,0.65), rgba(104, 24, 252,0.55));
  box-shadow: 0px 1px 2px rgba(150, 62, 221, 0.904);
}

.tokenHolderBadgeTier3 {
  background-image: linear-gradient(0deg, rgb(255, 146, 22), rgba(255, 146, 22,0.65), rgba(255, 146, 22,0.55));
  box-shadow: 0px 1px 2px rgb(187, 142, 19);
}

.commentsOuterDiv {
  width: 100%;
  max-width: 750px;
  display: flex;
  align-items: start;
  justify-self: start;
  flex-direction: column;
}

.comment {
  display: block;
  background: rgba(69, 0, 160, 0.158);
  border-radius: 16px;
  padding: 10px;
  margin: 10px;
  margin-bottom: 1px;
  box-shadow: 0px 2px 5px rgb(68, 0, 108);
}

.commentFromCreator {
  box-shadow: 0px 1px 5px rgb(38, 214, 205);
  background-color: rgba(78, 0, 124, 0.397);
}

.commentIsOwner {
  background-image: linear-gradient(0deg, rgba(38, 214, 205,0.6), rgba(38, 214, 205,0.4), rgba(38, 214, 205,0.3));
  margin-left: 5px;
  margin-bottom: 5px;
  border-radius: 8px;
  padding: 0px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 13px;
}

.commentIsPremiumUser {
  background-image: linear-gradient(0deg, rgba(51, 209, 0,0.6), rgba(51, 209, 0,0.4), rgba(51, 209, 0,0.3));
  margin-left: 2px;
  margin-bottom: 5px;
  border-radius: 8px;
  padding: 0px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 13px;
}

.commentTextInput {
  border-radius: 6px;
  background-color: #6f00ff09;
  box-shadow: none;
  border: 1px solid rgba(110, 0, 253, 0.829);
  color: white;
  padding: 3px;
  padding-left: 6px;
  padding-right: 6px;
  margin-top: 12px;
  resize: none;
  min-width: 350px;
  width: 100%;
}

.commentTextInput:focus {
  outline: 1px solid rgba(120, 0, 201, 0.705);
  background-color: none;
}

.sendCommentBtn {
  background-color: #4500a0;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 5px;
  padding-left: 12px;
  padding-right: 12px;
  margin-top: 1px;
  margin-left: 0px;
  margin-right: 8px;
  cursor: pointer;
  transition: .3s;
  font-weight: 800;
}

.sendCommentBtn:hover {
  transition: .3s;
  color: white;
  transform: scale(1.05);
  background-color: #5100bb;
}

.sendCommentBtn:active {
  color: white !important;
  background-color: #29005f !important;
}

.allCommentBtnsRow > .col {
  padding-left: 0px;
  padding-right: 0px;
}

.mainOuterColComments {
  max-width: 760px;
}

.contractAddressInputDisplay {
  background-color: #28004e21;
  border: 1px solid rgb(80, 0, 112);
  border-radius: 6px;
  outline: none;
  padding: 2px;
  margin-top: 1px;
  margin-bottom: 5px;
  width: 100%;
  color: white;
}

.contractAddressInputDisplay:hover {
  outline: 1px solid rgba(120, 0, 201, 0.705);
  background-color: none;
}

.navItem, .navLink, .navItem:focus, .navLink:focus, .navLink > .active:focus {
  color: white;
  font-weight: 800;
  transition: .1s;
  outline: none !important;
  border: none!important;
  border-color: rgba(89, 2, 139, 0.295)!important;
}

.navItem:hover, .navLink:hover, .navLink > .active {
  color: white !important;
  background-color: transparent!important;
  transition: .1s;
  border: none!important;
  outline: none !important;
  border-bottom: 1px solid rgba(112, 1, 177, 0.281)!important;
}

.navItem > .active {
  color: white !important;
  background-color: transparent!important;
  transition: .1s;
  border: none!important;
  outline: none !important;
  border-bottom: 1px solid rgb(89, 2, 139)!important;
}

.nav-tabs {
  border-bottom: none;
}

.lastUpdated {
  color: white;
  font-size: 12px;
  margin-bottom: 3px;
}

.mustBeLoggedInTokenAnalysis {
  color: white;
}

.bundleTrade {
  border-radius: 6px;
  padding: 5px;
}

.bundleTradesTable {
}

.accountBundlerTagTypeSniperBot, .accountBundlerTagTypeBundlerBot, .accountBundlerTagTypeDeveloper, .accountBundlerTagTypeFrontrunner, .accountBundlerTagTypeTraderOrBot, .accountBundlerTagTypePendingTag {
  display: inline-block;
  padding: 3px;
  border-radius: 6px;
  font-weight: 800;
}

.accountBundlerTagTypeDeveloper {
  background-color: #0022bb;
}

.accountBundlerTagTypeBundlerBot {
  background-color: #9b1a09;
}

.accountBundlerTagTypeSniperBot {
  background-color: #5100bb;
}

.accountBundlerTagTypeFrontrunner {
  background-color: #d88201;
}

.accountBundlerTagTypeTraderOrBot {
  background-color: #2cbb00;
}

.accountBundlerTagTypePendingTag {
  background-color: #757575;
}

.updatesInfoDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 10px;
  color: white;
  padding: 6px;
  margin-top: 0px;
  background-color: #16ff0181;
}

.txTypeBuy {
  color: #3bbb00!important;
}

.txTypeSell {
  color: #ff0000!important;
}

.KOTHAdSlot {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 40px;
}

.innerCoinDiv {
  padding: 10px;
  padding-bottom: 4px;
  border: 1px solid rgb(202, 155, 0);
  border-radius: 16px;
  transition: .3s;
  margin: 10px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  max-width: 800px;
  min-width: 620px;
}

@media (max-width: 650px) {
  .innerCoinDiv {
    min-width: 300px;
    max-width: 400px;
  }
}

.innerCoinDiv:hover {
  border: 1px solid rgb(255, 217, 0);
  transform: scale(1.02);
  transition: .3s;
}

.KOTHAdSlot > h2 {
  color: white;
  font-weight: 800;
  width: 100%;
}

.KOTHAdSlotStats > p {
  display: inline-block;
  color: white;
  font-weight: 800;
  background-color: rgba(255, 153, 0, 0.178);
  border: 1px solid rgba(255, 153, 0, 0.781);
  border-radius: 10px;
  margin: 2px;
  margin-top: 6px;
  margin-left: 0px;
  margin-right: 1px;
  padding: 2px;
  padding-left: 6px;
  padding-right: 6px;
}

.setBidAmountPumpRep {
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.301);
}

.setBidAmountPumpRep:focus {
  border: 1px solid black;
}

.allFeaturedCoinsContainerContent {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 1353px;
  background-color: none;
  align-items: stretch;
  margin-top: 20px;
}

.allFeaturedCoinsContainerContent > div {
  flex: 1 1;
  flex-shrink: 1;
}

.howKOTHAdSystemWorksBtn {
  transition: .3s;
}

.howKOTHAdSystemWorksBtn:hover {
  transform: scale(1.15);
  transition: .3s;
}

.filterLabelParent {
  color: rgba(255,255,255,0.9);
  margin-right: 7px;
  font-size: 16px;
  margin-left: 2px;
  margin-bottom: 3px;
}

.filterLabel {
  color: rgba(255,255,255,0.73);
  margin-bottom: 0px;
  margin-top: 4px;
  display: block;
}

.collapseContentOverEverything {
  position: absolute;
  z-index: 10;
  background-color: rgb(22, 13, 44);
  max-width: 450px;
  padding: 10px!important;
  border-radius: 10px;
  margin-top: 10px!important;
  border: #4800a7 1px solid;
  padding-bottom: 20px!important;
  box-shadow: 0px 5px 10px rgb(0, 0, 0);
}

.allFiltersInnerDiv {
  padding-left: 10px!important;
}

.premiumFilterTier2MustHold, .premiumFilterTier3MustHold {
  text-align: center;
  margin-top: 5px;
  margin-bottom: 5px;
  display: inline-block;
  padding: 5px;
  border-radius: 6px;
  border: 1px solid rgba(157, 0, 248, 0.466);
  background-color: rgba(48, 0, 102, 0.233);
}

.holderOnlyParagraph {
  background-color: rgba(0, 0, 0, 0.164);
  box-shadow: 0px 0px 20px 20px rgba(0, 0, 0, 0.164);
  padding: 4px;
  color: rgb(255,255,255);
  text-align: center;
  font-size: 24px;
  position: absolute;
  z-index: 1000000;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.taggedHolderStatisticsOuterOuterDiv {
  position: relative;
  padding-top: 20px;
  padding-bottom: 20px;
}

.blurEffect {
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  -ms-filter: blur(5px);
  filter: blur(5px);
}

.blurredOutDarkDiv {
  width: 100%;
  height: 100% !important;
  position: absolute;
  z-index: 10000000;
}

.apexcharts-tooltip span {
  color: #ffffff;
}

.colorMarkerLegend {
  display: flex;
  align-items: center;
  justify-content: center;
}

.colorMarkerLegend > p {
  color: white;
  display: inline-block;
  margin-right: 12px;
  margin-top: 16px;
}

.legendColorMarker {
  width: 13px;
  height: 13px;
  display: inline-block;
  border-radius: 50%;
  margin-right: 3px;
  border: 1px solid white;
}

