body {
  font-family: "Rubik", sans-serif;
  font-size: 14px;
  color: #AAA;
  background: #0e1318;
  /*background-color: white;*/
}

.content-container {
  padding: 0px;
  border-radius: 3rem;
  box-sizing: content-box;
  /* background: #2e1930; */
  background: #1c1e1e;
}

.content-box-card {
  background-color: #222425;
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.content-box-card.dark {
  border-radius: 2rem;
}

h1 {
  font-size: 24px;
}

h2 {
  font-size: 14px;
}

h3 {
  font-size: 14px;
  color: darkgoldenrod;
}

a {
  color: goldenrod;
  text-decoration: none;
}

a:hover {
  color: white;
  text-decoration: none;
}


/* <<< Header >>> */
header { display:block; width: 100%; position: fixed; top: 0px; left: 0px; z-index: 11; }
header .site-logo { width: 220px; float: left; transition: all 0.3s;  }
header .site-logo h1 { margin: 0px; }
header .site-logo h1 a { font-size: 36px; color: #fff; font-family: "Calibri", Arial, sans-serif; font-weight: 800; text-decoration: none; text-shadow: rgb(3, 3, 3) 0px 2px 5px; transition: all 0.7s ease;  }
header .site-logo h1 a span { color: #ff9000; }
header.smaller { padding: 0px 0px 0px 0px; height: 60px; transition: all 0.3s; background: rgba(0, 0, 0, 0.75); }
header.smaller .site-logo {padding: 13px 0px 0px 0px; }
header.smaller .site-logo h1 { line-height: 30px; }
header.smaller .site-logo h1 a { font-size: 30px;  }

header .bg-black {
  background: #010e11;
  /*background: rgb(42,35,87);*/
  /*background: linear-gradient(90deg, rgba(42,35,87,1) 0%, rgba(62,50,125,1) 44%, rgba(40,31,80,1) 100%);*/
}

.middle{
  position: fixed;
  width: 2px;
  height: 600px;
  margin: 0 auto;
  background-color: rgba(255, 0, 0, 0.25);
}

.knowledge {
  background: rgba(11, 11, 11, 0.75);
  box-sizing: border-box;
}

.knowledge strong {
  color: goldenrod;
}

.knowledge a {
  width: 160px;
}

.navigation.main {
  background-color: black;
}

/* <<< Navigation >>> */
.navigation a {
  font-size: 16px; color: #fff;
  font-family: 'Rubik', sans-serif; font-weight: 400; text-decoration: none;
  -webkit-transition: all 0.3s ease; transition: all 0.3s ease;
  text-align: center;
}

.navigation a.main {
  font-size: 18px;
  width: 127px;
  padding-top: 10px;
  padding-bottom: 10px;
  box-sizing: content-box;
  opacity: 0.8;
  border-bottom: 3px solid transparent;
}

.navigation a.main:hover {
  opacity: 1;
}

.navigation a.main.active {
  border-bottom: 3px solid #ffaa00;
  padding-bottom: 7px !important;
  opacity: 1;
}

.logo {
  object-fit: contain;
  transition: 0.4s;
  /* TODO rework image itself*/
  filter: contrast(110%);
}

#mainlogo {
  width: 220px;
}

.Navigation li span {
  border-bottom: solid 5px #ff9000;
  background: rgba(56,87,122,1);
  background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(56,87,122,1)), color-stop(0%, rgba(56,87,122,1)), color-stop(0%, rgba(56,87,122,1)), color-stop(100%, rgba(44,68,94,1)));
  background: linear-gradient(to bottom, rgba(56,87,122,1) 0%, rgba(56,87,122,1) 0%, rgba(56,87,122,1) 0%, rgba(44,68,94,1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#38577a', endColorstr='#2c445e', GradientType=0 );
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -10;
  opacity: 0;
  transition: all 0.5s ease;
}
.Navigation li:hover span, .Navigation li.active span {
  opacity: 1;
}

header.smaller .Navigation li a { padding: 16px 41px; }
header.smaller .Navigation li { height: 60px; }


/**
* Mobile Navigation
*/

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(17, 17, 17, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2a2a2a;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #ff9000;
}

.navbar-mobile>ul>li {
  white-space: nowrap;
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
  color: #ff9000;
  padding-left: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #ff9000;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

.mobile-nav-container, .mobile-navigation {
  display:none;
}

.mobile-nav-toggle {
  position: absolute;
  font-size: 28px;
  cursor: pointer;
  right: 10px;
  top: 5px;
}

.mobile-nav-toggle .bi {
  color: #c99046;
}

.show-mobile {
  display: none;
}

.knowledge-label {
  margin-top: 22px;
  margin-bottom: 0px;
}

.hide-desktop {
  display: none;
}

.menubar {
  width: 100%;
  height: 60px;
  background-color: black;
}

.menubar img{
  height: 60px;
  margin: 0 auto;
  display: block;
}


.overview {
  max-width: 1644px;
  margin: 8px auto;
  box-sizing: border-box;
}

.top-table{
  margin-bottom: 0px;
  border-bottom: 1px solid #3e4142;
}

.top-table tbody tr{
  background: #343638;
  /*background: #242627;*/
  color: white;
}

.top-table td{
  padding: 2px;
  text-align: center;
}

.top-table .badge {
  font-size: 11px;
  font-weight: normal;
  box-shadow: 0px 0px 0.25em rgb(0 0 0 / 60%);
}

.card-header {
  padding-bottom: 6px;
}


.badge {
  font-size: 10px;
  padding-top: 2px;
  padding-bottom: 1px;
}

.badge-tr {
  padding-left: 3px;
  padding-right: 3px;
}

.badge-td {
  vertical-align: middle;
  text-align: right;
  /*padding: 1px 2px 2px 2px !important;*/

}

.text-bg-warning {
  color: white !important;
  background-color: #cda700 !important;
}

.text-bg-danger {
  background-color: #ab1322 !important;
}

.text-bg-gold {
  background-color: #bd9700;
}

.text-bg-lightgold {
  background-color: #dbb967;
}

.text-bg-info {
  background-color: RGB(0,80,130) !important;
  color: #DDD !important;
}

.werb-row {
  margin-top: 192px;
}

.werb-fullsize {
  margin-top: 64px;
  margin-bottom: 10px;
  box-sizing: border-box;
  width: 728px;
  height: 90px;
  border: lightcoral;
  background-color: darkred;
}

.smbanner-container {
  width: 312px;
  padding: 6px;
}

.werb-smbanner {
  box-sizing: border-box;
  width: 300px;
  height: 57px;
  border: lightcoral;
  background-color: darkred;
  margin: 0 auto;
}

.werb-fullsize.right {
  float: right;
  margin-right: 22px;
}

.werb-fullsize.left {
  float: left;
  margin-left: 22px;
}

.werb-sky-col {
  width: 196px;
}

.werb-sky-col.left {
  padding-left: 0px;
  padding-right: 36px;
}
.werb-sky-col.right {
  padding-left: 36px;
  padding-right: 0px;
}


.werb-sky {
  margin: 0 auto;
  width: 160px;
  height: 600px;
  border: lightcoral;
  background-color: darkred;
}

.werb-rectangle {
  margin: 0 auto;
  width: 300px;
  height: 250px;
  border: lightcoral;
  background-color: darkred;
}

.card {
  box-shadow: 0 0 0.8rem rgba(0, 0, 0, .3);
}


/* ----------------------
# Back to top button
 ---------------------- */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 90px;
  z-index: 996;
  background: #ff9000;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6fc02c;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}



/* ----------------------
#  Server Card
 ----------------------*/
.server-card-container {
  overflow: hidden;
  box-shadow: 0px 0px 18px rgb(0 0 0 / 80%);
  max-width: 250px;
  margin: 0 auto;
  background-color: #000;
  border: none;
}

.server-card-container:hover {
  border-color: goldenrod;
  box-shadow: 0px 0px 14px 0px rgba(172, 169, 39, 0.8);
}

.server-card-container.premium {
  box-shadow: 0 0 0 3px goldenrod;
  border: none;
}



.server-card-container.premium:hover {
  box-shadow: 0 0 0 4px rgb(230, 202, 44), 0px 0px 28px 0px rgb(182, 180, 44, 0.8);
}

.server-card-container.platinum {
  box-shadow: 0 0 0 4px rgb(205, 205, 205), 0px 0px 28px 0px rgba(176, 176, 176, 0.8);
  border: none;
}

.server-card-container.platinum:hover {
  box-shadow: 0 0 0 4px rgb(205, 205, 205), 0px 0px 36px 0px rgba(176, 176, 176, 0.8);
}

a:hover .server-card-container h2 {
  color: rgb(255, 233, 106) !important;
}

.server-card {
  vertical-align: middle;
  height: 100%;
  color: #6c757d;
}

.card-center {
  text-align: center;
}

.features_inputfield input {
  display: none;
}

.server-card .badge {
  vertical-align: text-bottom;
  margin-bottom: 2px;
}

.server-card h1 {
  font-size: 22px;
  color: darkgoldenrod;
  font-weight: bold;
  display: inline;
  margin-right: 15px;
}

.server-card h2 {
  font-size: 18px;
  color: darkgoldenrod;
  width: 100%;
  text-align: center;
}

.overview-title {
  text-align: center;
  margin-top: -5px;
  margin-bottom: 13px;
  font-size: 17px;
}



.servercard-info, .card-rates {
  font-size:8px;
  padding-right: 3px;
  margin-top: -4px;
  margin-right: 40px;
  flex: 1 0 0;
  float: right;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.servercard-info .badge {
  vertical-align: baseline;
  min-width: 56px;
  font-weight: normal;
}

.vote-count {
  position:absolute;
  bottom: 8px;
  right: 0px;
}

.vote-count .badge {
  font-size: 16px;
}

.server-card hr {
  line-height: 10px;
  width: 70%;
  margin: 6px 0px 6px 0px;
  color: lightblue;
}

.features-label{
  margin-left: 11px;
  z-index: 100;
  font-size: 1rem;
}

#features-input {
  height: 37px;
}

.listing-filter {
  background-color: #1a1c1d;
  color: rgb(170, 170, 170);
  border: none;
  border-radius: 8px;
}

.multiselect-dropdown-list div {
  padding: 2px 5px !important;
}
multiselect-dropdown-list div:hover{
  background-color: rgb(255 255 255 / 20) !important;
}

.multiselect-dropdown, .multiselect-dropdown-list-wrapper {
  min-height: 40px !important;
  border-width: 0px !important;
  width: 100% !important;
  padding: 0.2rem 0.25rem 0 0.25rem !important;
  font-size: 1rem !important;
  line-height: 1.5rem !important;
  background-color: #1a1c1d !important;
  color: rgb(170, 170, 170) !important;
  border-radius: 8px !important;
}

.multiselect-dropdown-search {
  background-color: #1a1c1d !important;
}

.multiselect-dropdown:focus, .multiselect-dropdown-list-wrapper:focus {
  outline: 1px solid #2563eb !important;
  outline-offset: 2px !important;
  --tw-ring-offset-width: 0px !important;
  --tw-ring-offset-color: #2563eb !important;
  --tw-ring-color: #2563eb !important;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-width) !important;
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;
  box-shadow: var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow) !important;
  border-color: #2563eb !important;
}

.multiselect-dropdown-list-wrapper {
  box-shadow: #2563eb 0 1px 8px !important;
}

.multiselect-dropdown-list {
  height: 25rem !important;
}

.pr-0 {
  padding-right: 0px;
}

.server-detail-card .badge {
  font-size: 14px;
  vertical-align: baseline;
  padding-top: 4px;
  padding-bottom: 3px;
  font-weight: normal;
  margin: 0px;
}

.bg-yes {
  background-color: #e4ffe0;
  color: green;
}

.dark .bg-yes, .vote-alert.alert-success {
  background-color: #2f492b;
  color: rgb(11, 182, 11);
  border: none;
}

.vote-alert.alert-success p {
  color: rgb(52, 183, 52) !important;
}

.bg-no {
  background-color: #ffe4e4;
  color: #f15c5c;
}

.dark .bg-no, .vote-alert.alert-danger {
  background-color: #573636;
  color: #d11b1b;
  border: none;
}

.vote-alert.alert-danger p {
  color: #db5b5b !important;
}

.badge-tr.premium {
  border-width: 0px !important;
}

.badge-tr.premium a {
  color: goldenrod;
}

.badge-tr td {
  border-top: 1px solid #3e4142;
}

.badge-tr.premium td {
  border-top: 1px solid #615331 !important;
  border-bottom: 1px solid #615331 !important;
  /*background: #332e1c;*/
  background: #3d382c;
}

.badge-tr.platinum td {
  border-top: 1px solid #6b6b6b !important;
  border-bottom: 1px solid #6b6b6b !important;
  /*background: #332e1c;*/
  background: #4f4f4f;

}

.badge-tr.platinum td img {
  -webkit-filter: grayscale(100%) !important; /* Safari 6.0 - 9.0 */
  filter: grayscale(100%) contrast(125%) brightness(135%) !important;
}

.badge-tr.platinum td a {
  color: white;
}


.badge-tr a {
  color: #adadad;
  line-height: 30px;
}

.table>:not(caption)>*>* {
  border-bottom-width: 0px !important;
}

.premium-badge {
  width: 100px;
  position: absolute;
  text-align: center;
  top:15px;
  right: -25px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #d80e29;
  color: #DDD;
  box-sizing: border-box;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

.platinum .premium-badge {
  background: silver;
}

.platinum .premium-badge img {
  -webkit-filter: grayscale(100%) !important; /* Safari 6.0 - 9.0 */
  filter: grayscale(100%) contrast(125%) brightness(135%) !important;
}

.align-center {
  text-align: center;
}

.vote-alert {
  margin: 0 auto;
  max-width: 460px;
}

.vote-alert svg {
  margin-top: 7px;
  margin-right: 17px;
}
.vote-alert p {
  margin:0 auto;
}

.site-logo {
  margin-top: 5px;
}

a.book {
  float: right;
  font-size: 9px;
  margin-right: 24px;
  margin-bottom: -12px;
  margin-top: -1px;
  color: #daa520 !important;
}

.werb-sky-col a.book {
  margin-right: 6px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #444444;
  content: "/";
}

.stage-head {
  padding: 5px;
}

.soulcrystal-table span {
  margin-right: 8px;
  margin-top: 6px;
  border-radius: 50px;
  background-color: #555;
  padding: 6px;
  padding-left: 15px;
  padding-right: 10px;
  display: inline-block;
  color: #DDD;
}

.soulcrystal-table strong {
  margin-left: 6px;
  background-color: lightgreen;
  color: black;
  border-radius: 50px;
  padding-left: 10px;
  padding-right: 10px;
}

.soulcrystal-table h2 {
  margin-top: 22px;
}

.pav-list {
  list-style-type: disc;
  margin-left: 20px;
}

.pav-list li {
  color: #999;
}

.pav-list li strong {
  color: #EEE;
}

.listheader {
  margin-left: 8px;
  font-size: 14px !important;
  line-height: 21px;
  text-align: center;
}

.weapon-sa-td td, .weapon-sa-td th {
  text-align: center;
}

.crystal-red {
  background-color: #EE8888;
  color: black;
}

.crystal-green {
  background-color: #88EE88;
  color: black;
}

.crystal-blue {
  background-color: #88BBEE;
  color: black;
}

.crystal-dual {
  background-color: #ffe09e;
  color: black;
}

.item-title-td {
  color: goldenrod;
}

.footer-description {
  padding: 5px;
  color:#666;
  text-align: center;
  font-size: 11px;
  line-height: 11px;
  font-family: 'Open Sans', sans-serif;
}

.sa-leveling h2 {
  color: goldenrod;
}

.sa-leveling h3 {
  color: darkgoldenrod;
}

.privacy h1 {
  color: goldenrod;
}

.privacy h2 {
  margin-top: 30px !important;
  color: darkgoldenrod;
}

.privacy h3 {
  margin-top: 20px !important;
  color: rgb(165, 120, 4);
  font-weight: bold;
}

.privacy h4 {
  margin-top: 10px !important;
}

.privacy p {
  margin-bottom: 10px !important;
}

.weapon-type {
  white-space: nowrap;
  color: darkgoldenrod;
  font-size: 30px !important;
  font-weight: bold;
  letter-spacing: 1px;
}

.privacy.sa-leveling h3 {
  margin-top: 2px !important;
}

.text-center{
  text-align: center !important;
}

.knowledge-selection table {
  table-layout: fixed;
}

.knowledge-selection a {
  display: inline-block;
  font-size: 10px;
  line-height: 10px;
}

.knowledge-selection a span {
  word-wrap: no-wrap !important;
  display: block;
}


.knowledge-selection a strong {
  font-size: 30px;
  display: block;
  line-height: 36px;
  font-weight: normal;
}

.knowledge-selection.weapons a strong {
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 3px;
}

.dark .detail-card {
  background-color: #303234;
  border-width: 0px;
}

.dark .detail-card p {
  color: #AAA;
}

.dark .feature-label {
  background-color: #393b3d !important;
  color: #AAA;
  border: none;
}




#footer {
  background: #111111;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #1d1d1d;
  border-bottom: 1px solid #2f2f2f;
  padding: 60px 20px 30px 20px;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #2a2a2a;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #ff9000;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #8ed851;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: #ffcc00;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}





.servercard-title {
  position: absolute;
  bottom: 0px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
  background: rgba(0,0,0, 0.8);
  background: linear-gradient(90deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 20%, rgba(0,0,0,0.8) 80%, rgba(0, 0, 0, 0.3) 100%);
  font-size: 17px !important;
  padding-top: 3px;
  padding-bottom: 2px;
}

.servercard-info {
  position: absolute;
  bottom: 0px;
  padding: 4px;
  color: white;
  font-size: 12px;
  margin: 0px;
  margin-bottom: 22px;
  line-height: 15px;

}

.servercard-info .badge {
  border: 1px solid rgba(0,0,0, 0.6);
  padding: 1px 4px 0px 4px;
  margin: 0px;
  min-width: 30px;
  /*box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, .5);*/
  box-shadow: 0px 0px 0.4em rgb(0 0 0 / 70%);
  display: inline-block;
  clear: both;
}

.servercard-info.right {
  right: 0px;
  float:right;
}

.servercard-info.right .badge {
  float: right;
  margin-bottom: 2px;
}

.servercard-info.right .badge:first-child {
  font-size: 13px;
  padding: 1px 5px 1px 5px;
}

.servercard-info.left {
  left: 0px;
}

.server-card-container .server-card {
  text-align: center;
  height: 100px;
  display: flex;
  align-items: center;
  background-color:#EEE;
  color: #888;
}

.detail .server-card-container .server-card {
  height: 120px;
}

.server-card p {
  padding: 2px 6px;
  color: #777 !important;
  font-size: 11px;
  line-height: 13px;
}

.premium .card-body {
  border: none;
  background: linear-gradient(to bottom, #ffeabc, #ffebcb);
}

.premium .card-body p {
  color: #555 !important;
}

.rounded-2xl {
  border-radius: 1rem;
}

.ranking-badge {
  width: 100px;
  position: absolute;
  text-align: center;
  top: -2px;
  right: -38px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 12px;
  padding: 5px 0 1px 0;
  background: rgba(0,0,0, 1);
  color: #DDD;
  box-sizing: border-box;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

.rates-table {
  border-bottom: 1px solid #3e4142;
}

.rates-table th {
  padding: 4.5px;
  font-weight: normal;
}

.rates-table td {
  vertical-align: middle;
  padding: 4.5px;
  color: rgb(170, 170, 170);
  border-top: 1px solid #3e4142;
  background-color: #343638;
}

.rates-table td:first-child, .rates-table th:first-child {
  padding-left: 20px;
}

.rates-table td:last-child, .rates-table th:first-child {
  padding-right: 20px;
}

.server-description {
  color: #AAA;
  font-size: 14px;
  line-height: 16px;
}

.rounded-b {
  border-bottom-right-radius: 0.25rem; /* 4px */
  border-bottom-left-radius: 0.25rem; /* 4px */
}



.info-tr td {
  text-align:center;
  background-color: #343638;
  padding: 4px 0px;
}

.info-tr.last td {
  padding-bottom: 12px;
}

.swordimage-col {
  width: 150px;
  flex: 0 1 150px;
}

.swordimage-col img {
  max-width: 110px !important;
  float: left;
  margin: 0px 20px;
}

#features-input {
  height: 40px;
  overflow: hidden;
}

#features-input option {
  display: none;
}

.main-table {
  margin-top: 16px;
  min-height: 350px;
}


[rel='prev'], [rel='next'] {
  background-color: #1a1c1d !important;
}

.pagination {
  margin: 0 auto;
}

.page-item {
  margin-right: 3px !important;

}

.page-link {
  background-color: #232527 !important;
  border: none;
  box-shadow: 0px 0px 0.2em rgb(0 0 0 / 70%);
  color: goldenrod;
}

.page-link:hover {
  box-shadow: 0px 0px 0.8em rgb(0 0 0 / 90%);
  cursor: pointer;
  color: gold;
}

.active .page-link:hover {
  box-shadow: 0px 0px 0.2em rgb(0 0 0 / 70%);
}

.disabled>.page-link, .disabled>.page-link:hover {
  color: #393c3e !important;
}

.list-body {
  background-color: #2b2b2b;
  padding-top: 0px;
  padding-bottom: 0px;
}

.list-body .grid > a {
  padding: 20px;
}

.filter-container {
  padding: 8px 19px 8px 13px;
  margin-top: 0.25rem !important;
  margin-bottom: -2px;
}

.filter-btn {
  height: 40px;
  background-color: rgb(97, 70, 0);
  color: #CCC;
  border-radius: 8px;
  float: right;
}

.filter-btn:hover {
  background-color: rgb(138, 99, 0);
  color: white;
}

.flex-row {
  display: flex;
  x-justify-content: space-around;
  x-align-items: stretch;
}

.server-flex-col {
  width: 270px;
  flex: 0 0 270px;
}

.flex-auto {
  flex: 1 1 auto;
}

.flex-2 {
  flex: 2;
}

.main-info-desc {
  min-height: 370px;
}

.main-info-desc .text-center {
  background-color: #343638;
  padding: 0px;
  padding-bottom: 8px;
}



.content-ad-col {
  min-width: 300px !important;
  flex: 1;
}

.feature-col {
  flex: 2;
}

.vote-chart-col {
  min-width: 300px;
  max-width: 880px;
  flex: 2;
}

.vote-col{
  flex: 1;
}

.clickout-btn {
  white-space: nowrap;
}

.vote-container {
  padding: 1rem;
  text-align: center;
}

.vote-form {

}

.vote-form > p {
  text-align: center;
  font-size: .75rem;
  line-height: 1rem;
}



/* multi select */
.multiselect-dropdown{
  display: inline-block;
  padding: 2px 5px 0px 5px;
  border-radius: 4px;
  border: solid 1px #ced4da;
  background-color: white;
  position: relative;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 16px 12px;
}
.multiselect-dropdown span.optext, .multiselect-dropdown span.placeholder{
  background-color: rgb(0 0 0 / 70);
  color: white;
  margin-top: 1px;
  margin-right: 4px;
  padding: 4px 8px 4px 8px;
  position: relative ;
  cursor: pointer;
  margin-bottom:2px;
  border-radius: 4px;
  display: inline-block;
}
.multiselect-dropdown span.optext{
  background-color: #2b2b2b;
  color: rgb(170, 170, 170);
  padding: 4px 0.75em 3px 0.75em;

}
.multiselect-dropdown span.optext .optdel {
  float: right;
  margin: 0 -6px 1px 5px;
  font-size: 0.7em;
  cursor: pointer;
  color: #666;
}
.multiselect-dropdown span.optext .optdel:hover { color: #c66;}
.multiselect-dropdown span.placeholder{
  color:#ced4da;
}
.multiselect-dropdown-list-wrapper{
  box-shadow: gray 0 3px 8px;
  z-index: 100;
  padding:2px;
  border-radius: 4px;
  border: solid 1px #ced4da;
  display: none;
  margin: -1px;
  position: absolute;
  top:0;
  left: 0;
  right: 0;
  background: white;
}
.multiselect-dropdown-list-wrapper .multiselect-dropdown-search{
  margin-bottom:5px;
}
.multiselect-dropdown-list{
  padding:2px;
  height: 15rem;
  overflow-y:auto;
  overflow-x: hidden;
}
.multiselect-dropdown-list::-webkit-scrollbar {
  width: 6px;
}
.multiselect-dropdown-list::-webkit-scrollbar-thumb {
  background-color: #bec4ca;
  border-radius:3px;
}

.multiselect-dropdown-list div{
  padding: 5px;
}
.multiselect-dropdown-list input{
  height: 1.15em;
  width: 1.15em;
  margin-right: 0.35em;
  background-color: #222425;
}
.multiselect-dropdown-list div.checked{
}
.multiselect-dropdown-list div:hover{
  background-color: #303234;
}
.multiselect-dropdown span.maxselected {width:100%;}
.multiselect-dropdown-all-selector {border-bottom:solid 1px #999;}

.itemicon {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 8px;
  border-radius: 6px;
  border: 1px solid black;
  box-sizing: content-box;
}

.npc-bar {
  border-bottom: solid 1px black;
  padding: 0px;
  height: 17px;
  width: auto;
  min-width: 130px;
  max-width: 220px;
  margin: 0 auto;
  margin-bottom: 5px;
  border-radius: 3px;

  text-align: center;
  font-size: 13px;
  line-height: 15px;
}

.npc-passives {
  margin: 0 auto;
  text-align: center;
  margin-bottom: 8px;
}

.npc-bar span {
  font-size: 11px;
}

.npc-bar.health {
  background: linear-gradient(#df0000, #910000);
  color: rgb(255, 177, 177);
  margin-top: 4px;
}

.npc-bar.health span{
  color: rgb(233, 138, 138);
}

.npc-bar.mp {
  background: linear-gradient(#007bdf, #0042a5);
  color: rgb(173, 215, 255);
}

.npc-bar.mp span{
  color: rgb(127, 177, 223);
}

.npc-bar.xp {
  background: linear-gradient(#797979, #555555);
  color: rgb(230, 230, 230);
  height: 13px;
  font-size: 11px;
  line-height: 13px;
}

.npc-name h2 {
  margin-top: 0px !important;
}

.npc-title, .npc-name {
  text-align: center !important;
}

.npc-title {
  color: #2ab99a;
  font-size: 10px;
}

.npc-img {
  min-width: 100px;
  max-width: 300px;
  padding: 0px;
  padding-right: 8px;
}

.npc-img.npc-profilepic img {
  border: 1px solid black;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 1);
  border-radius: 10px;
}


.npc-map {
  max-width: 565px;
  max-height: 721px;
  vertical-align: top;
  padding: 0px !important;
  position: relative;
}

.npc-stats {
  width: 100%;
}

.npc-stats td:first-child {
  text-align: right;
  padding-right: 16px;
}

.npc-map-td {
  text-align: center;
  vertical-align: top;
}

.npc-map {
  max-width: 565px;
  margin: 0 auto;
  position: relative;
}

.npc-map-image {
  display: block;
  width: 100%;  
  height: auto;
}

.npc-map-marker {
  position: absolute;
  transform: translate(-50%, -100%);
}

.npc-stats td {
  padding: 0px;
}

.npc-table{
  width: 100%;
}

.npc-table hr {
  margin: 15px auto;
  width: 80%;
}

.npc-passive {
  display: inline-block;
  margin: 0px 2px;
  width: 16px;
  height: 16px;
  border: 1px solid black;
  box-sizing: content-box;
  border-radius: 3px;
}

.npc-active {
  width: 32px;
  height: 32px;
}

.npc-chance-td {
  line-height: 14px;
  padding: 4px;
  color: rgb(190, 190, 190);
}

.npc-chance-td span{
  font-size: 11px;
  color: rgb(140, 140, 140);
}

.npc-empty{
  display: block;
  width: 100%;
  text-align: center;
}

.npc-dropcategory{
  font-size: 11px;
  color: rgb(110, 110, 110);
  display: block;
  width: 100%;
  text-align: center;
}

.npc-nonaggro {
  color:rgb(33, 139, 33);
}

.npc-aggro {
  color:#d11b1b;
}

.item-grade {
  display: inline-block;
  font-size: 8px;
  line-height: 9px;
  border-radius: 3px;
  border: 1px solid #83786a;
  color: #e0d1bd;
  vertical-align: text-top;
  text-align:center;
  margin-left: 2px;

  width: 10px;
  height: 10px;

  white-space: nowrap;

  background: rgb(16,24,16);
  background: linear-gradient(315deg, rgba(16,24,16,1) 0%, rgba(41,52,41,1) 100%);
  font-family: 'Tahoma', sans-serif;
}

.item-grade.hg{
  width: 13px;
}

.knowledge-selection .npcs-main a {
  font-size: 16px;
}

.knowledge-selection .npc-mobs a, .knowledge-selection .npc-raids a {
  font-size: 14px;
}

.knowledge-selection .npc-mobs a span, .knowledge-selection .npc-raids a span {
  font-size: 10px;
  line-height: 14px;
  display: block;
}

.item-selector {
  margin-right: 8px;
  margin-top: 6px;
  border-radius: 10px;
  background-color: #2e2e2e;
  padding: 3px;
  padding-right: 12px;
  display: inline-block;
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, .3);
  font-size: 14px;
}

.item-selector .itemicon {
  margin-right: 4px;
}

.item-list h1 {
  display: block;
  text-align: center;
  font-size: 24px;
  margin-bottom: 12px;
}

.no-drops {
  display: none;
  color: #666;
  padding: 2px 9px 3px 4px;
}

.no-drops .itemicon {
  width: 16px;
  height: 16px;
  margin-right: 2px;
}

.npc-list-hp {
  color: #df0000 !important;
}

.item-stats {
  width: 100%;
}

.item-stats td {
  width: 50%;
}

.item-stats tr td:first-child {
  text-align: right;
  padding-right: 12px;
  color: rgb(108, 117, 125);
}

.item-header {
  display: block;
  text-align: center;
}

.item-header .itemicon {
  margin: 0px;
}



.show-no-drops-items {
  background-color: #56400d;
  color: #AAA;
  border: none;
  border-radius: 5px;
  margin-left: 15px;
  margin-top: 10px;
  margin-bottom: 30px;
  padding: 0px 10px;
  font-size: 12px;
}

.show-no-drops-items:hover {
  background-color: #795a13;
}

.knowledge-selection {
  padding: 5px 8px;
}

.knowledge-selection .item-selector {
  padding-left: 12px;
  margin-top: 2px;
  margin-bottom: 2px;
  line-height: 20px;
  display: inline-block;
}

.item-list-table td {
  text-align: center;
}

.weapon-sa-td.item-detail-page td.crystal-red {
  width: 33.33%;
}
.weapon-sa-td.item-detail-page td.crystal-blue {
  width: 33.33%;
}

.item-stats tr td.item-desc {
  color: rgb(170, 170, 170);
  text-align: center;
}

td.item-setbonus {
  color: rgb(107, 201, 84) !important;
  text-align: center !important;
}

td.item-enchantbonus,  span.item-enchantbonus{
  color: rgb(90, 149, 197) !important;
  text-align: center !important;
}

 td.item-specialability {
  color: rgb(181, 108, 197) !important;
  text-align: center !important;
}

.armor-sets .slot-pdef {
  width: 100px;
  text-align: right;
  padding-right: 10px;
  display: inline-block;
}

.armor-set-table td, .armor-sets tr td {
  background: none;
}

.rates-table.armor-sets td.armor-set-grade {
  background-color: #3a3a3a;
}

.rates-table.armor-sets td.armor-set-name {
  background-color: #2d2d2d;
}

.armor-set-name h3 {
  margin-top: 4px;
  font-weight: bold;
}

.border-t-0 {
    border-top: none !important;
}

.armor-set-table .item-selector img {
  float: left;
}

.armor-sets .card-header {
    background-color: #2d2d2d;
    margin: 3px;
}

.rounded-t-2xl {
  border-radius: 0 !important;
  border-top-left-radius: 1.8rem !important;
  border-top-right-radius: 1.8rem !important;
}

.armor-sets .item-selector>span {
  display: inline-block;
  line-height: 13px;
}

.armor-sets .item-selector > span > i {
  font-size: 11px;
  line-height: 13px;
  margin-left: 4px;
}

.armor-sets .item-selector.single>span {
  margin-top: 8px;
}

.armor-sets .item-selector.duo>span {
  margin-top: 2px;
}

.item-selector.condensed {
  margin-right: 8px;
  margin-top: .5rem;
  border-radius: 6px;
  background-color: #2b2b2b;
  padding: 0px;
  padding-right: 9px;
  display: inline-block;
  width: max-content;
  font-size: 12px;
  word-break: keep-all;
  white-space: nowrap;
  text-align: left;
}

.item-selector.condensed img {
  width: 24px;
  height: 24px;
}

.item-selector.condensed .itemicon {
  margin-right: 2px;
}

.recipe-depth-1 {
  padding-left: 20px;
}

.recipe-depth-2 {
  padding-left: 60px;
}

.recipe-depth-3 {
  padding-left: 90px;
}

.recipe-depth-4 {
  padding-left: 120px;
}

.recipe-depth-5 {
  padding-left: 150px;
}

.recipe-depth-6 {
  padding-left: 180px;
}

.recipe-depth-6 {
  padding-left: 210px;
}

.recipe-requirements-table .item-selector.condensed {
  margin-top: 4px;
}

.recipe-requirements-table strong {
  color: rgb(170, 170, 170);
  font-weight: normal;
  margin-left: 5px;
  margin-right: 5px;
}

.recipe-toggle {
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-top: 3px;
  background-color: #2e2e2e;
  text-align: center;
  cursor: pointer;
  border: 1px solid #b97901;
  border-radius: 2px;
  color: #ea9800;
  font-size: 14px;
  font-family: "Pixel", sans-serif;
  padding-right: 1px;
}

.recipe-toggle.minus {
  line-height: 7px !important;
}

.recipe-toggle.plus {
  line-height: 9px !important;
}

.recipe-toggle.minus:after{
  content:"-";

}

.recipe-toggle.plus:after{
  content:"+";
  line-height: 9px !important;
}

.armor-set-table .item-selector.condensed {
  padding: 2px;
  margin-right: 2px;
  vertical-align: middle;
  margin-top: 0px !important;
}

.armor-set-table .item-selector.condensed img{
  margin-right: 0px;
}

.align-super{
    vertical-align: super !important;
}

.align-bottom{
    vertical-align: text-bottom !important;
}

#knowledge-search {
  padding: 0.25rem 0.5rem;
  background-color: #444;
  border-color: #555;
  text-align: center;
  color: #999;
  border-radius: 10px;
}

#knowledge-search::placeholder {
  color: #222;
}

.w-1\/4 {
  width: 25%
}

.w-2\/3 {
  width: 66.67%
}

.w-1\/3 {
  width: 33.33%
}

.item-version-seperator {
  font-size: 18px;
  margin-left: 12px;
  margin-right: 16px;
  margin-top: 7px;
  margin-bottom: 1.5rem !important;
}

.ml-5 {
  margin-left: 1.5rem;
}

.item-versions .item-selector.condensed {
  display: block;
}

.test-table {
  display: inline-block;
}

.mr-0 {
    margin-right: 0px !important;
}

.recipe-depth-1 > a.item-selector.condensed {
  border: 1px solid #620565;
  box-shadow: 0 0 0.3rem rgba(147, 11, 184, 0.3);
}





.tree, .tree ul, .tree ol {
  list-style: none;
  display: inline-flex;
}
.tree, .tree * {
  margin: 0;
  padding: 0;
}
.tree li {
  display: flex;
  align-items: center;
  position: relative;
}
.tree li::before {
  content: "";
  position: absolute;
}
.tree li::after {
  content: "";
  position: absolute;
}
.tree ul, .tree ol {
  position: relative;
}
.tree ul::before, .tree ol::before {
  content: "";
  position: absolute;
}
.tree a, .tree span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #555;
  background-color: #404040;
  color: goldenrod;
  text-align: center;
  padding: 0 8px;
  width: 120px;
  height: 40px;
  font-size: 14px;
  line-height: 15px;
  border-radius: 8px;
  z-index: 9;
}
.tree > li {
  padding: 0;
}
.tree > li::before, .tree > li::after {
  display: none;
}

.tree.-horizontal, .tree.-horizontal ul, .tree.-horizontal ol {
  flex-direction: column;
}
.tree.-horizontal li {
  flex-direction: row;
  padding-top: 0.4vh;
  padding-bottom: 0.4vh;
  padding-left: 1vw;
  padding-right: 0;
}
.tree.-horizontal li::before {
  left: 0;
  right: unset;
  top: 50%;
  border-top: 3px solid darkmagenta;
  width: 1vw;
}
.tree.-horizontal li::after {
  left: 0;
  border-left: 3px solid darkmagenta;
  border-right: 0;
}
.tree.-horizontal li:last-of-type::after {
  height: 50%;
  top: 0;
}
.tree.-horizontal li:first-of-type::after {
  height: 50%;
  bottom: 0;
}
.tree.-horizontal li:not(:first-of-type):not(:last-of-type)::after {
  height: 100%;
}
.tree.-horizontal ul, .tree.-horizontal ol {
  padding-left: 1vw;
  padding-right: 0;
}
.tree.-horizontal ul::before, .tree.-horizontal ol::before {
  left: 0;
  right: unset;
  top: 50%;
  border-top: 3px solid darkmagenta;
  width: 1vw;
}
.tree.-horizontal > li {
  padding-left: 0;
  padding-right: 0;
}

.tree.-horizontal.-inverse li {
  flex-direction: row-reverse;
  padding-left: 0;
  padding-right: 1vw;
}
.tree.-horizontal.-inverse li::before {
  right: 0;
  left: unset;
}
.tree.-horizontal.-inverse li::after {
  right: 0;
  border-left: 0;
  border-right: 3px solid darkmagenta;
}
.tree.-horizontal.-inverse ul, .tree.-horizontal.-inverse ol {
  padding-left: 0;
  padding-right: 1vw;
}
.tree.-horizontal.-inverse ul::before, .tree.-horizontal.-inverse ol::before {
  right: 0;
  left: unset;
}
.tree.-horizontal.-inverse > li {
  padding-left: 0;
  padding-right: 0;
}

.tree.-horizontal.-centered > li:only-child {
  padding-left: 1vw;
  padding-right: 1vw;
}
.tree.-horizontal.-centered > li:only-child > ul:first-of-type:nth-last-child(2) {
  order: 1;
}
.tree.-horizontal.-centered > li:only-child > ul:first-of-type:nth-last-child(2) li {
  flex-direction: row-reverse;
  padding-left: 0;
  padding-right: 1vw;
}
.tree.-horizontal.-centered > li:only-child > ul:first-of-type:nth-last-child(2) li::before {
  right: 0;
  left: unset;
}
.tree.-horizontal.-centered > li:only-child > ul:first-of-type:nth-last-child(2) li::after {
  right: 0;
  border-left: 0;
  border-right: 3px solid darkmagenta;
}
.tree.-horizontal.-centered > li:only-child > ul:first-of-type:nth-last-child(2), .tree.-horizontal.-centered > li:only-child > ul:first-of-type:nth-last-child(2) ul, .tree.-horizontal.-centered > li:only-child > ul:first-of-type:nth-last-child(2) ol {
  padding-left: 0;
  padding-right: 1vw;
}
.tree.-horizontal.-centered > li:only-child > ul:first-of-type:nth-last-child(2)::before, .tree.-horizontal.-centered > li:only-child > ul:first-of-type:nth-last-child(2) ul::before, .tree.-horizontal.-centered > li:only-child > ul:first-of-type:nth-last-child(2) ol::before {
  right: 0;
  left: unset;
}
.tree.-horizontal.-centered > li:only-child > ul:last-of-type:nth-last-child(1) {
  order: 3;
}
.tree.-horizontal.-centered > li:only-child > *:first-child {
  order: 2;
}

.tree.-vertical, .tree.-vertical ul, .tree.-vertical ol {
  flex-direction: row;
}
.tree.-vertical li {
  flex-direction: column;
  padding-left: 0.5vw;
  padding-right: 0.5vw;
  padding-top: 1vh;
  padding-bottom: 0;
}
.tree.-vertical li::before {
  top: 0;
  bottom: unset;
  left: 50%;
  border-left: 3px solid darkmagenta;
  height: 2vh;
}
.tree.-vertical li::after {
  top: 0;
  border-top: 3px solid darkmagenta;
  border-bottom: 0;
}
.tree.-vertical li:last-of-type::after {
  width: 50%;
  left: 0;
}
.tree.-vertical li:first-of-type::after {
  width: 50%;
  right: 0;
}
.tree.-vertical li:not(:first-of-type):not(:last-of-type)::after {
  width: 100%;
}
.tree.-vertical ul, .tree.-vertical ol {
  padding-top: 1vh;
  padding-bottom: 0;
}
.tree.-vertical ul::before, .tree.-vertical ol::before {
  top: 0;
  bottom: unset;
  left: 50%;
  border-left: 3px solid darkmagenta;
  height: 1vh;
}
.tree.-vertical > li {
  padding-top: 0;
  padding-bottom: 0;
}

.tree.-vertical.-inverse li {
  flex-direction: column-reverse;
  padding-top: 0;
  padding-bottom: 2vh;
}
.tree.-vertical.-inverse li::before {
  top: unset;
  bottom: 0;
}
.tree.-vertical.-inverse li::after {
  bottom: 0;
  border-bottom: 3px solid darkmagenta;
  border-top: 0;
}
.tree.-vertical.-inverse ul, .tree.-vertical.-inverse ol {
  padding-top: 0;
  padding-bottom: 1vh;
}
.tree.-vertical.-inverse ul::before, .tree.-vertical.-inverse ol::before {
  top: unset;
  bottom: 0;
}
.tree.-vertical.-inverse > li {
  padding-top: 0;
  padding-bottom: 0;
}





.tree .single-child > li::after {
  border-left: 0 solid !important;
  border-right: 0 solid !important;
}

.invis-spacer, .invis-spacer::before, .invis-spacer a, .invis-spacer ol::before, .invis-spacer ul::before, .invis-spacer li::before {
  border: none !important;
  background-color: transparent !important;
}

.learned-skill {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px;
  background-color: #1a1a1a;
  border-radius: 10px;
  margin-right: 3px;
  cursor: pointer;
  position: relative;
  width: 44px;
  height: 44px;
}

.learned-skill span {
  font-size: 10px;
  line-height: 10px;
  font-weight: bold;

  color: #999;
  position: absolute;
  bottom: 6px;
  right: 6px;
  padding: 2px 3px 0px 3px;

  background: rgb(0,0,0);
  background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.55) 30%, rgba(0,0,0,0.65) 100%);

  text-align: right;
  border-top-left-radius: 5px;
}

.learned-skill em {
  font-size: 13px;
  color: #FFD700;
}

.skillicon {
  position: absolute;
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  border: 2px solid black;
  box-sizing: content-box;
}

.w-250px {
    width: 250px !important;
}

.mytooltip {
  display: none;
  position: absolute;
  background-color: #222;
  border: 1px solid darkgoldenrod;
  color: #AAA;
  padding: 14px 16px;
  border-radius: 5px;
  font-size: 12px;
  max-width: 380px;
  min-width: 280px;
  z-index: 1000;
}

.mytooltip p {
  margin-right: 35px;
  display: block;
}

.mytooltip .skill-name {
  top: 15px;
  left: 60px;
}
.mytooltip .skill-name b {
  color: goldenrod;
  font-size: 15px;
  line-height: 13px;
}


.skill-number {
  color: goldenrod;
}

.skill-patk {
  color: #da5262;
}

.skill-matk, .skill-mp {
  color: #1886d5;
}

.skill-pdef {
  color: #d97480;
}

.skill-mdef {
  color: #54a4d5;
}

.skill-weapon {
  color: #a73ac0;
}

.skill-armor {
  color: #14b429;
}

.race-container {
  width: 90px !important;
  height: 70px !important;
  background-color: black !important;
  position: relative;
}

.race-container b {
  position: absolute;
  z-index: 3;
  text-shadow: black 0px 0px 7px;
}

.race-bg {
  position: absolute;
  background-position: center;
  z-index: 2 !important;
  opacity: 0.5;
  width: 90px !important;
  height: 70px !important;
}

.rounded-lg {
  border-radius: 1rem !important;
}

.px-2r {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.skill-lvl {
  position: absolute;
  right: 20px;
}

.knowledge-description {
    font-size: 12px;
    margin-bottom: 30px;
}
.knowledge-description li {
    font-size: 12px;
}

.knowledge-description li {
    margin-left: 20px;
}

.knowledge-description h2 {
    margin-top: 20px;
}

.hidden {
    display: none;
}
