@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

.Toast-module__toast {
  width: 360px;
  padding: 10px;
  border-radius: 8px;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.3));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 16px rgba(0,0,0,.3);
  border: 1px solid rgba(0, 0, 0, 0.3);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  animation: Toast-module__toastEnter .3s ease
}

.Toast-module__toast.Toast-module__exit {
  animation: Toast-module__toastExit .3s ease forwards
}

.Toast-module__toast+.Toast-module__toast {
  margin-top: 10px
}

.Toast-module__toast.Toast-module__success .Toast-module__title {
  color: #49d68f
}

.Toast-module__toast.Toast-module__error .Toast-module__title {
  color: #ff5656
}

@media screen and (max-width: 380px) {
  .Toast-module__toast {
      width:100%
  }
}

.Toast-module__icon {
  margin-right: 10px;
  min-width: 24px;
  width: 24px;
  height: 24px;
}

.Toast-module__messageWrapper {
  display: flex;
  flex-direction: column;
  width: 100%
}

.Toast-module__title {
  color: var(--font-color-700);
  font-size: 16px;
  font-weight: 500
}

.Toast-module__message {
  color: var(--font-color-800);
  white-space: pre-wrap
}

@keyframes Toast-module__toastEnter {
  0% {
      transform: translate(100%);
      opacity: 0
  }

  to {
      transform: translate(0);
      opacity: 1
  }
}

@keyframes Toast-module__toastExit {
  0% {
      transform: translate(0);
      opacity: 1
  }

  to {
      transform: translate(calc(100% + 5px));
      opacity: 0
  }
}

.Toasts-module__wrapper {
  position: fixed;
  top: 10px;
  right: 10px;
  max-height: 100vh;
  z-index: 400
}

@media screen and (max-width: 380px) {
  .Toasts-module__wrapper {
      left:10px
  }
}

#root{
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
}

:root {
  --default-font-size: 14px;
  --default-font-family: "Poppins";
  --safe-padding: 16px;
  --promocode-bg-color: #1d1b1af7;
  --accent-color-800: #cd422a;
  --accent-color-transparent-800: rgba(205, 66, 42, 0.5);
  --accent-color-900: #af3723;
  --font-color-700: var(--font-color-700);
  --font-color-800: rgba(255, 255, 255, .7);
  --font-color-900: #7b7b7b;
  --bg-color-800: #212529;
  --bg-color-900: #1d1b1a;
  --bg-color-700: #343a40;
  --monitoring-joining-color: #e77725;
  --monitoring-queue-color: #ff5047;
  --product-items-trans-bg-color: rgba(0, 0, 0, .4)
}

:root[data-theme=yellow_black], :root[data-theme=yellow_white]{
  --accent-color-800: #2c2c2c;
  --accent-color-transparent-800: rgba(44, 44, 44, 0.5);
  --accent-color-900: #2c2c2c;
  --font-color-700: rgba(255, 255, 255, .9);
  --font-color-800: rgba(255, 255, 255, .8);
  --font-color-900: #7b7b7b;
  --bg-color-900: #1a1a1a;
  --bg-color-800: #202020;
  --bg-color-700: #2b2b2b; /*#282828*/
  --monitoring-playing-color:  #72ff9c;
  --monitoring-joining-color: #EC9A29;
  --product-items-trans-bg-color: rgba(0, 0, 0, .4);
}

:root[data-theme=blue_black], :root[data-theme=blue_black]{
  --accent-color-800: #2f8be6; /* #5461ff */
  --accent-color-transparent-800: rgba(47, 138, 230, 0.5);
  --accent-color-900: #2977c9;
  --font-color-700: #fff;
  --font-color-800: rgba(255, 255, 255, .7);
  --font-color-900: #7b7b7b;
  --bg-color-900: #1a1a1a;
  --bg-color-800: #202020;
  --bg-color-700: #2b2b2b;
  --monitoring-playing-color:  #2f8be6;
  --monitoring-joining-color: #EC9A29;
  --product-items-trans-bg-color: rgba(0, 0, 0, .4);
}

*,*:before,*:after {
  font-family: var(--default-font-family),ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

*,*:before,*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

a {
  text-decoration: none;
  color: inherit;
  font-weight: inherit;
  font-size: inherit
}

button,input,textarea {
  border: 0;
  outline: 0;
  background-color: transparent;
  color: inherit;
  font-weight: inherit;
  font-size: inherit
}

h1,h2,h3,h4,h5,h6 {
  font-weight: inherit;
  font-size: inherit
}

body {
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  background-color: var(--bg-color-800);
  color: var(--font-color-800);
  font-weight: 400;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  font-size: var(--default-font-size)
}

body::before {
  z-index: 9999;
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-image: url(https://gspics.org/images/2025/02/04/IVD41a.png);
  opacity: 0.3;
  pointer-events: none;
}

body::-webkit-scrollbar {
  display: none;
}

body::-webkit-scrollbar-track {
  background: var(--bg-color-800)
}

body::-webkit-scrollbar-thumb {
  background: var(--bg-color-700);
  box-shadow: inset 0 0 2px rgba(0,0,0,.1)
}

.container {
  width: 1316px;
  padding: 0 var(--safe-padding);
  margin: 0 auto;
}

@media (max-width: 1356px) {
  .container {
      width:100%;
  }
  .Header-module__wrapper{
    width: 100%;
  }
}

.noScroll {
  max-height: 100vh;
  overflow: hidden
}

.errorMessage {
  display: block;
  width: 100%;
  text-align: center;
  margin: 20px 0;
  font-size: 16px;
  color: var(--font-color-700)
}

.boxHeader,.boxBody,.boxFooter {
  padding: 16px;
}

.Shop-module__wrapper > .boxBody {
  padding: 0;
}

.boxHeader {
  background: var(--bg-color-700);
  border-radius: 2px 2px 0 0
}

.boxBody {
  background: var(--bg-color-900);
}

.boxBody:last-child {
  border-radius: 0 0 2px 2px
}

.Shop-module__wrapper > .boxFooter {
  background: var(--bg-color-700);
  border-radius: 16px;
  margin-top: 16px;
  overflow: hidden;
}

.dropDownWrapper {
  position: relative
}

.dropDownCurrentItem {
  width: 100%;
  background-color: var(--bg-color-700);
  cursor: pointer;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  white-space: nowrap;
  font-size: 16px;
  outline: 1px solid transparent;
  transition: all .3s ease
}

.dropDownCurrentItem:hover,.dropDownCurrentItem:focus {
  outline: 1px solid var(--accent-color-800)
}

.dropDownCurrentText {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.dropDownList {
  width: 100%;
  margin-top: 2px;
  position: absolute;
  top: 100%;
  background: var(--bg-color-700);
  box-shadow: 0 10px 16px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);
  padding: 8px;
  border-radius: 5px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 60
}

.dropDownList::-webkit-scrollbar {
  width: 10px
}

.dropDownList::-webkit-scrollbar-track {
  background: var(--bg-color-800)
}

.dropDownList::-webkit-scrollbar-thumb {
  background: var(--bg-color-700);
  box-shadow: inset 0 0 2px rgba(0,0,0,.2)
}

.dropDownList.dropDownListOpenOnTop {
  top: unset;
  bottom: 100%;
  transform: translateY(3px) scale(.94);
  margin-bottom: 2px
}

.dropDownItem {
  width: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 8px 12px;
  color: var(--font-color-700);
  border-radius: 5px;
  text-align: left;
  transition: all .3s ease
}

.dropDownItem+.dropDownItem {
  margin-top: 2px
}

.dropDownItem:hover,.dropDownItem:focus,.dropDownItem.active {
  background-color: var(--accent-color-900)
}

.productModalImg {
  width: 100%;
  max-width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 8px
}

.bpBgModalImg {
  background-image: url(https://gamestores.app/img/games/rust/blueprintbase.png);
  background-size: contain;
  background-repeat: no-repeat
}

.productModalDescription {
  list-style: inside;
  text-align: left;
  padding: 16px;
  margin-bottom: 10px;
  background-color: transparent;
  color: rgba(255,255,255, 0.75);
}

.productModalDescription a {
  color: var(--accent-color-800);
  cursor: pointer;
  transition: all .3s ease
}

.productModalDescription a:hover {
  color: var(--accent-color-900)
}

.productModalForm {
  margin-bottom: 16px
}

.productModalFormRow {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(0%,1fr));
  gap: 16px;
  margin-bottom: 16px
}

@media screen and (max-width: 460px) {
  .productModalFormRow {
      grid-template-columns:repeat(1,1fr)
  }
}

.productModalProductAvailability {
  color: var(--font-color-800);
  display: block;
  text-align: center;
  font-weight: 500;
  margin-bottom: 0px;
  margin-top: 8px;
}

.productModalGiveText {
  color: #d22727;
  display: none;
  text-align: center;
  font-weight: 500
}

.productModalContainsTitle {
  width: 100%;
  text-align: left;
  display: block;
  font-weight: 500;
  margin-bottom: 6px
}

.productModalContainsItems {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(188px,1fr));
  gap: 16px;
  margin-bottom: 16px
}

.productModalContainsItem {
  border-radius: 2px;
  background-color: var(--bg-color-700);
  padding: 10px;
  position: relative;
  display: flex;
  align-items: center
}

.productModalItemInfo {
  display: flex;
  flex-direction: column;
  max-width: 100%;
  overflow: hidden
}

.productModalItemCount {
  color: var(--font-color-900);
  text-align: start
}

.productModalItemName {
  width: 100%;
  text-align: start;
  color: var(--font-color-800);
  font-size: 16px;
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.productModalItemImg {
  width: 40px;
  height: 40px;
  margin-right: 8px;
  object-fit: contain
}

.skeletonWrapper {
  position: relative;
  overflow: hidden
}

.skeletonWrapper:after {
  top: 0;
  left: 0;
  bottom: 0;
  content: "";
  position: absolute;
  width: 300%;
  height: 100%;
  background: linear-gradient(90deg,transparent 20%,hsla(0,0%,39%,.1) 50%,transparent 80%);
  animation: .7s ease-out infinite skeletonLoaderKeyframes
}

@keyframes skeletonLoaderKeyframes {
  0% {
      transform: translate(-100%)
  }

  to {
      transform: translate(100%)
  }
}

.customModalWrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(15,15,15,.5);
  z-index: 240;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease,visibility .3s step-end
}

.customModalWrapper.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity .3s ease,visibility 0s step-end
}

