html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}

ol, ul {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html, body {
	position: relative;
}

body {
	width: 100%;
	background: url(../img/fon-bg.jpg) center top no-repeat;
	background-color: #0f1213;
	font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
	font-size: 14px;
	color: #728587;
}

a {
	transition: all 0.3s ease;
	color: #d8d0cc;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

p {
	margin-bottom: 20px;
}

h1, h2, h3 {
	color: #ffffff;
	margin-bottom: 20px;
	line-height: 1.2;
	font-weight: normal;
}

h1 {
	font-size: 24px;
}

h2 {
	font-size: 20px;
}

h3 {
	font-size: 16px;
}

table {
	width: 100%;
	margin-bottom: 25px;
}
table td {
	border-collapse: collapse;
	padding: 10px 10px;
	border: 1px solid #34393d;
	color: #fff;
}

table thead tr th {
    padding: 10px 10px;
    color: #fff;
}

table tr:nth-child(even) {
	background: rgba(255, 255, 255, 0.05);
}

img {
	max-width: 100%;
}

caption {
	margin-bottom: 15px;
}

select {
	background: #06080a;
	width: 100%;
	border: 1px solid #34393d;
	color: #fff;
	font-size: 14px;
	padding: 12px 40px 12px 18px;
	position: relative;
	-webkit-appearance: none;
	background-image: url(../img/arrow-v.png);
	background-position: right 10px center;
	background-repeat: no-repeat;
	-moz-appearance: none;
	text-indent: 0.01px;
	text-overflow: '';
	-ms-appearance: none;
	appearance: none !important;
	cursor: pointer;
	transition: 0.3s;
}
select option span {
	color: #728587;
}

input, textarea {
	background: #06080a;
	width: 100%;
	border: 1px solid #34393d;
	color: #fff;
	padding: 12px 18px 12px 18px;
	position: relative;
	font-size: 11px;
	min-width: 220px;
	font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
	transition: 0.3s;
}
input:focus, textarea:focus {
	border: 1px solid #a51e29;
	box-shadow: 0px 5px 14px 0px rgba(165, 30, 41, 0.3);
}

button, .button {
	transition: all 0.3s ease;
	cursor: pointer;
	background: #23282a;
	padding: 14px 22px;
	border: none;
	color: #fff;
	text-transform: uppercase;
	font-size: 10px;
	position: relative;
	z-index: 1;
	text-align: center;
	text-transform: uppercase;
	font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
}
button:hover, .button:hover {
	filter: brightness(110%);
}

.button {
	display: inline-block;
	text-decoration: none;
	padding: 13px 22px;
}

.not-bg-button {
	background: none;
	border: 2px solid #23282a;
	color: #23282a;
	font-weight: bold;
	font-size: 12px;
	padding: 14px 35px;
}
.not-bg-button:hover {
	background: #23282a;
	color: #fff;
}

:focus {
	outline: none;
}

::-webkit-input-placeholder {
	color: #9d7f55;
}

::-moz-placeholder {
	color: #9d7f55;
}

:-moz-placeholder {
	color: #9d7f55;
}

:-ms-input-placeholder {
	color: #9d7f55;
}

.wrapper {
	background-image: url(../img/smoke.png);
	background-position: left top 600px;
	background-repeat: repeat-x;
	animation: smoke 15s linear infinite;
	animation-fill-mode: forwards;
}

@keyframes smoke {
	0% {
		background-position: left -1920px top 600px;
	}
	100% {
		background-position: left 1920px top 600px;
	}
}
.container {
	width: 100%;
	max-width: 1220px;
	margin: 0 auto;
	position: relative;
}

.flex {
	display: flex;
	flex-wrap: wrap;
}

.flex-c {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

.flex-s {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.flex-s-c {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.flex-c-c {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

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

.topPanel {
	background: rgba(20, 23, 28, 0.9);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 15;
}
.topPanel a {
	text-decoration: none;
}
.topPanel-wrapper {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
}
.topPanel-wrapper:after {
	content: "";
	position: absolute;
	width: 100%;
	left: 0;
	top: 79px;
	height: 1px;
	background: rgba(255, 255, 255, 0.1);
	opacity: 0;
	transition: 0.3s;
}
.topPanel-wrapper:hover:after {
	opacity: 1;
}

.menu {
	position: relative;
	z-index: 2;
	margin-left: 130px;
}
.menu li {
	height: 100%;
	display: block;
	padding: 0px 20px;
	position: relative;
	transition: 0.3s;
}
.menu li:hover {
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
}
.menu li:hover a {
	color: #ff6e74;
	cursor: pointer;
}
.menu li a {
	color: #fff;
	font-size: 16px;
	display: block;
	position: relative;
	text-decoration: none;
	padding: 0px 20px;
	height: 80px;
	line-height: 80px;
}
.menu li a:hover {
	color: #ff6e74;
}
.menu .dropDown-menu {
	padding: 20px 0px 50px 0px;
	display: none;
	transition: 0.3s;
}
.menu .dropDown-menu li {
	height: auto;
	line-height: 1;
	padding: 0px 20px;
}
.menu .dropDown-menu li:hover {
	background: none;
}
.menu .dropDown-menu li a {
	padding: 15px 0px;
	line-height: 1;
	color: #f4f7fa;
	height: auto;
	line-height: 1;
}
.menu .dropDown-menu li a:hover {
	color: #ff6e74;
}

.logo-panel {
	margin-top: 12px;
	margin-right: 40px;
	position: fixed;
}
.logo-panel img {
	height: 58px;
}

.menu:hover .dropDown-menu {
	display: block;
	animation: menudrop 0.5s linear;
}

@keyframes menudrop {
	0% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}
.topPanel-right {
	padding-top: 15px;
}
.topPanel-right a {
	color: #fff;
	font-size: 16px;
}
.topPanel-right span {
	color: #728587;
	margin: 0px 12px;
}
.topPanel-right .signIn {
	text-transform: uppercase;
	padding: 16px 40px;
}

.topPanel-right .signIn:hover {
	filter: brightness(150%);
}

a.signUp:hover {
    color: #a9f5ee;
}

header {
	height: 770px;
	position: relative;
}

.sparks {
	position: absolute;
	width: 1200px;
	left: 50%;
	margin-left: -600px;
	bottom: 0;
}
.sparks > div {
	position: absolute;
}
.sparks .spark_1 {
	background: url(../img/spark_1.png) no-repeat;
	width: 764px;
	height: 313px;
	right: 0;
	bottom: -320px;
	transform: scale(0.6);
	animation: spark-1 4s linear infinite;
	animation-delay: 1s;
}
@keyframes spark-1 {
	0% {
		bottom: -320px;
		transform: scale(0.6);
		opacity: 1;
	}
	25% {
		bottom: -240px;
		transform: scale(0.7);
		opacity: 1;
	}
	50% {
		bottom: -160px;
		transform: scale(0.8);
		opacity: 1;
	}
	75% {
		bottom: -80px;
		transform: scale(0.9);
		opacity: 0.5;
	}
	100% {
		bottom: 0px;
		transform: scale(1);
		opacity: 0;
	}
}
.sparks .spark_2 {
	background: url(../img/spark_2.png) no-repeat;
	width: 179px;
	height: 335px;
	right: 230px;
	bottom: -320px;
	transform: scale(0.6);
	animation: spark-1 4s linear infinite;
	animation-delay: 2s;
}
.sparks .spark_3 {
	background: url(../img/spark_3.png) no-repeat;
	width: 128px;
	height: 165px;
	right: 280px;
	bottom: -140px;
	transform: scale(0.6);
	animation: spark-3 4s linear infinite;
	animation-delay: 2s;
}
@keyframes spark-3 {
	0% {
		bottom: -140px;
		transform: scale(0.6);
		opacity: 1;
	}
	25% {
		bottom: -80px;
		transform: scale(0.7);
		opacity: 1;
	}
	50% {
		bottom: -20px;
		transform: scale(0.8);
		opacity: 1;
	}
	75% {
		bottom: 40px;
		transform: scale(0.9);
		opacity: 0.5;
	}
	100% {
		bottom: 100px;
		transform: scale(1);
		opacity: 0;
	}
}
.sparks .spark-big {
	background: url(../img/spark_4.png) no-repeat;
	width: 794px;
	height: 176px;
	right: 0;
	bottom: -180px;
	transform: scale(0.6);
	animation: spark-5 4s linear infinite;
}
.sparks .spark_5 {
	animation-delay: 2s;
	right: 40px;
}
@keyframes spark-5 {
	0% {
		bottom: -180px;
		transform: scale(0.6);
		opacity: 1;
	}
	25% {
		bottom: -120px;
		transform: scale(0.7);
		opacity: 1;
	}
	50% {
		bottom: -60px;
		transform: scale(0.8);
		opacity: 1;
	}
	75% {
		bottom: 0px;
		transform: scale(0.9);
		opacity: 0.5;
	}
	100% {
		bottom: 60px;
		transform: scale(1);
		opacity: 0;
	}
}
.logo {
	position: absolute;
	top: 160px;
	left: 70px;
}

.serverBlock {
	position: absolute;
	top: 415px;
	left: 0;
}
.serverBlock .server {
	text-align: center;
	font-size: 16px;
	margin-right: 60px;
}
.serverBlock .server img {
	display: block;
	margin-bottom: 30px;
}
.serverBlock .server p {
	color: #ffffff;
	margin-bottom: 10px;
}
.serverBlock .server span {
	color: #03fdfd !important;
	text-shadow: 0px 0px 15px rgba(4, 252, 252, 0.7);
}
.serverBlock .server .upcom {
	color: #fff831;
	text-shadow: 0px 0px 15px rgba(255, 140, 56, 0.7);
}
.serverBlock .server:nth-child(1) img {
	filter: drop-shadow(0px 0px 20px #ff283d);
}
.serverBlock .server:nth-child(2) img {
	filter: drop-shadow(0px 0px 20px #289cff);
}
.serverBlock .server:nth-child(3) img {
	filter: drop-shadow(0px 0px 20px #28ffb6);
}

.downloadBlock {
	position: absolute;
	top: 660px;
	left: 0;
}
.downloadBlock a {
	text-decoration: none;
}
.downloadBlock .downloadButton {
	background: url(../img/download-bg.jpg) no-repeat;
	width: 300px;
	height: 80px;
	font-size: 18px;
	text-transform: uppercase;
	box-shadow: 0px 0px 25px 0px rgba(185, 32, 46, 0.4), 0px 20px 20px -10px rgba(0, 0, 0, 0.4);
	color: #fff;
}
.downloadBlock .download-links {
	position: relative;
}
.downloadBlock .download-links a {
	display: block;
	margin-left: 35px;
	color: #868689;
	padding-left: 25px;
}
.downloadBlock .download-links a:hover {
	filter: brightness(170%);
}
.downloadBlock .download-links a.windows {
	background: url(../img/windows-icon.png) left center no-repeat;
	position: relative;
}
.downloadBlock .download-links a.windows:after {
	content: "";
	position: absolute;
	right: -17px;
	top: -4px;
	height: 22px;
	width: 1px;
	background: rgba(255, 255, 255, 0.1);
}
.downloadBlock .download-links a.mac {
	background: url(../img/mac-icon.png) left center no-repeat;
}

.swiper-slider {
	width: 100%;
	height: 100%;
	height: 340px;
}
.swiper-slider .swiper-slide {
	display: flex;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.swiper-slide:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
	height: 50%;
	width: 100%;
}

.swiper-slider-small {
	width: 250px;
	height: 140px;
	position: absolute;
	right: -25px;
	bottom: -25px;
	box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.3);
}
.swiper-slider-small .swiper-slide {
	display: flex;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.sliderBlock {
	width: 50%;
	position: relative;
}

.playBlock {
	position: absolute;
	bottom: 40px;
	left: 40px;
	z-index: 3;
}
.playBlock span {
	color: #fff;
	font-size: 36px;
}

.playButton {
	position: relative;
	padding-left: 6px;
	margin-right: 50px;
}
.playButton img {
	filter: drop-shadow(0px 0px 10px #c63543);
	position: relative;
	z-index: 1;
}
.playButton:after {
	content: "";
	position: absolute;
	background: #0d1014;
	width: 36px;
	height: 36px;
	left: 50%;
	top: 50%;
	margin-left: -18px;
	margin-top: -18px;
	transform: rotate(45deg);
}

.playBlock-small {
	bottom: 20px;
	left: 20px;
}
.playBlock-small span {
	font-size: 18px;
}
.playBlock-small .playButton {
	margin-right: 15px;
}
.playBlock-small .playButton:after {
	display: none;
}

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
	background-image: url(../img/arrow-next.png);
	right: 70px;
}

.swiper-button-prev, .swiper-container-rtl .swiper-button-prev {
	background-image: url(../img/arrow-prev.png);
	right: 102px;
	left: auto;
}

.swiper-button-next, .swiper-button-prev {
	width: 6px;
	height: 9px;
	background-size: 6px 9px;
	margin-top: 5px;
	background-color: #101416;
	width: 30px;
	height: 30px;
}

.newsBlock {
	width: 50%;
	background: url(../img/news-block-bg.png) center bottom no-repeat;
	background-color: rgba(8, 13, 18, 0.9);
	height: 340px;
	padding: 40px 55px;
}

.newsTitle {
	border-bottom: 1px solid #1c1f21;
	align-items: flex-end;
	margin-bottom: 15px;
}
.newsTitle h2 {
	color: #ffffff;
	font-size: 24px;
	margin-bottom: 23px;
}

.newsTabs {
	display: flex;
	position: relative;
}
.newsTabs span {
	cursor: pointer;
	display: block;
	position: relative;
	color: #728587;
	margin-left: 35px;
	transition: 0.3s;
	padding-bottom: 25px;
}
.newsTabs span:first-child {
	margin-left: 0px;
}
.newsTabs span:hover {
	color: #fff;
}
.newsTabs span:after {
	content: "";
	background: #931e2b;
	height: 2px;
	width: 0;
	position: absolute;
	left: 0;
	bottom: 0;
	transition: 0.3s;
}
.newsTabs span.active {
	color: #ffffff;
}
.newsTabs span.active:after {
	width: 100%;
}

.news {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 13px 0px 13px 40px;
	position: relative;
}
.news .news-title {
	max-width: 340px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.news .news-title a {
	margin-bottom: 10px;
	color: #ffffff;
	font-size: 16px;
	text-decoration: none;
	display: block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.news span {
	color: #728587;
	font-size: 12px;
}
.news .button {
	opacity: 0;
}
.news:before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	opacity: 0.2;
	transition: 0.3s;
}
.news:nth-child(1):before {
	background: url(../img/news-icon_1.png) no-repeat;
	width: 25px;
	height: 19px;
	margin-top: -12px;
}
.news:nth-child(2):before {
	background: url(../img/news-icon_2.png) no-repeat;
	width: 20px;
	height: 25px;
	margin-top: -10px;
}
.news:nth-child(3):before {
	background: url(../img/news-icon_3.png) no-repeat;
	width: 21px;
	height: 21px;
	margin-top: -10px;
}
.news:hover .news-title a {
	color: #ba3847;
	text-decoration: underline;
}
.news:hover .button {
	opacity: 1;
}
.news:hover:before {
	opacity: 1;
}

.tab-block {
	display: none;
}
.tab-block.active {
	display: block;
	animation: opas 0.5s linear;
}

@keyframes opas {
	0% {
		display: block;
		opacity: 0;
	}
	100% {
		display: block;
		opacity: 1;
	}
}
.slideNewsBlock {
	border-bottom: 1px solid #444c53;
	padding-bottom: 100px;
	margin-bottom: 50px;
	position: relative;
	z-index: 10;
}

.str-m {
	position: relative;
	margin-bottom: 100px;
}
.str-m:after {
	content: "";
	background: url(../img/hero.png) no-repeat;
	width: 714px;
	height: 919px;
	position: absolute;
	top: -50px;
	left: -34px;
}
.str-m > div {
	width: 50%;
}
.str-m h2 {
	font-size: 42px;
	margin-bottom: 35px;
}

.streamBlock {
	position: relative;
	z-index: 2;
}
.streamBlock a {
	display: flex;
	align-items: center;
	width: 335px;
	height: 125px;
	padding-left: 50px;
	position: relative;
	margin-bottom: 30px;
}
.streamBlock a img {
	filter: drop-shadow(0px 0px 20px rgba(255, 255, 255, 0.5));
}
.streamBlock a:hover {
	transform: scale(1.1);
}
.streamBlock a:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
}
.streamBlock a.twitch {
	background-color: #554073;
}
.streamBlock a.twitch:after {
	background: url(../img/twich-hero.png) no-repeat;
	width: 145px;
	height: 142px;
	right: 3px;
}
.streamBlock a.youtube {
	background-color: #912a34;
}
.streamBlock a.youtube:after {
	background: url(../img/youtube-hero.png) no-repeat;
	width: 147px;
	height: 143px;
}

.mediaBlock h2 {
	text-align: right;
}
.mediaBlock .media {
	margin-bottom: 40px;
}
.mediaBlock .media a {
	display: block;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.mediaBlock .media a:hover {
	transform: scale(1.1);
	z-index: 1;
}
.mediaBlock .media a:after {
	content: "";
	position: absolute;
	background: linear-gradient(to top, #131418, rgba(19, 20, 24, 0));
	width: 100%;
	height: 90px;
	left: 0;
	bottom: 0;
}
.mediaBlock .media a span {
	display: block;
	position: absolute;
	bottom: 30px;
	color: #fff;
	font-size: 24px;
	z-index: 2;
}
.mediaBlock .media a span:after {
	content: ">";
	margin-left: 10px;
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	font-size: 18px;
}
.mediaBlock .cosplay {
	width: 340px;
	height: 208px;
}
.mediaBlock .cosplay span {
	left: 85px;
}
.mediaBlock .video {
	width: 170px;
	height: 182px;
}
.mediaBlock .video span {
	left: 50px;
}
.mediaBlock .screens {
	width: 170px;
	height: 182px;
}
.mediaBlock .screens span {
	left: 40px;
}
.mediaBlock .artwork {
	width: 260px;
	height: 390px;
}
.mediaBlock .artwork span {
	left: 30px;
}

.mediaButton {
	text-align: center;
}

.featuresBlock {
	height: 600px;
	position: relative;
	margin: 0px -15px 20px -15px;
	padding: 0px 15px;
}
.featuresBlock h2 {
	font-size: 42px;
	margin-bottom: 35px;
	padding-left: 15px;
}
.featuresBlock .flex {
	flex-wrap: nowrap;
}

.features {
	position: relative;
	z-index: 2;
	width: 25%;
	margin: 0px 10px;
	background-position: center top;
	background-repeat: no-repeat;
	height: 390px;
	padding: 0px 45px 30px 45px;
	text-align: center;
	transition: 0.3s;
	display: flex;
	align-items: flex-end;
}
.features:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	height: 90%;
	width: 100%;
}
.features:nth-child(1):after {
	background: linear-gradient(to top, #0f0c0e 30%, rgba(15, 12, 14, 0.5) 70%, rgba(15, 12, 14, 0));
}
.features:nth-child(2):after {
	background: linear-gradient(to top, #0b0f14 30%, rgba(11, 15, 20, 0.5) 70%, rgba(11, 15, 20, 0));
}
.features:nth-child(3):after {
	background: linear-gradient(to top, #0f1214 30%, rgba(15, 18, 20, 0.5) 70%, rgba(15, 18, 20, 0));
}
.features:nth-child(4):after {
	background: linear-gradient(to top, #0d110c 30%, rgba(13, 17, 12, 0.5) 70%, rgba(13, 17, 12, 0));
}
.features-icon {
	margin-bottom: 15px;
	position: relative;
	z-index: 1;
}
.features-title {
	color: #fff;
	font-size: 20px;
	position: relative;
	z-index: 1;
	margin-bottom: 30px;
	line-height: 1.3;
}
.features-text {
	height: 100%;
	max-height: 0px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	transition: 0.3s;
	line-height: 1.3;
	margin-bottom: 15px;
}
.features-button {
	position: relative;
	z-index: 1;
}
.features:hover {
	height: 540px;
	margin-top: -75px;
	box-shadow: 0px 30px 30px -15px rgba(0, 0, 0, 0.5);
}
.features:hover .features-text {
	max-height: 245px;
	height: 100%;
}

section {
	background-color: #0f1213;
	padding: 100px 0px 100px 0px;
	position: relative;
	z-index: 9;
}
section a {
	text-decoration: none;
}

.fMenu {
	margin-right: 165px;
}
.fMenu h3 {
	color: #fff;
	font-size: 24px;
	margin-bottom: 30px;
}
.fMenu li {
	background: url(../img/arrow-next.png) left center no-repeat;
	padding: 10px 0px 10px 20px;
}
.fMenu li a {
	color: #728587;
}
.fMenu li a:hover {
	color: #ba3847;
}

.selectlangBlock {
	margin-left: -18px;
	margin-top: -25px;
	background: url(../img/map-icon.png) right center no-repeat;
	padding: 25px 70px 25px 0px;
}
.selectlangBlock select {
	background-color: #0f1213;
	border: none;
}

.socBlock {
	margin-bottom: 40px;
}
.socBlock a {
	display: inline-block;
	width: 20px;
	height: 16px;
	margin-right: 16px;
	opacity: 0.2;
}
.socBlock a:hover {
	opacity: 1;
}
.socBlock a.tw {
	background: url(../img/soc-icons.png) left top no-repeat;
}
.socBlock a.vk {
	background: url(../img/soc-icons.png) left -34px top no-repeat;
}
.socBlock a.fb {
	background: url(../img/soc-icons.png) left -72px top no-repeat;
}
.socBlock a.twh {
	background: url(../img/soc-icons.png) left -108px top no-repeat;
}

.s-text a {
	margin-right: 25px;
}
.s-text a:hover {
	color: #ba3847;
}

footer {
	padding: 70px 0px;
	background-color: #0a0d0f;
	text-align: center;
}

.logos {
	margin-bottom: 30px;
}
.logos a {
	margin: 0px 70px;
}

.site {
	margin-bottom: 10px;
}
.site a {
	text-decoration: none;
	font-size: 16px;
}

.copy {
	line-height: 1.3;
}

.socBlock-fixed {
	background-color: #0d1114;
	position: fixed;
	bottom: 3%;
	padding: 12px 14px;
	left: 100px;
}
.socBlock-fixed a {
	margin-right: 8px;
	margin-left: 8px;
	opacity: 0.5;
}

.toTop {
	background: url(../img/totop.png) center top 18px no-repeat;
	background-color: #0d1114;
	position: fixed;
	bottom: 5%;
	padding: 40px 20px 20px 20px;
	right: 100px;
	text-align: center;
	font-size: 10px;
	font-weight: bold;
	text-transform: uppercase;
	color: #fff;
	cursor: pointer;
}

.modal_div {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0 !important;
	justify-content: center;
	align-items: center;
	z-index: 999;
	display: none;
}
.modal_div h1 {
	font-size: 24px;
	margin-bottom: 30px;
}

.modalBlock {
	width: 100%;
	max-width: 500px;
	position: relative;
	background: #06080a;
	border-top: 2px solid #a51e29;
	padding: 60px 90px;
}
.modalBlock h2 {
	color: #fff;
	font-size: 30px;
	margin-bottom: 30px;
}

.modal_div .modal_close {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	display: block;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: inset 5px 0px 10px 0px rgba(0, 0, 0, 0.1);
}

.closeButton span {
	width: 18px;
	height: 2px;
	background: #38393b;
	display: block;
	position: relative;
}
.closeButton span:nth-child(1) {
	transform: rotate(45deg);
	top: 2px;
}
.closeButton span:nth-child(2) {
	transform: rotate(-45deg);
}

#overlay {
	z-index: 998;
	position: fixed;
	background-color: #0a0d0f;
	opacity: 0.7;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	cursor: pointer;
	display: none;
}

.facebookButton {
	display: block;
	width: 320px;
	height: 42px;
	background: url(../img/facebook.jpg) no-repeat;
	box-shadow: 0px 0px 10px 0px rgba(50, 117, 199, 0.3);
	margin: 0 auto;
}

.or {
	margin: 30px 0px;
	font-size: 12px;
	text-align: center;
	position: relative;
}
.or span {
	display: inline-block;
	background: #06080a;
	padding: 0px 8px;
	z-index: 2;
	position: relative;
}
.or:after {
	content: "";
	height: 1px;
	width: 100%;
	position: absolute;
	background: rgba(255, 255, 255, 0.09);
	top: 50%;
	left: 0;
}

.modalForm .formGroup-name {
	background: #06080a;
}

.errorGroup {
	background: url(../img/wrong-icon.png) left 20px top 17px no-repeat;
	background-color: rgba(16, 16, 16, 0.9);
	padding: 17px 20px 17px 50px;
	border-radius: 10px;
	box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.4);
	line-height: 1.5;
	font-size: 13px;
	position: absolute;
	left: 100%;
	min-width: 330px;
	color: #fff;
	margin-left: 30px;
	top: -20px;
}
.errorGroup:before {
	content: '';
	border: 8px solid transparent;
	border-right-color: rgba(16, 16, 16, 0.9);
	position: absolute;
	right: 100%;
	top: 50%;
	margin-top: -7px;
}

.formGroup-button {
	margin-top: 40px;
}

.lost-pass {
	color: #728587;
	text-decoration: none;
	font-size: 12px;
	padding: 10px 10px 10px 30px;
	background: url(../img/question-icon.png) left no-repeat;
}
.lost-pass:hover {
	color: #ba3847;
	text-decoration: none;
}

.formGroup {
	margin-bottom: 20px;
	position: relative;
	max-width: 450px;
}
.formGroup:hover input {
	border: 1px solid #a51e29;
	box-shadow: 0px 5px 14px 0px rgba(165, 30, 41, 0.3);
}
.formGroup:hover select {
	border: 1px solid #a51e29;
	box-shadow: 0px 5px 14px 0px rgba(165, 30, 41, 0.3);
}
.formGroup:hover .formGroup-name {
	color: #a51e29;
}

.formGroup-name {
	position: absolute;
	left: 10px;
	top: -7px;
	display: block;
	background: #06080a;
	padding: 0px 5px;
	z-index: 1;
}

.button-sign {
	background: url(../img/sign-bg.jpg) no-repeat;
	background-size: cover;
	font-size: 12px;
	width: 150px;
	min-width: 150px;
	height: 50px;
	padding: 0px;
	text-align: center;
	line-height: 50px;
	text-decoration: none;
	cursor: pointer;
	border: none;
}

.content {
	position: relative;
	z-index: 8;
	padding: 30px;
	background-color: #0a0d0f;
	line-height: 1.4;
}
.content h1 {
	color: #fff;
}
.content h2 {
	color: #fff;
}
.content h3 {
	color: #fff;
}
.content form {
	max-width: 450px;
	margin: 0 auto;
	margin-bottom: 20px;
}
.content ul {
	padding-left: 40px;
	margin-bottom: 25px;
}
.content ul li {
	list-style: square;
	padding: 4px 0px;
}

@media (max-width: 1600px) {
	.toTop {
		right: 10px;
		bottom: 10px;
		z-index: 20;
	}

	.socBlock-fixed {
		left: 10px;
		bottom: 10px;
		margin-bottom: 0px;
		z-index: 20;
	}
}
@media (max-width: 1200px) {
	header {
		padding: 0px 15px;
	}

	section {
		padding: 30px 0px 30px 0px;
	}

	.str-m:after, .toTop {
		display: none;
	}

	.str-m {
		margin-bottom: 40px;
	}
	.str-m a:hover {
		transform: scale(1) !important;
	}
	.str-m .streamBlock {
		width: 40%;
	}
	.str-m .mediaBlock {
		width: 60%;
	}
	.str-m .mediaBlock .artwork {
		width: 50%;
	}
	.str-m .mediaBlock .media-l {
		width: 50%;
	}
	.str-m .mediaBlock .cosplay {
		width: 100%;
	}
	.str-m .mediaBlock .cosplay span {
		left: 20px;
	}
	.str-m .mediaBlock .video {
		width: 50%;
	}
	.str-m .mediaBlock .video span {
		left: 10px;
	}
	.str-m .mediaBlock .screens {
		width: 50%;
	}
	.str-m .mediaBlock .screens span {
		left: 10px;
	}

	.container, .topPanel {
		padding: 0px 15px;
	}

	.topPanel a {
		margin-right: 15px;
	}

	.menu li {
		padding: 0px 10px;
		width: 130px;
	}
	.menu li a {
		padding: 0px 10px;
	}

	.news .button {
		opacity: 1;
	}

	.fMenu {
		margin-right: 100px;
	}

	.sparks {
		display: none;
	}
}
@media (max-width: 993px) {
	.wrapper {
		background: none;
	}

	.topPanel-wrapper {
		height: 50px;
	}
	.topPanel-wrapper:after {
		display: none;
	}

	.topPanel a {
		margin-right: 0px;
	}

	.logo-panel {
		left: 50%;
		top: 5px;
		margin-top: 0px;
		width: 100px;
		margin-left: -50px;
		text-align: center;
	}
	.logo-panel a {
		margin-right: 0px;
	}
	.logo-panel img {
		height: 40px;
	}

	.socBlock-fixed {
		top: 5px;
		bottom: auto;
		right: 15px;
		left: auto;
		background: none;
		padding: 12px 2px;
	}

	.topPane-menu-block {
		display: block;
		position: fixed;
		left: -320px;
		top: 0;
		width: 320px;
		height: 100%;
		background: #14171c;
		padding: 150px 20px 20px 20px;
		transition: 0.5s;
		z-index: 22;
	}
	.topPane-menu-block.active {
		left: 0;
	}
	.topPane-menu-block .topPanel-left {
		overflow-y: auto;
		height: 100%;
	}
	.topPane-menu-block .topPanel-right {
		position: absolute;
		top: 50px;
		width: calc(100% - 40px);
		text-align: center;
		padding-bottom: 20px;
		border-bottom: 1px solid #34393d;
	}
	.topPane-menu-block .menu {
		display: block;
		width: 100%;
		margin-top: 50px;
		margin-left: 0px;
	}
	.topPane-menu-block .menu li {
		height: auto;
		padding: 20px 0px 20px 40px;
		width: 100%;
	}
	.topPane-menu-block .menu li a {
		font-size: 20px;
		height: auto;
		line-height: 1;
	}
	.topPane-menu-block .menu .dropDown-menu {
		padding: 10px 0px 10px 40px;
	}
	.topPane-menu-block .menu .dropDown-menu li {
		padding: 10px 0px;
	}
	.topPane-menu-block .menu .dropDown-menu li a {
		padding: 10px 0px;
	}
	.topPane-menu-block .menu:hover .dropDown-menu {
		display: none;
	}
	.topPane-menu-block .menu li:hover .dropDown-menu {
		display: block;
	}

	.btn-button {
		position: fixed;
		left: 10px;
		top: 15px;
		z-index: 23;
		transition: 0.5s;
	}
	.btn-button span {
		display: block;
		width: 30px;
		height: 3px;
		margin-bottom: 4px;
		background: rgba(255, 255, 255, 0.8);
		transition: 0.5s;
	}
	.btn-button.active {
		left: 270px;
		top: 25px;
	}
	.btn-button.active span:nth-child(1) {
		transform: rotate(45deg);
		margin-bottom: -3px;
	}
	.btn-button.active span:nth-child(2) {
		display: none;
	}
	.btn-button.active span:nth-child(3) {
		transform: rotate(-45deg);
	}

	.logo {
		top: 100px;
	}

	.serverBlock {
		top: 260px;
	}

	.downloadBlock {
		top: 515px;
	}

	header {
		height: 640px;
	}

	.sliderBlock, .newsBlock {
		width: 100%;
	}

	.swiper-slider-small {
		right: 0;
		bottom: 0;
	}

	.swiper-button-next, .swiper-button-prev {
		margin-top: -20px;
	}

	.slideNewsBlock {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.str-m .streamBlock {
		width: 100%;
	}
	.str-m .mediaBlock {
		width: 100%;
	}
	.str-m .mediaBlock h2 {
		text-align: left;
	}

	.str-block {
		display: flex;
		justify-content: center;
		margin-bottom: 30px;
	}
	.str-block a {
		margin: 0px 10px;
	}

	.featuresBlock {
		height: auto;
	}

	.fMenu {
		margin-right: 40px;
	}
}
@media (max-width: 769px) {
	header {
		padding-top: 80px;
		height: auto;
	}

	.logo, .serverBlock, .downloadBlock {
		position: relative;
		width: 100%;
		text-align: center;
		top: auto;
		left: auto;
		display: flex;
		justify-content: center;
		margin-bottom: 40px;
	}

	.serverBlock .server {
		margin-right: 0px;
		margin: 0px 10px;
	}

	.features {
		width: 50%;
		margin: 0px;
		margin-bottom: 20px;
	}

	.featuresBlock .flex {
		flex-wrap: wrap;
	}

	.downloadBlock .download-links a {
		margin-left: 15px;
	}

	.streamBlock a img {
		position: relative;
		z-index: 3;
	}

	.footer-menu, .sectionflex {
		justify-content: center;
		width: 100%;
	}

	.fMenu {
		margin-right: 0px;
		margin: 0px 20px 20px 20px;
	}

	footer {
		padding: 30px 0px;
	}

	.logos img {
		margin-bottom: 20px;
	}

	.modalBlock {
		height: 100%;
	}

	.modal_div {
		align-items: flex-start;
	}

	.scroll-modal {
		height: calc(100% - 50px);
		overflow-y: auto;
	}
}
@media (max-width: 576px) {
	.socBlock-fixed {
		right: 10px;
	}
	.socBlock-fixed a {
		margin-right: 3px;
		margin-left: 3px;
	}

	.serverBlock .server {
		margin: 0px 2px 10px 2px;
	}

	.downloadButton {
		margin-bottom: 15px;
	}

	.downloadBlock .download-links a {
		color: #fff;
	}

	.swiper-button-next, .swiper-button-prev {
		top: 10px;
		margin-top: 0px;
	}

	.swiper-button-next {
		right: 10px;
	}

	.swiper-button-prev {
		right: 44px;
	}

	.playBlock {
		top: 100px;
		bottom: auto;
	}

	.newsBlock {
		padding: 15px;
		height: auto;
	}

	.news {
		padding: 13px 0px 13px 0px;
		flex-wrap: wrap;
	}
	.news .button {
		width: 100%;
		margin-top: 15px;
	}
	.news:before {
		display: none;
	}

	.str-block {
		flex-wrap: wrap;
	}
	.str-block a {
		margin-bottom: 15px;
	}

	.str-m .mediaBlock .media-l, .artwork {
		width: 100% !important;
	}

	.mediaButton .button {
		color: #fff;
	}

	.featuresBlock h2 {
		color: #fff;
	}

	.features {
		width: 100%;
	}

	.fMenu {
		margin: 0px 5px 20px 5px;
		width: 46%;
	}

	.modalBlock {
		padding: 30px 30px;
	}

	.facebookButton {
		width: 100%;
	}

	.formGroup-button {
		margin-top: 20px;
		justify-content: center;
	}
	.formGroup-button .lost-pass {
		display: inline-block;
		margin-bottom: 15px;
	}

	table tr {
		display: flex;
		flex-wrap: wrap;
	}
	table tr td {
		width: 100%;
	}
}

/*# sourceMappingURL=style.css.map */


#content {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	padding: 30px;
	background-color: #0a0d0f;
	line-height: 1.4;
	z-index: 10;
}


#content h1,
#content h2,
#content h3{
	color: #fff;
}

#sidebar h1,
#sidebar h2,
#sidebar h3{
	color: #fff;
}

#sidebar {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	padding: 30px;
	background-color: #0a0d0f;
	line-height: 1.4;
	z-index: 10;
}

#content .form{
	max-width: 700px;
	margin: 0 auto;
}

input#rules {
	width: auto;
}

.contentloginform {
	max-width: 450px;
	margin: 0 auto;
}

.e_note {
	background: #181b1d;
	padding: 15px 20px 15px 20px;
	color: #ff5a6a;
	border: 1px solid #632022;
}

.i_note {
	background: #1d2029;
	padding: 15px 20px 15px 20px;
	margin: 0px 0px 20px 0px;
	color: #57c1e0;
	border: 1px solid #394667;
}

.usernavigation {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 50px 0px 20px 0px;
}

.usernavigation a{
	padding: 10px 20px 10px 20px;
	background: #202629;
	text-decoration: none;
	margin: 0px 2px 0px 2px;
}

.usernavigation a:hover{
	filter: brightness(130%);
}

.title2.information {
	border-bottom: 1px solid #34393d;
	margin: 0px 0px 0px 0px;
}

span.logoutbtn {
	text-align: center;
	display: block;
	padding: 5px 0px 0px 0px;
}

span.logoutbtn a {
	padding: 15px 25px 15px 25px;
	background: url(../img/download-bg.jpg) no-repeat;
	background-size: 100% 100%;
	display: inline-block;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 12px;
}

li.first {
	text-align: left !important;
}


.accountpanelout li.first {
	text-align: left !important;
	margin: 20px 0px 20px 0px;
}

input#rules {
	min-width: auto;
}

div#content_center .entry > div {
	width: auto !important;
}

div#all .title{
	margin: 0px 0px 0px 0px;
}

input[type="checkbox"], input[type="radio"] {
	width: auto;
	min-width: auto;
	margin: 5px 10px 5px 0px;
}

div#rank_by_class a {
	background: #1c1f29;
	padding: 3px 10px 3px 10px;
	text-decoration: none;
	margin: 0px 3px 6px 3px;
	border: 1px solid #30333e;
}

div#rank_by_class {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

div#rankings_select_DEFAULT {
	padding: 10px 0px 10px 0px;
	margin: 20px 0px 20px 0px;
}

div#rankings_select_DEFAULT a {
	background: #3c1a1c;
	text-decoration: none;
	padding: 7px 20px 7px 20px;
	border: 1px solid #5b1b1c;
}

#character-infonavigation {
	display: flex;
	flex-wrap: wrap;
	margin: 0px 0px 30px 0px;
	justify-content: center;
}

