@charset "UTF-8";
.Toast-module__toast {
  width: 360px;
  padding: 10px;
  border-radius: 5px;
  background: var(--bg-color-800);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  animation: Toast-module__toastEnter 0.2s linear;
}

.Toast-module__toast.Toast-module__exit {
  animation: Toast-module__toastExit 0.2s linear forwards;
}

.Toast-module__toast + .Toast-module__toast {
  margin-top: 10px;
}

.Toast-module__toast.Toast-module__success .Toast-module__title {
  color: #49d663;
}

.Toast-module__toast.Toast-module__error .Toast-module__title {
  color: #ff365a;
}

body::-webkit-scrollbar {
  width: 16px;
}

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, 0.1);
}

@media screen and (max-width: 380px) {
  .Toast-module__toast {
    width: 100%;
  }
}

.Toast-module__icon {
  margin-right: 10px;
  min-width: 30px;
  width: 30px;
  height: 30px;
}

.Toast-module__messageWrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.Toast-module__title {
  color: var(--font-color-700);
  font-size: 15px;
  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.2;
  }

  to {
    transform: translate(0);
    opacity: 1;
  }
}

@keyframes Toast-module__toastExit {
  0% {
    transform: translate(0);
    opacity: 1;
  }

  to {
    transform: translate(calc(100% + 5px));
    opacity: 0.2;
  }
}

.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 {
  --default-font-size: 14px;
  --default-font-family: "Roboto";
  --safe-padding: 10px;
  --accent-color-800: #107aac;
  --accent-color-900: #0d6791;
  --font-color-700: #ffffff;
  --font-color-800: #d8d8d8;
  --font-color-900: #aaaaaa;
  --bg-color-900: #081e30;
  --bg-color-800: #112435;
  --bg-color-700: #162f44;
  --monitoring-joining-color: #e77725;
  --monitoring-queue-color: #a8201a;
  --product-items-trans-bg-color: rgba(0, 0, 0, 0.4);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html,
body {
  max-width: 100vw;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}

*,
*:before,
*:after {
  font-family: var(--default-font-family), ui-sans-serif, system-ui,
    -apple-system, BlinkMacSystemFont, Segoe UI, 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;
}

button,
input,
textarea {
  border: 0;
  outline: 0;
  background-color: transparent;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}

body {
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  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 {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: url(/static/img/bg-pattern.png);
  background-position: top right;
  background-size: 510px auto;
  background-repeat: repeat;
  background-color: #06121f;
}

.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, 0.1);
}

@media screen and (max-width: 760px) {
  .ModalLayout-module__overflowWrapper::-webkit-scrollbar {
    width: 0;
  }
}

.ModalLayout-module__modal {
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  width: 360px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.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;
}

@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, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.15s step-end;
}

