<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.main_headline h1 {
	font-size: 3.7rem;
}

.mapban-background-secondary {
	background-image: -webkit-gradient(linear, left top, right top, from(#ec2b64), to(#fa8952));
	background-image: linear-gradient(to right, #ec2b64, #fa8952);
	color: var(--HighContrast);
}

/* --------------------------- */
/* --- Other Form Elements --- */
/* --------------------------- */
form {
	width: 65%;
	margin: 0 auto;
}

form.form--width90 {
	width: 90%;
}

.modal form {
	width: 100%;
	margin: 0;
}

.form-switch .form-icon {
	background: var(--FontColor2);
}

.input-error {
	border: 2px solid #f00;
}

input:not([type='submit']):not([type='checkbox']),
textarea,
select {
	width: 100%;
	margin-bottom: 20px;
}

blockquote {
	position: relative;
	padding: 3em;
	font-family: serif;
	border-left: 0;
	margin: 0;
	font-style: italic;
}
blockquote::before,
blockquote::after {
	position: absolute;
	font-family: monospace;
	font-size: 5rem;
	line-height: 0;
}
blockquote::before {
	left: 0.2em;
	content: '“';
}
blockquote::after {
	right: 0.2em;
	bottom: 0.1em;
	content: '”';
}

/* Call to Action */
.cta_container {
	padding-top: 10rem;
	padding-bottom: 0rem;
	overflow: hidden;
	position: relative;
	border: 0.2rem solid rgba(255, 255, 255, 0.1);
	border-right: 0px;
	border-left: 0px;
}

.cta_bg {
	position: absolute;
	width: 100%;
	height: auto;
	top: 0px;
	left: 0px;
}

@media only screen and (max-width: 1024px) {
	.cta_container {
		padding-top: 7rem;
	}
}

@media only screen and (max-width: 768px) {
	.cta_container {
		padding-top: 4rem;
	}
}

@media only screen and (max-width: 425px) {
	.cta_container {
		padding-top: 2rem;
	}
	.cta_bg {
		width: 130%;
		left: -15%;
	}
}

.cta_body {
	background-image: -webkit-gradient(
		linear,
		left top, right top,
		from(rgba(23, 23, 23, 0.9)),
		to(rgba(61, 61, 61, 0.9))
	);
	background-image: linear-gradient(
		to right,
		rgba(23, 23, 23, 0.9),
		rgba(61, 61, 61, 0.9)
	);
	padding-top: 2rem;
	padding-bottom: 2rem;
	position: relative;

	border-top: 3px solid transparent;
	-o-border-image: linear-gradient(
		to right,
		rgb(var(--MainColor)) 0%,
		rgb(var(--MainColorLight)) 100%
	);
	-webkit-border-image: -webkit-gradient(
		linear,
		left top, right top,
		from(rgb(var(--MainColor))),
		to(rgb(var(--MainColorLight)))
	);
	-webkit-border-image: linear-gradient(
		to right,
		rgb(var(--MainColor)) 0%,
		rgb(var(--MainColorLight)) 100%
	);
	        border-image: -webkit-gradient(
		linear,
		left top, right top,
		from(rgb(var(--MainColor))),
		to(rgb(var(--MainColorLight)))
	);
	        border-image: linear-gradient(
		to right,
		rgb(var(--MainColor)) 0%,
		rgb(var(--MainColorLight)) 100%
	);
	border-image-slice: 1;
}

a.cta {
	width: 18rem;
	height: auto;

	position: relative;
	display: inline-block;
	cursor: pointer;
	outline: none;
	border: 0;
	vertical-align: middle;
	text-decoration: none;
	background: transparent;
	padding: 0;
	font-size: 1.6rem;
	font-family: inherit;

	border-radius: 24px;
	--weight: 1px;
	box-shadow: -1px 0 0 var(--weight, 2px) rgba(var(--MainColor), 0.75),
		-1px -1px 0 var(--weight, 2px) rgba(var(--MainColor), 0.25),
		-1px 1px 0 var(--weight, 2px) rgba(var(--MainColor), 0.25),
		0 -1px 0 var(--weight, 2px) rgba(var(--MainColorMiddle), 0.5),
		0 1px 0 var(--weight, 2px) rgba(var(--MainColorMiddle), 0.5),
		1px -1px 0 var(--weight, 2px) rgba(var(--MainColorLight), 0.25),
		1px 1px 0 var(--weight, 2px) rgba(var(--MainColorLight), 0.25),
		1px 0 0 var(--weight, 2px) rgba(var(--MainColorLight), 0.75);
}
.cta_circle {
	-webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	position: relative;
	display: block;
	margin: 0;
	width: 3rem;
	height: 3rem;
	background-image: -webkit-gradient(
		linear,
		left top, right top,
		from(rgb(var(--MainColor))),
		to(rgb(var(--MainColorLight)))
	);
	background-image: linear-gradient(
		to right,
		rgb(var(--MainColor)),
		rgb(var(--MainColorLight))
	);
	border-radius: 1.625rem;
}

.cta_icon {
	-webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	background: var(--FontColor, #fff);
}

.cta_icon.arrow {
	-webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	left: 0.525rem;
	width: 1.125rem;
	height: 0.125rem;
	background: none;
}

.cta_icon.arrow::before {
	position: absolute;
	content: '';
	top: -0.2rem;
	right: -0.1rem;
	width: 0.625rem;
	height: 0.625rem;
	border-top: 0.125rem solid var(--FontColor, #fff);
	border-right: 0.125rem solid var(--FontColor, #fff);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.cta_text {
	-webkit-transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 0.75rem 0;
	margin: 0 0 0 1.85rem;
	color: var(--FontColor2, #c0bdbb);
	font-weight: 700;
	line-height: 1.05;
	text-align: center;
	text-transform: uppercase;
}

a.cta:hover .cta_circle {
	width: 100%;
}

a.cta:hover .cta_circle .cta_icon.arrow {
	background: var(--FontColor, #fff);
	-webkit-transform: translate(1rem, 0);
	transform: translate(1rem, 0);
}
a.cta:hover .cta_circle,
a.cta:hover .cta_text {
	color: var(--FontColor, #fff);
}

/* select */
/* need to have a div with class select-wrapper around the select... */
.select-wrapper select {
	/* own style */
	width: 100%;
	padding: 5px 30px 5px 15px;
	border: none;
	border: 1px solid transparent;
	outline: none;
	background: none;

	color: var(--FontColor);
	font-family: 'Ostrich Proper', Arial;
	font-size: 1rem;

	font-weight: 400;
	text-align: center;
	cursor: pointer;
	/* Deactivate Browser Style */
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	-moz-text-align-last: center;
	     text-align-last: center;
	direction: ltr;
	-o-border-image: linear-gradient(
		to right,
		rgb(var(--MainColor)) 0%,
		rgb(var(--MainColorLight)) 100%
	);
	-webkit-border-image: -webkit-gradient(
		linear,
		left top, right top,
		from(rgb(var(--MainColor))),
		to(rgb(var(--MainColorLight)))
	);
	-webkit-border-image: linear-gradient(
		to right,
		rgb(var(--MainColor)) 0%,
		rgb(var(--MainColorLight)) 100%
	);
	        border-image: -webkit-gradient(
		linear,
		left top, right top,
		from(rgb(var(--MainColor))),
		to(rgb(var(--MainColorLight)))
	);
	        border-image: linear-gradient(
		to right,
		rgb(var(--MainColor)) 0%,
		rgb(var(--MainColorLight)) 100%
	);
	border-image-slice: 1;
}

.select-wrapper {
	position: relative;
}

.select-wrapper &gt; i {
	position: absolute;
	top: 10px;
	right: 15px;
	color: var(--FontColor2);
	color: #fff;
	font-size: 0.95rem;
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	line-height: 1;
	pointer-events: none;
}

.select-wrapper select::-ms-expand {
	/* Deactivate IE Style.... */
	display: none;
}

.select-wrapper select:focus::-ms-value {
	/* Deactivate IE Style.... */
	background-color: transparent;
}

.select-wrapper select option {
	color: #000;
}

.select-wrapper:hover select,
.select-wrapper:active select {
	border: 1px solid transparent;
	background-image: -webkit-gradient(
		linear,
		left top, right top,
		from(rgb(var(--MainColor))),
		to(rgb(var(--MainColorLight)))
	);
	background-image: linear-gradient(
		to right,
		rgb(var(--MainColor)),
		rgb(var(--MainColorLight))
	);
	-o-border-image: none;
	-webkit-border-image: none;
	        border-image: none;
	border-image-slice: 0;
}

.select-wrapper:hover::after,
.select-wrapper:active::after {
	color: var(--FontColor);
}
/* ----------------------- */
/* --- General Classes --- */

/* ----------------------- */
.main_headline {
	text-align: center;
}

.main_headline h2 {
	margin: 5px 0 2.5px;
}

.topmargin {
	margin-top: 50px;
}

.topmargin_half {
	margin-top: 25px;
}

.lang_buttons {
	margin-bottom: 25px;
	text-align: center;
}

.main_wrap {
}
/* -------------- */
/* --- Header --- */
/* -------------- */
.mobile_nav_icon,
.mobile_user_icon,
.navigation .logout {
	display: none;
}

body &gt; header {
	width: 100%;
	border-top: 0 !important;
	border-right: 0 !important;
	border-bottom: 6px solid transparent !important;
	border-left: 0 !important;
	background-image: -webkit-gradient(linear, left top, right top, from(#1a1a1a), to(#1c1c1c));
	background-image: linear-gradient(to right, #1a1a1a, #1c1c1c);
	-webkit-border-image: -webkit-linear-gradient(
		left,
		rgb(var(--MainColor)) 0%,
		rgb(var(--MainColorLight)) 100%
	);
}

.navbar .navbar-section {
	flex-wrap: wrap;
}

body &gt; header a {
	color: var(--FontColor);
	font-size: 1.5rem;
	text-decoration: none;
}

body &gt; header a.selected {
	border-bottom: solid 1px var(--FontColor);
}

body &gt; header a:not(.button):not(.btn-action):hover,
body &gt; header a:not(.button):not(.btn-action):active,
body &gt; header a:not(.button):not(.btn-action):focus {
	margin-bottom: -1px; /* space for border-bottom */
	border-bottom: solid 1px var(--FontColor);
	text-decoration: none;
}

/* --------------- */
/* --- Sidebar --- */
/* --------------- */
.off-canvas .off-canvas-overlay {
	background: rgba(69, 77, 93, 0.5);
}

.user__avatar {
	width: 3rem;
	height: 3rem;
	padding: 2px;
	border-radius: 100%;
}

.user__avatar &gt; img {
	border-radius: 100%;
}

.user__name {
	font-size: 1.35rem;
}

.user__time {
	font-size: 0.6rem;
}

.fonts-loaded .user__time {
	font-size: 0.8rem;
}

/* -------------- */
/* --- Footer --- */
/* -------------- */
body &gt; footer {
	padding-bottom: 0.5em;
	padding-top: 0.5em;
	/*height: 155px; /* Height of the footer */
	border-top: 8px solid transparent;
	border-right: 0 !important;
	border-bottom: 0 !important;
	border-left: 0 !important;
	background: #3b3d40;
	color: var(--FontColor3);
	font-size: 1.4rem;
	text-align: right;
}

.social {
	-webkit-box-ordinal-group: 4;
	        order: 3;
}

.social &gt; a {
	padding: 5px;
	display: block;
	-webkit-transform: scale(1);
	transform: scale(1);
	transition: color 200ms ease-out, -webkit-transform 200ms ease-out;
	-webkit-transition: color 200ms ease-out, -webkit-transform 200ms ease-out;
	transition: color 200ms ease-out, transform 200ms ease-out;
	transition: color 200ms ease-out, transform 200ms ease-out, -webkit-transform 200ms ease-out;
	transition: color 200ms ease-out, transform 200ms ease-out,
		-webkit-transform 200ms ease-out;
	color: var(--FontColor3);
	font-size: 0.95rem;
}

.social &gt; a:hover {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	color: var(--FontColor2);
}

.copyright {
	font-size: 0.9rem;
	display: -webkit-box;
	display: flex;
	flex-basis: 100%;
	-webkit-box-ordinal-group: 5;
	        order: 4;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	        flex-direction: row;
}

.copyright &gt; a {
	padding: 0;
	-webkit-transition: color 200ms ease-out;
	transition: color 200ms ease-out;
	color: var(--FontColor3);
	text-decoration: none;
}

.copyright &gt; a::after {
    content: '';
    height: 8.5px;
    display: block;
    width: 100%;
    border-top: solid 1px var(--FontColor3);
}

.copyright &gt; a:hover::after {
	border-top: solid 1px var(--FontColor2);
}

.copyright &gt; a:hover {
	color: var(--FontColor2);
	text-decoration: none;
}
/* ------------ */
/* --- Home --- */
/* ------------ */
.promo {
	margin-top: -6px; /* smooth transition from the header */
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.15)), to(rgba(0, 0, 0, 0))),
		url(/images/home-background.jpg);
	background-image: linear-gradient(rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0)),
		url(/images/home-background.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	cursor: default;
}

.promo &gt; .internal {
	position: relative;
	border-width: 12px;
}

.promo__text--heading {
	margin-top: 0;
	color: var(--FontColor);
	font-size: 3.2rem;
	line-height: 1;
	-webkit-text-fill-color: inherit;
	margin-bottom: 0.1em;
}

.promo__text--heading2 {
	font-size: 1.6rem;
	font-weight: 400;
}
/* ------------- */
/* --- Lists --- */
/* ------------- */
.list {
	display: -webkit-box;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	text-align: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
}

.list__item {
	display: -webkit-box;
	display: flex;

	-webkit-box-flex: 1;

	        flex: 1 0 21%;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	        flex-direction: column;
	flex-wrap: nowrap;
	margin: 10px;

	color: var(--FontColor2);
	text-decoration: none;
}

.list__item--content {
	background-color: var(--HighContrast);
}

.list__item-box {
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	        flex-direction: column;
	width: 100%;
	height: 100%;
}

.list__content {
	height: 100%;
	margin-bottom: 15px;
}

.list__footer {
	-webkit-transition: color 250ms ease-out;
	transition: color 250ms ease-out;
	color: var(--FontColor2);
}

a.list__item:not(.button):hover,
a.list__item:not(.button):active,
a.list__item:not(.button):focus {
	text-decoration: none;
}

a.list__item:not(.button):hover .list__footer,
a.list__item:not(.button):active .list__footer,
a.list__item:not(.button):focus .list__footer {
	color: var(--HighContrast);
}

/* GAMES */
.list__header {
	margin: 0 auto 20px;
}

.list__image {
	width: 190px;
	height: 190px;
	padding: 2px;
	-webkit-transition: padding 250ms ease-out;
	transition: padding 250ms ease-out;
	border-radius: 150px;
}

.list__image svg {
	margin: auto;
	margin-top: 5%;
	max-width: 90%;
	max-height: 90%;
}

/** Tier 2 games */
.games &gt; .list__item:nth-child(n + 5) {
	-webkit-box-flex: 0;
	        flex: 0 0 15%;
	font-size: 0.8em;
}

.games &gt; .list__item:nth-child(n + 5) .list__image {
	width: 120px;
	height: 120px;
}

.games &gt; .list__item:nth-child(n + 5) .list__content {
	margin-bottom: 0;
}

.games &gt; .list__item:nth-child(n + 5) .list__footer {
	display: none;
}

/** Tier 3 games */
.games &gt; .list__item:nth-child(n + 17) .list__header {
	display: none;
}

.simulations .list__image,
.browsersources .list__image {
	width: 100px;
	height: 100px;
	margin: 0 auto;
	-webkit-transition: none;
	transition: none; /* Firefox bug */
}

.clickable {
	cursor: pointer;
}

a.list__item:hover .list__image,
.clickable:hover .list__image,
.hover .list__image {
	padding: 4px;
	background-color: #fff;
	background-image: none;
}

.list__content--heading,
.list_content h2 {
	margin: 0;
	padding: 0;
	color: var(--FontColor);
	font-size: 1.6em;
	-webkit-background-clip: initial;
	-webkit-text-fill-color: initial;
	background: none;
}

.list__footer--heading,
.list__footer h3 {
	margin: 0;
	padding: 0;
	font-size: 1.2em;
}

.step .step-item a {
	color: rgb(var(--MainColorMiddle));
}

.step .step-item.active ~ .step-item a {
	color: var(--FontColor3);
}

.step .step-item a::before {
	background-color: rgb(var(--MainColor));
}

.step .step-item.active a::before {
	border-color: rgb(var(--MainColorMiddle));
}

.step .step-item:not(:first-child):before {
	top: 0.4rem;
	background-color: rgb(var(--MainColorMiddle));
}

/* MAPPOOLS */
.mappools h2 {
	margin: 0;
	color: var(--FontColor);
}

.mappools h2 span {
	padding: 0 15px;
	border-bottom: 3px solid transparent;
	-o-border-image: linear-gradient(
		to right,
		rgb(var(--MainColor)) 0%,
		rgb(var(--MainColorLight)) 100%
	);
	-webkit-border-image: -webkit-gradient(
		linear,
		left top, right top,
		from(rgb(var(--MainColor))),
		to(rgb(var(--MainColorLight)))
	);
	-webkit-border-image: linear-gradient(
		to right,
		rgb(var(--MainColor)) 0%,
		rgb(var(--MainColorLight)) 100%
	);
	        border-image: -webkit-gradient(
		linear,
		left top, right top,
		from(rgb(var(--MainColor))),
		to(rgb(var(--MainColorLight)))
	);
	        border-image: linear-gradient(
		to right,
		rgb(var(--MainColor)) 0%,
		rgb(var(--MainColorLight)) 100%
	);
	border-image-slice: 1;
}

/* BESTOF */
.bo .number {
	color: var(--FontColor);
	font-size: 4.05rem;
	font-style: normal;
	font-weight: 900;
	text-align: center;
}

.bo .list__image {
	width: 190px;
	height: 190px;
	margin: 20px auto;
	-webkit-transition: none;
	transition: none; /* Firefox bug */
}

.bo .list__image a, .bo .list__image label {
	display: inherit;
	width: 100%;
	height: 100%;
	border-radius: 150px;
	overflow: hidden;
	contain: content;
}

.stars {
	width: 100%;
	height: 100%;
	border-radius: 150px;
	mask-repeat: no-repeat;
	mask-size: cover;
	mask-position: center;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: cover;
	-webkit-mask-position: center;
	/*transition: transform 250ms ease-out;*/ /* this creates a nice effect, however Firefox doesn't seem to be able to resize masks */
	-webkit-mask-image: var(--mask,  url(/images/masks/box.png));
	mask-image: var(--mask, url(/images/masks/box.png));
}

.bo1 .stars {
	--mask: url(/images/masks/bo1.png);
}

.bo2 .stars {
	--mask: url(/images/masks/bo2.png);
}

.bo3 .stars {
	--mask: url(/images/masks/bo3.png);
}

.bo4 .stars {
	--mask: url(/images/masks/bo4.png);
}

.bo5 .stars {
	--mask: url(/images/masks/bo5.png);
}

.bo6 .stars {
	--mask: url(/images/masks/bo6.png);
}

.bo7 .stars {
	--mask: url(/images/masks/bo7.png);
}

.bo9 .stars {
	--mask: url(/images/masks/bo9.png);
}

.bo .list__image a:hover .stars, .bo .list__image label:hover .stars, .bo .list__image input:checked + label .stars {
	background-color: var(--FontColor);
	background-image: none;
	/*transform: scale(1.05);*/ /* this creates a nice effect, however Firefox doesn't seem to be able to resize masks */
}

.bo .list__image input:checked:hover &gt; label .stars {
	background-image: -webkit-gradient(
			linear,
			left top, right top,
			from(rgb(var(--MainColor))),
			to(rgb(var(--MainColorLight)))
	);
	background-image: linear-gradient(
			to right,
			rgb(var(--MainColor)),
			rgb(var(--MainColorLight))
	);
	color: var(--HighContrast);
}

.bo .list__item:hover .list__image {
	background-color: initial;
	/*padding: 0;*/ /* this creates a nice effect, however Firefox doesn't seem to be able to resize masks */
}

/* ---[Lobby]--- */

.lobby {
	width: 45%;
	margin: 0 auto;
}

.lobby div:not(.column):not(.columns) {
	margin-bottom: 20px;
}

.lobby form {
	width: 100%;
}

/* ------------- */
/* --- Forms --- */
/* ------------- */
/* VOTEMETHOD */
.form--votemethod {
	width: 45%;
	margin: 10px auto;
	text-align: center;
}

.customButton ~ .customize {
	display: none;
}

.customButton:checked ~ .customize {
	display: block;
}

.form--votemethod label {
	width: 100%;
	margin: 5px 0;
}

.form--votemethod .customize {
	margin-top: 5px;
	padding: 10px 5px;
	border: 1px solid transparent;
}

.form--votemethod .customize .input-wrapper {
	display: inline-block;
	width: 100%;
	margin: 2px 0;
}

.form--votemethod .customize .input-wrapper .label-wrapper {
	width: 30%;
	margin-top: 0.5rem;
	margin-left: 15%;
	float: left;
	text-align: left;
}

.form--votemethod .customize .input-wrapper .value {
	width: 30%;
	margin-right: 15%;
	float: right;
}

.msgframe {
	color: var(--HighContrast);
}

.msgframe--warning {
	background-color: var(--Warning);
}

.msgframe--error {
	background-color: var(--Error);
}
/* ------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------- */
/* -------------------------------------------------- PREMIUM -------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------------------------------------------- */
.content.premium {
	height: 100%;
	padding: 5px;
	background-image: -webkit-gradient(linear, left top, right top, from(#181717), to(#3d3d3d));
	background-image: linear-gradient(to right, #181717, #3d3d3d);
	vertical-align: top;
}
/* NAVIGATION */
#user {
	height: 100%;
	background-color: #181717;
}
@media (min-width: 960px) {
	#user {
		border-top: 0 !important;
		border-bottom: 0 !important;
		border-left: 0 !important;
	}
}

.premiumnav__urls {
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	will-change: opacity;
}

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

.premiumnav__userdata .avatar {
	display: block;
	margin: 0 auto 15px auto;
	padding: 2px;
	border-radius: 100%;
	background-image: -webkit-gradient(
		linear,
		left top, right top,
		from(rgb(var(--MainColor))),
		to(rgb(var(--MainColorLight)))
	);
	background-image: linear-gradient(
		to right,
		rgb(var(--MainColor)),
		rgb(var(--MainColorLight))
	);
}

.avatar i.avatar-icon {
	padding: 0.2rem;
	border-radius: 50%;
	background: transparent;
	background-image: -webkit-gradient(
		linear,
		left top, right top,
		from(rgb(var(--MainColor))),
		to(rgb(var(--MainColorLight)))
	);
	background-image: linear-gradient(
		to right,
		rgb(var(--MainColor)),
		rgb(var(--MainColorLight))
	);
	font-size: 1.2rem;
}

.avatar i.avatar-icon.fab.fa-youtube {
	padding-top: 0.3rem;
	font-size: 1rem;
}

.premiumnav__userdata .avatar .avatar-presence {
	bottom: 9.64%;
	box-shadow: 0 0 0 0.1rem rgb(var(--MainColor));
}

.premiumnav__userdata .avatar.avatar-xxl {
	font-size: 3rem;
}

.premiumnav__userdata .avatar img {
	width: 100%;
	border-radius: 250px;
}

.premiumnav__userdata .name {
	color: var(--FontColor);
	font-size: 1.65rem;
	font-weight: 900;
	text-align: center;
}

.premiumnav__userdata .time {
	color: var(--FontColor3);
	font-size: 0.8rem;
	text-align: center;
}

.premiumnav__userdata.buttons {
	margin: 10px auto 0;

	text-align: center;
}

.premiumnav__urls {
	width: 85%;
	margin: 0 auto;
}

.premiumnav__urls a {
	display: -webkit-box;
	display: flex;
	position: relative;
	margin-top: 25px;

	border: 1px solid transparent;
	color: var(--FontColor);
	font-size: 30px;
	text-decoration: none;
	-o-border-image: linear-gradient(
		to right,
		rgb(var(--MainColor)) 0%,
		rgb(var(--MainColorLight)) 100%
	);
	-webkit-border-image: -webkit-gradient(
		linear,
		left top, right top,
		from(rgb(var(--MainColor))),
		to(rgb(var(--MainColorLight)))
	);
	-webkit-border-image: linear-gradient(
		to right,
		rgb(var(--MainColor)) 0%,
		rgb(var(--MainColorLight)) 100%
	);
	        border-image: -webkit-gradient(
		linear,
		left top, right top,
		from(rgb(var(--MainColor))),
		to(rgb(var(--MainColorLight)))
	);
	        border-image: linear-gradient(
		to right,
		rgb(var(--MainColor)) 0%,
		rgb(var(--MainColorLight)) 100%
	);
	border-image-slice: 1;
}

.premiumnav__urls a span {
	padding: 5px 25px;
	font-size: 1.3rem;
}

.premiumnav__urls a:hover,
.premiumnav__urls a.selected {
	border: 1px solid transparent;
	background-image: -webkit-gradient(
		linear,
		left top, right top,
		from(rgb(var(--MainColor))),
		to(rgb(var(--MainColorLight)))
	);
	background-image: linear-gradient(
		to right,
		rgb(var(--MainColor)),
		rgb(var(--MainColorLight))
	);
	-o-border-image: none;
	-webkit-border-image: none;
	        border-image: none;
	border-image-slice: 0;
}

.premiumnav__urls a i {
	display: -webkit-box;
	display: flex;
	min-width: 55px;
	height: 100%;
	color: var(--FontColor);
	font-size: 1rem;
}

.premiumnav__urls a:hover i,
.premiumnav__urls a.selected i {
	background-color: #181717;
	background-image: none;
}

/* Content */
.premium .premium_states {
	font-size: 36px;
	text-align: center;
}

.premium .premium_states a {
	margin: 0 25px;
	padding: 0 25px;
	border-bottom: 2px solid transparent;
	color: var(--FontColor3);
	text-decoration: none;
	-o-border-image: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.1) 100%);
	-webkit-border-image: -webkit-gradient(linear, left top, right top, from(#000), to(rgba(0, 0, 0, 0.1)));
	-webkit-border-image: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.1) 100%);
	        border-image: -webkit-gradient(linear, left top, right top, from(#000), to(rgba(0, 0, 0, 0.1)));
	        border-image: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.1) 100%);
	border-image-slice: 1;
}

.premium .premium_states a:hover,
.premium .premium_states a.selected {
	border-bottom: 2px solid transparent;
	background-image: -webkit-gradient(
		linear,
		left top, right top,
		color-stop(5%, rgb(var(--MainColor))),
		color-stop(95%, rgb(var(--MainColorLight)))
	);
	background-image: linear-gradient(
		to right,
		rgb(var(--MainColor)) 5%,
		rgb(var(--MainColorLight)) 95%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	-o-border-image: linear-gradient(to right, rgb(var(--MainColor)) 0);
	-webkit-border-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgb(var(--MainColor))));
	-webkit-border-image: linear-gradient(to right, rgb(var(--MainColor)) 0);
	        border-image: -webkit-gradient(linear, left top, right top, color-stop(0, rgb(var(--MainColor))));
	        border-image: linear-gradient(to right, rgb(var(--MainColor)) 0);
}

/* ---[PopupForm]---*/
.popupForm {
	position: absolute;

	top: 100px;
	left: 50%;
	width: 800px;
	margin-left: -400px;
	padding: 40px 10px 10px 10px;

	border: 4px solid transparent;
	background-color: #121b26;
	z-index: 10;
	-o-border-image: linear-gradient(
		to right,
		rgb(var(--MainColor)) 0%,
		rgb(var(--MainColorLight)) 100%
	);
	-webkit-border-image: -webkit-gradient(
		linear,
		left top, right top,
		from(rgb(var(--MainColor))),
		to(rgb(var(--MainColorLight)))
	);
	-webkit-border-image: linear-gradient(
		to right,
		rgb(var(--MainColor)) 0%,
		rgb(var(--MainColorLight)) 100%
	);
	        border-image: -webkit-gradient(
		linear,
		left top, right top,
		from(rgb(var(--MainColor))),
		to(rgb(var(--MainColorLight)))
	);
	        border-image: linear-gradient(
		to right,
		rgb(var(--MainColor)) 0%,
		rgb(var(--MainColorLight)) 100%
	);
	border-image-slice: 1;
}

.popupForm:before {
	position: absolute;
	top: -1000px;
	right: -1000px;
	bottom: -1000px;
	left: -1000px;
	background-color: rgba(0, 0, 0, 0.3);
	content: '';
	z-index: -1;
}

.popupForm:not(.show) {
	top: -5000px;
	opacity: 0;
}

.popupForm .closePopupForm {
	position: absolute;
	top: 5px;
	right: 5px;
	width: 24px;
	height: 24px;
	border-radius: 100px;
	background-image: -webkit-gradient(
		linear,
		left top, right top,
		from(rgb(var(--MainColor))),
		to(rgb(var(--MainColorLight)))
	);
	background-image: linear-gradient(
		to right,
		rgb(var(--MainColor)),
		rgb(var(--MainColorLight))
	);
	cursor: pointer;
}

.popupForm .closePopupForm i {
	width: 20px;
	height: 18px;
	margin-top: 2px;
	margin-left: 1px;
	padding-top: 2px;
	color: #fff;
}

.popupForm .closePopupForm:not(:hover) i {
	border-radius: 100px;
	background-color: #121b26;
}

.premium_bslist .bsTeam1 {
	width: 45%;
	float: left;
	text-align: left;
}

.premium_bslist .bsTeam2 {
	width: 45%;
	float: right;
	text-align: left;
}

.bslive_team1 {
	width: 45%;
	float: left;
}

.bslive_team2 {
	width: 45%;
	float: right;
}

.bslive_changesides {
	display: inline-block;
	width: 10%;
	margin-top: 100px;
	float: left;
	font-size: 40px;
	text-align: center;
	vertical-align: middle;
}

/* Ads */
.com {
	position: relative;
	width: 90%;
	margin: auto;
	text-align: center;
	overflow: hidden;
}

.com &gt; ins {
	height: 90px;
	margin: auto;
	text-align: center;
	contain: strict;
}

.com--top {
	margin-top: 15px;
}

.com--bottom {
}

.com--border {
	border: 1px solid;
	border-color: rgb(var(--MainColor));
}

.com--warning::after {
	position: absolute;
	top: 0;
	left: 0;
	padding-right: 20px;
	padding-left: 10px;
	background-color: rgb(var(--MainColor));
	font-size: 0.8rem;
	content: 'ADVERTISEMENT';
	-webkit-clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
	        clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
}

@media (max-width: 480px) {
	.adsbygoogle.mainad {
		width: 200px;
		height: 200px;
		margin: auto;
	}
}

/* Mascot */
.puzzled {
	position: relative;
	width: 100%;
	max-width: 488px;
	max-height: 725px;
	margin: auto;
	/*height: 100%;*/
	padding-top: 148.56%;
}

img.puzzled__image {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 92.58%; /*312*/
	height: 81.2%; /*406*/
}

img.puzzled__questionmark {
	position: absolute;

	-webkit-animation-name: questionmark;

	animation-name: questionmark;
	-webkit-animation-duration: 6s;
	animation-duration: 6s;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

@-webkit-keyframes questionmark {
	0%,
	100% {
		-webkit-transform: scale(0) var(--rotate);
		transform: scale(0) var(--rotate);
		opacity: 0;
	}

	10%,
	65% {
		opacity: 1;
	}

	75% {
		-webkit-transform: scale(1.2) var(--rotate);
		transform: scale(1.2) var(--rotate);
		opacity: 0;
	}
}

@keyframes questionmark {
	0%,
	100% {
		-webkit-transform: scale(0) var(--rotate);
		transform: scale(0) var(--rotate);
		opacity: 0;
	}

	10%,
	65% {
		opacity: 1;
	}

	75% {
		-webkit-transform: scale(1.2) var(--rotate);
		transform: scale(1.2) var(--rotate);
		opacity: 0;
	}
}

img.puzzled__questionmark--1 {
	--rotate: rotate(-19deg);
	top: 40%;
	left: 3%;
	width: 10%;
	-webkit-transform: var(--rotate);
	transform: var(--rotate);
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
}

img.puzzled__questionmark--2 {
	--rotate: rotate(-16deg);
	top: 0;
	left: 19%;
	width: 21%;
	-webkit-transform: var(--rotate);
	transform: var(--rotate);
	-webkit-animation-delay: 1.5s;
	animation-delay: 1.5s;
}

img.puzzled__questionmark--3 {
	--rotate: rotate(19deg);
	top: 3%;
	left: 65%;
	width: 15%;
	-webkit-transform: var(--rotate);
	transform: var(--rotate);
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
}

/* Strike */
.strike {
	display: block;
	text-align: center;
	white-space: nowrap;
	overflow: hidden;
}

.strike &gt; span,
.strike &gt; h2,
.strike &gt; h3 {
	display: inline-block;
	position: relative;
}

.strike &gt; span:before,
.strike &gt; span:after,
.strike &gt; h2:before,
.strike &gt; h2:after,
.strike &gt; h3:before,
.strike &gt; h3:after {
	position: absolute;
	top: 50%;
	width: 9999px;
	height: 1px;
	content: '';
}

.strike &gt; h1:before,
.strike &gt; h1:after {
	height: 6px;
}

.strike &gt; h2:before,
.strike &gt; h2:after {
	height: 4px;
}

.strike &gt; h3:before,
.strike &gt; h3:after {
	height: 3px;
}

.strike &gt; span:before,
.strike &gt; h2:before,
.strike &gt; h3:before {
	right: 100%;
	margin-right: 15px;
	background-image: -webkit-gradient(
		linear,
		left top, right top,
		from(rgb(var(--MainColor))),
		to(rgb(var(--MainColorMiddle)))
	);
	background-image: linear-gradient(
		to right,
		rgb(var(--MainColor)) 0%,
		rgb(var(--MainColorMiddle)) 100%
	);
	background-image: linear-gradient(
		to right,
		rgb(var(--MainColor)),
		rgb(var(--MainColorMiddle))
	);
}

.strike &gt; span:after,
.strike &gt; h2:after,
.strike &gt; h3:after {
	left: 100%;
	margin-left: 15px;
	background-image: -webkit-gradient(
		linear,
		left top, right top,
		from(rgb(var(--MainColorMiddle))),
		to(rgb(var(--MainColorLight)))
	);
	background-image: linear-gradient(
		to right,
		rgb(var(--MainColorMiddle)) 0%,
		rgb(var(--MainColorLight)) 100%
	);
	background-image: linear-gradient(
		to right,
		rgb(var(--MainColorMiddle)),
		rgb(var(--MainColorLight))
	);
}

/** Ads increase footer */
ins + iframe + ins {
	display: none;
}</pre></body></html>