:root {
  --primarycolor: #1d3557;
  --textcolor: #858f9e;

  --bodycolor: #eaf4ff;
  --cardcolor: #fff;

  --successcolor: #37c72a;
  --dangercolor: #c72a34;

  --shadow: 0px 1px 3px 0px rgb(0 0 0 / 15%);
  --radius: 6px;

  --displayfont: "Barlow Condensed", sans-serif;
  --defaultfont: "Roboto", sans-serif;
  --MinecraftFont: "Minecrafter";
}

@font-face {
  font-family: "Minecrafter";
  src: url("https://cdn.playcdu.co/Images/Minecrafter.Reg.ttf")
    format("truetype");
}

body {
  background: var(--bodycolor);
  font-family: var(--defaultfont);
  color: var(--textcolor);

  margin: 0px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--displayfont);
}
a {
  transition: 0.3s all !important;
  color: var(--primarycolor);
  text-decoration: none !important;
}
a:hover {
  color: var(--primarycolor);
}

.btn {
  transition: 0.3s all !important;
}

.btn-info {
  background-color: var(--successcolor);
  border-color: var(--successcolor);
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active,
.btn-info.active,
.open .dropdown-toggle.btn-info {
  color: #ffffff;
  background-color: #209c15;
  border-color: #209c15;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open .dropdown-toggle.btn-primary {
  color: #ffffff;
  background-color: var(--primarycolor);
  border-color: var(--primarycolor);
}
.btn-primary {
  color: #ffffff;
  background-color: #1d457d;
  border-color: #1d457d;
}

.body.FullWidth .sidebar {
  display: none;
}
.body.FullWidth .content {
  width: 100%;
}

.body.CheckoutPage nav.navbar,
.footer .container:before,
.footer .container:after {
  display: none;
}

.pageloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;

  background: rgb(29 53 87 / 70%);
  backdrop-filter: blur(2px);

  display: flex;
  align-items: center;
  justify-content: center;
}

.loadingspinner {
  pointer-events: none;
  width: 3.5em;
  height: 3.5em;
  border: 0.7em solid transparent;
  border-color: #fff;
  border-top-color: var(--primarycolor);
  box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  animation: loadingspin 1s linear infinite;
}

@keyframes loadingspin {
  100% {
    transform: rotate(360deg);
  }
}

.panel,
.UserMenu,
.navbar-default {
  background: var(--cardcolor);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  border: none;
}
.panel-heading {
  border: none;
  border-radius: var(--radius);
  background: var(--cardcolor) !important;
  font-family: var(--displayfont);
  font-size: 20px;
  color: var(--primarycolor) !important;
}

header {
  background: radial-gradient(
      40.07% 40.07% at 50% 35.35%,
      rgb(29 53 87 / 77%) 0%,
      rgb(29 53 87 / 99%) 100%
    ),
    url(https://i.imgur.com/cFS78kW.jpg), lightgray 50% / cover no-repeat;
  margin: 0px 0px 30px;
  background-position: center;
  background-repeat: no-repeat;
  padding: 50px 0px 0px;
  overflow: hidden;
}
.Logo img {
  width: 100%;
}
.Logo {
  display: grid;
  width: 200px;
}
svg#Kangaroo {
  margin-top: 50px;
  margin-bottom: -6px;
  position: relative;
}
a.GetBackHome {
  position: relative;
  transition: 0.3s all !important;
  display: block;
  width: fit-content;
}
a.GetBackHome:before {
  position: absolute;
  display: block;
  content: "Get back Home";
  z-index: 1000;
  color: #000;
  background: #fff;
  padding: 20px;
  right: -150px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 10px;
  font-weight: 600;
}
a.GetBackHome:hover {
  transform: translateY(10px);
}
.Logo svg {
  width: 200px !important;
  height: unset;
}
.HeaderContent {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ServerLink h2 {
  font-family: var(--MinecraftFont);
  font-size: 24px;
  margin-top: 10px;
}
.ServerLink {
  border-radius: 10px 10px 0px 10px;
  background: rgba(20, 42, 72, 0.5);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  color: #fff;
  padding: 20px 50px;
  width: fit-content;
  cursor: pointer;
  transition: 0.3s all !important;
  position: relative;
  margin-left: auto;
  gap: 20px;
}
.ServerLink .Icon {
  opacity: 0.1;
  transition: 0.3s all !important;
}
.ServerLink:hover .Icon {
  opacity: 0.15;
}
.ServerLink:hover {
  transform: translateX(-10px);
  color: #feffa5;
}
.HeaderLinks {
  display: grid;
  gap: 60px;
}

span.servercount {
  position: absolute;
  bottom: -33%;
  background: rgb(20 42 72 / 49%);
  color: #fff;
  font-weight: 800;
  display: flex;
  right: 0 !important;
  justify-content: flex-end;
  align-items: center;
  padding: 8px 15px;
  border-radius: 0px 0px 0px 100px;
  width: 55%;
}
a#DiscordLink .servercount {
  width: 65% !important;
}

