:root {
	--color-accent: #b5925d;
	--btn-bg-color: var(--color-accent);
	--btn-bg-color-hover: #947240;
	--font-1: "DXAngelus-Regular", "Tahoma";
	--bg: url(../images/bg-min.jpg);
	--menu-item-color: #939393;
	--header-filter-logo: brightness(100%);
}

@font-face {
	font-family: "Albertus-Bold";
	src: url(../fonts/Albertus-Bold.Ttf);
	font-weight: 500;
}
@font-face {
	font-family: "DXAngelus-Regular";
	src: url(../fonts/DXAngelus_Regular.otf);
	font-weight: 500;
}
@font-face {
	font-family: "intro_regular";
	src: url(../fonts/intro_regular.ttf);
	font-weight: 500;
}
body {
	position: relative;
	z-index: 0;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	font-size: 14px;
	font-family: "intro_regular", "Tahoma";
	color: #939393;
	background-color: #eaefe6;
	min-height: 100vh;
	min-width: 360px;
	display: flex;
	flex-direction: column;
}

.theme-ny {
	--bg: url(../images/bg-ny-min.jpg);
	--menu-item-color: #fff;
	--header-filter-logo: brightness(200%);
}

.page {
	background-image: var(--bg);
	background-position: center top;
	background-repeat: no-repeat;
	position: relative;
	z-index: 2;
	overflow-x: hidden;
	margin: 0 auto;
	min-height: 100vh;
	width: 100%;
	min-width: 360px;
	max-width: 1920px;
	transition: 0.3s all;
	box-sizing: border-box;
	flex-grow: 1;
	padding-top: 80px;
}

@media screen and (min-width: 1921px) {
	.page {
		-webkit-mask: linear-gradient(
			to right,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, 1) 150px,
			rgba(0, 0, 0, 1) calc(100% - 150px),
			rgba(0, 0, 0, 0) 100%
		);
	}
}

a {
	text-decoration: none;
	color: var(--color-accent);
	transition: 0.2s;
}
a:hover {
	text-decoration: none;
}
/*flex*/
.f-a {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-around;
}
.f-b {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: space-between;
}
.f-c {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: center;
}
.f-s {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-start;
}
.f-e {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-end;
}
.f-w {
	flex-wrap: wrap;
}
.f-dr {
	flex-direction: column;
	align-items: center;
}

/* dec-line */

.dec-line {
	height: 9px;
	width: 100vw;
	position: absolute;
	left: 50%;
	transform: translate(-50%, -50%);
	box-sizing: border-box;
	border-top: 3px solid rgba(193, 180, 159, 0.3);
	border-bottom: 3px solid rgba(193, 180, 159, 0.3);
}

.dec-line_bottom {
	top: 100%;
}

.dec-line_top {
	bottom: 100%;
}

.wrap {
	width: 1220px;
	margin: 0 auto;
}
/*site*/
/* .site {
	width: 100%;
	z-index: 1;
	position: relative;
} */

/* logotype */

.logotype {
	display: block;
	max-width: 650px;
	position: relative;
	z-index: 0;
}

.logotype__img {
	display: block;
	max-width: 100%;
}

.logotype__img_hover {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	opacity: 0;
	transition: 0.3s all;
	pointer-events: none;
}

.logotype:hover .logotype__img_hover {
	animation: logotype 0.2s ease forwards;
}

@keyframes logotype {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(1.2);
	}
}

.header {
	/* padding: 4px 0;
	align-items: center;
	position: relative;
	z-index: 99; */

	padding: 4px 0;
	align-items: center;
	position: absolute;
	z-index: 99;
	left: 20px;
	top: 0;
	right: 20px;
	display: flex;
	justify-content: space-around;
}

.header_logo {
	filter: var(--header-filter-logo);
}

.header_menu {
	margin: 22px;
	position: relative;
	z-index: 10;
}
.header_menu_item {
	font-size: 14px;
	margin: 0px 16px;
	align-items: center;
	color: var(--menu-item-color);
	font-family: var(--font-1);
	text-transform: uppercase;
	transition: 0.3s all;
	position: relative;
	z-index: 0;
	cursor: pointer;
}
.header_menu_item:hover {
	z-index: 10;
	color: var(--color-accent);
}

.header_menu_item img {
	margin-right: 8px;
	transition: 0.2s all;
	pointer-events: none;
}

.header_menu_item:hover img {
	animation: navImg 0.3s ease forwards;
}

@keyframes navImg {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.2);
	}
	100% {
		transform: scale(1);
	}
}