.PlayerMenuMobile-module__menuWrapper.PlayerMenuMobile-module__visible {
  opacity: 1;
  transform: translate(0);
  visibility: visible;
  pointer-events: all;
  transition: opacity 0.15s cubic-bezier(0.4, 0, 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 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.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__playerMenu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 20px;
}

@media screen and (max-width: 680px) {
  .PlayerMenuMobile-module__playerMenu {
    margin-bottom: 30px;
  }
}

.PlayerMenuMobile-module__balance,
.PlayerMenuMobile-module__profileLink,
.PlayerMenuMobile-module__myBotsLink,
.PlayerMenuMobile-module__loginLink {
  display: none;
}

@media screen and (max-width: 680px) {
  .PlayerMenuMobile-module__balance,
  .PlayerMenuMobile-module__profileLink,
  .PlayerMenuMobile-module__myBotsLink,
  .PlayerMenuMobile-module__loginLink {
    display: block;
  }
}

@media screen and (max-width: 680px) {
  .PlayerBalance-module__wrapper {
    width: 100%;
  }
}

.PlayerBalance-module__btn {
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  white-space: nowrap;
  transition: all 0.1s ease;
}

.PlayerBalance-module__btn:hover,
.PlayerBalance-module__btn:focus,
.PlayerMenuMobile-module__myBotsLink:hover,
.PlayerMenuMobile-module__myBotsLink:focus,
.PlayerMenuMobile-module__profileLink:hover,
.PlayerMenuMobile-module__profileLink:focus {
  background-color: var(--accent-color-800);
}

.PlayerMenuMobile-module__myBotsLink,
.PlayerMenuMobile-module__profileLink {
  text-transform: uppercase;
}

@media screen and (max-width: 680px) {
  .PlayerBalance-module__btn {
    width: 100%;
    background-color: var(--bg-color-700);
  }
}

.PlayerMenuMobile-module__profileLink,
.PlayerMenuMobile-module__myBotsLink,
.PlayerMenuMobile-module__loginLink {
  border-radius: 5px;
  background-color: var(--bg-color-700);
  text-align: center;
  width: 100%;
  padding: 10px;
}

.PlayerMenu-module__wrapper {
  margin-left: auto;
  display: flex;
  align-items: center;
  column-gap: 10px;
}

@media screen and (max-width: 680px) {
  .PlayerMenu-module__balance {
    display: none;
  }
}

.PlayerMenu-module__profileLink,
.PlayerMenu-module__myBotsLink,
.PlayerMenu-module__loginLink {
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  white-space: nowrap;
  transition: all 0.1s ease;
}

.PlayerMenu-module__profileLink:hover,
.PlayerMenu-module__profileLink:focus,
.PlayerMenu-module__myBotsLink:hover,
.PlayerMenu-module__myBotsLink:focus,
.PlayerMenu-module__loginLink:hover,
.PlayerMenu-module__loginLink:focus {
  background-color: var(--accent-color-800);
}

.Header-module__wrapper {
  background-color: var(--bg-color-700);
  margin-bottom: 20px;
  padding: 0 25px;
  min-height: 55px;
  font-weight: 500;
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.Header-module__logoWrapper {
  display: flex;
  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;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
  font-size: inherit;
}

button,
input,
textarea {
  border: 0;
  outline: 0;
  background-color: transparent;
  color: inherit;
  font-weight: inherit;
  font-size: inherit;
}

.boxHeader {
  background: var(--bg-color-700);
  border-radius: 8px 8px 0 0;
}

.boxHeader,
.boxBody,
.boxFooter {
  padding: 15px;
}

.CrosseCloseBtn-module__line:nth-child(1) {
  transform: rotate(45deg);
}

.CrosseCloseBtn-module__line:nth-child(2) {
  transform: rotate(-45deg);
}

.CrosseCloseBtn-module__line {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--font-color-900);
  transition: all 0.15s ease;
}

.CrosseCloseBtn-module__btn {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
}

.container {
  width: 1160px;
  padding: 0 var(--safe-padding);
  margin: 0 auto;
}

@media (max-width: 1180px) {
  .container {
    width: 100%;
  }
}

.HeaderNav-module__link {
  cursor: pointer;
  padding: 10px;
  transition: all 0.1s ease;
}

.HeaderNav-module__wrapper {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-left: 40px;
  text-transform: uppercase;
  flex-wrap: wrap;
}

@media screen and (max-width: 980px) {
  .HeaderNav-module__wrapper {
    display: none;
  }
}

.PlayerMenuMobile-module__nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0;
}

.Product-module__wrapper {
  background: var(--bg-color-700);
  position: relative;
  padding: 10px;
  margin: 5px;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease;
}

.Product-module__wrapper:hover {
  transform: scale(1.02);
}
.Product-module__wrapper:hover .Product-module__count,
.Product-module__wrapper:active .Product-module__count {
  opacity: 0;
}

.Product-module__price,
.Product-module__discount,
.Product-module__name,
.Product-module__count {
  position: absolute;
}

.Product-module__price {
  top: 0;
  left: 0;
  background-color: var(--product-items-trans-bg-color);
  padding: 3px 6px;
  border-radius: 0 0 2px;
  display: flex;
  align-items: center;
}

.Product-module__oldPrice {
  position: relative;
  margin-right: 4px;
}