nav.navbar.navbar-default {
  padding-bottom: 15px;
}
ul.nav.navbar-nav {
  display: grid;
}

ul.nav.navbar-nav a {
  color: var(--primarycolor);
  font-family: var(--displayfont);
  font-size: 18px;
  position: relative;
  padding-left: 40px;
  font-weight: 600;
}
ul.nav.navbar-nav a:before {
  content: "";
  border-radius: 10px;
  background: rgba(217, 217, 217, 0.5);
  width: 6px;
  height: 50%;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  margin-left: -20px;
  transition: 0.3s all !important;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus {
  color: var(--primarycolor);
  padding-left: 50px;
}
.navbar-default .navbar-nav > li > a:hover:before,
.navbar-default .navbar-nav > li > a:focus:before {
  background: rgba(217, 217, 217, 0.75);
  width: 6px;
  height: 70%;
  margin-left: -30px;
}
nav.navbar.navbar-default h3 {
  font-family: var(--MinecraftFont);
  color: var(--primarycolor);
  font-size: 20px;
  margin: 30px 15px 10px;
}

div#IndexPanel .panel-body {
  padding-left: 0px;
  padding-right: 0px;
}
div#IndexPanel {
  padding: 10px 30px 10px;
}
.IndexModules div#textbox,
.IndexModules #RecentPayments {
  display: none;
}

.progress.active {
  margin: 0px auto -10px;
  z-index: -1;
  position: relative;
  width: 100%;
  height: 25px;
  border-radius: 6px;
  background: #394b64;
}
.progress-bar {
  background: #fff;
  transition: width 2.5s
    linear(
      0 0%,
      0 1.8%,
      0.01 3.6%,
      0.03 6.35%,
      0.07 9.1%,
      0.13 11.4%,
      0.19 13.4%,
      0.27 15%,
      0.34 16.1%,
      0.54 18.35%,
      0.66 20.6%,
      0.72 22.4%,
      0.77 24.6%,
      0.81 27.3%,
      0.85 30.4%,
      0.88 35.1%,
      0.92 40.6%,
      0.94 47.2%,
      0.96 55%,
      0.98 64%,
      0.99 74.4%,
      1 86.4%,
      1 100%
    );
  width: 0%;
}

h1#IndexCDU {
  font-family: var(--MinecraftFont);
  color: var(--primarycolor);
  font-size: 64px;
}
h3.WelcomeTitle {
  font-weight: 700;
  color: var(--primarycolor);
}
.IndexText p {
  width: 75%;
}
.IndexText {
  display: flex;
}