#character-infonavigation a p{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	color: #fff;
	text-decoration: none;
}

#character-infonavigation a span{
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	color: #889596;
	text-decoration: none;
	white-space: nowrap;
	font-size: 12px;
}

#character-infonavigation a {
	text-decoration: none;
	padding: 10px 20px 10px 20px;
	white-space: nowrap;
	border: 1px solid #34393d;
	margin: 0px 5px 10px 5px;
	width: 32.444%;
}

#character-infonavigation a:hover {
	background: #34393d;
}



span.accountbtn {
	text-align: center;
	display: block;
	padding: 5px 0px 0px 0px;
}

span.accountbtn a {
	padding: 15px 20px 15px 20px;
	background: url(../img/accountpanel.jpg) no-repeat;
	background-size: 100% 100%;
	display: inline-block;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 12px;
}

.logged-btns {
	display: flex;
}

.accpanel {
	font-size: 30px;
	color: #79d9da !important;
}

.modalBlock.acp {
	max-width: 400px;
	padding: 50px;
}

.usernavigationpopup {
	margin: 20px 0px 0px 0px;
}

.usernavigationpopup li {
	margin: 0px 0px 0px 0px;
	border-bottom: 1px solid #1d2021;
}

.usernavigationpopup a {
	display: block;
	padding: 10px 20px 10px 20px;
	text-decoration: none;
	background: #06080a;
}

