* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Comic Neue", cursive !important;
}

:root {
  --main-gray-color: #e8e7e7;
  --blue-color: #0d6efd;
  --baby-blue: rgb(96 165 250);
  --green-color: rgba(74 222 128);
  --red-color: rgb(248 113 113);
  --pink-color: rgb(244 114 182);
  --yellow-color: rgb(250 204 21);
  --yellow-dark-color: rgb(234 179 8);
  --orange-color: rgb(253 186 116);
  --purple-color: rgb(146, 51, 234);
  --light-blue: rgba(219 234 254);
}
.particle {
  position: fixed;
  bottom: 0;
  width: 8px;
  height: 8px;
  background: white;
  opacity: 0.7;
  border-radius: 50%;
  animation: floatUp 6s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
  box-shadow: 0 0 2px #fff, 0 0 4px #ddd;
}
@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.9;
  }
  100% {
    transform: translateY(-150px) scale(0.7);
    opacity: 0;
  }
}

.bg-yellow-100 {
  background-color: #fef9c3 !important;
}
.bg-yellow {
  background-color: #ffc100 !important;
  color: white !important;
}
.bg-blue-100 {
  background-color: #dbeafe !important;
}
.bg-pink-100 {
  background-color: #fce7f3 !important;
}
.bg-purple-200 {
  background-color: #e9d5ff !important;
}
.bg-purple-700 {
  background-color: #7e22ce !important;
}
.bg-red-100 {
  background-color: #fee2e2 !important;
}

a.bg-white:hover,
button.bg-white:hover,
.nav-link.bg-white:hover,
a.bg-white:focus,
button.bg-white:focus,
.nav-link.bg-white:focus {
  background-color: #f1f1f1 !important;
  color: #000 !important;
  box-shadow: none !important;
  outline: none !important;
}
.text-purple-700 {
  color: #7e22ce !important;
}
.border-purple-600 {
  border-color: #a855f7 !important;
}
.bg-gradient-to-br {
  background-image: linear-gradient(
    to bottom right,
    #facc15,
    #ef4444,
    #ec4899
  ) !important;
}
.border-4 {
  border-width: 4px !important;
  border-style: solid !important;
}

.border-black {
  border-color: #000 !important;
}
.dropdown-toggle::after {
  display: none !important;
}
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:focus-visible {
  background-color: inherit !important;
  color: #000 !important;
  box-shadow: none !important;
  outline: none !important;
}
.btn-close,
.btn-close:focus,
.btn-close:active {
  background-color: transparent !important;
  border: none !important;
  color: #000 !important;
  opacity: 1 !important;
  box-shadow: none !important;
  outline: none !important;
}

.max-w-md {
  max-width: 28rem !important;
}

.btn-close {
  --bs-btn-close-bg: none !important;
}

.modal-backdrop {
  opacity: 0.8 !important;
}

.fs-7 {
  font-size: 1.125rem !important;
}

.fs-8 {
  font-size: 0.875rem !important;
}

.fs-16 {
  font-size: 16px !important;
}
.w-90 {
  width: 90% !important;
}
.form-control:active,
.form-control:focus,
.form-control:focus-visible {
  box-shadow: none !important;
  border: 1px solid black !important;
}

.bg-violet {
  background-color: #7c3aed70 !important;
}
.bg-purple {
  background-color: #9233ea70 !important;
}