.GoalProgress {
  text-align: right;
  color: #000;
  font-family: "Barlow Condensed";
  font-weight: 600;
  font-size: 18px;
  margin-bottom: -50px;
}
.GoalProgress p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 50px;
}
.GoalProgress span {
  content: "";
  height: 125%;
  width: 4px;
  display: block;
  background: #ececec;
  position: absolute;
  right: 50%;
  border-radius: 10px;
}

.UserMenu {
  margin-bottom: 30px;
  padding: 30px 60px;
  text-align: center;
}
.UserMenu img {
  width: 111px;
  border-radius: 10px;
  margin-bottom: 10px;
}
.UserMenu span b {
  font-size: 20px;
  font-family: "Barlow Condensed";
}
.UserMenuText {
  text-align: left;
}
.UserMenuText a {
  font-weight: 700;
  color: inherit;
}
.BasketItem {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ItemInfo {
  text-align: left;
}
.UserBasket {
  display: grid;
  gap: 10px;
}
.package-options strong {
  font-weight: 900;
  color: #08101b !important;
}
.CartActions {
  display: flex;
  gap: 10px;
}

.RanksTabs {
  background: var(--primarycolor);
  width: fit-content;
  padding: 10px 25px;
  border-radius: 10px;
  margin: 0px auto 30px;
  display: flex;
}
.RanksTabs a.active {
  background: #fff;
  border-radius: 10px;
  color: var(--primarycolor);
}
.RanksTabs a {
  color: #fff;
  font-family: "Barlow Condensed";
  font-weight: 600;
  font-size: 20px;
  padding: 10px 25px;
  display: block;
}

.CheckoutBlock {
  position: relative;
  margin-bottom: 30px;
}
button#purchase-button:after {
  border: 4px solid;
  transform: scale(1.1) scaleY(1.2);
  animation-delay: 0.5s !important;
}
button#purchase-button:before {
  border: 4px solid;
  transform: scale(1.05) scaleY(1.1);
}
button#purchase-button:before,
#purchase-button:after {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  border-radius: 10px;
  animation: CheckoutAnim 0.5s infinite cubic-bezier(1, 0.05, 0.29, 1.01)
    alternate-reverse;
}
button#purchase-button {
  display: flex;
  border: none;
  background: var(--successcolor);
  color: #fff;
  font-family: var(--MinecraftFont);
  font-size: 28px;
  padding: 35px 30px 25px;
  text-align: left;
  border-radius: 10px;
  width: 100%;
  margin: 0px auto;
  text-shadow: 2px 3px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 4px 5px 0px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
svg#CheckoutKangaroo path {
  fill: rgba(0, 0, 0, 0.15);
}
svg#CheckoutKangaroo {
  position: absolute;
  width: 84px;
  top: 4px;
  right: 30px;
  transform: rotateY(180deg);
}

@keyframes CheckoutAnim {
  0% {
    border-color: rgba(55, 199, 42, 0.35);
  }
  100% {
    border-color: rgba(55, 199, 42, 0.1);
  }
}

.CheckoutPackages {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.CheckoutPackage.panel {
  padding: 25px 30px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  border-radius: 10px;
  background: rgba(29, 53, 87, 0.05);
}

.CheckoutPackage.panel .buttons {
  position: absolute;
  top: -15px;
  right: -15px;
  border-radius: 100px;
}

.CheckoutPackageInfo {
  display: flex;
  align-items: center;
  gap: 30px;
}

.CheckoutPackageInfo img {
  width: 150px;
  border: none !important;
  background: transparent;
}
div#CheckoutInfo h3 {
  font-family: var(--MinecraftFont);
  color: var(--primarycolor);
}

.CheckoutInsights {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}
.checkout .packages {
  margin-bottom: 0px;
}
div#CheckoutInfo {
  padding: 20px 60px;
}
.CheckoutPrice {
  text-align: right;
}
div#CheckoutInfo h3 small {
  color: var(--primarycolor);
}
.CheckoutPrice p {
  margin-top: -10px;
  font-weight: 600;
}
span.options.hidden-xs {
  display: grid;
}
.package-options {
  display: flex;
  gap: 5px;
}

