@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

.Toast-module__toast {
    width: 360px;
    padding: 10px;
    border-radius: 5px;
    background: var(--bg-color-800);
    box-shadow: 0 0 15px rgba(0,0,0,.4);
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    animation: Toast-module__toastEnter .2s linear
}

.Toast-module__toast.Toast-module__exit {
    animation: Toast-module__toastExit .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
}

@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: .2
    }

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

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

    to {
        transform: translate(calc(100% + 5px));
        opacity: .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
    }
}

*,*: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
}

:root {
    --default-font-size: 14px;
    --default-font-family: "Roboto";
    --safe-padding: 10px;
    --promocode-bg-color: #1d1b1af7;
    --accent-color-800: #cd422a;
    --accent-color-900: #af3723;
    --font-color-700: #fff;
    --font-color-800: rgba(255, 255, 255, .7);
    --font-color-900: #7b7b7b;
    --bg-color-800: #202020;
    --bg-color-900: #1d1b1a;
    --bg-color-700: #282828;
    --monitoring-joining-color: #e77725;
    --monitoring-queue-color: #A8201A;
    --product-items-trans-bg-color: rgba(0, 0, 0, .4)
}

:root[data-theme=red_black] {
    --accent-color-800: #cd422a;
    --accent-color-900: #af3723;
    --font-color-700: #fff;
    --font-color-800: rgba(255, 255, 255, .7);
    --font-color-900: #7b7b7b;
    --bg-color-800: #202020;
    --bg-color-700: #282828;
    --bg-color-900: #1d1b1a;
    --product-items-trans-bg-color: rgba(0, 0, 0, .4)
}

:root[data-theme=red_white] {
    --accent-color-800: #cd422a;
    --accent-color-900: #af3723;
    --font-color-700: #282828;
    --font-color-800: #202020;
    --font-color-900: #1d1b1a;
    --bg-color-700: #f2f2f2;
    --bg-color-800: #e6e6e6;
    --bg-color-900: #d9d9d9;
    --product-items-trans-bg-color: #e6e6e6
}

:root[data-theme=yellow_black] {
    --accent-color-800: #c19d00;
    --accent-color-900: #ab8b00;
    --font-color-700: rgba(255, 255, 255, .9);
    --font-color-800: rgba(255, 255, 255, .8);
    --font-color-900: #7b7b7b;
    --bg-color-800: #202020;
    --bg-color-700: #282828;
    --bg-color-900: #1d1b1a;
    --monitoring-joining-color: #EC9A29;
    --product-items-trans-bg-color: rgba(0, 0, 0, .4)
}

:root[data-theme=yellow_white] {
    --accent-color-800: #e3b800;
    --accent-color-900: #c4a300;
    --font-color-700: rgba(40, 40, 40, .85);
    --font-color-800: #202020;
    --font-color-900: #1d1b1a;
    --bg-color-700: #f2f2f2;
    --bg-color-800: #e6e6e6;
    --bg-color-900: #d9d9d9;
    --monitoring-joining-color: #EC9A29;
    --product-items-trans-bg-color: #e6e6e6
}

:root[data-theme=blue_black] {
    --accent-color-800: #2f8be6;
    --accent-color-900: #2977c9;
    --font-color-700: #fff;
    --font-color-800: rgba(255, 255, 255, .7);
    --font-color-900: #7b7b7b;
    --bg-color-900: #1d1b1a;
    --bg-color-800: #202020;
    --bg-color-700: #282828;
    --product-items-trans-bg-color: rgba(0, 0, 0, .4)
}

:root[data-theme=blue_white] {
    --accent-color-800: #2f8be6;
    --accent-color-900: #2977c9;
    --font-color-700: rgba(40, 40, 40, .85);
    --font-color-800: #202020;
    --font-color-900: #1d1b1a;
    --bg-color-700: #f2f2f2;
    --bg-color-800: #e6e6e6;
    --bg-color-900: #d9d9d9;
    --product-items-trans-bg-color: #e6e6e6
}

:root[data-theme=green_black] {
    --accent-color-800: #31b112;
    --accent-color-900: #2ca30f;
    --font-color-700: #fff;
    --font-color-800: rgba(255, 255, 255, .7);
    --font-color-900: #7b7b7b;
    --bg-color-900: #1d1b1a;
    --bg-color-800: #202020;
    --bg-color-700: #282828;
    --product-items-trans-bg-color: rgba(0, 0, 0, .4)
}

:root[data-theme=green_white] {
    --accent-color-800: #31b112;
    --accent-color-900: #2ca30f;
    --font-color-700: rgba(40, 40, 40, .85);
    --font-color-800: #202020;
    --font-color-900: #1d1b1a;
    --bg-color-700: #f2f2f2;
    --bg-color-800: #e6e6e6;
    --bg-color-900: #d9d9d9;
    --product-items-trans-bg-color: #e6e6e6
}

*,*: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::-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,.1)
}

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

@media (max-width: 1180px) {
    .container {
        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: 15px
}

.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
}

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

.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: 15px;
    outline: 1px solid transparent;
    transition: all .1s 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 15px -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 .2s ease
}

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

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

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

.bpBgModalImg {
    background-image: url(https://realmrust.org/store/blueprintbase.png);
    background-size: contain;
    background-repeat: no-repeat
}

.productModalDescription {
    list-style: inside;
    text-align: left;
    padding: 10px;
    margin-bottom: 10px;
    background-color: var(--bg-color-700)
}

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

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

.productModalForm {
    margin-bottom: 15px
}

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

@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: 5px
}

.productModalGiveText {
    color: #d22727;
    display: block;
    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: 15px;
    margin-bottom: 15px
}

.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: 15px;
    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 .2s ease,visibility .2s step-end
}

.customModalWrapper.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: opacity .2s 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 .2s ease
}

.Button-module__btn {
    cursor: pointer;
    border-radius: 2px;
    padding: 7px 13px;
    border: 1px solid transparent;
    transition: all .2s ease
}

.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;
    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: flex;
    align-items: center;
    flex-direction: column
}

.ProfileNav-module__img {
    width: 234px;
    height: 220px;
    margin-bottom: 15px
}

.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: 2px;
    padding: 10px 15px;
    color: var(--font-color-900);
    transition: all .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)
}

.ProfileNav-module__navItem+.ProfileNav-module__navItem {
    margin-top: 3px
}

.ProfileNav-module__logOut {
    text-align: center;
    display: block;
    border-radius: 2px;
    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: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    white-space: nowrap;
    font-size: 15px;
    outline: 1px solid transparent;
    transition: all .1s 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 15px -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
}

.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: 5px;
    text-align: left;
    transition: all .2s 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%;
    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);
    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__infoLine+.ProfileContent-module__infoLine {
    border-top: 1px solid var(--bg-color-800)
}

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

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

.ProfileContent-module__input {
    width: 100%;
    display: flex;
    height: 36px;
    border-radius: 2px;
    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: 680px) {
    .ProfileContent-module__usePromoBtn {
        margin-left:0;
        margin-top: 15px
    }
}

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

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

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

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

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

@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
    }
}

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

@media screen and (max-width: 600px) {
    .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 .1s 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;
    flex-wrap: wrap;
    margin: -5px -5px 10px;
    justify-content: center
}

.Servers-module__server {
    cursor: pointer;
    color: var(--font-color-900);
    background-color: var(--bg-color-700);
    padding: 10px 15px;
    border-radius: 2px;
    flex: 1;
    margin: 5px;
    min-width: 200px;
    max-width: 300px;
    transition: all .15s ease
}

.Servers-module__server.Servers-module__active,.Servers-module__server:hover,.Servers-module__server:focus {
    background-color: var(--bg-color-800)
}

.Categories-module__categories {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    margin: -5px
}

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

.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: 34px;
    border-radius: 2px;
    overflow: hidden;
    background: var(--bg-color-700);
    margin-top: 15px
}

.Search-module__iconWrapper {
    height: 100%;
    padding: 0 10px;
    background: var(--accent-color-800);
    color: var(--font-color-700);
    display: flex;
    align-items: center;
    justify-content: center
}

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

.Search-module__icon path {
    stroke: #fff
}

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

.Product-module__wrapper {
    background: var(--bg-color-700);
    position: relative;
    padding: 10px;
    cursor: pointer;
    border-radius: 2px;
    overflow: hidden;
    animation: Product-module__productAnimation .15s ease
}

.Product-module__wrapper:hover .Product-module__count,.Product-module__wrapper:active .Product-module__count {
    opacity: 0
}

.Product-module__wrapper:hover .Product-module__name,.Product-module__wrapper:active .Product-module__name {
    transform: translateY(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;
    transition: all .2s ease;
    transform: translateY(100%);
    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 .15s ease
}

.Product-module__img {
    object-fit: contain;
    width: 100%;
    aspect-ratio: 1/1
}

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

    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: 2px;
    overflow: hidden;
    background: var(--bg-color-700)
}

.CountSelector-module__input {
    font-size: 15px;
    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 .15s 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 .15s 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: 2px;
    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: 15px;
    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: flex-start;
    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: 2px;
    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 .15s 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: 15px
}

.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: 15px
}

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

.KitContent-module__itemCount {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 4px 6px;
    background-color: var(--product-items-trans-bg-color);
    color: var(--font-color-900);
    text-align: start
}

.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: 15px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    background-color: var(--product-items-trans-bg-color)
}

.KitContent-module__itemImg {
    width: 100%;
    height: auto;
    object-fit: contain
}

.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: 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))
    }
}

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

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

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

.MonitoringServer-module__wrapper+.MonitoringServer-module__wrapper {
    margin-top: 16px
}

.MonitoringServer-module__name {
    display: block;
    margin-bottom: 5px
}

.MonitoringServer-module__progressWrapper {
    position: relative
}

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

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

.MonitoringServer-module__progressInfo:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 8px 0;
    border-color: var(--bg-color-800) transparent transparent transparent
}

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

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

.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(--accent-color-800) 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
}

.MonitoringServer-module__progressBarAnim {
    font-size: 14px!important;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: .8;
    background: conic-gradient(from -30deg at 25%,transparent 240deg,rgba(255,255,255,.15) 0%) 0/1.44em,conic-gradient(from -30deg at 75%,rgba(255,255,255,.15) 240deg,transparent 0%) 0/1.44em;
    box-shadow: inset 0 0 5px #000;
    animation: MonitoringServer-module__monitoringAnimation 2s linear infinite
}

.MonitoringServer-module__info {
    display: flex;
    justify-content: space-between;
    align-items: center
}

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

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

.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: 10px
}

.MonitoringServer-module__icon {
    width: 16px;
    height: 16px;
    stroke: var(--font-color-800);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .15s ease
}

.MonitoringServer-module__icon:hover {
    stroke: var(--accent-color-800)
}