.usernavigationpopup a:hover {
	background: #171a1b;
}


.eventsblock {
	max-width: 270px;
	width: 100%;
	background: #16191b;
	position: fixed;
	left: -270px;
	top: 50%;
	z-index: 100;
	padding: 20px;
	transform: translate(0%,-50%);
	transition: 0.5s;
}

.eventsblockhover {
	position: absolute;
	right: -82px;
	top: 44px;
	background: #000;
	padding: 13px 30px 13px 30px;
	text-transform: uppercase;
	font-size: 12px;
	color: #fff;
	transform: rotate(-90deg);
	letter-spacing: 3px;
	display: block;
}

.eventsblock:hover  {
	left: 0px;
	transition: 0.5s;
}

.eventsblock h2 {
	color: #fff;
}

div#events > div {
	margin: 0px 0px 5px 0px;
	background: #1c1f21;
	padding: 9px 20px 9px 20px;
}

#events > div > span{
	color: #fff;
	padding: 0px 10px 0px 0px;
	font-weight: 400;
}


#notifier-box {
	position: fixed;
	top: 10px;
	right: 20px;
	z-index: 9999;
	background: #06080a;
	max-width: 290px;
	width: 100%;
}

#notifier-box .error {
	color: #ff3a43;
}

#notifier-box .success {
	color: #5ce444;
}