.customModalWrapper.active .customModalContent {
  transform: scale(1)
}

.customModalOverflow {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch
}

.customModalOverflow::-webkit-scrollbar {
  width: 16px
}

.customModalOverflow::-webkit-scrollbar-track {
  background: var(--bg-color-800)
}

.customModalOverflow::-webkit-scrollbar-thumb {
  background: var(--bg-color-700);
  box-shadow: inset 0 0 2px rgba(0,0,0,.1)
}

@media screen and (max-width: 760px) {
  .customModalOverflow::-webkit-scrollbar {
      width:0
  }
}

.customModalPosition {
  min-height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: 0 var(--safe-padding) 0 var(--safe-padding)
}

.customModalContent {
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 2px;
  width: 360px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1);
  transform: scale(.97);
  transition: transform .3s ease
}

.Button-module__btn {
  cursor: pointer;
  border-radius: 8px;
  padding: 7px 13px;
  border: 1px solid transparent;
  transition: all .3s ease;
  width: calc(50% - 8px);
}

.Button-module__btn:active {
  scale: 0.95;
}

.Button-module__btn.Button-module__accent {
  color: var(--font-color-700);
  background-color: var(--accent-color-800);
  border-color: var(--accent-color-800)
}

.Button-module__btn.Button-module__accent:hover,.Button-module__btn.Button-module__accent:focus {
  background-color: var(--accent-color-900);
  border-color: var(--accent-color-900)
}

.Button-module__btn.Button-module__gray {
  color: var(--font-color-800);
  background-color: var(--bg-color-700);
  border-color: var(--bg-color-900)
}

.Button-module__btn.Button-module__gray:hover,.Button-module__btn.Button-module__gray:focus {
  background-color: var(--bg-color-800)
}

.Button-module__btn.Button-module__disabled {
  opacity: .7;
  cursor: wait
}

.ProfileNav-module__wrapper {
  min-width: 264px;
  max-width: 264px;
  border-radius: 16px;
  overflow: hidden;
  margin-right: 20px;
}

@media screen and (max-width: 970px) {
  .ProfileNav-module__wrapper {
      margin-right:0;
      max-width: initial;
      margin-bottom: 20px;
      width: 100%
  }
}

.ProfileNav-module__wrapper.ProfileNav-module__rightSide {
  margin-right: 0;
  margin-left: 20px
}

@media screen and (max-width: 970px) {
  .ProfileNav-module__wrapper.ProfileNav-module__rightSide {
      margin-right:0;
      margin-left: 0;
      max-width: initial;
      width: 100%
  }
}

.ProfileNav-module__header {
  display: none;
  align-items: center;
  flex-direction: column
}

.ProfileNav-module__img {
  width: 128px;
  height: 128px;
  margin-bottom: 16px;
  border-radius: 9999px;
}

.ProfileNav-module__name {
  font-size: 16px
}

.ProfileNav-module__body {
  display: flex;
  flex-direction: column
}

.ProfileNav-module__navItem {
  cursor: pointer;
  background: var(--bg-color-700);
  border-radius: 8px;
  padding: 8px 16px;
  color: var(--font-color-900);
  transition: all .3s ease
}

.ProfileNav-module__navItem:hover,.ProfileNav-module__navItem:focus,.ProfileNav-module__navItem.ProfileNav-module__active {
  color: var(--font-color-800);
  background: var(--bg-color-800)
}

.ProfileNav-module__navItem + .ProfileNav-module__navItem {
  margin-top: 8px;
}

.ProfileNav-module__logOut {
  text-align: center;
  display: block;
  border-radius: 8px;
  width: 100%;
  padding: 7px;
  color: var(--font-color-800);
  background: var(--accent-color-800)
}

.ProfileNav-module__logOut:hover,.ProfileNav-module__logOut:focus {
  color: var(--font-color-800);
  background: var(--accent-color-900)
}

.Selector-module__dropDownWrapper {
  width: 100%;
  position: relative
}

.Selector-module__dropDownCurrentItem {
  width: 100%;
  background-color: var(--bg-color-700);
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  white-space: nowrap;
  font-size: 16px;
  outline: 1px solid transparent;
  transition: all .3s ease
}

.Selector-module__dropDownCurrentItem:hover,.Selector-module__dropDownCurrentItem:focus {
  outline: 1px solid var(--accent-color-800)
}

.Selector-module__dropDownCurrentText {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}

.Selector-module__dropDownList {
  width: 100%;
  position: absolute;
  background: var(--bg-color-700);
  box-shadow: 0 10px 16px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);
  padding: 8px;
  border-radius: 8px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 60
}

.Selector-module__dropDownList::-webkit-scrollbar {
  width: 10px
}

.Selector-module__dropDownList::-webkit-scrollbar-track {
  background: var(--bg-color-800)
}

.Selector-module__dropDownList::-webkit-scrollbar-thumb {
  background: var(--bg-color-700);
  box-shadow: inset 0 0 2px rgba(0,0,0,.2)
}

.Selector-module__dropDownList.Selector-module__openOnTop {
  margin-bottom: 2px;
  bottom: 100%
}

.Selector-module__dropDownList.Selector-module__openOnBottom {
  margin-top: 2px;
  top: 100%
}

.Selector-module__dropDownItem {
  width: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 8px 12px;
  color: var(--font-color-700);
  border-radius: 6px;
  text-align: left;
  transition: all .3s ease
}

.Selector-module__dropDownItem+.Selector-module__dropDownItem {
  margin-top: 2px
}

.Selector-module__dropDownItem:hover,.Selector-module__dropDownItem:focus,.Selector-module__dropDownItem.Selector-module__active {
  background-color: var(--accent-color-900)
}

.Selector-module__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px
}

.ProfileContent-module__wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}

.ProfileContent-module__header {
  display: flex;
  justify-content: flex-start;
  font-size: 17px
}

.ProfileContent-module__body {
  display: flex;
  flex-direction: column
}

.ProfileContent-module__title {
  display: block;
  margin-bottom: 5px
}

.ProfileContent-module__box {
  background-color: var(--bg-color-700);
  border-radius: 8px;
  overflow: hidden;
  padding: 0 4px
}

.ProfileContent-module__infoWrapper {
  margin-bottom: 16px;
}

.ProfileContent-module__infoLine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 10px 12px
}

.ProfileContent-module__infoLine+.ProfileContent-module__infoLine {
  border-top: 1px solid var(--bg-color-800)
}

.ProfileContent-module__inputWrapper {
  display: flex;
  width: 100%;
  height: 36px;
  margin-bottom: 0px;
}

@media screen and (max-width: 680px) {
  .ProfileContent-module__inputWrapper {
      height:auto;
      flex-direction: column
  }
  .ProfileContent-module__usePromoBtn{
    width: 100%;
  }
}

.ProfileContent-module__input {
  width: 100%;
  display: flex;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  padding: 0 16px;
  background: var(--bg-color-700)
}

.ProfileContent-module__usePromoBtn {
  margin-left: 20px;
  height: 36px;
  min-width: 200px
}

@media screen and (max-width: 680px) {
  .ProfileContent-module__usePromoBtn {
      margin-left:0;
      margin-top: 16px
  }
}

.ProfileContent-module__infoLineValue {
  color: var(--font-color-700)
}

.ProfileContent-module__infoLineValue.ProfileContent-module__steamid {
  cursor: pointer;
  color: var(--accent-color-800);
  transition: all .3s ease
}

.ProfileContent-module__infoLineValue.ProfileContent-module__steamid:hover {
  color: var(--accent-color-900)
}

.ProfileContent-module__timedDiscountInfo {
  white-space: pre-wrap;
  padding: 16px;
  background-color: var(--bg-color-700)
}

.Profile-module__wrapper {
  margin-top: 32px;
  display: flex;
  flex: 1;
  align-items: flex-start;
}

@media screen and (max-width: 970px) {
  .Profile-module__wrapper {
      flex-direction: column
  }
}

@media screen and (max-width: 970px) {
  .Profile-module__wrapper.Profile-module__rightSide {
      flex-direction:column
  }
}

.ShopFooter-module__links {
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-transform: uppercase;
  font-weight: 500
}

@media screen and (max-width: 900px) {
  .ShopFooter-module__links {
      flex-direction:column;
      row-gap: 10px
  }
}

.ShopFooter-module__link {
  font-size: 12px;
  padding: 2px 4px;
  color: var(--accent-color-800);
  text-align: center;
  transition: all .3s ease
}

.ShopFooter-module__link:hover {
  color: var(--accent-color-900)
}

.ShopFooter-module__text {
  margin-bottom: 10px;
  text-align: center;
  font-size: 12px
}

.Servers-module__servers {
  display: flex;
  gap: 16px;
  margin: 0;
  margin-bottom: 32px;
  flex-wrap: wrap;
  justify-content: center
}

.Servers-module__servers:empty {
  margin-bottom: 0;
}

.Servers-module__server {
  grid-area: S;
  cursor: pointer;
  color: var(--font-color-900);
  background-color: var(--bg-color-700);
  padding: 8px 16px;
  font-size: 13px;
  border-radius: 8px;
  flex: 1;
  margin: 0px;
  /* margin-top: 0px; */
  min-width: 200px;
  max-width: 300px;
  transition: all .3s ease
}

.Servers-module__server.Servers-module__active,.Servers-module__server:hover,.Servers-module__server:focus {
  background-color: var(--accent-color-800);
  color: var(--font-color-700);
}

.Categories-module__categories {
  display: flex;
  width: 100%;
  margin: 0px;
  font-size: 13px;
  flex-wrap: nowrap;
  overflow-x: scroll;
  overflow-y: hidden;
  justify-content: flex-start;
  margin-bottom: 0px;
  padding-bottom: 8px;
}