.CheckoutPackage.panel a.btn.btn-danger.btn-sm {
  background: #fff;
  border: 3px solid var(--dangercolor);
  border-radius: 100px;
  color: var(--dangercolor);
  font-size: 16px;
}
.CheckoutPackage.panel a.btn.btn-danger.btn-sm:hover {
  transform: scale(1.05);
}

.CodesBlock {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.CodesBlock input {
  width: 100%;
  border-radius: 10px;
  background: rgba(29, 53, 87, 0.05);
}
.redeem .btn {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  background: var(--successcolor);
  border: 1px solid var(--successcolor);
}
.CreatorCodeBlock {
  padding-right: 15px;
}
.CreatorCode .btn {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

p.BackToHome a {
  font-weight: 600;
}

/*.RanksTable {*/
/* background: var(--primarycolor);*/
/* border-radius: 15px;*/
/* padding: 20px;*/
/*}*/

div#TableHeader {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.RankRow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  background: var(--primarycolor);
  padding: 0px 30px;
}
.RankRow:last-child {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding-bottom: 30px;
}
.RankInfo {
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  position: relative;
  margin-left: -20px;
  padding: 20px;
}
.RankInfo img {
  width: 100%;
}
.RankInfo .name {
  font-family: var(--MinecraftFont);
  color: #fff;
  font-size: 16px;
}
#TableHeader .RankInfo,
.RanksTable > div:last-child .RankInfo {
  border: none;
}
.RankInfo .btn {
  position: absolute;
  left: 0;
  transform: rotate(-90deg);
  height: max-content;
  width: fit-content;
  padding: 20px 50px 50px;
  font-family: var(--MinecraftFont);
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
  font-size: 24px;
  border-radius: 20px;
  top: 0;
  bottom: 0;
  right: 0px;
  margin: auto;
  z-index: -1000000;
  transition: 0.5s cubic-bezier(1, -0.34, 0.42, 1.6) all, 0.2s color !important;
}
.RankRow:hover .btn {
  left: -250px;
  transition: 0.5s cubic-bezier(1, -0.34, 0.42, 1.6) all, 0.2s color !important;
}
.CommTable .RankRow:hover .btn {
  left: -200px;
}

.RankHomes,
.RankFL,
.RankCC,
.RankCB,
.RankCommands,
.RankStickers,
.RankModPackVotes {
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--displayfont);
  font-size: 18px;
  color: var(--primarycolor);
  font-weight: 700;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.RankCommands {
  padding: 20px 0px;
  display: block;
}
.RankCommands small {
  opacity: 0.5;
  font-size: 78%;
}
div#TableHeader .RankPerk,
div#TableHeader .RankCommands,
#TableHeader .RankModPackVotes {
  background: transparent;
  color: #fff;
  padding: 15px;
  font-size: 18px;
  font-family: var(--displayfont);
  font-weight: 700;
  border: none;
}
.RanksTable > .RankRow:nth-child(2) > div:nth-child(2) {
  border-top-left-radius: 10px;
}
.RanksTable > .RankRow:nth-child(2) > div:last-child {
  border-top-right-radius: 10px;
}
.RanksTable > .RankRow:last-child > div:nth-child(2) {
  border-bottom-left-radius: 10px;
}
.RanksTable > .RankRow:last-child > div:last-child {
  border-bottom-right-radius: 10px;
}

.RankInfo .price {
  font-size: 16px;
  font-weight: 600;
}

.CommTable .RankRow {
  grid-template-columns: repeat(8, 1fr);
}
.CommTable .RankInfo {
  margin-left: -40px;
}
.RankStickers {
  display: grid;
  padding: 20px;
}
.RankStickers img {
  width: 100%;
}
.click-zoom input[type="checkbox"] {
  display: none;
}

.click-zoom img {
  transition: transform 0.25s ease;
  cursor: zoom-in;
}

