@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap");

html {
	font-family: "Roboto", sans-serif;
	font-size: 16px;
	height: 100%;
}

body {
	height: 100%;
	scroll-behavior: smooth;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
	background-color: #110022;
	color: #000;
	min-width: 320px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
li,
figure,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
}

main {
	background-image: url(../images/common/home-bg.png);
	background-repeat: repeat-y;
	background-size: cover;
	height: 100%;
	flex-grow: 1;
	display: flex;
}

main > * {
	width: 100%;
}

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

img {
	max-width: 100%;
	display: block;
}

input,
button,
textarea,
select {
	font: inherit;
}

audio,
canvas,
iframe,
img,
svg,
video,
textarea {
	vertical-align: middle;
}

textarea {
	resize: none;
}

ul {
	padding: 0;
	list-style: none;
}

input,
select,
button {
	outline: none;
}

a {
	text-decoration: none;
	transition: all 0.3s ease-in;
}

svg {
	flex-shrink: 0;
}

.wrapper-mob {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding-top: 5px;
}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100%;
	padding-top: 80px;
}

@media (min-width: 991px) {
	.wrapper {
		padding-top: 68px;
	}
}

@media (max-width: 991px) {
	.wrapper {
		padding-top: 69px;
	}
}

@media (max-width: 576px) {
	.wrapper {
		padding-top: 115px;
	}
}

section {
	max-width: 1100px;
	margin: 0 auto;
	background-color: #29013f;
}

@media (max-width: 2150px) {
	section {
		min-height: 70vh;
	}
}

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 25px;
}

@media (max-width: 576px) {
	.container {
		padding: 0 15px;
	}
}

.section-divider {
	background: linear-gradient(
		90deg,
		#99ffff -47.65%,
		#99ffff 21.52%,
		#b35fd9 50%
	);
	height: 1px;
	border: none;
	margin: 0;
}

.red-italic {
	color: #bc0030;
	font-style: italic;
}

.breadcrumbs {
	display: flex;
	align-items: center;
}

.breadcrumbs a,
.breadcrumbs span {
	font-weight: bold;
	font-size: 16px;
	line-height: 19px;
	color: #2534a4;
	max-width: 250px;
	display: inline-block;
	text-transform: uppercase;
}

.breadcrumbs .divider {
	display: inline-block;
	margin: 0 6px;
	color: #6e308c;
}

.breadcrumbs a {
	color: #6e308c;
}

.comments__head {
	background: linear-gradient(
		90deg,
		#99ffff -47.65%,
		#99ffff 21.52%,
		#b35fd9 50%
	);
	padding: 15px 25px;
	margin: 0 0 30px 0;
}

.comments__head h3 {
	color: #6e308c;
	text-transform: uppercase;
}

.comment-wrapper {
	position: relative;
}

.comment-wrapper + .comment-wrapper {
	margin: 15px 0 0 0;
}

.comment-wrapper .comment-show {
	display: none;
}

.comment-wrapper .comment-answers {
	display: none;
}

.comment-wrapper.has-answers .comment-show {
	display: flex;
}

.comment-wrapper.has-answers .comment-show.is-show {
	position: absolute;
	cursor: unset;
}

.comment-wrapper.has-answers .comment-show.is-show span {
	display: none;
}