.Categories-module__categories::-webkit-scrollbar {
  height: 8px;        /* or height for horizontal scrollbar */
}

.Categories-module__categories::-webkit-scrollbar-track {
  background: var(--bg-color-900);
  border-radius: 8px;
}

.Categories-module__categories::-webkit-scrollbar-thumb {
  background-color: var(--bg-color-700); /* color of the thumb */
  border-radius: 8px;
  border: none;
}

.Categories-module__categories::-webkit-scrollbar-button,
.Categories-module__categories::-webkit-scrollbar-corner {
  display: none;
}

.Categories-module__category {
  cursor: pointer;
  color: var(--font-color-900);
  background-color: var(--bg-color-700);
  padding: 8px 16px;
  border-radius: 8px;
  margin: 0px 5px;
  transition: all .3s ease
}

.Categories-module__category:first-child{
  margin-left: 0px;
}
.Categories-module__category:last-child{
  margin-right: 0px;
}

.Categories-module__category.Categories-module__active,.Categories-module__category:hover {
  background-color: var(--accent-color-800);
  color: var(--font-color-700)
}

.Categories-module__category.Categories-module__enableFocus:focus {
  background-color: var(--accent-color-800);
  color: var(--font-color-700)
}

.Search-module__wrapper {
  width: 100%;
  display: flex;
  height: auto;
  overflow: hidden;
  border-radius: 8px;
  background: var(--bg-color-700);
  margin-top: 8px;
}

.Search-module__iconWrapper {
  height: auto;
  padding: 0 16px;
  background: var(--accent-color-800);
  color: var(--font-color-700);
  border-radius: 8px 0 0 8px;
  display: flex;
  align-items: center;
  justify-content: center
}

.Search-module__icon {
  width: 18px;
  height: 18px
}

.Search-module__icon path {
  stroke: var(--font-color-700)
}

.Search-module__input {
  font-size: 13px;
  width: 100%;
  padding: 8px 16px;
  border-radius: 0px 8px 8px 0px;
}

.Product-module__wrapper {
  display: grid;
  grid-template-areas:
      'I'
      'P'
      'N';
  grid-template-columns: 1fr;
  background: var(--bg-color-700);
  position: relative;
  padding: 10px;
  cursor: pointer;
  border-radius: 8px;
  overflow: visible;
  animation: Product-module__productAnimation .3s ease;
  transition: 0.3s ease;
}

/* Псевдоэлемент с градиентной желтизной до наведения */
.Product-module__wrapper:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0; /* Этот z-index не должен перекрывать другие элементы, как ценники и скидки */
  top: 0;
  left: 0;
  background: transparent;
  background-image: linear-gradient(180deg, var(--accent-color-transparent-800) 0%, transparent 100%);
  background-size: 300% 300%;
  background-repeat: no-repeat;
  background-position: 0% 100%;
  border-radius: 8px;
  opacity: 1; /* Градиент виден до наведения */
  
  transition: 0.5s ease;
}

/* Обновленный стиль при наведении */
.Product-module__wrapper:hover:before {
  background-position: 0% 80%;
}

.Product-module__wrapper:hover {
  scale: 1.03;
  z-index: 80;
}

/* Стили иконки и других элементов при наведении */
.Product-module__wrapper:hover .Product-module__count,
.Product-module__wrapper:active .Product-module__count {
  opacity: 1;
}

.Product-module__wrapper:hover .Product-module__img {
  scale: 0.9;
  opacity: 1;
  filter: brightness(1.5); /* Можно добавить яркость для эффекта желтизны */
}

.Product-module__wrapper:hover .Product-module__name,
.Product-module__wrapper:active .Product-module__name {
  opacity: 1;
}

.Product-module__price,.Product-module__discount,.Product-module__name,.Product-module__count {
  position: absolute;
}

.Product-module__price {
  grid-area: P;
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  top: auto;
  left: auto;
  background-color: rgba(0,0,0,0);
  padding: 3px 6px;
  border-radius: 0;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  line-height: 1;
  align-items: center;
}

.Product-module__oldPrice {
  line-height: 1;
  font-size: 14px;
  position: relative;
  margin-right: 0;
  margin-left: 6px;
  color: #696969;
  align-self: flex-end;
  font-weight: 600;
}

.Product-module__oldPrice:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #696969;
  top: 50%;
  left: 0;
  transform: translateY(-50%)
}

.Product-module__discount {
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  line-height: 18px;
  background-color: var(--accent-color-800);
  color: var(--font-color-700);
  padding: 3px 6px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 9999px;
} 

.Product-module__name {
  position: absolute;
  opacity: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  /* backdrop-filter: blur(4px); */
  transition: all .3s ease;
  transform: translateY(0%);
  padding: 16px;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: auto;
  border-radius: 8px;
  background-color: var(--product-items-trans-bg-color);
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  font-weight: 500;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.5);
}

.Product-module__count {
  z-index: 2;
  padding: 0;
  right: 16px;
  bottom: 14px;
  transition: all .3s ease;
  font-weight: 500;
  line-height: 1;
  color: rgba(255, 255, 255, .5);
}

.Product-module__img {
  grid-area: I;
  display: flex;
  object-fit: contain;
  width: 100%;
  aspect-ratio: 1/1;
  scale: 0.8;
  transition: 0.3s ease;
}

@keyframes Product-module__productAnimation {
  0% {
      opacity: 0;
      transform: scale(.8)
  }

  to {
      opacity: 1;
      transform: scale(1)
  }
}

.CountSelector-module__label {
  width: 100%;
  text-align: left;
  display: block;
  font-weight: 500;
  margin-bottom: 6px
}

.CountSelector-module__inputWrapper {
  width: 100%;
  display: flex;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-color-700)
}

.CountSelector-module__input {
  font-size: 16px;
  width: 100%;
  padding: 0 10px
}

.CountSelector-module__changeCountBtn {
  width: 60px;
  height: 100%;
  background: var(--bg-color-700);
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all .3s ease
}

.CountSelector-module__changeCountBtn:active .CountSelector-module__icon {
  transform: translateY(1px)
}

.CountSelector-module__changeCountBtn:hover,.CountSelector-module__changeCountBtn:focus {
  background: var(--bg-color-800)
}

.CountSelector-module__changeCountBtn.CountSelector-module__left {
  border-right: 2px solid var(--bg-color-800)
}

.CountSelector-module__changeCountBtn.CountSelector-module__right {
  border-left: 2px solid var(--bg-color-800)
}

.CountSelector-module__icon {
  width: 76%;
  height: 76%;
  transition: all .3s ease
}

.TotalSum-module__label {
  width: 100%;
  text-align: left;
  display: block;
  font-weight: 500;
  margin-bottom: 6px
}

.TotalSum-module__inputWrapper {
  width: 100%;
  display: flex;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-color-700)
}

.TotalSum-module__currency {
  height: 100%;
  padding: 0 10px;
  background: var(--accent-color-800);
  color: var(--font-color-700);
  line-height: 36px
}

.TotalSum-module__input {
  font-size: 16px;
  width: 100%;
  padding: 0 10px
}

.ActionSelector-module__label {
  width: 100%;
  text-align: left;
  display: block;
  font-weight: 500;
  margin-bottom: 6px
}

.ActionSelector-module__actionSelector {
  width: 100%
}

.ActionSelector-module__icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px
}

.ItemContent-module__label {
  width: 100%;
  text-align: left;
  display: block;
  font-weight: 500;
  margin-bottom: 6px
}

.ItemContent-module__footer {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.ModalLayout-module__wrapper {
  width: 100vw;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(15,15,15,.5);
  z-index: 200
}

.ModalLayout-module__overflowWrapper {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch
}

.ModalLayout-module__overflowWrapper::-webkit-scrollbar {
  width: 16px
}

.ModalLayout-module__overflowWrapper::-webkit-scrollbar-track {
  background: var(--bg-color-800)
}

.ModalLayout-module__overflowWrapper::-webkit-scrollbar-thumb {
  background: var(--bg-color-700);
  box-shadow: inset 0 0 2px rgba(0,0,0,.1)
}

@media screen and (max-width: 760px) {
  .ModalLayout-module__overflowWrapper::-webkit-scrollbar {
      width:0
  }
}

.ModalLayout-module__positionWrapper {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--safe-padding) 0 var(--safe-padding)
}

.ModalLayout-module__modal {
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
  width: 360px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.1),0 8px 10px -6px rgba(0,0,0,.1)
}

.ProductItemSelector-module__label {
  width: 100%;
  text-align: left;
  display: block;
  font-weight: 500;
  margin-bottom: 6px
}

.ProductItemSelector-module__items {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(50px,1fr));
  gap: 8px
}

.ProductItemSelector-module__item {
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 2px;
  height: 60px;
  transition: all .3s ease
}

.ProductItemSelector-module__item.ProductItemSelector-module__active,.ProductItemSelector-module__item:hover,.ProductItemSelector-module__item:focus {
  border: 1px solid var(--accent-color-800)
}

.ProductItemSelector-module__img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.ProductItemSelector-module__serverSelector {
  width: 100%
}

.ProductItemSelector-module__icon {
  width: 20px;
  height: 20px
}

.SelectContent-module__selectorWrapper {
  margin-bottom: 16px
}

.SelectContent-module__label {
  width: 100%;
  text-align: left;
  display: block;
  font-weight: 500;
  margin-bottom: 6px
}

.SelectContent-module__footer {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.KitContent-module__label {
  width: 100%;
  text-align: left;
  display: block;
  font-weight: 500;
  margin-bottom: 6px
}

.KitContent-module__containsItems {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(190px,1fr));
  gap: 20px;
  margin-bottom: 16px
}

.KitContent-module__containsItem {
  border-radius: 2px;
  background-color: var(--bg-color-700);
  padding: 10px;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}

.KitContent-module__itemCount {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 4px 6px;
  background-color: var(--bg-color-800);
  color: var(--font-color-900);
  text-align: start;
  border-top-right-radius: 8px;
}

.KitContent-module__itemName {
  padding: 8px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  text-align: start;
  color: var(--font-color-800);
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: var(--accent-color-transparent-800)
}