.click-zoom img:hover {
  transform: scale(2);
  cursor: zoom-out;
}

.modal-header {
  border: none;
  padding: 25px;
  text-align: center;
}
h4.modal-title {
  font-weight: 700 !important;
  color: var(--primarycolor);
  font-size: 24px;
}
.modal-footer {
  padding: 20px;
  background: rgba(0, 0, 0, 0.02);
}

@media (min-width: 1200px) {
  .container {
    width: 1200px;
  }
}

.HomeNav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.HomeNav a {
  border-radius: 10px;
  background: rgba(29, 53, 87, 0.25);
  background: rgba(29, 53, 87, 0.25);
  background-position: center !important;
  height: 375px;
  padding: 30px;
  position: relative;
}
.HomeNav h3 {
  font-family: var(--MinecraftFont);
  font-size: 32px;
  color: #fff;
  text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
  position: relative;
  margin-top: 50%;
}

/* =========================================
   1. TEXT LAYOUT & SIZING
   ========================================= */

/* The two half-boxes (Lifetime & Server Specific) need to wrap their text */
a#community-wideLink h3,
a#server-specific-1Link h3 {
  max-width: 300px; 
}

/* Push Server Specific text to the right side of its box */
a#server-specific-1Link h3 {
  margin-left: auto;
  text-align: right;
  font-size: 32px !important;
}

/* The new full-width banner (Subscription) */
#community-wide-subsLink {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
  text-align: right !important;
}
a#community-wide-subsLink h3 {
  font-size: 48px !important;
  margin-top: 15%;
  position: relative;
  max-width: none; /* Let it stretch out */
}

.KangarooOverlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: url(https://cdn.discordapp.com/attachments/1134448183330746508/1144304634706538536/Untitled-5.png);
  border-radius: 10px;
  opacity: 0.25;
  transition: 0.3s all !important;
}
.HomeNav a:hover .KangarooOverlay {
  opacity: 0.05;
}

/* =========================================
   2. BOX BACKGROUND IMAGES
   ========================================= */

a#server-specific-1Link {
  background: linear-gradient(2deg, rgb(30 53 87 / 60%), rgb(12 21 34 / 56%)),
    url(https://cdn.tebex.io/store/1122389/templates/160595/assets/58dfdd89b7f075a1cad024ebc98c4241bd5b066c.png);
}
a#community-wideLink {
  background: linear-gradient(2deg, rgb(30 53 87 / 60%), rgb(12 21 34 / 56%)),
    url(https://cdn.tebex.io/store/1122389/templates/160595/assets/eaf2d5797d65c25ba892fc30e1d3e32498b3188e.jpeg);
  background-size: cover;
  background-position: top !important;
}
a#community-wide-subsLink {
  background: linear-gradient(2deg, rgb(30 53 87 / 60%), rgb(12 21 34 / 56%)),
    url(https://cdn.tebex.io/store/1122389/templates/160595/assets/c7ef9f70c75b74f65ef2011aa55ae6f7f772eb18.png);
  background-size: cover;
  background-position: top !important;
}
a#other-1Link {
  display: none;
}

.CategoryDesc:before {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-family: var(--displayfont);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

a#community-wideLink .CategoryDesc:before {
  content: "LIFETIME";
  position: absolute;
  top: 5%;
  color: #ffc882;
  right: 6%;
}
a#community-wide-subsLink .CategoryDesc:before {
  content: "SUBSCRIPTION";
  position: absolute;
  top: 5%;
  color: #ffc882;
  left: 6%;
}

/* =========================================
   3. CHARACTER RENDER SIZES & POSITIONS
   ========================================= */

.CategoryIMG:before {
  position: absolute;
  background-size: cover !important;
  content: "";
  display: block;
  width: 225px;
  height: 225px;
  z-index: 9;
  transition: 0.3s all !important;
}

