﻿@charset "utf-8";
@import "validation.css";
@import "notice.css";
@import "ui.css";

:root {
	--droplist-header-bg: #3f4f56;
	--equip-animation-duration: 200ms;
}

body {
	margin: 0px;
	padding: 0px;
	font-family: "Open Sans", Arial, Helvetica, sans-serif;
	font-size: 14px;
	color: #16130f;
	min-width: 1000px;
	background: url(../images/top-fon-bg.webp) center -50px no-repeat, url(../images/bottom-fon-bg.webp) bottom center no-repeat, url(../images/repeat-fon-bg.webp) center repeat-y;
	background-color: #000104;
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	font-optical-sizing: auto;
	font-style: normal;
	font-variation-settings:
		"wdth" 100;
}

body.guides-page {
	background: url(../images/top-fon-bg-guide.webp) center -50px no-repeat, url(../images/bottom-fon-bg-guide2.webp) calc(50% - -207px) bottom no-repeat, url(../images/repeat-fon-bg-guide.webp) center repeat-y;
	background-color: #000104;
}

body * {

	box-sizing: border-box;
}

.margin-bottom--10 {
	margin-bottom: 10px;
}

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

h1,
h2,
h3 {
	margin: 0px;
	padding: 0px;
	font-weight: 400;
}

h3 {
	padding: 0px 0px 20px 0px;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 13px;
	color: #16130f;
}

ul {
	padding-top: 10px;
	padding-left: 20px;
	line-height: 140%;
}

p,
ol,
ul {
	margin-top: 0px;
}

p,
ol {
	line-height: 180%;
}


a {
	color: #cb546e;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

a img {
	border: none;
}


img.alignleft {
	float: left;
}

img.alignright {
	float: right;
}

img.aligncenter {
	margin: 0px auto;
}

hr {
	display: none;
}

select {
	padding: 0;
	margin: 0;
	border: none;

}

/** WRAPPER */
#wrapper {
	overflow: hidden;
	flex-grow: 2;
}


.container {
	display: flex;
	max-width: 1240px;
	margin: 0px auto;
}

.clearfix {
	clear: both;
}

/** HEADER */
#header {
	overflow: hidden;
}

/** LOGO */
#logo-wrapper {
	height: calc(434px - 50px);
	position: relative;
	max-width: 1240px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
}

#logo {
	width: 728px;
	background: url(../images/new-entropy-logo-min.png) no-repeat center top;
	height: 403px;
	background-size: contain;
	filter: contrast(1.3) drop-shadow(2px 4px 20px rgba(0, 0, 0, 0.463)) brightness(1.2) hue-rotate(430deg);
	max-width: 100%;
	margin-top: auto;
	position: relative;
    bottom: -156px;
	animation: hue-spin 12s linear infinite;
}

@keyframes hue-spin {
	0% { filter: contrast(1.3) drop-shadow(2px 4px 20px rgba(0, 0, 0, 0.463)) brightness(1.2) hue-rotate(430deg); }
	10% { filter: contrast(1.3) drop-shadow(2px 4px 20px rgba(0, 0, 0, 0.463)) brightness(1.1) hue-rotate(400deg); }
	20% { filter: contrast(1.3) drop-shadow(2px 4px 20px rgba(0, 0, 0, 0.463)) brightness(1.0) hue-rotate(370deg); }
	30% { filter: contrast(1.3) drop-shadow(2px 4px 20px rgba(0, 0, 0, 0.463)) brightness(0.9) hue-rotate(330deg); }
	40% { filter: contrast(1.3) drop-shadow(2px 4px 20px rgba(0, 0, 0, 0.463)) brightness(1.0) hue-rotate(300deg); }
	50% { filter: contrast(1.3) drop-shadow(2px 4px 20px rgba(0, 0, 0, 0.463)) brightness(1.1) hue-rotate(270deg); }
	60% { filter: contrast(1.3) drop-shadow(2px 4px 20px rgba(0, 0, 0, 0.463)) brightness(1.2) hue-rotate(300deg); }
	70% { filter: contrast(1.3) drop-shadow(2px 4px 20px rgba(0, 0, 0, 0.463)) brightness(1.1) hue-rotate(330deg); }
	80% { filter: contrast(1.3) drop-shadow(2px 4px 20px rgba(0, 0, 0, 0.463)) brightness(1.0) hue-rotate(370deg); }
	90% { filter: contrast(1.3) drop-shadow(2px 4px 20px rgba(0, 0, 0, 0.463)) brightness(0.9) hue-rotate(400deg); }
	100% { filter: contrast(1.3) drop-shadow(2px 4px 20px rgba(0, 0, 0, 0.463)) brightness(1.2) hue-rotate(430deg); }
}

/* Optional: pause on hover */
.rainbow:hover {
  animation-play-state: paused;
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .rainbow { animation: none; }
}

#logo h1,
#logo p {
	margin: 0px;
	text-align: center;
	text-transform: uppercase;
	line-height: 100px;
	padding-top: 30px;
	padding-left: 300px;
	font-size: 12px;
}

#logo h1 a {
	display: block;
	letter-spacing: 1px;
	font-size: 12px;
}

#logo p {
	padding: 5px 0px 0px 300px;
	letter-spacing: 1px;
	font-size: 12px;
	color: #6b6565;
}

/** MENU */
#menu-wrapper {
	height: 88px;
}

#menu {
	height: 90px;
	position: relative;
}

#menu ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	line-height: normal;
	text-align: center;
}

#menu li {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#menu li a>div {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border: 1px solid #687c7c;
	border-radius: 6px;
	margin-bottom: 10px;
	background-color: #101935a6;
}

#menu li a>div>img {
	width: 34px;
	filter: drop-shadow(1px 1px 6px black);
}

.nav-separator {
	margin: auto 5px;
	width: 1px;
	height: 60px;
	background: url(../images/menu-border.png) no-repeat;
}

#menu a {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
	text-transform: uppercase;
	font-size: 12px;
	color: #eaeaea;
	font-weight: bold;
}

#menu a:hover {
	text-decoration: underline;
	filter: brightness(1.2);
}

#menu a span {
	filter: drop-shadow(0px 0px 6px black);
}

#menu nav {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	width: 520px;
}

#menu nav ul {
	justify-content: end;
	width: 100%;
	padding: 0;
	list-style: none;
	text-align: center;
	white-space: nowrap;
	display: flex;
	gap: 14px;
}

#menu nav ul.secondnav {
	justify-content: start;
}

#menu .effect li {
	display: block;
}

.nav li {
	position: relative;
}

.nav li li a {
	background: rgba(0, 0, 0, 0.57);
	padding-right: 0px !important;
	border-bottom: #000 1px solid;
	text-decoration: none;
	width: 150px;
	padding-top: 6px;
	padding-bottom: 6px;
}

.nav ul {
	position: absolute;
	left: -99999em;
	margin-top: 70px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	box-shadow: inset 0 0 20px rgba(255, 255, 255, .05), 0 0 15px rgba(0, 0, 0, .7);
	border: #000 1px solid;
}

.nav>li:hover>ul {
	left: auto;
	padding-top: 5px;
	min-width: 100%;
}

.nav>li li:hover>ul {
	left: 100%;
}

.nav>li:hover>a:first-child:nth-last-child(2):before {
	margin-top: -5px;
}

.nav li li>a:first-child:nth-last-child(2):before {
	margin-top: -5px;
}

.nav li li:hover>a:first-child:nth-last-child(2):before {
	right: 10px;
}


#page-bgbtm {
	padding: 10px 0px 165px 0px;
}



.two-column1 #page-bgbtm {
	background-image: none;
	position: relative;
}




/** CONTENT */
#content {
	min-height: 1300px;
	width: 100%;
	max-width: 572px;
	position: relative;
	padding: 5px;
}

.guides-page #content {
	max-width: calc(572px + 260px);
	padding-bottom: 30px;
}

.two-column2 #content {
	float: right;
}

#wide-content {
	min-height: 1300px;
}

#wide-content .entry {
	background: url(../images/wide-content-shadow.png) no-repeat left top;
}

/** SIDEBAR */
#sidebar {
	float: right;
	width: 335px;
	position: relative;
	padding-bottom: 200px;
}

.two-column2 #sidebar {
	float: left;
}

/** FOOTER */
#footer {
	display: flex;
	align-items: end;
	padding: 20px;
	position: relative;
	flex-shrink: 0;
}

#footer p {
	margin: 0px;
	padding: 0px 0px 0px 0px;
	text-align: center;
}



/** COPYRIGHT */
#copyright {
	overflow: hidden;
	width: 910px;
	margin: 0px auto;
	padding: 20px 0px 0px 0px;
}

#copyright p {
	text-shadow: 1px 1px 1px rgba(0, 0, 0, .5);
	color: #999999;
}

/** FOOTER CONTENT */
#footer-content {
	overflow: hidden;
	width: 910px;
	margin: 0px auto;
	padding: 0px 0px 20px 0px;
}

#footer-content h2 {
	padding: 0px 0px 25px 0px;
	letter-spacing: 1px;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 1);
	text-transform: uppercase;
	font-size: 12px;
	color: #fef6fc;
}

#footer-content #column1 {
	float: left;
	width: 270px;
	margin-right: 50px;
}

#footer-content #column2 {
	float: left;
	width: 270px;
}

#footer-content #column3 {
	float: right;
	width: 270px;
}

#loading {
	background-image: url(../images/l_bg.png);
	border-radius: 0 0 4px 4px;
	color: #fff;
	display: none;
	position: fixed;
	top: 0;
	left: 48%;
	z-index: 1000;
	padding: 6px;
}

ul.style2 {
	margin: 0px;
	padding: 0px;
	list-style: square;
}

ul.style2 li {
	padding: 10px 0px 15px 0px;
	background: url(../images/divider2-bg.png) repeat-x left top;
	line-height: 100%;
}

ul.style2 a {
	color: #16130f;
	text-decoration: none;
}

ul.style2 .first {
	padding-top: 0px;
	background: none;
}

ul.style3 {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

ul.style3 li {
	padding: 10px 0px 15px 0px;
	background: url(../images/divider2-bg.png) repeat-x left top;
	line-height: 100%;
}

ul.style3 a {
	color: #16130f;
	text-decoration: none;
}

ul.style3 .first {
	padding-top: 0px;
	background: none;
}

/** LIST STYLE 4 */
ul.style4 {
	margin: 0px;
	padding: 0px;
	list-style: none;
}

ul.style4 li {
	padding: 5px 0px 5px 0px;
	background: url(../images/divider4-bg.png) repeat-x left top;
}

ul.style4 a {
	color: #16130f;
}

ul.style4 .first {
	padding-top: 0px;
	background: none;
}

ul.style4 span {
	float: right;
}

/** TITLE 1 */
.title1 {
	position: relative;
	/* background: url(../images/title1-bg.png) no-repeat left top; */
}

.title1 h1,
.title1 h2 {
	padding: 30px 10px 20px;
	text-align: center;
	letter-spacing: 1px;
	text-shadow: 2px 1px 0px rgba(0, 0, 0, .5);
	font-size: 30px;
	color: #b5d1dd;
}

/** TITLE 2 */
.title2 {
	position: relative;
	width: 370px;
	height: 150px;
	background: url(../images/title2-bg.png) no-repeat left top;
	margin-top: -10px;
}

.title2 h2 {
	padding: 67px 0px 0px 60px;
	letter-spacing: 1px;
	text-shadow: 2px 1px 0px rgba(0, 0, 0, .5);
	text-transform: uppercase;
	font-size: 12px;
	color: #FFFFFF;
}

/** BOX STYLE 1 */
.box-style1 {
	overflow: hidden;
}

.box-style1 .title {
	padding: 0px 10px 20px;
	font-size: 23px;
	color: #cac9c9;
	text-align: center;
}


.box-style2 {
	overflow: hidden;
}

/** BOX STYLE 2 */
.box-style2 .entry {
	padding: 0px 50px 0px 40px;
}

.box-style2 h3 {
	padding: 0px 0px 20px 0px;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 13px;
	color: #16130f;
}

/** BOX STYLE 3 */
.box-style3 .entry {
	margin-top: -20px;
	padding: 0px 40px 0px 50px;
}

/** BOX STYLE 4 */
.box-style4 {
	overflow: hidden;
}

.box-style4 .title {
	padding: 0px 30px 20px 40px;
	text-shadow: 2px 1px 0px rgba(255, 255, 255, .5);
	text-transform: uppercase;
	font-size: 23px;
	color: #2f2a22;
}

.box-style4 .entry {
	padding: 30px 20px 0px 30px;
	background: url(../images/box-content-shadow.png) no-repeat left top;
}

.avatar_frame {
	padding: 3px;
	border: 1px solid #333333;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px;
}

/** BUTTON STYLE 1 */
.button-style {
	border: none;
	cursor: pointer;
	position: relative;
	display: block;
	width: 222px;
	height: 71px;
	left: -10px;
	background: url(../images/button-bg.png) no-repeat left bottom;
	line-height: 71px;
	letter-spacing: 1px;
	text-align: center;
	text-decoration: none;
	text-shadow: 2px 1px 0px rgba(0, 0, 0, .5);
	text-transform: uppercase;
	font-size: 12px;
	color: #FFFFFF;
}

/** BUTTON STYLE 2 */
.button-style2 {
	border: none;
	position: relative;
	width: 182px;
	height: 71px;
	left: -10px;
	background: url(../images/banner-buttong-bg.png) no-repeat left bottom;
	line-height: 71px;
	letter-spacing: 1px;
	text-align: center;
	text-decoration: none;
	text-shadow: 2px 1px 0px rgba(0, 0, 0, .5);
	text-transform: uppercase;
	font-size: 12px;
	color: #FFFFFF;
	cursor: pointer;
}

/** TWO COLUMNS */
.two-column {
	overflow: hidden;
	margin-top: -10px;
	padding: 0px 30px 0px 50px;
}


/** META STYLE 1 */
.meta-bg {
	overflow: hidden;
	position: relative;
	width: 542px;
	height: 50px;
	padding: 10px 45px 0px 35px;
	left: -10px;
}

.meta p {
	text-transform: uppercase;
}

.meta .tags {
	float: left;
	padding: 0px 0px 3px 30px;
	background: url(../images/meta-icons-03.png) no-repeat left 0px;
}

.meta .links {
	float: right;
}

.meta .more {
	padding: 0px 10px 3px 30px;
	background: url(../images/meta-icons-01.png) no-repeat left 0px;
}

.meta .comments {
	padding: 0px 0px 3px 30px;
	background: url(../images/meta-icons-02.png) no-repeat left 0px;
}

.meta .divider {
	height: 22px;
	padding: 0px 15px;
	background: url(../images/meta-divider-bg.jpg) repeat-y center top;
}

.meta a {
	text-decoration: underline;
}

/** BANNER */
#banner {
	overflow: hidden;
	width: 964px;
	height: 290px;
	margin: 0px auto;
	background: url(../images/banner-wrapper-bg.jpg) no-repeat left top;
	text-shadow: 1px 1px 0px rgba(0, 0, 0, 1);
	text-transform: uppercase;
}

