@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;500;700&display=swap');

@keyframes load {
    0% { width: 0; }
    100% { width: 68% !important; }
}

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

@media (min-width: 768px) { /* Десктопные устройства */
  .Product-module__wrapper:nth-of-type(1),
  .Product-module__wrapper:nth-of-type(2),
  .Product-module__wrapper:nth-of-type(3),
  .Product-module__wrapper:nth-of-type(4) {
    width: calc(25% - 16px);
  }
}

@keyframes animated-cursor{
  from{border-right-color: #00c0ffbf;}
  to{border-right-color: transparent;}
}

@media (max-width: 1199px) and (min-width: 768px){
  .xbox_store .xbox__header:before {
    font-size: 20px;
  }
@keyframes animated-text{
  from{width: 0;}
  to{width: 570px;}
}
}
@media (max-width: 768px) and (min-width: 576px){
  .xbox_store .xbox__header:before {
    font-size: 18px;
  }
@keyframes animated-text{
  from{width: 0;}
  to{width: 505px;}
}
}
@media (max-width: 575px){
  .xbox_store .xbox__header:before {
    font-size: 2.9vw;
  }
@keyframes animated-text{
  from{width: 0;}
  to{width: 90vw;}
}
}

:root {
    --default-font-family: "Inter";
    --default-font-size: 16px;
    --default-font-weight: 500;
    --default-background: #14151A;
    --default-color: #ffffffd6;
    --default-color-hover: #ffffff;
    --light-font-weight: 300;
    --bold-font-weight: 700;
    --big-font-size: 24px;
    --over-big-font-size: 30px;
    --small-font-size: 14px;
    --over-small-font-size: 12px;
    --secondary-color: #b8a3a3;
    --price-color: #2a2b31;
    --cancel-color: #44242e;
    --title-color: #e3e3e3;
    --description-color: #c0c0c0;
}

:root[data-theme=red_black] {
    --accent-color-800: #2b2c33;
    --accent-color-900: #26262c;
    --bg-color-800: #202020;
    --bg-color-700: #1D1E23;
    --bg-color-900: #1d1b1a;
}

* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-family: var(--default-font-family), sans-serif;
    color: var(--default-color);
}

img {
    -webkit-user-drag: none;
    -moz-user-drag: none;
    -ms-user-drag: none;
}

body {
    background-color: #1C242D;
    font-weight: var(--default-font-weight);
}

.container.newsContainer {
    display: none;
}

.DesktopCopyright-module__wrapper {
    position: fixed;
    bottom: 5px;
    left: 5px;
    padding: 10px;
    border-radius: 2px;
    background-color: #333;
    z-index: 49;
    display: flex;
    align-items: center;
    opacity: 1;
}

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

