@import url('/template/assets/style/bebas.css');

* {
	margin: 0;
	padding: 0;
	list-style-type: none;
	box-sizing: border-box;
	font-family: 'Roboto Condensed', sans-serif;
}
input,
textarea {
	outline: none;
	resize: none;
	border: none;
}
input[type="number"] {
	-moz-appearance: textfield;
	-webkit-appearance: textfield;
	appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	display: none;
}
input[type="range"]::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 0;
	height: 0;
}

input[type="range"]::-moz-range-thumb {
	width: 0;
	height: 0;
	border: none;
}

input[type="range"]::-moz-range-track {
	background: transparent;
}
html {
  scroll-behavior: smooth;
}
a {
	text-decoration: none;
	transition: all .2s ease;
}
button {
    background: transparent;
    border: none;
    cursor: pointer;
}

#preloader {
    position: fixed;
    inset: 0;
	background-color: #1b1b1b;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    background-image: url(/template/img/logotype.svg);
    width: 8rem;
    height: 8rem;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.6;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

body {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-bottom: 0rem;
    position: relative;
	background-color: #1b1b1b;
    font-size: 15px;
	overflow-x: hidden;
}
body.modal-open {
    overflow: hidden;
}
body::-webkit-scrollbar {
  width: 0;
}

::-webkit-scrollbar {
  width: 0;
}