#notifier-box  span {
	color: #fff;
	display: block;
	margin: 10px 0px 0px 0px;
}

#notifier-box .message-box {
	padding: 30px;
}


.f16 .flag{display:inline-block;height:16px;width:16px;vertical-align:text-top;line-height:16px;background:url(../img/flags.png) no-repeat;}
.f16 ._African_Union{background-position:0 -16px;}
.f16 ._Arab_League{background-position:0 -32px;}
.f16 ._ASEAN{background-position:0 -48px;}
.f16 ._CARICOM{background-position:0 -64px;}
.f16 ._CIS{background-position:0 -80px;}
.f16 ._Commonwealth{background-position:0 -96px;}
.f16 ._England{background-position:0 -112px;}
.f16 ._European_Union, .f16 .eu{background-position:0 -128px;}
.f16 ._Islamic_Conference{background-position:0 -144px;}
.f16 ._Kosovo{background-position:0 -160px;}
.f16 ._NATO{background-position:0 -176px;}
.f16 ._Northern_Cyprus{background-position:0 -192px;}
.f16 ._Northern_Ireland{background-position:0 -208px;}
.f16 ._Olimpic_Movement{background-position:0 -224px;}
.f16 ._OPEC{background-position:0 -240px;}
.f16 ._Red_Cross{background-position:0 -256px;}
.f16 ._Scotland{background-position:0 -272px;}
.f16 ._Somaliland{background-position:0 -288px;}
.f16 ._Tibet{background-position:0 -304px;}
.f16 ._United_Nations{background-position:0 -320px;}
.f16 ._Wales{background-position:0 -336px;}
.f16 .ad{background-position:0 -352px;}
.f16 .ae{background-position:0 -368px;}
.f16 .af{background-position:0 -384px;}
.f16 .ag{background-position:0 -400px;}
.f16 .ai{background-position:0 -416px;}
.f16 .al{background-position:0 -432px;}
.f16 .am{background-position:0 -448px;}
.f16 .ao{background-position:0 -464px;}
.f16 .aq{background-position:0 -480px;}
.f16 .ar{background-position:0 -496px;}
.f16 .as{background-position:0 -512px;}
.f16 .at{background-position:0 -528px;}
.f16 .au{background-position:0 -544px;}
.f16 .aw{background-position:0 -560px;}
.f16 .ax{background-position:0 -576px;}
.f16 .az{background-position:0 -592px;}
.f16 .ba{background-position:0 -608px;}
.f16 .bb{background-position:0 -624px;}
.f16 .bd{background-position:0 -640px;}
.f16 .be{background-position:0 -656px;}
.f16 .bf{background-position:0 -672px;}
.f16 .bg{background-position:0 -688px;}
.f16 .bh{background-position:0 -704px;}
.f16 .bi{background-position:0 -720px;}
.f16 .bj{background-position:0 -736px;}
.f16 .bm{background-position:0 -752px;}
.f16 .bn{background-position:0 -768px;}
.f16 .bo{background-position:0 -784px;}
.f16 .br{background-position:0 -800px;}
.f16 .bs{background-position:0 -816px;}
.f16 .bt{background-position:0 -832px;}
.f16 .bw{background-position:0 -848px;}
.f16 .by{background-position:0 -864px;}
.f16 .bz{background-position:0 -880px;}
.f16 .ca{background-position:0 -896px;}
.f16 .cg{background-position:0 -912px;}
.f16 .cf{background-position:0 -928px;}
.f16 .cd{background-position:0 -944px;}
.f16 .ch{background-position:0 -960px;}
.f16 .ci{background-position:0 -976px;}
.f16 .ck{background-position:0 -992px;}
.f16 .cl{background-position:0 -1008px;}
.f16 .cm{background-position:0 -1024px;}
.f16 .cn{background-position:0 -1040px;}
.f16 .co{background-position:0 -1056px;}
.f16 .cr{background-position:0 -1072px;}
.f16 .cu{background-position:0 -1088px;}
.f16 .cv{background-position:0 -1104px;}
.f16 .cy{background-position:0 -1120px;}
.f16 .cz{background-position:0 -1136px;}
.f16 .de{background-position:0 -1152px;}
.f16 .dj{background-position:0 -1168px;}
.f16 .dk{background-position:0 -1184px;}
.f16 .dm{background-position:0 -1200px;}
.f16 .do{background-position:0 -1216px;}
.f16 .dz{background-position:0 -1232px;}
.f16 .ec{background-position:0 -1248px;}
.f16 .ee{background-position:0 -1264px;}
.f16 .eg{background-position:0 -1280px;}
.f16 .eh{background-position:0 -1296px;}
.f16 .er{background-position:0 -1312px;}
.f16 .es{background-position:0 -1328px;}
.f16 .et{background-position:0 -1344px;}
.f16 .fi{background-position:0 -1360px;}
.f16 .fj{background-position:0 -1376px;}
.f16 .fm{background-position:0 -1392px;}
.f16 .fo{background-position:0 -1408px;}
.f16 .fr{background-position:0 -1424px;}  
.f16 .bl, .f16 .cp, .f16 .mf, .f16 .yt{background-position:0 -1424px;}
.f16 .ga{background-position:0 -1440px;}
.f16 .gb{background-position:0 -1456px;}  
.f16 .sh{background-position:0 -1456px;}
.f16 .gd{background-position:0 -1472px;}
.f16 .ge{background-position:0 -1488px;}
.f16 .gg{background-position:0 -1504px;}
.f16 .gh{background-position:0 -1520px;}
.f16 .gi{background-position:0 -1536px;}
.f16 .gl{background-position:0 -1552px;}
.f16 .gm{background-position:0 -1568px;}
.f16 .gn{background-position:0 -1584px;}
.f16 .gp{background-position:0 -1600px;}
.f16 .gq{background-position:0 -1616px;}
.f16 .gr{background-position:0 -1632px;}
.f16 .gt{background-position:0 -1648px;}
.f16 .gu{background-position:0 -1664px;}
.f16 .gw{background-position:0 -1680px;}
.f16 .gy{background-position:0 -1696px;}
.f16 .hk{background-position:0 -1712px;}
.f16 .hn{background-position:0 -1728px;}
.f16 .hr{background-position:0 -1744px;}
.f16 .ht{background-position:0 -1760px;}
.f16 .hu{background-position:0 -1776px;}
.f16 .id{background-position:0 -1792px;}
.f16 .mc{background-position:0 -1792px;}
.f16 .ie{background-position:0 -1808px;}
.f16 .il{background-position:0 -1824px;}
.f16 .im{background-position:0 -1840px;}
.f16 .in{background-position:0 -1856px;}
.f16 .iq{background-position:0 -1872px;}
.f16 .ir{background-position:0 -1888px;}
.f16 .is{background-position:0 -1904px;}
.f16 .it{background-position:0 -1920px;}
.f16 .je{background-position:0 -1936px;}
.f16 .jm{background-position:0 -1952px;}
.f16 .jo{background-position:0 -1968px;}
.f16 .jp{background-position:0 -1984px;}
.f16 .ke{background-position:0 -2000px;}
.f16 .kg{background-position:0 -2016px;}
.f16 .kh{background-position:0 -2032px;}
.f16 .ki{background-position:0 -2048px;}
.f16 .km{background-position:0 -2064px;}
.f16 .kn{background-position:0 -2080px;}
.f16 .kp{background-position:0 -2096px;}
.f16 .kr{background-position:0 -2112px;}
.f16 .kw{background-position:0 -2128px;}
.f16 .ky{background-position:0 -2144px;}
.f16 .kz{background-position:0 -2160px;}
.f16 .la{background-position:0 -2176px;}
.f16 .lb{background-position:0 -2192px;}
.f16 .lc{background-position:0 -2208px;}
.f16 .li{background-position:0 -2224px;}
.f16 .lk{background-position:0 -2240px;}
.f16 .lr{background-position:0 -2256px;}
.f16 .ls{background-position:0 -2272px;}
.f16 .lt{background-position:0 -2288px;}
.f16 .lu{background-position:0 -2304px;}
.f16 .lv{background-position:0 -2320px;}
.f16 .ly{background-position:0 -2336px;}
.f16 .ma{background-position:0 -2352px;}
.f16 .md{background-position:0 -2368px;}
.f16 .me{background-position:0 -2384px;}
.f16 .mg{background-position:0 -2400px;}
.f16 .mh{background-position:0 -2416px;}
.f16 .mk{background-position:0 -2432px;}
.f16 .ml{background-position:0 -2448px;}
.f16 .mm{background-position:0 -2464px;}
.f16 .mn{background-position:0 -2480px;}
.f16 .mo{background-position:0 -2496px;}
.f16 .mq{background-position:0 -2512px;}
.f16 .mr{background-position:0 -2528px;}
.f16 .ms{background-position:0 -2544px;}
.f16 .mt{background-position:0 -2560px;}
.f16 .mu{background-position:0 -2576px;}
.f16 .mv{background-position:0 -2592px;}
.f16 .mw{background-position:0 -2608px;}
.f16 .mx{background-position:0 -2624px;}
.f16 .my{background-position:0 -2640px;}
.f16 .mz{background-position:0 -2656px;}
.f16 .na{background-position:0 -2672px;}
.f16 .nc{background-position:0 -2688px;}
.f16 .ne{background-position:0 -2704px;}
.f16 .ng{background-position:0 -2720px;}
.f16 .ni{background-position:0 -2736px;}
.f16 .nl{background-position:0 -2752px;}  
.f16 .bq{background-position:0 -2752px;}
.f16 .no{background-position:0 -2768px;}  
.f16 .bv, .f16 .nq, .f16 .sj{background-position:0 -2768px;}
.f16 .np{background-position:0 -2784px;}
.f16 .nr{background-position:0 -2800px;}
.f16 .nz{background-position:0 -2816px;}
.f16 .om{background-position:0 -2832px;}
.f16 .pa{background-position:0 -2848px;}
.f16 .pe{background-position:0 -2864px;}
.f16 .pf{background-position:0 -2880px;}
.f16 .pg{background-position:0 -2896px;}
.f16 .ph{background-position:0 -2912px;}
.f16 .pk{background-position:0 -2928px;}
.f16 .pl{background-position:0 -2944px;}
.f16 .pr{background-position:0 -2960px;}
.f16 .ps{background-position:0 -2976px;}
.f16 .pt{background-position:0 -2992px;}
.f16 .pw{background-position:0 -3008px;}
.f16 .py{background-position:0 -3024px;}
.f16 .qa{background-position:0 -3040px;}
.f16 .re{background-position:0 -3056px;}
.f16 .ro{background-position:0 -3072px;}
.f16 .rs{background-position:0 -3088px;}
.f16 .ru{background-position:0 -3104px;}
.f16 .rw{background-position:0 -3120px;}
.f16 .sa{background-position:0 -3136px;}
.f16 .sb{background-position:0 -3152px;}
.f16 .sc{background-position:0 -3168px;}
.f16 .sd{background-position:0 -3184px;}
.f16 .se{background-position:0 -3200px;}
.f16 .sg{background-position:0 -3216px;}
.f16 .si{background-position:0 -3232px;}
.f16 .sk{background-position:0 -3248px;}
.f16 .sl{background-position:0 -3264px;}
.f16 .sm{background-position:0 -3280px;}
.f16 .sn{background-position:0 -3296px;}
.f16 .so{background-position:0 -3312px;}
.f16 .sr{background-position:0 -3328px;}
.f16 .st{background-position:0 -3344px;}
.f16 .sv{background-position:0 -3360px;}
.f16 .sy{background-position:0 -3376px;}
.f16 .sz{background-position:0 -3392px;}
.f16 .tc{background-position:0 -3408px;}
.f16 .td{background-position:0 -3424px;}
.f16 .tg{background-position:0 -3440px;}
.f16 .th{background-position:0 -3456px;}
.f16 .tj{background-position:0 -3472px;}
.f16 .tl{background-position:0 -3488px;}
.f16 .tm{background-position:0 -3504px;}
.f16 .tn{background-position:0 -3520px;}
.f16 .to{background-position:0 -3536px;}
.f16 .tr{background-position:0 -3552px;}
.f16 .tt{background-position:0 -3568px;}
.f16 .tv{background-position:0 -3584px;}
.f16 .tw{background-position:0 -3600px;}
.f16 .tz{background-position:0 -3616px;}
.f16 .ua{background-position:0 -3632px;}
.f16 .ug{background-position:0 -3648px;}
.f16 .us{background-position:0 -3664px;}
.f16 .uy{background-position:0 -3680px;}
.f16 .uz{background-position:0 -3696px;}
.f16 .va{background-position:0 -3712px;}
.f16 .vc{background-position:0 -3728px;}
.f16 .ve{background-position:0 -3744px;}
.f16 .vg{background-position:0 -3760px;}
.f16 .vi{background-position:0 -3776px;}
.f16 .vn{background-position:0 -3792px;}
.f16 .vu{background-position:0 -3808px;}
.f16 .ws{background-position:0 -3824px;}
.f16 .ye{background-position:0 -3840px;}
.f16 .za{background-position:0 -3856px;}
.f16 .zm{background-position:0 -3872px;}
.f16 .zw{background-position:0 -3888px;}
.f16 .sx{background-position:0 -3904px;}
.f16 .cw{background-position:0 -3920px;}
.f16 .ss{background-position:0 -3936px;}
.f16 .nu{background-position:0 -3952px;}