.subnav {
	position: absolute;
	left: 0;
	top: calc(100% + 15px);
	background-color: #fff;
	border-radius: 6px;
	padding: 5px 0;
	opacity: 0;
	visibility: hidden;
	transition: 0.3s all;
	filter: drop-shadow(0 8px 10px rgba(5, 5, 5, 0.6));
}

.header_menu_item:hover .subnav {
	opacity: 1;
	visibility: visible;
}

.subnav:before {
	display: block;
	content: "";
	height: 15px;
	position: absolute;
	bottom: 100%;
	left: 0;
	right: 0;
	background-color: transparent;
}

.subnav:after {
	display: block;
	content: "";
	border: 5px solid transparent;
	border-bottom: 4px solid #fff;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 100%;
}

.subnav-item {
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 10px 15px;
	white-space: nowrap;
	font-size: 14px;
	color: #939393;
	font-family: var(--font-1);
	transition: 0.3s all;
}

.subnav-item:hover {
	color: #5a5a5a;
	background-color: rgba(26, 26, 26, 0.07);
}

.mobmenu {
	display: none;
	position: relative;
	cursor: pointer;
	margin: 0px 10px;
	padding: 15px 4px;
	background: rgb(0 0 0 / 50%);
	border-radius: 0.5em;
	transition: 0.2s;
}
.mobmenu span {
	display: block;
	position: relative;
	width: 28px;
	height: 3px;
	background-color: #fff;
	cursor: pointer;
	border-radius: 0.5em;
}
.mobmenu span:before {
	position: absolute;
	top: -7px;
	content: "";
	width: 24px;
	height: 3px;
	left: 50%;
	border-radius: 0.5em;
	transform: translate(-50%, 0px);
	background-color: #fff;
}
.mobmenu span:after {
	position: absolute;
	bottom: -7px;
	content: "";
	width: 24px;
	height: 3px;
	left: 50%;
	border-radius: 0.5em;
	transform: translate(-50%, 0px);
	background-color: #fff;
}
.mobmenu_active span:before {
	position: absolute;
	top: -7px;
	content: "";
	width: 16px;
	height: 2px;
	left: 50%;
	transform: translate(-50%, 0px);
	background-color: #fff;
	transform: rotateY(45deg);
}
.mobmenu_active {
	transition: 0.3s;
	background: #424d4b;
}
.mobmenu_over {
	position: absolute;
	display: block !important;
	background: #eaeae8;
	border-radius: 0.5em;
	width: 240px;
	box-shadow: 0px 2px 8px rgb(80 117 130 / 25%);
	padding: 5px;
	left: 30px;
	top: 70px;
	z-index: 10;
}
.mobmenu_over:before {
	content: "▾";
	color: #eaeae8;
	font-size: 34px;
	position: absolute;
	top: -23px;
	left: 5px;
	transform: rotate(61deg);
}