.comment {
	padding: 15px 25px;
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

@media (max-width: 768px) {
	.comment {
		flex-direction: column;
	}
}

.comment__content {
	display: flex;
	flex-direction: column;
	max-width: 80%;
	width: 100%;
}

@media (max-width: 768px) {
	.comment__content {
		max-width: 100%;
	}
}

.comment__info {
	display: flex;
}

@media (max-width: 576px) {
	.comment__info {
		flex-direction: column;
	}
}

.comment__userinfo {
	display: flex;
}

.comment__avatar {
	width: 30px;
	height: 30px;
	margin: 0 10px 0 0;
}

.comment__avatar img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.comment__username {
	margin: 0 10px 0 0;
}

.comment__username a {
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
	color: #2534a4;
}

.comment__username a:hover {
	text-decoration: underline;
}

@media (max-width: 576px) {
	.comment__date {
		margin: 10px 0 0 0;
	}
}

.comment__date span {
	display: inline-block;
	margin: 0 5px 0 0;
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
	color: #bc0030;
}

.comment__text {
	margin: 7px 0 0 0;
}

.comment__action {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

@media (max-width: 768px) {
	.comment__action {
		display: flex;
		flex-direction: row;
		align-items: center;
		width: 100%;
		justify-content: space-between;
		margin: 15px 0 0 0;
	}
}

.comment__like-btns {
	display: flex;
}

.comment__like-btns svg {
	fill: #babbbc;
	width: 20px;
	height: 21px;
}

.comment__like-btns span:hover svg {
	fill: #939596;
}

.comment__like,
.comment__dislike {
	display: flex;
}

.comment__like span,
.comment__dislike span {
	margin: 0 8px 0 0;
	cursor: pointer;
}

.comment__like span.active svg,
.comment__dislike span.active svg {
	fill: #b35fd9;
}

.comment__like {
	margin: 0 20px 0 0;
}

.comment__like span {
	transform: translateY(-3px);
}

.comment__dislike svg {
	transform: rotate(180deg);
}

.comment__reply {
	display: inline-block;
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
	text-transform: uppercase;
	color: rgba(22, 27, 29, 0.3);
	margin: 13px 0 0 0;
}

@media (max-width: 768px) {
	.comment__reply {
		margin: 0;
	}
}

.comment__reply:hover {
	color: rgba(22, 27, 29, 0.7);
}

.comment-show {
	display: inline-flex;
	align-items: flex-end;
	cursor: pointer;
	padding: 0 0 0 20px;
}

@media (max-width: 576px) {
	.comment-show {
		padding: 0;
	}
}

.comment-show svg {
	width: 33px;
	height: 28px;
	fill: transparent;
	stroke: #6e308c;
	stroke-width: 1px;
}

.comment-show span {
	font-weight: normal;
	font-size: 14px;
	line-height: 16px;
	color: #6e308c;
}

.comment-answers {
	padding: 0 0 0 55px;
}

@media (max-width: 576px) {
	.comment-answers {
		padding: 0 0 0 25px;
	}
}

.comment-answers .comment {
	background-color: #e6e5e5;
}

@media (max-width: 576px) {
	.comment-answers .comment {
		padding: 15px;
	}
}

.comment-answers .comment + .comment {
	margin: 0;
	border-top: 1px solid #fff;
}

.write-comment {
	background-color: #fff;
	margin: 30px 0 0 0;
}

.write-comment__head {
	display: flex;
	align-items: center;
	padding: 15px 25px;
	border-bottom: 1px solid rgba(179, 95, 217, 0.3);
}

.write-comment__head img {
	width: 30px;
	height: 30px;
	-o-object-fit: cover;
	object-fit: cover;
}

.write-comment__avatar {
	margin: 0 10px 0 0;
}

.write-comment__username a {
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
	color: #2534a4;
}

.write-comment__inner {
	padding: 15px 25px;
	position: relative;
}

.write-comment__inner textarea {
	border: none;
	max-width: 90%;
	width: 100%;
	min-height: 100px;
}

.write-comment__inner textarea:focus {
	outline: none;
}

.write-comment__inner button {
	display: inline-block;
	border: none;
	background-color: rgba(179, 95, 217, 0.7);
	color: #fff;
	cursor: pointer;
	padding: 3px 10px;
}

.write-comment__inner button:hover {
	background-color: #b35fd9;
}

.write-comment__smiles {
	cursor: pointer;
	display: block;
	position: absolute;
	top: 20px;
	right: 25px;
}

.footer {
	background-color: #161b1d;
	position: relative;
	padding: 15px 0;
}

.footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, #a4581d, #fbe702 51.56%, #a4581d);
}

.footer__top-content {
	display: flex;
	justify-content: space-between;
}

@media (max-width: 670px) {
	.footer__top-content {
		flex-direction: column;
	}

	.footer__copy {
		margin-top: 5px;
		text-align: center;
	}
}

.footer__nav {
	display: flex;
	margin: 0;
}

@media (max-width: 991px) {
	.footer__nav {
		flex-direction: column;
		justify-content: space-between;
	}
}

@media (max-width: 670px) {
	.footer__nav {
		flex-direction: row;
		justify-content: space-between;
		margin: 0 0 15px 0;
	}
}

@media (max-width: 450px) {
	.footer__nav {
		flex-direction: column;
		justify-content: space-between;
	}
}

@media (max-width: 450px) {
	.footer__nav li {
		text-align: center;
	}
}

.footer__nav li + li {
	margin: 0 0 0 20px;
}

@media (max-width: 991px) {
	.footer__nav li + li {
		margin: 0;
	}
}

@media (max-width: 670px) {
	.footer__nav li + li {
		margin: 0 0 0 20px;
	}
}

@media (max-width: 450px) {
	.footer__nav li + li {
		margin: 12px 0 0 0;
	}
}

.footer__navlink {
	font-weight: normal;
	font-size: 16px;
	line-height: 21px;
	color: #fff;
}

.footer__navlink:hover {
	color: #bfbfbf;
}

.footer__app {
	display: flex;
}

@media (max-width: 670px) {
	.footer__app {
		justify-content: center;
		margin: 0 0 30px 0;
	}
}

.footer__app a {
	display: block;
	align-self: flex-end;
	flex-shrink: 0;
}

.footer__app span {
	font-size: 18px;
	line-height: 21px;
	color: #fff;
	text-transform: uppercase;
	margin: 0 0 15px 0;
	display: inline-block;
}

@media (max-width: 450px) {
	.footer__app span {
		transform: translateX(15px);
	}
}

.footer__social {
	max-width: 255px;
}

@media (max-width: 670px) {
	.footer__social {
		max-width: 100%;
		text-align: center;
	}
}

.footer__social p {
	font-size: 18px;
	line-height: 23px;
	color: #fff;
	margin: 0 0 20px 0;
}

.footer__social-list {
	display: flex;
	margin: 0 0 20px 0;
}

@media (max-width: 670px) {
	.footer__social-list {
		justify-content: center;
	}
}

.footer__social-list svg {
	width: 35px;
	height: 20px;
	fill: #fff;
}

.footer__social-list svg:hover {
	fill: #cccccc;
}

.footer__subscribe h6 {
	font-weight: normal;
	font-size: 18px;
	line-height: 23px;
	letter-spacing: -0.01em;
	color: #ffffff;
	margin: 0 0 20px 0;
}

.footer__subscribe p {
	font-weight: normal;
	font-size: 14px;
	line-height: 19px;
	color: #e0e0e0;
}

.footer__subscribe form {
	display: flex;
}

@media (max-width: 670px) {
	.footer__subscribe form {
		justify-content: center;
	}
}

.footer__subscribe input {
	max-width: 210px;
	width: 100%;
	border: none;
	padding: 0 10px;
}

.footer__subscribe button {
	width: 40px;
	height: 40px;
	background-image: url(../images/common/footer-submit.png);
	background-repeat: no-repeat;
	border: none;
	cursor: pointer;
	margin: 0;
}

.footer__subscribe button:hover {
	opacity: 0.8;
}

.footer__bottom {
	border-top: 1px solid rgba(196, 196, 196, 0.3);
}

.footer__bottom p {
	font-size: 13px;
	line-height: 20px;
	color: #999999;
	max-width: 385px;
}

.footer__bottom-content {
	padding: 25px 0 0 0;
}

@media (min-width: 991px) {
	.footer__bottom-content {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		padding-top: 15px;
	}

	.footer__bottom p {
		margin-right: 5px;
	}

	.footer__bottom p:last-child {
		margin-right: 0;
	}
}

.footer__payments {
	margin-left: auto;
	margin-right: 15px;
}

.footer__copy {
	color: #fff;
}

.header {
	background-color: #161b1d;
	padding: 15px 0 10px;

	z-index: 10;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.header::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: linear-gradient(90deg, #a4581d, #fbe702 51.56%, #a4581d);
}

.header__logo {
	display: block;
	flex-shrink: 0;
}

.header__inner {
	display: flex;
	align-items: center;
}

.header__content {
	display: flex;
	align-items: center;
	width: 100%;
	margin: 0 0 0 30px;
}

.header__nav {
	display: flex;
}

@media (min-width: 991px) {
	.header__nav {
		margin: 0;
	}
}
@media (max-width: 991px) {
	.header__nav {
		background-color: rgba(0, 0, 0, 0.8);
		display: none;
		position: absolute;
		left: 0;
		width: 100%;
		max-width: 400px;
		align-items: center;
		top: 53px;
		flex-direction: column;
		padding: 25px 15px;
		z-index: 4;
	}
}

@media (max-width: 576px) {
	.header__nav {
		max-width: unset;
	}
}

@media (max-width: 991px) {
	.header__nav li {
		text-align: center;
	}
}

.header__nav li.--mob {
	display: none;
	margin: 30px 0 0 0;
}

@media (max-width: 768px) {
	.header__nav li.--mob {
		display: block;
	}
}

.header__navlink {
	font-size: 16px;
	line-height: 14px;
	color: #fff;
}

.header__navlink:hover {
	color: #bfbfbf;
}

.header__nav li + li {
	margin: 0 0 0 20px;
}

@media (max-width: 991px) {
	.header__nav li + li {
		margin: 10px 0 0 0;
	}
}

.header__right {
	margin: 0 0 0 auto;
	display: flex;
	align-items: center;
}

@media (max-width: 576px) {
	.header__right {
		margin: 0 0 0 auto;
		display: flex;
		position: absolute;
		top: 69px;
		width: 100%;
		justify-content: flex-end;
		left: 0;
		padding: 10px 25px;
		background: #000;
	}
}

.header__registration-btn {
	font-weight: bold;
	font-size: 14px;
	line-height: 14px;

	text-decoration: underline;
	color: #99ffff;
	margin: 0 20px 0 0;
}

.header__registration-btn:hover {
	color: #33ffff;
	text-decoration: none;
}

.header__login-btn {
	display: inline-block;
	padding: 6px 18px;
	background-color: #b35fd9;

	font-size: 14px;
	line-height: 14px;
	color: #fff;
}

.header__login-btn:hover {
	background-color: #912dbe;
}

.header__user-action {
	display: flex;
	align-items: center;
}

.header__user-action--login {
	display: flex;
	align-items: center;
}

.header__user-action--login span {
	font-weight: bold;
	font-size: 14px;
	line-height: 14px;
	color: #99ffff;
}

.header__user {
	display: flex;
	align-items: center;
	margin: 0 15px 0 0;
}

.header__user span {
	display: inline-block;
	margin: 0 10px 0 0;
}

@media (max-width: 768px) {
	.header__right > .lang {
		display: none;
	}
}

.burger-btn {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 35px;
	height: 25px;
	cursor: pointer;
}

.burger-btn span {
	display: block;
	width: 100%;
	height: 3px;
	background-color: #fff;
}

@media (max-width: 991px) {
	.burger-btn {
		display: flex;
	}
}

@media (max-width: 576px) {
	.burger-btn {
		margin: 0 0 0 auto;
	}
}

.header--login .header__user-action {
	display: flex;
}

.header--login .header__user-action--login {
	display: flex;
}

.lang {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
	margin: 0 0 0 20px;
}

@media (max-width: 768px) {
	.lang {
		width: 60px;
		margin: 0 auto;
		transform: translate(10px, 0);
	}
}

.lang__ico {
	width: 40px;
	height: 26px;
}

.lang__ico img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	height: 100%;
}

.lang svg {
	width: 8px;
	height: 8px;
	fill: #fff;
	margin-left: 7px;
}

.lang__dropdown {
	position: absolute;
	display: none;
	max-width: 51px;
	width: 100%;
	margin: 0;
	top: 40px;
	left: 0;
	background-color: rgba(0, 0, 0, 0.9);
	z-index: 5;
}

.lang__dropdown img {
	width: 40px;
	height: 26px;
}

.lang__dropdown li {
	padding: 5px;
	cursor: pointer;
}

.lang__dropdown li a {
	display: block;
}

.lang__dropdown li:hover {
	background-color: #404040;
}

.lang__dropdown li + li {
	border-top: 1px solid #fff;
}

.home__news {
	display: flex;
	justify-content: space-between;
	margin: 0 0 20px 0;
}

@media (max-width: 991px) {
	.home__news {
		flex-direction: column;
	}
}

.home__container {
	background-color: #29013f;
	padding: 20px 25px;
}

@media (max-width: 576px) {
	.home__container {
		padding: 20px 15px;
	}
}

.home__hero-block {
	position: relative;
	flex-shrink: 0;
}

.home__hero-item {
	position: relative;
	max-width: 500px;
	height: 100%;
}

@media (max-width: 991px) {
	.home__hero-item {
		margin: 0 auto 25px;
		max-width: 100%;
	}
}

.home__hero-item img {
	max-width: 100%;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.home__hero-caption {
	position: absolute;
	bottom: 0;
	left: 0;
	color: #fff;
	text-transform: uppercase;
	padding: 8px 25px;
	font-size: 12px;
	font-weight: 700;
	line-height: 14px;
	background-color: #940807;
}

.home__hero-caption:hover {
	background-color: #dd0c0a;
}

.home__news-block {
	display: flex;
	flex-direction: column;
	margin: 0 0 0 6%;
	width: 100%;
}

@media (max-width: 1100px) {
	.home__news-block {
		margin: 0 0 0 15px;
	}
}

@media (max-width: 991px) {
	.home__news-block {
		margin: 0;
	}
}

.home__news-head {
	display: flex;
	justify-content: space-between;
	margin: 0 0 10px 0;
}

.home__news-title {
	font-size: 18px;
	line-height: 21px;
	text-transform: uppercase;
	color: #fff;
}

.home__news-all {
	color: #fff;
	font-size: 18px;
	line-height: 21px;
}

.home__news-all svg {
	width: 25px;
	height: 12px;
	fill: #fff;
	transition: all 0.3s ease-in;
}

.home__news-all:hover {
	color: #cccccc;
}

.home__news-all:hover svg {
	fill: #cccccc;
}

.home__games {
	margin: 20px 0 0 0;
}

.hnews-item {
	display: flex;
}

@media (max-width: 470px) {
	.hnews-item {
		flex-direction: column;
	}
}

.hnews-item:hover h4 {
	text-decoration: underline;
}

.hnews-item + .hnews-item {
	margin: 10px 0 0 0;
}

@media (max-width: 470px) {
	.hnews-item + .hnews-item {
		margin: 30px 0 0 0;
	}
}

.hnews-item__img {
	margin: 0 25px 0 0;
	flex-shrink: 0;
}

@media (max-width: 470px) {
	.hnews-item__img {
		margin: 0 0 15px 0;
	}
}

.hnews-item__img img {
	width: 100%;
}

.hnews-item__content {
	max-width: 300px;
}

@media (max-width: 991px) {
	.hnews-item__content {
		max-width: 100%;
	}
}

.hnews-item__content h4 {
	font-weight: 700;
	color: #b35fd9;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 16px;
	margin: 0 0 5px 0;
}

.hnews-item__content p {
	color: #fff;
	font-size: 14px;
	line-height: 16px;
	margin: 0 0 5px 0;
}

.hnews-item__content span {
	color: #99ffff;
}

.hnews-item__stats {
	display: flex;
	align-items: center;
}

.hnews-item__stats svg {
	fill: #b35fd9;
	margin: 0 5px 0 0;
}

.hnews-item .views {
	margin: 0 0 0 20px;
}

.hnews-item .views svg {
	width: 26px;
	height: 16px;
	transform: translate(0, -2px);
}

.hnews-item .comments {
	margin: 0 0 0 20px;
}

.hnews-item .comments svg {
	width: 23px;
	height: 19px;
}

.hgames-slider .owl-nav {
	margin: 25px 0 0 0;
	display: flex;
	justify-content: center;
}

.hgames-slider .owl-nav button {
	width: 30px;
	height: 20px;
	background: url(../images/common/arrow-long.svg) no-repeat center !important;
	cursor: pointer;
}

.hgames-slider .owl-nav .owl-prev {
	transform: rotate(180deg);
	margin: 0 30px 0 0;
}

.hgames-item__img {
	width: 100%;
}

.hgames-item__img img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
}

.hgames-item__title {
	text-transform: uppercase;
	color: #99ffff;
	font-size: 16px;
	line-height: 19px;
	font-weight: 400;
	margin: 20px 0 8px 0;
}

.hgames-item__description {
	font-size: 16px;
	line-height: 19px;
	color: #fff;
	margin: 0 0 20px 0;
}

.hgames-item__btn {
	display: inline-block;
	color: #fff;
	font-weight: bold;
	font-size: 12px;
	line-height: 14px;
	text-transform: uppercase;
	background-color: rgba(179, 95, 217, 0.5);
	padding: 6px 20px;
}

.home-forum__head-container {
	background: linear-gradient(
		90deg,
		#99ffff -47.65%,
		#99ffff 21.52%,
		#b35fd9 50%
	);
}

.home-forum__head {
	padding: 22px 7px;
	display: flex;
	justify-content: space-between;
}

.home-forum__title {
	color: #6e308c;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 18px;
	line-height: 21px;
}

.home-forum__tab {
	font-size: 18px;
	line-height: 21px;
	color: #fff;
	text-transform: uppercase;
}

.home-forum__tab:hover {
	text-decoration: underline;
}

.home-forum__tab:first-child {
	margin: 0 25px 0 0;
}

.home-forum__tab.active {
	color: #99ffff;
}

.home-forum__inner {
	background-color: #eeeeee;
	max-width: 1100px;
	margin: 0 auto;
	padding: 25px 0 1px 0;
}

.hforum-item {
	width: 100%;
	background-color: #fff;
	margin: 0 0 15px 0;
}

.hforum-item__container {
	display: flex;
	align-items: center;
	padding: 10px 25px;
}

@media (max-width: 991px) {
	.hforum-item__container {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 576px) {
	.hforum-item__container {
		padding: 10px 15px;
	}
}

.hforum-item__main {
	display: flex;
	align-items: center;
}

@media (max-width: 576px) {
	.hforum-item__main {
		display: flex;
		align-items: flex-start;
		flex-direction: column;
	}
}

.hforum-item__ico {
	flex-shrink: 0;
}

@media (max-width: 576px) {
	.hforum-item__ico {
		margin: 0 0 15px 0;
	}
}

.hforum-item__content {
	max-width: 580px;
	margin: 0 0 0 10px;
}

@media (max-width: 991px) {
	.hforum-item__content {
		max-width: 100%;
	}
}

@media (max-width: 576px) {
	.hforum-item__content {
		margin: 0;
	}
}

.hforum-item__content-top {
	display: flex;
	margin: 0 0 5px 0;
}

@media (max-width: 768px) {
	.hforum-item__content-top {
		flex-direction: column;
	}
}

.hforum-item__content-top h5 {
	font-weight: bold;
	font-size: 18px;
	line-height: 21px;
	text-transform: uppercase;
	color: #b35fd9;
	margin: 0 7px 0 0;
}

.hforum-item__content-top a {
	color: #2534a4;
	font-weight: bold;
	font-size: 18px;
	line-height: 21px;
}

.hforum-item__content-top a:hover {
	color: #00cccc;
}

.hforum-item__content-bottom p {
	color: #29013f;
	font-weight: normal;
	font-size: 12px;
	line-height: 14px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

@media (max-width: 991px) {
	.hforum-item__content-bottom p {
		display: -webkit-box;
		-webkit-line-clamp: 3;
		-webkit-box-orient: vertical;
		white-space: unset;
	}
}

.hforum-item__stats {
	display: flex;
	align-items: center;
	margin: 0 0 0 auto;
}

@media (max-width: 991px) {
	.hforum-item__stats {
		margin: 10px 0 0 0;
	}
}

.hforum-item__stats span {
	font-size: 14px;
	line-height: 16px;
}

.hforum-item__stats svg {
	fill: #b35fd9;
	margin: 0 5px 0 0;
}

.hforum-item__stats .datetime span:first-child {
	margin: 0 5px 0 0;
}

.hforum-item__stats .datetime span:last-child {
	color: #2534a4;
}

.hforum-item__stats .views {
	margin: 0 0 0 20px;
}

.hforum-item__stats .views svg {
	width: 26px;
	height: 16px;
	transform: translate(0, -2px);
}

.hforum-item__stats .views span {
	color: #2534a4;
}

.hforum-item__stats .comments {
	margin: 0 0 0 20px;
}

.hforum-item__stats .comments svg {
	width: 23px;
	height: 19px;
}

.hforum-item__stats .comments span {
	color: #2534a4;
}

.auth {
	max-width: 1100px;
	margin: 0 auto;
	background-color: #eeeeee;
	padding: 35px 0;
}

@media (max-width: 2150px) {
	.auth {
		min-height: 70vh;
	}
}

.auth-head {
	border-bottom: 1px solid #b35fd9;
	padding: 0 0 5px 0;
}

@media (max-width: 576px) {
	.auth-head {
		padding: 0 0 8px 0;
		display: flex;
		justify-content: space-between;
	}
}

@media (max-width: 470px) {
	.auth-head {
		flex-direction: column;
	}
}

.auth-head__link {
	font-size: 16px;
	font-weight: bold;
	line-height: 19px;
	color: #000;
	text-transform: uppercase;
	display: inline-block;
	position: relative;
}

.auth-head__link:hover {
	color: #b35fd9;
}

.auth-head__link + .auth-head__link {
	margin: 0 0 0 30px;
}

@media (max-width: 576px) {
	.auth-head__link + .auth-head__link {
		margin: 0;
	}
}

@media (max-width: 470px) {
	.auth-head__link + .auth-head__link {
		margin: 25px 0 0 0;
	}
}

.auth-head__link.active {
	color: darkred;
}

.auth-head__link.active::after {
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 2px;
	background-color: #b35fd9;
	left: 0;
	bottom: -8px;
}

@media (max-width: 470px) {
	.auth-head__link.active::after {
		display: none;
	}
}

.auth-form {
	max-width: 415px;
}

@media (max-width: 768px) {
	.auth-form {
		max-width: 100%;
	}
}

.auth-inner {
	margin: 25px 0 0 0;
	display: flex;
}

@media (max-width: 768px) {
	.auth-inner {
		flex-direction: column;
	}
}

.auth-input {
	margin: 0 0 20px 0;
}

.auth-input__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 7px 0;
}

@media (max-width: 470px) {
	.auth-input__head {
		flex-direction: column;
		align-items: flex-start;
	}
}

.auth-input input {
	width: 100%;
	padding: 15px 25px;
	border: 1px solid #b35fd9;
	font-weight: normal;
	font-size: 16px;
	line-height: 19px;
	color: #000;
}

.auth-input input + input {
	margin: 15px 0 0 0;
}

.auth-input label {
	white-space: nowrap;
	font-size: 16px;
	line-height: 19px;
	font-weight: 500;
}

.auth-input .error {
	display: inline-block;
	margin: 0 0 0 15px;
	color: #bc0030;
	font-weight: normal;
	font-size: 16px;
	line-height: 19px;
}

@media (max-width: 470px) {
	.auth-input .error {
		margin: 8px 0 0 0;
	}
}

.auth-input input::-moz-placeholder {
	font-size: 16px;
	line-height: 19px;
	color: rgba(0, 0, 0, 0.5);
}

.auth-input input:-ms-input-placeholder {
	font-size: 16px;
	line-height: 19px;
	color: rgba(0, 0, 0, 0.5);
}

.auth-input input::placeholder {
	font-size: 16px;
	line-height: 19px;
	color: rgba(0, 0, 0, 0.5);
}

.auth-checkbox {
	display: flex;
	align-items: flex-start;
	margin: 0 0 18px 0;
}

.auth-checkbox input {
	top: 5px;
	width: 25px;
	height: 25px;
	margin: 0 13px 0 0;
	position: relative;
	cursor: pointer;
}

.auth-checkbox input::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: linear-gradient(0deg, #c4c4c4, #c4c4c4),
		linear-gradient(0deg, #c4c4c4, #c4c4c4), #c4c4c4;
	opacity: 0.8;
}

.auth-checkbox input:checked::after {
	display: none;
}

.auth-checkbox span {
	max-width: 240px;
	font-weight: 500;
}

.auth-submit {
	margin: 40px 0 0 0;
}

.auth-submit button {
	display: block;
	border: none;
	cursor: pointer;
	background-color: #bc0030;
	width: 100%;
	padding: 20px;
	text-transform: uppercase;
	color: #fff;
}

.auth-submit button:hover {
	background-color: #ef003d;
}

.auth-social {
	margin: 0 0 0 6vw;
}

@media (max-width: 768px) {
	.auth-social {
		margin: 45px 0 0 0;
	}
}

.auth-social p {
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
}

.auth-social .widget {
	margin: 25px 0 0 0;
}

.lk {
	background-color: #eeeeee;
	padding: 25px 0 40px;
}

.lk-avatar {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	width: 150px;
	height: 150px;
	max-width: 150px;
	max-height: 150px;
	margin: 0 15px 0 0;
}

@media (max-width: 991px) {
	.lk-avatar {
		margin: 0 0px 70px 0;
	}
}

.lk-avatar img {
	-o-object-fit: cover;
	object-fit: cover;
}

.lk-avatar__upload {
	margin: 25px 0 0 0;
}

.lk-avatar__upload input {
	display: none;
}

.lk-avatar__upload label {
	font-size: 18px;
	line-height: 21px;
	color: #fff;
	text-transform: uppercase;
	background-color: #b35fd9;
	padding: 5px 25px;
	cursor: pointer;
}

.lk-avatar__upload label:hover {
	background-color: #c788e3;
}

.lk-main-content {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 850px;
}

@media (max-width: 768px) {
	.lk-main-content {
		flex-direction: column;
	}
}

.lk-main-content-passw {
	display: block;
	justify-content: space-between;
	width: 100%;
	max-width: 950px;
}

@media (max-width: 768px) {
	.lk-main-content-passw {
		flex-direction: column;
	}
}

.lk-auth {
	max-width: 410px;
	width: 100%;
	margin: 0 15px 0 0;
}

.lk-auth__input {
	display: flex;
	flex-direction: column;
}

.lk-auth__input input {
	width: 100%;
	padding: 15px 25px;
	border: 1px solid rgba(179, 95, 217, 0.5);
	font-weight: normal;
	font-size: 16px;
	line-height: 19px;
	color: #000;
}

.lk-auth__input label {
	white-space: nowrap;
	font-size: 16px;
	line-height: 19px;
	font-weight: 500;
	margin: 0 0 6px 0;
}

.lk-auth__input + .lk-auth__input {
	margin: 25px 0 0 0;
}

.lk-auth label {
	white-space: nowrap;
	font-size: 16px;
	line-height: 19px;
	font-weight: 500;
	margin: 0 0 6px 0;
}

.lk-auth input {
	width: 100%;
	padding: 15px 25px;
	border: 1px solid rgba(179, 95, 217, 0.5);
	font-weight: normal;
	font-size: 16px;
	line-height: 19px;
	color: #000;
}

.lk-auth input::-moz-placeholder {
	font-size: 16px;
	line-height: 19px;
	color: rgba(0, 0, 0, 0.5);
}

.lk-auth input:-ms-input-placeholder {
	font-size: 16px;
	line-height: 19px;
	color: rgba(0, 0, 0, 0.5);
}

.lk-auth input::placeholder {
	font-size: 16px;
	line-height: 19px;
	color: rgba(0, 0, 0, 0.5);
}

.lk-submit {
	max-width: 400px;
	width: 100%;
	align-self: flex-end;
}

@media (max-width: 768px) {
	.lk-submit {
		align-self: flex-start;
		margin: 25px 0 0 0;
		max-width: 410px;
	}
}

.lk-submit button {
	display: block;
	width: 100%;
	padding: 15px 15px;
	background-color: #bebebe;
	border: none;
	text-transform: uppercase;
	font-size: 18px;
	line-height: 21px;
	color: #fff;
	cursor: pointer;
}

.lk-submit button:hover {
	background-color: #989898;
}

.lk-title {
	color: #b35fd9;
	margin: 0 15px 0 0;
	flex-shrink: 0;
	white-space: nowrap;
}

@media (max-width: 991px) {
	.lk-title {
		margin: 0 0px 20px 0;
	}
}

.lk-gender {
	display: flex;
	flex-direction: column;
	max-width: 125px;
	width: 100%;
}

.lk-gender > div {
	display: flex;
	justify-content: space-between;
}

.lk-gender input {
	display: none;
}

.lk-gender label {
	border: 1px solid rgba(179, 95, 217, 0.5);
	cursor: pointer;
	padding: 15px 18px;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 19px;
	color: rgba(0, 0, 0, 0.3);
	display: inline-block;
	margin: 0 10px 0 0;
}

.lk-gender input[value="male"]:checked + label {
	background: blue;
	color: #fff;
}

.lk-gender input[value="female"]:checked + label {
	background: #b35fd9;
	color: #fff;
}

.lk-gender span {
	font-weight: 500;
	margin: 0 0 7px 0;
}

.lk-user__about {
	margin: 20px 0 0 0;
	display: flex;
	justify-content: space-between;
}

@media (max-width: 500px) {
	.lk-user__about {
		flex-direction: column;
	}
}

.lk-country {
	display: flex;
	flex-direction: column;
}

@media (max-width: 500px) {
	.lk-country {
		margin: 25px 0 0 0;
	}
}

.lk-country input {
	padding: 15px 25px;
	border: 1px solid rgba(179, 95, 217, 0.5);
	font-weight: normal;
	font-size: 16px;
	line-height: 19px;
	color: #000;
}

.lk-country label {
	margin: 0 0 7px 0;
}

.lk-userdata {
	max-width: 410px;
	width: 100%;
	margin: 0 15px 0 0;
}

.lk-birthday {
	display: flex;
	flex-direction: column;
	margin: 20px 0 0 0;
}

.lk-birthday label {
	margin: 0 0 7px 0;
}

.lk-birthday input {
	padding: 0px 6px 0px 25px;
	background-image: url(../images/common/date-arrow.png);
	background-repeat: no-repeat;
	background-position-x: 100%;
	border: 1px solid rgba(179, 95, 217, 0.5);
	max-width: 260px;
	height: 52px;
}

.lk-birthday input::-webkit-calendar-picker-indicator {
	color: transparent;
	opacity: 0;
	width: 50px;
	height: 46px;
	background-size: contain;
	transform: translateX(10px);
}

.lk-textarea {
	display: flex;
	flex-direction: column;
	margin: 20px 0 0 0;
}

.lk-textarea label {
	margin: 0 0 7px 0;
}

.lk-textarea textarea {
	min-height: 100px;
	padding: 15px;
	border: 1px solid rgba(179, 95, 217, 0.5);
}

.lk-textarea textarea:focus {
	outline: none;
}

.lk-global {
	border-bottom: 1px solid #bcbcbc;
	padding: 0 0 25px 0;
}

.lk-personal {
	padding: 25px 0 0 0;
}

.lk-personal label {
	font-weight: 500;
}

.lk-form {
	display: flex;
	justify-content: space-between;
}

@media (max-width: 991px) {
	.lk-form {
		flex-direction: column;
	}
}

.about-games {
	background-color: #29013f;
	display: flex;
	justify-content: space-between;
}

@media (max-width: 768px) {
	.about-games {
		flex-direction: column;
	}
}

.about-games__main {
	background-color: #cecbcb;
	max-width: 800px;
	width: 100%;
	margin: 0 15px 0 0;
	padding: 0 0 35px 0;
}

.about-games__main .custom-container {
	padding: 20px;
}

.about-games__hero {
	display: flex;
	max-width: 760px;
	width: 100%;
}

@media (max-width: 991px) {
	.about-games__hero {
		flex-direction: column;
	}
}

.about-games__hero-big {
	max-width: 75%;
	flex-shrink: 0;
	width: 100%;
	height: 360px;
	margin: 0 12px 0 0;
}

@media (max-width: 991px) {
	.about-games__hero-big {
		max-width: 100%;
	}
}

.about-games__hero-big img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.about-games__hero-aside {
	max-width: 25%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

@media (max-width: 991px) {
	.about-games__hero-aside {
		max-width: 100%;
		flex-direction: row;
		margin: 25px 0 0 0;
	}
}

@media (max-width: 430px) {
	.about-games__hero-aside {
		margin: 15px 0 0 0;
	}
}

.about-games__hero-aside img {
	height: 110px;
	-o-object-fit: cover;
	object-fit: cover;
}

@media (max-width: 991px) {
	.about-games__hero-aside img {
		width: 30%;
		height: auto;
	}
}

.about-games__rules-head {
	background: linear-gradient(
		90deg,
		#99ffff -47.65%,
		#99ffff 21.52%,
		#b35fd9 50%
	);
	padding: 15px 20px;
}

.about-games__rules-head h4 {
	font-weight: bold;
	font-size: 16px;
	line-height: 19px;
	color: #6e308c;
	text-transform: uppercase;
}

.about-games__rules-inner {
	padding: 15px 20px;
	background-color: #fff;
	min-height: 690px;
}

.about-games__rules-inner p {
	font-weight: normal;
	font-size: 16px;
	line-height: 19px;
}

.about-games__aside {
	max-width: 265px;
	margin: 15px 25px 0 0;
	padding: 0 0 35px 0;
}

@media (max-width: 768px) {
	.about-games__aside {
		display: none;
	}
}

.about-games__aside-link {
	display: flex;
	justify-content: flex-end;
	margin: 0 0 15px 0;
}

.about-games__aside-link:hover a {
	color: #cccccc;
}

.about-games__aside-link:hover svg {
	fill: #cccccc;
}

.about-games__aside-link a {
	color: #fff;
	font-size: 18px;
	line-height: 21px;
}

.about-games__aside-link svg {
	width: 25px;
	height: 10px;
	fill: #fff;
	transition: all 0.3s ease-in;
}

.about-games__aside-item + .about-games__aside-item {
	margin: 40px 0 0 0;
}

.about-games__aside-item img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	display: block;
	margin: 0 0 20px 0;
}

.about-games__aside-item h4 {
	text-transform: uppercase;
	font-weight: normal;
	font-size: 16px;
	line-height: 19px;
	color: #99ffff;
	margin: 0 0 5px 0;
}

.about-games__aside-item p {
	font-weight: normal;
	font-size: 16px;
	line-height: 19px;
	color: #ffffff;
	margin: 0 0 12px 0;
}

.about-games__aside-item a {
	display: inline-block;
	text-transform: uppercase;
	color: #fff;
	background-color: #6e308c;
	padding: 3px 12px;
}

.about-games__aside-item a:hover {
	background-color: #8c3db2;
}

.news {
	background-color: #29013f;
	display: flex;
	justify-content: space-between;
}

.news-main {
	max-width: 800px;
	width: 100%;
}

.news-main__title {
	background: linear-gradient(90deg, #a4581d, #fbe702 51.56%, #a4581d);
	padding: 18px 25px 13px;
}

.news-main__title h3 {
	font-weight: bold;
	font-size: 16px;
	line-height: 19px;
	color: #fff;
	text-transform: uppercase;
}

.news-main__inner {
	background-color: #cecbcb;
	padding: 30px 0;
	height: 100%;
}

.text-main__inner {
	background-color: #cecbcb;
	padding: 30px 20px;
	height: 100%;
}

.news-item {
	display: flex;
	align-items: center;
	padding: 20px 25px;
	background-color: #fff;
	position: relative;
}

@media (max-width: 576px) {
	.news-item {
		padding: 15px;
		align-items: flex-start;
	}
}

@media (max-width: 475px) {
	.news-item {
		flex-direction: column;
	}
}

.news-item:hover .news-item__title {
	text-decoration: underline;
}

.news-item + .news-item {
	margin: 27px 0 0 0;
}

.news-item__img {
	margin: 0 22px 0 0;
	width: 100%;
	max-width: 195px;
}

@media (max-width: 576px) {
	.news-item__img {
		max-width: 110px;
		margin: 0 15px 0 0;
	}
}

@media (max-width: 475px) {
	.news-item__img {
		max-width: 100%;
		margin: 0 0 20px 0;
	}

	.news-item__img img {
		width: 100%;
		height: auto;
	}
}

.news-item__title {
	font-weight: bold;
	font-size: 16px;
	line-height: 22px;
	text-transform: uppercase;
	color: #2534a4;
}

@media (max-width: 576px) {
	.news-item__title {
		font-size: 14px;
		line-height: 18px;
	}
}

.news-item__stats {
	display: flex;
	max-width: 260px;
	justify-content: space-between;
	margin: 10px 0 0 0;
}

.news-item__stats span {
	font-size: 16px;
	line-height: 19px;
	color: #29013f;
	margin: 0 0 0 6px;
}

.news-item__stats .date span {
	margin: 0;
}

.news-item__stats .views svg {
	stroke: #b35fd9;
	transform: translate(0, -2px);
}

.news-item__stats svg {
	width: 30px;
	height: 16px;
	fill: #b35fd9;
}

.news-item__stats .comments svg {
	width: 25px;
	height: 23px;
	stroke: #b35fd9;
	fill: transparent;
	stroke-width: 3px;
}

.news-item__stats .comments:hover span {
	text-decoration: underline;
	color: #2534a4;
}

.n-article {
	display: flex;
}

.n-article-main {
	background-color: #cecbcb;
	max-width: 800px;
	width: 100%;
	padding: 0 0 30px 0;
}

@media (max-width: 860px) {
	.n-article-main {
		max-width: 100%;
	}
}

.n-article-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: linear-gradient(
		90deg,
		#99ffff -47.65%,
		#99ffff 21.52%,
		#b35fd9 50%
	);
	padding: 15px 25px;
	margin: 0 0 30px 0;
}

@media (max-width: 991px) {
	.n-article-head {
		flex-direction: column;
		align-items: flex-start;
	}
}

.n-article-stats {
	display: flex;
	max-width: 275px;
	width: 100%;
	justify-content: space-between;
}

@media (max-width: 991px) {
	.n-article-stats {
		margin: 15px 0 0 0;
	}
}

.n-article-stats span {
	font-size: 16px;
	line-height: 19px;
	color: #99ffff;
	margin: 0 0 0 6px;
}

@media (max-width: 991px) {
	.n-article-stats span {
		color: #2534a4;
	}
}

.n-article-stats .date span {
	margin: 0;
}

.n-article-stats .date span:first-child {
	margin: 0 5px 0 0;
}

.n-article-stats .views svg {
	stroke: #fff;
	transform: translate(0, -2px);
}

.n-article-stats svg {
	width: 30px;
	height: 16px;
	fill: #fff;
}

.n-article-stats .comments svg {
	width: 25px;
	height: 23px;
	stroke: #fff;
	fill: transparent;
	stroke-width: 3px;
}

.n-article-stats .comments:hover span {
	text-decoration: underline;
	color: #2534a4;
}

.n-article-text {
	padding: 25px;
	background-color: #fff;
	min-height: 700px;
}

@media (max-width: 2150px) {
	.n-article-text {
		min-height: 60vh;
	}
}

.n-article-text p {
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
}

.forum {
	display: flex;
}

@media (max-width: 991px) {
	.forum {
		flex-direction: column;
	}
}

.forum-main {
	max-width: 800px;
	width: 100%;
}

@media (max-width: 991px) {
	.forum-main {
		order: 1;
		max-width: 100%;
	}
}

.forum-head {
	padding: 15px 25px;
	background: linear-gradient(
		90deg,
		#99ffff -47.65%,
		#99ffff 21.52%,
		#b35fd9 50%
	);
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (max-width: 576px) {
	.forum-head {
		flex-direction: column;
		align-items: flex-start;
	}
}

.forum-head__title {
	color: #6e308c;
	font-weight: bold;
	font-size: 16px;
	line-height: 19px;
	text-transform: uppercase;
}

@media (max-width: 576px) {
	.forum-head__title {
		margin: 0 0 25px 0;
	}
}

@media (max-width: 576px) {
	.forum-head__btns {
		display: flex;
		flex-direction: column;
	}
}

.forum-head__my-topics {
	display: inline-block;
	text-transform: uppercase;
	color: #99ffff;
	text-decoration: underline;
	font-weight: bold;
	font-size: 16px;
	line-height: 19px;
	margin: 0 20px 0 0;
}

@media (max-width: 576px) {
	.forum-head__my-topics {
		color: #6e308c;
		margin: 0 0 10px 0;
	}
}

.forum-head__add-topic {
	display: inline-block;
	text-transform: uppercase;
	background-color: #6e308c;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	line-height: 19px;
	padding: 5px 30px;
}

.forum-head__add-topic:hover {
	background-color: #411c53;
}

.forum-inner {
	background-color: #cecbcb;
	padding: 30px 0;
}

.forum-item {
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	padding: 15px 25px;
}

@media (max-width: 768px) {
	.forum-item {
		flex-direction: column;
	}
}

.forum-item + .forum-item {
	margin: 20px 0 0 0;
}

.forum-item__main {
	max-width: 75%;
	width: 100%;
	display: flex;
	align-items: center;
}

@media (max-width: 991px) {
	.forum-item__main {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 768px) {
	.forum-item__main {
		max-width: 100%;
	}
}

.forum-item__ico {
	flex-shrink: 0;
	width: 36px;
	height: 31px;
	margin: 0 15px 0 0;
}

.forum-item__ico img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.forum-item__head {
	display: flex;
	align-items: center;
	margin: 0 0 5px 0;
}

@media (max-width: 450px) {
	.forum-item__head {
		align-items: flex-start;
		flex-direction: column;
		margin: 7px 0 7px 0;
	}
}

.forum-item__gamename {
	margin: 0 15px 0 0;
	font-weight: bold;
	font-size: 16px;
	line-height: 19px;
	color: #b35fd9;
	text-transform: uppercase;
}

@media (max-width: 450px) {
	.forum-item__gamename {
		margin: 0 0 10px 0;
	}
}

.forum-item__user {
	display: flex;
	align-items: center;
}

.forum-item__user img {
	display: block;
	width: 30px;
	height: 30px;
	-o-object-fit: cover;
	object-fit: cover;
	margin: 0 10px 0 0;
}

.forum-item__username {
	color: #2534a4;
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
}

.forum-item__title {
	margin: 7px 0 0 0;
	font-weight: bold;
	font-size: 18px;
	line-height: 21px;
	color: #2534a4;
	text-decoration: underline;
}

.forum-item__stats {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

@media (max-width: 768px) {
	.forum-item__stats {
		flex-direction: row;
		align-items: center;
	}
}

@media (max-width: 450px) {
	.forum-item__stats {
		flex-direction: column;
		align-items: flex-start;
	}
}

.forum-item__datetime {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

@media (max-width: 768px) {
	.forum-item__datetime {
		flex-direction: row;
		margin: 10px 0 0 0;
	}
}

.forum-item__datetime span {
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
}

.forum-item__datetime .time span {
	color: #bc0030;
}

.forum-item__datetime .date {
	margin: 15px 0 0 0;
}

@media (max-width: 768px) {
	.forum-item__datetime .date {
		margin: 0 0 0 15px;
	}
}

.forum-item__datetime .date span {
	color: #2534a4;
}

.forum-item__viewscomments {
	display: flex;
}

@media (max-width: 450px) {
	.forum-item__viewscomments {
		margin: 10px 0 0 0;
	}
}

.forum-item__viewscomments span,
.forum-item__viewscomments a {
	font-size: 16px;
	line-height: 19px;
	color: #bc0030;
}

.forum-item__viewscomments svg {
	width: 30px;
	height: 16px;
	fill: #b35fd9;
	margin: 0 7px 0 0;
}

.forum-item__viewscomments .views {
	margin: 0 10px 0 0;
}

.forum-item__viewscomments .comments:hover span {
	text-decoration: underline;
}

.forum-item__viewscomments .comments,
.forum-item__viewscomments .views {
	display: flex;
	align-items: center;
}

.forum-item__viewscomments .comments svg {
	fill: transparent;
	stroke: #b35fd9;
	stroke-width: 2px;
	height: 22px;
}

.forum-item__viewscomments .views svg {
	transform: translateY(-1px);
}

.forum-aside {
	max-width: 300px;
	width: 100%;
	display: flex;
	flex-direction: column;
}

@media (max-width: 991px) {
	.forum-aside {
		order: 0;
		border: 1px solid #ac8fe4;
	}
}

.forum-aside__link {
	display: block;
	border-bottom: 1px solid #ac8fe4;
	padding: 15px 25px;
	text-transform: uppercase;
	color: #99ffff;
}

.forum-aside__link.active {
	background-color: #99ffff;
	color: #29013f;
}

.f-item {
	display: flex;
}

.f-item-text {
	padding: 25px;
	background-color: #fff;
	min-height: 500px;
}

@media (max-width: 2150px) {
	.f-item-text {
		min-height: 60vh;
	}
}

.f-item-text p {
	font-weight: 400;
	font-size: 16px;
	line-height: 19px;
}

.f-item-main {
	background-color: #cecbcb;
	max-width: 800px;
	width: 100%;
}

.f-item-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: linear-gradient(
		90deg,
		#99ffff -47.65%,
		#99ffff 21.52%,
		#b35fd9 50%
	);
	padding: 15px 25px;
}

@media (max-width: 991px) {
	.f-item-head {
		flex-direction: column;
		align-items: flex-start;
	}
}

.f-item-head__stats {
	display: flex;
}

@media (max-width: 991px) {
	.f-item-head__stats {
		margin: 10px 0 0 0;
	}

	.f-item-head__stats span {
		color: #000;
	}
}

.f-item-head__stats .viewscomments {
	display: flex;
}

.f-item-head__stats .viewscomments span {
	display: inline-block;
	margin: 0 0 0 7px;
	color: #99ffff;
}

@media (max-width: 991px) {
	.f-item-head__stats .viewscomments span {
		color: #fff;
	}
}

.f-item-head__stats span {
	font-weight: bold;
	font-size: 16px;
	line-height: 19px;
}

.f-item-head__stats .datetime {
	display: flex;
	margin: 0 10px 0 0;
}

.f-item-head__stats .datetime .date {
	margin: 0 5px 0 0;
	color: #fff;
}

.f-item-head__stats .datetime .time {
	color: #99ffff;
}

.f-item-head__stats .comments svg {
	width: 25px;
	height: 23px;
	stroke: #fff;
	fill: transparent;
	stroke-width: 3px;
}

.f-item-head__stats .comments span {
	text-decoration: underline;
}

.f-item-head__stats .views {
	margin: 0 10px 0 0;
}

.f-item-head__stats .views svg {
	stroke: #fff;
	fill: #fff;
	stroke: transparent;
	transform: translate(0, -2px);
	width: 30px;
	height: 16px;
}

.f-item-topicinfo {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 25px;
}

.f-item-topicinfo .user {
	display: flex;
	align-items: center;
}

.f-item-topicinfo .user img {
	display: block;
	width: 30px;
	height: 30px;
	margin: 0 10px 0 0;
}

.f-item-topicinfo .user span {
	color: #2534a4;
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
}

.f-item-topicstats {
	display: flex;
}

.f-item-topicstats svg {
	fill: #babbbc;
	width: 20px;
	height: 21px;
}

.f-item-topicstats span:hover svg {
	fill: #939596;
}

.f-item-topicstats__like,
.f-item-topicstats__dislike {
	display: flex;
}

.f-item-topicstats__like span,
.f-item-topicstats__dislike span {
	margin: 0 8px 0 0;
	cursor: pointer;
}

.f-item-topicstats__like span.active svg,
.f-item-topicstats__dislike span.active svg {
	fill: #b35fd9;
}

.f-item-topicstats__like {
	margin: 0 20px 0 0;
}

.f-item-topicstats__like span {
	transform: translateY(-3px);
}

.f-item-topicstats__dislike svg {
	transform: rotate(180deg);
}

.f-item-topicstats p {
	color: #bc0030;
}

.support {
	max-width: 1100px;
	margin: 0 auto;
	padding: 35px 0;
	background-color: #eeeeee;
	min-height: 700px;
}

@media (max-width: 2150px) {
	.support {
		min-height: 70vh;
	}
}

.support-head {
	padding: 0 0 5px 0;
	border-bottom: 1px solid #c4c4c4;
}

.support-head h4 {
	color: #bc0030;
	text-transform: uppercase;
	font-size: 16px;
	line-height: 19px;
	font-weight: 500;
}

.support-inner {
	margin: 20px 0 0 0;
}

.games {
	background-color: #29013f;
	padding: 25px 0;
}

@media (max-width: 2150px) {
	.games {
		min-height: 55vh;
	}
}

.discuss {
	max-width: 300px;
	width: 100%;
	padding: 15px 15px 35px 15px;
}

@media (max-width: 860px) {
	.discuss {
		display: none;
	}
}

.discuss h3 {
	font-weight: bold;
	font-size: 16px;
	line-height: 19px;
	color: #fff;
	text-transform: uppercase;
	margin: 0 0 15px 0;
}

.discuss-item {
	display: block;
}

.discuss-item:hover p {
	text-decoration: underline;
}

.discuss-item + .discuss-item {
	margin: 30px 0 0 0;
}

.discuss-item img {
	max-height: 150px;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
}

.discuss-item__title {
	margin: 7px 0 0 0;
	font-weight: bold;
	font-size: 16px;
	line-height: 19px;
	color: #ffffff;
}

.discuss-item__title:hover {
	text-decoration: underline;
}

.discuss-item__stats {
	display: flex;
	max-width: 290px;
	justify-content: space-between;
	margin: 10px 0 0 0;
}

.discuss-item__stats span {
	font-size: 16px;
	line-height: 19px;
	color: #99ffff;
	margin: 0 0 0 6px;
}

.discuss-item__stats .date span {
	margin: 0;
}

.discuss-item__stats .views svg {
	transform: translate(0, -2px);
}

.discuss-item__stats svg {
	width: 30px;
	height: 16px;
	fill: #fff;
}

.discuss-item__stats .comments:hover span {
	text-decoration: underline;
}

.discuss-item__stats .comments svg {
	width: 25px;
	height: 23px;
	stroke: #fff;
	fill: transparent;
	stroke-width: 2px;
}

.add-topic {
	background-color: #eeeeee;
	padding: 25px;
}

.add-topic__input {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.add-topic__input + .add-topic__input {
	margin: 15px 0 0 0;
}

.add-topic__submit {
	margin: 40px 0 0 0;
}

.add-topic__submit button {
	display: block;
	width: 100%;
	padding: 13px 25px;
	border: none;
	cursor: pointer;
	background-color: #bebebe;
	text-transform: uppercase;
	color: #fff;
	font-size: 18px;
	line-height: 21px;
}

.add-topic__submit button:hover {
	color: #989898;
}

.add-topic input,
.add-topic select,
.add-topic textarea {
	padding: 13px 25px;
	border: 1px solid rgba(179, 95, 217, 0.5);
}

.add-topic select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	height: 52px;
	background-image: url(../images/common/date-arrow.png);
	background-repeat: no-repeat;
	background-position-x: 100%;
}

.add-topic label {
	font-weight: normal;
	font-size: 16px;
	line-height: 19px;
	color: #000000;
	margin: 0 0 10px 0;
	font-weight: 500;
}

.add-topic textarea {
	min-height: 150px;
}

.add-topic textarea:focus {
	outline: none;
}

.add-topic-form {
	max-width: 415px;
	width: 100%;
	margin: 0 auto;
}

.alert {
	padding: 0.5rem 1rem;
	border-radius: 10px;
	text-align: center;
	margin-bottom: 1rem;
	background: rgba(255, 0, 0, 0.3);
	color: red;
}

.alertOK {
	padding: 0.5rem 1rem;
	border-radius: 10px;
	text-align: center;
	margin-bottom: 1rem;
	background: rgba(0, 155, 0, 1);
	color: white;
}

.text-large {
	font-size: 1.25rem;
}

.auth__tab {
	display: none;
}

.auth__tab:nth-child(1) {
	display: block;
}

.authpopup {
	display: none;
	padding: 40px;
	max-width: 500px;
	width: 100%;
}

.authpopup .auth-submit {
	margin: 0;
}

.compensate-for-scrollbar .header {
	right: 15px;
}

@media (max-width: 600px) {
	.authpopup {
		padding: 24px;
	}
}

.text-flag {
	display: flex;
	align-items: center;
	gap: 5px;
}

.body-game iframe {
	display: block;
	max-width: 1070px;
	width: 100%;
	max-height: 690px;
	margin: 0 auto;
}

.body-game .wrapper {
	height: 100%;
}

@media (max-width: 576px) {
	.body-game .footer {
		display: none;
	}

	.body-game .footer {
		display: none;
	}

	.body-game .header {
		display: none;
	}

	.body-game .header .wrapper-mob {
		padding-top: 0;
	}

	.body-game .wrapper {
		padding-top: 0;
	}
}