#banner h2 {
	padding: 52px 0px 10px 0px;
	letter-spacing: 3px;
	line-height: 145%;
	font-size: 20px;
	color: #FFFFFF;
}

#banner p {
	letter-spacing: 1px;
	line-height: 70%;
	color: #837e7e;
}

#banner #col1 {
	width: 617px;
	height: 240px;
	overflow: hidden;
	position: relative;
	float: left;
	margin: 25px 0px 0px 25px;
}

#banner #col1 ol,
#banner #col1 li {
	list-style: none;
	margin: 0px;
	padding: 0px;
}

#banner #col1 .items {
	width: 2000em;
	position: absolute;
}

#banner #col1 .items .item {
	float: left;
}

#banner #col1 .items .item span {
	position: absolute;
	width: 617px;
	height: 240px;
	z-index: 11;
}

#banner #col1 .promRoundBox {
	position: absolute;
	width: 617px;
	height: 240px;
	background: url('../images/misc/main_prom_bg.png') no-repeat;
	z-index: 10;
}

#banner #col1 .rollingIconWrap {
	position: absolute;
	right: 0;
	z-index: 12;
}

#banner #col1 .rollingIconWrap .bgFirst {
	float: left;
	width: 53px;
	height: 40px;
	background: url('../images/misc/main_prom_rollTop.png') no-repeat;
}

#banner #col1 .rollingIconWrap .rollingIcon {
	float: left;
	height: 30px;
	padding: 10px 15px 0 0;
	background: url('../images/misc/main_prom_rollMiddle.png') no-repeat right top;
	overflow: hidden;
}

#banner #col1 .rollingIconWrap .rollingIcon button {
	float: left;
	width: 19px;
	height: 21px;
	margin-right: 3px;
	padding: 0;
	border: 0;
	cursor: pointer;
	background: url('../images/misc/main_prom_icon_off.gif') no-repeat
}

#banner #col1 .rollingIconWrap .rollingIcon button.active {
	background-image: url('../images/misc/main_prom_icon_on.gif')
}

#banner #col2 {
	width: 260px;
	margin: 15px 0 0 694px;
	color: white;
	font-size: 12px;
}

#banner #col2 p span {
	float: right;
	color: #837E7E;
	padding-right: 20px;
}

#banner #col2 p a span {
	text-decoration: underline;
}

#banner #col2 img {
	opacity: 0.5;
	filter: alpha(opacity=50);
	-webkit-transition: all 0.5s ease;
	vertical-align: middle;
}

#banner #col2 img:hover {
	opacity: 0.9;
	filter: alpha(opacity=90);
}

#banner #col2 .info-button {
	width: 250px;
	padding-bottom: 15px;
	margin: 0;
}

#banner #col2 .info-button td {
	cursor: pointer;
	width: 65px;
	height: 100px;
	text-align: center;
	vertical-align: bottom;
	font-size: 16px;
	opacity: 0.3;
	filter: alpha(opacity=30);
}

#banner #col2 .info-button #sButton-0 {
	background: url('../images/misc/server5.png') transparent center top no-repeat;
}

#banner #col2 .info-button #sButton-1 {
	background: url('../images/misc/server4.png') transparent center top no-repeat;
}

#banner #col2 .info-button #sButton-2 {
	background: url('../images/misc/server3.png') transparent center top no-repeat;
}

#banner #col2 .info-button #sButton-3 {
	background: url('../images/misc/server2.png') transparent center top no-repeat;
}

#banner #col2 .info-button #sButton-4 {
	background: url('../images/misc/server1.png') transparent center top no-repeat;
}

#banner #col2 .info-button #sButton-5 {
	background: url('../images/misc/server3.png') transparent center top no-repeat;
}

#tooltip {
	position: absolute;
	z-index: 11001;
	border: 1px solid #111;
	background-color: rgb(0, 0, 0, 0.9);
	padding: 5px;
	font: normal 11px Tahoma, Helvetica, sans-serif;
	text-align: center;
	color: #fff;
    max-width: 400px;
    min-width: 200px;
}

#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;
}

#buy_windows,
#add_to_card_windows,
#select_server,
#auction_bet {
	width: 404px;
	padding-bottom: 2px;
	display: none;
	background: #FFF;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7);
	-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
	-moz-box-shadow: 0 0px 4px rgba(0, 0, 0, 0.7);
	z-index: 9999;
}

#item_filter_overlay {
	position: absolute;
	height: 400px;
	width: 300px;
	display: none;
	z-index: 9999;
}

#item_filter {
	width: 300px;
	height: 710px;
	padding-bottom: 2px;
	background: #FFF;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7);
	-webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
	-moz-box-shadow: 0 0px 4px rgba(0, 0, 0, 0.7);
}

.item_filter_content {
	height: 600px;
	width: 285px;
	margin: 15px;
	overflow: auto;
}

.modal-header {
	background: url(../images/hd-bg.png);
	padding: 18px 18px 14px 18px;
	border-bottom: 1px solid #CCC;
	border-top-left-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-webkit-border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-right-radius: 5px;
}

.modal-header h2 {
	color: #444;
	font-size: 2em;
	font-weight: 700;
	margin-bottom: 3px;
	text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}

.modal-header2 {
	background: url(../images/hd-bg.png);
	padding: 18px 18px 14px 18px;
	border-bottom: 1px solid #CCC;
	border-top-left-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-webkit-border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	-moz-border-radius-topright: 5px;
	-webkit-border-top-right-radius: 5px;
	cursor: move;
}

.modal-header2 h2 {
	color: #444;
	font-size: 2em;
	font-weight: 700;
	margin-bottom: 3px;
	text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.5);
}

.close {
	position: absolute;
	top: 12px;
	right: 12px;
	display: block;
	width: 14px;
	height: 14px;
	background: url(../images/close.png);
	z-index: 2;
}

.form {
	margin: 0px auto;
}

.form input:not([type="checkbox"]):not([type="number"]),
.form select,
.form textarea {
	padding: 7px 9px;
	margin: 2px 0;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-khtml-border-radius: 4px;
	border-radius: 4px;
	box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
	width: 200px;
}

.form select {
	width: 216px;
}

.right {
	float: right;
}

.left {
	float: left;
}

.fixed {
	position: fixed;
	top: 50px;
	left: 50px;
}

.QapTcha {
	width: 215px;
}

.QapTcha .clr {
	clear: both
}

.QapTcha .bgSlider {
	width: 215px;
	height: 30px;
	float: left;
	border: 1px solid #CCC;
	background-color: #FFF;
	box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
}

.QapTcha .slider {
	width: 30px;
	height: 30px;
	background: transparent url('../images/bg_draggable_qaptcha.jpg') no-repeat;
	background-size: 30px 30px;
	cursor: e-resize;
	position: relative;
	top: 0;
	left: 0
}

.QapTcha .txtStatus {
	width: 215px;
	margin-top: 7px;
	text-align: left;
	color: #bb2828;
	font-size: 10px;
	clear: both;
	padding-bottom: 10px;
}

.QapTcha .dropSuccess {
	color: #4e8b37
}

.QapTcha .dropError {
	color: #bb2828
}

/* RANKING */
.ranking-table {
	text-align: center;
	width: 100%;
	border-collapse: collapse;
	line-height: 26px;
	background: url(../images/divider4-bg.png) repeat-x left top;
}

.ranking-table th {
	background: url(../images/divider4-bg.png) repeat-x left bottom
}

.ranking-table th.end {
	border-right: 0
}

.ranking-table td {
	background: url(../images/divider4-bg.png) repeat-x left bottom
}

.ranking-table td.end {
	border-right: 0
}


/* .ranking-table tbody tr:hover{
background-color: rgb(255, 255, 255);
background-color: rgba(255, 255, 255, 0.4);
} */

.i_note,
.s_note,
.w_note,
.e_note {
	border: 1px solid;
	margin: 10px 0px;
	padding: 15px 10px 15px 40px;
	background-repeat: no-repeat;
	-moz-border-radius: .5em;
	-webkit-border-radius: .5em;
	border-radius: .5em;
	text-align: left;
}

.i_note {
	color: #00529B;
	background-color: #BDE5F8;
	background-image: url('../images/info.png');
	background-position: left center;
}

.s_note {
	color: #4F8A10;
	background-color: #E8EFD3;
	background-image: url('../images/success.png');
	background-position: left center;
}

.w_note {
	color: #9F6000;
	background-color: #FEEFB3;
	background-image: url('../images/warning.png');
	background-position: left center;
}

.e_note {
	color: #D8000C;
	background-color: #F7E0CC;
	background-image: url('../images/error.png');
	background-position: left center;
}