.active{
	opacity:1;filter:alpha(opacity=100);
}

.nonactive{
	opacity:0.3;filter:alpha(opacity=30);
}

.active:hover, .nonactive:hover{
	opacity: 0.6;filter: alpha(opacity=60);
	margin-bottom:-1px;
	margin-top:1px;
}

.active:active, .nonactive:active{
	opacity: 1;filter: alpha(opacity=100);
	margin-bottom:-2px;
	margin-top:2px;
}

.descriptsize {
	display: flex;
	justify-content: center;
}

.downloadfile {
	text-align: center;
	width: 27%;
	min-width: 250px;
	margin: 0px 10px 20px 10px;
}

.downloadfile h2 {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	font-weight: 100 !important;
	letter-spacing: 1px;
}

.downloadfile a{
	text-decoration: none;
	background: url(../img/download.jpg) no-repeat;
	display: block;
	-webkit-background-size: 100% 100%;
	background-size: 100% 100%;
	padding: 10px 0px 10px 0px;
}

.downloadfile a:hover{
	filter: brightness(130%);
}

.allfiles {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 70px 0px 30px 0px;
}

span.filedescript {
	font-size: 14px;
	color: #afdca9;
	display: block;
}

span.dstitle {
	margin: 0px 5px 0px 5px;
	font-size: 13px;
	color: #6baf60;
}