.mobmenu_over {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.header_server {
	position: relative;
	margin-left: 20px;
	align-items: center;
	text-transform: uppercase;
	font-family: var(--font-1);
	cursor: pointer;
	transition: 0.2s;
	padding: 6px 10px;
}
.header_server_rate {
	height: fit-content;
	border: 2px solid #a9b92e;
	padding: 6px;
	border-radius: 5px;
	margin-right: 15px;
	transform: rotate(45deg);
	transition: 0.2s;
}
.header_server_rate span {
	font-size: 11px;
	display: block;
	transform: rotate(-45deg);
	font-family: "intro_regular", "Tahoma";
}
.header_server_rate_btn {
	color: #8988b2;
	margin-left: 5px;
	cursor: pointer;
}
.header_server:hover {
	background: rgb(23 59 88 / 70%);
	border-radius: 0.5em;
	color: #fff;
}
.header_server:hover .header_server_rate_btn {
	color: #a9b92e;
}
.header_server:hover .header_server_rate {
	box-shadow: 0 0 8px 2px #8bc38f;
}
.header_server--active {
	background: rgb(23 59 88 / 70%);
	border-radius: 0.5em;
	color: #fff;
}
.header_server_panel {
	position: absolute;
	width: 100%;
	top: 20px;
	left: 0px;
}
.header_server_panel_over {
	position: relative;
	padding: 5px;
	top: 40px;
	background: #eaeae8;
	border-radius: 0.5em;
	width: 100%;
	box-shadow: 0px 2px 8px rgb(80 117 130 / 25%);
	z-index: 10;
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.header_server_panel_over:before {
	content: "▾";
	color: #eaeae8;
	font-size: 34px;
	position: absolute;
	top: -23px;
	left: 40px;
	transform: rotate(61deg);
}
.header_server_panel_over a {
	color: #939393;
	display: block;
	text-transform: none;
	background: rgb(255 255 255 / 100%);
	padding: 6px;
	margin: 1px;
	border-radius: 0.5em;
	transition: 0.2s;
	font-size: 14px;
	cursor: pointer;
	text-align: center;
}
.header_server_panel a:hover {
	background: rgb(80 117 130 / 15%);
}
.header_cabinet {
	margin-left: 20px;
	font-family: var(--font-1);
	background-color: rgb(141, 181, 93);
	border-radius: 15px;
	min-width: 180px;
	padding: 5px 15px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 30px;
	transition: 0.2s all;
}
.header_cabinet:hover {
	background-color: rgb(114, 158, 61);
	color: #fff;
}
.header_lang {
	margin-left: 20px;
	position: relative;
	width: 46px;
	height: 46px;
	transition: 0.2s;
}
.header_lang:hover {
	background: rgb(23 59 88 / 70%);
	border-radius: 50%;
}
.lang {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border: 2px solid #a6b8c0;
	cursor: pointer;
	margin: 5px;
	display: block;
}

.lang img {
	width: 32px;
	height: 32px;
	transition: 0.2s;
}
.lang img:hover {
	box-shadow: 0 0 8px 2px #8bc38f;
	border-radius: 50%;
}
.lang_panel {
	position: absolute;
	padding: 0px;
	top: 60px;
	left: 0px;
	background: #eaeae8;
	border-radius: 0.5em;
	box-shadow: 0px 2px 8px rgb(80 117 130 / 25%);
	z-index: 10;
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.lang_panel:before {
	content: "▾";
	color: #eaeae8;
	font-size: 34px;
	position: absolute;
	top: -23px;
	left: 0px;
	transform: rotate(61deg);
}
.header_lang--active {
	background: rgb(23 59 88 / 70%);
	border-radius: 50%;
}
.main {
	margin-top: 90px;
}

.main_logo {
	margin-bottom: -20px;
}
.main_name {
	display: block;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	font-size: 18px;
	font-family: "Albertus-Bold", "Tahoma";
	margin-top: -70px;
	letter-spacing: 4px;
}
.servers-list {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 60px 30px;
	width: 100%;
}
.server {
	position: relative;
	z-index: 0;
	background-color: transparent;
	background-image: url(../images/bg.png);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	width: 227px;
	height: 75px;
	flex-shrink: 0;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: left;
	padding-left: 85px;
	box-sizing: border-box;
	cursor: default;
}
.server__ico {
	background-color: transparent;
	background-image: url(../images/ico-1.png);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	width: 90px;
	height: 90px;
	position: absolute;
	top: -13px;
	left: 6px;
	z-index: 1;
	pointer-events: none;
}

.server__container {
	flex-grow: 1;
}

.server__title {
	font-size: 14px;
	color: #fff;
	text-transform: uppercase;
	font-family: var(--font-1);
}

.server__progress {
	display: flex;
	justify-content: flex-start;
	gap: 8px;
	margin-top: 2px;
	margin-left: 3px;
	padding: 2px 0;
	box-sizing: border-box;
}
.server__progress-item {
	width: 10px;
	height: 10px;
	border-radius: 2px;
	transform: rotate(45deg);
	box-shadow: 0 0 0 1px #c1cdd0;
	display: flex;
	justify-content: center;
	align-items: center;
}

.server__progress-item:before {
	display: block;
	content: "";
	width: 8px;
	height: 8px;
	background: #ffd76a;
	margin: 1px;
	border-radius: 2px;
}

.server_stage_0 .server__progress .server__progress-item:before {
	content: none;
}

.server_stage_1
	.server__progress
	.server__progress-item:nth-child(1)
	~ *:before {
	content: none;
}
.server_stage_2
	.server__progress
	.server__progress-item:nth-child(2)
	~ *:before {
	content: none;
}
.server_stage_3
	.server__progress
	.server__progress-item:nth-child(3)
	~ *:before {
	content: none;
}
.server_stage_4
	.server__progress
	.server__progress-item:nth-child(4)
	~ *:before {
	content: none;
}
.server_stage_5
	.server__progress
	.server__progress-item:nth-child(5)
	~ *:before {
	content: none;
}
.server_stage_6
	.server__progress
	.server__progress-item:nth-child(6)
	~ *:before {
	content: none;
}

.server__tip {
	--width: 180px;
	width: var(--width);
	box-sizing: border-box;
	padding: 8px 10px;
	position: absolute;
	top: 100%;
	left: calc(50% - var(--width) / 2);
	background-color: #fff;
	box-shadow: 0 8px 5px rgba(0, 0, 0, 0.06), 0 0 25px rgba(255, 255, 255, 0.32),
		inset 0 0 14px rgba(163, 161, 147, 0.33);
	border-radius: 6px;
	opacity: 0;
	transform: translateY(-10px);
	transition: 0.3s all;
	text-align: center;
}

.server__tip_active,
.server:hover .server__tip {
	opacity: 1;
	transform: translateY(0);
}

.server__tip::after {
	display: block;
	content: "";
	border: 5px solid transparent;
	border-bottom: 4px solid #f1f1ee;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 100%;
}

/* life */

.life__title {
	color: rgb(156, 158, 159);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
}

.life__timer {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 7px;
	color: rgb(154, 110, 86);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
}

.life__days {
}

.life__days_name {
}

.life__time {
}

.main_news {
	margin: 60px auto 20px auto;
	text-align: center;
}
.main_news_title {
	text-transform: uppercase;
	color: #ffeac1;
	font-size: 28px;
	font-family: var(--font-1);
	font-weight: 500;
	max-width: 1000px;
	margin: 0 auto;
}
.main_news_info {
	font-size: 14px;
	line-height: 20px;
	text-align: center;
	color: #fff;
	font-family: "intro_regular", "Tahoma";
	max-width: 650px;
	margin: 0 auto;
}

/* button */
.button {
	--button-width: 330px;
	--button-height: 90px;
	--button-size: 1;
	display: inline-flex;
	grid-gap: 0.5rem;
	gap: 0.5rem;
	align-items: center;
	justify-content: center;
	text-align: center;
	box-sizing: border-box;
	text-decoration: none;
	font-weight: 700;
	line-height: 1;
	padding: 0;
	width: calc(var(--button-width) * var(--button-size));
	height: calc(var(--button-height) * var(--button-size));
	cursor: pointer;
	flex-shrink: 0;
	position: relative;
	z-index: 0;
	border: 0;
	outline: 0;
	border-radius: 0;
	box-shadow: none;
	background: transparent;
	font-family: var(--font-1);
	color: #837c6f;
	text-transform: uppercase;
	font-size: 18px;
	text-shadow: 1px 0px 0px #ffffff7a;
	transition: 0.2s;
}

.button:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -2;
	border-radius: 0;
	transition: 0.2s all;
	box-sizing: border-box;
	background-color: transparent;
	background-image: url(../images/button.png);
	background-size: 100% 100%;
	background-position: center center;
	background-repeat: no-repeat;
}

.button:hover:before {
	filter: brightness(120%);
}

.button_small {
	--button-size: 0.7;
	font-size: 14px;
}

/* gwtab */

[data-tab] {
	display: none;
	opacity: 0;
	animation: tab 1s ease forwards;
}

@keyframes tab {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 5px 15px;
	font-family: var(--font-1);
	background-color: rgb(141, 181, 93);
	border-radius: 15px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	transition: 0.2s all;
	cursor: pointer;
	font-size: 12px;
}

.btn:hover {
	background-color: rgb(114, 158, 61);
	color: #fff;
}

.btn[data-open-tab-active="true"],
.btn[data-open-tab-active="true"]:hover {
	background-color: rgb(88, 128, 41);
}

/* dots */

.dots {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	width: auto !important;
}

.dots.swiper-pagination-lock {
	display: none;
}

.dot {
	width: 10px;
	height: 10px;
	box-sizing: border-box;
	opacity: 1;
	cursor: pointer;
	flex-shrink: 0;
	transition: 0.3s all;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(96, 96, 96, 0.5);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	border-radius: 10px;
}

.dot_active {
	background-color: rgb(141, 181, 93);
	width: 40px;
}

.news-spacer {
	height: 70px;
}

@media screen and (min-width: 1700px) {
	.news-wrp {
		-webkit-mask: linear-gradient(
			to right,
			rgba(0, 0, 0, 0) 0%,
			rgba(0, 0, 0, 1) 10%,
			rgba(0, 0, 0, 1) 90%,
			rgba(0, 0, 0, 0) 100%
		);
	}
}

.news {
	max-width: 1500px;
	margin: 0 auto;
	padding: 40px 0;
}
.news__dots {
	margin-top: 20px;
}
.news_block {
	background: #eaeae8;
	border-radius: 0.5em;
	width: 288px;
	/* box-shadow: 0px 2px 8px rgb(80 117 130 / 25%); */
	margin: 0 auto;
}

@media screen and (min-width: 600px) {
	.news_block {
		width: 100%;
	}
}

.news_block_img {
	height: 150px;
	-webkit-mask: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 1) 0%,
		rgba(0, 0, 0, 1) 70%,
		rgba(0, 0, 0, 0) 100%
	);
}
.news_block_img img {
	width: 100%;
	border-radius: 0.5em;
}
.news_block_inform {
	padding: 20px;
	text-align: center;
	margin-top: -50px;
}
.news_block_title {
	color: #363636;
	font-size: 18px;
	font-weight: normal;
	text-transform: uppercase;
	font-family: var(--font-1);
	height: 40px;
}
.news_block_info {
	color: #6d6862;
	font-size: 14px;
	height: 60px;
}
.news_block_info p {
	margin: 5px 0px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.news_block_time {
	color: #a29888;
	font-size: 10px;
	font-family: "intro_regular", "Tahoma";
	text-transform: uppercase;
}
.news_block_link {
	background: var(--btn-bg-color);
	border-radius: 0.5em;
	width: 150px;
	height: 40px;
	color: #fff;
	display: flex;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
	font-family: var(--font-1);
	text-transform: uppercase;
	font-weight: normal;
	font-size: 14px;
}
.news_block_link:hover {
	background: var(--btn-bg-color-hover);
}
.preim {
	margin-top: 40px;
	margin-bottom: 70px;
	text-align: center;
}
.preim_block {
	margin: 10px;
	width: 288px;
}
.preim_block_img img {
	width: 150px;
}
.preim_block_inform {
	width: 260px;
	margin: 0 auto;
	margin-top: -6px;
}
.preim_block_title {
	color: #4e4e4e;
	font-size: 18px;
	text-transform: uppercase;
	font-family: var(--font-1);
}
.preim_block_info {
	font-size: 14px;
}
.social {
	margin-top: 50px;
}
.social_btn {
	background: var(--btn-bg-color);
	border-radius: 0.5em;
	width: 100%;
	height: 40px;
	color: #fff;
	display: flex;
	margin: 0 auto;
	align-items: center;
	justify-content: center;
	margin-top: 10px;
	font-family: var(--font-1);
	text-transform: uppercase;
	font-weight: normal;
	font-size: 14px;
}
.social_discord iframe {
	border-radius: 0.5em;
	width: 340px;
}
.social_btn:hover {
	background: var(--btn-bg-color-hover);
}
.social_vote {
	margin: 0px 20px;
}
.social_vote_container {
	padding: 20px 10px;
	background: #eaeae8;
	border-radius: 0.5em;
	height: 210px;
	box-shadow: inset 0px 0px 40px 10px rgb(80 117 130 / 25%),
		0px 0px 5px 3px rgb(80 117 130 / 25%);
}
.social_vote_title {
	color: #4e4e4e;
	font-size: 22px;
	font-family: var(--font-1);
}
.social_vote_title span {
	color: #a69274;
}
.social_vote_desc {
	font-size: 11px;
	color: #87837d;
	font-family: "intro_regular", "Tahoma";
}
.social_vote_block {
	margin-top: 30px;
	width: 320px;
	flex-wrap: wrap;
}
.social_vote_item {
	margin: 2px;
	border-radius: 0.5em;
	transition: 0.2s;
	height: 51px;
}

.social_vote_item:hover {
	opacity: 0.6;
}
.social_vote_item {
	margin: 2px;
	border-radius: 0.5em;
}
.social_vote_item img {
	width: 155px;
	height: 52px;
}
.social_media_container {
	padding: 20px 10px;
	background: #eaeae8;
	border-radius: 0.5em;
	height: 210px;
	width: 480px;
	box-shadow: inset 0px 0px 40px 10px rgb(80 117 130 / 25%),
		0px 0px 5px 3px rgb(80 117 130 / 25%);
}
.social_media_title {
	color: #4e4e4e;
	font-size: 22px;
	font-family: var(--font-1);
	margin-left: 10px;
}
.social_media_title span {
	color: #a69274;
}
.social_media_desc {
	font-size: 11px;
	color: #87837d;
	margin-left: 10px;
	font-family: "intro_regular", "Tahoma";
}

/*slider*/
.social_slider {
	margin-top: 20px;
	position: relative;
}
.social_slider_over {
	overflow: hidden;

	position: relative;
	display: flex;
}
.streams {
	min-width: 0;
	max-width: 100%;
	overflow: hidden;
	/* margin-top: 11px; */
}
.streams__dots {
	margin-top: 15px;
}
.stream {
	height: 130px;
	border-radius: 0.5em;
	background-color: transparent;
	background-image: url(../images/bg_1.png);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	color: #fff;
	position: relative;
	z-index: 0;
	overflow: hidden;
}

.stream iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.stream__content {
	width: 80%;
	box-sizing: border-box;
	padding: 5px 20px;
	background: #a69274ba;
	border-radius: 5px;
}

/*footer*/
.footer {
	align-items: flex-start;
	width: 100%;
	padding: 50px 0;
	margin-top: 130px;
	position: relative;
	z-index: 0;
}
.footer_copyright {
	align-items: flex-start;
	color: #8a8a8a;
	font-family: "intro_regular", "Tahoma";
}
.footer_copyright img {
	height: 100px;
}
.footer_copyright_info {
	margin-left: 20px;
}
.footer_copy_site {
	text-transform: uppercase;
	font-size: 12px;
	text-align: left;
	color: #978055;
}
.footer_copy_desc {
	display: block;
	margin-top: 10px;
	width: 200px;
	text-transform: uppercase;
	font-size: 9px;
	text-align: left;
}
.footer_menu {
	width: 50%;
}
.footer_menu_block {
	margin: 0px 10px;
}
.footer_menu_title {
	font-family: var(--font-1);
	color: #978055;
	font-size: 16px;
	text-transform: uppercase;
}
.footer_menu_links {
	padding: 0px;
	margin: 12px 0px;
	display: grid;
	gap: 10px;
}
.footer_menu_links li {
	list-style: none;
	font-family: "intro_regular", "Tahoma";
	text-transform: uppercase;
}
.footer_menu_links a {
	font-family: "intro_regular", "Tahoma";
	color: #8a8a8a;
	font-size: 12px;
}
.footer_menu_links a:hover {
	color: var(--color-accent);
}

.footer_rules {
	padding-left: 0px;
}
.footer_rules_links {
	margin-top: 10px;
}

.footer_rules a {
	display: block;
	color: #8a8a8a;
	font-size: 12px;
	margin: 5px 0px;
}
.footer_rules a:hover {
	color: var(--color-accent);
}
.footer_rules_mail a {
	color: #8a8a8a;
	font-size: 16px;
}
.studio_copy {
	margin-top: 30px;
}
.studio_copy span {
	display: block;
	color: #1c608f;
	font-size: 10px;
	margin-left: 26px;
}
.studio_copy img {
	display: block;
	width: 100px;
	padding: 0px;
	border-radius: 0.5em;
	margin-top: -10px;
	transition: 0.2s;
}
.studio_copy img:hover {
	opacity: 0.6;
}
.footer_container {
	bottom: 0px;
	width: 100%;
}
/*popap*/
.popap {
	display: none;
	position: fixed;
	z-index: 999;
	width: 100%;
	height: 100%;
	background: rgb(117 132 144 / 80%);
	top: 0px;
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.popap_container {
	background: url(../images/popapbg.png);
	width: 1300px;
	height: 100%;
	position: relative;
	top: 0px;
	left: 50%;
	transform: translate(-50%, 10px);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	z-index: 9999;
}
.popap_over {
	width: 700px;
	height: 66%;
	margin: 0 auto;
	padding: 5px;
	border-radius: 0.5em;
	position: relative;
}
.popap_title {
	text-align: center;
	font-size: 26px;
	color: #363636;
	text-transform: uppercase;
	font-family: var(--font-1);
}
.popap_content {
	margin-top: 15px;
	overflow: auto;
	height: 85%;
	padding: 10px;
}
.popap_content::-webkit-scrollbar {
	width: 0.2em;
	height: 0.2em;
}

.popap_content::-webkit-scrollbar-thumb {
	background: var(--btn-bg-color);
}

.popap_content::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.1);
}

