/* Version: 3.0 */
/* Author code: wakanda */
/* Author design: unknown */
/* -------------------------------- */
/* Design rights: YRS inc 2021 - 2024 (c) */
/* Link: https://vk.com/yrsrust */

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

/* Setting's */

:root {
	--default-font-familt: "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;
  	
  	--over-big-font-size: 30px;
  	--big-font-size: 24px;
  	--small-font-size: 14px;
	--over-small-font-size: 12px;
  
  	--secondary-color: #b8a3a3;
  	--price-color: #2a2b31;
  	--cancel-color: #44242e;
  	--title-color: #e3e3e3;
  	--description-color: #c0c0c0;
  
  	--progress-bar-1: rgb(62, 93, 173);
  	--progress-bar-1-hover: rgb(84 121 217);
  	--progress-bar-2: rgb(173, 62, 62);
  	--progress-bar-2-hover: rgb(223 80 80);
}

: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;
}

/*-----------*/
/* Secondary CSS */

* {
    -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-font-color);
}

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

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

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

.container {
    max-width: 1427px;
  	width: auto;
}

/*-----------*/
/* Custom CSS */

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

.Container__promo .content__image {
    box-shadow: 0px 0px 50px 0px rgb(81, 57, 154);
    background: rgb(110, 80, 204);
}

.Container__bonus .content__image {
    box-shadow: 0px 0px 50px 0px rgb(157 130 46);
    background: rgb(197, 165, 62);
}

.newsContainer {
    display: flex;
    flex-direction: row;
  	gap: 30px;
}

.News-module__container {
    height: 267px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 50px;
    padding: 40px;
    gap: 10px;
}

.news__promo {
	background-image: url(https://gspics.org/images/2024/03/01/0eUNns.png);
  	background-size: cover;
}

.news__24h {
	background-image: url(https://gspics.org/images/2024/03/02/0eRg8Z.png);
  	background-size: cover;
}

.news__promo>.title {
  	width: 275px;
}

.news__24h>.title {
  	width: 350px;
} 

.News-module__container>.description {
    color: var(--secondary-color);
    width: 255px;
}

.News-module__container>.title {
    font-size: var(--over-big-font-size);
    color: var(--default-color-hover);
  	font-weight: var(--default-font-weight);
}

.News-module__container>p>span{
	font-weight: var(--bold-font-weight);
}

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

.news__24h>.custom__btn {
  animation: hoverAnimationNews24  3s infinite;
  transition: box-shadow 0.2s, background 0.2s;
}

.news__promo>.custom__btn {
  animation: hoverAnimationNewsP  3s infinite;
  transition: box-shadow 0.2s, background 0.2s;
}

@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 rgba(62, 42, 147, 20%);
      	background: rgb(75, 50, 184);
      	color: var(--default-color);
    }
    50% {
      	box-shadow: 0px 4px 30px 0px rgba(62, 42, 147, 80%);
      	background: rgb(106 79 219);
      	color: var(--default-color-hover);
    }
    100% {
      	box-shadow: 0px 4px 30px 0px rgba(62, 42, 147, 20%);
      	background: rgb(75, 50, 184);
      	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: 1px dashed var(--accent-color-800); 
  	width: 48px; 
  	height: 48px;
  	transition: 0.2s;
}

.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: var(--bg-color-700);
  	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;
}

/*-----------*/
/* Main CSS */