.KitContent-module__itemImg{
  width: 64%;
  height: auto;
  object-fit: contain;
  margin: 32px auto 12px auto;
}

.KitContent-module__footer {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.RouletteContent-module__label {
  width: 100%;
  text-align: left;
  display: block;
  font-weight: 500;
  margin-bottom: 6px
}

.RouletteContent-module__lineWrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--bg-color-800);
  display: flex;
  height: 290px;
  align-items: center
}

.RouletteContent-module__triangle {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  width: 0;
  height: 0;
  z-index: 6
}

.RouletteContent-module__triangle.RouletteContent-module__top {
  top: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 24px solid var(--accent-color-800)
}

.RouletteContent-module__triangle.RouletteContent-module__bottom {
  bottom: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 24px solid var(--accent-color-800)
}

.RouletteContent-module__line {
  position: absolute;
  display: flex
}

.RouletteContent-module__rouletteItem {
  border-radius: 2px;
  overflow: hidden;
  background: var(--bg-color-700);
  padding: 8px
}

.RouletteContent-module__rouletteItem+.RouletteContent-module__rouletteItem {
  margin-left: 10px
}

.RouletteContent-module__rouletteItemImg {
  width: 200px;
  height: 200px;
  object-fit: contain
}

.RouletteContent-module__rouletteItemInfo {
  margin-top: 4px;
  display: flex;
  flex-direction: column;
  align-items: center
}

.RouletteContent-module__footer {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.ProductModal-module__command,.ProductModal-module__bp,.ProductModal-module__item,.ProductModal-module__dropdown {
  width: 420px
}

.ProductModal-module__roulette,.ProductModal-module__set {
  width: 900px
}

@media screen and (max-width: 440px) {
  .ProductModal-module__dropdown,.ProductModal-module__item,.ProductModal-module__bp,.ProductModal-module__command {
      width:100%
  }
}

@media screen and (max-width: 940px) {
  .ProductModal-module__set,.ProductModal-module__roulette {
      width:100%
  }
}

.ProductModal-module__header {
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Products-module__wrapper {
  margin-top: 16px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6, minmax(160px, 1fr));
  gap: 16px
}

.Products-module__wrapper.Products-module__grid2 {
  grid-template-columns: repeat(2,minmax(160px,1fr))
}

.Products-module__wrapper.Products-module__grid3 {
  grid-template-columns: repeat(3,minmax(160px,1fr))
}

.Products-module__wrapper.Products-module__grid4 {
  grid-template-columns: repeat(4,minmax(160px,1fr))
}

.Products-module__wrapper.Products-module__grid5 {
  grid-template-columns: repeat(5,minmax(130px,1fr))
}

.Products-module__wrapper.Products-module__grid6 {
  grid-template-columns: repeat(6,minmax(100px,1fr))
}

@media screen and (max-width: 1160px) {
  .Products-module__wrapper.Products-module__grid2,.Products-module__wrapper.Products-module__grid3,.Products-module__wrapper.Products-module__grid4,.Products-module__wrapper.Products-module__grid5,.Products-module__wrapper.Products-module__grid6 {
      grid-template-columns:repeat(auto-fill,minmax(160px,1fr))
  }
}

.Shop-module__wrapper {
  width: 100%;
  margin-top: 64px;
  margin-bottom: 20px;
  border-radius: 16px;
  /* border: 1px solid var(--bg-color-700); */
}

.Shop-module__header {
  display: flex;
  height: 0px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  font-size: 17px;
  padding: 0;
}

.VKWidget-module__wrapper,.VKWidget-module__wrapper iframe {
  width: 100%!important
}

.MonitoringServer-module__wrapper {
  padding: 16px;
  border: 1px solid var(--bg-color-700);
  background-color: var(--bg-color-800);
  border-radius: 16px;
  gap: 8px;
  transition: 0.3s ease;
}

.MonitoringServer-module__container{
  display: flex;
}

.MonitoringServer-module__container:empty {
  display: none;
}

.MonitoringServer-module__wrapper:has(.Servers-module__active) {
  border: 1px solid var(--accent-color-800);
}

.MonitoringServer-module__wrapper+.MonitoringServer-module__wrapper{
  margin-top: 0px;
}

.MonitoringServer-module__name {
  grid-area: N;
  margin-bottom: 0px;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
}

.MonitoringServer-module__name_rate{
  color: var(--font-color-900);
}

.MonitoringServer-module__progressWrapper {
  grid-area: P;
  position: relative;
  width: calc(100% + 32px);
  transform: translateX(-16px);
  margin-top: 8px;
}

.MonitoringServer-module__progressWrapper:hover .MonitoringServer-module__progressInfo {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  transition: transform .3s cubic-bezier(.4,0,.2,1),opacity .3s cubic-bezier(.4,0,.2,1),visibility 0s step-end
}

.MonitoringServer-module__progressInfo {
  z-index: 7;
  position: absolute;
  border-radius: 8px;
  width: 100%;
  padding: 5px 8px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,.3);
  background-color: var(--bg-color-700);
  bottom: 100%;
  left: 0;
  margin-bottom: 5px;
  opacity: 0;
  transform: translateY(5px);
  visibility: hidden;
  transition: transform .3s cubic-bezier(.4,0,.2,1),opacity .3s cubic-bezier(.4,0,.2,1),visibility .3s step-end
}

.MonitoringServer-module__progressInfo:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  rotate: 45deg;
  border-radius: 4px;
  translate: 0px -4px;
  width: 16px;
  height: 16px;
  background: var(--bg-color-700);
  border-style: solid;
  border-color: transparent;
}

.MonitoringServer-module__progressBarWrapper {
  margin-bottom: 0px;
  border-radius: 8px;
  position: relative;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background-color: var(--bg-color-700)
}

.MonitoringServer-module__playersInfo {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 16px
}

.MonitoringServer-module__progressBar {
  border-radius: 2px;
  --online-players: 0%;
  --joining-players: 0%;
  --queued-players: 0%;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(90deg,var(--monitoring-playing-color) var(--online-players),var(--monitoring-joining-color) var(--online-players),var(--monitoring-joining-color) var(--joining-players),var(--monitoring-queue-color) var(--joining-players),var(--monitoring-queue-color) var(--queued-players),transparent var(--queued-players));
  background-repeat: repeat-y;
  border-radius: 9999px;
}

.MonitoringServer-module__progressBarAnim {
  display: none;
}

.MonitoringServer-module__info {
  grid-area: O;
  display: flex;
  justify-self: center;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  padding: 4px 0;
}

/* .MonitoringServer-module__info > span {
  display: flex;
  align-self: center;
  line-height: 1;
} */

.MonitoringServer-module__olineDivider {
  margin: 0 8px;
  color: var(--font-color-800);
  transform: rotate(15deg);
}

.MonitoringServer-module__btns {
  display: flex;
  align-items: center;
}

.MonitoringServer-module__btn, .MonitoringServer-module__link{
  width: clamp(36px, 36px, 36px);
  height: clamp(36px, 36px, 36px);
  background-color: var(--bg-color-700);
  grid-area: C;
  display: flex;
  color: var(--font-color-900);
  justify-content: center;
  align-items: center;
  padding: 4px;
  transition: 0.3s ease;
  border-radius: 8px;
}

.MonitoringServer-module__btn:hover, .MonitoringServer-module__link:hover{
  background-color: var(--accent-color-800);
  color: var(--font-color-700);
}

.MonitoringServer-module__link,.MonitoringServer-module__btn {
  cursor: pointer
}

.MonitoringServer-module__link+.MonitoringServer-module__link,.MonitoringServer-module__link+.MonitoringServer-module__btn,.MonitoringServer-module__btn+.MonitoringServer-module__link,.MonitoringServer-module__btn+.MonitoringServer-module__btn {
  margin-left: 8px;
}

.MonitoringServer-module__icon {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease
}

.MonitoringServer-module__btn:hover .MonitoringServer-module__icon {
  stroke: currentColor;
}

.MonitoringServer-module__icon:hover {
  stroke: currentColor;
}

@keyframes MonitoringServer-module__monitoringAnimation {
  0% {
      background-position: 0 0
  }

  to {
      background-position: 40px 0
  }
}

.Loader-module__loader {
  width: 48px;
  height: 48px;
  border: 5px solid var(--accent-color-800);
  border-bottom-color: var(--bg-color-700);
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  animation: Loader-module__rotation 1s linear infinite
}

@keyframes Loader-module__rotation {
  0% {
      transform: rotate(0)
  }

  to {
      transform: rotate(360deg)
  }
}

.MonitoringWidget-module__header {
  display: none;
  font-size: 17px;
}

.MonitoringWidget-module__updateBtn {
  display: none;
  width: 100%
}

.MonitoringWidget-module__body {
  position: relative;
  transition: all .3s ease;
  border-radius: 8px !important;
}

.MonitoringWidget-module__body.MonitoringWidget-module__isUpdating {
  cursor: wait
}

.MonitoringWidget-module__body.MonitoringWidget-module__isUpdating .MonitoringWidget-module__updatingLoaderWrapper {
  opacity: 1;
  pointer-events: all;
  left: 0;
  transition: opacity .3s ease,left 0s step-end
}

.MonitoringWidget-module__updatingLoaderWrapper {
  z-index: 100;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.2);
  opacity: 0;
  pointer-events: none;
  left: -100%;
  transition: opacity .3s ease,left .3s step-end
}

.Widgets-module__wrapper {
  display: none;
  grid-template-areas:
      'SM'
      'CL';
  grid-template-columns: 1fr;
  min-width: 264px;
  max-width: 264px;
  margin-right: 20px
}

@media screen and (max-width: 970px) {
  .Widgets-module__wrapper {
      margin-right:0;
      max-width: initial;
      margin-top: 20px;
      width: 100%
  }
}

.Widgets-module__wrapper.Widgets-module__rightSide {
  margin-right: 0;
  margin-left: 20px
}

@media screen and (max-width: 970px) {
  .Widgets-module__wrapper.Widgets-module__rightSide {
      margin-right:0;
      margin-left: 0;
      max-width: initial;
      width: 100%
  }
}