.popap_content {
	scrollbar-face-color: #c05e0f;
	scrollbar-track-color: rgba(254, 205, 121, 0.2);
}
.popap_content h3 {
	font-size: 21px;
	color: #a59173;
	font-weight: normal;
	font-family: var(--font-1);
	margin: 0px;
	text-transform: uppercase;
}
.popap_content p {
	margin: 15px 0px;
	color: #9e9993;
	font-size: 12px;
}
.popap_content h4 {
	color: #150d0c;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: normal;
}
.popap_content ul {
	margin: 10px 0px;
	padding: 0px;
}
.popap_content li {
	list-style: none;
	padding: 10px;
	border-radius: 0.5em;
	font-size: 12px;
	display: flex;
	align-items: center;
}
.popap_content li:nth-child(odd) {
	background: #d7d7d7;
}
.popap_icon {
	width: 25px;
	height: 25px;
	background-size: cover;
	margin-right: 10px;
}
.popap_close {
	position: absolute;
	text-transform: uppercase;
	left: 50%;
	transform: translate(-50%, 100px);
	bottom: 0px;
	font-family: var(--font-1);
	font-size: 14px;
	color: #e9e9e7;
	cursor: pointer;
}
.popap_close:hover {
	color: var(--btn-bg-color);
}

.popap_close:before {
	content: "";
	width: 69px;
	height: 62px;
	background: url(../images/popapclose.png);
	position: absolute;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	transform: translate(0px, -23px);
}
.popap_fullnews {
	width: 150px;
	text-align: center;
	display: block;
	margin: 20px;
	font-size: 11px;
	padding: 15px 20px;
	color: #fff;
	background: #87837d;
	text-transform: uppercase;
	border-radius: 0.5em;
	font-family: var(--font-1);
}
.popap_fullnews:hover {
	background: var(--btn-bg-color);
	color: #fff;
}
.popap_close_bg {
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 100%;
	top: 0px;
}
/*popap files*/
.popap_files {
	text-align: center;
}
.popap_file_block {
	margin-bottom: 10px;
	background: rgb(255 255 255 / 20%);
	padding: 10px;
	border-radius: 0.5em;
}
.popap_block {
	margin-top: 5px;
	border-radius: 0.5em;
}
.popap_item {
	width: 48%;
	background: #d7d7d7;
	padding: 5px;
	border-radius: 0.5em;
}
.popap_item h4 {
	text-align: center;
	margin: 6px;
}
.popap_file_btn {
	width: auto;
	text-align: center;
	margin: 5px 1px;
	font-size: 12px;
	padding: 10px 14px;
	color: #fff;
	background: var(--btn-bg-color);
	text-transform: unset;
	border-radius: 0.5em;
	font-family: "intro_regular", "Tahoma";
	align-items: center;
}
.popap_file_btn:hover {
	background: var(--btn-bg-color-hover);
}
.popap_file_btn img {
	width: 14px;
	height: 14px;
	background-size: cover;
	margin-right: 4px;
}
.popap_file_links {
	display: flex;
	justify-content: center;
}