.Header-module__custom {
    margin: 20px 0 35px;
    min-height: 50px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.HeaderButtons-module {
    display: flex;
    gap: 10px;
}

.HeaderButtons-module__container {
    display: flex;
    gap: 13px;
    padding: 7px;
    align-items: center;
}

.Container__promo,
.Container__bonus,
.Container__rules {
    transition: 0.2s;
    transform-origin: top left;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.Container__promo {
    background: linear-gradient(135deg, rgb(50, 34, 96) 0%, rgb(71, 51, 131) 100%);
}

.Container__bonus {
    background: linear-gradient(135deg, rgb(99, 83, 34) 0%, rgb(148, 124, 47) 100%);
}

.Container__rules {
    background: linear-gradient(135deg, rgb(99, 34, 57) 0%, rgb(143, 47, 148) 100%);
}

.Container__promo:hover,
.Container__bonus:hover,
.Container__rules:hover {
    box-shadow: 0 0 50px rgba(81, 57, 154, 0.35);
    transform: scale(1.05);
}

.MonitoringServer-module__progressInfo {
    z-index: 7;
    position: absolute;
    border-radius: 8px;
    width: 100%;
    padding: 5px 8px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,.3);
    background-color: var(--price-color);
    bottom: 100%;
    left: 0;
    margin-bottom: 5px;
    opacity: 0;
    transform: translateY(5px);
    visibility: hidden;
}

.MonitoringServer-module__progressInfo.show {
    display: unset;
}

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

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

img {
    -webkit-user-drag: none;
}

.customModalContent {
    width: 520px;
}

.customModalContent .boxHeader {
    display: flex;
    justify-content: space-between;
}

.Button-module__btn {
    height: 40px;
    background: rgba(255, 255, 255, .03);
    color: var(--default-color)!important;
}

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

@media (max-width: 980px) {
    .Products-module__wrapper {
        gap: 35px;
    }
}

footer {
    background: #2E3740;
}

@keyframes load {
    0% {
        width: 0
    }

    100% {
        width: 68% !important
    }
}

.MonitoringServer-module__progressInfo {
    z-index: 7;
    position: absolute;
    border-radius: 8px;
    width: 100%;
    padding: 5px 8px;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,.3);
    background-color: var(--price-color);
    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 {
	display: unset;
}
.MonitoringServer-module__wrapper[data-monitoringserverid="32038"] .MonitoringServer-module__name:after {
    content: "X5/X10 MAX 3";
    font-weight: 100;
    margin-left: 4px;
    font-size: 13px;
    opacity: 0.5;
    transition: all 0.5s ease-out;
    color: #fff;
}

.MonitoringServer-module__wrapper[data-monitoringserverid="36926"] .MonitoringServer-module__name:after {
    content: "X5/X10 SOLO";
    font-weight: 100;
    margin-left: 4px;
    font-size: 13px;
    opacity: 0.5;
    transition: all 0.5s ease-out;
    color: #fff;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}


/* VIP, PREMIUM, ELITE, wartune */
[data-productid="7992748"],
[data-productid="7913386"],
[data-productid="7915479"],
[data-productid="7919676"]
{
  .Product-module__price {
    right: 10px;
    text-align: center;
    background: linear-gradient(-45deg, #4b3cb9, #7881e2, #4b3cb9, #7881e2);
    background-size: 400% 400%;
    animation: gradient 8s ease infinite;
    color: #fff;
  }
  .Product-module__oldPrice {
    display: none;
  }
  .Product-module__oldPrice + span {
    color: #fff;
  }
}

.Header-module__custom {
    margin-bottom: 35px;
    min-height: 50px;
    font-weight: var(--default-font-weight);
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  	justify-content: space-between;
  	margin-top: 20px;
}

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

.HeaderButtons-module__container {
    display: flex;
    gap: 13px;
    padding: 7px;
  	align-items: center;
}

.Container__promo {
	background: linear-gradient(135.00deg, rgb(50, 34, 96) 0%,rgb(71, 51, 131) 100%);
  	transition: 0.2s;
    transform-origin: top left;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.Container__promo:hover {
	box-shadow: 0px 0px 50px 0px rgb(81 57 154 / 35%);
    transform: scale(1.05);
  	transition: 0.2s;
}

.Container__bonus {
    background: linear-gradient(135.00deg, rgb(99, 83, 34) 0%,rgb(148, 124, 47) 100%);
  	transition: 0.2s;
    transform-origin: top left;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.Container__bonus:hover {
    box-shadow: 0px 0px 50px 0px rgb(197 165 62 / 35%);
    transform: scale(1.05);
  	transition: 0.2s;
}

.content__image {
	display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
}

.content__text {
  	font-weight: var(--light-font-weight);
  	font-size: var(--default-font-size);
}

.custom__btn {
    width: 165px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
}

@keyframes hoverAnimationNewsP {
    0% {
          box-shadow: 0px 4px 30px 0px rgb(61 103 255 / 20%);
          background: rgb(71 105 226);
      	  color: var(--default-color);
    }
    50% {
          box-shadow: 0px 4px 30px 0px rgb(61 103 255 / 80%);
          background: rgb(87 120 235);
      	  color: var(--default-color-hover);
    }
    100% {
          box-shadow: 0px 4px 30px 0px rgb(61 103 255 / 20%);
          background: rgb(71 105 226);
      	  color: var(--default-color);
    }
}

@keyframes hoverAnimationNews24 {
    0% {
      	box-shadow: 0px 4px 30px 0px hsl(9deg 67% 41% / 20%);
      	background: #af3723;
      	color: var(--default-color);
    }
    50% {
      	box-shadow: 0px 4px 30px 0px #af3723;
      	background: #af3723;
      	color: var(--default-color-hover);
    }
    100% {
      	box-shadow: 0px 4px 30px 0px hsl(9deg 67% 41% / 20%);
      	background: #af3723;
      	color: var(--default-color);
    }
}

.Modules-container {
    display: flex;
    flex-direction: row;
  	justify-content: space-between;
    align-items: center;

}

.Modules-container>.content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  	gap: 20px;
}

.Modules-container>.title,
.ProductModal-module__header.boxHeader {
    font-size: var(--big-font-size);
    font-weight: var(--default-font-weight);
    color: var(--default-color-hover);
}

.HeaderLinks-module {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.PlayerMenu-module__avatar {
	border-radius: 50%;
	border: 2px solid #696969;
	width: 48px;
	height: 48px;
	transition: 0.2s;
}
.PlayerMenu-module__avatar:hover {
    background-color: #00dfb500;
    border: 2px solid #2c7dd8;
}

.PlayerMenu-module__avatar:hover, .PlayerMenu-module__avatar:focus{
    transform: scale(1.2);
  	transition: 0.2s;
}

 .PlayerMenu-module__avatar>a>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}
		  
.Social-Module__wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  	padding: 15px 0;
}

.Social-Module__wrapper .boxBodyCustom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  	gap: 10px;
  	padding: 17px 10px;
  	background-color: #2c226e;
  	transition: 0.2s;
}

.Container__rules {
    background: linear-gradient(135.00deg, rgb(99 34 57) 0%, rgb(143 47 148) 100%);
    transition: 0.2s;
    transform-origin: top left;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.Container__rules:hover {
    box-shadow: 0px 0px 50px 0px rgb(143 47 148 / 35%);
    transform: scale(1.05);
  	transition: 0.2s;
}

.Container__rules .content__image {
    box-shadow: 0px 0px 50px 0px rgb(175 71 134) 0%;
    background: rgb(175 71 134) 0%;
}

.Social-Module__wrapper .boxBodyCustom:hover {
  	background-color: #3b2f8f;
  	color: var(--default-color-hover);
  	transition: 0.2s;
}

.Social-Module__wrapper .boxBodyCustom>p {
    font-size: var(--default-font-size);
  	font-weight: var(--default-font-weight);
}

.Social-Module__wrapper .boxBodyCustom>p>span {
    font-weight: var(--default-font-weight);
}

.customModalContent {
    width: 520px;
}

.customModalContent .boxHeader {
    display: flex;
    justify-content: space-between;
}

.customModalContent .boxBody {
    background: #2E3740;
  	text-align: left;
}

.customModalContent>.boxHeader>.text {
    display: flex;
    align-items: center;
    flex-direction: row;
  	gap: 10px;
}

.customModalContent>.boxHeader>.text>.title {
  	font-size: var(--big-font-size);
}

.customModalOverflow .Button-module__btn.Button-module__gray {
    color: #fff;
    background-color: #ffffff00;
    border-color: #ffffff00;
    opacity: 0.7;
    transition: 0.2s;
    border: 0px;
    width: 50px;
}

.customModalOverflow .Button-module__btn.Button-module__gray:hover {
  	transition: 0.2s;
    background-color: #ffffff00;
    opacity: 1;
  	border: 0px;
}

.body__content {
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.3);
}

.body__content>p {
    font-weight: var(--light-font-weight);
}

.body__content>p>span {
    font-weight: var(--default-font-weight);
}

.boxCustom {
    display: flex;
    flex-direction: row;
    gap: 50px;
    justify-content: space-between;
  	padding-bottom: 35px;
}

.boxCustomWidget {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: space-between;
    padding-bottom: 35px;
    align-items: center;
    margin-top: 20px;
  	padding: 20px;
}

.customModalContent .boxFooter {
    color: rgb(173, 173, 173);
    border: 2px dashed var(--bg-color-800);
    padding: 10px;
    border-radius: 0 0 10px 10px;
    background: var(--accent-color-800);
    font-size: 12px;
}

.body__text>p {
    text-align: center;
    align-items: center;
}

.action {
    display: flex;
    align-items: center;
    gap: 20px;
}

.price {
    border-radius: 10px;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.3);
    padding: 10px;
    width: 90px;
    text-align: center;
}

.body__price {
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.discount {
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.3);
    background: var(--accent-color-800);
}

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

.Product-module__wrapper>.Product-module__price>.span__price>img {
    opacity: 0.7;
  	transition: 0.2s;
}

.Product-module__wrapper:hover>.Product-module__price>.span__price>img {
    opacity: 1;
  	transition: 0.2s;
}

.desc__content {
    padding: 10px;
    background-color: var(--accent-color-900);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

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

.desc__content>a>img {
    width: 135px;
  	border-radius: 8px;
}

.desc__content>font,
.desc__content__img>font {
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px;
    background: var(--accent-color-800);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 3px 50px 0px rgba(0, 0, 0, 0.3);
}

.content__info>.title {
    font-size: 17px;
    color: var(--title-color);
    margin-bottom: 3px;
    font-weight: 500;
}

.content__info>.description {
    font-weight: 300;
    color: var(--description-color);
  	font-size: 14px;
}

.desc__title {
	margin-bottom: 5px;
}

.desc__title__kit {
    margin-top: 10px;
    margin-bottom: 5px;
}

.News-module__container.news__promo {
	width: 40%!important;
}

.News-module__container.news__24h {
	width: 60%!important;
	background: linear-gradient(142deg, rgba(29, 30, 35, 1) 0%, rgb(91 36 36) 100%);
	border-radius: 12px;
	padding: 40px 60px;
}
.Banner-module__img, .LangSwitcher-module__currentLang, .Header-module__logoWrapper, .Shop-module__header, .Categories-module__categories, .MonitoringWidget-module__header, .Widgets-module__widgetWrapper .boxFooter, .MonitoringServer-module__icon, .productModalProductAvailability, .ProfileContent-module__header.boxHeader {
	display: none;
}

.content__image, .HeaderButtons-module__container, .PlayerMenu-module__loginLink, .Header-module__wrapper, .custom__btn, .Servers-module__server, .Search-module__wrapper, .Product-module__wrapper, .DesktopCopyright-module__wrapper, .MobileCopyright-module__wrapper, .PlayerBalance-module__btn, .PlayerMenu-module__profileLink, .MonitoringServer-module__wrapper, .MonitoringServer-module__progressBarWrapper, .Social-Module__wrapper .boxBodyCustom, .Button-module__btn.Button-module__accent, .Button-module__btn.Button-module__gray, .TotalSum-module__inputWrapper, .CountSelector-module__inputWrapper, .Toast-module__toast, .ProductItemSelector-module__items, .ProductItemSelector-module__item.ProductItemSelector-module__active, .ProductItemSelector-module__item:hover, .ProductItemSelector-module__item:focus, .productModalDescription, .productModalContainsItem, .PlayerMenuMobile-module__profileLink, .PlayerMenuMobile-module__loginLink, .Widgets-module__widgetWrapper, .PlayerBalanceModal-module__inputWrapper, .HeaderNav-module__link:hover, .HeaderNav-module__link:focus, .ProfileContent-module__infoWrapper, .Selector-module__dropDownCurrentItem, .ProfileContent-module__input, .BasketSearch-module__wrapper, .BasketTable-module__tableHeader, .BasketTable-module__tableLine:nth-child(2n-1), .HistorySearch-module__wrapper, .HistoryTable-module__tableHeader, .HistoryTable-module__tableLine:nth-child(2n-1), .Cookie-module__wrapper {
	border-radius: 10px!important;
}

.MonitoringWidget-module__header,
.ProfileContent-module__header,
.ProfileNav-module__header,
.BasketContent-module__header.boxHeader,
.HistoryContent-module__header.boxHeader,
.WelcomeSelectServer-module__header.boxHeader,
.ProductModal-module__header.boxHeader,
.PlayerBalanceModal-module__header {
    border-radius: 10px 10px 0px 0px;
}

.MonitoringWidget-module__body,
.ProfileNav-module__wrapper .boxFooter,
.ItemContent-module__footer.boxFooter,
.PlayerBalanceModal-module__footer,
.RouletteContent-module__footer.boxFooter {
	border-radius: 0px 0px 10px 10px;
}

.ModalLayout-module__positionWrapper {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Product-module__price,
.customModalContent .boxBody {
	border-radius: 0px 0px 10px 10px;
}

.customModalContent .boxHeader {
	border-radius: 10px 10px 0px 0px;
}

.Shop-module__wrapper .boxBody,
.Search-module__iconWrapper,
.Shop-module__wrapper .boxFooter,
.MonitoringWidget-module__body.boxBody,
.Social-Module__wrapper .boxBody,
.ProfileNav-module__wrapper .boxFooter {
    background: #ffffff00;
}

.News-module__container {
	border-radius: 20px;
}

.Header-module__wrapper {
    padding: 0 95px;
}

.PlayerMenu-module__loginLink,
.PlayerBalance-module__btn,
.PlayerMenu-module__profileLink {
    box-shadow: inset 0 0 51pt 0 rgba(255, 255, 255, .05);
    background: #2E3740;
    font-weight: var(--default-font-weight);
}

.PlayerMenu-module__loginLink>p>span {
	font-weight: var(--bold-font-weight);
}

.PlayerMenu-module__loginLink {
  	line-height: 15px;
    letter-spacing: 1px;
  	padding: 12px;
}

.HeaderNav-module__wrapper,
.PlayerBalance-module__btn,
.PlayerMenu-module__profileLink,
.PlayerMenu-module__loginLink {
    text-transform: capitalize;
    line-height: 15px;
    letter-spacing: 1px;
    gap: 20px;
    background: rgb(255 255 255 / 0%);
}

.HeaderNav-module__link, .PlayerMenuMobile-module__profileLink, .PlayerMenuMobile-module__loginLink {
    font-weight: var(--light-font-weight);
    padding: 10px 15px;
    position: relative;
    transition: 0.2s;
    background: #af2323;
    border-radius: 10px;
}

.PlayerMenuMobile-module__loginLink {
    display: flex;
    justify-content: flex-start;
}

.profileLink {
    font-weight: var(--light-font-weight);
    padding: 15px 10px;
    position: relative;
    transition: 0.2s;
    text-decoration: none;
    font-size: var(--default-font-size);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  	letter-spacing: 1px;
}

.HeaderNav-module__link:hover,
.HeaderNav-module__link:focus,
.SupportLink-module__link:hover,
.SupportLink-module__link:focus {
    backdrop-filter: blur(48px);
    border-radius: 10px !important;
    opacity: 0.5;
    color: #919191;
}

.SupportLink-module__link {
    color: #fff;
    font-weight: var(--light-font-weight);
    padding: 15px 10px;
}

.HeaderNav-module__linkActive {
    color: var(--default-color-hover)!important;
}

.customModalPosition {
    align-items: center;
  	backdrop-filter: blur(10px);
  	transition: backdrop-filter 0.5s ease;
}

.Header-module__wrapper {
    margin-bottom: 30px;
}

.Servers-module__servers {
    flex-direction: row;
}

.Servers-module__servers {
    flex-wrap: unset;
  	margin: 0px;
}

.Servers-module__server {
    margin: 0 10px;
}

.Search-module__wrapper {
    margin-top: 0px;
    height: 40px;
    background: #2E3740;
}

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

.Servers-module__server.Servers-module__active, .Servers-module__server:hover, .Servers-module__server:focus {
	background-color: #2E3740;
	color: var(--default-color-hover);
}

.Servers-module__server {
  	font-size: var(--small-font-size);
  	background-color: #2E3740; 
}

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

.Products-module__wrapper {
    gap: 30px;
}

.Product-module__price {
    padding: 10px;
    position: absolute;
    bottom: 0;
    top: unset;
    width: 100%;
    display: flex;
    background: #ffffff00;
    font-size: var(--default-font-size);
    font-weight: var(--default-font-weight);
    flex-direction: column;
    align-items: flex-end;
}

.Product-module__wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    transition: 0.2s;
    overflow: visible;
}

.Product-module__wrapper:hover {
    transform: translateY(-10px);
    transition: 0.2s;
    color: var(--default-color);
}

.DesktopCopyright-module__wrapper {
    font-size: var(--over-small-font-size)!important;
}

.MobileCopyright-module__wrapper {
  	display: flex;
    flex-direction: column;
	margin-top: 20px;
    font-size: var(--default-font-size)!important;
  	margin-top: 15px;
}

.MobileCopyright-module__wrapper > .MobileCopyright-module__link {
    white-space: nowrap;
    margin-left: 5px;
    color: var(--default-color-hover);
}

.DesktopCopyright-module__link,
.ShopFooter-module__link,
.ShopFooter-module__link:hover {
    white-space: nowrap;
    margin-left: 5px;
    color: var(--default-color-hover);
}

.Product-module__oldPrice {
    position: relative;
    margin-right: 10px;
}

.Product-module__discount {
	font-family: 'Roboto Condensed', sans-serif;
	font-weight: 700;
	z-index: 2;
	translate: -10px 10px;
	display: block;
	padding: 2px 6px;
	border-radius: 5px;
	background: rgba(255,72,72,.1);
	color: #ff4848;
	font-size: 16px;
	max-width: 51px;
	margin-left: 6px;
}

.MonitoringServer-module__wrapper {
    background: #2E3740;
    padding: 15px;
    transition: 0.2s;
    transform-origin: top left;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.MonitoringServer-module__wrapper:hover>.MonitoringServer-module__name {
	color: var(--default-color-hover);
  	transition: 0.2s;
}

.MonitoringServer-module__wrapper:hover>.MonitoringServer-module__info {
	color: var(--default-color-hover);
	transition: 0.2s;
}

.MonitoringServer-module__wrapper.MonitoringServer-module__info,
.MonitoringServer-module__wrapper>.MonitoringServer-module__name {
	transition: 0.2s;
  	font-size: var(--small-font-size);
}

.MonitoringServer-module__wrapper:hover {
	transform: scale(1.05);
  	transition: 0.2s;
}

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

.Shop-module__wrapper .boxBody,
.Shop-module__wrapper .boxFooter,
.MonitoringWidget-module__body.boxBody {
	padding: 15px 0;
}

.MonitoringServer-module__progressBarWrapper {
    height: 20px;
    background-color: rgba(255,255,255,0.04);
}

.MonitoringServer-module__progressBarAnim {
    box-shadow: unset;
    background: linear-gradient(to right, #4b3cb9 0%, #7881e2 100%);
    animation: load 3s normal forwards;
    transition: 0.2s;
}

.MonitoringServer-module__progressBarAnim:hover {
  	transition: 0.2s;
}

.MonitoringServer-module__wrapper.MonitoringServer-module__info,
.MonitoringServer-module__wrapper>.MonitoringServer-module__name,
.MonitoringServer-module__wrapper>[data-monitoringserverid="30220"] .MonitoringServer-module__progressBarAnim,
.MonitoringServer-module__wrapper>[data-monitoringserverid="29724"] .MonitoringServer-module__progressBarAnim {
	transition: 0.2s;
}

.MonitoringServer-module__info {
	font-size: var(--over-small-font-size);
}

.MonitoringWidget-module__body.boxBody {
	padding: 5px 0px!important;
}

.ModalLayout-module__positionWrapper {
    backdrop-filter: blur(10px);
  	transition: backdrop-filter 0.5s ease;
}

.PlayerBalanceModal-module__header {
	    font-size: var(--big-font-size);
}

.Button-module__btn {
    height: 40px;
    color: var(--default-color)!important;
}

.Button-module__btn.Button-module__accent:hover, 
.Button-module__btn.Button-module__accent:focus {
	color: var(--default-color-hover)!important;
}

.Button-module__btn.Button-module__gray {
    border: 2px solid var(--accent-color-800);
}

.Button-module__btn.Button-module__gray:hover, 
.Button-module__btn.Button-module__gray:focus {
    background: rgb(0 0 0 / 3%);
    box-shadow: inset 0 0 51pt 0 rgba(255,255,255,.05);
    backdrop-filter: blur(48px);
    border-radius: 10px !important;
}

.PlayerBalanceModal-module__currency,
.PlayerBalanceModal-module__input {
    background: rgba(255,255,255,0.04);
}

.boxBody {
    background: #2E3740;
}


.CountSelector-module__changeCountBtn.CountSelector-module__left {
    border-right: 0px;
}

.CountSelector-module__changeCountBtn.CountSelector-module__right {
    border-left: 0px;
}

.CountSelector-module__changeCountBtn {
	transition: 0.2s;
}

.CountSelector-module__changeCountBtn:hover,
.CountSelector-module__changeCountBtn:focus {
	transition: 0.2s;
  	background: var(--accent-color-800);
}

.ProductModal-module__header.boxHeader {
    display: flex;
    justify-content: center;
}

.Product-module__oldPrice {
    color: #606060;
    font-size: var(--small-font-size);
} 

.productModalGiveText {padding: 8px;display: block;text-align: center;color: rgb(50 177 71);font-size: 13px;font-weight: 500;line-height: 15px;border-radius: 7px;background: rgba(50,177,71,0.05);margin-bottom: 10px;}

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

.productModalImg {
	filter: drop-shadow(rgba(70, 82, 82, 0.8) 2px 2px 4px) drop-shadow(rgba(70, 82, 82, 0.8) -2px -2px 4px);
}

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

.ProductItemSelector-module__item:hover, .ProductItemSelector-module__item:focus {
    transform: translateY(-5px);
}

.RouletteContent-module__lineWrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    height: 290px;
    align-items: center;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0.6) 100%);
  	background: #2E3740;
}

.RouletteContent-module__lineWrapper::before,
.RouletteContent-module__lineWrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50%;
    z-index: 1;
}