/* Server Specific (Small Box) */
#server-specific-1Link .CategoryIMG:before {
  background: url(https://cdn.tebex.io/store/1122389/templates/160595/assets/ee48b9195d71c3af7975ed9c1059e784307dff19.png);
  width: 225px !important;  /* Force shrink back to standard */
  height: 225px !important; /* Force shrink back to standard */
  left: 10px;
  bottom: -30px;
}
a#server-specific-1Link:hover .CategoryIMG::before {
  transform: rotate(5deg);
}

/* Lifetime (Small Box) */
a#community-wideLink .CategoryIMG:before {
  background: url(https://cdn.tebex.io/store/1122389/templates/160595/assets/c05a0a2c0766b8f493e9e1cde844dcf95d147fa5.png);
  right: 10px;
  bottom: -30px;
  transform: scaleX(-1);
}

/* Subscription (Large Banner) */
a#community-wide-subsLink .CategoryIMG:before {
  background: url(https://cdn.tebex.io/store/1122389/templates/160595/assets/6c27b54354a526ad2f376d04bd9925056305b799.png);
  width: 315px !important;  /* Make it massive to fit the banner */
  height: 315px !important; 
  left: -75px;
  bottom: 0px;
}
a#community-wide-subsLink:hover .CategoryIMG::before {
  transform: rotate(5deg);
}

#guildsLink .CategoryIMG:before {
  background: url(https://cdn.playcdu.co/guilds.png);
  right: 10px;
  bottom: -10px;
  height: 250px;
}
#guildsLink {
  background: linear-gradient(2deg, rgb(30 53 87 / 60%), rgb(12 21 34 / 56%)),
    url(https://cdn.playcdu.co/Images/bg-light.png);
  grid-column-start: 1; /* REMOVE THIS LINE */
  grid-column-end: 3; /* REMOVE THIS LINE */
  height: 250px; /* REMOVE THIS LINE */
  background-position: 69% 53% !important;
}
a#guildsLink h3 {
  margin-top: 15%;
}
span.discount {
  color: #ff6262;
  font-weight: 500;
  text-decoration: line-through;
}

@media (max-width: 786px) {
  .HomeNav {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }
  .HomeNav h3 {
    margin-top: 35% !important;
  }

  /* Make sure Subs drops back down to standard size on mobile */
  #community-wide-subsLink {
    grid-column-start: 1 !important;
    grid-column-end: 1 !important;
    grid-row-start: 1 !important;
    grid-row-end: 1 !important;
  }
  #community-wide-subsLink .CategoryIMG:before {
    width: 200px !important;
    height: 200px !important;
    left: 0 !important;
    bottom: -50px !important;
  }

  .RankRow {
    display: table-row !important;
  }
  .RankRow > div {
    display: table-cell !important;
  }
  .RanksTable {
    width: 100% !important;
    overflow: scroll !important;
  }
  .RankInfo {
    left: 0 !important;
    position: sticky !important;
    background: #1d3557 !important;
  }
  .ServerLink .Icon {
    display: none;
  }
  .RanksTable > .RankRow:last-child > div:nth-child(2) {
    border-bottom-left-radius: 0px;
  }
  .RanksTable > .RankRow:nth-child(2) > div:nth-child(2) {
    border-top-left-radius: 0px;
  }
  .RanksTable > .RankRow:last-child > div:nth-child(1) {
    border-bottom-left-radius: 10px;
  }
  #TableHeader > div:nth-child(1) {
    border-top-left-radius: 10px;
  }
  #TableHeader > div:last-child {
    border-top-right-radius: 10px;
  }
  .RanksTable > .RankRow:nth-child(2) > div:last-child {
    border-top-right-radius: 0px;
  }
  .RanksTabs {
    width: 100% !important;
    overflow: scroll;
  }

  header > div:nth-child(2) {
    padding: 0px 10px !important;
  }
  .HeaderContent {
    flex-direction: column;
    gap: 50px;
  }
  span.servercount {
    bottom: -42% !important;
  }
  a.GetBackHome {
    margin-top: 40px;
  }

  .RankInfo .btn {
    position: relative !important;
    transform: none;
    padding: 15px 42px 10px !important;
    margin-top: 10px;
    font-size: 18px;
    z-index: 100000;
  }

  .CheckoutPackageInfo,
  .footer .container {
    flex-direction: column !important;
  }
  .checkout .coupons .redeem {
    width: 70% !important;
  }

  .SaleBlock {
    color: #1d3557 !important;
    font-weight: 900 !important;
    box-shadow: 4px 4px 0px #9fca45 !important;
    background: #d3fc7e !important;
    padding: 10px 20px !important;
    border-radius: 4px !important;
    margin-bottom: 20px !important;
    left: unset !important;
    position: relative !important;
  }
  .SaleBlock:before {
    display: none !important;
  }

  .GuildPackage {
    display: grid !important;
    justify-content: center !important;
  }
  .PackageBlock img {
    width: 100% !important;
  }

  .GuildsTable  {
    overflow-y: none;
    overflow-x: none;
  }

  .GuildsTable > div  {
    flex-direction: column !important;
  }

 
}