.bg-opacity-30 {
  --bs-bg-opacity: 0.3 !important;
}
.main-gray {
  color: var(--main-gray-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
  filter: blur(12px);
}

.main-gray-bg {
  background-color: var(--main-gray-color);
}
.btn-blue,
.btn-blue:focus,
.btn-blue:active {
  background-color: var(--blue-color) !important;
  color: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  border-color: var(--blue-color) !important;
}
.btn-baby-blue,
.btn-baby-blue:focus,
.btn-baby-blue:active {
  background-color: var(--baby-blue) !important;
  color: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  border-color: var(--baby-blue) !important;
}
.btn-green,
.btn-green:focus,
.btn-green:active {
  background-color: var(--green-color) !important;
  color: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  border-color: var(--green-color) !important;
}
.btn-red,
.btn-red:focus,
.btn-red:active {
  background-color: var(--red-color) !important;
  color: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  border-color: var(--red-color) !important;
}
.btn-pink,
.btn-pink:focus,
.btn-pink:active {
  background-color: var(--pink-color) !important;
  color: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  border-color: var(--pink-color) !important;
}
.btn-yellow,
.btn-yellow:focus,
.btn-yellow:active {
  background-color: var(--yellow-color) !important;
  color: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  border-color: var(--yellow-color) !important;
}

.btn-purple,
.btn-purple:focus,
.btn-purple:active {
  background-color: var(--purple-color) !important;
}
.btn-black,
.btn-black:focus,
.btn-black:active {
  background-color: #000 !important;
  color: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  border-color: #000 !important;
}
.text-orange {
  color: var(--orange-color) !important;
}
.text-baby-blue {
  color: var(--baby-blue) !important;
}
.text-blue {
  color: var(--blue-color) !important;
}
.text-green {
  color: var(--green-color) !important;
}
.text-red {
  color: var(--red-color) !important;
}
.text-pink {
  color: var(--pink-color) !important;
}
.text-yellow {
  color: var(--yellow-color) !important;
}
.text-dark-yellow {
  color: var(--yellow-dark-color) !important;
}
.text-black {
  color: #000 !important;
}

.bg-light-blue {
  background-color: var(--light-blue) !important;
}

.max-w-xl {
  max-width: 56rem !important;
}

.crayon-text {
  text-shadow: 2px 2px #00000022;
  letter-spacing: 1px;
}

.green-neon-hover:hover {
  box-shadow: 0 0 15px #00ff99, 0 0 30px #00ff99 !important;
}

body {
  padding: 0;
  background-color: #fffdf7;
  background-image: url("../images/home_background.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  position: relative;
}
.bg-overlay {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3) !important;
  pointer-events: none;
  z-index: -1;
}
.bg-black {
  background-color: #000 !important;
}

/* body::after{
    content: "";
    display: block;
    background: rgba(0, 0, 0, 0.5);
} */

.navbar-brand img.logo {
  width: 3rem;
  height: auto;
}
.animated-float {
  animation: float 3s ease-in-out infinite;
  will-change: transform;
  transform-origin: center;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.left-widget {
  position: fixed;
  bottom: 30px;
  left: 30px;
}

.left-widget-menu {
  padding: 1rem !important;
  border-radius: 1rem !important;
  width: 260px;
  position: absolute;
  inset: auto auto 10px 0 !important;
  margin: 0px;
  transform: translate(0px, -65px) !important;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
}
.right-widget {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem !important;
  border-radius: 1rem;
  z-index: 40;
  max-width: 260px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  right: 20px;
}
@media (max-height: 750px), (max-width: 768px) {
  .left-widget,
  .right-widget {
    display: none;
  }
}

.features {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  max-width: 47rem;
}
#bonus-silk {
  background-image: url("../images/board2.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  padding: 2rem;
  max-width: 47rem;
}

.news {
  background-color: rgb(15 122 255 / 20%);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  max-width: 47rem;
}

.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}

/* footer {
    position: fixed;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
} */
.bg-equipment,
.bg-equipment-avatar {
  background-size: 100% 100% !important;
  width: 40% !important;
  height: 357px;
}

@media (max-width: 992px) {
  .bg-equipment,
  .bg-equipment-avatar {
    width: 70% !important;
    height: 357px;
  }
}

.itemslot,
.slots {
  width: 40px;
  height: 40px;
}
.itemslot {
  float: left;
}
.shield .itemslot,
.weapon .itemslot {
  margin-bottom: 25px;
  background: url(/image/sro/equipment/clean.png) repeat !important;
}
.head .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_helm.PNG) no-repeat !important;
}
.chest .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_mail.PNG) no-repeat !important;
}
.shoulder .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_shoulderguard.PNG)
    no-repeat !important;
}
.hands .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_gauntlet.PNG)
    no-repeat !important;
}
.legs .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_pants.PNG) no-repeat !important;
}
.foot .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_boots.PNG) no-repeat !important;
}
.earring .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_earring.PNG)
    no-repeat !important;
}
.necklace .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_necklace.PNG)
    no-repeat !important;
}
.lring .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_l_ring.PNG)
    no-repeat !important;
}
.rring .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_r_ring.PNG)
    no-repeat !important;
}
.specdress .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_specialdress.PNG)
    no-repeat !important;
  margin-top: 10px !important;
}
.hat .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_helm.PNG) no-repeat !important;
}
.dress .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_cloth.PNG) no-repeat !important;
}
.attach .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_pandernt.PNG)
    no-repeat !important;
}
.flag .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_plag.PNG) no-repeat !important;
}
.spec .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_extraneous01.PNG)
    no-repeat !important;
}
.bg-equipment-avatar .slots,
.slots {
  width: 23% !important;
  margin-bottom: 3px !important;
}
.slots.right {
  float: right;
  clear: right;
  margin-right: 0;
  margin-left: 10%;
}
.slots.left {
  float: left;
  clear: left;
  margin-left: 0;
  margin-right: 10%;
}
.slots.shield,
.slots.weapon {
  width: 23% !important;
  margin-bottom: 20px !important;
}
.image .itemslot .image {
  margin: 3px;
}
.itemslot .image .qinfo {
  font-size: 9px;
  font-weight: lighter;
  font-style: normal;
  text-shadow: 0 -0.5px #000;
  color: #fff;
  padding: 0;
  float: left;
}
.itemslot .image {
  margin: 3px;
}
.itemslot .image,
.weapon .itemslot .image {
  width: 100%;
  height: 100%;
  float: left;
  padding: 0 !important;
}
.weapon .itemslot .image {
  margin: 2px;
}
.shield .itemslot .image {
  width: 100%;
  height: 100%;
  float: left;
  margin: 2px;
  padding: 0 !important;
}
.itemInfo {
  color: #fff;
  z-index: 80;
  position: absolute;
  left: 34px;
  top: 3px;
  width: 210px;
  background: rgba(88, 98, 170, 0.85);
  border: 2px solid #303d4d;
  padding: 5px;
  display: none;
  line-height: 18px;
  font-size: 10px;
}
.ui-tooltip {
  position: absolute;
  z-index: 9999;
  max-width: 190px;
  padding: 8px !important;
  background: url(/image/sro/equipment/com_bg_tile_tl.PNG) no-repeat !important;
  background-size: 100% 100% !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 1px !important;
}
.ui-tooltip-content {
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 11px !important;
  line-height: 15px;
  font-weight: lighter;
  font-style: normal;
  text-shadow: 1px 1px #000;
  color: #fff;
}
.equip-suit-slot {
  background: url(/image/sro/interface/equipment/equip_slot_specialdress.PNG)
    no-repeat !important;
  margin-top: 10px;
  float: right;
  clear: right;
}
.empty-slot {
  width: 40px !important;
  height: 40px !important;
}
.empty-slot {
  background: url(/image/sro/equipment/clean.png) no-repeat !important;
}
.bg-equipment-avatar .equip-suit-slot {
  background: url(/image/sro/interface/equipment/equip_slot_specialdress.PNG)
    no-repeat !important;
  width: 40px !important;
  height: 40px !important;
  margin-top: 96px;
  float: right;
  clear: right;
}
.equip-suit-slot .image {
  width: 34px !important;
  height: 34px !important;
  margin-left: 2px !important;
  margin-top: 2px !important;
}
div.image span.plus {
  display: block;
  width: 32px;
  height: 32px;
  background: url(/image/sro/equipment/itemplus.png) 0 0;
  -webkit-animation: play 1.8s steps(32) infinite;
  animation: play 1.8s steps(32) infinite;
}
@-webkit-keyframes play {
  to {
    background-position: -1024px;
  }
}
@keyframes play {
  to {
    background-position: -1024px;
  }
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}
.image {
  background-repeat: no-repeat !important;
  background-size: 34px 34px !important;
}
.bg-character {
  background-repeat: no-repeat !important;
  background-size: auto !important;
  background-position: center top !important;
}
#pill-inventory-tab.active,
#pill-inventory-tab.active:focus,
#pill-avatar-tab.active,
#pill-avatar-tab.active:focus {
  background-color: var(--yellow-color) !important;
  color: #fff !important;
}
#pill-avatar-tab.active:hover,
#pill-inventory-tab.active:hover {
  background-color: var(--yellow-dark-color) !important;
  color: #fff !important;
}