.popap_closed {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut;
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
}
.popap-btns {
	display: flex;
	justify-content: center;
	align-items: center;
}
/*promo*/
.promo {
	width: 100%;
	background: url(../images/promobg.png) top;
	background-repeat: no-repeat;
	height: 100%;
	background-size: cover;
	z-index: 1;
	position: absolute;
}
.promo_logo img {
	width: 500px;
}
.promo_servers {
	margin-top: 20px;
	width: 100%;
}
.promo_server_block {
	display: block;
	position: relative;
	width: 226px;
	height: 280px;
	background: #fff;
	padding: 20px;
	border-radius: 0.5em;
	margin: 10px;
	opacity: 0.7;
	transition: 0.2s;
	cursor: pointer;
}
.promo_server_block:hover {
	opacity: 1;
}
.promo_server_block--active {
	opacity: 1 !important;
}
.promo_server_block:before {
	position: absolute;
	background: url("../images/promo_sover.png");
	content: "";
	width: 248px;
	height: 303px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}
.promo_server_img {
	text-align: center;
	margin-top: 10px;
}
.promo_server_content {
	width: 100%;
	height: 80px;
	margin: 0 auto;
	text-align: center;
}
.promo_server_title {
	color: #383838;
	font-size: 21px;
	text-transform: uppercase;
	font-family: var(--font-1);
}
.promo_server_info {
	margin-top: 10px;
	font-size: 12px;
	color: #7d7d7d;
}
.promo_startbtn {
	width: 240px !important;
	height: 65px !important;
	background-size: cover;
	margin: 20px auto;
	font-size: 14px;
	opacity: 1;
}
.promo .header_logo {
	filter: hue-rotate(573deg);
}
.promo .header_menu_item img {
	filter: hue-rotate(573deg);
}
.promo_nextsrv {
	background: #fff4e0;
}
.promo_disabled {
	background: #ffccb3;
}
/*animate*/
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}
@keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}