.Widgets-module__widgetWrapper {
  grid-area: SM;
  width: 100%
}

.Widgets-module__widgetWrapper+.Widgets-module__widgetWrapper {
  margin-top: 20px
}

.Index-module__wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

@media screen and (max-width: 970px) {
  .Index-module__wrapper {
      flex-direction:column
  }
}

@media screen and (max-width: 970px) {
  .Index-module__wrapper.Index-module__rightSide {
      flex-direction:column
  }

  .Widgets-module__wrapper{
    margin-top: 0px;
  }
}

.Banner-module__img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  user-select: none;
  pointer-events: none;
}

.NavDropDown-module__wrapper {
  position: relative
}

.NavDropDown-module__btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center
}

.NavDropDown-module__btn:hover .NavDropDown-module__linkName,.NavDropDown-module__btn:focus .NavDropDown-module__linkName {
  color: var(--accent-color-800)
}

.NavDropDown-module__btn:hover .NavDropDown-module__icon,.NavDropDown-module__btn:focus .NavDropDown-module__icon {
  fill: var(--accent-color-800)
}

.NavDropDown-module__icon {
  width: 20px;
  height: 20px
}

.NavDropDown-module__linkName {
  cursor: pointer;
  padding: 10px 5px 10px 10px;
  transition: all .3s ease;
  text-transform: uppercase
}

.NavDropDown-module__list {
  margin-top: 2px;
  position: absolute;
  top: 100%;
  left: -10%;
  z-index: 50;
  background: var(--bg-color-700);
  box-shadow: 0 0 16px -3px rgba(0,0,0,.2),0 4px 6px -4px rgba(0,0,0,.2);
  padding: 8px;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(3px) scale(.94);
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease,transform .3s ease,visibility .3s step-end
}

.NavDropDown-module__list.NavDropDown-module__active {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  pointer-events: all;
  transition: opacity .3s ease,transform .3s ease,visibility 0s step-end
}

@media screen and (max-width: 980px) {
  .NavDropDown-module__list.NavDropDown-module__active {
      display:block
  }
}

@media screen and (max-width: 980px) {
  .NavDropDown-module__list {
      margin-top:0;
      position: relative;
      top: 0;
      left: 0;
      display: none;
      background: transparent
  }
}

.NavDropDown-module__link {
  text-transform: initial;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 8px 12px;
  color: var(--font-color-700);
  white-space: nowrap;
  border-radius: 5px;
  text-align: left;
  width: 100%;
  transition: all .3s ease
}

@media screen and (max-width: 980px) {
  .NavDropDown-module__link {
      color:var(--font-color-800)
  }
}

.NavDropDown-module__link+.NavDropDown-module__link {
  margin-top: 2px
}

.NavDropDown-module__link:hover,.NavDropDown-module__link:focus {
  background-color: var(--accent-color-900)
}

.NavServerDropDown-module__wrapper {
  position: relative
}

.NavServerDropDown-module__btn {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center
}

.NavServerDropDown-module__btn:hover .NavServerDropDown-module__shopTitle,.NavServerDropDown-module__btn:focus .NavServerDropDown-module__shopTitle {
  color: var(--accent-color-800)
}

.NavServerDropDown-module__btn:hover .NavServerDropDown-module__icon,.NavServerDropDown-module__btn:focus .NavServerDropDown-module__icon {
  fill: var(--accent-color-800)
}

.NavServerDropDown-module__icon {
  width: 20px;
  height: 20px
}

.NavServerDropDown-module__shopTitle {
  cursor: pointer;
  padding: 10px 5px 10px 10px;
  transition: all .3s ease;
  text-transform: uppercase
}

.NavServerDropDown-module__list {
  margin-top: 2px;
  position: absolute;
  top: 100%;
  left: -2%;
  z-index: 50;
  background: var(--bg-color-700);
  box-shadow: 0 0 16px -3px rgba(0,0,0,.2),0 4px 6px -4px rgba(0,0,0,.2);
  padding: 8px;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(3px) scale(.94);
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease,transform .3s ease,visibility .3s step-end
}

.NavServerDropDown-module__list.NavServerDropDown-module__active {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  pointer-events: all;
  transition: opacity .3s ease,transform .3s ease,visibility 0s step-end
}

@media screen and (max-width: 980px) {
  .NavServerDropDown-module__list.NavServerDropDown-module__active {
      display:block
  }
}

@media screen and (max-width: 980px) {
  .NavServerDropDown-module__list {
      margin-top:0;
      position: relative;
      top: 0;
      left: 0;
      display: none;
      background: transparent
  }
}

.NavServerDropDown-module__server {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 8px 12px;
  color: var(--font-color-700);
  white-space: nowrap;
  border-radius: 5px;
  text-align: left;
  width: 100%;
  transition: all .3s ease
}

@media screen and (max-width: 980px) {
  .NavServerDropDown-module__server {
      color:var(--font-color-800)
  }
}

.NavServerDropDown-module__server+.NavServerDropDown-module__server {
  margin-top: 2px
}

.NavServerDropDown-module__server:hover,.NavServerDropDown-module__server:focus {
  background-color: var(--accent-color-900)
}

.SupportLink-module__link {
  position: relative;
  cursor: pointer;
  padding: 10px;
  transition: all .3s ease
}

.SupportLink-module__link:hover,.SupportLink-module__link:focus {
  color: var(--accent-color-800)
}

.SupportLink-module__supportCount {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--bg-color-800);
  background-color: var(--accent-color-800);
  border-radius: 5px;
  padding: 2px 6px;
  font-size: 12px;
  transform: translate(50%,-50%)
}

.HeaderNav-module__wrapper {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-left: 0px;
  text-transform: uppercase;
  flex-wrap: wrap
}

@media screen and (max-width: 980px) {
  .HeaderNav-module__wrapper {
      display:none
  }
}

.HeaderNav-module__link {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0px;
  padding-right: 10px;
  transition: all .3s ease
}

.HeaderNav-module__link:hover,.HeaderNav-module__link:focus {
  color: var(--accent-color-800)
}

.LangSwitcher-module__wrapper {
  display: flex;
  align-items: center;
  position: relative;
  margin-left: auto;
}

.LangSwitcher-module__wrapper img{
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
.LangSwitcher-module__wrapper img+img{
  z-index: 1;
}

.LangSwitcher-module__wrapper img:first-child{
  position: absolute;
  left: 0;
  filter: blur(4px);
}
.LangSwitcher-module__btn {
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all .3s ease;
  line-height: 1;
}


.LangSwitcher-module__btn:hover,.LangSwitcher-module__btn:focus {
  background-color: transparent;
  color: var(--accent-color-800);
}

.LangSwitcher-module__currentLang {
  cursor: pointer;
  padding: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.LangSwitcher-module__list {
  font-weight: 500;
  z-index: 50;
  margin-top: 2px;
  position: absolute;
  top: 100%;
  left: auto;
  right: -10%;
  background: var(--bg-color-700);
  box-shadow: 0 0 16px -3px rgba(0,0,0,.2),0 4px 6px -4px rgba(0,0,0,.2);
  padding: 8px;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(-3px) scale(.94);
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease,transform .3s ease,visibility .3s step-end
}

.LangSwitcher-module__list.LangSwitcher-module__active {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
  pointer-events: all;
  transition: opacity .3s ease,transform .3s ease,visibility 0s step-end
}

.LangSwitcher-module__lang {
  width: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 8px 12px;
  color: var(--font-color-700);
  white-space: nowrap;
  border-radius: 5px;
  text-align: left;
  transition: all .3s ease
}

.PlayerMenu-module__langSwitcher{
  opacity: 1;
  /* display: none; */
}

.LangSwitcher-module__lang+.LangSwitcher-module__lang {
  margin-top: 2px
}

.LangSwitcher-module__lang:hover,.LangSwitcher-module__lang:focus {
  background-color: var(--accent-color-900)
}

.PlayerBalanceModal-module__header {
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.PlayerBalanceModal-module__form {
  display: flex;
  flex-direction: column;
  align-items: flex-start
}

.PlayerBalanceModal-module__label {
  margin-bottom: 8px;
  font-weight: 500
}

.PlayerBalanceModal-module__inputWrapper {
  width: 100%;
  display: flex;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-color-700)
}

.PlayerBalanceModal-module__currency {
  height: 100%;
  padding: 0 10px;
  background: var(--accent-color-800);
  color: var(--font-color-700);
  line-height: 36px
}

.PlayerBalanceModal-module__input {
  font-size: 16px;
  width: 100%;
  padding: 0 10px
}

.PlayerBalanceModal-module__footer {
  display: flex;
  justify-content: space-between
}

.PlayerBalance-module__btn {
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  white-space: nowrap;
  transition: all .3s ease
}

.PlayerBalance-module__btn span:nth-child(1){
  display: none;
}

.PlayerBalance-module__btn span{
  position: relative;
}

.PlayerBalance-module__btn span img{
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.PlayerBalance-module__btn span img+img{
  z-index: 1;
}

.PlayerBalance-module__btn span img:first-child{
  position: absolute;
  left: 0;
  filter: blur(4px);
}


.PlayerBalance-module__btn:hover,.PlayerBalance-module__btn:focus {
  background-color: transparent;
  color: var(--accent-color-800);
}

.PlayerBalance-module__modal {
  width: 360px
}

@media screen and (max-width: 380px) {
  .PlayerBalance-module__modal {
      width:100%
  }
}

.CrosseCloseBtn-module__btn {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer
}

.CrosseCloseBtn-module__btn:hover .CrosseCloseBtn-module__line,.CrosseCloseBtn-module__btn:focus .CrosseCloseBtn-module__line {
  background-color: var(--accent-color-800)
}

.CrosseCloseBtn-module__line {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--font-color-900);
  transition: all .3s ease
}

.CrosseCloseBtn-module__line:nth-child(1) {
  transform: rotate(45deg)
}

.CrosseCloseBtn-module__line:nth-child(2) {
  transform: rotate(-45deg)
}

.PlayerMenuMobile-module__mobileMenuBtn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  padding: 4px 0;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  margin-left: 20px;
  transform: translateY(-8px);
}

@media screen and (max-width: 980px) {
  .PlayerMenuMobile-module__mobileMenuBtn {
      display:flex
  }
}

.PlayerMenuMobile-module__line {
  width: 80%;
  height: 2px;
  border-radius: 1px;
  background-color: var(--font-color-800)
}

.PlayerMenuMobile-module__menuWrapper {
  overflow-x: hidden;
  overflow-y: auto;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  min-height: 100vh;
  z-index: 100;
  background-color: rgba(15,15,15,.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s cubic-bezier(.4,0,.2,1),visibility .3s step-end
}

.PlayerMenuMobile-module__menuWrapper.PlayerMenuMobile-module__visible {
  opacity: 1;
  transform: translate(0);
  visibility: visible;
  pointer-events: all;
  transition: opacity .3s cubic-bezier(.4,0,.2,1),visibility 0s step-end
}

.PlayerMenuMobile-module__menuWrapper.PlayerMenuMobile-module__visible .PlayerMenuMobile-module__menu {
  transform: scale(1)
}

.PlayerMenuMobile-module__menu {
  position: absolute;
  right: 0;
  top: 0;
  height: 100vh;
  width: min(360px,100vw - 30px);
  display: flex;
  flex-direction: column;
  transform: translate(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1)
}

.PlayerMenuMobile-module__menu .boxBody{
  padding: 16px;
}

.PlayerMenuMobile-module__menu .LangSwitcher-module__btn{
  padding: 10px;
  line-height: 1.5;
}

.PlayerMenuMobile-module__header {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.PlayerMenuMobile-module__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow-y: auto
}

.PlayerMenuMobile-module__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0;
}

.PlayerMenuMobile-module__nav a{
  padding: 8px 0;
  font-size: 14px;
  padding-right: 0px;
  order: 2;
}

.PlayerMenuMobile-module__nav a[href="/"]{
  order: 0;
}

.PlayerMenuMobile-module__nav a[href="/page/rules"]{
  order: 1;
}

.PlayerMenuMobile-module__playerMenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 20px
}