.Banner-module__img,
.LangSwitcher-module__currentLang,
.Header-module__logoWrapper,
.Shop-module__header,
.Categories-module__categories,
.Product-module__name,
.MonitoringWidget-module__header,
.Widgets-module__widgetWrapper .boxFooter,
.MonitoringServer-module__icon,
.MonitoringServer-module__progressInfo,
.productModalProductAvailability,
.productModalItemCount,
.ProfileNav-module__header.boxHeader,
.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,
.ProfileNav-module__img,
.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,
.boxBody:last-child {
	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 {
    background: var(--bg-color-700);
    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;
}

.HeaderNav-module__link, .PlayerMenuMobile-module__profileLink, .PlayerMenuMobile-module__loginLink {
    font-weight: var(--light-font-weight);
    padding: 10px 15px;
    position: relative;
    transition: 0.2s;
    background: #2c226e;
    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 {
    color: var(--default-color-hover);
    transition: 0.2s;
	background: #3b2f8f;
}

.SupportLink-module__link {
    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;
    min-width: 125px;
}

.Search-module__wrapper {
    margin-top: 0px;
    height: 54px;
    max-width: 280px;
  	background: #2c226e;
}

.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: #3b2f8f; 
  	color: var(--default-color-hover);
}

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

.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 {
    position: absolute;
    bottom: 0;
    top: unset;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background: var(--price-color);
  	font-size: var(--default-font-size);
    font-weight: var(--default-font-weight);
}

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

.Product-module__wrapper:hover {
    background: var(--price-color);
    transform: translateY(-10px);
    transition: 0.2s;
    color: var(--default-color);
  	box-shadow: 0px 10px 15px 1px rgb(93 79 181 / 30%);
}

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

.MobileCopyright-module__wrapper {
  	display: flex;
    flex-direction: column;
	margin-top 20px;
    font-size: var(--default-font-size)!important;
  	background-color: var(--accent-color-800)!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 {
    top: -10px;
    right: -10px;
    width: 60px;
    height: 60px;
    line-height: 40px;
    border-radius: 50%;
    padding: unset;
    text-align: center;
    font-size: 15px;
    z-index: 1;
    transition: background-color 0.15s;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--default-font-size);
    font-weight: var(--default-font-weight);
    border: 5px solid #14151a;
}

.MonitoringServer-module__wrapper {
    background: var(--bg-color-700);
    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: 15px;
    background-color: #181818;
}

.MonitoringServer-module__progressBarAnim {
    box-shadow: unset;
    background: var(--progress-bar-1);
  	transition: 0.2s;
}

.MonitoringServer-module__progressBarAnim:hover {
  	background: var(--progress-bar-1-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);
}

.Widgets-module__widgetWrapper+.Widgets-module__widgetWrapper {
    margin-top: -1px;
}

.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 {
    width: 120px;
    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 {
    color: var(--default-color-hover)!important;
    background-color: var(--cancel-color);
    border: 2px solid var(--cancel-color);
}

.PlayerBalanceModal-module__currency,
.PlayerBalanceModal-module__input {
    background: var(--accent-color-800);
}

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

.TotalSum-module__inputWrapper,
.CountSelector-module__inputWrapper {
    border: 2px solid var(--accent-color-800);
}


.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 {
    font-size: var(--small-font-size);
} 

.productModalGiveText {
    color: rgb(173, 173, 173);
    border: 2px dashed var(--bg-color-800);
    padding: 2%;
    border-radius: 10px;
    background: var(--accent-color-800);
    font-size: var(--over-small-font-size);
}

.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: var(--bg-color-700);
}

.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) 0%, rgb(29 30 35 / 50%) 30%, rgba(0, 0, 0, 0) 100%);
}

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

.RouletteContent-module__rouletteItem {
    background: #ffffff00;
}

.RouletteContent-module__rouletteItemImg {
    transform: skewY(-2deg);
    background-color: var(--bg-color-700);
    background-size: 400% 400%;
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.2);
}

.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: 15px;
    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-color: var(--accent-color-800);
  	transition: 0.2s;
}

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

.productModalContainsItem > .productModalItemInfo > span  {
  	transition: 0.2s;
  	color: var(--default-color) !important;
}

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

.Toast-module__toast {
    background: var(--bg-color-700);
}

.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 {
    border-radius: 10px;
    background-color: var(--accent-color-800);
  	transition: 0.2s;
}

.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 {
    color: var(--default-color);
    background: var(--accent-color-800);
    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: 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__box {
    padding: 0 4px;
}

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

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

.ProfileContent-module__input {
    width: 100%;
    display: flex;
    height: 36px;
    border-radius: 2px;
    overflow: hidden;
    padding: 0 15px;
    background: var(--accent-color-900);
}

.BasketSearch-module__input,
.HistorySearch-module__input {
    background: var(--accent-color-800);
}

.BasketTable-module__tableLine:nth-child(2n-1),
.HistoryTable-module__tableLine:nth-child(2n-1) {
    background-color: var(--accent-color-800);
    border: 2px dashed var(--bg-color-700);
}

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

/*-----------*/
/* Media CSS */

@media (max-width: 1170px){
    .Product-module__wrapper {
        height: 250px;
    }
}

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

@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){
    .Product-module__wrapper {
        height: 300px;
    }
  
    .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;
    }
}

@media (max-width: 420px){
    .Product-module__wrapper {
        height: 200px;
    }
}

/*psxmn*/