.hidden {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    transition: all .2s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.hidden::after {
	background-image: url(https://files.facepunch.com/garry/1b1011b1/test.png?1=);
    content: " ";
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 500;
    pointer-events: none;
    opacity: .6;
}
.hidden::before {
	background-image: url(/template/img/logotype.svg);
	content: " ";
	opacity: 0.05;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 700px;
	position: fixed;
	top: 8%;
	left: 3%;
}

.navigated {
    background-color: #222;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .3);
}
.navigated>.flex {
    z-index: 2;
    position: relative;
    height: 4rem;
    width: 1400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}
.navigated>.flex>.menu>ul {
    display: flex;
    height: 100%;
    float: left;
}
.navigated>.flex>.menu>ul>a {height: 100%;width: 100%;display: flex;align-items: center;color: #d09b43;font-size: 1.8rem;font-family: "Bebas Neue";font-weight: 600;padding-right: 1rem;}
.navigated>.flex>.menu>ul>a:hover {transform: scale(1.05);}
.navigated>.flex>.menu>ul>li>a {
	height: 100%;
	width: 100%;
	display: flex;
	align-items: center;
	padding: 0 1rem;
	color: #bab1a8;
	font-size: 20px;
	font-family: "Bebas Neue";
	font-weight: 600;
}
.navigated>.flex>.menu>ul>li>a:hover, .navigated>.flex>.menu>ul>li>a.active {
    color: #e4dad1;
    background: rgba(65,63,61,.5);
}
.navigated>.flex>.menu>.social {
    padding-left: 2rem;
}
.navigated>.flex>.menu>.social>li>a {
    padding: 0 .5rem;
}
.navigated>.flex>.menu>.social>li>a>svg {
    width: 1.5rem;
    height: 1.5rem;
}
.navigated>.flex>.user-overlow {}
.navigated>.flex>.user-overlow>.logauth {
    height: 3rem;
    display: flex;
    gap: .5rem;
    align-items: center;
    padding: 0 1rem;
    color: #e4dad1;
    font-size: 20px;
    transition: .2s;
    background-color: #cd412b;
    border-radius: .5rem;
}
.navigated>.flex>.user-overlow>.logauth>svg {
    width: 2rem;
    height: 2rem;
}
.navigated>.flex>.user-overlow>.logauth>span {
    font-family: "Bebas Neue";
}
.navigated>.flex>.user-overlow>.logauth:hover {
    background-color: #b83a27;
    color: #fff;
}
.navigated>.flex>.user-overlow>.user {
    display: flex;
    height: 4rem;
    width: 15rem;
    position: relative;
    color: #e4dad1;
    align-items: center;
    gap: .5rem;
    border-radius: .5rem;
}
.navigated>.flex>.user-overlow>.user>.us-img {
    height: 100%;
}
.navigated>.flex>.user-overlow>.user>.us-info {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    width: 8rem;
}
.navigated>.flex>.user-overlow>.user>.us-info>.nickname {
    font-family: "Bebas Neue";
    font-size: 1.4rem;
	color: #bab1a8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 90%;
}
.navigated>.flex>.user-overlow>.user>.us-info>.nickname:hover {color: #d09b43;}
.navigated>.flex>.user-overlow>.user>.us-info>.balans {
    font-family: "Bebas Neue";
    color: #d09b43;
    font-size: 1.4rem;
}
.navigated>.flex>.user-overlow>.user>.us-info>.balans>span {
    font-family: "Bebas Neue";
}
.navigated>.flex>.user-overlow>.user>.us-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}
.navigated>.flex>.user-overlow>.user>.us-btn>a>svg {
    width: 1.5rem;
    height: 1.5rem;
}
.navigated>.flex>.user-overlow>.user>.us-btn>a:hover>svg {}
.navigated>.flex>.user-overlow>.user>.us-btn>.exit {
    height: 100%;
    width: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e4dad1;
    background: #333;
}
.navigated>.flex>.user-overlow>.user>.us-btn>.exit:hover {
    background: #C83E31;
    color: #ffffff;
}

.privileges {z-index: 2;position: relative;width: 1400px;display: flex;margin: 0 auto;height: max-content;padding: 3rem 0;flex-direction: column;}
.privileges>h1 {
    color: #e4dad1;
    font-size: 3rem;
    font-family: "Bebas Neue";
}
.privileges>.flex {display: grid;grid-template-columns: repeat(3, 1fr);grid-template-rows: repeat(2, 1fr);grid-column-gap: 16px;grid-row-gap: 16px;width: 100%;padding-top: 1.5rem;}
.privileges>.flex>.block {
    background-color: #333;
    box-shadow: 0 0 4px rgba(0, 0, 0, .5);
    min-height: 350px;
    position: relative;
    transition: all .2s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 0.4rem;
}
.privileges>.flex>.block.grim {
    grid-area: 1 / 1 / 3 / 2;
    border: 1px solid #d09b43;
    animation: newPulse 4s ease-in-out infinite forwards;
    background-image: url(/template/img/item/grim.png);
    background-position: center -77px;
    background-size: 122%;
    background-repeat: no-repeat;
}
.privileges>.flex>.block.grim:after {
	background: linear-gradient(to top,#333,rgba(51,51,51,0) 50%);
	border-radius: 0.4rem;
}

.privileges>.flex>.block.boss {
    background-image: url(/template/img/item/boss.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center -151px;
}
.privileges>.flex>.block.boss:after {
	background: linear-gradient(to top,#333,rgba(51,51,51,0) 50%);
}
.privileges>.flex>.block.god {
    background-image: url(/template/img/item/god.png);
    background-size: 101%;
    background-repeat: no-repeat;
    background-position: center -130px;
}
.privileges>.flex>.block.god:after {
	background: linear-gradient(to top,#333,rgba(51,51,51,0) 50%);
}
.privileges>.flex>.block.pro {
    background-image: url(/template/img/item/pro.png);
    background-size: 101%;
    background-repeat: no-repeat;
    background-position: center -70px;
}
.privileges>.flex>.block.pro:after {
	background: linear-gradient(to top,#333,rgba(51,51,51,0) 50%);
}
.privileges>.flex>.block.vip {
    background-image: url(/template/img/item/vip.png);
    background-size: 101%;
    background-repeat: no-repeat;
    background-position: center -225px;
}
.privileges>.flex>.block.vip:after {
	background: linear-gradient(to top,#333,rgba(51,51,51,0) 50%);
}
.privileges>.flex>.block:after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: all .2s ease;
    border-radius: 0.3rem;
}
.privileges>.flex>.block>h2 {
    z-index: 2;
    padding-left: 1rem;
    color: #e4dad1;
    font-size: 2rem;
    font-family: "Bebas Neue";
    padding-bottom: .3rem;
}
.privileges>.flex>.block>p {
    z-index: 2;
    padding-left: 1rem;
    padding-bottom: 1rem;
    color: rgba(255,255,255,.7);
    font-size: 1rem;
    font-family: "Bebas Neue";
}
.privileges>.flex>.block>.cost {
	background-color: #d09b43;
	color: #111;
	width: max-content;
	z-index: 2;
	position: absolute;
	top: .5rem;
	right: .5rem;
	padding: .4rem .5rem;
	font-size: 1.5rem;
	font-family: "Bebas Neue";
	font-weight: 600;
	border-radius: .2rem;
}
.privileges>.flex>.block>.info {
	position: absolute;
	left: .5rem;
	top: .5rem;
	color: #d09b43;
	transition: .3s;
	z-index: 3;
}
.privileges>.flex>.block>.info>svg {
	width: 2rem;
	height: 2rem;
}
.privileges>.flex>.block>.info:hover {
    transform: scale(1.1);
}
[data-title]:after {
	content: attr(data-title);
	position: absolute;
	bottom: 117%;
	left: 50%;
	transform: translateX(-50%);
	width: max-content;
	background-color: rgb(0 0 0 / 90%);
	color: #bab1a8;
	padding: .5rem;
	font-family: "Open Sans", sans-serif;
	font-size: .8rem;
	text-transform: uppercase;
	border-radius: .3rem;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}
[data-title]:hover:after {
	opacity: 1;
	pointer-events: auto;
}

@keyframes newPulse {
    0% {
        outline-offset: 0;
        outline: solid 5px rgba(208,155,67,0);
    }

    30% {
        outline-offset: 0;
        outline: solid 5px rgba(208,155,67,.5);
    }

    80% {
        outline-offset: 10px;
        outline: solid 0 rgba(208,155,67,0);
    }
}

.privileges>.flex>.block:hover {
    transform: scale(1.05);
}
.privileges>.flex>.block:hover>h2, .privileges>.flex>.block:hover>p {
	color: #ffffff;
}
.privileges>.flex>.block.grim:hover::after {
	background: linear-gradient(to top, #d09b43, rgba(51, 51, 51, 0) 50%);
}
.privileges>.flex>.block.boss:hover::after {
	background: linear-gradient(to top, #8f6437, rgba(51, 51, 51, 0) 50%);
}
.privileges>.flex>.block.god:hover::after {
	background: linear-gradient(to top, #048ec7, rgba(51, 51, 51, 0) 50%);
}
.privileges>.flex>.block.pro:hover::after {
	background: linear-gradient(to top, #205688, rgba(51, 51, 51, 0) 50%);
}
.privileges>.flex>.block.vip:hover::after {
	background: linear-gradient(to top, #c93f1a, rgba(51, 51, 51, 0) 50%);
}




.product {
    z-index: 2;
    position: relative;
    height: 4rem;
    width: 1400px;
    display: flex;
    margin: 0 auto;
    height: max-content;
    padding: 3rem 0;
    flex-direction: column;
}
.product>h1 {
    color: #e4dad1;
    font-size: 3rem;
    font-family: "Bebas Neue";
}
.product>.search {
    display: flex;
    padding: 1rem 0;
}
.product>.search>.icon {
    height: 3rem;
    width: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,.5);
    color: #e4dad1;
    border-top-left-radius: .3rem;
    border-bottom-left-radius: .3rem;
}
.product>.search>.icon>svg {
    width: 2rem;
    height: 2rem;
}
.product>.search>.search {
    background: rgba(0,0,0,.5);
    width: 100%;
    color: #e4dad1;
    font-size: 1rem;
    border-top-right-radius: .3rem;
    border-bottom-right-radius: .3rem;
}

.product>.server {
    display: flex;
    gap: 1rem;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(1, 1fr);
    padding-top: 1rem;
}
.product>.server>button {
    position: relative;
    background-color: rgba(186, 177, 168, .2);
    color: #bab1a8;
    font-size: 1rem;
    font-family: "Bebas Neue";
    height: 3rem;
    transition: .2s;
    border-radius: .3rem;
}
.product>.server>button>span {
    font-family: "Bebas Neue";
    position: absolute;
    right: 0.3rem;
    top: 0.3rem;
    display: flex;
    font-size: 1.2rem;
    align-items: center;
}
.product>.server>button>p {
    font-family: "Bebas Neue";
    font-size: 1.3rem;
    font-weight: 600;
}
.product>.server>button:hover {
    transform: scale(1.04);
}
.product>.server>button[selector="true"] {
	background-color: #a8ce674d;
    color: #a8ce67;
}

.product>.category {
    display: flex;
    gap: .4rem;
    width: 100%;
    flex-wrap: wrap;
    flex-direction: row;
    border-bottom: 1px solid #bab1a86b;
    padding-bottom: 1rem;
}
.product>.category>button {
    color: #bab1a8;
    font-size: 1.2rem;
    font-family: "Bebas Neue";
    display: flex;
    align-items: center;
    gap: .4rem;
    padding: .7rem .5rem;
    transition: .2s;
    font-weight: 600;
    border-radius: .3rem;
}
.product>.category>button>svg {
    width: 1.1rem;
    height: 1.1rem;
}

.product>.category>button:hover, .product>.category>button[selector="true"] {
    background-color: #a8ce674d;
    color: #a8ce67;
}


.product>.flex {
    padding-top: .8rem;
}
.product>.flex>.info {
    display: flex;
    gap: .6rem;
    align-items: flex-end;
}
.product>.flex>.info>h3 {
    color: #e4dad1;
    font-size: 2rem;
    font-family: "Bebas Neue";
    line-height: 25px;
}
.product>.flex>.info>span {
    font-size: 1rem;
    font-family: "Bebas Neue";
    padding: .1rem .3rem;
    background-color: #5d7239;
    color: #a8ce67;
    border-radius: .2rem;
}
.product>.flex>.item-list {
    padding: 1rem 0;
    gap: .5rem;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}
.product>.flex>.item-list>.filter-clear {width: 100%;grid-column: 1 / 7;text-align: center;font-size: 1.5rem;color: #CD412B;font-family: "Bebas Neue";height: 6rem;display: flex;align-items: center;justify-content: center;}
.product>.flex>.item-list>.item {
    background: rgba(0,0,0,.2);
    display: flex;
    flex-direction: column;
    padding: .7rem;
    height: 16rem;
    justify-content: space-between;
    cursor: pointer;
    transition: .2s;
    border-radius: .3rem;
    position: relative;
}
.product>.flex>.item-list>.item>.icon {position: absolute;right: .5rem;top: .5rem;}
.product>.flex>.item-list>.item>.icon>.discount {
    height: 2rem;
    width: 1.5rem;
    background-color: #d09b43;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .2rem;
}
.product>.flex>.item-list>.item>.icon>.discount>svg {
    width: 1rem;
    height: 1rem;
}
.product>.flex>.item-list>.item>img {
    width: 170px;
    height: 170px;
    margin: 0 auto;
}
.product>.flex>.item-list>.item>.info {
    color: #e4dad1;
    display: grid;
    gap: .2rem;
    position: relative;
}
.product>.flex>.item-list>.item>.info>.name {
    font-weight: 600;
    font-size: .9rem;
}

.product>.flex>.item-list>.item>.info>.cost {
    font-size: 1.3rem;
    font-family: "Bebas Neue";
    display: flex;
    gap: .3rem;
    align-items: flex-end;
    color: #ffffff;
}
.product>.flex>.item-list>.item>.info>.cost>.old {
    font-size: 1.1rem;
    font-family: "Bebas Neue";
    color: #6d6b69;
    text-decoration: line-through;
}
.product>.flex>.item-list>.item>.info>.amount {
    position: absolute;
    right: 0;
    bottom: 0;
    font-family: "Bebas Neue";
    display: flex;
    gap: .3rem;
    align-items: flex-end;
    color: #bab1a8;
    background: #0e0e0e8f;
    padding: .2rem .5rem;
    border-radius: .2rem;
}
.product>.flex>.item-list>.item:hover {
    transform: scale(1.04);
    background-color: rgba(186, 177, 168, .2);
}




.servers {
    position: fixed;
    right: .5rem;
    bottom: .5rem;
    width: 20rem;
    z-index: 5;
    transition: width 300ms ease-in-out;
}
.servers.show {
    width: 14rem;
	transition: width 300ms ease-in-out;
}
.servers>.prev {
    text-align: center;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: "Bebas Neue";
    font-size: 1.3rem;
    font-weight: 600;
    background-color: #d09b43;
    color: #111;
    position: relative;
    cursor: pointer;
    border-radius: 0.3rem 0.3rem 0 0;
}
.servers>.prev>span {
    font-family: "Bebas Neue";
    font-size: 1.3rem;
    padding: 0.2rem 0.3rem;
    background: #000000;
    color: #d09b43;
    border-radius: .3rem;
}
.servers>.prev>svg {
    width: 0.7rem;
    height: 0.7rem;
    position: absolute;
    right: 1rem;
    transform: rotate(180deg);
    transition: .2s;
}
.servers.show>.prev>svg {
	right: .5rem;
	transform: rotate(0deg);
}
.servers>.monitoring {
	max-height: 300px;
	transition: max-height 300ms ease-in-out;
}
.servers.show>.monitoring {max-height: 0;transition: max-height .2s ease-in-out;overflow: hidden;position: relative;}
.servers>.monitoring>.hiddens {
    background: rgb(15 15 15);
    padding: 0.5rem 1rem 1rem 1rem;
    position: relative;
    border-radius: 0 0 0.3rem 0.3rem;
}
.servers>.monitoring>.hiddens>.flex {
    display: flex;
    justify-content: space-between;
    position: relative;
    width: 100%;
    height: 2.5rem;
    align-items: flex-start;
    margin-top: .7rem;
}
.servers>.monitoring>.hiddens>.flex>.name {
    color: #e4dad1;
    font-size: 1.2rem;
    font-family: "Bebas Neue";
}
.servers>.monitoring>.hiddens>.flex>.name>span {font-family: "Bebas Neue";padding: 0 .3rem;background-color: #CD412B;color: #FFFFFF;margin-left: .3rem;border-radius: .2rem;}
.servers>.monitoring>.hiddens>.flex>.online {
    display: flex;
    color: #e4dad1;
    font-size: 1rem;
    align-items: center;
    gap: .3rem;
}
.servers>.monitoring>.hiddens>.flex>.online>.count {
    font-family: "Bebas Neue";
    background-color: #ffffff38;
    color: #bab1a8;
    padding: .1rem .3rem;
    border-radius: .2rem;
}
.servers>.monitoring>.hiddens>.flex>.online>.count::after {
	content: "";
}
.servers>.monitoring>.hiddens>.flex>.online>.link {
    color: #e4dad1;
    cursor: pointer;
}
.servers>.monitoring>.hiddens>.flex>.online>.link:hover {
	transform: scale(1.05);
}
.servers>.monitoring>.hiddens>.flex>.online>.link>svg {
    width: 1.7rem;
    height: 1.7rem;
}
.servers>.monitoring>.hiddens>.flex>.line {
    position: absolute;
    width: 100%;
    height: 5px;
    background: #ffffff52;
    bottom: 0;
    left: 0;
}

.servers>.monitoring>.hiddens>.flex>.line::after {
	content: "";
	position: absolute;
	width: var(--p);
	background: #CD412B;
	height: 100%;
}





.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}
.modal>.show {
    width: 100%;
    height: 100%;
    background: var(--modal-bg-transparent);
    animation: modal-bg .5s forwards;
}
@keyframes modal-bg {
	0% {background: transparent}
	100% {background: var(modal-bg-transparent)}
}
.modal.hide>.hidden {
    animation: modal-bg-2 .5s forwards;
}
@keyframes modal-bg-2 {
	0% {background: var(modal-bg-transparent)}
	100% {background: transparent}
}
.modal>.hide-modal {
    width: 100%;
    height: 100%;
    background: #1d1d1d69;
    animation: modal-bg .5s forwards;
    backdrop-filter: blur(4px);
}
@keyframes modal {
	0% {transform: translateY(-200%);}
	40% {transform: translateY(8%);}
	100% {transform: translateY(0%);}
}
.modal.hide>.anim {
	animation: modal2 .5s forwards;
}
@keyframes modal2 {
	0% {transform: translateY(0%);}
	100% {transform: translateY(-200%);}
}

.modal>.anim {
	position: fixed;
	transform: translateY(-200%);
	animation: modal .5s forwards;
	background-color: #222;
	border-radius: .5rem;
	top: 2rem;
	left: 0;
	right: 0;
	box-shadow: 0 1px 17px rgba(0, 0, 0, .3);
	margin: 0 auto;
}

.modal>.privilege {
	width: 60rem;
	height: 43rem;
	display: flex;
	gap: 1rem;
}
.modal>.privilege>.left {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: .5rem 0 0 0.5rem;
}
.modal>.privilege>.left>.images::after {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border-radius: 0 0 0 0.3rem;
	background: linear-gradient(to top, #333, rgba(51, 51, 51, 0) 50%);
}
.modal>.privilege>.left>.images>img {
    height: auto;
    width: 100%;
    position: relative;
    height: 100%;
}
.modal>.privilege>.right {
    width: 100%;
    padding: 2rem 1rem 0 0rem;
}
.modal>.privilege>.right>.closed {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: #CD412B;
    transition: .2s;
}
.modal>.privilege>.right>.closed>svg {
    width: 2rem;
    height: 2rem;
}
.modal>.privilege>.right>.closed:hover {
    transform: scale(1.1);
}
.modal>.privilege>.right>h2 {
    font-size: 2rem;
    font-family: "Bebas Neue";
    color: #e4dad1;
    padding-bottom: 1rem;
}
.modal>.privilege>.right {
    padding-top: 1rem;
}
.modal>.privilege>.right>.footer {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: relative;
    bottom: -1rem;
}
.modal>.privilege>.right>.footer>button {
    width: 100%;
    height: 3rem;
    border-radius: .3rem;
    font-size: 1.6rem;
    font-family: "Bebas Neue";
    transition: .2s;
    font-weight: 600;
}
.modal>.privilege>.right>.footer>button.closed {
    background-color: rgba(186, 177, 168, .2);
    color: #bab1a8;
}
.modal>.privilege>.right>.footer>button.succes {
	background-color: #a8ce674d;
	color: #a8ce67;
}
.modal>.privilege>.right>.footer>button:hover {
    transform: scale(1.03);
}
.modal>.privilege>.right>.footer>button.succes>svg {
	
height: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    padding-bottom: .5rem;
}
.form-group>lable {
    font-size: 1.3rem;
    font-family: "Bebas Neue";
    color: #e4dad1;
    font-weight: 400;
    padding-bottom: .5rem;
}
.form-group>select {
	width: 100%;
	box-sizing: border-box;
	padding: 8px 40px 8px 1rem;
	font-size: 14px;
	font-weight: 500;
	color: #e4dad1;
	height: 2.5rem;
	border: none;
	border-radius: 0;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-color: #403e3d;
	background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNi4wMDAwNiA4TDkuNjQ2NTEgMTEuNjQ2NDRDOS44NDE3NyAxMS44NDE3IDEwLjE1ODQgMTEuODQxNyAxMC4zNTM2IDExLjY0NjRMMTQuMDAwMSA4IiBzdHJva2U9IiM3OTc0NzAiIHN0cm9rZS1vcGFjaXR5PSIwLjkiIHN0cm9rZS13aWR0aD0iMS4zNjM2NCIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+PC9zdmc+) no-repeat calc(100% - 12px) center / 26px 26px #403e3d;
	border-radius: .3rem;
	cursor: pointer;
}
.form-group>input {
	width: 100%;
	box-sizing: border-box;
	padding: 8px 40px 8px 1rem;
	font-size: 14px;
	font-weight: 500;
	color: #e4dad1;
	height: 2.5rem;
	border: none;
	outline: none;
	-webkit-appearance: none;
	background: rgba(0, 0, 0, .2);
	border-radius: .3rem;
}

.form-group>.flex-pr {
    padding-bottom: 0rem;
    display: grid;
    gap: .5rem;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}
.form-group>.flex-pr>button {
    width: 100%;
    height: 3rem;
    border-radius: .2rem;
    background-color: rgba(186, 177, 168, .2);
    transition: .2s;
    position: relative;
    z-index: 2;
}
.form-group>.flex-pr>button>span {
	position: relative;
	color: #f1f1f1;
	font-size: 1.8rem;
	font-family: "Bebas Neue";
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}
.form-group>.flex-pr>button:hover {
    transform: scale(1.08);
}
.form-group>.flex-pr>button[selector="true"] {
	background-color: #d09b43;
    color: #111;
}
.form-group>.flex-pr>button>span[item-discount]::after {
	content: attr(item-discount);
	position: absolute;
	font-size: 1.1rem;
	width: 100%;
	background: #fff;
	background-color: #439ed0;
	color: #ffffff;
	z-index: -1;
	top: 3px;
	right: -21px;
	transform: rotate(45deg);
	font-family: "Bebas Neue";
}
.form-group>.title-flex-pr {
	color: #d09b43;
    font-weight: 600;
    padding-top: .3rem;
    padding-bottom: .5rem;
}
.form-group>.cost-pr {
    width: max-content;
    color: #ffffff;
    border-radius: .3rem;
    font-size: 2rem;
    font-family: "Bebas Neue";
    background: rgba(0, 0, 0, .2);
    padding: 0.5rem 2rem;
    display: flex;
    gap: .5rem;
    align-items: flex-end;
}
.form-group>.cost-pr>span {
    font-size: 3rem;
    font-family: "Bebas Neue";
    line-height: 49px;
    font-weight: 600;
}
.form-group>.count-item {
    display: flex;
    gap: .3rem;
    width: 100%;
    position: relative;
}
.form-group>.count-item>button {
    color: #e4dad1;
    height: 2.5rem;
    min-width: 2.5rem;
    background: #403e3d;
    border-radius: .3rem;
    transition: .3s;
}
.form-group>.count-item>button:hover {
    transform: scale(1.07);
    background: #535150;
}
.form-group>.count-item>button>svg {
    width: 1.5rem;
    height: 1.5rem;
}
.form-group>.count-item>input {
    font-size: 14px;
    font-weight: 500;
    color: #e4dad1;
    height: 2.5rem;
    background: #403e3d;
    border-radius: .3rem;
    padding: .5rem 0.5rem;
    width: 100%;
}
.form-group>.count-item>input[type="range"] {
	-webkit-appearance: none;
	width: 100%;
	height: auto;
	border-radius: .3rem;
	cursor: pointer;
	outline: none;
	z-index: 2;
	background: rgb(51, 51, 51);
}
.form-group>.count-item::after {
	content: attr(data-item);
	position: absolute;
	width: max-content;
	height: max-content;
	right: 0;
	left: 0;
	top: 0;
	bottom: 0;
	color: #fff;
	z-index: 2;
	margin: auto;
	pointer-events: none;   /* â›” Ð¿Ð¾Ð»Ð½Ð¾ÑÑ‚ÑŒÑŽ Ð¾Ñ‚ÐºÐ»ÑŽÑ‡Ð°ÐµÑ‚ ÐºÐ»Ð¸ÐºÐ¸ */
	user-select: none;
}

.form-group>.item-list {
    display: grid;
    gap: .5rem;
    padding-top: .5rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}
.form-group>.item-list>div {
    position: relative;
    background-color: rgba(0, 0, 0, .2);
    color: #bab1a8;
    border-radius: .3rem;
    cursor: pointer;
    transition: .3s;
}
.form-group>.item-list>div:not([data-select]):hover {
    background-color: rgba(0, 0, 0, .5);
}
.form-group>.item-list>div>img {
    width: 100%;
    padding: .5rem;
}
.form-group>.item-list>div>.count {
    position: absolute;
    bottom: .2rem;
    right: .2rem;
    font-weight: 700;
    font-size: .9rem;
    color: #bab1a8;
}
.form-group>.item-list>div[data-select][selector="true"] {
	background-color: rgb(75 86 55);
}
.form-group>.item-list>div[data-select][selector="true"]>.count {
	color: #fff;
}

.form-checkbox {
	display: block;
	position: relative;
	height: 2.5rem;
	background: rgba(0, 0, 0, .2);
	padding: 0 0 0 .7rem;
	border-radius: .3rem;
}

.form-checkbox input[type=checkbox] {
	position: absolute;
	z-index: -1;
	opacity: 0;
	display: block;
	width: 0;
	height: 0
}

.form-checkbox span {
	display: inline-block;
	position: absolute;
	padding: 0 0 0 30px;
	line-height: 22px;
	transition: .3s;
	cursor: pointer;
	bottom: 20%;
	font-weight: 500;
	color: #e4dad1;
	text-transform: uppercase;
}

.form-checkbox span:before {
	content: "";
	display: inline-block;
	position: absolute;
	width: 1.4rem;
	height: 1.4rem;
	left: 0;
	top: -2px;
	background-color: #292929;
	border-radius: 0.3rem
}

.form-checkbox input[type=checkbox]:checked+span:before {
	background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTYuNDk5OTUgMTcuMDAwNEwwLjI5OTk1MSAxMC44MDA0Qy00Ljg4MzExZS0wNSAxMC42MDA0IC00Ljg4MzExZS0wNSAxMC4xMDA0IDAuMjk5OTUxIDkuNzAwMzlMMS4zOTk5NSA4LjYwMDM5QzEuNjk5OTUgOC4zMDAzOSAyLjE5OTk1IDguMzAwMzkgMi40OTk5NSA4LjYwMDM5TDYuMzk5OTUgMTIuNTAwNEwxNy40IDEuNTAwMzlDMTcuNyAxLjIwMDM5IDE4LjIgMS4yMDAzOSAxOC41IDEuNTAwMzlMMTkuNiAyLjYwMDM5QzIwIDMuMDAwMzkgMjAgMy41MDAzOSAxOS43IDMuODAwMzlMNi40OTk5NSAxNy4wMDA0WiIgZmlsbD0iI2QwOWI0MyIvPgo8L3N2Zz4K);
	background-size: 65%;
	background-repeat: no-repeat;
	background-position: center;
	background-position-y: 5px;
	background-position-x: 4px;
	background-color: #292929;
}


.modal>.info {
	width: 32rem;
	height: 40rem;
	padding: 1rem;
}
.modal>.info>h2, .modal>.rules>h2, .modal>.mod-promo>h2 {
    font-size: 2rem;
    font-family: "Bebas Neue";
    color: #e4dad1;
}
.modal>.info>.closed, .modal>.rules>.closed, .modal>.mod-promo>.closed {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: #CD412B;
    transition: .2s;
}
.modal>.info>.closed>svg, .modal>.rules>.closed>svg, .modal>.mod-promo>.closed>svg {
    width: 2rem;
    height: 2rem;
}
.modal>.info>.closed:hover, .modal>.rules>.closed:hover, .modal>.mod-promo>.closed:hover {
    transform: scale(1.1);
}
.modal>.info>.scroll {
	overflow-y: auto;
    height: 95%;
    overflow-x: hidden;
    padding-right: 0.5rem;
	scrollbar-color: #cd412b transparent;
	scrollbar-width: thin;
}
.modal>.info>.scroll>.sostav {
    display: grid;
    gap: .5rem;
    padding-top: .5rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.modal>.info>.scroll>.sostav>div {
    display: flex;
    justify-content: space-between;
    background-color: rgba(186, 177, 168, .2);
    color: #bab1a8;
    padding: 0.3rem .8rem;
    border-radius: .3rem;
}
.modal>.info>.scroll>.sostav>div>span {
    font-size: 1rem;
    font-family: "Bebas Neue";
}
.modal>.info>.scroll>.kits {
    padding-top: 1rem;
    display: grid;
    gap: 1.3rem;
}
.modal>.info>.scroll>.kits>.flex>h3 {
    font-size: 1.3rem;
    font-family: "Bebas Neue";
    color: #e4dad1;
    display: flex;
    align-items: flex-start;
    gap: .5rem;
}
.modal>.info>.scroll>.kits>.flex>h3>span {
    font-size: 1rem;
    font-family: "Bebas Neue";
    color: #e4dad1;
    padding: .1rem .3rem;
    background-color: #5d7239;
    color: #a8ce67;
    border-radius: .2rem;
}
.modal>.info>.scroll>.kits>.flex>.grid {
    display: grid;
    gap: .5rem;
    padding-top: .5rem;
    grid-template-columns: repeat(7, minmax(0, 1fr));
}
.modal>.info>.scroll>.kits>.flex>.grid>div {
    position: relative;
    background-color: rgba(0,0,0,.2);
    color: #bab1a8;
    border-radius: .3rem;
    cursor: pointer;
    transition: .3s;
}
.modal>.info>.scroll>.kits>.flex>.grid>div>img {
    width: 100%;
    padding: .5rem;
}
.modal>.info>.scroll>.kits>.flex>.grid>div>.count {
    position: absolute;
    bottom: .2rem;
    right: .2rem;
    font-weight: 700;
    font-size: .9rem;
    color: #bab1a8;
}
.modal>.info>.scroll>.kits>.flex>.grid>div:hover {
    background-color: rgba(0, 0, 0, .5);
}
.modal>.item {
	width: 27rem;
	height: auto;
	background-color: transparent;
	box-shadow: none;
	display: grid;
	gap: .3rem;
}
.modal>.item>.top {padding: 1rem;background-color: #222;box-shadow: 0 1px 17px rgba(0, 0, 0, .3);border-radius: .3rem;display: flex;align-items: center;justify-content: space-between;}
.modal>.item>.top>.closed {
	color: #CD412B;
	transition: .2s;
}
.modal>.item>.top>.closed>svg {
	width: 2rem;
	height: 2rem;
}
.modal>.item>.top>.closed:hover {
	transform: scale(1.1);
}
.modal>.item>.top>h2 {
	font-size: 1.5rem;
    font-family: "Bebas Neue";
    color: #e4dad1;
}
.modal>.item>.body {
	background-color: #222;
	border-radius: .3rem;
	box-shadow: 0 1px 17px rgba(0, 0, 0, .3);
	padding: 1rem;
	scrollbar-color: #cd412b transparent;
	scrollbar-width: thin;
}
.modal>.item>.body>.images {
	display: flex;
}
.modal>.item>.body>.images>img {
	width: 10rem;
	margin: 0 auto;
	padding-bottom: 1rem;
}
.modal>.item>.body>.description {
	color: #e4dad1;
	background: #403e3d;
	padding: .5rem;
	border-radius: .3rem;
	margin-bottom: .7rem;
	max-height: 6rem;
	overflow-y: auto;
}
.modal>.item>.body>.item-final {
    display: flex;
    gap: .5rem;
    border-top: 1px solid #ffffff14;
    margin-top: .5rem;
    padding-top: 1rem;
    flex-direction: column;
}
.modal>.item>.body>.item-final>.item-count, .modal>.item>.body>.item-final>.item-amount {
    display: flex;
    gap: 0;
    color: #e4dad1;
    background: #403e3d6e;
    padding: .3rem 1rem;
    justify-content: space-between;
    border-radius: .3rem;
    font-size: .9rem;
    flex-direction: row;
    width: 100%;
    align-items: center;
}
.modal>.item>.body>.item-final>.item-count>lable, .modal>.item>.body>.item-final>.item-amount>lable {
    font-family: "Bebas Neue";
    font-size: 1.2rem;
}
.modal>.item>.body>.item-final>.item-count>p, .modal>.item>.body>.item-final>.item-amount>p {
    font-weight: 600;
    color: #fff;
    font-family: "Bebas Neue";
    font-size: 1.2rem;
}
.modal>.item>.body>.item-final>.item-amount>p>span {
    font-family: "Bebas Neue";
    font-size: 1.2rem;
}

.modal>.item>.body>.footer {
    padding-top: 1rem;
}
.modal>.item>.body>.footer>button {
    width: 100%;
    height: 2.5rem;
    border-radius: .3rem;
    font-size: 1.3rem;
    font-family: "Bebas Neue";
    transition: .2s;
    font-weight: 600;
}
.modal>.item>.body>.footer>button.succes {
	background-color: #a8ce674d;
	color: #a8ce67;
}
.modal>.item>.body>.footer>button:hover {
    transform: scale(1.03);
}
.modal>.item>.body>.footer>button.succes>svg {
	height: 1rem;
}

.modal>.rules {
	width: 50rem;
	height: 40rem;
	padding: 1rem;
}
.modal>.rules>.scroll {
	overflow-y: auto;
	height: 95%;
	overflow-x: hidden;
	padding-bottom: 1rem;
	padding-right: 0.5rem;
	scrollbar-color: #cd412b transparent;
	scrollbar-width: thin;
	color: #e4dad1;
}
.modal>.rules>.scroll>p>b {
	display: block;
	padding-top: .4rem;
	padding-bottom: .2rem;
	color: #CD412B;
}
.modal>.rules>.scroll>p>strong {
	display: block;
	padding: 1rem 0 .1rem 0;
	font-family: "Bebas Neue";
	font-size: 1.1rem;
}

.modal>.payer {
	width: 30rem;
	height: auto;
	background-color: transparent;
	box-shadow: none;
	display: grid;
	gap: .3rem;
}
.modal>.payer>.top {
	padding: 1rem;
	background-color: #222;
	box-shadow: 0 1px 17px rgba(0, 0, 0, .3);
	border-radius: .3rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.modal>.payer>.top>.closed {
	color: #CD412B;
	transition: .2s;
}
.modal>.payer>.top>.closed>svg {
	width: 2rem;
	height: 2rem;
}
.modal>.payer>.top>.closed:hover {
	transform: scale(1.1);
}
.modal>.payer>.top>h2 {
	font-size: 1.5rem;
    font-family: "Bebas Neue";
    color: #e4dad1;
}
.modal>.payer>.body {
	background-color: #222;
	border-radius: .3rem;
	box-shadow: 0 1px 17px rgba(0, 0, 0, .3);
	padding: 1rem;
}
.payer>.body {}
.payer>.body>.form-group>.flex-metod {
    display: grid;
    gap: .5rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.payer>.body>.form-group>.flex-metod>button {
    width: 100%;
    height: 4rem;
    border-radius: .3rem;
    background-color: #292929;
    transition: .2s;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem;
}
.payer>.body>.form-group>.flex-metod>button:hover {
    transform: scale(1.05);
}
.payer>.body>.form-group>.flex-metod>button[selector="true"] {
    background-color: #4b4a4a;
}
.payer>.body>.form-group>.flex-metod>button>img {}
.payer>.body>.form-group>.flex-metod>button>span {
    position: relative;
    color: #f1f1f1;
    font-size: 1rem;
}

.payer>.body>.form-group>.amount-block {
    display: flex;
    gap: .5rem;
    flex-direction: column;
    position: relative;
}
.payer>.body>.form-group>.amount-block>input {
    width: 100%;
    color: #d09b43;
    border-radius: .3rem;
    font-size: 1rem;
    background: rgba(0, 0, 0, .2);
    padding: 0.5rem 2rem 0.5rem 3.9rem;
    display: flex;
    gap: .5rem;
    align-items: flex-end;
    height: 2.8rem;
    font-weight: 600;
}
.payer>.body>.form-group>.amount-block>input::placeholder {
	font-weight: 400;
}
.payer>.body>.form-group>.amount-block>svg {
    
color: #d09b43;
    
position: absolute;
    
width: 2.8rem;
    
height: 2.8rem;
    
padding: 0.9rem;
    
background: #292929;
    
border-radius: .3rem 0 0 0.3rem;
}
.payer>.body>.form-group>.amount-block>.button-amount {
    width: 100%;
    display: grid;
    gap: .5rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.payer>.body>.form-group>.amount-block>.button-amount>button {
    color: #ffffff;
    border-radius: .3rem;
    font-size: 1rem;
    background: rgba(0, 0, 0, .2);
    transition: .2s;
    height: 2.5rem;
    font-weight: 600;
}
.payer>.body>.form-group>.amount-block>.button-amount>button:hover {
    transform: scale(1.05);
}

.payer>.body>.payer-finish {
    display: flex;
    border-radius: .3rem;
    font-size: 2rem;
    font-family: "Bebas Neue";
    background: rgba(0, 0, 0, .2);
    flex-direction: row;
    padding: 0.3rem .8rem;
    justify-content: space-between;
    height: 2.5rem;
    margin-bottom: .5rem;
}
.payer>.body>.payer-finish>.amount {
    font-size: 1rem;
    align-items: center;
    display: flex;
    gap: .3rem;
    font-weight: 600;
    color: #757575;
}
.payer>.body>.payer-finish>.amount>p {
    font-size: 1rem;
}
.payer>.body>.payer-finish>.amount>p>span {
    font-size: 1rem;
    line-height: 23px;
}
.payer>.body>.payer-finish>.amount>p:after {
	content: attr(data-bonus);
	font-size: 1rem;
	color: #a8ce67;
	padding-left: .8rem;
}
.payer>.body>.payer-finish>.bonuse {
    display: flex;
    align-items: center;
    position: relative;
    gap: .3rem;
}
.payer>.body>.payer-finish>.bonuse>p {
    display: flex;
    gap: .2rem;
    font-size: .8rem;
    font-weight: 400;
    flex-direction: row;
    align-items: center;
    color: d09b43;
}
.payer>.body>.payer-finish>.bonuse>p>span {}
.payer>.body>.payer-finish>.bonuse>.info {}
.payer>.body>.payer-finish>.bonuse>.info>svg {
    width: 1.3rem;
    height: 1.3rem;
}

.payer>.body>.footer {
    padding-top: 1rem;
}
.payer>.body>.footer>button {
    width: 100%;
    height: 2.5rem;
    border-radius: .3rem;
    font-size: 1.3rem;
    font-family: "Bebas Neue";
    transition: .2s;
    font-weight: 600;
}
.payer>.body>.footer>button.succes {
	background-color: #a8ce674d;
	color: #a8ce67;
}
.payer>.body>.footer>button:not(:disabled):hover {
    transform: scale(1.03);
}
.payer>.body>.footer>button.succes>svg {
	height: 1rem;
}
.payer>.body>.footer>button.succes:disabled {
	background-color: #292929;
    color: #4b4b4b;
    cursor: no-drop;
}

.setting-date {
	padding-top: 1rem;
}
.setting-date>.footer {
	padding-top: 1rem;
}
.setting-date>.footer>button {
    width: 100%;
    height: 2.5rem;
    border-radius: .3rem;
    font-size: 1.3rem;
    font-family: "Bebas Neue";
    transition: .2s;
    font-weight: 600;
}
.setting-date>.footer>button.succes {
	background-color: #a8ce674d;
	color: #a8ce67;
}
.setting-date>.footer>button:hover {
    transform: scale(1.03);
}
.setting-date>.footer>button.succes>svg {
	height: 1rem;
}



footer {
    background: rgba(0, 0, 0, .2);
    z-index: 2;
}
footer>.footer {
	width: 1400px;
	display: flex;
	margin: 0 auto;
	flex-direction: column;
	padding: 2rem 0rem 3rem 0rem;
	align-items: center;
	gap: 1rem;
}
footer>.footer>p {
    text-align: center;
    color: #bab1a8;
}
footer>.footer>ul {
    display: flex;
    gap: 1rem;
}
footer>.footer>ul>li {}
footer>.footer>ul>li>a {
    color: #bab1a8;
    display: block;
    padding: 0.5rem;
    background: #fff;
    background-color: rgba(186, 177, 168, .2);
    color: #bab1a8;
    border-radius: .3rem;
}
footer>.footer>ul>li>a:hover {
    transform: scale(1.05);
}

.info-block {
	width: 1400px;
	display: flex;
	flex-direction: column;
	margin: 0 auto;
	z-index: 2;
	padding: 1rem 0rem 2rem 0rem;
}
.info-block>h1 {
    color: #e4dad1;
    font-size: 2.5rem;
    font-family: "Bebas Neue";
    padding: 1rem 0rem 1rem 0rem;
}
.info-block>h2 {
    color: #e4dad1;
    font-size: 1.5rem;
    font-family: "Bebas Neue";
    padding: 1rem 0rem 1rem 0rem;
}
.info-block>p {
    color: #e4dad1;
    padding-bottom: .4rem;
}
.info-block>p>strong {}
.info-block>ul {
    display: grid;
    gap: .3rem;
    padding-bottom: .5rem;
}
.info-block>ul>li {
    color: #e4dad1;
    list-style-type: circle;
    padding-left: .2rem;
    margin-left: 1.5rem;
}

.notifications {
    position: fixed;
    top: 1rem;
    right: .5rem;
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    z-index: 15;
}
.notifications>.message {
    max-width: 20rem;
    min-width: 15rem;
    height: 4rem;
    display: flex;
    align-items: center;
    /* box-sizing: border-box; */
    font-weight: 300;
    border-radius: .5rem;
    box-shadow: 0 1px 17px rgba(0, 0, 0, .3);
    padding-right: .5rem;
}
.notifications>.message>div {
    height: 100%;
    margin: 0 0.8rem 0 0;
    min-width: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .5rem 0 0 0.5rem;
    color: #a8ce67;
}
.notifications>.message>div>svg {
    width: 2rem;
    height: 2rem;
}
.notifications>.message.error {
    background: #222222;
    color: #ffffff;
    font-size: 1rem;
}
.notifications>.message.succes {
    background: #222222;
    color: #ffffff;
    font-size: 1rem;
}
.notifications>.message.error>div {
    background: #cd412ba3;
    color: #CD412B;
}
.notifications>.message.succes>div {
    background: #a8ce674d;
}
.notifications>.message.open {
    transform: translateX(150%);
    animation: messageani .5s forwards;
    cursor: pointer;
}
@keyframes messageani {
	0% {transform: translateX(150%);}
	100% {transform: translateX(0);}
}
.notifications>.message.reload {
    transform: translateX(0);
	animation: messageanim .5s forwards;
}
@keyframes messageanim {
	0% {transform: translateX(0);}
	100% {transform: translateX(150%);}
}

.profile {
    margin: 0 auto;
    z-index: 2;
    width: 1400px;
    display: flex;
    padding: 1.5rem 0rem;
    gap: 1rem;
    min-height: max-content;
    height: 100%;
}
.profile>.profile-menu {
    display: grid;
    gap: .5rem;
    height: max-content;
    width: 16rem;
    min-width: 16rem;
}
.profile>.profile-menu>a {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #bab1a8;
    font-size: 20px;
    font-family: "Bebas Neue";
    font-weight: 600;
    padding: .5rem 1rem;
    background: rgba(65, 63, 61, .5);
    border-radius: .5rem;
}
.profile>.profile-menu>a>svg {
    width: 2rem;
    height: 2rem;
    color: #bab1a852;
    padding: .1rem;
    transition: .2s;
}
.profile>.profile-menu>a>p {
    display: flex;
    flex-direction: column;
    color: #bab1a8bf;
    gap: .3rem;
    font-size: 1rem;
    font-family: "Bebas Neue";
    font-size: 1.3rem;
}
.profile>.profile-menu>a>p>span {
    font-size: .8rem;
    color: #bab1a852;
    font-weight: 400;
	transition: .2s;
}
.profile>.profile-menu>a:hover {
    transform: scale(1.05);
    background: rgb(65 63 61 / 85%);
}
.profile>.profile-menu>a:hover>svg {
	color: #bab1a8;
}
.profile>.profile-menu>a:hover>p {
	color: #bab1a8;
}
.profile>.profile-menu>a:hover>p>span {
	color: #bab1a8;
}
.profile>.profile-body {
    width: 100%;
}

.block-promocode {}




.modal>.mod-promo {
	width: 25rem;
	height: max-content;
	padding: 1rem;
}
.modal>.mod-promo>#promocodes {
	padding: 1rem 0rem 0rem 0rem;
}
.modal>.mod-promo>#promocodes>.footer {
    padding-top: 0.5rem;
}
.modal>.mod-promo>#promocodes>.footer>button {
    width: 100%;
    height: 2.5rem;
    border-radius: .3rem;
    font-size: 1.3rem;
    font-family: "Bebas Neue";
    transition: .2s;
    font-weight: 600;
}
.modal>.mod-promo>#promocodes>.footer>button.succes {
	background-color: #a8ce674d;
	color: #a8ce67;
}
.modal>.mod-promo>#promocodes>.footer>button.succes:disabled {
	background-color: #292929;
	color: #4b4b4b;
	cursor: no-drop;
}
.modal>.mod-promo>#promocodes>.footer>button:not(:disabled):hover {
    transform: scale(1.03);
}
.modal>.mod-promo>#promocodes>.footer>button.succes>svg {
	height: 1rem;
}




.modal>.mod-promo>#promocodes>p {
	color: #e4dad1;
	font-size: .9rem;
	padding-top: 1rem;
}
.modal>.mod-promo>#promocodes>p>a {
	color: #d09b43;
}

.table {
    display: grid;
    gap: .5rem;
}
.table>.header {
    display: flex;
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(65, 63, 61, .5);
    border-radius: .3rem;
    justify-content: space-between;
}
.table>.header>div {
	color: #e4dad1;
	font-size: 1rem;
	font-weight: 600;
	text-transform: uppercase;
}
.table>.block {
    display: flex;
    width: 100%;
    background: rgba(0, 0, 0, .2);
    border-radius: .3rem;
    padding: 0.5rem 1rem;
    justify-content: space-between;
}
.table>.block:nth-child(even) {
	background: rgb(20 20 20 / 20%);
}
.table>.block>div {
	color: #e4dad1;
	font-size: 1rem;
}

.table.payments>.header>div.id, .table.payments>.block>div.id {
    width: 9rem;
}
.table.payments>.header>div.amount, .table.payments>.block>div.amount {
    width: 15rem;
}
.table.payments>.header>div.bonus, .table.payments>.block>div.bonus {
    width: 15rem;
}
.table.payments>.header>div.metod, .table.payments>.block>div.metod {
    width: 17rem;
}
.table.payments>.header>div.data, .table.payments>.block>div.data {
    width: 12rem;
}

.table.inventory>.block>div {
	display: flex;
    align-items: center;
}
.table.inventory>.header>div.id, .table.inventory>.block>div.id {
    width: 6rem;
}
.table.inventory>.header>div.img, .table.inventory>.block>div.img {
    width: 13rem;
}
.table.inventory>.block>div.img>img {
    width: 4rem;
    height: 4rem;
}
.table.inventory>.header>div.type, .table.inventory>.block>div.type {
    width: 12rem;
}
.table.inventory>.header>div.name, .table.inventory>.block>div.name {
    width: 20rem;
}
.table.inventory>.header>div.count, .table.inventory>.block>div.count {
    width: 8rem;
}
.table.inventory>.header>div.server, .table.inventory>.block>div.server {
    width: 9rem;
}

.table.payer>.header>div.id, .table.payer>.block>div.id {
    width: 5rem;
}
.table.payer>.header>div.name, .table.payer>.block>div.name {
    width: 10rem;
}
.table.payer>.header>div.streamid, .table.payer>.block>div.streamid {
    width: 11rem;
}
.table.payer>.header>div.amount, .table.payer>.block>div.amount {
    width: 5rem;
}
.table.payer>.header>div.bonus, .table.payer>.block>div.bonus {
    width: 6rem;
}
.table.payer>.header>div.data, .table.payer>.block>div.data {
    width: 9rem;
}
.table.payer>.header>div.metod, .table.payer>.block>div.metod {
    width: 8rem;
}

.table>.clear-list {
    width: 100%;
    font-size: 1.5rem;
    color: #CD412B;
    font-family: "Bebas Neue";
    text-align: center;
    padding: 1rem 0rem;
}

.paginated {
    display: flex;
    justify-content: flex-end;
    gap: .5rem;
}
.paginated>.page-link {
    height: 2.5rem;
    width: 2.5rem;
    font-size: 1.3rem;
    font-family: "Bebas Neue";
    font-weight: 600;
    padding: .5rem 1rem;
    background: rgba(65, 63, 61, .5);
    color: #e4dad1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .3rem;
}
.paginated>.page-link:hover {
    background: rgb(117 116 115 / 50%);
}
.paginated>.page-link.active {
    background: rgb(117 116 115 / 50%);
}

.modal>.calendar {
	width: 32rem;
	height: max-content;
	padding: 1rem;
}
.modal>.calendar>h2 {
    font-size: 2rem;
    font-family: "Bebas Neue";
    color: #e4dad1;
}
.modal>.calendar>.closed {
    position: absolute;
    right: 1rem;
    top: 1rem;
    color: #CD412B;
    transition: .2s;
}
.modal>.calendar>.closed>svg {
    width: 2rem;
    height: 2rem;
}
.modal>.calendar>.closed:hover {
    transform: scale(1.1);
}


.modal>.calendar>#calendar {
    gap: .5rem;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    padding-top: .8rem;
}
.modal>.calendar>#calendar>div.top {
    font-size: 1.1rem;
    height: 2rem;
    font-weight: 600;
    margin-bottom: .3rem;
    background: rgb(85 85 85 / 50%);
}
.modal>.calendar>#calendar>div {
    position: relative;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(65, 63, 61, .5);
    color: #bab1a8bf;
    font-size: 1.8rem;
    border-radius: .3rem;
    font-family: "Bebas Neue";
}
.modal>.calendar>#calendar>[data-action="off"] {background: rgb(91 91 91 / 8%);}
.modal>.calendar>#calendar>[data-action="on"] {
}
.modal>.calendar>#calendar>[data-action="wipe"] {background-color: #a8ce674d;color: #a8ce67;}
.modal>.calendar>#calendar>[data-action="global"] {background-color: #4c99d18a;color: #cbcbcb;}

.none-page {
	width: 100%;
    text-align: center;
    color: #e4dad1;
    font-size: 3rem;
    font-family: "Bebas Neue";
}

.admin {}
.admin>h2 {
    color: #e4dad1;
    font-size: 2rem;
    font-family: "Bebas Neue";
    line-height: 25px;
    padding-bottom: 1rem;
}
.admin>.block {
    gap: 1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.admin>.block>.calendar {
    padding: 1rem;
    background: rgba(0, 0, 0, .2);
    border-radius: .5rem;
    grid-area: 1 / 1 / 3 / 2;
}
.admin>.block>.calendar>h3 {
    color: #e4dad1;
    font-size: 1.2rem;
    font-family: "Bebas Neue";
}
.admin>.block>.calendar>.flex {
    gap: .5rem;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    padding-top: .8rem;
}
.admin>.block>.calendar>.flex>div {
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(65, 63, 61, .5);
    color: #bab1a8bf;
    font-size: 1.5rem;
    border-radius: .3rem;
    cursor: pointer;
}
.admin>.block>.calendar>.flex>.top {
    font-size: 1rem;
    height: 2rem;
    font-weight: 600;
    margin-bottom: .3rem;
}
.admin>.block>.calendar>.flex>[data-action="off"] {
    background: rgb(65 63 61 / 12%);
    color: #bab1a84a;
}
.admin>.block>.calendar>.flex>[data-action="wipe"] {
    background-color: #a8ce674d;
    color: #a8ce67;
}
.admin>.block>.calendar>.flex>[data-action="global"] {
    background-color: #439ed094;
    color: #439ed094;
}
.admin>.block>.calendar>.button {padding-top: 1rem;display: flex;justify-content: space-between;}
.admin>.block>.calendar>.button>button {width: 50%;height: 2.5rem;border-radius: .3rem;font-size: 1.3rem;font-family: "Bebas Neue";transition: .2s;font-weight: 600;background-color: #a8ce674d;color: #a8ce67;}
.admin>.block>.calendar>.button>button:hover {transform: scale(1.05);}

.admin>.block>.map, .admin>.block>.promocod {
    position: relative;
    padding: 1rem;
    background: rgba(0, 0, 0, .2);
    border-radius: .5rem;
    height: max-content;
}
.admin>.block>.map>h3, .admin>.block>.promocod>h3 {
    color: #e4dad1;
    font-size: 1.2rem;
    font-family: "Bebas Neue";
    padding-bottom: .5rem;
}

.admin>.block>.calendar>.button>.box {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}
.admin>.block>.calendar>.button>.box>div {
    color: #e4dad1;
    font-size: 1.2rem;
    font-family: "Bebas Neue";
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: .5rem;
}
.admin>.block>.calendar>.button>.box>.wipe {}
.admin>.block>.calendar>.button>.box>.wipe::after {
	content: "";
	position: relative;
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	background: #a8ce67;
	border-radius: .3rem;
}
.admin>.block>.calendar>.button>.box>.global {}
.admin>.block>.calendar>.button>.box>.global::after {
	content: "";
	position: relative;
	display: block;
	width: 1.5rem;
	height: 1.5rem;
	background: #135aff;
	border-radius: .3rem;
}
.admin>.block>.promocod>.add-promo {
    position: absolute;
    right: 1rem;
    top: 1rem;
    transition: .2s;
    font-family: "Bebas Neue";
    font-size: 1.1rem;
    background-color: #a8ce674d;
    color: #a8ce67;
    padding: .2rem 1rem;
    border-radius: .3rem;
}
.admin>.block>.promocod>.add-promo:hover {
    transform: scale(1.05);
}
.admin>.block>.promocod>.flex {padding: 1rem 0rem;max-height: 13rem;overflow-y: auto;display: grid;gap: .3rem;scrollbar-color: #cd412b transparent;scrollbar-width: thin;}
.admin>.block>.promocod>.flex>.block {
    display: flex;
    background: rgba(65, 63, 61, .5);
    color: #bab1a8bf;
    padding: .5rem;
    justify-content: space-between;
    border-radius: .3rem;
}
.admin>.block>.promocod>.flex>.block>.name {width: 7rem;}
.admin>.block>.promocod>.flex>.block>.amount {width: 7rem;}
.admin>.block>.promocod>.flex>.block>.activated {width: 7rem;}
.admin>.block>.promocod>.flex>.block>.remove-promo {
    color: #CD412B;
    transition: .2s;
}
.admin>.block>.promocod>.flex>.block>.remove-promo:hover {
    transform: scale(1.1);
}

.modal-button {
	display: none;
	color: #d09b43;
	transition: .2s;
}
.modal-button>svg {
    width: 2.5rem;
    height: 2.5rem;
}
.modal-button:hover {
	transform: scale(1.1);
}
.mobile {
	position: absolute;
	left: 0;
	top: 4.5rem;
	z-index: 5;
	background: #1f1f1f;
	border-radius: 0 0.5rem 0.5rem 0;
	transform: translateX(-120%);
    transition: transform 0.3s ease;
}
.mobile>.flex>ul {
    display: grid;
    gap: 1rem;
    padding: 1rem 1rem 1rem 0rem;
}
.mobile>.flex>ul>li>a {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    color: #bab1a8;
    font-size: 2rem;
    font-family: "Bebas Neue";
    font-weight: 600;
}
.mobile>.flex>ul>li>a:hover {}
.mobile>.flex>.social {
    display: flex;
    gap: .5rem;
}
.mobile>.flex>.social>li {}
.mobile>.flex>.social>li>a:hover {}
.mobile>.flex>.social>li>a {}
.mobile>.flex>.social>li>a>svg {
    width: 2rem;
    height: 2rem;
}

.mobile.active {
    transform: translateX(0);
}
/* Большие мониторы */
@media (max-width: 1440px) {
	.navigated>.flex, .privileges, .product, footer>.footer, .profile {
		width: 1200px;
	}
	.privileges>.flex>.block {
		min-height: 300px;
	}
	.profile>.profile-body {
		overflow-x: scroll;
	}
}
/* Десктоп */
@media (max-width: 1280px) {
	.navigated>.flex, .privileges, .product, footer>.footer, .profile {
		width: 1000px;
	}
	.privileges>.flex>.block {
		min-height: 300px;
	}
	.profile>.profile-body {
		overflow-x: scroll;
	}
}
/* Маленькие ноутбуки */
@media (max-width: 1024px) {
	.navigated>.flex {
		width: 1000px;
	}
	.privileges {
        width: 1000px;
        padding: 1rem 0 0rem 0;
    }
	.privileges>.flex>.block {
		min-height: 230px;
	}
	.product {
		width: 1000px;
	}
	.product>.flex>.item-list {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
	footer>.footer {
		width: 1000px;
	}
	.profile {
		width: 1000px;
	}
	.profile>.profile-body {
		width: 100%;
		overflow: scroll;
	}
	.admin>.block {
		display: flex;
		flex-direction: column;
	}
}


@media (max-width: 1023px) {
	.menu {
		display: none;
	}
	.navigated>.flex {
		width: 95%;
	}
	.modal-button {
		display: block;
	}
	.navigated>.flex, .privileges, .product, footer>.footer {
		width: 95%;
	}
	.privileges>.flex {
		grid-template-columns: repeat(2, 1fr);
	}
	.privileges {
		padding: 2rem 0;
	}
	.privileges>.flex>.block.grim {
		background-size: 100%;
		grid-area: 1 / 1 / 2 / 3;
		background-position: center -161px;
	}
	.privileges>.flex>.block {
		min-height: 270px;
	}
	.privileges>.flex>.block.boss {
		background-position: center -106px;
	}
	.privileges>.flex>.block.god {
		background-position: center -81px;
	}
	.privileges>.flex>.block.pro {
		background-position: center -46px;
	}
	.privileges>.flex>.block.vip {
		background-position: center -158px;
	}
	.product>.server {
		grid-template-columns: repeat(3, 1fr);
	}
	.product>.flex>.item-list {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
	.modal>.privilege {
		width: 100%;
	}
	.modal>.privilege>.left {
		width: 70%;
	}
	.modal>.privilege>.left>.images {
		display: flex;
		justify-content: center;
		height: 100%;
	}
	.modal>.privilege>.left>.images>img {
		width: auto;
		height: 100%;
		margin: 0 auto;
	}
	.profile {
		display: flex;
		flex-direction: column;
		width: 95%;
	}
	.profile>.profile-menu {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.profile>.profile-body {
		width: 100%;
		overflow-x: auto;
	}
	.admin>.block {
		display: flex;
		flex-direction: column;
	}
	
}
@media (max-width: 480px) {
	.menu {
		display: none;
	}
	.modal-button {
		display: block;
	}
	.privileges {
        width: 90%;
        padding: 1rem 0 0rem 0;
    }
	.privileges>h1, .product>h1 {
		text-align: center;
		font-size: 2rem;
	}
	.privileges>.flex {
		display: flex;
		flex-direction: column;
	}
	.privileges>.flex>.block {
        min-height: 9rem;
    }
	.privileges>.flex>.block.grim {
		background-position: center -92px;
		background-size: 100%;
	}
	.privileges>.flex>.block.boss {
		background-size: 100%;
		background-position: center -165px;
	}
	.privileges>.flex>.block.god {
		background-position: center -149px;
	}
	.privileges>.flex>.block.pro {
		background-size: 100%;
		background-position: center -99px;
	}
	.privileges>.flex>.block.vip {
		background-size: 100%;
		background-position: center -241px;
	}
	
	.product {
		padding: 1rem 0;
		width: 90%;
	}
	.product>.flex>.item-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.product>.flex>.item-list>.item {
		height: 14rem;
	}
	.product>.flex>.item-list>.item>img {
		width: 130px;
		height: 130px;
	}
	.product>.category {
		justify-content: center;
	}
	.product>.server {
		grid-template-columns: repeat(2, 1fr);
	}
	
	footer>.footer {
		width: 90%;
		display: flex;
		flex-direction: column-reverse;
		padding: 2rem 0rem 2rem 0rem;
	}
	footer>.footer>ul {
		display: flex;
		gap: .5rem;
		flex-direction: column;
	}
	.navigated>.flex {
		width: 90%;
	}
	.modal>.privilege {
		width: 100%;
		height: 100%;
		top: 0;
		display: flex;
		flex-direction: column;
		padding: 1rem;
		gap: 0;
		overflow-y: auto;
	}
	.modal>.privilege>.left {
		width: 100%;
	}
	.modal>.privilege>.left>.images>img {
		height: max-content;
		top: -6rem;
		width: 100%;
	}
	.modal>.privilege>.left>.images>img.boss {
		top: -10rem;
	}
	.modal>.privilege>.left>.images>img.god {
		top: -8rem;
	}
	.modal>.privilege>.left>.images>img.pro {
		top: -6rem;
	}
	.modal>.privilege>.left>.images>img.vip {
		top: -13rem;
	}
	.modal>.privilege>.right {
		padding: 0;
	}
	.modal>.privilege>.right>h2 {
		text-align: center;
		font-size: 1.5rem;
		padding-top: .5rem;
	}
	.modal>.privilege>.left {
        min-height: 10rem;
		border-radius: .5rem;
    }
	.final-cost-pr {
		display: flex;
		flex-direction: row;
		align-items: flex-end;
		gap: 1rem;
	}
	.final-cost-pr>lable {
		width: 5rem;
		display: flex;
		text-align: right;
	}
	.modal>.item {
        width: 95%;
        top: 1rem;
        max-height: 98%;
        overflow: scroll;
    }
	.modal>.item>.body>.description {
		max-height: max-content;
    }
	.modal>.calendar {
		width: 95%;
		top: 1rem;
	}
	.modal>.calendar>#calendar>div {
		font-size: 1.3rem;
		height: 2.5rem;
	}
	.modal>.calendar>#calendar>div.top {
		font-size: 1rem;
	}
	.modal>.rules {
		width: 95%;
		top: 1rem;
		height: 97%;
	}
	.modal>.payer {
		width: 95%;
		top: 1rem;
	}
	.payer>.body>.form-group>.flex-metod {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
	.payer>.body>.payer-finish {
		display: flex;
		gap: 1rem;
		height: max-content;
		flex-direction: column;
		padding: 0.5rem .8rem;
	}
	.payer>.body>.payer-finish>.bonuse {
		justify-content: flex-end;
		flex-direction: row-reverse;
	}
	.profile {
		display: flex;
		flex-direction: column;
		width: 95%;
	}
	.profile>.profile-menu {
		width: 100%;
	}
	.profile>.profile-body {
        width: 100%;
        overflow-x: auto;
    }
	.modal>.mod-promo {
		width: 95%;
		top: 1rem;
	}
	.admin>.block {
		display: flex;
		flex-direction: column;
	}
	.admin>.block>.calendar>.button>.box {
		gap: 0.5rem;
	}
	.modal>.info {
		top: 1rem;
		width: 95%;
	}
	.modal>.info>.scroll>.kits>.flex>.grid {
		grid-template-columns: repeat(5, minmax(0, 1fr));
	}
}