.Product-module__oldPrice:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--font-color-800);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.Product-module__discount {
  top: 0;
  right: 0;
  background-color: var(--accent-color-800);
  color: var(--font-color-700);
  padding: 3px 6px;
  border-radius: 0 0 0 2px;
}

.Product-module__name {
  z-index: 6;
  width: 100%;
  padding: 10px 8px;
  bottom: 0;
  left: 0;
  background-color: var(--product-items-trans-bg-color);
}

.Product-module__count {
  right: 12px;
  bottom: 8px;
  transition: all 0.15s ease;
}

.Product-module__img {
  object-fit: contain;
  width: 100%;
  border-radius: 8px 8px 0 0;
  aspect-ratio: 1 / 1;
}

@keyframes Product-module__productAnimation {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.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: space-between;
}

.Products-module__wrapper {
  margin-top: 15px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 15px;
}

.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));
  }
}

.ModalLayout-module__wrapper {
  width: 100vw;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(15, 15, 15, 0.5);
  z-index: 200;
}

.ModalLayout-module__overflowWrapper {
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.ModalLayout-module__positionWrapper {
  min-height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: 0 var(--safe-padding) 0 var(--safe-padding);
}

.ProductModal-module__command,
.ProductModal-module__bp,
.ProductModal-module__item,
.ProductModal-module__dropdown {
  width: 420px;
}

.ProductModal-module__header {
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 8px 8px 0 0;
}

.productModalImg {
  max-width: 300px;
  width: 100%;
  height: 300px;
  object-fit: contain;
  margin-bottom: 10px;
}

.productModalFormRow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0%, 1fr));
  gap: 15px;
  margin-bottom: 15px;
}

.boxFooter {
  background: var(--bg-color-700);
  border-radius: 0 0 8px 8px;
}

.ItemContent-module__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0 0 8px 8px;
}

.boxBody {
  background: var(--bg-color-900);
}

.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: 5px;
  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;
}

.CountSelector-module__label {
  width: 100%;
  text-align: left;
  display: block;
  font-weight: 500;
  margin-bottom: 6px;
}

.TotalSum-module__input {
  font-size: 15px;
  width: 100%;
  padding: 0 10px;
}

.CountSelector-module__inputWrapper {
  width: 100%;
  display: flex;
  height: 36px;
  border-radius: 5px;
  overflow: hidden;
  background: var(--bg-color-700);
}

.CountSelector-module__changeCountBtn {
  background-color: var(--accent-color-800);
}

.CountSelector-module__changeCountBtn {
  width: 60px;
  height: 100%;
  position: relative;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.CountSelector-module__icon {
  width: 76%;
  height: 76%;
  transition: all 0.15s ease;
}

.CountSelector-module__input {
  font-size: 15px;
  width: 100%;
  padding: 0 10px;
}

.Button-module__btn {
  cursor: pointer;
  border-radius: 5px;
  padding: 7px 13px;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.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__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);
}

@media screen and (max-width: 460px) {
  .productModalFormRow {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 680px) {
  .PlayerMenu-module__profileLink,
  .PlayerMenu-module__myBotsLink,
  .PlayerMenu-module__loginLink {
    display: none;
  }
}

.Profile-module__wrapper {
  display: flex;
  align-items: flex-start;
}

.ProfileNav-module__wrapper {
  min-width: 264px;
  max-width: 264px;
  margin-right: 20px;
}

.ProfileNav-module__header {
  display: flex;
  align-items: center;
  flex-direction: column;
  border-radius: 8px 8px 0 0;
}
.ProfileNav-module__body {
  display: flex;
  flex-direction: column;
}

.ProfileNav-module__logOut {
  text-align: center;
  display: block;
  border-radius: 5px;
  width: 100%;
  padding: 7px;
  color: var(--font-color-800);
  background: var(--accent-color-800);
}

.ProfileNav-module__navItem + .ProfileNav-module__navItem {
  margin-top: 3px;
}

.ProfileNav-module__img {
  width: 234px;
  height: 220px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.ProfileNav-module__navItem {
  cursor: pointer;
  background: var(--bg-color-700);
  border-radius: 5px;
  padding: 10px 15px;
  color: var(--font-color-900);
  transition: all 0.15s 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);
}

.ProfileContent-module__wrapper {
  width: 100%;
  margin-bottom: 20px;
}

.ProfileContent-module__header {
  display: flex;
  justify-content: flex-start;
  font-size: 17px;
  border-radius: 8px 8px 0 0;
}

.boxBody:last-child {
  border-radius: 0 0 8px 8px;
}

.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);
  padding: 0 4px;
}