@-webkit-keyframes zoomOut {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	100% {
		opacity: 0;
	}
}
@keyframes zoomOut {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	100% {
		opacity: 0;
	}
}
/*page*/
.content_page {
	padding: 20px 20px;
	background: #eaeae8;
	border-radius: 0.5em;
	width: auto;
	margin-top: 45px;
	border-top: 2px solid rgba(185, 161, 104, 0.5);
	box-shadow: inset 0px 0px 40px 10px rgb(80 117 130 / 25%),
		0px 0px 5px 3px rgb(80 117 130 / 25%);
}
.page_body {
	font-family: "intro_regular";
	padding: 2px 10px;
	margin-top: 25px;
	line-height: 18px;
	/* height: 460px; */
	overflow: auto;
	border-top: 1px dotted rgb(0 0 0 / 10%);
}
.page_body::-webkit-scrollbar {
	width: 0.2em;
	height: 0.2em;
}

.page_body::-webkit-scrollbar-thumb {
	background: var(--btn-bg-color);
}

.page_body::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.1);
}

.page_body {
	scrollbar-face-color: #c05e0f;
	scrollbar-track-color: rgba(254, 205, 121, 0.2);
}
.page_title {
	font-size: 21px;
	text-transform: uppercase;
	text-align: center;
	color: #a69274;
	font-family: "DXAngelus-Regular";
	margin: 10px;
}
.social_content {
	position: fixed;
	top: 50%;
	right: 0;
	z-index: 990;
	transform: translateY(-50%);
}
.social_content a {
	display: flex;
	width: 53px;
	height: 53px;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all linear 0.2s;
}
.social_content a svg {
	display: block;
}
.social_content a:hover {
	opacity: 0.8;
}
.social_content a.vk {
	background: #4ba6d2;
}
.social_content a.ds {
	background: #6278d8;
}
.social_content a.tg {
	background: #1ba8ec;
}
/*donate top*/