.PlayerMenuMobile-module__langSwitcher,.PlayerMenuMobile-module__balance,.PlayerMenuMobile-module__profileLink,.PlayerMenuMobile-module__loginLink {
  display: none
}

.PlayerMenuMobile-module__profileLink,.PlayerMenuMobile-module__loginLink {
  border-radius: 8px;
  background-color: var(--bg-color-700);
  text-align: center;
  width: 100%;
  padding: 10px;
  transition: 0.3s ease;
}

.PlayerMenuMobile-module__profileLink:hover,.PlayerMenuMobile-module__loginLink:hover {
  background-color: rgba(193, 158, 0, 0.3);
}

.PlayerMenu-module__wrapper {
  order: 4;
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-left: auto;
}

.PlayerMenu-module__profileLink,.PlayerMenu-module__loginLink {
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  white-space: nowrap;
  transition: all .3s ease
}

.PlayerMenu-module__profileLink{
  padding: 0;
  border-radius: 0;
  transition: 0.3s ease;
}

.PlayerMenu-module__profileLink img{
  width: 36px;
  border-radius: 9999px;
  overflow: hidden;
}

.PlayerMenu-module__profileLink:hover{
  scale: 1.05;
}

.PlayerMenu-module__profileLink:hover,.PlayerMenu-module__profileLink:focus,.PlayerMenu-module__loginLink:hover,.PlayerMenu-module__loginLink:focus {
  background-color: transparent;
  color: var(--accent-color-800);
}

.PlayerMenu-module__profileLink:hover,.PlayerMenu-module__profileLink:focus{
    background-color: transparent;
}

.Header-module__wrapper_top {
  position: absolute;
  display: flex;
  align-items: center;
  top: 0;
  width: calc(100% - 32px);
  padding: 18px 0;
  top: -32px;
}

.Header-module__wrapper_top > span {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  margin-right: 16px;
  transform: translateY(1px);
}

.HeaderNav-module__link svg{
  width: 16px;
  height: 16px;
  transition: 0.3s ease;
}

.HeaderNav-module__link svg path{
  fill: var(--font-color-800);
  transition: 0.3s ease;
}

.HeaderNav-module__link:hover svg path{
  fill: var(--accent-color-800);
}

.HeaderNav-module__link[href*="tiktok"] svg{
  stroke: var(--font-color-800);
}

.HeaderNav-module__link[href*="tiktok"]:hover svg{
  stroke: var(--accent-color-800);
}

.Header-module__wrapper {
  background-color: transparent;
  position: relative;
  margin-bottom: 0px;
  margin-top: 32px;
  padding: 0 16px;
  min-height: 80px;
  font-weight: 700;
  width: 1316px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.Header-module__wrapper.Header-module__newYearVibe {
  position: relative
}

.Header-module__wrapper.Header-module__newYearVibe:after {
  pointer-events: none;
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  right: 0;
  bottom: 0;
  left: 0;
  top: -20px;
  background-image: url(https://i122.fastpic.org/big/2023/1213/a0/381951bfe98e71bfe8d71ec691283ea0.webp);
  background-position: center;
  background-repeat: repeat;
  background-size: 240px 100%
}

.Header-module__logoWrapper {
  display: none;
  align-items: center;
  justify-content: center
}

.Header-module__logo {
  font-size: 18px;
  text-transform: uppercase
}

@media screen and (max-width: 980px) {
  .Header-module__nav {
      display:none
  }
}

.Cookie-module__wrapper {
  z-index: 50;
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%);
  padding: 16px;
  border-radius: 2px;
  background-color: var(--bg-color-800);
  display: flex;
  align-items: center;
  box-shadow: 0 0 10px rgba(0,0,0,.3)
}

@media screen and (max-width: 430px) {
  .Cookie-module__wrapper {
      width:calc(100% - 20px);
      justify-content: space-between
  }
}

.Cookie-module__icon {
  width: 30px;
  height: 30px;
  fill: var(--accent-color-800);
  margin-right: 10px
}

.Cookie-module__text {
  margin-right: 30px;
  white-space: nowrap
}

.Cookie-module__button {
  margin-right: 10px;
  text-transform: uppercase
}

.DesktopCopyright-module__wrapper {
  z-index: 0 !important;
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  padding: 2px 4px;
  border-radius: 2px;
  background-color: transparent !important;
  background: transparent !important;
  display: none;
  align-items: center;
  opacity: 1 !important;
  font-size: 12px !important;
  padding: 0px !important;
  content: "Редактируя этот класс имейте ввиду, что если он будет не читабельным вы получите пермаментную блокировку магазина!";
}

.boxFooter .DesktopCopyright-module__wrapper {
  display: flex;
}

@media screen and (max-width: 760px) {
  .DesktopCopyright-module__wrapper {
      display:none;
  }
}

.DesktopCopyright-module__text {
  white-space: nowrap
}

.DesktopCopyright-module__link {
  white-space: nowrap;
  margin-left: 5px;
  color: var(--accent-color-800)
}

.WelcomeSelectServer-module__modalWrapper {
  background-color: rgba(0,0,0,.9);
  z-index: 1000
}

.WelcomeSelectServer-module__modal {
  width: 580px
}

.WelcomeSelectServer-module__header {
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.WelcomeSelectServer-module__description {
  display: block;
  margin-bottom: 20px
}

.WelcomeSelectServer-module__servers {
  margin-bottom: 0px;
  display: grid;
  gap: 10px
}

.Server-module__server{
  padding: 10px;
  border-radius: 16px;
}

.WelcomeSelectServer-module__server {
  width: 100%;
  background-color: var(--bg-color-700);
  padding: 8px 16px;
  border-radius: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.WelcomeSelectServer-module__serverName {
  color: var(--font-color-800)
}

.BGImage-module__img {
  z-index: -1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover
}

.MobileCopyright-module__wrapper {
  z-index: 49!important;
  display: none;
  padding: 10px;
  border-radius: 2px;
  margin: 0 10px 10px;
  background-color: var(--bg-color-800);
  align-items: center;
  opacity: 1!important;
  content: "Редактируя этот класс имейте ввиду, что если он будет не читабельным вы получите пермаментную блокировку магазина!"
}

.MobileCopyright-module__text {
  white-space: nowrap
}

.MobileCopyright-module__link {
  white-space: nowrap;
  margin-left: 5px;
  color: var(--accent-color-800)
}

.Ban-module__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-color-800);
  position: fixed;
  top: 0;
  left: 0
}

.Ban-module__logo {
  font-size: 30px;
  margin-bottom: 30px
}

.Ban-module__red {
  font-size: 30px;
  color: #af3723
}

.Ban-module__title {
  display: block;
  font-size: 20px;
  margin-bottom: 16px
}

.Maintenance-module__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-color-800);
  position: fixed;
  top: 0;
  left: 0
}

.Maintenance-module__logo {
  font-size: 30px;
  margin-bottom: 30px
}

.Maintenance-module__red {
  font-size: 30px;
  color: #af3723
}

.Maintenance-module__title {
  display: block;
  font-size: 20px;
  margin-bottom: 16px
}

.Maintenance-module__subTitle {
  display: block;
  font-size: 14px
}

.InitializingError-module__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: var(--bg-color-800);
  position: fixed;
  top: 0;
  left: 0
}

.InitializingError-module__logo {
  font-size: 30px;
  margin-bottom: 30px
}

.InitializingError-module__red {
  font-size: 30px;
  color: #af3723
}

.InitializingError-module__title {
  display: block;
  font-size: 20px;
  margin-bottom: 16px
}

.InitializingError-module__subTitle {
  display: block;
  font-size: 14px
}

.Page-module__wrapper {
  width: 100%;
  margin-bottom: 20px
}

.Page-module__pageContent a {
  color: var(--accent-color-800);
  cursor: pointer;
  transition: all .3s ease
}

.Page-module__pageContent a:hover {
  color: var(--accent-color-900)
}

.Page-module__header {
  width: 100%;
  font-size: 17px
}

.Page-module__loader {
  width: 48px;
  height: 48px;
  border: 5px solid var(--accent-color-800);
  border-bottom-color: var(--bg-color-700);
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  animation: Page-module__rotation 1s linear infinite
}