.buttonn {
	float: right;
	background: #660000;
	border: none;
	width: auto;
	overflow: visible;
	font-size: 1.4em;
	color: #FFF;
	padding: 7px 10px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	font-weight: bold;
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

.btn-fld {
	width: 254px;
	overflow: hidden;
	padding: 12px 20px 12px 130px;
}

.tabrow {
	text-align: center;
	list-style: none;
	margin: 0px 0 10px;
	padding: 0;
	line-height: 24px;
	height: 26px;
	overflow: hidden;
	font-size: 12px;
	position: relative;
}

.tabrow li {
	background: #fbb450;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #fbb450), color-stop(1, #a34221));
	background: -moz-linear-gradient(top, #fbb450 5%, #a34221 100%);
	background: -webkit-linear-gradient(top, #fbb450 5%, #a34221 100%);
	background: -o-linear-gradient(top, #fbb450 5%, #a34221 100%);
	background: -ms-linear-gradient(top, #fbb450 5%, #a34221 100%);
	background: linear-gradient(to bottom, #302F2D 5%, #222222 100%);
	display: inline-block;
	position: relative;
	z-index: 0;
	border-top-left-radius: 6px;
	border-top-right-radius: 6px;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4), inset 0 1px 0 #3C3C3C;
	text-shadow: 0 1px #000;
	margin: 0 -5px;
	padding: 0 20px;
	border: 1px solid #363434;
}

.tabrow a {
	color: #ffffff;
	text-decoration: none;
}

.tabrow li.selected {
	filter: hue-rotate(204deg);
	color: #ffffff;
	z-index: 2;
	-moz-box-shadow: inset 0px 1px 0px 0px #f0a899;
	-webkit-box-shadow: inset 0px 1px 0px 0px #f0a899;
	box-shadow: inset 0px 1px 0px 0px #f0a899;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #915044), color-stop(1, #552a22));
	background: -moz-linear-gradient(center top, #915044 5%, #552a22 100%);
	background-color: #915044;
	-webkit-border-top-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topright: 3px;
	border-top-right-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius-bottomright: 3px;
	border-bottom-right-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-bottom-left-radius: 3px;
	font-size: 14px;
	color: #ffffff;
	text-shadow: 1px 1px 0px #000000;
	border: 1px solid #613333;
}

.tabrow:before {
	position: absolute;
	content: " ";
	width: 80%;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	border-bottom: 1px solid #1d3c56;
	z-index: 1;
}

.tabrow li:before,
.tabrow li:after {
	border: 1px solid #613333;
	position: absolute;
	bottom: -1px;
	width: 5px;
	height: 5px;
	content: " ";
}

.tabrow li:before {
	left: -6px;
	border-bottom-right-radius: 6px;
	border-width: 0 1px 1px 0;
	box-shadow: 2px 2px 0 #232323;
}

.tabrow li:after {
	right: -6px;
	border-bottom-left-radius: 6px;
	border-width: 0 0 1px 1px;
	box-shadow: -2px 2px 0 #232323;
}

.tabrow li.selected:before {
	box-shadow: 2px 2px 0 #5c2f26;
}

.tabrow li.selected:after {
	box-shadow: -2px 2px 0 #5c2f26;
}

.rankings {
	display: none;
}

.custom_button {
	cursor: pointer;
	filter: hue-rotate(204deg);
	-moz-box-shadow: inset 0px 1px 0px 0px #80615c;
	-webkit-box-shadow: inset 0px 1px 0px 0px #80615c;
	box-shadow: inset 0px 1px 0px 0px #80615c;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #6d3d34), color-stop(1, #4f2922));
	background: -moz-linear-gradient(center top, #6d3d34 5%, #4f2922 100%);
	background-color: #6d3d34;
	-webkit-border-top-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	border-top-left-radius: 3px;
	-webkit-border-top-right-radius: 3px;
	-moz-border-radius-topright: 3px;
	border-top-right-radius: 3px;
	-webkit-border-bottom-right-radius: 3px;
	-moz-border-radius-bottomright: 3px;
	border-bottom-right-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-bottom-left-radius: 3px;
	text-indent: 0;
	border: 1px solid #5c3129;
	display: inline-block;
	color: #ffffff;
	font-size: 12px;
	font-weight: normal;
	font-style: normal;
	height: 25px;
	line-height: 25px;
	padding-left: 10px;
	padding-right: 10px;
	text-decoration: none;
	text-align: center;
	text-shadow: 1px 1px 0px #050005;
}

.custom_button:hover {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #4f2922), color-stop(1, #6d3d34));
	background: -moz-linear-gradient(center top, #4f2922 5%, #6d3d34 100%);
	background-color: #4f2922;
	text-decoration: none;
}

.custom_button:active {
	position: relative;
	top: 0px;
}

#ucp_info {
	width: 100%;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.38);
	-moz-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.38);
	box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.38);
	border-bottom: 1px solid rgba(255, 255, 255, 0.07);
	font-size: 16px;
	padding: 10px;
}

#ucp_info>div {
	display: flex;
}

#ucp_info>div>div {
	flex-shrink: 0;
}

#ucp_info>div>div:nth-child(1) {
	width: 5%;
}

#ucp_info>div>div:nth-child(2) {
	width: 45%;
}

#ucp_info>div>div:nth-child(3) {
	width: 50%;
	word-wrap: break-word;
}

#ucp_info .full {
	width: 100%;
}

*#ucp_info .half table {
	margin-left: auto;
	margin-right: auto;
}

#ucp_info td {
	padding: 2px;
}

#ucp_info .half:first-child {
	border-right: 1px solid rgb(223, 221, 221);
}

#character-info {
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 0px;
}

#character-info ul {
	list-style-type: none;
	display: inline;
	margin: 0px;
	padding: 0px;
}

#character-info ul li {
	float: left;
	padding: 0px;
	margin: 0px;
}

#character-info tbody tr {
	background: none;
	border: none;
}

#character-info tbody tr td {
	width: 50%;
	margin: 0 auto;
	padding: 5px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	background: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(0, 0, 0, 0.15);
	-webkit-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.38);
	-moz-box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.38);
	box-shadow: 0 8px 6px -6px rgba(0, 0, 0, 0.38);
}

#character-info tbody tr td a {
	font-size: 14px;
	font-weight: bold;
	color: #323340;
}

#character-info div {
	padding-left: 10px;
}

#small_menu ul {
	margin: 0px;
	padding: 0px;
}

#small_menu li {
	list-style: none;
}

ul#vote-options {
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	margin: 0;
	padding: 0;
	margin-bottom: 10px;
}

ul#vote-options {
	list-style: none;
}

ul#vote-options h5 {
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	margin: 0;
	padding: 0;
}

#vote-options {
	color: #555;
	font-size: auto;
	line-height: auto;
	list-style-type: none;
	margin: 0;
}

#vote-options li {
	display: flex;
	align-items: center;
	border-radius: 5px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	padding: 10px;
	background: rgba(255, 255, 255, 0.6);
}

#vote-options li img {
	width: 75px;
	height: 45px;
}

#vote-options li button {
	border: 1px solid #999;
	line-height: 28px;
	margin: 6px 0;
	margin-left: auto;
	font-size: 15px;
	padding: 2px 8px;
	height: auto;
}

#vote-options li button:not([disabled]) {
	cursor: pointer;
}

#vote-options li .timer-left {
	line-height: 28px;
	margin: 6px 0;
	margin-left: auto;
	color: #272727;
	font-weight: bold;
	font-size: 16px;
}

#vote-options li h5 {
	color: #444;
	font-weight: bolder;
	font-size: 24px;
	border-left: 1px solid #453129;
	padding-left: 10px;
	margin-left: 10px;
}

ul#paypal-options {
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	margin: 0;
	padding: 0;
}

ul#paypal-options {
	list-style: none;
}

ul#paypal-options h4 {
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	margin: 0;
	padding: 0;
}

ul#paypal-options h3 {
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	margin: 0;
	padding: 0;
}

#paypal-options {
	color: #555;
	font-size: auto;
	line-height: auto;
	list-style-type: none;
	margin: 0;
}

#paypal-options li {
	border-radius: 5px;
	line-height: 45px;
	height: 45px;
	border: 1px solid rgba(0, 0, 0, 0.15);
	margin-top: 10px;
	padding: 10px;
	background: rgba(255, 255, 255, 0.6);
	display: flex;
	align-items: center;
	gap: 10px;
}

#paypal-options li h4 {
	color: #444;
	font-weight: bolder;
	font-size: 22px;
	margin-right: auto;
}

#paypal-options li h3 {
	color: #444;
	font-size: 18px;
}

#helm,
#transmog_helm {
	position: absolute;
	left: 71px;
	top: 1px;
	width: 58px;
	height: 69px;
}

#wings,
#transmog_wings {
	position: absolute;
	left: 268px;
	top: 2px;
	width: 127px;
	height: 112px;
}

#pendant {
	position: absolute;
	left: 229px;
	top: 24px;
	width: 31px;
	height: 31px;
}

#sword,
#transmog_left_weapon {
	position: absolute;
	left: 3px;
	top: 186px;
	width: 71px;
	height: 132px;
}

#armor,
#transmog_armor {
	position: absolute;
	left: 34px;
	top: 76px;
	width: 84px;
	height: 100px;
}

#shield,
#transmog_right_weapon {
	position: absolute;
	left: 323px;
	top: 186px;
	width: 71px;
	height: 132px;
}

#gloves,
#transmog_gloves {
	position: absolute;
	left: 267px;
	top: 122px;
	width: 86px;
	height: 56px;
}

#pants,
#transmog_pants {
	position: absolute;
	left: 85px;
	top: 241px;
	width: 59px;
	height: 77px;
}

#ring_left {
	position: absolute;
	left: 97px;
	top: 195px;
	width: 31px;
	height: 31px;
}

#ring_right {
	position: absolute;
	left: 267px;
	top: 195px;
	width: 31px;
	height: 31px;
}

#ear_left {
	position: absolute;
	left: 2px;
	top: 75px;
	width: 31px;
	height: 31px;
}

#ear_right {
	position: absolute;
	left: 119px;
	top: 75px;
	width: 31px;
	height: 31px;
}

#boots,
#transmog_boots {
	position: absolute;
	left: 254px;
	top: 241px;
	width: 59px;
	height: 77px;
}

#pet_equip {
	position: absolute;
	left: 2px;
	top: 1px;
	width: 59px;
	height: 69px;
}

.item-image-wrapper {
	width: 100%;
	height: 100%;
	object-fit: scale-down;
	filter: drop-shadow(2px 2px 4px black);
	image-rendering: pixelated;
	padding: 3px;
}

/* AUCTION */
.inv {
	table-layout: fixed;
	background-color: #212121;
	border: 1px solid #100f0d;
	margin: 0px;
	padding: 0px;
}

.waretitle {

	font-size: 11px;
	background: #610000;
	font-style: oblique;
	font-weight: bold;
	color: #fff;
}

/* AUCTION END */
/* ------------------- PAGINATION ---------------------- */

#pagination {
	color: #4C9AEB;
	font: normal 12px verdana, arial, helvetica, serif;
	line-height: 17px;
	margin: 0;
	padding: 12px 8px 8px 12px;
	-webkit-border-radius: 0 0 6px 6px;
	-moz-border-radius: 0 0 6px 6px;
	-khtml-border-radius: 0 0 6px 6px;
	border-radius: 0 0 6px 6px;
}

#pagination a {
	border: 1px solid #ccc;
	/* background: #fff; */
	color: #b0bdc3;
	font: bold 12px verdana, arial, helvetica, serif;
	margin-right: 8px;
	padding: 4px 8px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-khtml-border-radius: 4px;
	border-radius: 4px;

}

#pagination a.on {
	border: 1px solid #52bee2;
	/* background: #f7f7f7; */
	color: #52bee2;
	margin-right: 8px;
	padding: 4px 8px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-khtml-border-radius: 4px;
	border-radius: 4px;
}

#pagination a:hover {
	border: 1px solid #52bee2;
	color: #52bee2;
}

#pagination ul {
	height: 30px;
}

#pagination li {
	list-style-type: none;
}

/* ------------------- PAGINATION END ---------------------- */

.item_table {
	width: 200px;
	border: 0;
	margin: auto;
}

.item_table td {
	padding: 3px;
}

.each_item {
	width: 10px;
	border: 0;
	border-collapse: collapse;

}

.each_item td {
	padding: 0px;
}

.each_item .item_name {
	background: url(../images/ws_item_name.png);
	background-size: 136px 34px;
	height: 34px;
}

.each_item .item_bg {
	background-image: url(../images/ws_item_bg.png);
	background-size: 136px 140px;
	height: 140px;
}

.each_item .item_footer {
	background: url(../images/ws_item_footer.png);
	background-size: 136px 6px;
	height: 6px;
}

.item_image {
	text-align: center;
	height: 140px;
	width: 136px;
}

.items {
	text-align: center;
}

.items a {
	color: #FFFFFF;
	font-size: 13px;
	text-decoration: none;
	padding-bottom: 5px;
}

.items a:hover {
	color: #000000;
}

#item_buy {
	margin-left: 5px;
	margin-right: 5px;
	width: 100%;
}

#item_buy_left {
	float: left;
	padding-right: 5px;
}

#item_buy_right {
	float: left;
	background-color: #3e1d1c;
	width: 492px;
	padding: 1px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}

#item_buy_right .full {
	margin: 1px;
	padding: 1px;
	width: 488px;
	background-color: #76403f;
	font-size: 14px;
	color: #FFFFFF;
	text-shadow: #000 0px 1px 0px;
	height: 18px;
	line-height: 18px;
}

#item_buy_right .opt_title {
	margin: 1px;
	padding-left: 1px;
	width: 250px;
	float: left;
	background-color: #76403f;
	font-size: 12px;
	color: #FFFFFF;
	text-shadow: #000 0px 1px 0px;
	height: 20px;
	line-height: 20px;
}

#item_buy_right .opt {
	margin: 1px;
	padding-left: 1px;
	width: 236px;
	float: left;
	background-color: #76403f;
	font-size: 12px;
	color: #FFFFFF;
	text-shadow: #000 0px 1px 0px;
	height: 20px;
	line-height: 20px;
}