.ranking-table td {
	vertical-align: top;
}

.ranking-table > :nth-child(2) > tr > td {
	text-align: center;
	vertical-align: middle;
}

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

.filter-box {
	width: 100%;
	background: #0f1213;
	margin: 0px 2px 0px 2px;
	padding: 20px;
}

.searchpanel {
	display: flex;
	margin: 0px 0px 20px 0px;
}

.custom_button.filterbtn1 {
	background: url(../img/accountpanel.jpg) no-repeat;
	background-size: 100% 100%;
	margin: 20px 2px 0px 0px;
}

.custom_button.filterbtn2 {
	background: url(../img/download-bg.jpg) no-repeat;
	background-size: 100% 100%;
	margin: 20px 0px 0px 2px;
}

.topfilterbtn {
	background: #23282a;
	padding: 5px 10px 5px 10px;
	display: inline-block;
	text-decoration: none;
}

.whitemsall {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.wh_items {
	width: 264px;
	height: 491px;
	margin: 0px 10px 0px 10px;
	padding: 5px 0px 0px 5px;
}

.square img:active {
	background: rgba(86, 103, 115, 0.4);
}

.ui-dialog.ui-widget.ui-widget-content.ui-corner-all.ui-front.fixed.ui-draggable.ui-resizable {
	position: fixed !important;
	top: 50% !important;
	left: 50%;
	margin: 0px 0px 0px 0px;
	transform: translate(-50%,-50%);
}

.ui-widget-content {
	border: 1px solid #34393d;
	background: #0a0d0f;
	color: #7a8184;
	font-size: 14px;
}

.ui-widget-header {
	border: 1px solid #353b3e;
	background: #23282a;
	color: #fff;
	font-weight: normal;
}

.ui-widget-header {
	border: 1px solid #353b3e;
	background: #23282a;
	color: #fff;
	font-weight: normal;
	padding: 13px 20px 13px 20px !important;
	border-radius: 0px !important;
}

.item-leftright {
	display: flex;
}

.optwrap {
	display: flex;
	flex-direction: row-reverse;
	justify-content: flex-end;
	align-items: center;
}

#buy_buttons {
	margin: 10px 0px 10px 0px;
	text-align: center;
}