@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 {
    font-size: 17px
}

.MonitoringWidget-module__updateBtn {
    width: 100%
}

.MonitoringWidget-module__body {
    position: relative;
    transition: all .1s ease
}

.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 .1s 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 .1s ease,left .1s step-end
}

.Widgets-module__wrapper {
    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 {
    width: 100%
}

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

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

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

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

.Banner-module__img {
    display: block;
    margin: 0 auto;
    max-width: 100%
}

.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 .1s 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 15px -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 .1s ease,transform .1s ease,visibility .1s step-end
}

.NavDropDown-module__list.NavDropDown-module__active {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    pointer-events: all;
    transition: opacity .1s ease,transform .1s 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 .2s 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 .1s 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 15px -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 .1s ease,transform .1s ease,visibility .1s step-end
}

.NavServerDropDown-module__list.NavServerDropDown-module__active {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
    pointer-events: all;
    transition: opacity .1s ease,transform .1s 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 .2s 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 .1s 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: 40px;
    text-transform: uppercase;
    flex-wrap: wrap
}

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

.HeaderNav-module__link {
    cursor: pointer;
    padding: 10px;
    transition: all .1s ease
}

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

.LangSwitcher-module__wrapper {
    position: relative
}

@media screen and (max-width: 600px) {
    .LangSwitcher-module__wrapper {
        width:100%
    }
}

.LangSwitcher-module__btn {
    cursor: pointer;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: all .1s ease
}

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

@media screen and (max-width: 600px) {
    .LangSwitcher-module__btn {
        width:100%;
        background-color: var(--bg-color-700)
    }
}

.LangSwitcher-module__currentLang {
    cursor: pointer;
    padding: 10px
}

.LangSwitcher-module__list {
    z-index: 50;
    margin-top: 2px;
    position: absolute;
    top: 100%;
    left: -10%;
    background: var(--bg-color-700);
    box-shadow: 0 0 15px -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 .1s ease,transform .1s ease,visibility .1s step-end
}

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

@media screen and (max-width: 600px) {
    .LangSwitcher-module__list {
        width:100%;
        top: 100%;
        left: 0
    }
}

.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 .2s ease
}

.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: 2px;
    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__footer {
    display: flex;
    justify-content: space-between
}

@media screen and (max-width: 600px) {
    .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 .1s ease
}

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

@media screen and (max-width: 600px) {
    .PlayerBalance-module__btn {
        width:100%;
        background-color: var(--bg-color-700)
    }
}

.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 .15s 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
}

@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 .15s cubic-bezier(.4,0,.2,1),visibility .15s step-end
}

.PlayerMenuMobile-module__menuWrapper.PlayerMenuMobile-module__visible {
    opacity: 1;
    transform: translate(0);
    visibility: visible;
    pointer-events: all;
    transition: opacity .15s 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 .15s cubic-bezier(.4,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: 600px) {
    .PlayerMenuMobile-module__playerMenu {
        margin-bottom:30px
    }
}

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

@media screen and (max-width: 600px) {
    .PlayerMenuMobile-module__langSwitcher,.PlayerMenuMobile-module__balance,.PlayerMenuMobile-module__profileLink,.PlayerMenuMobile-module__loginLink {
        display:block
    }
}

.PlayerMenuMobile-module__profileLink,.PlayerMenuMobile-module__loginLink {
    border-radius: 2px;
    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: 600px) {
    .PlayerMenu-module__langSwitcher,.PlayerMenu-module__balance {
        display:none
    }
}

.PlayerMenu-module__profileLink,.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 .1s ease
}

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

@media screen and (max-width: 600px) {
    .PlayerMenu-module__profileLink,.PlayerMenu-module__loginLink {
        display:none
    }
}

.Header-module__wrapper {
    background-color: var(--bg-color-700);
    margin-bottom: 20px;
    padding: 0 15px;
    min-height: 50px;
    font-weight: 500;
    width: 100%;
    display: flex;
    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: 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
    }
}

.Cookie-module__wrapper {
    z-index: 50;
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translate(-50%);
    padding: 15px;
    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: 600px) {
    .Cookie-module__wrapper {
        bottom:30px
    }
}

@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: 49!important;
    position: fixed!important;
    bottom: 5px!important;
    left: 5px!important;
    padding: 10px;
    border-radius: 2px;
    background-color: var(--bg-color-800);
    display: flex;
    align-items: center;
    opacity: 1!important;
    content: "Редактируя этот класс имейте ввиду, что если он будет не читабельным вы получите пермаментную блокировку магазина!"
}

@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)
}

.Server-module__server {
    width: 100%;
    background-color: var(--bg-color-700);
    padding: 10px 15px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 5px
}

@media screen and (max-width: 600px) {
    .Server-module__server {
        white-space:normal
    }
}

@media screen and (max-width: 600px) {
    .Server-module__serverBtn {
        padding:8px 20px;
        font-size: 16px
    }
}

.Server-module__serverName {
    color: var(--font-color-800);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap
}

@media screen and (max-width: 600px) {
    .Server-module__serverName {
        font-size:16px
    }
}

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

.WelcomeSelectServer-module__modal {
    width: 580px
}

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

.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: 15px;
    display: grid;
    gap: 10px
}

.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: "Редактируя этот класс имейте ввиду, что если он будет не читабельным вы получите пермаментную блокировку магазина!"
}

@media screen and (max-width: 768px) {
    .MobileCopyright-module__wrapper {
        display:flex
    }
}

.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: 15px
}

.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: 15px
}

.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: 15px
}

.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 .15s 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
}

@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: 2px;
    border: 1px solid transparent;
    background: var(--bg-color-700)
}

.Pagination-module__page {
    cursor: pointer;
    transition: all .15s 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 .2s 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 .15s ease;
    width: 20px;
    height: 20px
}

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

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

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

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

.HistoryTable-module__wrapper {
    width: 100%
}

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

.HistoryTable-module__tableData {
    width: 100%;
    position: relative;
    transition: all .15s 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
}

.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 .15s 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: 40px;
    border-radius: 2px;
    overflow: hidden;
    background: var(--bg-color-700)
}

.HistorySearch-module__iconWrapper {
    height: 100%;
    padding: 0 10px;
    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: #fff
}

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

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

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

.HistoryContent-module__wrapper {
    width: 100%;
    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-reverse
    }
}

@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-reverse
    }
}

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

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

.BasketSearch-module__iconWrapper {
    height: 100%;
    padding: 0 10px;
    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: #fff
}

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

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

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

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

.BasketTable-module__wrapper {
    width: 100%
}

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

.BasketTable-module__tableData {
    width: 100%;
    position: relative;
    transition: all .15s 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;
    padding: 14px 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 .1s ease,visibility .1s 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 .1s ease,visibility .1s 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 .15s 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 .15s 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
}

.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%
    }
}





/* --- realmrust overlay (css&js/main.css) --- */
:root {
    accent-color: rgb(180 180 180);
}

select {
    accent-color: rgb(180 180 180);
}

select option:checked,
select option:hover {
    background: linear-gradient(23deg, rgb(60 60 60) 0%, rgb(100 100 100) 55%) !important;
    color: #fff !important;
};