#item_buy_right .opt select {
	border: 0px;
	border-radius: 0;
	width: 60%;
	font-size: 12px;
	line-height: 1;
	background: #5d302f;
	color: #fff;
	margin-top: 1px;
	padding: 0;
	-webkit-appearance: none;
}

#item_buy_right .opt input[type="number"] {
	width: 35px;
	border: 0px;
	border-radius: 0;
	font-size: 12px;
	line-height: 1;
	background: #5d302f;
	color: #fff;
	margin-top: 1px;
	padding: 0;
	-webkit-appearance: none;
}

#item_image_bg {
	position: relative;
	background: url(../images/item_bg.png) no-repeat;
	width: 129px;
	height: 184px;
}

#item_image_bg img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}

.item_info {
	margin-top: 2px;
	background: url(../images/item_desc.png) no-repeat;
	width: 129px;
	height: 36px;
	line-height: 36px;
	z-index: 500;
}

.item_info .info {
	padding-left: 5px;
	text-align: left;
	font-size: 11px;
	color: #FFFFFF;
	text-shadow: #000 0px 1px 0px;

}

.item_info .info .btimes {
	color: #ed7876;
}

.item_info .info .goldcr {
	color: #ffaf04;
}

.item_info .info .normalcr {
	color: #d9a08a;
}

#buy_buttons {
	margin-right: 10px;
	width: 99%;
}

#buy_buttons button {
	margin: 2px;
}

.buy_button {
	background: url(../images/slect_btn.png);
	width: 155px;
	height: 42px;

	font-size: 14px;
	color: #FFFFFF;
	text-shadow: #000 0px 1px 0px;
	border: 0;
	float: right;
}

.buy_button:hover {
	cursor: pointer;
}

.payment-method-button {
	margin: 4px;
	background-color: #EFEFEF;
	border-radius: 4px;
	border: 1px solid #D0D0D0;
	overflow: auto;
	float: left;
}

.payment-method-button label {
	float: left;
}

.payment-method-button label span {
	text-align: center;
	padding: 3px 0px;
	display: block;
	width: 120px;
	height: 50px;
	line-height: 50px;
	font-size: 20px;
	cursor: pointer;
}

.payment-method-button label input {
	position: absolute;
	top: -20px;
}

.auction_bet_button {
	margin: 0 auto;
	background: #660000;
	color: #fff;
	border-radius: 4px;
	border: 1px solid #D0D0D0;
	text-align: center;
	padding: 3px 0px;
	display: block;
	width: 220px;
	height: 35px;
	cursor: pointer;
}

.span_red {
	background: #660000;
	color: #fff;
}

#sell_item {
	padding: 5px;
	display: none;
	color: rgb(202, 201, 201);
}


.input-main {
	padding: 7px 9px;
	margin: 2px 0;
	border: 1px solid #CCC;
	border-bottom-color: #B3B3B3;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-khtml-border-radius: 4px;
	border-radius: 4px;
	box-shadow: inset 1px 1px #F1F1F1, 0 1px 2px rgba(0, 0, 0, 0.1);
}

.main-tr {
	font-weight: bold;
	background-color: rgba(255, 255, 255, 0.4);
}

.w-coins,
.wcoins {
	color: #CC6600;
	font-weight: bold;
}

.zz-coins,
.zzcoins {
	color: #003399;
	font-weight: bold;
}

#events>div {
	padding: 4px;
	font-size: 14px;
	color: #cac9c9;
}

#events>div:nth-child(odd):not(.animated-background) {
	background-color: #4573a11a;
}

#events>div:not(.animated-background):hover {
	background-color: #3c618682;
}

#events>div>small {
	float: right;
	color: #88c5cf;
	font-size: 13px;
}

.offline {
	color: red;
}

.online {
	color: green;
}

.cd-wrapper {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: rgba(0, 0, 0, 0.4);
	padding: 20px 10px 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	box-shadow: 0px 0px 30px black;
	z-index: 1;
}

#timer_div_title {
	font-weight: bold;
	text-shadow: 2px 2px black;
	padding-bottom: 6px;
	color: #ece7e7;
	font-size: 16px;
	text-align: center;
}

#timer_div_time {
	display: flex;
	color: white;
	text-shadow: 1px 1px 5px black;
}

.timmer_inner_block {
	font-weight: bold;
	padding: 6px;
	width: 60px;
	height: 65px;
	background-color: rgba(151, 151, 151, 0.3);
	-moz-border-radius: .5em;
	-webkit-border-radius: .5em;
	border-radius: .5em;
	margin: 2px;
	/*filter:alpha(opacity=20); */

}

#timer_div_time .timmer_inner_block .title {
	text-align: center;
	font-weight: bold;
	font-size: 12px;
}

#timer_div_time .timmer_inner_block .count {
	text-align: center;
	font-weight: bold;
	font-size: 26px;
	padding-top: 10px;
	color: #eca688;
}

.add_to_card {
	font-size: 12px;
	background: #eaebec;
	border: #ccc 1px solid;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: 0 1px 2px #d1d1d1;
	-webkit-box-shadow: 0 1px 2px #d1d1d1;
	box-shadow: 0 1px 2px #d1d1d1;
	width: 100%;
}

.add_to_card th {
	padding: 15px 20px 16px 20px;
	border-top: 1px solid #fafafa;
	border-bottom: 1px solid #e0e0e0;
	background: #ededed;
	background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#ebebeb));
	background: -moz-linear-gradient(top, #ededed, #ebebeb);
}

.add_to_card th:first-child {
	text-align: left;
	padding-left: 20px;
}

.add_to_card tr:first-child th:first-child {
	-moz-border-radius-topleft: 3px;
	-webkit-border-top-left-radius: 3px;
	border-top-left-radius: 3px;
}

.add_to_card tr:first-child th:last-child {
	-moz-border-radius-topright: 3px;
	-webkit-border-top-right-radius: 3px;
	border-top-right-radius: 3px;
}

.add_to_card tr {
	text-align: center;
	padding-left: 20px;
}

.add_to_card td:first-child {
	text-align: left;
	padding-left: 20px;
	border-left: 0;
}

.add_to_card td {
	padding: 10px;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #e0e0e0;
	border-left: 1px solid #e0e0e0;
	background: #fafafa;
	background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#fafafa));
	background: -moz-linear-gradient(top, #fbfbfb, #fafafa);
}

.add_to_card tr.even td {
	background: #f6f6f6;
	background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f6f6f6));
	background: -moz-linear-gradient(top, #f8f8f8, #f6f6f6);
}

.add_to_card tr:last-child td {
	border-bottom: 0;
}

.add_to_card tr:last-child td:first-child {
	-moz-border-radius-bottomleft: 3px;
	-webkit-border-bottom-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

.add_to_card tr:last-child td:last-child {
	-moz-border-radius-bottomright: 3px;
	-webkit-border-bottom-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

.add_to_card tr:hover td {
	background: #f2f2f2;
	background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#f0f0f0));
	background: -moz-linear-gradient(top, #f2f2f2, #f0f0f0);
}

.ticket {
	font-size: 12px;
	background: #eaebec;
	border: #ccc 1px solid;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-moz-box-shadow: 0 1px 2px #d1d1d1;
	-webkit-box-shadow: 0 1px 2px #d1d1d1;
	box-shadow: 0 1px 2px #d1d1d1;
}

.ticket th {
	padding: 15px 10px 16px 0px;
	border-top: 1px solid #fafafa;
	border-bottom: 1px solid #e0e0e0;
	background: #ededed;
	background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#ebebeb));
	background: -moz-linear-gradient(top, #ededed, #ebebeb);
}

.ticket th:first-child {
	text-align: left;
	padding-left: 10px;
}

.ticket tr:first-child th:first-child {
	-moz-border-radius-topleft: 3px;
	-webkit-border-top-left-radius: 3px;
	border-top-left-radius: 3px;
}

.ticket tr:first-child th:last-child {
	-moz-border-radius-topright: 3px;
	-webkit-border-top-right-radius: 3px;
	border-top-right-radius: 3px;
}

.ticket tr {
	text-align: center;
	padding-left: 20px;
}

.ticket td:first-child {
	text-align: left;
	padding-left: 20px;
	border-left: 0;
}

.ticket td {
	padding: 10px;
	border-top: 1px solid #ffffff;
	border-bottom: 1px solid #e0e0e0;
	border-left: 1px solid #e0e0e0;
	background: #fafafa;
	background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#fafafa));
	background: -moz-linear-gradient(top, #fbfbfb, #fafafa);
}

.ticket tr.even td {
	background: #f6f6f6;
	background: -webkit-gradient(linear, left top, left bottom, from(#f8f8f8), to(#f6f6f6));
	background: -moz-linear-gradient(top, #f8f8f8, #f6f6f6);
}

.ticket tr:last-child td {
	border-bottom: 0;
}

.ticket tr:last-child td:first-child {
	-moz-border-radius-bottomleft: 3px;
	-webkit-border-bottom-left-radius: 3px;
	border-bottom-left-radius: 3px;
}

.ticket tr:last-child td:last-child {
	-moz-border-radius-bottomright: 3px;
	-webkit-border-bottom-right-radius: 3px;
	border-bottom-right-radius: 3px;
}

.ticket tr:hover td {
	background: #f2f2f2;
	background: -webkit-gradient(linear, left top, left bottom, from(#f2f2f2), to(#f0f0f0));
	background: -moz-linear-gradient(top, #f2f2f2, #f0f0f0);
}

.discount_notice {
	margin: 20px auto;
	left: 200px;
	width: 280px;
	height: auto;
	background: white;
	border-radius: 10px;
	-webkit-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.3);
	position: fixed;
	z-index: 90;
	opacity: 0.9;
}

.discount_notice .content {
	padding: 30px;
	font-size: 14px;
	font-style: normal;
	color: #6a2f3c;
	font-weight: bold;
	position: relative;
	display: block;
}

.ribbon-discount-green {
	width: 85px;
	height: 88px;
	overflow: hidden;
	position: absolute;
	top: -3px;
	right: -3px;
}

.ribbon-green {
	font: bold 15px Sans-Serif;
	color: #333;
	text-align: center;
	text-shadow: rgba(255, 255, 255, 0.5) 0px 1px 0px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	position: relative;
	padding: 7px 0;
	left: -5px;
	top: 15px;
	width: 120px;
	background-color: #BFDC7A;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#BFDC7A), to(#8EBF45));
	background-image: -webkit-linear-gradient(top, #BFDC7A, #8EBF45);
	background-image: -moz-linear-gradient(top, #BFDC7A, #8EBF45);
	background-image: -ms-linear-gradient(top, #BFDC7A, #8EBF45);
	background-image: -o-linear-gradient(top, #BFDC7A, #8EBF45);
	color: #6a6340;
	-webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
	-moz-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.3);
}

.ribbon-green:before,
.ribbon-green:after {
	content: "";
	border-top: 3px solid #6e8900;
	border-left: 3px solid transparent;
	border-right: 3px solid transparent;
	position: absolute;
	bottom: -3px;
}

.ribbon-green:before {
	left: 0;
}

.ribbon-green:after {
	right: 0;
}

​ .PriorityZero {
	background-color: rgb(230, 138, 138);
}

.PriorityOne {
	background-color: rgb(204, 64, 64);
}

.PriorityTwo {
	background-color: rgb(255, 0, 0);
}

.PriorityThree {
	background-color: rgb(153, 0, 0);
}


.plans {
	list-style: none;
	margin: 0;
	padding: 10px 20px;
}

.plan {
	background: white;
	border-radius: 6px;
	height: 60px;
	margin: 10px 0;
	opacity: 1;
	padding: 4px 25px;
	width: 100%;
}

.price {
	border-radius: 100%;
	cursor: default;
	display: block;
	float: left;
	height: 46px;
	line-height: 46px;
	margin: 8px 10px 0 0;
	text-align: center;
	width: 46px;
}

.price-green {
	background-color: #e1f1d1;
	color: #52b327;
	font-weight: bold;
}

.price-red {
	background-color: #f1e1d1;
	color: #b35227;
}


.details {
	color: #222;
	display: block;
	float: left;
	height: 46px;
	margin: 8px 0;
	padding: 0px 10px;
}

.plan-title {
	font-size: 17px;
	font-weight: normal;
	margin: 2px 0 0;
	padding: 0;
	text-transform: uppercase;
}

.plan-description {
	color: #666;
	font-size: 14px;
	margin: 0;
	padding: 0;
}


.select {
	background: #660000;
	border: none;
	border-radius: 4px;
	color: white;
	display: inline-block;
	float: right;
	font-size: 14px;
	margin: 15px 0;
	padding: 7px 16px;
	text-decoration: none;

}

.select:hover {
	background-color: #990000;
	text-decoration: none;
	cursor: painter;
}

#exception {
	width: 100%;
	height: 0 auto;
	line-height: 25px;
	min-height: 25px;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #FFF;
	display: none;
	background-color: red;
	position: fixed;
	z-index: 9999;
}

.wh_items {
	width: 264px;
	margin: 2px auto;
	padding-top: 6px;
	padding-left: 3px;
	height: 491px;
}

.square {
	cursor: pointer;
	position: absolute;
	opacity: 0.8;
}

.square:hover {
	padding: 1px;
	opacity: 1;
}

.square img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.f16 {
	display: inline-flex;
}

.f16 .flag {
	display: inline-block;
	height: 16px;
	width: 16px;
	vertical-align: text-top;
	line-height: 16px;
	background: url(../images/flags.webp) 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 .zh {
	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,
.f16 .en {
	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 .vn {
	background-position: 0 -3776px;
}

.f16 .vi {
	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;
}

table.sidebar_rank {
	width: 100%;
	border: 0;
	border-collapse: collapse;
}

table.sidebar_rank th {
	border: 0;
	text-align: left;
	border-bottom: 1px solid #642E39;
	padding-bottom: 0px;
	font-weight: normal;
}

table.sidebar_rank tr {
	border: 0;
	text-align: left;

}

table.sidebar_rank td {
	border: 0;
	text-align: left;
	border-bottom: 1px solid #642E39;
	padding-bottom: 3px;
	padding-top: 3px;
}

.ref-reward-dropdown {
	position: relative;
	display: inline-block;
}

.ref-reward-dropdown-content {
	display: none;
	position: relative;
	background-color: #f9f9f9;
	min-width: 150px;
	overflow: hidden;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 2500;
	overflow-y: auto;
	max-height: 500px;
}

.ref-reward-dropdown-content a {
	color: black;
	padding: 6px 8px;
	text-decoration: none;
	display: block;
}

.ref-reward-dropdown-content a:hover {
	background-color: #f1f1f1
}

.ref-reward-dropdown:hover .ref-reward-dropdown-content {
	display: block;
}

.item_size_11 {
	font-size: 11px;
}

.item_size_12 {
	font-size: 12px;
}

.item_size_13 {
	font-size: 13px;
}


.item_white {
	color: #FFFFFF;
}

.item_light_green {
	color: #00FF00;
}

.item_light_blue {
	color: #80B2FF;
}

.item_380_option {
	color: #cb7fcb;
}

.item_light_blue_2 {
	color: #3366FF;
}

.item_blue {
	color: #0066FF;
}

.item_pink {
	color: #FF1493;
}

.item_yellow {
	color: #FADE09;
}

.item_yellow_2 {
	color: #FFCC00;
}

.item_red {
	color: #FF0000;
}

.item_dark_red {
	color: #800000;
}

.item_dark_red_background {
	background-color: #800000;
}

.item_purple {
	color: #800080;
}

.item_socket {
	color: #B266FF;
}

.item_grey {
	color: #808080;
}

.item_yellow_title {
	color: #FFCC19;
}

.item_luck {
	color: #80B2FF;
}

.item_exe_title {
	color: #008000;
}

.item_socket_title {
	color: #B266FF;
	/* background-color: #7401DF; */
}

.item_socket_exe_title {
	color: wheat;
	background-color: #7401DF;
}

.item_ancient_title {
	color: #01DF01;
}

.item_ancient_background {
	background-color: #0000FF;
}


#inventoryc {
	background-image: url('../../default_assets/images/inventoryc.png?v1');
	width: 395px;
	height: 320px;
	text-align: center;
	display: inline-block;
	position: relative;
}

#inventoryc>img {
	position: absolute;
	top: 90px;
	left: 145px;
	border-radius: 50%;
	border: 3px solid #24314e;
	width: 110px;
	height: 110px;
}

#inventoryc>div {
	position: absolute;
	background-repeat: no-repeat;
	background-position: center center;
}

#in_weapon {
	width: 90px;
	height: 136px;
	bottom: 0;
	left: -6px;
	background-size: contain !important;
}

#in_shield {
	width: 60px;
	height: 136px;
	bottom: 0;
	right: 8px;
	background-size: contain !important;
}

#in_helm {
	width: 68px;
	height: 68px;
	top: 2px;
	left: 66px;
}

#in_armor {
	width: 72px;
	height: 110px;
	top: 72px;
	left: 40px;
	background-size: contain !important;
}

#in_pants {
	width: 68px;
	height: 68px;
	bottom: 8px;
	left: 82px;
	background-size: contain !important;
}

#in_gloves {
	width: 68px;
	height: 68px;
	top: 116px;
	right: 54px;
	background-size: contain !important;
}

#in_boots {
	width: 68px;
	height: 68px;
	bottom: 8px;
	right: 82px;
	background-size: contain !important;
}

#in_wings {
	width: 138px;
	height: 102px;
	top: 8px;
	right: -2px;
	background-size: contain !important;
}

#in_zoo {
	width: 42px;
	height: 42px;
	top: 15px;
	left: 10px;
	background-size: contain !important;
}

#in_pendant {
	width: 38px;
	height: 38px;
	top: 20px;
	right: 136px;
	background-size: contain !important;
}

#in_ring1 {
	width: 38px;
	height: 38px;
	bottom: 92px;
	left: 96px;
	background-size: contain !important;
}

#in_ring2 {
	width: 38px;
	height: 38px;
	bottom: 92px;
	right: 96px;
	background-size: contain !important;
}

#in_pentagram {
	width: 64px;
	height: 64px;
	bottom: 8px;
	right: 169px;
	background-size: contain !important;
}