.ProfileContent-module__infoWrapper {
  margin-bottom: 15px;
}

.ProfileContent-module__infoLine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 10px 12px;
}

.ProfileContent-module__infoLineValue {
  color: var(--font-color-700);
}

.ProfileContent-module__infoLineValue.ProfileContent-module__tg_id {
  cursor: pointer;
  color: var(--accent-color-800);
  transition: all 0.15s ease;
}

.ProfileContent-module__infoLine + .ProfileContent-module__infoLine {
  border-top: 1px solid var(--bg-color-800);
}

.ProfileContent-module__infoLineValue {
  color: var(--font-color-700);
}

.ProfileContent-module__title {
  display: block;
  margin-bottom: 5px;
}

.ProfileContent-module__inputWrapper {
  display: flex;
  width: 100%;
  height: 36px;
  margin-bottom: 5px;
}

.ProfileContent-module__input {
  width: 100%;
  display: flex;
  height: 36px;
  border-radius: 5px;
  overflow: hidden;
  padding: 0 15px;
  background: var(--bg-color-700);
}

.ProfileContent-module__usePromoBtn {
  margin-left: 20px;
  height: 36px;
  min-width: 200px;
}

@media screen and (max-width: 970px) {
  .Profile-module__wrapper {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 970px) {
  .Profile-module__wrapper.Profile-module__rightSide {
    flex-direction: column;
  }
}

@media screen and (max-width: 680px) {
  .ProfileContent-module__usePromoBtn {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media screen and (max-width: 680px) {
  .ProfileContent-module__inputWrapper {
    height: auto;
    flex-direction: column;
  }
}

@media screen and (max-width: 970px) {
  .ProfileNav-module__wrapper.ProfileNav-module__rightSide {
    margin-right: 0;
    margin-left: 0;
    max-width: initial;
    width: 100%;
  }
}

@media screen and (max-width: 970px) {
  .ProfileNav-module__wrapper {
    margin-right: 0;
    max-width: initial;
    margin-bottom: 20px;
    width: 100%;
  }
}
.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: 5px;
  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: 15px;
  width: 100%;
  padding: 0 10px;
}
.PlayerBalanceModal-module__header {
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.Categories-module__categories {
  display: flex;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
  margin: -5px;
  margin-top: 10px;
}

.Categories-module__category {
  cursor: pointer;
  color: var(--font-color-900);
  background-color: var(--bg-color-700);
  padding: 10px 15px;
  border-radius: 5px;
  margin: 5px;
  transition: all 0.15s ease;
}

.Categories-module__category.Categories-module__active,
.Categories-module__category:hover {
  background-color: var(--accent-color-800);
  color: var(--font-color-700);
}

.errorMessage {
  display: block;
  width: 100%;
  text-align: center;
  margin: 25px 0 20px 0;
  font-size: 16px;
  color: var(--font-color-700);
}
.ShopFooter-module__text {
  margin-bottom: 10px;
  text-align: center;
  font-size: 12px;
}
.ShopFooter-module__links {
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-transform: uppercase;
  font-weight: 500;
}
.ShopFooter-module__link {
  font-size: 12px;
  padding: 2px 4px;
  color: var(--accent-color-800);
  text-align: center;
  transition: all 0.1s ease;
}

.Shop-module__header {
  width: 100%;
  font-size: 17px;
  border-radius: 8px 8px 0 0;
}

.HistoryContent-module__header {
  font-size: 17px;
  display: flex;
  justify-content: flex-start;
  border-radius: 8px 8px 0 0;
}

.HistoryTable-module__table {
  width: 100%;
  overflow-x: auto;
}
.HistoryTable-module__tableData {
  width: 100%;
  position: relative;
  transition: all 0.15s ease;
  min-height: 140px;
}

.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: 5px;
  border: 1px solid transparent;
  background: var(--bg-color-700);
}
.Pagination-module__navPageBtn {
  cursor: pointer;
  transition: all 0.2s ease;
}
.Pagination-module__left {
  margin-right: 7px;
}

.Pagination-module__page:hover,
.Pagination-module__page.Pagination-module__active,
.Pagination-module__page:focus {
  color: var(--font-color-700);
  border: 1px solid var(--accent-color-800);
}
.Pagination-module__page {
  cursor: pointer;
  transition: all 0.15s ease;
}
.Pagination-module__right {
  margin-left: 7px;
}
.Pagination-module__pagIcon {
  transition: all 0.15s ease;
  width: 20px;
  height: 20px;
}
.Pagination-module__left .Pagination-module__pagIcon {
  transform: rotate(180deg);
  transition: all 0.2s ease;
}
.HistoryTable-module__tableLine,
.HistoryTable-module__tableHeader {
  display: grid;
  grid-template-columns: 1fr 200px 130px;
  gap: 10px;
  align-items: center;
  padding: 14px 12px;
}
.HistoryTable-module__tableTitle:first-child,
.HistoryTable-module__value:first-child {
  text-align: start;
}
.HistoryTable-module__value {
  color: var(--font-color-800);
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.HistoryTable-module__tableTitle:last-child,
.HistoryTable-module__value:last-child {
  text-align: end;
}

.HistoryContent-module__wrapper {
  width: 100%;
  margin-bottom: 20px;
}
.HistoryTable-module__tableHeader {
  background-color: var(--bg-color-700);
}
.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);
}

.Pagination-module__navPageBtn:hover {
  border: 1px solid var(--accent-color-800);
}
.Pagination-module__navPageBtn:hover .Pagination-module__pagIcon {
  stroke: var(--accent-color-800);
}
.Pagination-module__page:hover,
.Pagination-module__page.Pagination-module__active,
.Pagination-module__page:focus {
  color: var(--font-color-700);
}

@media screen and (max-width: 1180px) {
  .HistoryTable-module__tableData {
    min-width: 920px;
  }
}
@media screen and (max-width: 970px) {
  .ProfileHistory-module__wrapper {
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 970px) {
  .ProfileHistory-module__wrapper.ProfileHistory-module__rightSide {
    flex-direction: column;
  }
}
.productModalDescription {
  list-style: inside;
  text-align: left;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 10px;
  background-color: var(--bg-color-700);
}

.BotMenu-module__wrapper {
  flex-grow: 1;
}

.BotMenuChoose-module__wrapper {
  width: 20%;
  display: flex;
  flex-direction: column;
  margin-right: 15px;
}

.BotMenuChooseButton-module__wraper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: none;
  cursor: pointer;
  background: var(--bg-color-700);
  border-radius: 5px;
  padding: 10px 15px;
  color: var(--font-color-900);
  transition: all 0.15s ease;
}

.BotMenuChooseButton-module__wraper + .BotMenuChooseButton-module__wraper {
  margin-top: 3px;
}

.BotMenuChooseButton-module__wraper:hover,
.BotMenuChooseButton-module__wraper:focus,
.BotMenuChooseButton-module__wraper.active {
  color: var(--font-color-800);
  background: var(--bg-color-800);
}

.BotMenuChooseButton-module__icon {
  margin-right: 8px;
}

.Header-module__logoWrapper {
  width: 210px;
  height: 60px;
  right: 0;
  bottom: 0;
  left: 0;
  top: -20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 210px 60%;
}

@keyframes bg-move {
  0% {
    background-position: -500px 0;
    opacity: 0;
  }
  29% {
    opacity: 0.3;
  }
  36% {
    opacity: 1;
  }
  43% {
    opacity: 0.1;
  }
  45% {
    opacity: 0;
  }
  100% {
    background-position: 1000px 0;
    opacity: 0;
  }
}

.ProfileNav-module__wrapper .boxFooter {
  border-radius: 0 0 8px 8px;
}

.BotContentMenu.boxBody {
  display: flex;
}

.BotMenu-module__wrapper {
  display: flex;
  flex-direction: column;
}

.BotContentMenu-module__box {
  background-color: var(--bg-color-700);
  padding: 0 4px;
}

.BotContentMenu-module__infoLine + .BotContentMenu-module__infoLine {
  border-top: 1px solid var(--bg-color-800);
}

.BotContentMenu-module__infoLine {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 10px 12px;
}

.BotContentMenu-module__tittle {
  margin-bottom: 10px;
  font-size: 1.8rem;
}

@media screen and (max-width: 980px) {
  .BotContentMenu.boxBody {
    flex-direction: column;
  }
  .BotMenuChoose-module__wrapper {
    margin: 0;
    margin-bottom: 15px;
    width: 100%;
  }
}

.green {
  color: green;
}
.red {
  color: red;
}

.BotContentMenu-module__settingsForm {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-bottom: 10px;
  position: relative; /* Добавляем position: relative к форме */
}

.BotContentMenu-module__settingsShowTokenButton {
  position: absolute;
  right: 230px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.BotContentMenu-module__settingsTittle {
  display: flex;
  margin-bottom: 5px;
}

.BotContentMenu-module__settingsButton {
  margin-left: 20px;
  min-width: 200px;
  height: 36px;
}
.BotContentMenu-module__settingsWrapper {
  margin-bottom: 13px;
}

@media screen and (max-width: 680px) {
  .BotContentMenu-module__settingsButton {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
  }
  .BotContentMenu-module__settingsShowTokenButton {
    top: 29%;
    transform: translateY(-71%);
    right: 12px;
  }
}

.BotMenu-input {
  width: 100%;
  display: flex;
  height: 36px;
  border-radius: 5px;
  padding: 0 15px;
  background: var(--bg-color-700);
}

.BotMenu-inputWrapper {
  display: flex;
  align-items: center;
  justify-content: left;
  position: relative;
}

.BotContentMenu-module__settingsInput {
  padding: 0 50px 0 15px;
}

.BotMenuChooseButton-module__admins_addButton {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  min-width: 200px;
  height: 36px;
}

.BotMenuChooseButton-module__admins_addButtonIcon {
  margin-right: 3px;
}

@media screen and (max-width: 680px) {
  .BotMenu-inputWrapper {
    height: auto;
    flex-direction: column;
  }
  .BotMenuChooseButton-module__admins_addButton {
    margin-left: 0;
    margin-top: 15px;
    width: 100%;
  }
}

.BotMenu-inputWrapper_tittle {
  display: flex;
  margin-bottom: 5px;
}

.BotContentMenu-module__admins_addAdmin_wrapper {
  display: flex;
  flex-direction: column;
  bottom: 10px;
}

.BotContentMenu-module__adminsList_tittle {
  margin-top: 10px;
}
.BotContentMenu-module__admins_addAdmin_wrapper {
  margin-bottom: 20px;
}

.BotContentMenu-module__admins_admins {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin-top: 10px;
}

.BotContentMenu-module__admins_delButton {
  background: var(--bg-color-700);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  min-width: 150px;
  height: 36px;
}
.BotContentMenu-module__admins_admin {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 30px;
  margin-bottom: 15px;
}
.BotMenuChooseButton-module__wraper.delete {
  margin-top: 10px;
}

.BotContentMenu-module__main_managment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 5px 10px;
  margin-top: 15px;
}
.BotContentMenu-module__main_managmentButton {
  min-width: 230px;
}

.BotContentMenu-module__main_managmentButton.green {
  background-color: green;
  border-color: green;
}
.BotContentMenu-module__main_managmentButton.red {
  background-color: red;
  border-color: red;
}

.bestAnimation-poshel_nahyu_maloi {
  width: 100%;
  height: 60px;
  background-size: cover;
  background-image: linear-gradient(
    270deg,
    rgba(100, 181, 239, 0) 48.44%,
    #64b5ef44 75.52%,
    rgba(100, 181, 239, 0) 100%
  );
  background-repeat: no-repeat;
  animation: bg-move linear 5s infinite;
}

.ExtendBotSub-module__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0 0 8px 8px;
}