.footer {
  background: rgba(0, 0, 0, 0.05);
  margin: 50px 0px 0px;
  padding: 30px 0px;
}
.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body > [class*="tebex-footer-wrapper"] {
  background: #dee8f2 !important;
  height: auto !important;
  padding: 12px 32px !important;
  font-size: 12px !important;
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.HeaderModules > div {
  display: none;
}
.HeaderModules .donation-goal {
  display: grid;
  max-width: 300px;
  color: #fff;
}
.BottomHeader {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
.BottomHeader:before,
.BottomHeader:after {
  display: none;
}
.GoalProgress p {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 50px;
  margin-top: -30px;
  color: #fff;
}

.accordion li a.toggle {
  font-size: 18px;
  border: none;
  background: transparent;
  font-weight: 600;
  width: 100%;
  display: block;
  text-align: left;
  padding: 10px;
}
.accordion-header {
  margin: 0px;
}
.accordion li {
  padding: 16px 20px;
  background: #fff;
  border-radius: 6px;
}
.accordion p {
  margin: 20px 0px;
}
h2.FAQ {
  font-weight: 800;
  color: #1e3557;
  margin: 50px 0px 20px 20px;
}

.accordion {
  list-style: none;
  padding: 0;
}

.accordion .inner {
  padding-left: 1em;
  overflow: hidden;
  display: none;
}

.accordion li {
  margin: 0.5em 0;
}

.SaleBlock {
  color: #1d3557;
  font-weight: 900;
  position: absolute;
  background: #d3fc7e;
  padding: 10px 20px;
  left: -30px;
  top: 5px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.SaleBlock:before {
  height: 0px;
  width: 100%;
  border-top: 10px solid #bdef57;
  border-left: 8px solid transparent;
  left: 0px;
  bottom: -6px;
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
}

.RecentDonors .donation-goal,
.RecentDonors div#textbox,
.HeaderModules .donorWrapper {
  display: none;
}
.donorWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 999999999;
}

.donorList li {
  display: none;
  padding: 2px 20px;
  border-radius: 12px;
  background-color: #fff;
  margin: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: opacity 2s ease-in-out;
  text-align: center;
}
ul.donorList h2 {
  color: #1f3757;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}
ul.donorList p {
  margin-top: 10px;
  font-size: 12px;
}
.donorList .avatar img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
}
.donorList .info .ign {
  font-size: 16px;
  font-weight: 600;
}

.GuildPackage {
  display: flex;
  justify-content: space-between;
}
.GuildPackage .PackageInfo h2 {
  font-family: var(--MinecraftFont);
  color: var(--primarycolor);
  margin: 0px;
  text-shadow: 1px 3px 1px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 10px;
}
.GuildPackage .PackageInfo span.price {
  color: #e12e3a;
  font-size: 20px;
}

.GuildPackage .PackageInfo span.price small {
  color: #a8602e;
}
.GuildPackage .PackageInfo h4 {
  color: var(--primarycolor);
  text-shadow: 1px 2px 1px rgba(0, 0, 0, 0.15);
  font-size: 24px;
  font-weight: 600;
  margin: 20px 0px 10px;
}
.GuildPackage .PackageInfo .btn {
  text-transform: uppercase;
  font-size: 20px;
  font-family: "Minecrafter";
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2);
  letter-spacing: 2px;
  background: linear-gradient(0deg, #c42430, #ea313c);
  border: 4px solid #f8e6ce;
  color: #f8e6ce;
  padding: 12px;
  box-shadow: 0px 2px 2px rgb(142 75 48 / 34%);
  transition: 0.3s all !important;
}
.GuildPackage .PackageInfo .btn:hover {
  transition: 0.3s all !important;
  color: #fff !important;
  letter-spacing: 6px !important;
}

.PackageBlock img {
  max-width: 200px;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  color: #091526;
  background-color: transparent !important;
}
.navbar-default .navbar-nav > .active > a::before {
  background: #25497c;
}

.GuildsTable {
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-top: 1.875rem;
  padding-inline: 0.25rem;
  overflow-y: hidden;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: auto;
  -ms-overflow-style: auto;
}

.GuildsTable::-webkit-scrollbar {
  display: block;
  height: 8px;
}

.GuildsTable:hover {
  scrollbar-width: auto;
  -ms-overflow-style: auto;
}
.GuildsTable:hover::-webkit-scrollbar {
  display: block;
}

.GuildsTable::-webkit-scrollbar-track {
  background: rgba(29, 53, 87, 0.05);
  border-radius: 4px;
}

.GuildsTable::-webkit-scrollbar-thumb {
  background: var(--textcolor);
  border-radius: 4px;
  opacity: 0.8;
}

.GuildsTable::-webkit-scrollbar-thumb:hover {
  background: var(--primarycolor);
}

.GuildsTable > div {
  display: flex;
  flex-direction: row;
  gap: 30px;
  flex-wrap: nowrap;
}

.LvlInfo {
  background: var(--cardcolor);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  border: none;
  padding: 20px 20px 10px;
  flex: 0 0 auto;
  min-width: 270px;
}
.LvImg img {
  max-width: 150px;
}
.LvlName {
  font-family: var(--MinecraftFont);
  color: var(--primarycolor);
  font-size: 20px;
  margin: 30px 0px 10px;
}
.LvlName span {
  color: var(--textcolor);
  font-size: smaller;
}

.LvlDetails ul {
  list-style: none;
  padding: 0px;
  display: grid;
  gap: 10px;
  text-align: left;
}
.LvlDetails ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.LvlDetails span {
  font-weight: 700;
}
.cross {
  width: 16px;
  height: 16px;
  background: url(https://cdn.tebex.io/store/1122389/templates/160595/assets/710f03882b9e5ec86cba573448e47c5649c154f5.png);
  background-size: cover;
}
.tick {
  width: 16px;
  height: 16px;
  background: url(https://cdn.tebex.io/store/1122389/templates/160595/assets/c21fecbc6cdbd7ea9874d3fcf9b8d414352d768e.png);
  background-size: cover;
}

.alert-Community {
  background: #1d3557 !important;
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 20px;
  font-weight: 600;
  border-radius: 10px;
}
.alert-Community .close {
  right: 10px;
  color: red;
  opacity: 1;
  text-shadow: 0px 1px rgba(0, 0, 0, 0.1);
}

a#server-specific-1Link .CategoryDesc:before {
  content: "LIFETIME";
  position: absolute;
  top: 6%;
  color: #ffc882;
  right: 6%;
}