.rating {
	position: fixed;
	left: -350px;
	top: 50%;
	transform: translate(0, -50%);
	background: rgb(0 0 0 / 50%);
	width: 400px;
	transition: 0.4s;
	z-index: 9;
	border-radius: 0px 10px 10px 0px;
	text-align: center;
}
.rating_btn {
	width: 50px;
	background: var(--btn-bg-color);
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	font-size: 16px;
	transition: 0.2s;
	cursor: pointer;
	border-radius: 0px 10px 10px 0px;
}
.rating_blocks {
	width: 350px;
	padding: 5px 2px;
	flex-wrap: wrap;
}
.rating--open {
	left: 0%;
}
.rating_btn span {
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
}
.rating_btn:hover {
	background: var(--btn-bg-color-hover);
}
.rating_btn:hover span {
	/* color: #b04c63; */
}
.rating_name {
	text-align: center;
	color: #fff;
	margin: 10px;
	font-size: 16px;
}
.rating_info {
	background: #ffc7622b;
	padding: 6px;
	border-radius: 10px;
	text-align: center;
	border: 1px solid #bba350;
	color: #fdecb0;
	font-weight: 500;
	font-size: 11px;
	margin: 10px;
}
.rating_stat {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 20px;
	flex-wrap: wrap;
}
.rating_stat_item {
	background: rgb(255 255 255 / 10%);
	width: 46%;
	border-radius: 10px;
	color: #fff;
	margin: 1px;
	display: flex;
	align-items: center;
}
.rating_stat_item:nth-child(1) .rating_stat_item_num {
	background: #f5a732;
	color: #fff;
}
.rating_stat_item:nth-child(2) .rating_stat_item_num {
	background: #d5aa69;
}
.rating_stat_item:nth-child(3) .rating_stat_item_num {
	background: #b79c75;
}
.rating_stat_item_num {
	background: rgb(183 157 135 / 36%);
	width: 30px;
	height: 20px;
	display: inline-block;
	border-radius: 10px;
	text-align: center;
	line-height: 20px;
	padding: 4px;
	color: #fff;
	margin-right: 10px;
}
.rating_link {
	background: #fff;
	padding: 10px;
	display: block;
	margin: 10px;
	border-radius: 10px;
	border: 1px solid transparent;
}
.rating_link:hover {
	background: transparent;
	padding: 10px;
	display: block;
	margin: 10px;
	border-radius: 10px;
	border: 1px solid #fff;
	color: #fff;
}

/* rating-btns */

.rating-btns {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 10px;
}

/* aposnow */
.aposnow {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	pointer-events: none;
	z-index: 500;
}