body {
    background: url(https://s10.iimage.su/s/04/th_gw14xysxrzJKP1DqequOQMiqRKAYuCmvtwHXCUltF.png) no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html,
body,
.ModalLayout-module__overflowWrapper {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar,
.ModalLayout-module__overflowWrapper::-webkit-scrollbar {
    width: 0 !important;
    height: 0 !important;
    background: transparent;
}


.gs-loader, .Banner-module__img, .LangSwitcher-module__btn, .Cookie-module__wrapper, .Header-module__logoWrapper, .Page-module__header {
	display: none;
}

.Shop-module__header {
	display: none !important;
}

.boxBody {
    background: rgb(30 30 30 / 50%);
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 15px;
    contain: layout style;
    transform: translateZ(0);
}

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

.Index-module__wrapper, .CustomPage-module__wrapper, .Profile-module__wrapper, .ProfileBasket-module__wrapper, .ProfileHistory-module__wrapper {
    width: 1220px;
    display: flex;
  	gap: 10px;
    margin-top: 10px;
}

.container.headerContainer .Header-module__wrapper {
    max-width: 1200px;
    padding: 0px;
    margin: 0 auto;
    background-color: transparent;
    min-height: 70px;
}

.container.headerContainer {
    width: 100%;
    background: rgb(20 20 20 / 95%);
    position: sticky;
    top: 0;
    z-index: 10;
  	margin-bottom: 10px;
    box-shadow: 0px 5px 20px rgb(0 0 0 / 30%);
}

.Header-module__wrapper {
    background-color: var(--bg-color-700);
    margin-bottom: 20px;
    padding: 0 15px;
    min-height: 50px;
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.HeaderNav-module__wrapper {
    display: none;
}

.Header-module_Logotype {
  display: flex;
  align-items: center;
  gap: 10px;
}

.Header-module_Logotype-img {
  width: 48px;
  height: 48px;
  background: url(https://s10.iimage.su/s/04/th_g2JlfPXxRUFgMajuQmdtjVHrYa87ZIZYG7y02JPTy.png) no-repeat;
  background-size: contain;
  border-radius: 8px;
  box-shadow: 0px 3px 10px rgb(0 0 0 / 30%);
  transition: 0.2s all;
  cursor: pointer;
}

.Header-module_Logotype-img {
	will-change: transform;
}

.Header-module_Logotype-img:hover {
	transform: scale(1.1);
}

.Header-module_Logotype-text {
  display: flex;
  flex-direction: column;
}

.Header-module_Logotype-text-title {
    font-size: 18px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    text-transform: uppercase;
    font-family: "Exo 2", sans-serif;
    font-style: normal;
    font-weight: 600;
}

.Header-module_Logotype-text-desc {
    font-size: 12px;
    font-family: "Exo 2", sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(255 255 255 / 70%);
}

.HeaderNav-module__link {
    background: rgb(255 255 255 / 5%);
  	color: rgb(255 255 255 / 70%);
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 8px;
    font-family: "Exo 2", sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2rem;
    text-transform: none;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.HeaderNav-module__link:hover, .HeaderNav-module__link:focus {
    color: #ffffff;
    background: rgb(255 255 255 / 10%);
  	transform: translateY(-2px);
}



.PlayerMenu-module__loginLink {
    color: #000000;
    background: linear-gradient(23deg, rgb(60 60 60) 0%, rgb(200 200 200) 55%);
    box-shadow: 0 10px 40px rgb(255 255 255 / 15%);
    text-transform: none;
    cursor: pointer;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    white-space: nowrap;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.PlayerMenu-module__loginLink:focus:not(:focus-visible) {
    outline: none;
    color: #000000;
    background: linear-gradient(23deg, rgb(60 60 60) 0%, rgb(200 200 200) 55%);
    box-shadow: 0 10px 40px rgb(255 255 255 / 15%);
    transform: none;
}

.PlayerMenu-module__loginLink:focus-visible {
    color: #000000;
    background: linear-gradient(23deg, rgb(60 60 60) 0%, rgb(200 200 200) 55%);
    box-shadow: 0 10px 40px rgb(255 255 255 / 40%);
    transform: translateY(-2px);
    outline: 2px solid rgb(255 255 255 / 45%);
    outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
    .PlayerMenu-module__loginLink:hover {
        color: #000000;
        background: linear-gradient(23deg, rgb(60 60 60) 0%, rgb(200 200 200) 55%);
        box-shadow: 0 10px 40px rgb(255 255 255 / 40%);
        transform: translateY(-2px);
    }
}

.PlayerMenu-module__loginLink span { 
	font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 13px;
    font-weight: 600;
}

.loginicon {
    fill: #000000;
    width: 26px;
    height: 26px;
    background: rgb(0 0 0 / 20%);
    padding: 5px;
    border-radius: 20px;
    transition: 0.2s all;
}

.login-button-content {
    display: flex;
    gap: 5px;
    align-items: center;
}

.user-avatar-pic, .user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 20%;
  	transition: transform 0.2s ease;
}

.user-avatar-pic:hover {
    transform: scale(1.1);
}

.PlayerMenu-module__profileLink {
    padding: 0px;
}

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

#balance-icon {
    margin-top: 3px;
    width: 20px;
}

.PlayerBalance-module__btn {
    background: rgb(255 255 255 / 5%);
    color: #fff;
    text-transform: none;
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    white-space: nowrap;
    transition: background-color 0.2s ease;
    flex-direction: row-reverse;
    gap: 10px;
  	line-height: 1rem;
}

.PlayerBalance-module__btn:hover, .PlayerBalance-module__btn:focus {
    background-color: rgb(255 255 255 / 10%);
}

.PlayerBalance-module__btn span {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
}

.sidebar {
    position: sticky;
    top: 80px;
    width: 300px;
    background: rgb(20 20 20 / 80%);
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 15px;
    padding: 20px;
}

.sidebar-menu {
  	display: flex;
  	flex-direction: column;
}

.sidebar-menu ul {
  	list-style: none;
  	padding: 0;
  	margin: 0;
}

.sidebar-menu li {
    margin-bottom: 5px;
}

.sidebar__menu-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 10px;
    color: rgb(255 255 255 / 80%);
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 12px;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.sidebar__menu-item a.active {
    color: #000000;
    background: linear-gradient(23deg, rgb(80 80 80) 0%, rgb(220 220 220) 55%);
    box-shadow: 0 10px 40px rgb(255 255 255 / 10%);
}

.sidebar__menu-item a:hover {
    background: linear-gradient(23deg, rgb(80 80 80) 0%, rgb(220 220 220) 55%);
    color: #000000;
    box-shadow: 0 10px 40px rgb(255 255 255 / 10%);
}

.sidebar-icon {
    width: 28px;
    height: 28px;
    padding: 5px;
    stroke: #fff;
    background: rgb(255 255 255 / 10%);
    border-radius: 50%;
}

.sidebar__menu-item a.active .sidebar-icon,
.sidebar__menu-item a:hover .sidebar-icon {
    stroke: #000;
    background: rgb(0 0 0 / 15%);
}

.page-loader {
  	position: fixed;
  	top: 0;
  	left: 0;
  	width: 100%;
  	height: 3px;
  	background: transparent;
  	z-index: 2000;
  	opacity: 0;
  	transition: opacity 0.2s ease;
}

.page-loader::before {
  	content: '';
  	position: absolute;
  	top: 0;
  	left: 0;
  	width: 0;
  	height: 100%;
  	background: rgb(200 200 200);
}

.page-loader--active {
  	opacity: 1;
}

.page-loader--active::before {
  	animation: fillLoader 1s ease-in-out forwards;
}

.page-loader--complete {
  	opacity: 0;
}

.page-loader--complete::before {
  	width: 100%;
  	animation: none;
}

.Categories-module__categories {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    margin: 0px;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0px;
    height: 380px;
    overflow: overlay;
    padding-right: 15px;
    padding-top: 0;
}

.Categories-module__category {
    display: flex;
    width: 100%;
    gap: 10px;
    text-align: left;
    cursor: pointer;
    color: rgb(255 255 255 / 80%);
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 13px;
    font-weight: 400;
    background: transparent;
    border: 1px solid transparent;
    padding: 7px 10px;
    border-radius: 15px;
    margin: 2px auto;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    align-items: center;
}

.Categories-module__category.Categories-module__active, .Categories-module__category:hover, .Categories-module__category.Categories-module__enableFocus:focus {
    color: #ffffff;
    background: rgb(255 255 255 / 10%);
    border: 1px solid rgb(255 255 255 / 10%);
}


.categories-title {
    color: rgb(255 255 255 / 80%);
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.25;
    margin: 0 0 6px 0;
}

.category-img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 6px;
}

.Product-module__wrapper {
    background: rgb(0 0 0 / 30%);
    border: 1px solid rgb(255 255 255 / 5%);
    position: relative;
    padding: 10px;
    cursor: pointer;
    border-radius: 15px;
    overflow: hidden;
    height: 225px;
  	transition: border-color 0.15s ease, transform 0.15s ease;
    contain: layout style paint;
    transform: translateZ(0);
}

.Product-module__wrapper:hover {
  	background: rgb(0 0 0 / 20%);
  	border-color: rgb(255 255 255 / 15%);
    transform: scale(1.02) translateZ(0);
}

.Product-module__wrapper:active {
    transform: scale(0.98) translateZ(0);
    transition: transform 0.1s ease;
}

.Product-module__img {
    object-fit: contain;
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    top: -5px;
    transform: scale(0.8) translateZ(0);
    contain: layout style paint;
    z-index: 1;
}

.Products-module__wrapper {
    margin-top: 20px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 10px;
    contain: layout style;
}

.Product-module__name {
    z-index: 6;
    width: 100%;
    padding: 4px 8px;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    position: absolute;
    bottom: 62px;
    left: 0;
    text-align: center;
    background-color: transparent;
}

.Product-module__price {
    position: absolute;
    top: unset;
    bottom: 10px;
    left: 25%;
    right: 25%;
    width: 50%;
    background-color: rgb(255 255 255 / 5%);
    border: 1px solid rgb(255 255 255 / 5%);
    padding: 3px 6px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.Product-module__price span{
  	font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 13px;
    font-weight: 400;
    color: #fff;
}

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

.Product-module__count {
    right: unset;
    left: 10px;
    bottom: unset;
    top: 10px;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 13px;
    font-weight: 500;
    color: rgb(255 255 255 / 70%);
    transition: opacity 0.15s ease;
}

.Search-module__wrapper {
    width: 100%;
    display: flex;
    height: 40px;
    border-radius: 15px;
    overflow: hidden;
    background: rgb(0 0 0 / 15%);
    margin-top: 10px;
  	transition: background-color 0.2s ease;
}

.Search-module__wrapper:hover {
    background: rgb(0 0 0 / 25%);
}

.Search-module__iconWrapper {
    height: 100%;
    padding: 0 10px;
    background: transparent;
    color: var(--font-color-700);
    display: flex;
    align-items: center;
    justify-content: center;
}

.Search-module__icon {
    width: 21px;
    height: 21px;
    stroke-width: 2px;
}

.Search-module__icon path {
    stroke: rgb(255 255 255 / 40%);
}

.Search-module__input {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    width: 100%;
    padding: 0 5px;
}

.Product-module__oldPrice {
    position: absolute;
    left: -10px;
    top: -10px;
    margin-right: 0px;
    color: rgb(255 255 255 / 100%) !important;
    font-size: 13px !important;
    z-index: 20;
}

.Product-module__oldPrice:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    background-color: rgb(180 180 180);
    top: 50%;
    left: 0;
    transform: none;
    box-shadow: 0px 1px 10px 1px rgb(150 150 150);
}

.Product-module__discount {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    background: linear-gradient(23deg, rgb(60 60 60) 0%, rgb(200 200 200) 55%);
    box-shadow: 0px 5px 15px 2px rgb(200 200 200 / 30%);
    color: #000;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 10px;
    z-index: 20;
}

.swiper {
  	max-width: 1200px;
  	margin: 20px auto 10px auto;
  	border-radius: 15px;
  	box-shadow: 0px 14px 20px 0px rgb(0 0 0 / 50%);
}

.swiper-wrapper {
    height: 250px !important;
}

.swiper-slide img {
  	width: 100%;
  	height: auto;
  	display: block;
}

.discord_stats {
  	background: url(https://raw.githubusercontent.com/workonme/realmrust/main/zov.png) no-repeat;
  	background-size: cover;
  	display: block;
}

.swiper-pagination {
  	position: relative;
  	margin-top: 10px;
}

.swiper-pagination-bullet {
  	background: #fff;
  	opacity: 0.5;
}

.swiper-pagination-bullet-active {
  	opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
  	color: #fff;
}

.swiper-button-next, .swiper-button-prev {
	color: #fff !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 24px !important;
}

.swiper-pagination-bullet {
    background: rgb(255 255 255 / 50%) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: #ffffff !important;
    box-shadow: 0 0 20px 3px #ffffff !important;
}

.privilegies_grid {
    display: flex;
    flex-direction: column;
  	margin-top: 20px;
}

.privilegies_grid_title {
    color: rgb(255 255 255);
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 500;
}

.privilegies_grid_description {
    color: rgb(255 255 255 / 60%);
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
  	margin-top: 5px;
}

.privilegies_grid__items {
    display: flex;
    align-items: center;
    justify-content: space-between;
  	gap: 10px;
  	margin-top: 15px;
}

.privilegies_grid__item {
    width: 100%;
    background: linear-gradient(125deg, rgb(255 255 255 / 10%) 10%, rgb(255 255 255 / 5%) 50%);
    padding: 10px 20px;
    border-radius: 15px;
}

.privilegies_grid__item_img {
    width: 100px;
    height: 100px;
}

.privilegies_grid__item_content {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.privilegies_grid__item_2 h3 {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
}

.privilegies_grid__item_2 p {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
}

.privilegies_grid__item_2 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.privilegies_grid__button {
    color: #000000;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 13px;
    font-weight: 500;
    background: linear-gradient(23deg, rgb(80 80 80) 0%, rgb(220 220 220) 55%);
    box-shadow: 0 10px 40px rgb(255 255 255 / 10%);
    text-transform: none;
    cursor: pointer;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    white-space: nowrap;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.privilegies_grid__button:focus:not(:focus-visible) {
    outline: none;
    color: #000000;
    background: linear-gradient(23deg, rgb(80 80 80) 0%, rgb(220 220 220) 55%);
    box-shadow: 0 10px 40px rgb(255 255 255 / 10%);
    transform: none;
}

.privilegies_grid__button:focus-visible {
    color: #000000;
    background: linear-gradient(23deg, rgb(80 80 80) 0%, rgb(220 220 220) 55%);
    box-shadow: 0 10px 40px rgb(255 255 255 / 35%);
    transform: translateY(-2px);
    outline: 2px solid rgb(255 255 255 / 45%);
    outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
    .privilegies_grid__button:hover {
        color: #000000;
        background: linear-gradient(23deg, rgb(80 80 80) 0%, rgb(220 220 220) 55%);
        box-shadow: 0 10px 40px rgb(255 255 255 / 35%);
        transform: translateY(-2px);
    }
}

.boxHeader {
    background: transparent;
    border-radius: 0px;
}

.boxBody:last-child {
    border-radius: 15px;
}

.WelcomeSelectServer-module__modal {
    width: 580px;
    background: #111111;
    border-radius: 15px;
}

.WelcomeSelectServer-module__header {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgb(255 255 255 / 10%);
    border-left: 1px solid rgb(255 255 255 / 10%);
    border-right: 1px solid rgb(255 255 255 / 10%);
    border-radius: 15px 15px 0px 0px;
}

.WelcomeSelectServer-module__description {
    display: block;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 13px;
    font-weight: 400;
    text-align: left;
    line-height: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
}

.Server-module__serverName {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    color: rgb(255 255 255);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.WelcomeSelectServer-module__modalWrapper {
    background-color: rgb(0 0 0 / 80%);
    z-index: 1000;
}

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

.Button-module__btn {
    appearance: none;
    -webkit-appearance: none;
}

.Button-module__btn.Button-module__accent {
    background-color: transparent;
    border-color: transparent;
    border: none;
    color: #000000;
    background: linear-gradient(23deg, rgb(80 80 80) 0%, rgb(220 220 220) 55%);
    box-shadow: 0 10px 40px rgb(255 255 255 / 10%);
    text-transform: none;
    cursor: pointer;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    white-space: nowrap;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.Button-module__btn.Button-module__accent:focus:not(:focus-visible) {
    outline: none;
    color: #000000;
    background-color: transparent !important;
    border-color: transparent !important;
    background-image: linear-gradient(23deg, rgb(80 80 80) 0%, rgb(220 220 220) 55%);
    box-shadow: 0 10px 40px rgb(255 255 255 / 10%);
    transform: none;
}

.Button-module__btn.Button-module__accent:focus-visible {
    color: #000000;
    background: linear-gradient(23deg, rgb(80 80 80) 0%, rgb(220 220 220) 55%);
    box-shadow: 0 10px 40px rgb(255 255 255 / 35%);
    transform: translateY(-2px);
    outline: 2px solid rgb(255 255 255 / 45%);
    outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
    .Button-module__btn.Button-module__accent:hover {
        color: #000000;
        background: linear-gradient(23deg, rgb(80 80 80) 0%, rgb(220 220 220) 55%);
        box-shadow: 0 10px 40px rgb(255 255 255 / 35%);
        transform: translateY(-2px);
    }
}

.ModalLayout-module__modal {
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 15px;
    background: rgb(25 25 25);
    border: 1px solid rgb(60 60 60);
    box-shadow: 0px 5px 20px 10px rgb(0 0 0 / 60%);
    transform: translateZ(0);
    contain: layout style paint;
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.ItemContent-module__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    background: transparent;
    padding: 0px !important;
}

.ProductModal-module__header {
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
}

.Button-module__btn.Button-module__gray {
    color: var(--font-color-800);
    background-color: rgb(255 255 255 / 5%);
    border-color: rgb(255 255 255 / 10%);
    border-radius: 10px;
    padding: 7px 11px;
}

.Button-module__btn.Button-module__gray:focus:not(:focus-visible) {
    outline: none;
    background-color: rgb(255 255 255 / 5%) !important;
}

.Button-module__btn.Button-module__gray:focus-visible {
    outline: 2px solid rgb(255 255 255 / 35%);
    outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
    .Button-module__btn.Button-module__gray:hover {
        background-color: rgb(255 255 255 / 10%);
    }
}

.ModalLayout-module__wrapper {
    width: 100vw;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgb(0 0 0 / 70%);
    z-index: 200;
    will-change: opacity;
    contain: layout style paint;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.Servers-module__server {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    display: flex;
    width: 100%;
    gap: 10px;
    text-align: left;
    cursor: pointer;
    color: rgb(255 255 255 / 80%);
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 13px;
    font-weight: 400;
    background: transparent;
    border: 1px solid rgb(255 255 255 / 10%);
    padding: 10px 15px;
    border-radius: 15px;
    margin: 2px auto;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
    align-items: center;
    justify-content: center;
  	margin-bottom: 10px;
}

.Servers-module__server.Servers-module__active, .Servers-module__server:hover, .Servers-module__server:focus {
    color: #ffffff;
    background: rgb(255 255 255 / 10%);
    border: 1px solid rgb(255 255 255 / 10%);
}

.DesktopCopyright-module__wrapper {
    padding: 10px 15px !important;
    border-radius: 10px !important;
    background-color: rgb(255 255 255 / 15%) !important;
}

.DesktopCopyright-module__text {
    white-space: nowrap;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 13px;
    font-weight: 400;
    color: rgb(255 255 255 / 70%);
}

.DesktopCopyright-module__link {
    margin-left: 5px;
    white-space: nowrap;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 13px;
    font-weight: 400;
    color: rgb(200 200 200);
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: rgb(20 20 20);
}

body::-webkit-scrollbar-thumb {
    background: rgb(100 100 100);
    border-radius: 10px;
    box-shadow: none;
}

.Categories-module__categories::-webkit-scrollbar {
    width: 4px;
  	border-radius: 10px;
}

.Categories-module__categories::-webkit-scrollbar-track {
    background: rgb(255 255 255 / 10%);
  	border-radius: 10px;
}

.Categories-module__categories::-webkit-scrollbar-thumb {
    background: rgb(150 150 150 / 60%);
    border-radius: 10px;
    box-shadow: none;
}

.mainbar {
    width: 1200px;
    margin: 0 auto;
    background: rgb(20 20 20 / 70%);
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 15px;
    padding: 10px;
}

.mainbar_content {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.mainbar_promo {
    flex: 1;
    background: rgb(255 255 255 / 5%);
    border-radius: 15px;
    padding: 15px;
    position: relative;
    z-index: 1;
}

.mainbar_content {
    position: relative;
}

.mainbar_promo {
    position: relative;
}

.mainbar_promo_content_info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  	flex: 1;
}

.mainbar_promo_content_info h3 {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.mainbar_promo_content_info p {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 12px;
    font-weight: 400;
    color: #fff;
}

.mainbar_promo_content {
    display: flex;
    align-items: center;
}

.promo_main {
    flex: 0.4;
    background: linear-gradient(23deg, rgb(40 40 40) 0%, rgb(160 160 160) 55%);
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 9px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
  	transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.promo_main svg {
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    max-width: 16px;
    max-height: 16px;
    flex-shrink: 0;
}

.promo_main:hover {
	color: #000000;
    background: linear-gradient(23deg, rgb(40 40 40) 0%, rgb(160 160 160) 55%);
    box-shadow: 0 10px 40px rgb(255 255 255 / 25%);
    transform: translateY(-2px);
}

.mainbar_monitoring {
    flex: 3;
    display: flex;
    gap: 5px;
    align-items: center;
    overflow-x: overlay;
    flex-wrap: nowrap;
    border-radius: 15px;
    padding-bottom: 5px;
    flex-direction: row;
    justify-content: flex-start;
}

.mainbar_monitoring::-webkit-scrollbar {
    width: 4px;
    height: 4px;
    border-radius: 10px;
}

.mainbar_monitoring::-webkit-scrollbar-track {
    background: rgb(255 255 255 / 5%);
  	border-radius: 10px;
}

.mainbar_monitoring::-webkit-scrollbar-thumb {
    background: rgb(255 255 255 / 10%);
    border-radius: 10px;
    box-shadow: none;
}

#progress-42403, #progress-42415 {
  width: 54px;
  height: 54px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#progress-42403 svg, #progress-42415 svg {
  width: 100%;
  height: 100%;
}

#progress-42403 circle, #progress-42415 circle {
  fill: none;
  stroke: rgb(255 255 255 / 10%);
  stroke-width: 10;
  stroke-dasharray: 251.2;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: center;
}

#progress-42403 .progress-circle, #progress-42415 .progress-circle {
  stroke: rgb(200 200 200);
  transition: stroke-dashoffset 0.5s;
}

.players-count {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    position: absolute;
}

.server-players.animate-up {
  animation: slideUp 0.3s ease-in-out;
}

.server-players.animate-down {
  animation: slideDown 0.3s ease-in-out;
}

.mon-icon {
    width: 16px;
    height: 16px;
}

.monitoring_content {
    display: flex;
    gap: 10px;
    padding: 5px 10px;
    background: rgb(255 255 255 / 5%);
    border-radius: 15px;
    align-items: center;
    flex: 0 0 auto;
    min-width: 250px;
}

.mon_online {
    display: flex;
    align-items: center;
    gap: 5px;
}

.monitoring_info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.monitoring_info h3 {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.server-players, .server-max {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.mon_online_icons {
    margin-bottom: -5px;
}

#mon_online_players_total {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: rgb(255 255 255 / 10%);
    padding: 3px 6px;
    border-radius: 8px;
}

.total_online_text {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 12px;
    font-weight: 400;
    color: rgb(255 255 255 / 90%);
}

.total_online {
    background: linear-gradient(90deg, rgb(255 255 255 / 5%) 30%, transparent 70%);
    padding: 1px 10px;
    border-radius: 10px;
    margin-left: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.monitoring-loader {
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid rgb(200 200 200);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.Servers-module__servers {
    display: flex;
    gap: 5px;
    flex-wrap: nowrap;
    margin: 25px -5px 5px;
    justify-content: flex-start;
    position: relative;
    overflow: overlay;
    padding: 0px;
    border-radius: 15px;
    width: 920px;
}

.Servers-module__servers::-webkit-scrollbar {
    width: 4px;
    height: 7px;
    border-radius: 10px;
}

.Servers-module__servers::-webkit-scrollbar-track {
    background: rgb(255 255 255 / 5%);
  	border-radius: 10px;
}

.Servers-module__servers::-webkit-scrollbar-thumb {
    background: rgb(255 255 255 / 10%);
    border-radius: 10px;
    box-shadow: none;
}

.servers-scroll-buttons {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    height: 0px;
    position: absolute;
    top: 0px;
    left: 10px;
    gap: 5px;
}

.servers-scroll-button {
    background: rgb(255 255 255 / 10%);
    border: none;
    color: #ffffff;
    border-radius: 35%;
    padding: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.servers-scroll-button:hover {
    background: rgb(255 255 255 / 20%);
    transform: translateY(-2px);
}

.servers-scroll-left,
.servers-scroll-right {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.servers-scroll-button.servers-scroll-left,
.servers-scroll-button.servers-scroll-right {
  display: none !important;
}

.monitoring-scroll-buttons {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    height: 0px;
    position: absolute;
    top: 20px;
    left: 328px;
    right: -10px;
}

.monitoring-scroll-button {
    background: rgb(80 80 80 / 80%);
    border: none;
    color: #d0d0d0;
    border-radius: 35%;
    padding: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.monitoring-scroll-button:hover {
  	background: rgb(120 120 120);
    transform: translateY(-2px);
}

.monitoring-scroll-left,
.monitoring-scroll-right {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.monitoring-scroll-button.monitoring-scroll-left,
.monitoring-scroll-button.monitoring-scroll-right {
  display: none !important;
}

.dropDownItem,
.Selector-module__dropDownItem {
  background: rgb(255 255 255 / 5%) !important;
  color: #ffffff !important;
}

.dropDownItem:hover,
.dropDownItem:focus,
.dropDownItem.active,
.Selector-module__dropDownItem:hover,
.Selector-module__dropDownItem:focus,
.Selector-module__dropDownItem.active {
  background: linear-gradient(23deg, rgb(120 120 120) 0%, rgb(245 245 245) 55%) !important;
  color: #000000 !important;
}


.mainbar_promo {
    position: relative;
}



.discord_stats_container {
    position: relative;
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 50px 140px;
    gap: 20px;
    z-index: 3;
    flex-direction: column;
}

.discord_stats_container h1 {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
}

.discord_stats_container span {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 26px;
    font-weight: 600;
    color: #fff;
    background: rgb(60 60 60 / 95%);
    border: 2px solid rgb(100 100 100 / 90%);
    border-radius: 15px;
    padding: 5px 10px;
}

.discord_stats_container_counters {
    display: flex;
    align-items: center;
    gap: 15px;
}

.discord_stats_counters_members {
    display: flex;
    gap: 10px;
    background: rgb(60 60 60 / 50%);
    border: 2px solid rgb(120 120 120 / 50%);
    padding: 5px 15px;
    border-radius: 15px;
    align-items: center;
}

.discord_stats_counters_online {
    display: flex;
    gap: 10px;
    background: rgb(40 40 40 / 50%);
    border: 2px solid rgb(100 100 100 / 50%);
    padding: 5px 15px;
    border-radius: 15px;
    align-items: center;
}

.discord_stats_counters_members h3 {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 500;
  	color: rgb(220 220 220);
}

.discord_stats_counters_online h3 {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 500;
    color: rgb(200 200 200);
}

.counter_members {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 500;
    color: rgb(240 240 240);
    background: rgb(80 80 80);
    padding: 2px 6px;
    border-radius: 6px;
}

.counter_online {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 500;
    color: rgb(220 220 220);
    background: rgb(60 60 60);
    padding: 2px 6px;
    border-radius: 6px;
}

.go_discord {
    color: #000000;
    background: linear-gradient(23deg, rgb(80 80 80) 0%, rgb(220 220 220) 55%);
    box-shadow: 0 10px 40px rgb(255 255 255 / 10%);
    text-transform: none;
    cursor: pointer;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    white-space: nowrap;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.go_discord:hover {
	color: #000000;
    background: linear-gradient(23deg, rgb(80 80 80) 0%, rgb(220 220 220) 55%);
    box-shadow: 0 10px 40px rgb(255 255 255 / 35%);
    transform: translateY(-2px);
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color-800);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader--fadeout {
  opacity: 0;
}

.preloader-container {
  	text-align: center;
}

.preloader-logo {
  	width: 100px;
  	height: 100px;
  	border-radius: 15%;
  	animation: pulse 1.5s infinite ease-in-out;
}

.preloader-dots {
  	display: flex;
  	justify-content: center;
  	gap: 10px;
  	margin: 20px 0;
}

.preloader-dot {
  	width: 10px;
  	height: 10px;
  	background: #c0c0c0;
  	border-radius: 50%;
  	opacity: 0.3;
}

.preloader-dot:nth-child(1) {
  	animation: dotFade 1.2s infinite;
}

.preloader-dot:nth-child(2) {
  	animation: dotFade 1.2s infinite 0.4s;
}

.preloader-dot:nth-child(3) {
  	animation: dotFade 1.2s infinite 0.8s;
}

.preloader-text {
  	color: #fff;
  	font-size: 18px;
  	font-family: "Montserrat", sans-serif;
  	font-weight: 500;
  	font-style: normal;
}

#banTable {
    width: 100%;
    border-collapse: collapse;
}

.banHeader {
    margin-bottom: 15px;
}

.banTableHeaders {
    display: flex;
    flex-direction: row;
    padding: 0px 20px;
}

.banTableTitle {
    text-align: left;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    color: rgb(255 255 255);
}

.banTableComponent {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 10px;
    background: rgb(255 255 255 / 5%);
    border: 1px solid rgb(255 255 255 / 5%);
    margin-bottom: 5px;
    border-radius: 15px;
    align-items: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.banTableComponent:hover {
    background: rgb(255 255 255 / 10%);
}

.banTableHeaders > div:nth-child(1),
.banTableComponent > div:nth-child(1) {
    flex: 1.6;
}

.banTableHeaders > div:nth-child(2),
.banTableComponent > div:nth-child(2) {
    flex: 2;
}

.banTableHeaders > div:nth-child(3),
.banTableComponent > div:nth-child(3) {
    flex: 1;
}

.banTableHeaders > div:nth-child(4),
.banTableComponent > div:nth-child(4) {
    flex: 0.5;
}

.pagination {
    display: flex;
    margin-top: 25px;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}

#prevPage {
    margin: 0 5px;
    border-radius: 10px;
    padding: 8px 10px;
    background: rgb(255 255 255 / 3%);
    border-color: transparent;
    color: rgb(198 198 198);
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    transition: background-color 0.3s ease;
    cursor: pointer;
    margin-left: 8px;
    margin-right: 8px;
    display: block;
    text-align: center;
}

#prevPage:hover {
    border: none;
    background: rgb(255 255 255 / 5%);
}

#nextPage {
    margin: 0 5px;
    border-radius: 10px;
    padding: 8px 10px;
    background: rgb(120 120 120);
    border-color: transparent;
    color: rgb(255 255 255);
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    transition: background-color 0.3s ease;
    cursor: pointer;
    margin-left: 8px;
    margin-right: 8px;
    display: block;
    text-align: center;
}

#nextPage:hover {
    border: none;
    background: rgb(90 90 90);
}

#pageInfo {
    font-size: 16px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    color: rgb(255 255 255);
}

.headzone {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.headzone h2 {
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    color: rgb(255 255 255);
}

#searchSteamId {
    margin-right: 10px;
    margin-top: 10px;
    padding: 10px 20px;
    background: rgb(15 15 15 / 80%);
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    color: rgb(255 255 255);
}

#searchSteamId:placeholder {
    color: rgb(255 255 255 / 70%);
}

.banText {
    font-size: 16px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    color: rgb(255 255 255);
}

.banTextReason {
    font-size: 14px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    color: rgb(255 255 255);
}

.banTextExpired {
    background: rgb(100 100 100);
    padding: 5px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    color: rgb(255 255 255);
    text-align: center;
}

.banTextCreated {
    font-size: 14px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    color: rgb(255 255 255);
}

.banUserInfo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.banUserAvatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.banUserDetails {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.banUserNickname {
    font-size: 14px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    color: rgb(255 255 255);
}

.banUserSteamID {
    font-size: 14px;
    font-weight: 400;
    font-family: "Montserrat", sans-serif;
    color: rgb(255 255 255 / 50%);
}

.banInfoError {
    margin: 50px 0;
    text-align: center;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    color: rgb(255 255 255);
}

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

.Toast-module__toast {
    width: 360px;
    padding: 10px;
    border-radius: 8px;
    background: rgb(20 20 20 / 85%);
    border: 1px solid rgb(60 60 60 / 70%);
    box-shadow: none;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
}

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

.Toast-module__toast.Toast-module__success .Toast-module__title {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 500;
}

.Toast-module__message {
    color: rgb(255 255 255);
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    white-space: pre-wrap;
}

.product_zone {
    display: flex;
    flex-direction: column;
    padding: 15px;
  	gap: 15px;
}

.product_zone > p,
.product_zone > div,
.product_zone [class*="description"],
.product_zone [class*="Description"] {
    white-space: pre-line;
}

.product_buyzone {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
    gap: 0px;
    align-items: center;
    contain: layout style;
    transform: translateZ(0);
}

.product_buyzone_buy {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 5px;
    justify-content: center;
    background: rgb(255 255 255 / 5%);
    padding: 5px 0px;
    border-radius: 10px;
}

.product_buyzone_buys {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background: rgb(255 255 255 / 2%);
    border: 1px solid rgb(255 255 255 / 5%);
    border-radius: 10px;
    padding: 10px;
    contain: layout style;
}

.productModalImg {
    max-width: 280px;
    width: 100%;
    height: 230px;
    object-fit: contain;
    margin-bottom: 0px;
    transform: translateZ(0);
    contain: layout style paint;
    image-rendering: -webkit-optimize-contrast;
}

.ProductModal-module__command, .ProductModal-module__bp, .ProductModal-module__item, .ProductModal-module__dropdown {
    width: 640px;
    display: flex;
    flex-direction: column-reverse;
    contain: layout style;
    transform: translateZ(0);
}

.TotalSum-module__inputWrapper {
    width: 100%;
    display: flex;
    height: 37px;
    border-radius: 10px;
    overflow: hidden;
    background: rgb(255 255 255 / 5%);
    flex-direction: row-reverse;
    contain: layout style;
}

.TotalSum-module__input {
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 600;
    width: 100%;
    padding: 0 10px;
  	color: rgb(255 255 255);
}

.TotalSum-module__currency {
    height: auto;
    padding: 5px 10px;
    margin: 5px;
    border-radius: 8px;
    background: rgb(255 255 255 / 5%);
    color: rgb(255 255 255 / 80%);
    line-height: 16px;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 400;
}

.TotalSum-module__label, .ActionSelector-module__label, .ItemContent-module__label {
    width: 100%;
    text-align: left;
    display: block;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 12px;
    color: rgb(255 255 255 / 60%);
}

.CountSelector-module__label {
	display: none;
}

.CountSelector-module__input {
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 600;
    text-align: center;
    width: 100%;
    padding: 0 10px;
  	color: #fff;
}

.CountSelector-module__inputWrapper {
    width: 70%;
    margin-top: 24px;
    margin-left: 20px;
    display: flex;
    height: 29px;
    border-radius: 0;
    overflow: hidden;
    background: transparent;
    contain: layout style;
}

.CountSelector-module__changeCountBtn.CountSelector-module__right {
    border-left: none;
  	background: rgb(255 255 255 / 10%);
}

.CountSelector-module__changeCountBtn.CountSelector-module__right:hover {
    border-left: none;
  	background: rgb(200 200 200 / 40%);
}

.CountSelector-module__changeCountBtn.CountSelector-module__left {
    border-right: none;
    background: rgb(255 255 255 / 10%);
}

.CountSelector-module__changeCountBtn.CountSelector-module__left:hover {
    border-right: none;
    background: rgb(80 80 80 / 60%);
}

.CountSelector-module__icon {
    width: 18px;
    height: 18px;
  	color: #fff;
    transition: all .15s ease;
}

.CountSelector-module__changeCountBtn {
    width: 100%;
    height: auto;
    border-radius: 10px;
    background: transparent;
    position: relative;
    display: flex;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background-color 0.15s ease;
}

.dropDownCurrentItem, .Selector-module__dropDownCurrentItem {
    width: 100%;
    background-color: rgb(255 255 255 / 5%);
    cursor: pointer;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    white-space: nowrap;
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 400;
    outline: none;
    transition: background-color 0.1s ease;
}

.dropDownCurrentItem:hover, .dropDownCurrentItem:focus, .Selector-module__dropDownCurrentItem:hover, .Selector-module__dropDownCurrentItem:focus {
    outline: none;
    background-color: rgb(255 255 255 / 10%);
}

.Selector-module__dropDownCurrentText {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 400;
}

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

.productModalGiveText {
    color: rgb(200 200 200);
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 13px;
    display: block;
    text-align: center;
}

.productModalGiveTextIcon {
    margin-top: 5px;
    color: rgb(200 200 200);
}

.ProductModal-module__form {
  	margin-bottom: 0px;
}

.productModalFormRow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
    gap: 5px;
    margin-bottom: 20px;
    contain: layout style;
}

.productModalDescription {
    list-style: inside;
    text-align: left;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
    background-color: rgb(255 255 255 / 5%);
    contain: layout style;
}

.ProfileNav-module__wrapper {
    min-width: 200px;
    max-width: 200px;
    margin-right: 0px;
    margin-top: 0px;
  	margin-bottom: 20px;
    padding: 0px !important;
}

.ProfileNav-module__header {
    display: flex;
    align-items: center;
    flex-direction: row;
    padding: 0px;
  	margin-bottom: 15px;
    gap: 10px;
}

.ProfileNav-module__img {
    width: 34px;
    height: 34px;
    margin-bottom: 0px;
    border-radius: 10px;
}

.ProfileNav-module__name {
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 400;
    color: rgb(255 255 255 / 92%);
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ProfileNav-module__body {
    display: flex;
    flex-direction: column;
    border: none !important;
    background: transparent !important;
    padding: 0px !important;
  	gap: 3px;
  	margin-bottom: 10px;
}

.ProfileNav-module__navItem {
    cursor: pointer;
    background: rgb(255 255 255 / 5%);
    border-radius: 12px;
    padding: 10px 15px;
    color: rgb(255 255 255 / 70%);
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 400;
    transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.ProfileNav-module__navItem:hover, .ProfileNav-module__navItem:focus, .ProfileNav-module__navItem.ProfileNav-module__active {
    background: linear-gradient(23deg, rgb(80 80 80) 0%, rgb(220 220 220) 55%);
    color: #000;
    box-shadow: 0 10px 40px rgb(255 255 255 / 10%);
}

.ProfileNav-module__logOut {
	font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 400;
    background: linear-gradient(23deg, rgb(60 60 60) 0%, rgb(160 160 160) 55%) !important;
    color: #000 !important;
}

.ProfileNav-module__logOut:hover, .ProfileNav-module__logOut:focus {
    background: linear-gradient(23deg, rgb(60 60 60) 0%, rgb(160 160 160) 55%) !important;
    box-shadow: 0 10px 40px rgb(255 255 255 / 25%) !important;
}

.ProfileContent-module__header, .BasketContent-module__header, .HistoryContent-module__header {
	display: none;
}

.ProfileContent-module__title {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 400;
}

.ProfileContent-module__box {
    background-color: transparent;
    padding: 0px;
    display: flex;
    gap: 5px;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.ProfileContent-module__infoLine+.ProfileContent-module__infoLine {
    border-top: none;
}

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

.ProfileContent-module__infoLine span {
	font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 400;
}

.ProfileContent-module__infoLineValue.ProfileContent-module__steamid {
    cursor: pointer;
    background: rgb(255 255 255 / 10%);
    border-radius: 10px;
    width: fit-content;
    padding: 5px 10px;
    color: #ffffff;
    font-size: 14px;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 400;
    transition: color 0.15s ease;
}

.ProfileContent-module__infoLineValue.ProfileContent-module__steamid:hover {
    color: #c2c2c2;
}

.ProfileContent-module__infoLineValue {
    background: rgb(255 255 255 / 10%);
    border-radius: 10px;
    width: fit-content;
    padding: 5px 10px;
    color: #ffffff;
    font-size: 14px !important;
    font-family: "Montserrat", sans-serif !important;
    font-style: normal !important;
    font-weight: 560 !important;
}

.ProfileContent-module__body, .BasketContent-module__wrapper, .HistoryContent-module__wrapper, .Page-module__wrapper {
    contain: layout style;
}

.ProfileContent-module__input {
    width: 100%;
    display: flex;
    height: 36px;
    border-radius: 10px;
    overflow: hidden;
    padding: 0 15px;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 400;
    background: rgb(255 255 255 / 5%);
    color: #fff;
}

.ProfileContent-module__input::placeholder {
	color: rgb(255 255 255 / 50%);
}

.BasketSearch-module__wrapper, .HistorySearch-module__wrapper {
    width: 100%;
    display: flex;
    height: 36px;
    border-radius: 10px;
    overflow: hidden;
    background: rgb(0 0 0 / 15%);
  	transition: 0.2s all;
}

.BasketSearch-module__iconWrapper, .HistorySearch-module__iconWrapper {
    height: 100%;
    padding: 0 10px;
    background: transparent;
    color: var(--font-color-700);
    display: flex;
    align-items: center;
    justify-content: center;
}

.BasketSearch-module__wrapper:hover {
    background: rgb(0 0 0 / 25%);
}

.HistorySearch-module__wrapper:hover {
    background: rgb(0 0 0 / 25%);
}

.BasketSearch-module__icon, .HistorySearch-module__icon {
    width: 21px;
    height: 21px;
    stroke-width: 2px;
}

.BasketSearch-module__icon path {
    stroke: rgb(255 255 255 / 40%);
}

.HistorySearch-module__icon path {
    stroke: rgb(255 255 255 / 40%);
}

.BasketSearch-module__input, .HistorySearch-module__input {
    font-size: 14px;
    width: 100%;
    padding: 0px;
    color: var(--font-color-800);
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: 400;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.7;
  }
}

@keyframes dotFade {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 1;
  }
}

@keyframes floatgift {
	0% {
		transform: translatey(5px) translateX(0px) rotate(360deg);
	}
	50% {
		transform: translatey(5px) translateX(0px) rotate(330deg);
	}
	100% {
		transform: translatey(5px) translateX(0px) rotate(360deg);
	}
}

@keyframes float {
	0% {
		transform: translatey(5px) translateX(0px) rotate(341deg);
	}
	50% {
		transform: translatey(-5px) translateX(0px) rotate(351deg);
	}
	100% {
		transform: translatey(5px) translateX(0px) rotate(341deg);
	}
}

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

@keyframes slideUp {
  from { transform: translateY(10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideDown {
  from { transform: translateY(-10px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fillLoader {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}


.privilege-container {
    width: 100%;
    padding: 20px;
    background: rgb(0 0 0 / 30%);
    border: 1px solid rgb(255 255 255 / 5%);
    border-radius: 15px;
}

.privilege-title {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.privilege-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: rgb(255 255 255 / 5%);
    border: 1px solid rgb(255 255 255 / 5%);
    border-radius: 12px;
    margin-bottom: 10px;
    transition: 0.2s all;
}

.privilege-item:hover {
    background: rgb(255 255 255 / 10%);
    border: 1px solid rgb(255 255 255 / 10%);
}

.privilege-name {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 5px;
}

.privilege-description {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 12px;
    font-weight: 400;
    color: rgb(255 255 255 / 70%);
    line-height: 1.4;
}

.privilege-description b {
    color: rgb(200 200 200);
    font-weight: 600;
}

.privilege-value {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
    color: rgb(220 220 220);
    background: linear-gradient(23deg, rgb(60 60 60 / 30%) 0%, rgb(180 180 180 / 30%) 55%);
    padding: 5px 12px;
    border-radius: 8px;
    white-space: nowrap;
}


.resources-container {
    background: rgb(0 0 0 / 20%);
    border: 1px solid rgb(255 255 255 / 5%);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
}

.resources-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(255 255 255 / 10%);
}

.resources-title {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.resources-reload {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 12px;
    font-weight: 400;
    color: rgb(255 255 255 / 70%);
    background: rgb(255 255 255 / 5%);
    padding: 5px 10px;
    border-radius: 8px;
}

.reload-icon {
    display: inline-block;
    font-size: 14px;
    animation: spin 2s linear infinite;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
}

.resource-item {
    position: relative;
    background: rgb(255 255 255 / 5%);
    border: 1px solid rgb(255 255 255 / 5%);
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.2s all;
    aspect-ratio: 1 / 1;
}

.resource-item:hover {
    background: rgb(255 255 255 / 10%);
    border: 1px solid rgb(255 255 255 / 10%);
    transform: translateY(-2px) translateZ(0);
}

.resource-item img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-width: 60px;
    max-height: 60px;
}

.resource-amount {
    position: absolute;
    bottom: 5px;
    right: 5px;
    background: linear-gradient(23deg, rgb(60 60 60) 0%, rgb(180 180 180) 55%);
    color: #000000;
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgb(200 200 200 / 20%);
}


.boxFooter {
    background: rgb(20 20 20 / 95%) !important;
    border-top: 1px solid rgb(255 255 255 / 10%) !important;
    padding: 20px !important;
}

.ShopFooter-module__text {
    color: rgb(255 255 255 / 50%) !important;
    font-family: "Montserrat", sans-serif !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    text-align: center !important;
}

.ShopFooter-module__links {
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
    margin-top: 10px !important;
}

.ShopFooter-module__link {
    color: rgb(180 180 180) !important;
    font-family: "Montserrat", sans-serif !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    text-transform: none !important;
    transition: color 0.2s ease !important;
}

.ShopFooter-module__link:hover {
    color: #ffffff !important;
}

.PlayerBalance-module__modal {
    max-width: 550px !important;
    background: rgb(25 25 25) !important;
    border: 1px solid rgb(60 60 60) !important;
    border-radius: 15px !important;
}

.deposit-custom-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px 0;
}

.deposit-custom-header h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.deposit-support-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, rgb(255 255 255 / 6%) 0%, rgb(255 255 255 / 2%) 100%);
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 14px;
    padding: 14px 16px;
    margin: 15px 25px 0;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.deposit-support-banner:hover {
    border-color: rgb(255 255 255 / 30%);
    box-shadow: 0 0 16px rgb(255 255 255 / 6%);
}

.deposit-support-icon-wrap {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgb(255 255 255 / 12%) 0%, rgb(255 255 255 / 5%) 100%);
    border: 1px solid rgb(255 255 255 / 15%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.deposit-support-icon {
    width: 18px;
    height: 18px;
    color: rgb(220 220 220);
}

.deposit-support-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-family: "Montserrat", sans-serif;
    line-height: 1.45;
}

.deposit-support-text span:first-child {
    font-size: 12px;
    font-weight: 500;
    color: rgb(220 220 220);
}

.deposit-support-text span:last-child {
    font-size: 12px;
    font-weight: 400;
    color: rgb(160 160 160);
}

.deposit-support-link {
    color: rgb(200 200 200);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.deposit-support-link:hover {
    color: #ffffff;
}

.deposit-custom-bonuses {
    padding: 15px 25px 20px;
}

.deposit-custom-bonuses h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgb(255 255 255 / 80%);
    margin: 0 0 6px 0;
}

.deposit-custom-bonuses p {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgb(255 255 255 / 60%);
    margin: 0 0 12px 0;
}

.PlayerBalance-module__modal .boxBody {
    padding: 0 25px 20px !important;
    background: transparent !important;
    border: none !important;
}

.PlayerBalance-module__modal .boxFooter {
    padding: 20px 25px !important;
    background: rgb(20 20 20 / 50%) !important;
    border-top: 1px solid rgb(255 255 255 / 10%) !important;
    border-radius: 0 0 15px 15px !important;
}

.bonus-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.bonus-tier {
    background: linear-gradient(160deg, rgb(50 50 50) 0%, rgb(22 22 22) 100%);
    border: 1px solid rgb(255 255 255 / 8%);
    color: rgb(180 180 180);
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 500;
    padding: 14px 12px 12px;
    border-radius: 13px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.bonus-tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgb(255 255 255 / 30%), transparent);
}

.bonus-tier:hover {
    transform: translateY(-2px);
    border-color: rgb(255 255 255 / 20%);
}

.bonus-tier span {
    display: block;
    font-weight: 800;
    font-size: 22px;
    margin-top: 6px;
    background: linear-gradient(23deg, rgb(160 160 160) 0%, rgb(240 240 240) 55%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.PlayerBalance-module__modal .Button-module__btn {
    font-family: "Montserrat", sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 12px 20px !important;
    border-radius: 10px !important;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.PlayerBalance-module__modal .Button-module__btn.Button-module__accent {
    background: linear-gradient(23deg, rgb(80 80 80) 0%, rgb(220 220 220) 55%) !important;
    color: #000 !important;
    border: none !important;
    box-shadow: 0 5px 15px rgb(255 255 255 / 10%) !important;
}

.PlayerBalance-module__modal .Button-module__btn.Button-module__accent:focus:not(:focus-visible) {
    outline: none !important;
    box-shadow: 0 5px 15px rgb(255 255 255 / 10%) !important;
    transform: none !important;
}

.PlayerBalance-module__modal .Button-module__btn.Button-module__accent:focus-visible {
    box-shadow: 0 10px 30px rgb(255 255 255 / 20%) !important;
    transform: translateY(-2px) !important;
    outline: 2px solid rgb(255 255 255 / 45%);
    outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
    .PlayerBalance-module__modal .Button-module__btn.Button-module__accent:hover {
        box-shadow: 0 10px 30px rgb(255 255 255 / 20%) !important;
        transform: translateY(-2px) !important;
    }
}

.PlayerBalance-module__modal .Button-module__btn.Button-module__gray {
    background: rgb(255 255 255 / 5%) !important;
    border: 1px solid rgb(255 255 255 / 10%) !important;
    color: rgb(255 255 255 / 80%) !important;
}

.PlayerBalance-module__modal .Button-module__btn.Button-module__gray:focus:not(:focus-visible) {
    outline: none !important;
    transform: none !important;
}

@media (hover: hover) and (pointer: fine) {
    .PlayerBalance-module__modal .Button-module__btn.Button-module__gray:hover {
        background: rgb(255 255 255 / 10%) !important;
        transform: translateY(-2px) !important;
    }
}

.TotalSum-module__currency,
[class*="TotalSum"][class*="currency"],
.PlayerBalance-module__modal [class*="currency"] {
    background: linear-gradient(23deg, rgb(80 80 80) 0%, rgb(220 220 220) 55%) !important;
    background-image: linear-gradient(23deg, rgb(80 80 80) 0%, rgb(220 220 220) 55%) !important;
    color: #000000 !important;
    font-weight: 600 !important;
    font-size: 13px !important;
    padding: 5px 10px !important;
    margin: 5px !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 40px rgb(255 255 255 / 10%) !important;
    line-height: 1 !important;
    height: auto !important;
    min-width: auto !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.realm-static-rules {
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
  -webkit-font-smoothing: antialiased;
}
.realm-static-rules p {
  margin: 0 0 0.75rem;
}

.wipes-container {
    width: 100%;
    max-width: 100%;
    padding: 20px;
    background: rgb(20 20 20 / 80%);
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 15px;
}

.wipes-header {
    margin-bottom: 25px;
}

.wipes-header h2 {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.wipes-description {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: rgb(255 255 255 / 60%);
    margin: 0;
}

.wipes-servers {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wipes-server {
    background: rgb(255 255 255 / 5%);
    border: 1px solid rgb(255 255 255 / 10%);
    border-radius: 12px;
    padding: 20px;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.wipes-server:hover {
    background: rgb(255 255 255 / 8%);
    border-color: rgb(255 255 255 / 15%);
}

.wipes-server-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.wipes-server-header h3 {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.wipes-connect-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(23deg, rgb(80 80 80) 0%, rgb(220 220 220) 55%);
    color: #000000;
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    box-shadow: 0 5px 15px rgb(255 255 255 / 10%);
}

.wipes-connect-btn:hover {
    box-shadow: 0 10px 30px rgb(255 255 255 / 20%);
    transform: translateY(-2px);
}

.wipes-icon {
    width: 16px !important;
    height: 16px !important;
    min-width: 16px !important;
    min-height: 16px !important;
    max-width: 16px !important;
    max-height: 16px !important;
    flex-shrink: 0;
}

.wipes-server-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wipes-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgb(255 255 255 / 3%);
    padding: 12px 15px;
    border-radius: 10px;
}

.wipes-info-icon {
    width: 24px !important;
    height: 24px !important;
    min-width: 24px !important;
    min-height: 24px !important;
    max-width: 24px !important;
    max-height: 24px !important;
    color: rgb(220 220 220);
    flex-shrink: 0;
}

.wipes-info-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.wipes-info-label {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgb(255 255 255 / 70%);
}

.wipes-info-value {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .container,
    .Index-module__wrapper,
    .CustomPage-module__wrapper,
    .Profile-module__wrapper,
    .ProfileBasket-module__wrapper,
    .ProfileHistory-module__wrapper {
        width: 100%;
    }

    .Index-module__wrapper,
    .CustomPage-module__wrapper,
    .Profile-module__wrapper,
    .ProfileBasket-module__wrapper,
    .ProfileHistory-module__wrapper {
        flex-direction: column;
    }

    .sidebar {
        position: static;
        top: auto;
        width: 100%;
        padding: 14px;
    }

    .Categories-module__categories {
        height: auto;
        overflow: auto hidden;
        flex-direction: row;
        align-items: stretch;
        flex-wrap: nowrap;
        padding-right: 0;
        padding-bottom: 6px;
    }

    .Categories-module__category {
        width: auto;
        min-width: max-content;
        margin: 0;
    }

    .Products-module__wrapper {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .discord_stats {
        background-position: center;
        background-size: cover;
    }

    .discord_stats_container {
        max-width: 100%;
        margin: 18px 16px;
        gap: 10px;
    }

    html,
    body,
    #root {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        background-attachment: scroll;
    }

    .container,
    .boxBody,
    .sidebar,
    .mainbar,
    .Shop-module__wrapper,
    .Page-module__wrapper,
    .ProfileContent-module__body,
    .BasketContent-module__wrapper,
    .HistoryContent-module__wrapper {
        min-width: 0;
        max-width: 100%;
    }

    .container {
        padding: 0 12px;
    }

    .container.headerContainer {
        margin-bottom: 8px;
    }

    .container.headerContainer .Header-module__wrapper,
    .Header-module__wrapper {
        min-height: auto;
        padding: 10px 12px;
        gap: 10px;
        justify-content: space-between;
    }

    .Header-module_Logotype {
        gap: 8px;
    }

    .Header-module_Logotype-img {
        width: 40px;
        height: 40px;
    }

    .Header-module_Logotype-text-title {
        font-size: 16px;
    }

    .Header-module_Logotype-text-desc {
        font-size: 11px;
    }

    .PlayerMenu-module__loginLink,
    .PlayerBalance-module__btn {
        width: 100%;
    }

    .PlayerMenu-module__loginLink {
        min-height: 42px;
    }

    .Index-module__wrapper,
    .CustomPage-module__wrapper,
    .Profile-module__wrapper,
    .ProfileBasket-module__wrapper,
    .ProfileHistory-module__wrapper {
        gap: 8px;
        margin-top: 8px;
        overflow-x: clip;
    }

    .mainbar {
        width: 100%;
        padding: 8px;
    }

    .mainbar_content {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .mainbar_promo,
    .mainbar_monitoring {
        width: 100%;
        min-width: 0;
    }

    .mainbar_promo_content {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .promo_main {
        width: 100%;
        flex: none;
        padding: 6px 10px;
        font-size: 13px;
        border-radius: 9px;
    }

    .promo_main svg {
        width: 14px;
        height: 14px;
        min-width: 14px;
        min-height: 14px;
        max-width: 14px;
        max-height: 14px;
    }

    .mainbar_monitoring {
        overflow: visible;
        padding-bottom: 0;
        flex-wrap: wrap;
        gap: 8px;
    }

    .monitoring_content {
        min-width: 0;
        width: calc(50% - 4px);
        gap: 8px;
        padding: 6px 8px;
        border-radius: 12px;
    }

    .total_online {
        margin-left: 0;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
        padding: 6px 8px;
        border-radius: 12px;
    }

    #progress-42403, #progress-42415 {
        width: 46px;
        height: 46px;
    }

    .players-count,
    .monitoring_info h3,
    .server-players,
    .server-max,
    #mon_online_players_total {
        font-size: 12px;
    }

    .total_online_text {
        font-size: 11px;
    }

    .mainbar_promo {
        padding: 12px;
    }

    .mainbar_promo_content_info h3 {
        font-size: 13px;
    }

    .mainbar_promo_content_info p {
        font-size: 11px;
    }

    .discord_stats_container h1 {
        font-size: 15px;
        line-height: 1.15;
    }

    .discord_stats_container span {
        font-size: 11px;
        border-radius: 12px;
        padding: 4px 9px;
    }

    .discord_stats_container_counters {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        gap: 8px;
    }

    .discord_stats_counters_members,
    .discord_stats_counters_online {
        width: 100%;
        min-width: 0;
        justify-content: space-between;
        padding: 7px 10px;
        border-radius: 12px;
        gap: 8px;
    }

    .discord_stats_counters_members h3,
    .discord_stats_counters_online h3,
    .counter_members,
    .counter_online {
        font-size: 13px;
    }

    .go_discord {
        min-height: 36px;
        padding: 7px 10px;
        font-size: 12px;
        border-radius: 12px;
    }

    .sidebar-menu ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .sidebar-menu li {
        margin-bottom: 0;
    }

    .sidebar__menu-item a {
        min-height: 44px;
        padding: 8px 10px;
        font-size: 13px;
    }

    .Products-module__wrapper {
        margin-top: 14px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .Product-module__wrapper {
        height: 205px;
        padding: 8px;
    }

    .Product-module__name {
        bottom: 56px;
        font-size: 12px;
        padding: 4px 6px;
    }

    .Product-module__price {
        left: 12px;
        right: 12px;
        width: auto;
        bottom: 8px;
    }

    .Product-module__discount {
        font-size: 12px;
        padding: 4px 8px;
    }

    .swiper {
        margin-top: 12px;
        border-radius: 12px;
    }

    .swiper-wrapper {
        height: 180px !important;
    }

    .ModalLayout-module__modal {
        width: min(calc(100% - 16px), 640px);
        margin: 8px;
        max-height: calc(100vh - 16px);
        overflow: auto;
    }

    .Servers-module__servers {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        overflow-x: auto;
    }

    .Servers-module__server {
        min-width: 180px;
    }

    .ItemContent-module__footer,
    .ProfileContent-module__box {
        flex-direction: column;
        align-items: stretch;
    }

    .ProfileContent-module__infoLine {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 12px 0;
    }

    .ProfileContent-module__infoLineValue,
    .ProfileContent-module__infoLineValue.ProfileContent-module__steamid {
        width: 100%;
        max-width: 100%;
        word-break: break-word;
    }

    .wipes-content,
    .wipes-grid,
    .wipes-servers-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .container.headerContainer .Header-module__wrapper,
    .Header-module__wrapper {
        padding: 8px 10px;
        gap: 8px;
        align-items: center;
        flex-wrap: nowrap;
    }

    .Header-module_Logotype {
        min-width: 0;
        flex: 1 1 auto;
        gap: 6px;
        overflow: hidden;
    }

    .Header-module_Logotype-img {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
    }

    .Header-module_Logotype-text {
        min-width: 0;
    }

    .Header-module_Logotype-text-title {
        font-size: 10px;
        line-height: 1.05;
        white-space: normal;
        word-break: break-word;
    }

    .total_online {
        display: none;
    }

    .PlayerMenu-module__wrapper {
        margin-left: 0;
        flex: 0 0 auto;
        column-gap: 8px;
    }

    .PlayerMenuMobile-module__mobileMenuBtn {
        margin-left: 0;
        width: 34px;
        height: 34px;
        padding: 6px 0;
        border-radius: 10px;
        background: rgb(255 255 255 / 6%);
    }

    .PlayerMenuMobile-module__menuWrapper {
        align-items: flex-start;
        justify-content: flex-end;
        padding: 54px 10px 10px;
        background-color: rgba(10, 10, 10, .6);
    }

    .PlayerMenuMobile-module__menu {
        position: relative;
        top: auto;
        right: auto;
        height: auto;
        max-height: calc(100vh - 64px);
        width: min(320px, calc(100vw - 20px));
        border-radius: 14px;
        overflow: hidden;
        background: rgb(20 20 20 / 96%);
        border: 1px solid rgb(255 255 255 / 8%);
    }

    .PlayerMenuMobile-module__header,
    .PlayerMenuMobile-module__body {
        background: transparent;
    }

    .PlayerMenuMobile-module__body {
        padding: 12px;
        row-gap: 10px;
    }

    .PlayerMenuMobile-module__playerMenu {
        row-gap: 10px;
        margin-bottom: 0;
        align-items: stretch;
    }

    .ProfileNav-module__wrapper {
        min-width: 0;
        max-width: none;
        width: 100%;
        margin: 0;
        padding: 0 !important;
    }

    .ProfileNav-module__header {
        display: none;
    }

    .ProfileNav-module__body {
        gap: 8px;
    }

    .ProfileNav-module__navItem,
    .ProfileNav-module__logOut {
        width: 100%;
        min-height: 40px;
        padding: 10px 12px;
        border-radius: 10px;
        text-align: center;
    }

    .discord_stats_container {
        margin: 12px 10px;
        gap: 8px;
    }

    html,
    body,
    #root {
        overflow-x: hidden;
    }

    .container {
        padding: 0 10px;
    }

    .Header-module_Logotype-text-desc {
        display: none;
    }

    .sidebar {
        padding: 12px;
    }

    .mainbar {
        padding: 4px;
    }

    .mainbar_promo {
        padding: 7px 8px;
        border-radius: 10px;
    }

    .mainbar_promo_content {
        gap: 4px;
        align-items: center;
    }

    .mainbar_promo_content_info h3 {
        font-size: 11px;
        line-height: 1.15;
    }

    .mainbar_promo_content_info p {
        font-size: 9px;
        line-height: 1.1;
    }

    .promo_main {
        padding: 3px 7px;
        min-height: 26px;
        font-size: 10px;
        letter-spacing: 0;
        border-radius: 7px;
        line-height: 1;
    }

    .promo_main svg {
        display: none;
    }

    .monitoring_content {
        width: calc(50% - 4px);
        min-width: 0;
        gap: 6px;
        padding: 5px 6px;
    }

    #progress-42403, #progress-42415 {
        width: 40px;
        height: 40px;
    }

    .players-count,
    .monitoring_info h3,
    .server-players,
    .server-max,
    #mon_online_players_total {
        font-size: 11px;
    }

    .total_online {
        gap: 4px;
        padding: 5px 6px;
    }

    .total_online_text {
        font-size: 10px;
    }

    .discord_stats_container h1 {
        font-size: 12px;
        line-height: 1.1;
    }

    .discord_stats_container span {
        font-size: 9px;
        padding: 3px 8px;
        border-radius: 10px;
    }

    .discord_stats_container_counters {
        gap: 6px;
    }

    .discord_stats_counters_members,
    .discord_stats_counters_online {
        padding: 5px 7px;
        border-radius: 10px;
        gap: 6px;
    }

    .discord_stats_counters_members h3,
    .discord_stats_counters_online h3,
    .counter_members,
    .counter_online {
        font-size: 11px;
    }

    .go_discord {
        min-height: 30px;
        padding: 5px 8px;
        font-size: 11px;
        border-radius: 10px;
    }

    .Servers-module__server {
        min-width: 145px;
        max-width: 145px;
        padding: 8px 10px;
    }

    .sidebar-menu ul {
        grid-template-columns: 1fr;
    }

    .Categories-module__category {
        font-size: 12px;
        padding: 7px 9px;
    }

    .Products-module__wrapper {
        grid-template-columns: 1fr 1fr;
    }

    .Product-module__wrapper {
        height: 180px;
        padding: 8px 8px 44px;
    }

    .Product-module__img {
        position: absolute;
        top: 28px;
        left: 8px;
        right: 8px;
        width: calc(100% - 16px);
        height: 92px;
        aspect-ratio: auto;
        object-fit: contain;
        object-position: center;
        transform: none;
    }

    .Product-module__name {
        font-size: 11px;
        bottom: 34px;
        padding: 0 6px;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .Product-module__price span,
    .Product-module__oldPrice,
    .Product-module__count {
        font-size: 11px !important;
    }

    .Product-module__price {
        left: 8px;
        right: 8px;
        bottom: 8px;
        padding: 3px 6px;
    }

    .Product-module__oldPrice {
        left: 8px;
        top: 8px;
        margin: 0;
        z-index: 20;
    }

    .Product-module__discount {
        top: 8px;
        right: 8px;
        z-index: 20;
    }

    .Search-module__wrapper,
    .BasketSearch-module__wrapper,
    .HistorySearch-module__wrapper,
    .ProfileContent-module__input {
        height: 42px;
    }

    .Button-module__btn.Button-module__accent,
    .Button-module__btn.Button-module__gray,
    .PlayerMenu-module__loginLink,
    .PlayerBalance-module__btn {
        min-height: 42px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .bonus-info {
        grid-template-columns: 1fr;
    }

    .swiper-wrapper {
        height: 150px !important;
    }

    .ProductModal-module__header {
        font-size: 16px;
        gap: 8px;
        align-items: flex-start;
    }

    .ProductModal-module__command,
    .ProductModal-module__bp,
    .ProductModal-module__item,
    .ProductModal-module__dropdown {
        width: 100%;
    }

    .product_zone {
        padding: 10px;
        gap: 10px;
    }

    .product_buyzone {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .product_buyzone_buys,
    .product_buyzone_buy {
        width: 100%;
    }

    .product_buyzone_buy {
        padding: 6px 0;
    }

    .productModalImg {
        max-width: 100%;
        width: 100%;
        height: 160px;
        object-fit: contain;
        object-position: center;
    }

    .productModalFormRow {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 10px;
    }

    .CountSelector-module__inputWrapper {
        width: 100%;
        margin-top: 0;
        margin-left: 0;
    }

    .TotalSum-module__inputWrapper,
    .dropDownCurrentItem,
    .Selector-module__dropDownCurrentItem {
        width: 100%;
    }

    .productModalDescription {
        padding: 8px;
        margin-bottom: 8px;
    }

    .productModalGiveText {
        font-size: 11px;
        line-height: 1.2;
    }
}