.itemalloptions {
	padding: 10px 0px 10px 0px;
}

div#item_buy_left {
	padding: 0px 30px 0px 10px;
}

.luckopt {
	display: flex;
}

.luckopt .opt_title {
	padding: 5px 10px 0px 0px;
}

.labeltitle {
	color: #ccc;
	padding: 10px 0px 5px 0px;
}

.allprice {
	display: flex;
	align-items: center;
	margin: 15px 0px 0px 0px;
}

.allprice .opt_title{
	margin: 0px 10px 0px 0px;
}

#credits_level,
#credits_opt,
#credits_exe,
#credits_luck,
#total_credits,
#credits_skill {
	color: #c1ad72;
}

div#item_image_bg {
	text-align: center;
	padding: 20px 0px 20px 0px;
	background: #222527;
	border: 1px solid #34393d;
	margin: 12px 0px 20px 0px;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
	border: 1px solid #23282a;
	background: #23282a;
	font-weight: normal;
	color: #adadad;
}

.btnswind {
	display: flex;
	justify-content: center;
}

.modal-header h2 {
	color: #fff;
}

.modal-header h2 {
	color: #fff;
	font-size: 18px;
	margin: 0px 0px 10px 0px;
}

#buy_windows {
	margin: 0px 10px 0px 0px;
	display: block;
	position: fixed;
	opacity: 1;
	z-index: 11000;
	left: 50%;
	margin-left: 0px;
	top: 200px;
}

#add_to_card_windows {
	margin: 0px 0px 0px 10px;
	display: block;
	position: fixed;
	opacity: 1;
	z-index: 11000;
	left: 50%;
	margin-left: -150px;
	top: 200px;
}

.pmethodwrap {
	display: flex;
	justify-content: center;
}

.btn-fld  button {
	width: 100%;
	padding: 10px 22px;
}

.btnswind .btn-fld {
	margin: 5px 0px 20px 0px;
}

.pagination li {
	display: flex;
}

#pagination li a{
	margin: 0px 10px 0px 10px;
	text-decoration: none;
	display: inline-block;
	padding: 5px 10px 5px 10px;
	background: #222527;
}

a.on {
	background: #444d52 !important;
}

div#ucp_info > div {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	color: #0a0d0f;
}

div#ucp_info > div a {
	background: #16191b;
	text-decoration: none;
	padding: 5px 15px 5px 15px;
	display: block;
	margin: 0px 3px 10px 3px;
}

#helm{
	position:absolute; 
	left:73px; 
	top:58px; 
	width:56px; 
	height:66px; 
}

#wings{
	position:absolute; 
	left:272px;	
	top:59px; 	
	width:127px; 
	height:110px; 
}

#pendant{
	position:absolute; 
	left:233px;	
	top:80px; 	
	width:29px; 
	height:29px; 
}

#sword{
	position:absolute; 
	left:6px; 
	top:242px; 
	width:69px; 
	height:129px; 
}

#armor{
	position:absolute; 
	left:40px; 
	top:138px; 
	width:82px; 
	height:98px; 
}

#shield{
	position:absolute; 
	left:330px; 
	top:242px; 
	width:69px; 
	height:129px; 
}

#gloves{
	position:absolute; 
	left:271px;	
	top:178px;	
	width:85px;	
	height:55px; 
}
#pants{
	position:absolute; 
	left:89px;	
	top:297px;	
	width:58px; 
	height:74px; 
}
#ring_left{
	position:absolute; 
	left:102px;	
	top:252px; 	
	width:29px; 
	height:29px; 
}
#ring_right{
	position:absolute; 
	left:272px;	
	top:252px; 	
	width:29px; 
	height:29px; 
}

#boots{
	position:absolute; 
	left:258px;	
	top:297px; 	
	width:58px; 
	height:74px; 
}

#tooltip {
	position: absolute;
	z-index: 3000;
	border: 1px solid #111;
	background-color: #202325;
	padding: 5px;
	opacity: 0.90;
	font: normal 10px Tahoma, Helvetica, sans-serif;
	text-align: center;
	color: #fff;
	font-size: 11px;
}

#tooltip h3, 
#tooltip div {
	margin: 0;
}

#lean_overlay {
	position: fixed;
	z-index: 9998;
	top: 0px;
	left: 0px;
	height:100%;
	width:100%;
	background: #000;
	display: none;
}










.vertical-tabs-container {
	overflow: hidden;
}
.vertical-tabs-container::after {
	clear: both;
	content: "";
	display: block;
}
.vertical-tabs-container li {
	list-style: none;
}

.vertical-tabs-container .vertical-tabs > a {
	color: #ffffff;
	text-decoration: none;
	margin: 0px 0px 10px 0px;
	padding: 20px;
	background: #1d2427;
	font-weight: 100;
	display: block;
	will-change: transform;
	font-size: 12px;
	letter-spacing: 0.5px;
}

.vertical-tabs-container a:hover {
	filter: brightness(150%);
	will-change: transform;
}

.vertical-tabs-container .vertical-tabs {
	display: none;
}

.vertical-tabs-container .vertical-tabs {
	display: inline;
	float: left;
	min-height: 300px;
	width: 25%;
}


.vertical-tabs-container .vertical-tab.is-active {
	background-color: #4e5e67;
	will-change: transform;
}