#in_ear1 {
	width: 32px;
	height: 32px;
	top: 72px;
	left: 0px;
	background-size: contain !important;
}

#in_ear2 {
	width: 32px;
	height: 32px;
	top: 72px;
	left: 115px;
	background-size: contain !important;
}

.cworkshop {
	display: table;
	margin: 50px auto;
}

.cworkshop .inventoryy {
	background-image: url("../../default_assets/images/inv.png");
	height: 610px;
	width: 311px;
	display: block;
}

.cworkshop .item {
	position: absolute;
	/*top: 0px;*/
	margin-top: 10px;
	margin-left: 3px;
}

.cworkshop .item>div {
	cursor: pointer;
	border: solid 2px transparent;
}

div[id*="item-slot-occupied-"] img {
	background-color: rgba(31, 31, 31, 0.73);

}

div[id*="item-slot-occupied-"] img:hover {
	background-color: rgba(154, 60, 45, 0.43);
}

.cworkshop .item>div.selected {
	background-color: rgba(154, 60, 45, 0.43);
	border: solid 2px rgba(154, 60, 45, 0.44);
}

.cworkshop .item .hover_inv:hover {
	background-color: rgba(154, 60, 45, 0.43);
	border: solid 2px rgba(154, 60, 45, 0.44);
}

.cworkshop .title {
	margin-top: 13px;
	text-align: center;
	margin-bottom: 30px;
}

.live_popup {
	background-image: url("../../default_assets/images/OxlwMBp.png");
	height: 86px;
	position: fixed;
	bottom: 10px;
	z-index: 99999;
}

#live_popup_ch {
	margin-left: 50px;
	margin-right: 40px;
	-webkit-transform: skew(-10deg);
	/* Chrome, Opera */
	-ms-transform: skew(-10deg);
	/* IE */
	transform: skew(-10deg);
	/* Padrão */
	max-width: 740px;
	min-width: 130px;
	overflow-y: hidden;
	height: 86px;
}

#live_popup_ch div {
	margin-left: 10px;
	margin-top: 5px;
	float: left;
}

#live_popup_ch img {
	opacity: 0.7;

}

#live_popup_ch a:hover img {
	height: 70px;
	opacity: 1;
}

#live_popup_ch a .img {
	border: solid rgba(255, 255, 255, 0.8) 2px;
	background: #000;
}

#live_popup_ch a:hover .img {
	border: solid rgba(255, 255, 255, 1.0) 2px;
}

#live_btn {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 10px;
	top: 0px;
	cursor: pointer;
}

#live_btn i {
	margin-left: 18px;
	margin-top: 8px;
	font-size: 12px;
}