.CustomPage-module__wrapper{
  margin-top: 32px;
}

.CustomPage-module__wrapper > .Page-module__wrapper{
  overflow: hidden;
  border-radius: 16px;
}

.CustomPage-module__wrapper .Page-module__header{
  font-size: 20px;
  font-weight: 500;
}

.rules-body > .rules-row:last-child{
  margin-bottom: 0;
}

.rules-row {
  margin-bottom: 2rem;
  border-radius: 8px;
  overflow: hidden;
}

.rules-row.introduction{
  font-weight: 500;
}

.rules-row.player_features .rules-row-header{
  background: #4a6d46;
}
.rules-row.player_rules .rules-row-header{
  background: #6d5d46;
}
.rules-row.player_limit .rules-row-header{
  background: #46626d;
}
.rules-row.player_commands .rules-row-header{
  background: #6d4646;
}

.rules-row-header {
  color: var(--font-color-700);
  text-shadow: rgba(0, 0, 0, 0.1) 0px 1px 0px;
  align-items: center;
  display: flex;
  flex-direction: row;
  padding: 1rem 1.5rem;
  margin: 0px;
  background: var(--accent-color-900);
}

.rules-row-header svg {
  width: 20px;
  height: 20px;
  margin-right: 12px;
}

.rules-row-header > h3 {
  color: inherit;
  padding: 0px;
  font-size: 20px;
  font-weight: 700;
}

.rules-row-body {
  border-top: 0px;
  overflow: hidden;
}

.rules-row-body ul {
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}

.rules-row-body ul li {
  display: flex;
  flex-direction: row;
  padding: 0.5rem 1.5rem;
  color: rgb(186, 177, 168);
  transition: 0.3s ease;
  cursor: pointer;
}

.rules-row-body ul li div{
  transition: 0.3s ease;
}

.rules-row-body ul li:hover {
  box-shadow: inset 0 0 0 4px var(--accent-color-transparent-800);
}
 
.rules-row-body ul li:hover div{
  scale: 1.01;
}

.rules-row-body ul li > span {
  margin-right: 12px;
}

.rules-row-body ul li:nth-of-type(2n) {
  background-color: var(--bg-color-800);
}

.animate-charcter {
  font-weight: 500;
  background: linear-gradient(
        to right,
        #7953cd 20%,
        #00affa 30%,
        #0190cd 70%,
        #764ada 80%
    );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 500% auto;
    animation: textShine 5s ease-in-out infinite alternate;
}

.rules-row-body strong {
  color: var(--accent-color-800);
}

@keyframes textShine {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

@keyframes Page-module__rotation {
  0% {
      transform: rotate(0)
  }

  to {
      transform: rotate(360deg)
  }
}

.CustomPage-module__wrapper {
  display: flex;
  align-items: flex-start
}

@media screen and (max-width: 970px) {
  .CustomPage-module__wrapper {
      flex-direction:column-reverse
  }
}

@media screen and (max-width: 970px) {
  .CustomPage-module__wrapper.CustomPage-module__rightSide {
      flex-direction:column
  }
}

.Pagination-module__pagination {
  width: 100%;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 7px
}

.Pagination-module__navPageBtn,.Pagination-module__page {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: var(--bg-color-700)
}

.Pagination-module__page {
  cursor: pointer;
  background: transparent;
  transition: all .3s ease
}

.Pagination-module__page:hover,.Pagination-module__page.Pagination-module__active,.Pagination-module__page:focus {
  color: var(--accent-color-800)
}

.Pagination-module__navPageBtn {
  cursor: pointer;
  transition: all .3s ease
}

.Pagination-module__navPageBtn:hover,.Pagination-module__navPageBtn:focus {
  border: 1px solid var(--accent-color-800)
}

.Pagination-module__navPageBtn:hover .Pagination-module__pagIcon,.Pagination-module__navPageBtn:focus .Pagination-module__pagIcon {
  stroke: var(--accent-color-800)
}

.Pagination-module__pagIcon {
  transition: all .3s ease;
  width: 20px;
  height: 20px
}

.Pagination-module__left {
  margin-right: 7px
}

.Pagination-module__left .Pagination-module__pagIcon {
  transform: rotate(180deg);
  transition: all .3s ease
}

.Pagination-module__right {
  margin-left: 7px
}

.Pagination-module__right .Pagination-module__pagIcon {
  transition: all .3s ease
}

.HistoryTable-module__wrapper {
  width: 100%
}

.HistoryTable-module__table {
  width: 100%;
  overflow-x: auto
}

.HistoryTable-module__table::-webkit-scrollbar {
  height: 8px;
}

.HistoryTable-module__table::-webkit-scrollbar-thumb {
  background: #EC9A29;
  border-radius: 8px;
}
.HistoryTable-module__table::-webkit-scrollbar-track {
  background: #353535;
  border-radius: 8px;
}

.HistoryTable-module__tableData {
  width: 100%;
  position: relative;
  transition: all .3s ease;
  min-height: 140px
}

@media screen and (max-width: 1180px) {
  .HistoryTable-module__tableData {
      min-width:920px
  }
}

.HistoryTable-module__loader {
  margin: 20px auto
}

.HistoryTable-module__tableHeader {
  background-color: var(--bg-color-700)
}

.HistoryTable-module__tableLine,.HistoryTable-module__tableHeader {
  display: grid;
  grid-template-columns: 1fr 200px 130px;
  gap: 10px;
  align-items: center;
  padding: 14px 12px;
  /* border-radius: 12px; */
}

.HistoryTable-module__tableHeader{
  border-radius: 12px 12px 0 0;
}

.HistoryTable-module__tableLine:last-child{
  border-radius: 0 0 12px 12px;
}

.HistoryTable-module__tableLine:nth-child(2n-1) {
  background-color: var(--bg-color-800)
}

.HistoryTable-module__tableLine:nth-child(2n-1) .HistoryTable-module__skeletonDetail {
  background-color: var(--bg-color-900)
}

.HistoryTable-module__tableLine:nth-child(2n-1) .HistoryTable-module__skeletonDate {
  background-color: var(--bg-color-900)
}

.HistoryTable-module__tableLine:nth-child(2n-1) .HistoryTable-module__skeletonSum {
  background-color: var(--bg-color-900)
}

.HistoryTable-module__tableTitle,.HistoryTable-module__value {
  text-align: center
}

.HistoryTable-module__tableTitle:first-child,.HistoryTable-module__value:first-child {
  text-align: start
}

.HistoryTable-module__tableTitle:last-child,.HistoryTable-module__value:last-child {
  text-align: end
}

.HistoryTable-module__tableTitle {
  color: var(--font-color-900);
  font-size: 16px;
  font-weight: 400
}

.HistoryTable-module__value {
  color: var(--font-color-800);
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all .3s ease
}

.HistoryTable-module__skeletonDetail,.HistoryTable-module__skeletonDate,.HistoryTable-module__skeletonSum {
  border-radius: 6px;
  background-color: var(--bg-color-800)
}

.HistoryTable-module__skeletonDetail {
  width: 100%;
  height: 24px
}

.HistoryTable-module__skeletonDate {
  margin: 0 auto;
  height: 24px;
  width: 80%
}

.HistoryTable-module__skeletonSum {
  height: 24px;
  width: 80%;
  margin-left: auto
}

.HistorySearch-module__wrapper {
  width: 100%;
  display: flex;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-color-700)
}

.HistorySearch-module__iconWrapper {
  height: auto;
  padding: 8px 16px;
  background: var(--accent-color-800);
  color: var(--font-color-700);
  display: flex;
  align-items: center;
  justify-content: center
}

.HistorySearch-module__icon {
  width: 18px;
  height: 18px
}

.HistorySearch-module__icon path {
  stroke: var(--font-color-700)
}

.HistorySearch-module__input {
  font-size: 16px;
  width: 100%;
  padding: 8px 16px;
  color: var(--font-color-800)
}

.HistorySearch-module__input::placeholder {
  color: var(--font-color-900)
}

.HistoryFilters-module__wrapper {
  display: flex;
  margin-bottom: 16px;
  align-items: center
}

.HistoryContent-module__wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}

.HistoryContent-module__header {
  font-size: 17px;
  display: flex;
  justify-content: flex-start
}

.ProfileHistory-module__wrapper {
  display: flex;
  align-items: flex-start
}

@media screen and (max-width: 970px) {
  .ProfileHistory-module__wrapper {
      flex-direction:column
  }
}

@media screen and (max-width: 970px) {
  .ProfileHistory-module__wrapper.ProfileHistory-module__rightSide {
      flex-direction:column
  }
}

.ProfileBasket-module__wrapper {
  display: flex;
  align-items: flex-start
}

@media screen and (max-width: 970px) {
  .ProfileBasket-module__wrapper {
      flex-direction:column
  }
}

@media screen and (max-width: 970px) {
  .ProfileBasket-module__wrapper.ProfileBasket-module__rightSide {
      flex-direction:column
  }
}

.BasketSearch-module__wrapper {
  width: 100%;
  height: auto;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-color-700)
}

.BasketSearch-module__iconWrapper {
  height: auto;
  padding: 8px 16px;
  background: var(--accent-color-800);
  color: var(--font-color-700);
  display: flex;
  align-items: center;
  justify-content: center;
}

.BasketSearch-module__icon {
  width: 18px;
  height: 18px
}

.BasketSearch-module__icon path {
  stroke: var(--font-color-700)
}

.BasketSearch-module__input {
  font-size: 16px;
  width: 100%;
  padding: 8px 16px;
  color: var(--font-color-800)
}

.BasketSearch-module__input::placeholder {
  color: var(--font-color-900)
}

.BasketFilters-module__wrapper {
  display: flex;
  margin-bottom: 16px;
  align-items: center
}

.BasketFilters-module__serverSelector {
  margin-left: 20px
}

.BasketTable-module__wrapper {
  width: 100%
}

.BasketTable-module__table {
  width: 100%;
  overflow-x: auto;
}

.BasketTable-module__table::-webkit-scrollbar {
  height: 8px;
}