.vertical-tabs-container .vertical-tab.is-active:hover {
	filter: brightness(130%);
	will-change: transform;
}

.vertical-tabs-container .vertical-tab:focus {
	outline: none;
}
.vertical-tabs-container .vertical-tab-content-container {
	display: block;
	margin: 0 auto;
}
.vertical-tabs-container .vertical-tab-content-container a:focus {
	outline: none;
}

.vertical-tabs-container .vertical-tab-content-container {
	height: auto;
	width: 75%;
	display: inline-block;
}

.vertical-tabs-container .vertical-tab-content {
	padding: 30px;
	background-color: #15191b;
	margin: 0px 0px 0px 20px;
}

.vertical-tabs-container .vertical-tab-content p {
	color: #a9bbbd;
	line-height: 24px;
}

.vertical-tabs-container .vertical-tab-content {
	border: none;
	display: none;
}

.vertical-tabs-container .vertical-tab-accordion-heading {
	background-color: white;
	border-top: 1px solid gainsboro;
	cursor: pointer;
	display: block;
	font-weight: bold;
	padding: 0.75em 0.809em;
}
.vertical-tabs-container .vertical-tab-accordion-heading:focus, .vertical-tabs-container .vertical-tab-accordion-heading:hover {
	color: #477DCA;
}
.vertical-tabs-container .vertical-tab-accordion-heading:first-child {
	border-top: none;
}
.vertical-tabs-container .vertical-tab-accordion-heading.is-active {
	background: #f6f6f6;
	border-bottom: none;
}
@media screen and (min-width: 40em) {
	.vertical-tabs-container .vertical-tab-accordion-heading {
		display: none;
	}
}

.tabcontentin {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
@-webkit-keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

.tabcontentin h2 {
	font-size: 15px;
	font-weight: 400;
	letter-spacing: 1px;
	padding: 0px 0px 20px 0px;
	margin: 0px 0px 20px 0px;
	border-bottom: 1px solid #25292b;
}

.jewel {
	background: #173318;
	padding: 10px 20px 10px 20px;
	margin: 0px 0px 15px 0px;
	color: #97bb6f;
}

.jewel-info {
	background: #1f2c31;
	padding: 10px 20px 10px 20px;
	margin: 0px 0px 15px 0px;
	color: #9ee2ff;
}

.contentintitle {
	background: #272e31;
    padding: 10px 20px 10px 20px;
    margin: 40px 0px 0px 0px;
    color: #ffffff;
    font-weight: 400;
    font-size: 15px;
}

.tabcontent-wrap .news-text  {
	color: #75868e;
}

.tabcontent-wrap .news-text a {
	color: #afc4ce;
}

.tabcontent-wrap .news-text li {
	margin: 3px 0px 3px 0px;
	list-style:inside circle;
	font-size: 14px;
}

.tabcontent-wrap ul {
	padding: 0px 0px 0px 0px;
}

.warning-text-blue {
    background: #1f2c31;
    padding: 10px 20px 10px 20px;
    margin: 10px 0px 10px 0px;
    color: #9ee2ff;
    font-weight: 400;
    font-size: 15px;
}

.warning-text-red {
    background: #0d1013;
    padding: 5px 20px 5px 20px;
    margin: 0px 0px 10px 0px;
}

div#add_to_card_windows,
div#buy_windows {
    background: #111314;
    padding: 30px;
    border: 3px solid #2c3133;
    box-shadow: 0px 0px 50px 50px rgba(0,0,0,0.5);
}

.payment-method-button {
	display: flex;
	justify-content: center;
}

.payselect.span_red {
    background: #440808 !important;
    color: #fff;
}

.payselect {
    padding: 10px 10px 10px 10px;
    display: block;
    margin: 10px 5px 10px 5px;
    background: #1a1f21;
}

.modal-header .close {
    width: 18px;
    height: 18px;
    position: absolute;
    right: 10px;
    top: 10px;
    background: url(../img/ui/ui-icons_888888_256x240.png) no-repeat center;
    background-position: -96px -128px;
}

#buy_windows, #add_to_card_windows, #select_server, #auction_bet{
	display:none;
}

/* RANKINGS FILTER BY CLASS */

.rankings-class-filter {
	display: inline-block;
	list-style-type: none;
	margin: 20px auto;
	padding: 10px 20px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	-khtml-border-radius: 10px;
}

	.rankings-class-filter li {
		display: inline-block;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
		margin-bottom: 10px;
	}
	
	.rankings-class-filter li:hover {
		-webkit-filter: grayscale(0%);
		filter: grayscale(0%);
	}

.rankings-class-filter-selection {
	display: inline-block;
	width: 75px;
	text-align: center;
	color: #ffffff;
	font-size: 11px;
	cursor: pointer;
}

	.rankings-class-filter-selection:hover {
		color: #ffffff !important;
	}

	.rankings-class-filter-selection:hover img {
		-webkit-filter: brightness(120%);
		filter: brightness(120%);
	}

.rankings-class-filter-selection img {
	width: 40px;
	height: auto;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	-khtml-border-radius: 50%;
	margin-bottom: 5px;
	-moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
	-webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.45);
	-moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.45);
	box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.45);
}

.rankings-class-filter-grayscale {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
}


/*CUSTOM*/

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.row:before {
    display: table;
    content: " ";
}

.row:after {
    clear: both;
    display:table;
    content:" "
}

.text-center {
    text-align: center;
}

.col-xs-3 {
    float: left;
    width: 25%;
}

.col-xs-4 {
    width: 33.33333333%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out;
}

.thumbnail>img {
    margin-right: auto;
    margin-left: auto;
    display: block;
    max-width: 100%;
    height: auto;
}
.minitoprtitle{
	font-weight: bold; 
	font-size: 20px;
	color: #FFFFFF;
	background: url(https://i.imgur.com/F0fuBAC.gif) repeat scroll 0 0 transparent;
    	text-shadow: 0 0 8px;
}
.minitopr a{
	font-weight: bold; 
	font-size: 30px;
	color: #FF0000;
	background: url(https://i.imgur.com/F0fuBAC.gif) repeat scroll 0 0 transparent;
    	text-shadow: 0 0 8px;
}



/*DOWNLOAD MODULE*/

.block {
  margin-bottom: 40px;
}
.box-style1, .box-style4{
	z-index: 10;
}
.block-title, .box-style1, .box-style4 {
  position: relative;
  margin-bottom: 40px;
}
.block-title h2 {
  font-size: 16px;
}
.box-style1 h2, .box-style4 h2{
 padding: 10px 15px 10px 40px;
  background: url(../img/block-title-icon.png) left center no-repeat;
  background-color: #121212;
  display: inline-block;
  position: relative;
  z-index: 2;
  font-size: 16px;
}
.block-title h2 span {
  padding: 10px 15px 10px 40px;
  background: url(../img/block-title-icon.png) left center no-repeat;
  background-color: #121212;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.block-title:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
  top: 50%;
  left: 0px;
}
.dropdown-menu{
	width: 200px;
}
.dropdown-menu > button.btn{
    padding:0!important
}
.dropdown-menu > li > a{
    display: block !important;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143 !important;
    color: #333;
    white-space: nowrap;
	text-decoration: none;
	height: 25px !important;
	width: 100% !important
}
.dropdown-menu > li > a:hover{
    color: #fec16a !important
}
.lk-coins {
  padding: 0px 5px 15px 5px;
}

.lk-coins .coins {
  float: left;
  color: #ff9b39;
  font-weight: bold;
  font-size: 14px;
  margin-top: 3px;
  display: inline-block;
  margin-bottom: 10px;
}
.lk-coins .username {
  font-size: 13px;
  font-weight: bold;
  color: #000;
  float:right;
}
.downloadBlock1 {
  width: 55%;
  background: url(../img/download-bg1.jpg) center no-repeat;
  background-size: cover;
  height: 272px;
  text-align: center;
  padding: 55px 85px 0px 85px;
  color: #867d86;
  box-shadow: inset -10px 0px 10px 0px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 6;
}
.downloadBlock-title {
  font-size: 18px;
  margin-bottom: 35px;
}
.downloadBlock-title span {
  font-weight: 600;
  color: #fff;
}
.downloadBlock-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  width: 33.3%;
  border: 1px solid #2d2d2d;
  padding: 18px 0px;
  color: #867d86;
}
.downloadBlock-block img {
  height: 43px;
  margin-bottom: 12px;
}
.downloadBlock-block:hover {
  background: url(../img/download-hover.jpg) center no-repeat;
  background-size: cover;
  box-shadow: 0px 14px 14px 0px rgba(0, 0, 0, 0.1);
}

.updateBlock {
  width: 45%;
  background: url(../img/update-block-bg.jpg) center no-repeat;
  background-size: cover;
  height: 272px;
  text-align: center;
  padding: 55px 85px 0px 85px;
  color: #867d86;
  position: relative;
  z-index: 6;
  line-height: 1.4;
  font-size: 12px;
}
.updateBlock h3 {
  font-size: 20px;
  font-weight: 600;
}

video {
    position: absolute;
    width: inherit;
}