.RouletteContent-module__lineWrapper::before {
    left: 0;
    background: linear-gradient(to right, rgb(29 30 35 / 50%) 0%, rgb(29 30 35 / 20%) 30%, rgba(0, 0, 0, 0) 100%);
}

.RouletteContent-module__lineWrapper::after {
    right: 0;
    background: linear-gradient(to left, rgb(29 30 35 / 50%) 0%, rgb(29 30 35 / 20%) 30%, rgba(0, 0, 0, 0) 100%);
}

.RouletteContent-module__rouletteItem {
    background: #ff000000;
}

.RouletteContent-module__rouletteItemImg {
    background: rgba(255, 255, 255, .03);
    box-shadow: inset 0 0 51pt 0 rgba(255,255,255,.05);
    backdrop-filter: blur(48px);
    border-radius: 10px !important;
    background-size: 400% 400%;
    border-radius: 20px;
    padding: 10px;
}

.RouletteContent-module__triangle.RouletteContent-module__bottom {
	display: none;
}

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

.RouletteContent-module__rouletteItemInfo {
    margin-top: 5px;
    color: var(--font-color-900);
    font-size: var(--small-font-size);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.RouletteContent-module__line {
    margin-top: 50px;
}

.productModalContainsItem {
    background: rgba(255, 255, 255, .03);
    box-shadow: inset 0 0 51pt 0 rgba(255,255,255,.05);
    backdrop-filter: blur(48px);
    border-radius: 10px !important;
    transition: 0.2s;
}

.productModalContainsItem:hover {
  	transform: translateY(-5px);
  	transition: 0.2s;
}

.productModalContainsItem > .productModalItemInfo > span  {
  	transition: 0.2s;
}

.productModalContainsItem:hover > .productModalItemInfo > span {
  	transition: 0.2s;
  	color: var(--default-color-hover) !important; /* Примените переменную цвета с !important, чтобы убедиться, что она перезаписывает другие стили */
}

.Toast-module__toast {
    background: #2E3740;
}

.gs-loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30000;
    user-select: none;
    transition: all .3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    background-color: #ffffff00;
}

.gs-loader__spinner {
    width: 48px;
    height: 48px;
    border: 3px dotted #FFF;
    border-style: solid solid dotted dotted;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    box-sizing: border-box;
    animation: rotations 2s linear infinite;
}
.gs-loader__spinner::after {
    content: '';  
    box-sizing: border-box;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border: 3px dotted red!important;
    border-style: solid solid dotted;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    animation: rotationsBack 1s linear infinite;
    transform-origin: center center;
}
    
@keyframes rotations {
    0% {
      	transform: rotate(0deg);
    }
    100% {
      	transform: rotate(360deg);
  }
} 
@keyframes rotationsBack {
    0% {
      	transform: rotate(0deg);
    }
    100% {
      	transform: rotate(-360deg);
    }
}  