.live-110 {
	background-image: url("../../default_assets/images/OxlwMBp.png");
	height: 86px;
	position: fixed;
	bottom: 150px;
	z-index: 999999;
	width: 110px;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.live-840 {
	background-image: url("../../default_assets/images/OxlwMBp.png");
	height: 86px;
	position: fixed;
	bottom: 150px;
	z-index: 99999;
	max-width: 740px;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

.box-style-ice .title2,
.box-style-fire .title2,
.box-style-guide .title2 {
	height: 100px;
	width: 100%;
}

.box-style-ice .title2 {
	background: url(../images/sidebar-box-header.webp) no-repeat left top;
}

.box-style-fire .title2 {
	background: url(../images/sidebar-box-header-red.webp) no-repeat left top;
}

.box-style-ice .title2 h2,
.box-style-fire .title2 h2,
.box-style-guide .title2 h2 {
	padding: 20px;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
}

.box-style-ice .title2 h2 {
	color: #b5d1dd;
}

.box-style-guide .title2 h2 {
	color: #d9d9d9;
}

.box-style-fire .title2 h2 {
	color: #ecd1d2;
}

.box-style-ice .entry,
.box-style-fire .entry {
	width: 290px;
	margin: -20px auto 0;
	padding: 20px;
	border-radius: 6px;
}

.box-style-guide .entry {
	width: 290px;
	margin: -20px auto 0;
	padding: 20px 0;
	border-radius: 6px;
}

.box-style-ice .entry {
	background: url(../images/sidebar-box-bg.webp) no-repeat left top;
	background-size: 100% 100%;
}

.box-style-fire .entry {
	background: url(../images/sidebar-box-bg-red.webp) no-repeat left top;
	background-size: 100% 100%;
}

.input-ice {
	display: flex;
	align-items: center;
	background-color: black;
	border: 1px solid #1e4a5c;
	border-radius: 6px;
	/* padding: 4px; */
	cursor: text;
}

.input-ice input,
.input-ice select {
	flex-grow: 2;
	background-color: transparent !important;
	border: 0;
	box-shadow: none;
	color: #b4f5f3 !important;
	caret-color: #b4f5f3;
	margin: 0;
	padding: 11px 13px;
	border-radius: 6px;
	width: 100%;
	/* border: 1px solid #1e4a5c; */
}

.input-ice select {
	padding-right: 30px;
	cursor: pointer;
	-webkit-appearance: none;
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, #b4f5f3 50%), linear-gradient(135deg, #b4f5f3 50%, transparent 50%), linear-gradient(to right, #b4f5f3, #b4f5f3);
	background-position: calc(100% - 20px) calc(1em + 2px), calc(100% - 15px) calc(1em + 2px), calc(100% - 2.5em) 0.5em;
	background-size: 5px 5px, 5px 5px, 0;
	background-repeat: no-repeat;
}

.input-ice option {
	background-color: black;
}

.input-ice input:focus,
.input-ice select:focus {
	outline: none;
}

.input-ice:has(input:focus),
.input-ice:has(select:focus) {
	outline: 2px solid #38687a;
}

.input-ice input:-webkit-autofill,
.input-ice input:-webkit-autofill:hover,
.input-ice input:-webkit-autofill:focus,
.input-ice input:-webkit-autofill:active {
	transition: background-color 500000s ease-in-out 0s;
	-webkit-text-fill-color: #b4f5f3 !important;
}

.input-ice-icon {
	width: 34px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.input-ice-separator {
	width: 1px;
	height: 28px;
	background-color: #092c2d;
}

.input-ice-icon img {
	width: 16px;
	height: 20px;
}

.button-ice {
	width: 100%;
	height: 42px;
	background: url(../images/ice-button-bg.webp) no-repeat left top;
	background-size: 100% 100%;
	border: 0;
	cursor: pointer;
	font-size: 16px;
	color: white;
	box-shadow: 0 0 6px 0px #1d1f2a;
	padding: 0 24px;
}

.button-ice:hover {
	filter: brightness(1.3);
}

.ice-link {
	color: #b2f2f0;
	text-decoration: underline;
}

.fire-link {
	color: #ecd1d2;
	text-decoration: underline;
}

.box-style-ice ul.style4 {
	color: #cac9c9;
}

.box-style-fire ul.style4 {
	color: #ecd1d2;
}

.box-style-ice ul.style4 li,
.box-style-fire ul.style4 li {
	background: none;
}

.box-style-ice ul.style4 a {
	color: #b2f2f0;
	text-decoration: underline;
}

.box-style-fire ul.style4 a {
	color: #ecd1d2;
	text-decoration: underline;
}

.box-style-ice table.sidebar_rank th {
	border: 0;
	color: #cac9c9;
	line-height: 20px;
}

.box-style-ice table.sidebar_rank td {
	color: #b2f2f0;
	border: 0;
	line-height: 20px;
}

.box-style-ice table.sidebar_rank a {
	color: #b2f2f0;
}

.box-style-fire table.sidebar_rank th {
	border: 0;
	color: #cac9c9;
	line-height: 20px;
}

.box-style-fire table.sidebar_rank td {
	color: #ecd1d2;
	border: 0;
	line-height: 20px;
}

.box-style-fire table.sidebar_rank a {
	color: #ecd1d2;
}

.box-style-ice table.sidebar_rank tbody tr,
.box-style-fire table.sidebar_rank tbody tr {
	transition: transform 100ms linear;
}

.box-style-ice table.sidebar_rank tbody tr td:first-child,
.box-style-ice table.sidebar_rank thead tr th:first-child,
.box-style-fire table.sidebar_rank tbody tr td:first-child,
.box-style-fire table.sidebar_rank thead tr th:first-child {
	padding-left: 10px;
}

.box-style-ice table.sidebar_rank tbody tr:hover,
.box-style-fire table.sidebar_rank tbody tr:hover {
	background-position: 0px 0px;
	background-size: 100% 100%;
	transform: scale(1.05);
}

.box-style-ice table.sidebar_rank tbody tr:hover {
	background: url(../images/row-hover.png) no-repeat;
	background-size: 100% 100%;
}

.box-style-fire table.sidebar_rank tbody tr:hover {
	background: url(../images/row-hover-red.png) no-repeat;
	background-size: 100% 100%;
}

.ranking-buttons-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.ranking-table {
	border: 0;
	background: none;
	color: #cac9c9;
}

.ranking-table a {
	color: #b2f2f0;
	text-decoration: underline;
}

.main-tr,
.ranking-table th {
	background: none;
}

.ranking-table td {
	background: none;
}

.ranking-table tbody tr:nth-child(odd) {
	background-color: rgba(255, 255, 255, 0.1);
}

.rankings-table tbody tr:hover {
	background-color: rgba(255, 255, 255, 0.3);
}

.download-image,
.registration-image {
	display: flex;
	width: 290px;
	height: 105px;
	margin: 0 auto;
	padding: 30px;
	flex-direction: column;
	cursor: pointer;
	transition: transform 100ms linear;
}

.download-image:hover,
.registration-image:hover {
	text-decoration: none;
	filter: brightness(1.2);
	transform: scale(1.02);
}

.download-image {
	background: url(../images/download-image.webp) no-repeat;
}

.download-image__text,
.registration-image__text {
	font-size: 23px;
	text-transform: uppercase;
	color: white;
	text-shadow: 1px 1px 5px black;
}

.download-image__descr,
.registration-image__descr {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
}

.registration-image {
	background: url(../images/registration-image.webp) no-repeat;
}

.online-players {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
	top: -85px;
	left: -590px;
	width: 200px;
	height: 150px;
	filter: drop-shadow(2px 2px 6px black);
}

.online-players:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../images/servers-online-image2.webp) no-repeat;
	background-size: contain;
	transform: rotate(180deg);
	filter: hue-rotate(150deg) drop-shadow(0px 2px 20px black);
}

.online-players-count {
	position: relative;
	font-size: 30px;
	line-height: 36px;
	font-weight: 600;
	background: -webkit-linear-gradient(#eee, #5185fd);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	top: 27px;
	padding-left: 4px;
	filter: drop-shadow(2px 2px 6px black);
}

.online-players-label {
	position: relative;
	font-size: 12px;
	font-weight: 600;
	background: -webkit-linear-gradient(#eee, #5185fd);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	top: 25px;
	padding-left: 4px;
	filter: drop-shadow(2px 2px 6px black);
}

.online-since-label {
	position: absolute;
	bottom: -22px;
	color: #d1e8f9a3;
	filter: drop-shadow(2px 2px 5px black);
}

.offline-players-label {
	font-size: 15px;
}


.text-main-cold {
	color: #b5d1dd;
}

.input-label-text {
	margin-bottom: 5px;
	display: block;
}

.article-ice {
	color: #cac9c9;
}

.article-ice .entry {
	margin-top: 5px;
	font-size: 16px;
}

.article-ice-title a {
	background-image: url('../images/news-header.webp');
	display: block;
	min-height: 62px;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	padding: 20px;
	line-height: 22px;
	font-size: 20px;
	color: #b5d1dd;
}

.article-ice-image-wrapper {
	width: 100%;
	height: 200px;
	margin-top: 2px;
	border: 1px solid #1a262f;
}

.article-ice-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.article-ice-date-wrapper {
	margin: 0;
	font-size: 12px;
}

.article-ice-date {
	color: rgb(145, 129, 49);
}

.fire {
	position: absolute;
	width: 47px;
	height: 50px;
	animation: fire 1.5s steps(48) infinite;
	pointer-events: none;
	z-index: 6;
}

.fire-red {
	background: url(../images/fire_red.webp) no-repeat 0px 0px;
	left: 370px;
	top: 42px;
}

.guides-page .fire-red {
	left: 631px;
}

.fire-blue {
	background: url(../images/fire_blue.webp) no-repeat 0px 0px;
	top: 41px;
	left: -416px;
}

@keyframes fire {
	0% {
		background-position: 0px 0;
	}

	100% {
		background-position: -2242px 0;
	}
}

.sparks {
	background-repeat: no-repeat;
	background-position: left 0px bottom 0px;
	position: absolute;
	user-select: none;
	pointer-events: none;
}

.sparks-1 {
	background-image: url(../images/sparks-1.webp);
	width: 117px;
	height: 136px;
	right: 377px;
	bottom: 0px;
	background-position: left 0px bottom 0px;
	animation-name: sparks-1;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

.sparks-2 {
	background-image: url(../images/sparks-2.webp);
	width: 219px;
	height: 176px;
	right: 350px;
	bottom: 16px;
	background-position: left 0px bottom 0px;
	animation-name: sparks-2;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	animation-delay: 0.5s;
}

.sparks-3 {
	background-image: url(../images/sparks-3.webp);
	width: 438px;
	height: 281px;
	right: 277px;
	bottom: 9px;
	background-position: left 0px bottom 0px;
	animation-name: sparks-3;
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	animation-delay: 1s;
}

@keyframes sparks-1 {
	0% {
		right: 380px;
		bottom: 0px;
		opacity: 0;
	}

	33% {
		right: 390px;
		bottom: 10px;
		opacity: 0.5;
		transform: scale(1.1);
	}

	70% {
		right: 400px;
		bottom: 20px;
		opacity: 1;
		transform: scale(1.1);
	}

	100% {
		right: 410px;
		bottom: 30px;
		opacity: 0;
		transform: scale(1.1);
	}
}

@keyframes sparks-2 {
	0% {
		right: 360px;
		bottom: 30px;
		opacity: 0;
	}

	33% {
		right: 370px;
		bottom: 40px;
		opacity: 0.5;
		transform: scale(1.1);
	}

	70% {
		right: 380px;
		bottom: 50px;
		opacity: 1;
		transform: scale(1.1);
	}

	100% {
		right: 390px;
		bottom: 60px;
		opacity: 0;
		transform: scale(1.1);
	}
}

@keyframes sparks-3 {
	0% {
		right: 300px;
		bottom: 30px;
		opacity: 0;
	}

	33% {
		right: 320px;
		bottom: 50px;
		opacity: 0.5;
		transform: scale(1.1);
	}

	70% {
		right: 340px;
		bottom: 70px;
		opacity: 1;
		transform: scale(1.1);
	}

	100% {
		right: 360px;
		bottom: 90px;
		opacity: 0;
		transform: scale(1.1);
	}
}

.circle {
	background: url(../images/circle.webp) center no-repeat;
	background-size: 127px 125px;
	width: 127px;
	height: 125px;
	left: -593px;
	top: calc(131px - 50px);
	position: absolute;
	transform: scale(0);
	opacity: 0;
}

.circle1 {
	animation: circle 4s linear infinite;
	user-select: none;
	pointer-events: none;
}

.circle2 {
	animation: circle 4s linear infinite;
	animation-delay: 1s;
	user-select: none;
	pointer-events: none;
}

@keyframes circle {
	10% {
		transform: scale(0);
		opacity: 0;
	}

	40% {
		transform: scale(1);
		opacity: 1;
	}

	70% {
		transform: scale(2);
		opacity: 0.4;
	}

	100% {
		transform: scale(2);
		opacity: 0;
	}
}

.ray-1 {
	background: url(../images/ray-1.webp) center no-repeat;
	width: 224px;
	height: 224px;
	left: -642px;
	top: calc(84px - 50px);
	position: absolute;
	animation: ray-1 10s linear infinite;
	user-select: none;
	pointer-events: none;
}

@keyframes ray-1 {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.ray-2 {
	background: url(../images/ray-2.webp) center no-repeat;
	width: 363px;
	height: 363px;
	left: -717px;
	top: calc(10px - 50px);
	position: absolute;
	animation: ray-2 24s linear infinite;
	user-select: none;
	pointer-events: none;
}

@keyframes ray-2 {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(-360deg);
	}
}

.lava {
	background: url(../images/lava.png) top right no-repeat;
	width: 238px;
	height: 107px;
	right: -465px;
	top: 366px;
	position: absolute;
	animation-delay: 1s;
	animation: lava 10s linear infinite;
	opacity: 0.1;
	overflow: hidden;
}

@keyframes lava {
	10% {
		opacity: 0.1;
	}

	40% {
		opacity: 1;
		filter: brightness(200%) contrast(2);
	}

	50% {
		opacity: 0.3;
	}

	60% {
		opacity: 1;
		filter: brightness(200%) contrast(2);
	}

	70% {
		opacity: 0.5;
	}

	80% {
		opacity: 1;
	}

	100% {
		opacity: 0.1;
	}
}

.option_buttons {
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr 1fr;
	max-width: 400px;
	margin: 0 auto 20px;
}

.item-selected::after {
	content: '';
	display: block;
	position: absolute;
	top: 2px;
	left: 2px;
	width: calc(100% - 2px);
	height: calc(100% - 2px);
	border: 2px solid #0bdbf9b8;
	border-radius: 3px;
	box-sizing: border-box;
}

.pointer {
	cursor: pointer;
}

.achievments-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.market-items-wrapper {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 6px;
	margin-top: 20px;
}

.market-item {
	display: flex;
	flex-direction: column;
	gap: 10px;
	color: #cac9c9;
	padding: 6px;
	border-radius: 4px;
	text-align: center;
	border: 1px solid #606171;
	font-size: 13px;
}

.market-item-name-link {
	color: #b5d1dd;
}

.market-item-name-link div {
	font-size: 13px;
}

.market-item-prop-desc {
	color: #a39b9b;
}

.market-item-image-wrapper {
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: auto;
}

.market-item-name-wrapper * {
	font-size: 12px !important;
}

.ingame-market-search-wrapper {
	max-width: 250px;
	margin:  20px auto 0;
}

.market-item-price-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2px;
}

.market-item-price-wrapper img {
	width: 18px;
	height: 18px;
}

.market-item-image-wrapper img {
	max-height: 100%;
	max-width: 100%;
}

.vip-packages-wrapper {
	display: grid;
	gap: 10px;
	grid-template-columns: 1fr 1fr 1fr 1fr;
}

.vip-package {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: rgb(31 39 58);
	min-height: 250px;
	gap: 15px;
	color: #c3c3c3;
	border-radius: 5px;
	padding: 5px 5px 10px;
	transition: background-color 100ms ease-in-out;
}

.vip-package:hover {
	background-color: rgb(32 47 83);
	filter: brightness(1.1);
}

.vip-package__iconwrapper {
	width: 96px;
	height: 96px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.vip-package__icon {
	width: 96px;
	height: 96px;
	background-size: contain;
}

.vip-package[data-vip-title="Bronze 7 Days"] .vip-package__icon {
	background-image: url(../images/vip/Rank\ emblems1.png);
}

.vip-package[data-vip-title="Silver 7 Days"] .vip-package__icon {
	background-image: url(../images/vip/Rank\ emblems5.png);
}

.vip-package[data-vip-title="Silver 14 Days"] .vip-package__icon {
	background-image: url(../images/vip/Rank\ emblems6.png);
}

.vip-package[data-vip-title="Silver 28 Days"] .vip-package__icon {
	background-image: url(../images/vip/Rank\ emblems7.png);
}

.vip-package__buttonwrapper {
	margin-top: auto;
}

.vip-package__name {
	font-size: 15px;
}

.vip-package__price {
	font-weight: bold;
	font-size: 23px;
	text-align: center;
	margin-top: 10px;
	color: #d35353;
	text-shadow: 0px 0px 8px black;
}

.vip-package__button {
	border: 1px solid rgb(104 77 104);
	color: #c3c3c3;
	padding: 8px 13px;
	display: flex;
	border-radius: 4px;
	transition: background-color 100ms linear;
}

.vip-package__button:hover {
	background-color: rgb(155 35 62);
	text-decoration: none;
}

.cs-owner-wrapper {
	color: #cac9c9;
}

.cs-owner-image {
	height: 70px;
	width: 70px;
	image-rendering: pixelated;
	flex-shrink: 0;
}

.image-pixelated {
	image-rendering: pixelated;
}

.cs-owner-content {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-direction: column;
}

.cs-owner-text {
	font-size: 15px;
	text-align: center;
}

.cs-owner-text-label {
	display: inline-flex;
	color: #777777;
}

.cs-owner-next-battle {
	margin-top: 15px;
	text-align: center;
	font-size: 18px;
	font-style: italic;
	color: #cc7954;
}

.cs-owner-next-battle-timer {
	text-align: center;
	font-size: 22px;
	color: #cac9c9;
	margin-top: 5px;
}

.cs-owner-next-battle-timer>span {
	color: #edcb7a;
}

.vip-package-details {
	width: 100%;
	border: 1px solid black;
	color: #cac9c9;
	border-collapse: collapse;
	background-color: #9cc0c73b;
	font-size: 16px;
}

.vip-package-details th,
.vip-package-details td {
	border: 1px solid black;
	padding: 6px 10px;
}

.vip-package-details-buttonwrapper {
	max-width: 200px;
	margin: 25px auto 0;
}

.text--bold {
	font-weight: bold;
}

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

.text--16px {
	font-size: 16px;
}

.socials-wrapper {
	display: flex;
	flex-direction: column;
	gap: 15px;
	position: absolute;
	right: 30px;
	top: 8px;
}

#menu .socials-icon {
	display: flex;
}

#menu .socials-icon a {
	display: flex;
	transition: scale 100ms ease-in-out;
	filter: drop-shadow(2px 2px 6px black);
}

#menu .socials-icon:nth-child(1) a {
	animation: shake-social-icon 30000ms 120s infinite;
}

#menu .socials-icon:nth-child(2) a {
	animation: shake-social-icon 30000ms 125s infinite;
}