.ExtendBotSub_FormRow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0%, 1fr));
  grid-gap: 15px;
  gap: 15px;
  margin-bottom: 15px;
}

.ExtendBotSubModal-module__modal {
  width: 420px;
}

.mini-loader {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 980px) {
  .BotContentMenu-module__main_managment {
    flex-direction: column;
  }
  .BotContentMenu-module__main_managmentButton {
    margin-left: 0;
    width: 100%;
  }
  .BotContentMenu-module__main_managmentButton
    + .BotContentMenu-module__main_managmentButton {
    margin-top: 15px;
  }
}

.ModalBoxFooter-module__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0 0 8px 8px;
}

.ModalBoxHeader-bodule__wrapper {
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.BotChat-module__inputButton {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
}

.BotChat-module__buttonIcon {
  margin-right: 3px;
}

.BotChats-module__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0%, 1fr));
  grid-gap: 20px;
  gap: 40px;
}

.BotChat-module__input_wrapper {
  margin-top: 15px;
}

.BotChat-module__rowButton {
  display: flex;
  background: var(--bg-color-700);
  align-items: center;
  justify-self: center;
  margin-left: 10px;
}
.BotChat-module__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 10px;
  margin-right: 10px;
  margin-top: 10px;
}

@media screen and (max-width: 680px) {
  .BotChats-module__wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

.BotMessages-module__sortRow {
  display: flex;
  justify-content: center;
  align-items: center;
}

.BotMessages_sort_sortButton {
  background-color: var(--bg-color-700);
  margin: 8px 5px;
}
.BotMessages_sort_sortButton:hover {
  background-color: var(--accent-color-800);
  color: var(--font-color-700);
}

.EditMessage-module__wrapper {
  display: flex;
  flex-direction: row;
  margin: 20px;
  justify-content: space-between;
}

.EditMessage-module__inputWrapper {
  max-width: 45%;
}

.EditMessage-module__resultWrapper {
  min-width: 310px;
  max-width: 45%;
}

.EditMessage-module__arrow {
  justify-self: center;
  align-self: center;
}

.EditMessage-module__arrow .material-symbols-outlined {
  font-size: 50px;
}

.EditMessage-module__tittle {
  font-size: medium;
  margin-bottom: 10px;
}
.BotMessages-module__header {
  display: flex;
  align-content: center;
  justify-content: space-between;
}

.EditMessage-module__help {
  align-self: center;
  height: 24px;
}

.BotMessages-module__header {
  margin-bottom: 10px;
}
.EditMessage-module__inputWrapper textarea {
  max-width: 100%;
}

.EditMessage-module__arrow.down {
  display: none;
}

@media screen and (max-width: 680px) {
  .EditMessage-module__wrapper {
    flex-direction: column;
  }
  .EditMessage-module__inputWrapper,
  .EditMessage-module__resultWrapper {
    max-width: 100%;
  }
  .EditMessage-module__arrow.right {
    display: none;
  }
  .EditMessage-module__arrow.down {
    display: block;
  }
}

@media screen and (max-width: 680px) {
  .ShopFooter-module__links {
    flex-direction: column;
  }
  .ShopFooter-module__link + .ShopFooter-module__link {
    margin-top: 10px;
  }
}

textarea {
  resize: vertical;
}
.BotContentMenu-module__tittle.BotChats {
  align-self: center;
  margin: 0;
}

code {
  color: rgb(135, 116, 225);
  background: rgb(0, 0, 0, 0.502);
  white-space: pre-wrap;
  margin: 0;
  padding: 1px 2px;
  border-radius: 4px;
  font-size: 0.875rem;
  cursor: pointer;
}

.buyProductEmail-module_wrapper {
  margin-top: 20px;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 680px) {
  .buyProductEmail-module_wrapper {
    flex-direction: column;
  }
}

h2.boxHeader.Shop-module__header a {
    color: var(--accent-color-900);
}