.KitContent-module__containsItem {
    background: rgba(255, 255, 255, .03);
    box-shadow: inset 0 0 51pt 0 rgba(255,255,255,.05);
    backdrop-filter: blur(48px);
    border-radius: 10px !important;
}
    
    .Header-module__wrapper {
    background: rgba(255, 255, 255, .03);
    box-shadow: inset 0 0 51pt 0 rgba(255,255,255,.05);
    backdrop-filter: blur(48px);
    background-color: #2E3740;
    margin-bottom: 20px;
    padding: 0 15px;
    min-height: 50px;
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.KitContent-module__itemName {
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: center;
  	transition: 0.2s;
}

.KitContent-module__itemCount {
    border-radius: 0 10px 0 10px;
  	transition: 0.2s;
}

.KitContent-module__itemImg {
    padding: 15px;
}

.KitContent-module__containsItem:hover {
    transform: translateY(-5px);
  	transition: 0.2s;
}

.KitContent-module__containsItem:hover .KitContent-module__itemName  {
  	color: var(--default-color-hover);
  	transition: 0.2s;
}

.KitContent-module__containsItem:hover .KitContent-module__itemCount  {
  	color: var(--default-color-hover);
  	transition: 0.2s;
}

.ProfileNav-module__navItem:hover, 
.ProfileNav-module__navItem:focus, 
.ProfileNav-module__navItem.ProfileNav-module__active {
    background: rgba(255, 255, 255, .03);
    box-shadow: inset 0 0 51pt 0 rgba(255,255,255,.05);
    backdrop-filter: blur(48px);
    border-radius: 10px !important;
    color: var(--default-color);
    border-radius: 10px;
}

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

.ProfileNav-module__navItem > img {
    width: 20px;
  	opacity: 0.7;
    transition: 0.2s;
}

.ProfileNav-module__navItem:hover > img, 
.ProfileNav-module__navItem:focus > img, 
.ProfileNav-module__navItem.ProfileNav-module__active > img {
  	opacity: 1;
    transition: 0.2s;
}

.ProfileNav-module__body.boxBody {
    gap: 5px;
    border-radius: 0px 0px 10px 10px;
}

.ProfileNav-module__wrapper .boxFooter {
    padding: 0px;
}

.ProfileNav-module__logOut {
    width: 100%;
    margin-top: 20px;
}

.ProfileContent-module__title {
    display: block;
    margin-bottom: 10px;
    font-size: var(--small-font-size);
    color: var(--font-color-900);
}

.ProfileContent-module__infoLine+.ProfileContent-module__infoLine {
    border-top: 0px;
}

.ProfileContent-module__infoLineValue.ProfileContent-module__steamid,
.ProfileContent-module__infoLineValue {
    color: var(--default-color);
    transition: 0.2s;
  	display: flex;
    justify-content: flex-end;
}

.ProfileContent-module__infoLineValue.ProfileContent-module__steamid:hover,
.ProfileContent-module__infoLineValue:hover {
    color: var(--default-color-hover);
    transition: 0.2s;
}

.Selector-module__dropDownCurrentItem,
.ProfileContent-module__box {
    background: rgba(255, 255, 255, .03);
    box-shadow: inset 0 0 51pt 0 rgba(255,255,255,.05);
    backdrop-filter: blur(48px);
    border-radius: 10px !important;
}

.Selector-module__dropDownList {
    background: var(--accent-color-800);
    border-radius: 10px!important;
}

.ProfileContent-module__input {
    background: rgba(255, 255, 255, .03);
    box-shadow: inset 0 0 51pt 0 rgba(255,255,255,.05);
    backdrop-filter: blur(48px);
    border-radius: 10px !important;
    width: 100%;
    display: flex;
    height: 36px;
    border-radius: 2px;
    overflow: hidden;
    padding: 0 15px;
}

.BasketSearch-module__input,
.HistorySearch-module__input {
    background: rgba(255, 255, 255, .03);
    box-shadow: inset 0 0 51pt 0 rgba(255,255,255,.05);
    backdrop-filter: blur(48px);
}

.BasketTable-module__tableLine:nth-child(2n-1),
.HistoryTable-module__tableLine:nth-child(2n-1) {
    background: rgba(255, 255, 255, .03);
    box-shadow: inset 0 0 51pt 0 rgba(255,255,255,.05);
    backdrop-filter: blur(48px);
    border-radius: 10px !important;
}

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

@media (max-width: 980px){
    .Header-module__wrapper {
        padding: 0 10px;
    }
  
    .Servers-module__servers {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .Modules-container {
        align-items: flex-end;
    }
  
  	.newsContainer {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
  
    .News-module__container.news__promo {
        width: 100%!important;
    }

    .News-module__container.news__24h {
        width: 100%!important;
    }
  
  	.News-module__container {
        margin-bottom: 20px;
    }
  
  	.Products-module__wrapper {
        gap: 35px;
    }
  
  	.HeaderNav-module__link, 
  	.PlayerMenuMobile-module__profileLink,
  	.PlayerBalance-module__btn {
        font-weight: var(--light-font-weight);
        justify-content: flex-start;
        letter-spacing: 1px;
        display: flex;
    }
  
  	.PlayerMenuMobile-module__playerMenu {
        margin-bottom: 0px;
    }
  
    .PlayerMenuMobile-module__playerMenu {
        row-gap: 0px;
        margin: 10px 10px 10px 0px;
    }
}

@media (max-width: 670px){
    .boxBody.PlayerMenuMobile-module__body {
      	border-radius: 0px!important;
    }
  
    .News-module__container {
          height: 267px;
          display: flex;
          flex-direction: column;
          justify-content: center;
          margin-bottom: 10px;
          padding: 20px;
          gap: 10px;
      }

      .Shop-module__wrapper .boxFooter {
          display: none;
      }
}

@media (max-width: 600px){
  
    .Servers-module__server {
        margin: 0;
        width: 100%;
    }
  
  	.Modules-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }
  
    .Search-module__wrapper {
        max-width: unset;
    }
  
    .Servers-module__servers {
        flex-wrap: unset;
        margin: 0px;
        width: 100%;
        display: flex;
        align-items: center;
    }
}

.disclaimer {
    font-size: 12px;
    text-align: center;
    color: #535353;
}
/* соц-сети */

.rustage-socials {
    width: 100%;
    height: 50px;
}

.rustage-socials-grid{
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
  	gap: 0.5rem;
}

.rustage-socials-vk{
  	background: url(https://i.imgur.com/bcVi0qq.png) 50px 100% / cover no-repeat, linear-gradient(328deg, rgba(255, 255, 255, 0.04), rgba(255,255,255,0.08)) !important;
  	border: solid 1px #353535;
  	border-radius: 5px;
  	cursor: pointer;
  	transition:0.3s all;
}

.rustage-socials-vk:hover{
  	background: rgb(0 119 255 / 50%) !important;
  	border: solid 1px #0077FF;
  	border-radius: 5px;
  	cursor: pointer;
}

.rustage-socials-vk img {
    width: 127px;
    padding: 10px 10px 5px 10px;
}

.rustage-socials-telegram{
  	background: url(https://cdn.rustage.su/images/ds.svg) 50px 100% / cover no-repeat, linear-gradient(328deg, rgba(255, 255, 255, 0.04), rgba(255,255,255,0.08)) !important;
  	border: solid 1px #353535;
  	border-radius: 5px;
  	cursor: pointer;
  	transition:0.3s all;
}
.rustage-socials-telegram:hover{
  	background: rgb(36 161 222 / 50%) !important;
  	border: solid 1px #24A1DE;
  	border-radius: 5px;
  	cursor: pointer;
}
.rustage-socials-telegram img {
    width: 120px;
    padding: 10px 10px 5px 10px;
}
span.KitContent-module__itemCount {
    background: unset;
    color: #fff;
}

span.KitContent-module__itemName {
    background: unset;
    color: #fff;
}
.RouletteContent-module__rouletteItemInfo {
    gap: 0px;
    color: var(--font-color-900);
    font-size: var(--small-font-size);
    display: grid;
}

.RouletteContent-module__lineWrapper {position: relative;width: 100%;overflow: hidden;display: flex;height: 310px;align-items: center;background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 15%, rgba(0, 0, 0, 0) 85%, rgba(0, 0, 0, 0.6) 100%);background: #2E3740;}
.KitContent-module__containsItems {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

/* страница китов */

@media screen and (max-width: 768px) {
    .bf {
        top:auto;
        left: auto;
        transform: translate(0);
        position: relative;
        margin-left: 16px
    }
}

@media screen and (max-width: 576px) {
    .bf {
        margin-left:0;
        margin-top: 8px
    }
}

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

.bh {
    padding: 9px
}

.fh {
    position: relative;
    transition: transform .2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.fh.fi:hover {
    z-index: 6;
    transform: scale(1.1)
}

.fh.fj .fk {
    transition: opacity .2s ease;
    opacity: 0
}

.fh.fj:hover .fk {
    opacity: 1
}

.fh.fl .fm {
    transition: opacity .2s ease;
    opacity: 0
}

.fh.fl:hover .fm {
    opacity: 1
}

.fn {
    position: absolute;
    top: -5px;
    right: -5px;
    border-radius: 5px;
    padding: 3px 9px 1px;
    z-index: 5
}

.fn,.fn.fo {
    background: #2e3740;
}

.fn.fp {
    background: #ab712c
}

.fn.fq {
    background: #6c2cab
}

.fn.fr {
    background: #ab2c2c
}

.fn.fs {
    background: #bebebe
}

.ft {
    font-size: 12px;
    color: #fff
}

.fu,.fv {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.fv.fo {
    background: rgba(255, 255, 255, .03);
    box-shadow: inset 0 0 4.25pc 0 rgba(255,255,255,.05);
    backdrop-filter: blur(48px);
}

.fv.fp {
    background: linear-gradient(180deg,rgba(48,48,48,0) 27.91%,#a88031 113.2%),#2d2d2d
}

.fv.fq {
    background: linear-gradient(180deg,rgba(48,48,48,0) 27.91%,#6c2cab 113.2%),#2d2d2d
}

.fv.fr {
    background: linear-gradient(180deg,rgba(48,48,48,0) 27.91%,#ab2c2c 113.2%),#2d2d2d
}

.fv.fs {
    background: linear-gradient(180deg,rgba(48,48,48,0) 27.91%,#bdbdbd 113.2%),#2d2d2d
}

.fu.fo {
    background-blend-mode: normal,screen;
}

.fu.fp {
    background: radial-gradient(70% 70% at 3.85% 106.15%,#151515 0,transparent 100%),linear-gradient(180deg,rgba(48,48,48,0) 49.97%,#a88031 113.2%);
    background-blend-mode: normal,screen
}

.fu.fq {
    background: radial-gradient(70% 70% at 3.85% 106.15%,#151515 0,transparent 100%),linear-gradient(180deg,rgba(48,48,48,0) 49.97%,#6c2cab 113.2%);
    background-blend-mode: normal,screen
}

.fu.fr {
    background: radial-gradient(70% 70% at 3.85% 106.15%,#151515 0,transparent 100%),linear-gradient(180deg,rgba(48,48,48,0) 49.97%,#ab2c2c 113.2%);
    background-blend-mode: normal,screen
}

.fu.fs {
    background: radial-gradient(70% 70% at 3.85% 106.15%,#151515 0,transparent 100%),linear-gradient(180deg,rgba(48,48,48,0) 49.97%,#bdbdbd 113.2%);
    background-blend-mode: normal,screen
}

.fw {
    position: relative;
    z-index: 4
}

.fx {
    position: absolute;
    z-index: 5;
    bottom: 5px;
    left: 5px;
    right: 5px
}

.fk {
    color: #b6b6b6;
    text-transform: uppercase
}

.fk.fy {
    font-size: 12px
}

.fk.fz {
    font-size: 14px
}

.fk.fA {
    font-size: 15px
}

.fm {
    color: #fff;
    text-transform: uppercase
}

.fm.fy {
    font-size: 12px
}

.fm.fz {
    font-size: 14px
}

.fm.fA {
    font-size: 15px
}

.e5 {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center
}

.e6 {
    width: 48px;
    height: 48px;
    border: 5px solid #4ab939;
    border-bottom-color: #1c1c1c;
    border-radius: 50%;
    display: block;
    animation: jr 1s linear infinite
}

@keyframes jr {
    0% {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(1turn)
    }
}

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

.zk {
    background: #1c1c1c;
    border-radius: 10px;
    padding: 13px 0 9px;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    transition: all .2s ease
}

.zk.zl,.zk:hover {
    background: #4ab939;
    color: #1c1c1c
}

.zk+.zk {
    margin-top: 5px
}

.bb {
    background: rgba(255, 255, 255, .03);
    box-shadow: inset 0 0 51pt 0 rgba(255, 255, 255, .05);
    backdrop-filter: blur(48px);
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 15px;
}
.bd {
    background: #ab2c2c;
    margin-right: 10px;
}
.bd, .be {
    font-size: 12px;
    text-transform: uppercase;
    color: #fff;
    padding: 4px 18px;
    border-radius: 5px;
}
.bc {
    position: relative;
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.be {
    background: #2c6eab;
}
@media screen and (min-width: 1307px) { .bf {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap;
}
									 }
@media screen and (max-width: 576px) {
	.bc {
    flex-direction: column;
}
}
.HistorySearch-module__iconWrapper {
    background: rgba(255, 255, 255, .03);
    box-shadow: inset 0 0 51pt 0 rgba(255,255,255,.05);
    backdrop-filter: blur(48px);
    height: 100%;
    padding: 0 10px;
    /* background: var(--accent-color-800); */
    color: var(--font-color-700);
    display: flex;
    align-items: center;
    justify-content: center;
}
.Header-module__wrapper {
    /* background: rgba(255, 255, 255, .03); */
    box-shadow: inset 0 0 51pt 0 rgba(255,255,255,.05);
    backdrop-filter: blur(48px);
    /* background-color: #2E3740; */
    margin-bottom: 20px;
    padding: 0 15px;
    min-height: 50px;
    font-weight: 500;
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.boxHeader {
    background: #2E3740;
    border-radius: 8px 8px 0 0;
}
.boxBody:last-child {
    border-radius: 0px 0px 10px 10px;
}

.RouletteContent-module__footer.boxFooter {
    background: #2E3740;
}

.RouletteContent-module__lineWrapper {
    background: #2E3740;
}

.KitContent-module__footer.boxFooter {
    background: #2E3740;
}

.ItemContent-module__footer.boxFooter {
    background: #2E3740;
}

header.Header-module__wrapper {
    background: #2E3740;
}

.boxFooter.PlayerBalanceModal-module__footer {
    background: #2E3740;
}

button.PlayerBalance-module__btn {
    backdrop-filter: blur(48px);
    border-radius: 10px !important;
    color: #fff;
    background: rgba(255, 255, 255, .03);
}

.Product-module__wrapper {
    background: #2E3740;
}

.Button-module__btn.Button-module__accent:hover, .Button-module__btn.Button-module__accent:focus {
    background-color: var(--accent-color-900);
    border-color: transparent;
}
.TotalSum-module__inputWrapper {
    background: #2E3740;
    background: rgba(106, 106, 106, .3);
    border: none;
}

span.TotalSum-module__currency {
    background: rgba(255, 255, 255, .03);
}

button.Button-module__btn.Button-module__accent {
    background: rgba(255, 255, 255, .03);
    box-shadow: inset 0 0 51pt 0 rgba(255,255,255,.05);
    backdrop-filter: blur(48px);
    border-radius: 10px !important;
    border-color: transparent;
}

button.Button-module__btn.Button-module__accent:hover {
    background: rgb(0 0 0 / 3%);
    box-shadow: inset 0 0 51pt 0 rgba(255,255,255,.05);
    backdrop-filter: blur(48px);
    border-radius: 10px !important;
}
span.TotalSum-module__currency {
    background: rgba(255, 255, 255, .03);
}

.PlayerBalanceModal-module__inputWrapper {
    background: #1d1e2300;
}
button.Button-module__btn.Button-module__gray {
    background: rgba(255, 255, 255, .03);
    box-shadow: inset 0 0 51pt 0 rgba(255,255,255,.05);
    backdrop-filter: blur(48px);
    border-radius: 10px !important;
    border-color: transparent;
}
a.ProfileNav-module__navItem {
    background: rgba(255, 255, 255, .03);
    border-radius: 8px;
}

a.ProfileNav-module__navItem.ProfileNav-module__active {
    border-radius: 8px;
}

.CountSelector-module__inputWrapper {
    background: rgba(106, 106, 106, .3);
}

button.CountSelector-module__changeCountBtn.CountSelector-module__left {
    background: rgba(255, 255, 255, .03);
}

button.CountSelector-module__changeCountBtn.CountSelector-module__right {
    background: rgba(255, 255, 255, .03);
}

a.HeaderNav-module__link {
    background: rgba(255, 255, 255, .03);
    box-shadow: inset 0 0 51pt 0 rgb(255 255 255 / 0%);
    background: #ffffff00;
    backdrop-filter: blur(48px);
    border-radius: 10px !important;
    border-color: transparent;
    color: #FFF;
    color: #c8d1ff;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 23px;
}

a.HeaderButtons-module__container.Container__bonus {
    background: linear-gradient(64deg, rgb(255 165 0 / 10%) 0%, rgb(255 214 0 / 10%) 100%);
    box-shadow: inset 0 0 51pt 0 rgba(255,255,255,.05);
    backdrop-filter: blur(48px);
    border-radius: 10px !important;
    border-color: transparent;
}

a.HeaderButtons-module__container.Container__rules {
    background: linear-gradient(64deg, rgb(255 0 0 / 10%) 0%, rgb(255 0 0 / 10%) 100%);
    box-shadow: inset 0 0 51pt 0 rgba(255,255,255,.05);
    backdrop-filter: blur(48px);
    border-radius: 10px !important;
    border-color: transparent;
}

a.HeaderButtons-module__container.Container__promo {
    background: linear-gradient(64deg, rgb(179 56 255 / 10%) 0%, rgb(179 56 255 / 10%) 100%);
    box-shadow: inset 0 0 51pt 0 rgba(255,255,255,.05);
    backdrop-filter: blur(48px);
    border-radius: 10px !important;
    border-color: transparent;
}
.productModalDescription {
    list-style: inside;
    text-align: left;
    padding: 10px;
    margin-bottom: 10px;
    background-color: rgb(37 46 54 / 0%);
}

.desc__content {
    background: rgba(255, 255, 255, .03);
    box-shadow: inset 0 0 51pt 0 rgba(255, 255, 255, .05);
    backdrop-filter: blur(48px);
    border-radius: 10px !important;
    border-color: transparent;
}

.BasketTable-module__tableHeader {
    background-color: rgba(255, 255, 255, .03);
}

.BasketSearch-module__wrapper {
    width: 100%;
    display: flex;
    height: 40px;
    border-radius: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, .03);
}

.BasketSearch-module__iconWrapper {
    background: rgba(255, 255, 255, .03);
}

.HistoryTable-module__tableHeader {
    background-color: rgba(255, 255, 255, .03);
}

.HistorySearch-module__wrapper {
    width: 100%;
    display: flex;
    height: 40px;
    border-radius: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, .03);
}


form.PlayerBalanceModal-module__form:before {
       background-color: rgba(255,255,255,0.04);
       background-size: 400% 400%;
       border-radius: 15px;
       color: #ffffff;
       font-size: 16px;
       font-weight: 300;
       padding: 11px;
       width: 100%;
}

/* виджет вк дискорд */

.discord-header, .rustage-monitoring-header {
    display: flex;
    align-items: center;
    width: 100%;
    height: 40px;
    gap: .5rem;
}
.discord-image {
    background-image: url(https://cdn.rustage.su/images/shop/ui/discord-icon.png);
    background-position: center;
    background-size: contain;
    width: 25px;
    height: 25px;
    background-repeat: no-repeat;
}
.discord-title {
    font-size: 15px;
    font-weight: 400;
}

.discord-header {
    background: url(https://i.imgur.com/bcVi0qq.png) 50px 100% / cover no-repeat, linear-gradient(328deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.08)) !important;
    border: solid 1px #353535;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s all;
}
.discord-header:hover {
    background: rgb(0 119 255 / 50%) !important;
    border: solid 1px #0077FF;
    border-radius: 5px;
    cursor: pointer;
}
.discord-header {
    width: 127px;
    padding: 5px 10px 5px 10px;
}


a.NB {
    background: rgb(0 0 0 / 3%);
    box-shadow: inset 0 0 51pt 0 rgba(255, 255, 255, .05);
    backdrop-filter: blur(48px);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.NB:hover {
    color: #797979;
}

.NavDropDown-module__list.NavDropDown-module__active {
    background: #2E3740;
    box-shadow: inset 0 0 51pt 0 rgba(255,255,255,.05);
    backdrop-filter: blur(48px);
    border-radius: 10px !important;
    border-color: transparent;
}

.MsoNormal {
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    background: rgba(255,255,255,0.04);
    border-radius: 15px;
}

.boxBody.boxCustom {
    background: #2E3740;
}

/* киты */
.serverheader1 {
    text-align: center;
    color: #bbb;
    border-radius: 15px;
    margin-bottom: 15px;
    font-size: 20px;
}

.serverheader1 span:before {
    font-family: FontAwesome;
     content: '\f017'; 
    font-weight: 100;
    margin-right: 5px
}

.serverheader1 span {
    padding: 2px 12px 2px 12px;
    border-radius: 10px;
    color: white;
    text-transform: uppercase;
    font-size: 15px;
    background: linear-gradient(45deg, #3c6af2, #7785df, #6eade9, #5d64dd);
    background-size: 400% 400%;
    animation: gradient 5s ease infinite;
}

.serverheader {
    text-align: center;
    color: #bbb;
    border-radius: 15px;
    margin-bottom: 15px;
    font-size: 20px;
}

.serverheader span {
    background: #333;
    padding: 2px 12px 2px 12px;
    border-radius: 20px;
    color: white;
    text-transform: uppercase;
    font-size: 15px
}

.serverheader span:before {
    font-family: FontAwesome;
     content: '\f017'; 
    font-weight: 100;
    margin-right: 5px
}

.serverheader span {
    background: rgba(255, 255, 255, 0.04);
    padding: 2px 12px 2px 12px;
    border-radius: 20px;
    color: white;
    text-transform: uppercase;
    font-size: 15px;
}

/* пополнение */


.name-3T7FKQ {
    font-size: 15px;
    line-height: 20px;
    font-weight: 600;
    color: #23272a;
    color: var(--not-quite-black)
}

.category-1AFH8P {
    font-size: 13px;
    line-height: 18px;
    color: #99aab5;
    color: var(--greyple)
}

input::-webkit-outer-spin-button,input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0
}

a,button,input {
    outline: none
}

input {
    border-style: none
}

.modalpay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    outline: 0
}

.modalpay-backdrop.show {
    opacity: 0.6 !important
}

.modalpay-backdrop.show {
    opacity: 0.5
}

.modalpay-backdrop.fade {
    opacity: 0
}

.modalpay-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000
}

.modalpay-open .modalpay {
    overflow-x: hidden;
    overflow-y: auto
}

.modalpay.show .modalpay-dialog {
    -webkit-transform: translate(0);
    transform: translate(0)
}

.modalpay.fade .modalpay-dialog {
    -webkit-transition: -webkit-transform 0.3s ease-out;
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translateY(0%);
    transform: translateY(0%)
}

.modalpay-dialog {
    position: relative;
    width: auto
}

.modalpay .modalpay-body {
    background: #17171f;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(73, 77, 113, 0.06);
    width: 779px
}

.svgrep {
    position: absolute;
    top: 50%;
    left: 5px;
    width: 26px;
    height: 24px;
    margin-top: -14px;
}


.other_crypto {
    COLOR: #fff;
    font-weight: 600;
    font-size: 0.53em;
    letter-spacing: 0.05em
}

.refill-window__payment-label {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 4px 6px;
    font-size: 10px;
    background-color: #2d2d38;
    color: #fff;
    border-radius: 0 6px;
    transition: background-color 0.3s ease
}

@media screen and (max-width: 980px) {
    .modalpay-dialog.modalpay-lg {
        width:96%
    }

    .modalpay-body {
        width: 100% !important
    }

    .refill-window__payments {
        height: 50%
    }

    .refill-window__payment {
        flex: 0 0 20%
    }
}

@media screen and (max-width: 650px) {
    .modalpay-dialog.modalpay-lg {
        width:96%
    }

    .modalpay-body {
        height: 50% !important
    }

    .refill-window__payment-btn {
        height: 50px
    }

    .refill-window__payment {
        flex: 0 0 25%
    }
}

.refill-window__button-wrapper {
    flex-grow: 1
}

@media screen and (max-width: 450px) {
    .modalpay-dialog.modalpay-lg {
        width:96%
    }

    .modalpay-body {
        height: 50% !important
    }

    .refill-window__payment-btn {
        height: 50px
    }

    .refill-window__payment {
        flex: 0 0 35%
    }
}

.refill-window__payment-info {
    display: flex;
}

.refill-window__amount-input-wrapper {
    display: flex
}

.refill-window__pre-input {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 57px;
    height: 60px;
    background-color: #252530;
    border-right: 2px solid #1d1e29;
    border-radius: 15px 0 0 15px;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none
}

.refill-window__amount-input {
    width: 165px;
    height: 60px;
    padding: 0 17px;
    color: #c2c7d7;
    font-size: 18px;
    background-color: #252530;
    border-radius: 0 15px 15px 0
}

input.refill-window__amount-input::placeholder {
    color: #8b8e9e !important
}

.refill-window__amount-wrapper + .refill-window__button-wrapper {
    margin-left: 10px;
}

.refill-window__button {
    cursor: pointer;
    opacity: 1;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    padding: 25px 15px;
    color: #14141b;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    background-color: #6494ce;
    border-radius: 15px;
    border-style: none;
    transition: background-color 0.3s ease, opacity 0.3s ease
}

.refill-window__button:hover {
    background-color: #64ce81
}

.refill-window__button--disabled {
    cursor: not-allowed;
    opacity: 0.5;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    padding: 25px 15px;
    color: #14141b !important;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    background-color: #6494ce;
    border-radius: 15px;
    border-style: none;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none
}



#element1:hover,#element2:hover,#element3:hover,#element4:hover,#element5:hover,#element6:hover,#element7:hover,#element8:hover,#element9:hover,#element10:hover {
    background-color: #6494ce !important;
}

.modalpay-body button {
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none
}

#bonus-text {
    position: absolute;
    bottom: 100px;
    left: 50%;
    max-width: 100%;
    padding: 0 15px;
    overflow: hidden;
    color: #64ce82;
    font-size: 14px;
    white-space: nowrap;
    text-align: center;
    text-overflow: ellipsis;
    background-color: #17171f;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%)
}

.xbox_custom_rules li {
    list-style-position: inside !important;
    list-style: disc
}

.store-servers .nav-link:first-child {
    border-radius: 15px 0 0 15px
}

.store-servers .nav-link:last-child {
    border-radius: 0 15px 15px 0
}

.store-servers .nav-pills .nav-link.active:nth-child(3) {
    background: linear-gradient(to right, #4b95b5 0%, #7ce7ac 100%)
}

.store-servers .nav-pills .nav-link.active:nth-child(2) {
    background: linear-gradient(to right, #4b3cb9 0%, #7881e2 100%)
}

.store-servers .nav-pills .nav-link.active:nth-child(1) {
    background: linear-gradient(to right, #c3457d 0%, #de7b62 100%)
}

a.nav-link.text-md-center.active:hover {
    filter: hue-rotate(15deg)
}

button.btn.btn-secondary2:hover,button.btn.btn-secondary2:active,button.btn.btn-secondary2:focus {
    background: #bdbdbd;
    color: #545454;
    border-color: transparent !important;
    outline: none !important
}

@media (min-width: 992px) {
    .navbar-nav.float-lg-right .nav-item:first-child .nav-link:before {
        font-family:FontAwesome;
        content: "\f055";
        font-weight: 400;
        margin-right: 5px
    }

    .navbar-nav .nav-item .nav-link[href="/login"]:before {
        content: "\f1b6" !important
    }
}

.server-players {
    display: none
}

button#element5,button#element5:hover,button#element6,button#element6:hover,button#element7,button#element7:hover {
    background-color: #1d1d26 !important;
    opacity: 0.25;
    cursor: default;
    pointer-events: none
}

#element6 .refill-window__payment-icon {
    max-width: 70%
}

#element9 .refill-window__payment-icon {
    max-width: 99%
}

#vk_community_messages {
    z-index: 1000 !important;
    opacity: 0.95 !important
}

.wcm_button {
    transform: scale(0.9) !important
}

.wcm_button_wrapper,#wcm_button {
    opacity: 0.35 !important
}

.progress-bar.progress-bar-animated.progress-bar-striped.allPlayers {
    background: linear-gradient(90deg, rgba(69, 189, 75, 0.75) 0%, rgba(93, 189, 69, 0.75) 100%) !important
}

.progress-bar.progress-bar-animated.progress-bar-striped.joiningPlayers {
    background: linear-gradient(90deg, rgba(67, 97, 238, 0.45) 0%, rgba(67, 121, 238, 0.45) 100%) !important
}

.progress-bar.progress-bar-animated.progress-bar-striped.queuedPlayers {
    background: linear-gradient(90deg, rgba(208, 62, 51, 0.45) 0%, rgba(195, 47, 47, 0.45) 100%) !important
}

.product__quantity {
    background: none;
    font-weight: 500;
    font-size: 14px !important;
    position: absolute;
    left: 10px;
    top: 10px;
    color: rgba(242, 242, 242, .85) !important;
    text-shadow: 0px 0px 15px #1d1d1d;
    padding: 0 0px;
    opacity: 1;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    z-index: 3
}


.copybtn {
    font-size: 13px;
    font-weight: 500;
    font-style: normal;
    text-transform: none;
    text-align: center;
    letter-spacing: 0em;
    border-radius: 5px;
    padding: 7px 0px 9px;
    background: rgb(68, 93, 237);
    border-color: transparent;
    box-shadow: rgb(37, 52, 137) 0px 0px 20px 0px;
    cursor: pointer;
    transition: all 0.3s ease 0s;
    line-height: 1.1 !important;
    color: rgb(255, 255, 255) !important;
}

/* 5 товаров */
span.Product-module__name {
    position: absolute;
    color: #fff;
    text-overflow: ellipsis;
    text-shadow: unset;
    overflow: hidden;
    opacity: 1;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}


.Product-module__wrapper {
    /* background: var(--bg-loyout); */
    border-radius: 15px;
    margin: 8px;
    padding-bottom: 50px;
    overflow: visible;
    transition: transform 0.2s ease;
    position: relative;
}



.Product-module__name {
    transform: translateY(0);
    background: transparent;
    padding: 0 18px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color1);
    transition: transform 0.2s ease;
    max-width: 125px;
    color: #fff;
}


.Products-module__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

.Product-module__wrapper {
	width: calc(20% - 16px);
	transition: transform 0.2s ease;
}

.Product-module__wrapper::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 50px;
    height: 44px;
    filter: blur(52px);
    background: #71aaeb;
    transform: translate(-50%, -50%);
}


.Product-module__img {
  	position: relative;
  	z-index: 1;
}

.Product-module__wrapper:hover {
	transform: scale(1.1);
	transition: transform 200ms cubic-bezier(0.68,-0.55,0.27,1.55);
}

@media (min-width: 1380px) {
    .container {
        width: 1320px;
        max-width: 100%;
    } 
}

@media (min-width: 1180px) and (max-width: 1379px) {
  	.Product-module__wrapper {
      	width: calc(25% - 16px);
  	}
}

@media (min-width: 971px) and (max-width: 1179px) {
  	.Product-module__wrapper {
      	width: calc(35% - 28px);
  	}
  
    .Product-module__wrapper:nth-of-type(1), .Product-module__wrapper:nth-of-type(2), .Product-module__wrapper:nth-of-type(3), .Product-module__wrapper:nth-of-type(4) {
      width: calc(35% - 28px);
  	}
}

.discord {
    background: #2E3740;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.discord__titile {
    color: #FFF;
    font-size: 18px;
}

.discord__subtitle {
    margin-bottom: 10px;
}

.Button-module__btn.Button-module__accent.discord-btn {
    font-size: 18px;
    text-transform: uppercase;
    font-style: normal;
    background: rgb(68, 93, 237);
    border-color: transparent;
    box-shadow: rgb(37, 52, 137) 0px 0px 20px 0px;
    cursor: pointer;
    line-height: 1.1 !important;
    background-color: #5865f2;
}

.Button-module__btn.Button-module__accent.discord-btn {
    padding: 9px;
    display: block;
    text-align: center;
}

.discord__subtitle 
{
        font-size: 12px;
        margin-top: 5px;
}

a.Button-module__btn.Button-module__accent.discord-btn:hover {
    color: #14141b !important;
    background-color: #87faa6;
    cursor: pointer;
}
@media (min-width: 320px) and (max-width: 970px) {
    .Product-module__wrapper {
        width: calc(50% - 16px);
    }
}

@media (min-width: 768px) {
.ProductModal-module__dropdown {width: 800px;}

.ProductModal-module__dropdown .ProductModal-module__form {order:3;padding:10px;width:60%;}

.ProductModal-module__dropdown .SelectContent-module__selectorWrapper {
    max-width: 40%;
    min-width:40%;
    padding-top:10px;
}

.ProductModal-module__dropdown .boxBody {align-items:flex-start;display:flex;flex-wrap:wrap;justify-content:center}

.ProductModal-module__dropdown .productModalDescription {order:1;width: 100%;}

.ProductModal-module__dropdown .productModalProductAvailability {
order:4
}
  
.ProductModal-module__dropdown .productModalGiveText {
    order:5;
    width: 100%;
}

.ProductModal-module__dropdown .productModalImg {
    max-width: 401px;
    float: left;
    display: block;
    float: left;
    height: 264px;
    }
}
.SelectContent-module__footer.boxFooter {
    background: #2e3740;
}


.priv_discount {
    position: absolute;
    background: #1b1b1b;
    font-size: 14px;
    border-radius: 0px 10px 0px 10px;
    top: 0px;
    padding: 0px 8px 0px 10px;
    right: 0px;
    opacity: 1;
    font-weight: 400;
    z-index: 3;
    color: white;
    cursor: help
}

.priv_discount2 {
    position: absolute;
    background: rgba(33, 33, 33, 0.5);
    font-size: 14px;
    border-radius: 0px 10px 0px 10px;
    top: 0px;
    padding: 0px 8px 0px 10px;
    right: 0px;
    opacity: 1;
    font-weight: 400;
    z-index: 3;
    color: white;
    cursor: help
}
.container-oplata:hover .tooltiptext1 {
    visibility: visible;
    opacity: 1;
}

.productModalDescription .container-oplata {background: rgba(255, 255, 255, .03);box-shadow: inset 0 0 51pt 0 rgba(255, 255, 255, .05);border-radius: 10px !important;border-color: transparent;/* background: rgba(255, 255, 255, .03); */border-radius:12px;cursor:pointer;display:-webkit-inline-box;height:50px;margin-bottom:5px;padding:5px;right:-21110px;text-align:initial;transform:scale(1);transition:all .2s ease-out;width:100%}

.productModalDescription .container-oplata {display:flex;}

.productModalDescription .container-oplata:hover {
transform:scale(0.95)
}

.productModalDescription .container-oplata:last-child {margin-bottom:0!important;/* right:-11120px; */}

.container-oplata .tooltiptext1 {
background-color:rgba(0,0,0,0.5);
border-radius:6px;
color:#fff;
left:105%;
opacity:0;
padding:10px;
position:absolute;
text-align:center;
transition:opacity 220ms ease-out;
visibility:hidden;
width:170px;
z-index:1
}

.container-oplata .tooltiptext1::after {
border-color:transparent rgba(0,0,0,0.5) transparent transparent;
border-style:solid;
border-width:5px;
content:"";
margin-top:-5px;
position:absolute;
right:100%;
top:50%
}

.container-oplata:hover .tooltiptext1 {
opacity:1;
visibility:visible
}


p.title {
	position: relative;
	left: 5px;
}

.textContainer-oplata {
    font-size: 17px;
    color: var(--title-color);
    margin-bottom: 3px;
    font-weight: 500;
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}

.MonitoringServer-module__info {
    color: #fff;
    position: absolute;
    display: flex;
    margin-top: -23px;
    margin-left: 10px;
    margin-right: 10px;
}

.MonitoringServer-module__progressWrapper {.MonitoringServer-module__progressBarWrapper {
    background-color: rgb(223 223 223 / 7%);
    border-radius: 20px;
    height: 20px;
};
.MonitoringServer-module__progressBarWrapper {
    background-color: rgb(223 223 223 / 7%);
    border-radius: 20px;
    height: 20px;
};
}
.PlayerBalance-module__btn:hover,.PlayerBalance-module__btn:focus {
    backdrop-filter: blur(48px);
    border-radius: 10px !important;
    opacity: 0.5;
    color: #fff;
}
.Cookie-module__wrapper {
    background: #2E3740;
}

.Cookie-module__icon {
    fill: #fff;
}

.MonitoringServer-module__progressInfo {
    background: #2E3740;
}

.MonitoringServer-module__progressInfo:before {
    border-color: #2e3740 transparent transparent transparent;
}

.Product-module__count {
    background: none;
    font-weight: 500;
    font-size: 14px !important;
    position: absolute;
    left: 10px;
    top: 10px;
    color: rgba(242, 242, 242, .85) !important;
    text-shadow: 0px 0px 15px #1d1d1d;
    padding: 0 0px;
    opacity: 1;
    -webkit-transition: opacity 0.4s;
    transition: opacity 0.4s;
    z-index: 3;
}
.daily-bonus-product__time {
    display: flex;
    align-items: center;
    letter-spacing: 1px;
    font-weight: 500;
}
.daily-bonus-product__time svg {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}
.daily-bonus-product__time svg path {
    stroke: #fff;
}
.bg1 {
    display: grid;
    grid-gap: 10px;
    gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); /* Стиль для компьютеров */
}

/* Адаптация для мобильных устройств */
@media (max-width: 768px) { /* максимальная ширина 768px для мобильных */
    .bg1 {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); /* Стиль для мобильных */
    }
}
.dropdown-menu {
    background: none;
    overflow: hidden;
    padding: 0px;
    border-radius: 0px;
    margin: 0px;
    color: #a1a1a1
}

.dropdown-menu .dropdown-item:hover {
    box-shadow: none;
    color: #f4ebe9 !important;
    background-color: #b18e3233 !important;
}

.dropdown-menu .dropdown-item {
    color: #6a6a6a;
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    padding: 12px 14px;
    border-radius: 7px;
    background: rgb(43, 43, 43);
    transition: all .15s ease;
    background-color: rgb(56 116 255 / 10%);
    color: rgb(56 180 255);
    padding: .5rem 1rem;
}

.dropdown-menu button {
    color: #a1a1a1;
    padding: unset;
    line-height: 24px;
    transition: 0.1s
}

.dropdown-menu button a {
    color: #a1a1a1;
    display: block;
    padding: 5px 1.5rem;
    transition: all 0.1s
}

.dropdown-menu button a:hover {
    color: white
}
.dropdown-menu {
    display: flex;
    column-gap: 10px;
    flex-wrap: wrap;
    row-gap: 10px;
    margin: 20px;
    border: none;
}
@media screen and (max-width: 980px) { .dropdown-menu {
    margin: 0px;
    border: none;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0px -10px 10px;
    padding: 10px;
}
}
/* Анимация для элементов dropdown */
.dropdown-item {
    animation: zoomIn 0.2s; /* базовая анимация */
}

.dropdown-item:nth-child(3n) {
    animation-duration: 0.4s;
}

.dropdown-item:nth-child(4n) {
    animation-duration: 0.6s;
}

.dropdown-item:nth-child(5n) {
    animation-duration: 0.8s;
}

.dropdown-item:nth-child(6n) {
    animation-duration: 1s;
}

span.KitContent-module__itemCount {
    padding: 2px 14px;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    color: #f4ebe9;
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: rgba(165, 165, 165, 0.2);
}

.ProfileContent-module__body.boxBody:after {
    animation: gradient 5s ease infinite;
    padding: 11px;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    font-weight: 300;
    margin-top: 20px;
}

/* FAQ стили */
summary {
    background: rgba(255, 255, 255, .03);
    box-shadow: inset 0 0 51pt 0 rgba(255, 255, 255, .05);
    backdrop-filter: blur(48px);
    cursor: pointer;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    margin: 10px;
    user-select: none;
}

/* Стиль для элементов высоты */
hight {
    background-color: #14161a;
    border: 1px solid #2f2f2f;
    border-radius: 0 0 5px 5px;
    height: 0;
    margin-inline: 40px;
    margin-top: -2px;
    overflow: hidden;
}

/* Заголовок текста */
.text.is-header {
    text-align: center;
    border-bottom: 4px solid #71aaeb;
    font-size: 48px;
    padding-bottom: 4px;
    text-transform: uppercase;
    color: #fff;
}

/* Стили для социальных сетей */
.xbox {
    display: flex;
    padding: 0px;
    flex-direction: column;
}

.discord-b,
.vk-b {
    background-color: #2E3740;
    border-radius: 15px;
    color: #fff;
    width: 140px;
    height: 66px;
    background-size: contain;
    background-position: center;
    cursor: pointer;
    transition: 0.5s;
}

.discord-b {
    background-repeat: no-repeat;
    background-image: url('https://pic.moscow.ovh/images/2022/07/22/968d01ac5f1fa2ad6a8fc3b910fd6936.png');
}

.vk-b {
    background-repeat: no-repeat;
    background-image: url('https://pic.moscow.ovh/images/2022/07/22/210cf5d41bf06d2c5a2af68de984d406.png');
}

/* Эффекты при наведении */
.vk-b:hover {
    transition: 0.3s;
    background-color: rgba(39, 39, 39, .75);
    text-decoration: none !important;
    box-shadow: 0 5px 0 #4891dc;
    transform: translateY(-4px);
}
.discord-b:hover {
    transition: 0.3s;
    background-color: rgba(39, 39, 39, .75);
    text-decoration: none !important;
    box-shadow: 0 5px 0 #6548dc;
    transform: translateY(-4px);
}

/* FAQ */

@font-face {
    font-family: FontAwesome;
    src: url(//static.moscow.ovh/cdn/store/3.7.1/b06871f281fee6b241d60582ae9369b9.ttf) format("truetype");
}

*:before {
    font-family: var(--default-font-family), normal normal normal 14px/1 FontAwesome;
    -webkit-font-smoothing: none;
    -moz-osx-font-smoothing: grayscale;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-info-circle:before {
    content: "\F05A";
}

.fa-ticket:before {
    content: "\F145";
}

.commandblock {
    padding: 12px 8px 4px 20px;
}

.commandblock.info {
    padding: 16px 8px 0 20px;
}

.commandblock .command {
    background-color: rgba(116, 143, 184, 0.3);
    border-radius: 5px;
    padding: 4px 10px;
    color: #fff;
    user-select: all;
}

/* Календарь привилегий */
.test-body {
    padding: 10px;
    margin: 10px;
}

a.permission {
    background: rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 0 51pt rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(48px);
    border-radius: 10px;
    color: #FFF;
    margin: 10px;
    font-weight: var(--light-font-weight);
    padding: 10px 15px;
    position: relative;
}

/* Стили для мобильных версий (ширина экрана меньше 768px) */
@media (max-width: 768px) {
    .HeaderButtons-module {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0;
    }

    .HeaderButtons-module a {
        flex: 1 1 50%;
        margin-bottom: 10px;
        text-align: center;
    }
}

aside.Widgets-module__wrapper.Widgets-module__rightSide {
    padding: 15px 0;
}

main.container.CustomPage-module__wrapper.CustomPage-module__rightSide,
main.container.ProfileBasket-module__wrapper,
main.container.ProfileHistory-module__wrapper,
main.container.Profile-module__wrapper {
    padding: 10px;
}

.discord-b {
	    margin: 0 2px;
	    border-radius: 15px 0px 0px 15px;
}

.vk-b {
    margin: 0 2px;
    border-radius: 0px 15px 15px 0px;
}

.animated {
    margin: 5px;
    background-color: #2e3740;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    box-sizing: border-box;
    justify-content: center;
}

.animated1 {
    background-color: #2e3740;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    box-sizing: border-box;
    justify-content: center;
}

.xbox__discord {
    text-align: center;
    background-color: #007bff;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
}

.xbox.xbox_custom {
    display: flex;
    padding: 0px;
    flex-direction: row;
}

.ProfileContent-module__body.boxBody {
    border-radius: 10px;
}

.button-primary {
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    border: none;
    color: var(--hrust-paragraph-color);
    padding: 7px 14px;
    border-radius: 7px;
    font-size: 15px;
    transition: .2s all ease;
    font-family: inherit;
}
    
a.steam_faq:hover {
    background-color: #494848;
}

a.steam_faq {
        padding: 4px 8px;
        cursor: pointer;
        border: none;
        background-color: #2E3740;
        box-shadow: inset 0 0 51pt 0 rgba(255, 255, 255, .05);
        backdrop-filter: blur(48px);
        color: var(--hrust-paragraph-color);
        padding: 7px 14px;
        border-radius: 7px;
        align-items: center;
        font-size: 15px;
        justify-content: center;
        transition: .2s all ease;
        font-family: inherit;
}

.button-primary:hover {
    background-color: #0056b3;
}

.ProfileNav-module__name {
    color: #c8d1ff;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 23px;
}

.ProfileNav-module__name:hover {
    color: #919191;
}

a.user-avatar-link {
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    white-space: nowrap;
    transition: all .1s ease;
    border: 2px solid #696969;
}

a.user-avatar-link:hover {
    background-color: #00dfb500;
    border: 2px solid#2c8ed8;
}

.xbox__discord:hover {
    background-color: #0056b3;
}



.knowledge__element_answer {
    background: rgba(255, 255, 255, .03);
    box-shadow: inset 0 0 51pt 0 rgba(255, 255, 255, .05);
    backdrop-filter: blur(48px);
    border-radius: 10px;
    padding: 10px;
}

.NavDropDown-module__wrapper {
    color: #c8d1ff;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 23px;
}

.notice-container {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 12px;
    background-color: #2e3740;
}
.fa-info:before {
    content: "\F05A";
}

.notice,.notice-content {
    flex: 1 1 auto;
    font-size: 14px;
    font-weight: 500;
    padding: 0;
}

.notice-container {
    margin: 20px 0;
    padding: 15px; 
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
}

i.fa--xf.far.fa-info {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

red7 
{
    color: #88c3ff;
    padding: 0;
    /* font-size: 14px; */
    font-weight: 600;
    line-height: 23px;
}

.ProductItemSelector-module__items {
    grid-template-columns: repeat(3, minmax(50px, 1fr));
}

.d-flex.promos.mt-4 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-radius: 10px;
    will-change: transform;
    background: rgb(255 255 255 / 10%);
    backface-visibility: hidden;
    margin: 10px;
}

.MonitoringServer-module__progressBar {
    background-image: linear-gradient(90deg, #2b2c3300 var(--online-players), #e7772500 var(--online-players), #e7772500 var(--joining-players), #a8201a00 var(--joining-players), #a8201a00 var(--queued-players), transparent var(--queued-players));
}

a.PlayerMenu-module__profileLink {
	display: none;
}

._navbar__input__container_17ko5_100 {
    padding: 10px;
    background-color: rgb(255 255 255 / 10%);
    box-shadow: inset 0 0 51pt 0 rgba(255, 255, 255, .05);
    backdrop-filter: blur(48px);
    /* background: #1c1c1c; */
    border-radius: 12px;
    /* padding: 1rem; */
    display: flex;
    flex-direction: column;
    /* gap: 1rem; */
}

.back_pay {
    background: #2e3740;
    border-radius: 0px;
}

a.steam_faq:hover {
    filter: brightness(0.8);
    /* background-color: #494848; */
}

blockquote {
    /* padding: 12px 8px 4px 20px; */
    background-color: rgb(246 185 73 / 5%);
    /* border-radius: 2px; */
    color: var(--orange-color);
    padding: 3px 10px;
    border-radius: 4px;
    border-left: none;
    inline-size: fit-content;
    margin: 10px;
}
blockquote span {
    color: #f6b949;
}

/* FAQ PAGE БОНУС */

/** about-bonus */
.about-bonus {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.about-bonus__col {
    width: calc(50% - 20px);
    backdrop-filter: blur(10px);
}

.about-bonus__left {
    padding: 20px;
    background-color: var(--color2);
    border-radius: 10px;
}

.about-bonus__left-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.about-bonus__left-subtitle {
    font-size: 16px;
    margin-bottom: 15px;
}

.about-bonus__bonus {
    padding: 10px;
    background-color: rgb(255 255 255 / 10%);
    border-radius: 8px;
}

.about-bonus__bonus:not(:last-of-type) {
    margin-bottom: 15px;
}

.about-bonus__right {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    z-index: 1;
    padding: 56px 40px;
}

.about-bonus__right-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-bonus__right-tag {
    background-color: rgb(46, 55, 64);
    padding: 10px 20px;
    border-radius: 8px;
    width: max-content;
}

.about-bonus__right-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    z-index: -1;
}

@media (min-width: 0) and (max-width: 680px) {
    .about-bonus {
        flex-wrap: wrap;
    }

    .about-bonus__col {
        width: 100%;
    }
}

.about-bonus__right-tag {
    user-select: text; /* Позволяет выделение текста */
}

/** about-plugins */
.about-plugins {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.about-plugins__plugin {
    padding: 14px;
    width: calc(33.33333% - 20px);
    background-color: rgb(255 255 255 / 10%);
    border-radius: 8px;
    text-align: center;
}

.about-plugins__name {
    margin-bottom: 10px;
}

.about-plugins__img {
    display: block;
    width: 100%;
    height: 100%;
    height: 130px;
    object-fit: cover;
    margin-bottom: 10px;
    border-radius: 6px;
}

.about-plugins__btn {
    display: block;
    text-decoration: none;
    width: 100%;
    border-radius: 6px;
    background-color: #2E3740;
    padding: 10px;
    transition: filter 0.2s ease;
}

.about-plugins__btn:hover {
    filter: brightness(0.8);
}

@media (min-width: 540px) and (max-width: 740px) {
    .about-plugins__plugin {
        width: calc(50% - 20px);
    }
}

@media (min-width: 0) and (max-width: 539px) {
    .about-plugins__plugin {
        width: 100%;
    }
}

button#copyButton:hover {
    filter: brightness(0.8);
}

/* копировать префикс и промокод */
p#promo {
    user-select: text;
}

.about-bonus__right-tag {
    user-select: text; /* Позволяет выделение текста */
}

/* FAQ */

p#connect {
    user-select: text;
    background: #2e3740;
    border: 10px;
}

.servers {
    text-align: center;
    margin: 15px;
}

server {
    color: #88c3ff;
    padding: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 23px;
    text-align: center; /* Горизонтальное центрирование текста */
    display: block; /* Убедитесь, что элемент ведет себя как блочный элемент */
}

/* выбрать дни */


.dopus {
    /* margin-top: 15px; */
    display: flex;
    justify-content: space-between;
    /* margin: 10px; */
}

#dop_1 {
    animation: zoomIn 2.4s;
}


.dopus .category-user {
    font-size: 12px
}

.dopus .name-user {
    font-size: 14px
}

.dopus .priv_discount {
    font-size: 14px;
    padding: 1px 5px 1px 5px;
    cursor: pointer;
    background: linear-gradient(45deg, #3c6af2, #7785df, #6eade9, #5d64dd);
    background-size: 400% 400%;
    animation: gradient 5s ease infinite;
}


a#container-oplata-prem-14d {
    transition: all ease-out 0.2s;
    cursor: pointer;
    width: 100%;
    /* height: 70px; */
    /* background: #333; */
    -webkit-box-align: center;
    margin: 10px;
}



.textContainer-oplata {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-evenly;
}

/* описание суток в привилегии */

a#container-oplata-prem-30d {
    margin: 10px;
    /* padding: 10px; */
    width: 100%;
}
.textContainer-oplata {
display: flex
}


.desc__content_perms {
    background: rgba(255, 255, 255, .03);
    box-shadow: inset 0 0 51pt 0 rgba(255, 255, 255, .05);
    backdrop-filter: blur(48px);
    border-radius: 10px !important;
    border-color: transparent;
    padding: 10px;
    border-radius: 8px;
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
    margin-bottom: 5px;
}


p.day_perms {
    text-align: center;
}

/* steam skin */

.icon-user-oplata {
    width: 40px;
    height: 40px;
    margin-right: 16px;
    border-radius: 0px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
}

.ModalLayout-module__modal.PlayerBalance-module__modal {
    background-color: #2E3740;
    border-radius: 10px;
    padding: 5px;
}

/* пополнение */

.payment-block {
    height: 30px;
    text-align: justify;
    text-align-last: justify;
    margin: 0 auto 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.payment-type {
    text-align: left;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    vertical-align: middle
}

.payment-block-visa {
    background-image: url("https://gspics.org/images/2023/05/12/0RcQWL.png");
    width: 38px;
    height: 100%;
}

.payment-block-mastercard {
    background-image: url("https://gspics.org/images/2023/05/12/0RccEX.png");
    width: 24px;
    height: 100%;
}

.payment-block-mir {
    background-image: url("https://gspics.org/images/2023/05/12/0RchUi.png");
    width: 33px;
    height: 100%;
}