#menu .socials-icon a:hover {
	scale: 1.2;
	filter: drop-shadow(2px 2px 6px black) brightness(1.2);
	transform: translateZ(0);
}

#menu .socials-icon img {
	width: 32px;
	height: 32px;
}

@keyframes shake-social-icon {
	0% {
		rotate: 0deg;
	}

	1% {
		rotate: -10deg;
	}

	2% {
		rotate: 10deg;
	}

	3% {
		rotate: -10deg;
	}

	4% {
		rotate: 10deg;
	}

	5% {
		rotate: 0deg;
	}
}

.payment-method-link {
	width: 226px;
	height: 142px;
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	margin: 0 auto;
	border: 3px solid #57a0d1;
	border-radius: 5px;
	background-color: white;
	background-position-y: center;
}

.payment-method-link-paypal {
	background-image: url(../images/paypal.jpg);
}

.payment-method-link-stripe {
	background-image: url(../images/stripe.svg);
	margin-bottom: 20px;
	background-size: contain;
}

.invasion-ranking-button {
	filter: hue-rotate(304deg);
}

.weekly-ranking-button {
	filter: hue-rotate(304deg);
}

.invasion-ranking-label {
	color: #cac9c9;
	text-align: center;
	font-size: 26px;
	margin: 10px 0;
}

.custom-invasions-ranking-buttons-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: center;
}

.cached-text {
	text-align: right;
	padding-top: 15px;
	font-size: 10px;
	color: #cac9c9;
}

.guild-image-rank {
	display: flex;
	text-align: center;
	margin: 0 auto;
	width: 20px;
	height: 20px;
	image-rendering: pixelated;
}


@keyframes placeHolderShimmer {
	0% {
		background-position: -468px 0;
	}

	100% {
		background-position: 468px 0;
	}
}

.animated-background {
	display: flex;
	flex-direction: column;
	gap: 24px;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
	animation-name: placeHolderShimmer;
	background-image: linear-gradient(to right, #050d19 8%, #dddddd26 18%, #050d19 33%);
	background-size: 800px 104px;
	position: relative;
}

.animated-background .fake-line {
	background-color: #4573a11a;
	height: 24px;
}

.animated-background--red {
	background-image: linear-gradient(to right, #0d0402 8%, #dddddd26 18%, #0d0402 33%);
	gap: 30.66px;
}

.animated-background--red .fake-line:first-child {
	height: 25.66px;
}

.animated-background--red .fake-line {
	height: 30.66px;
}

.animated-background--red .fake-line:last-child {
	height: 0;
}

.animated-background--red.animated-background--guild .fake-line:first-child {
	height: 21px;
}

.animated-background--red.animated-background--guild .fake-line {
	height: 27px;
}

.animated-background--red.animated-background--guild .fake-line:last-child {
	height: 0;
}

.animated-background--red.animated-background--guild {
	gap: 27px;
}

@keyframes transmog-shadow {
	0% {
		filter: drop-shadow(0px 0px 1px rgb(217, 87, 87));
	}

	50% {
		filter: drop-shadow(0px 0px 3px rgb(217, 87, 87));
	}

	100% {
		filter: drop-shadow(0px 0px 1px rgb(217, 87, 87));
	}
}

@keyframes transmog-rotate {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.transmog-wrapper {
	position: absolute;
	top: 0;
	left: 0;
	width: 240px;
	height: 240px;
	padding: 20px;
	transform: rotate(-15deg);
	cursor: pointer;
	/* animation: transmog-shadow 6s infinite; */
	filter: drop-shadow(0px 0px 3px rgb(228, 72, 72));
	z-index: 2;
}

.transmog-wrapper svg {
	width: 100%;
	height: 100%;
	animation: transmog-rotate 80s infinite linear;
}

.transmog-wrapper__text {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	font-size: 24px;
	text-transform: uppercase;
	color: whitesmoke;
	text-shadow: 0px 0px 6px #ffffff1f;
	font-weight: bold;
	background: #F8FFE8;
	background: linear-gradient(to right, #F8FFE8 0%, #E3F5AB 33%, #c5aa5d 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	z-index: 1;
}

.download-problems-text {
	padding: 100px 20px;
	font-size: 20px;
	font-size: 20px;
	font-weight: 600;
}

.droplist-bag {
	margin-bottom: 20px;
}

.droplist-bag-header {
	padding: 10px 6px;
	/* background-color: #2e3a3f; */
	/* border-radius: 22px 22px 0 0; */
	font-style: italic;
}

.droplist-bag-body {
	padding: 0 16px 16px;
	/* border: 1px solid #2e3a3f; */
	/* border-radius: 0 0 22px 22px; */
}

.droplist-bag--stealthy .droplist-bag-header {
	display: none;
}

.droplist-bag--stealthy .droplist-bag-body {
	padding: 0;
	border: 0;
}

.droplist-section:not(:last-child) {
	margin-bottom: 16px;
}

.droplist-section-header {
	padding: 6px 10px;
	background-color: var(--droplist-header-bg);
	/* border-radius: 6px 6px 0 0; */
	border-radius: 6px;
	font-size: 14px;
	line-height: 18px;
	position: relative;
	text-shadow: 1px 1px 2px black;
}

.droplist-section--linked .droplist-section-header::before {
	content: '';
	display: block;
	position: absolute;
	height: 50%;
	width: 11px;
	top: 50%;
	left: -10px;
	border-left: 1px solid var(--droplist-header-bg);
	border-top: 1px solid var(--droplist-header-bg);
}

.droplist-section--linked:first-child .droplist-section-header::before {
	border-radius: 10px 0 0 0;
}

.droplist-section--linked:last-child .droplist-section-header::before {
	border-radius: 0 0 0 10px;
	border-top: 0;
	border-bottom: 1px solid var(--droplist-header-bg);
	top: 0;
}

.droplist-section--linked:not(:first-child):not(:last-child) .droplist-section-header::after {
	content: '';
	display: block;
	position: absolute;
	height: 50%;
	width: 11px;
	top: 0;
	left: -10px;
	border-left: 1px solid var(--droplist-header-bg);
	border-bottom: 1px solid var(--droplist-header-bg);
}

.droplist-section-body {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	align-items: center;
	gap: 6px 6px;
	padding: 7px 4px;
	/* border: 1px solid var(--droplist-header-bg); */
	/* border-radius: 0 0 6px 6px; */
	position: relative;
}

.droplist-section--linked .droplist-section-body::before {
	content: '';
	display: block;
	position: absolute;
	height: calc(100% + 16px);
	width: 1px;
	background-color: var(--droplist-header-bg);
	top: 0;
	left: -10px;
}

.droplist-section--linked:last-child .droplist-section-body::before {
	content: none;
}

.droplist-item {
	color: #cac9c9;
	font-size: 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	border: 1px solid #111111a6;
	background-color: #5d586914;
	border-radius: 4px;
	padding: 4px 2px;
	cursor: pointer;
	transition: background-color 150ms ease-in-out;
}

.droplist-item:hover {
	background-color: #3233419e;
}

.droplist-item-name {
	display: flex;
	justify-content: center;
	/* align-items: center; */
	width: 100%;
	height: 32px;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
	margin-bottom: 8px;
	text-shadow: 1px 1px 2px #000000;
	pointer-events: none;
	user-select: none;
}

.droplist-item-image {
	object-fit: scale-down;
	filter: drop-shadow(2px 2px 4px black);
	image-rendering: pixelated;
	width: 80px;
	height: 80px;
	pointer-events: none;
	user-select: none;
}

.droplist-selection {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding: 20px 4px;
}

.droplist-select {
	flex-grow: 2;
	cursor: pointer;
}

.bag-section-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	flex-shrink: 0;
	background-color: black;
	border: 1px solid #1e4a5c;
	border-radius: 6px;
}

.bag-section {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	cursor: pointer;
	color: #b4f5f3;
}

.bag-section:has(input:checked) {
	background-color: #142e4e96;
}

.bag-section:hover {
	background-color: #142e4e96;
}

.bag-section input {
	display: none;
}

.droplist-section-exc {
	/* color: #00b100; */
	font-style: italic;
}

.droplist-section-socket {
	/* color: #c68eff; */
	font-style: italic;
}

.droplist-section-header-maintext {
	display: flex;
	gap: 10px;
}

.droplist-section-header-separator {
	width: 1px;
	background-color: #7a8083;
}

.droplist-section-header-separator:first-child {
	display: none;
}

.droplist-selected-description {
	padding: 20px 10px 10px;
	font-style: italic;
}

.droplist-search-button {
	display: flex;
	height: auto;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	border-radius: 6px;
}

.droplist-search-button[disabled] {
	opacity: 0.6;
	pointer-events: none;
}

.droplist-search-input-wrapper {
	padding: 0;
	flex-grow: 2;
}

.droplist-search-wrapper {
	display: flex;
	gap: 10px;
	padding: 0 4px 20px;
}

.droplist-search-bag-type-header {
	font-size: 18px;
	line-height: 22px;
	padding-bottom: 6px;
}

.droplist-search-bag-type-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 14px;
	padding-left: 14px;
}

.droplist-search-bag-type-wrapper:not(:last-child) {
	margin-bottom: 20px;
}

.droplist-search-bag-button {
	display: flex;
	cursor: pointer;
	color: #b2f2f0;
	text-decoration: underline;
	background-color: transparent;
	border: 0;
	padding: 0;
	margin: 0 auto 0 0;
}

.droplist-search-bag-button:hover {
	color: #8f8ec5;
}

.margin-top--10 {
	margin-top: 10px !important;
}

.muun-pet-colored-name .item_white {
	color: rgb(254 203 25);
}

.muun-pet-colored-name {
	color: rgb(254 203 25);
}

.item-visual-name {
	color: rgb(255 204 25);
}

.item-visual-name .item_white {
	color: rgb(255 204 25);
}

.item_visual_description {
	color: rgb(255 204 25);
	font-weight: bold;
}

#muun_equipment {
	filter: drop-shadow(2px 2px 2px black);
	display: inline-block;
	position: relative;
	background-size: 50%;
	height: 84px;
	width: calc(84px + 84px);
	position: relative;
}

#muun_main {
	position: absolute;
	top: 2px;
	left: 2px;
	width: 80px;
	height: 80px;
}