.BasketTable-module__table::-webkit-scrollbar-thumb {
  background: #EC9A29;
  border-radius: 8px;
}
.BasketTable-module__table::-webkit-scrollbar-track {
  background: #353535;
  border-radius: 8px;
}

.BasketTable-module__tableData {
  width: 100%;
  position: relative;
  transition: all .3s ease;
  min-height: 140px
}

@media screen and (max-width: 1180px) {
  .BasketTable-module__tableData {
      min-width:920px
  }
}

.BasketTable-module__loader {
  margin: 20px auto
}

.BasketTable-module__tableHeader {
  background-color: var(--bg-color-700)
}

.BasketTable-module__tableLine,.BasketTable-module__tableHeader {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
  /* border-radius: 12px; */
  padding: 14px 12px;
}

.BasketTable-module__tableHeader{
  border-radius: 12px 12px 0 0;
}

.BasketTable-module__tableLine:last-child{
  border-radius: 0 0 12px 12px;
}

.BasketTable-module__tableLine.BasketTable-module__canSell,.BasketTable-module__tableHeader.BasketTable-module__canSell {
  grid-template-columns: 1fr 1fr 100px
}

.BasketTable-module__tableLine {
  position: relative
}

.BasketTable-module__tableLine:hover .BasketTable-module__disabledLine {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease,visibility .3s step-end
}

.BasketTable-module__tableLine:nth-child(2n-1) {
  background-color: var(--bg-color-800)
}

.BasketTable-module__tableLine:nth-child(2n-1) .BasketTable-module__skeletonImg {
  background-color: var(--bg-color-900)
}

.BasketTable-module__tableLine:nth-child(2n-1) .BasketTable-module__skeletonName {
  background-color: var(--bg-color-900)
}

.BasketTable-module__tableLine:nth-child(2n-1) .BasketTable-module__skeletonServer {
  background-color: var(--bg-color-900)
}

.BasketTable-module__disabledLine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0,0,0,.5);
  color: #e6e6e6;
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease,visibility .3s step-end
}

.BasketTable-module__tableTitle,.BasketTable-module__value {
  text-align: center
}

.BasketTable-module__tableTitle:first-child,.BasketTable-module__value:first-child {
  text-align: start
}

.BasketTable-module__tableTitle {
  color: var(--font-color-900);
  font-size: 16px;
  font-weight: 400
}

.BasketTable-module__productNameWrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start
}

.BasketTable-module__productInfoWrapper,.BasketTable-module__serverInfoWrapper {
  display: flex;
  flex-direction: column;
  justify-content: center
}

.BasketTable-module__productInfoWrapper {
  align-items: flex-start
}

.BasketTable-module__serverInfoWrapper {
  align-items: center
}

.BasketTable-module__itemImg,.BasketTable-module__skeletonImg {
  width: 50px;
  height: 46px;
  margin-right: 16px
}

.BasketTable-module__inlineBtn {
  color: var(--accent-color-800);
  cursor: pointer;
  margin-top: 5px;
  transition: all .3s ease
}

.BasketTable-module__inlineBtn:hover {
  color: var(--accent-color-900)
}

.BasketTable-module__value {
  color: var(--font-color-800);
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all .3s ease
}

.BasketTable-module__skeletonImg,.BasketTable-module__skeletonName,.BasketTable-module__skeletonServer {
  border-radius: 6px;
  background-color: var(--bg-color-800)
}

.BasketTable-module__skeletonImg {
  width: 60px
}

.BasketTable-module__skeletonName {
  height: 24px;
  width: 100%
}

.BasketTable-module__skeletonServer {
  margin: 0 auto;
  height: 24px;
  width: 50%
}

.BasketChangeServer-module__header {
  font-size: 17px;
  display: flex;
  justify-content: flex-start
}

.BasketChangeServer-module__footer {
  display: flex;
  justify-content: space-between
}

.BasketContent-module__wrapper {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 16px;
  overflow: hidden;
}

.BasketContent-module__header {
  font-size: 17px;
  display: flex;
  justify-content: flex-start;
}

.BasketContent-module__modal {
  width: 480px
}

@media screen and (max-width: 500px) {
  .BasketContent-module__modal {
      width:100%
  }
}


/* ADDED */

.Shop-module__wrapper{
  max-width: 1284px;
}

.Shop-module__wrapper > .boxBody {
  background: transparent;
  /* padding-top: 0px; */
}

.Widgets-module__widgetWrapper .boxFooter {
  display: none;
}

/* .boxBody .Categories-module__categories{
  grid-area: CL; 
  display: none; 
} */

.bannerContainer{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  order: 3;
  display: flex;
  height: 128px;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  margin-top: 0px;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.bannerContainer img{
  position: absolute;
  object-fit: contain;
  width: 75%;
  height: 75%;
  z-index: 2;
}
.bannerContainer img:first-child{
  z-index: 1;
  filter: blur(10px);
}

.container.headerContainer{
  background-color: var(--bg-color-800);
  /* background-color: rgba(32, 32, 32, 0.5); */
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--accent-color-800);
  padding: 0px;
}

.nav_border{
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 16px;
}

.nav_border div{
  width: 50%;
  height: 100%;
  background-color: var(--bg-color-800);
}

.nav_border div:nth-child(1){
  transform: skewX(45deg);
  border-left: 2px solid var(--accent-color-800);
  border-bottom: 1px solid var(--accent-color-800);
}

.nav_border div:nth-child(2){
  transform: skewX(-45deg);
  border-right: 2px solid var(--accent-color-800);
  border-bottom: 1px solid var(--accent-color-800);
}

.nav_border div:last-child{
  z-index: -1;
  position: absolute;
  width: 50%;
  height: 100%;
}

.MonitoringServer-module__wrapper[data-monitoringserverid="total"]{
  display: none;
}

.HeaderNav-module__link__image{
  width: 60px;
  transition: 0.3s ease;
}

.HeaderNav-module__link__image:hover{
  scale: 1.05;
}

.PlayerMenu-module__balance{
  margin-right: auto;
}

.PlayerBalance-module__btn svg{
  width: 21px;
  height: auto;
  margin-right: 8px;
}

.PlayerBalance-module__btn span{
  display: flex;
  align-items: center;
  justify-content: center;
}

.footerContainer .boxFooter{
  background: transparent;
  width: 100%;
  max-width: 1316px;
}

.footerContainer {
  display: flex;
  justify-content: center;
  width: 100%;
  background: var(--bg-color-700);
  margin-top: 32px;
  order: 99;
}

.footerContainer .MobileCopyright-module__wrapper{
  z-index: 0 !important;
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  padding: 2px 4px !important;
  border-radius: 2px !important;
  background-color: transparent !important;
  display: flex !important;
  align-items: center !important;
  opacity: 1 !important;
  font-size: 12px !important;
  content: "Редактируя этот класс имейте ввиду, что если он будет не читабельным вы получите пермаментную блокировку магазина!"
}

.ProductModal-module__form > .productModalFormRow:first-child{
  margin-bottom: 0;
}

.ProductModal-module__form > .productModalFormRow:last-child{
  margin-bottom: 0;
}

.productModalFormRow:has(.Selector-module__dropDownWrapper){
  display: none;
}

.Product-module__background__gradient{
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  z-index: 4;
  
  pointer-events: none;
  user-select: none;
}

.MonitoringServer-module__wrapper{
  display: grid;
  grid-template-areas: 
  "N N"
  "P P"
  "O O"
  "S C";
}

.bg_video_box{
  aspect-ratio: 16 / 9;
  display: flex;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 96px;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
  will-change: transform;
  z-index: -3;
}

/* .bg_video_box.active{
  display: flex;
} */

.bg_video{
  mask-image: linear-gradient(0deg, transparent 33%, #fff 66%, transparent);
  -webkit-mask-image: linear-gradient(0deg, transparent 33%, #fff 66%, transparent);
  position: relative;
  width: 100%;
}

.opacity{
  opacity: 0.5;
}

.bg_video iframe{
  position: relative;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.Hero-module__wrapper{
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  height: 76vh;
}

.Hero-module__wrapper.active{
  display: flex;
}

.Hero-module__wrapper div{
  font-size: 64px;
  font-stretch: 75%;
  font-weight: 700;
  line-height: 1;
  max-width: 800px;
  color: #fff;
}

.Hero-module__wrapper p{
  font-size: 20px;
  line-height: 1.5;
  margin-top: 16px;
  max-width: 800px;
}

@media screen and (max-width: 600px) {
  .Cookie-module__wrapper {
    bottom:30px;
  }
  .WelcomeSelectServer-module__modal {
    width:100%;
  }
  .ShopFooter-module__links {
    flex-direction:column;
    row-gap: 10px;
  }
  .LangSwitcher-module__wrapper {
    width:100%;
  }
  .LangSwitcher-module__btn {
    width:100%;
    background-color: var(--bg-color-700)
  }
  .LangSwitcher-module__list {
    width:100%;
    top: 100%;
    left: 0;
  }
  .PlayerBalance-module__wrapper {
    width:100%;
  }
  .PlayerMenu-module__profileLink,.PlayerMenu-module__loginLink {
    display:none;
  }
  .PlayerMenuMobile-module__playerMenu {
    margin-bottom:30px;
  }
  .PlayerMenuMobile-module__langSwitcher,.PlayerMenuMobile-module__balance,.PlayerMenuMobile-module__profileLink,.PlayerMenuMobile-module__loginLink {
    display:block;
  }
  .PlayerBalance-module__btn {
    width:100%;
    background-color: var(--bg-color-700);
  }
  .PlayerBalance-module__btn span:nth-child(1){
    display: flex;
  }
  .PlayerMenu-module__langSwitcher,.PlayerMenu-module__balance {
    display:none;
  }
  .Header-module__wrapper_top{
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .MobileCopyright-module__wrapper {
      display: none;
  }
  .bannerContainer img{
    width: 40%;
    height: 40%;
  }

  .Hero-module__wrapper{
    margin-top: 64px;
    height: auto;
  }

  .Hero-module__wrapper div{
    font-size: 48px;
  }

  .Hero-module__wrapper p{
    font-size: 16px;
  }
}