#muun_secondary {
	position: absolute;
	top: 2px;
	left: 86px;
	width: 80px;
	height: 80px;
}

.equip-toggle input {
	display: none;
}

.equip-toggle {
	--equip_toggle_width: 200px;
	--equip_toggle_elements: 2;
	position: relative;
	display: flex;
	align-items: center;
	border-radius: 6px;
	background-color: #000;
	color: #cac9c9;
	width: var(--equip_toggle_width);
	overflow: hidden;
	border: 1px solid #1e4a5c;
	margin: 0 auto 20px;
}

.equip-toggle label {
	width: 100%;
	padding: 10px;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	font-size: 14px;
}

.equip-toggle .selection {
	display: none;
	position: absolute;
	height: 100%;
	width: calc(var(--equip_toggle_width) / var(--equip_toggle_elements));
	z-index: 0;
	left: 0;
	top: 0;
	transition: .2s ease;
}

.equip-toggle label:has(input:checked) {
	color: #cac9c9;
}

.equip-toggle label:has(input:checked)~.selection {
	background-color: #142e4e96;
	display: inline-block;
}

.equip-toggle label:nth-child(1):has(input:checked)~.selection {
	transform: translateX(calc(var(--equip_toggle_width) * 0/var(--equip_toggle_elements)));
}

.equip-toggle label:nth-child(2):has(input:checked)~.selection {
	transform: translateX(calc(var(--equip_toggle_width) * 1/var(--equip_toggle_elements)));
}

.equip-toggle label:nth-child(3):has(input:checked)~.selection {
	transform: translateX(calc(var(--equip_toggle_width) * 2/var(--equip_toggle_elements)));
}

.equip-toggle label:nth-child(4):has(input:checked)~.selection {
	transform: translateX(calc(var(--equip_toggle_width) * 3/var(--equip_toggle_elements)));
}

.equip-toggle label:nth-child(5):has(input:checked)~.selection {
	transform: translateX(calc(var(--equip_toggle_width) * 4/var(--equip_toggle_elements)));
}

.equip-toggle:has(#equip-toggle-standard:checked)~#inventory>#transmog_equipment {
	display: none;
	animation: equip-hide var(--equip-animation-duration) linear;
}

.equip-toggle:has(#equip-toggle-standard:checked)~#inventory>#transmog_equipment>div {
	animation: equip-item-transmog-hide var(--equip-animation-duration) linear;
}

.equip-toggle:has(#equip-toggle-standard:not(:checked))~#inventory>#transmog_equipment {
	display: block;
	animation: equip-show var(--equip-animation-duration) linear;
}

.equip-toggle:has(#equip-toggle-standard:not(:checked))~#inventory>#transmog_equipment>div {
	animation: equip-item-transmog-show var(--equip-animation-duration) linear;
}

.equip-toggle:has(#equip-toggle-transmog:checked)~#inventory>div:not(#transmog_equipment) {
	display: none;
	animation: equip-item-standard-hide var(--equip-animation-duration) linear;
}

.equip-toggle:has(#equip-toggle-transmog:not(:checked))~#inventory>div:not(#transmog_equipment) {
	display: block;
	animation: equip-item-standard-show var(--equip-animation-duration) linear;
}

@keyframes equip-show {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes equip-hide {
	0% {
		display: block;
		opacity: 1;
	}

	100% {
		display: none;
		opacity: 0;
	}
}

@keyframes equip-item-standard-show {
	0% {
		opacity: 0;
		scale: 0.5;
	}

	100% {
		opacity: 1;
		scale: 1;
	}
}

@keyframes equip-item-standard-hide {
	0% {
		display: block;
		opacity: 1;
		scale: 1;
	}

	100% {
		display: none;
		opacity: 0;
		scale: 0.5;
	}
}

@keyframes equip-item-transmog-show {
	0% {
		scale: 2;
	}

	100% {
		scale: 1;
	}
}

@keyframes equip-item-transmog-hide {
	0% {
		scale: 1;
	}

	100% {
		scale: 2;
	}
}

.guide-section-body {
	display: flex;
	flex-direction: column;
}

.guide-section:not(:last-child) {
	margin-bottom: 20px;
}

.guide-section-name {
	font-size: 18px;
	color: #d9d9d9;
	background-color: #00000085;
	padding: 4px 15px;
}

.guide-link {
	display: block;
	font-size: 15px;
	color: #979797;
	line-height: 20px;
	padding: 6px 25px;
	cursor: pointer;
	transition: background-color 100ms linear;
}

.guide-link:hover {
	background-color: #73737330;
	text-decoration: none;
}

#guide_content {
	color: #d9d9d9;
}

.item-color-1 {
	color: rgb(125 176 252);
}

.item-color-4 {
	color: rgb(33 193 28);
}

.item-color-3 {
	color: rgb(254 203 25);
}

.item-color-2 {
	color: rgb(213 44 22);
}

.monster-range-title {
	padding: 6px 7px;
	background-color: var(--droplist-header-bg);
	border-radius: 6px;
	font-size: 12px;
	line-height: 18px;
	position: relative;
	text-shadow: 1px 1px 2px black;
}

.droplist-section-content-world {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 10px;
}


.grid-column-span-2 {
	grid-column: span 2;
}

.grid-column-span-3 {
	grid-column: span 3;
}

.grid-column-span-4 {
	grid-column: span 4;
}

.droplist-section-body-world {
	display: flex;
	flex-wrap: wrap;
}

.droplist-bag-world {
	display: none;
}

.droplist-bag-world .droplist-item {
	width: 106px;
}

.world-drop-category-toggle:has(#world-drop-category-skills:checked)~.droplist-bag[data-world-drop-bag-skills] {
	display: block;
}

.world-drop-category-toggle:has(#world-drop-category-events:checked)~.droplist-bag[data-world-drop-bag-events] {
	display: block;
}

.world-drop-category-toggle:has(#world-drop-category-jewels:checked)~.droplist-bag[data-world-drop-bag-jewels] {
	display: block;
}

.world-drop-category-toggle:has(#world-drop-category-pets:checked)~.droplist-bag[data-world-drop-bag-pets] {
	display: block;
}

.world-drop-category-toggle:has(#world-drop-category-misc:checked)~.droplist-bag[data-world-drop-bag-misc] {
	display: block;
}

.world-drop-category-toggle {
	--equip_toggle_elements: 5;
	--equip_toggle_width: calc(var(--equip_toggle_elements) * 70px);
	margin-bottom: 10px;
}

.world-drop-category-toggle label {
	padding: 7px;
}

.world-drop-category-toggle-options-1 {
	--equip_toggle_elements: 1;
}

.world-drop-category-toggle-options-2 {
	--equip_toggle_elements: 2;
}

.world-drop-category-toggle-options-3 {
	--equip_toggle_elements: 3;
}

.world-drop-category-toggle-options-4 {
	--equip_toggle_elements: 4;
}

.hot-guide-text {
	display: inline-flex;
	text-transform: uppercase;
	font-size: 10px;
	background-color: #ff6a00;
	border-radius: 4px;
	padding: 0 4px;
	font-weight: bold;
	color: black;
	line-height: 16px;
	filter: drop-shadow(0 0 4px red);
	margin-left: 5px;
}

.arena-class-selector-wrapper {
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
	margin-bottom: 20px;
}

.arena-table-class {
	display: none;
}

.arena-menu-label:hover {
	text-decoration-color: #ff6262 !important;
}

.arena-menu-label span {
	color: #ff6262;
	text-shadow: 0 0 #000000;
}

.arena-menu-label-disabled {
	opacity: 0.4;
	pointer-events: none;
	cursor: default;
}

.guides-menu-label:hover {
	text-decoration-color: #d58f34 !important;
}

.guides-menu-label span {
	color: #d58f34;
	text-shadow: 0 0 #000000;
}

.market-menu-label:hover {
	text-decoration-color: #ff4e4e !important;
}

.market-menu-label span {
	color: #ff4e4e;
	text-shadow: 0 0 #000000;
}

.rich-text-wrapper {

	ul,
	ol {
		padding-left: 35px;
	}

	table,
	th,
	td {
		border: 1px solid #748b8f;
		border-collapse: collapse;
	}

	table {
		border-width: 2px;
		width: 100%;
		color: #c7c7c7;
		font-size: 15px;
	}

	table tbody tr:nth-child(odd) {
		background-color: #50505017;
	}

	th,
	td {
		padding: 6px;
		text-align: left;
	}

	td {
		border-bottom-style: dashed;
		border-top-style: dashed;
	}

	hr {
		display: block;
		margin: 30px 0;
		opacity: 0.5;
	}

	p {
		margin-bottom: 0px;
	}
}

/* Tournament Bracket Styles - Dynamic Design */
.bracket-container {
	display: none;
	align-items: flex-start;
	/* Remove fixed width/height and scrolling */
	width: auto;
	min-height: unset;
	max-height: unset;
	overflow: visible;
	background: linear-gradient(90deg, #13263d6b 30%, #85150d78 100%);
	border-radius: 0 0 8px 8px;
	margin: 0 auto 20px;
	position: relative;
	padding: 10px;
	box-sizing: border-box;
	overflow-x: auto;
}

.bracket-container--show {
	display: flex;
}

/* Bracket rounds layout - Dynamic spacing with flexbox */
.bracket-round {
	display: flex;
	flex-direction: column;
	position: relative;
	justify-content: space-between;
	/* Even vertical spacing */
	width: 100px;
	margin-right: 15px;
	min-height: 100px;
	padding: 10px 0;
	box-sizing: border-box;
	gap: 16px;
	/* Add vertical gap between matches */
	flex-shrink: 0;
}

.bracket-round:last-child {
	margin-right: 0;
}

/* Match boxes - Dynamic design */
.bracket-match {
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	position: static;
	/* box-shadow: 0 0px 3px rgb(255 255 255 / 33%); */
	transition: all 0.2s ease;
	width: 100%;
	margin: 0;
	flex-shrink: 0;
	overflow: hidden;
	border: 1px solid #5e5e5e;
}

/* Player entries - Compact */
.bracket-player {
    flex: 1;
    display: flex;
    align-items: center;
    /* border-bottom: 1px solid #1e4a5c; */
    /* background: #fafafa; */
    transition: background-color 0.2s ease;
    font-size: 11px;
    height: 19px;
}

.bracket-player:last-child {
	border-bottom: none;
}

.bracket-player a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    width: 100%;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 4px;
    font-size: 13px;
    color: #a5a5a5;
    text-shadow: 0 0 4px black;
}


/* Winner highlighting */
.bracket-player-winner {
    background-color: #7128288a;
}

.bracket-player-winner a {
	color: whitesmoke !important;
}

/* Special styling for final round winner with crown */
.bracket-player-winner a .bracket-crown {
	color: #ffd700;
	/* text-shadow: 0 0 3px rgba(255, 215, 0, 0.8);
	filter: drop-shadow(0 0 2px rgba(255, 215, 0, 0.6)); */
	float: left;
    margin-top: -3px;
	margin-left: -2px;
	font-size: 14px;
}


/* Hover highlighting */
.arena-highlighted {
	background: #914831 !important;
}

.bracket-class-wrapper {
	box-shadow: 0 0 10px black;
}

/* Tournament bracket title improvements */
.bracket-class-title {
	background: linear-gradient(90deg, #13263d 30%, #85150d 100%);
	color: white;
	font-size: 24px;
	font-weight: bold;
	margin: 20px 0 0;
	padding: 5px 15px;
	border-radius: 8px;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	cursor: pointer;
}

.bracket-class-title:has(~ .bracket-container--show) {
	border-bottom-left-radius: 0;
	border-bottom-right-radius: 0;
}

.bracket-class-title:hover {
	filter: brightness(1.3);
}

.bracket-class-title-icon {
	float: right;
    rotate: 90deg;
    scale: 0.5 0.9;
    image-rendering: pixelated;
    text-rendering: geometricprecision;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	transition: rotate 0.1s ease;
}

.bracket-class-title-icon--close {
	rotate: -90deg;
}

.arena-history-selector-wrapper {
	grid-template-columns: repeat(9, 1fr);
}

.item-tooltip-line-color-0 {
	color: #e5e6e6;
}

.item-tooltip-line-color-1 {
	color: #7fb1fe;
}

.item-tooltip-line-color-2 {
	color: #ff3319;
}

.item-tooltip-line-color-3 {
	color: #fecb19;
}

.item-tooltip-line-color-4 {
	color: #17e673;
}

.item-tooltip-line-color-11 {
	color: #b571b5;
}

.item-tooltip-line-color-12 {
	color: #b571b5;
}

#rules_content {
	background-color: rgb(5, 9, 13);
}