@import "ui.css";
@import "notice.css";
@import "validation.css";


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

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

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

html, body {
  position: relative;
}

body {
  background: url(../images/page-bg-xmass.jpg) center top no-repeat;
  width: 100%;
  background-color: #0b1121;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #20162b;
}

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

a:hover {
  text-decoration: none;
  color: #fadfdf;
}

p {
  margin-bottom: 20px;
}

h1, h2, h3 {
  color: #20162b;
  margin-bottom: 20px;
  line-height: 1.2;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 30px;
}

h3 {
  font-size: 20px;
}

table {
  width: 100%;
  margin-bottom: 20px;
  border: 1px solid #c8b3ca;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
table td {
  border-collapse: collapse;
  padding: 25px 40px;
  text-align: center;
}
table tr:nth-child(odd) {
  background: #0b1121;
  color: #fff;
}
table tr:nth-child(even) {
  background: #1e2b3d;
  color: #fff;
}
table thead {
  background: #0b1121;
  color: #f8e2e2;
  text-shadow: 0px 0px 15px rgba(248, 226, 226, 0.4);
}
table thead tr {
  background: #fa413f !important;
}

img {
  max-width: 100%;
}

caption {
  margin-bottom: 15px;
}

select {
  background: rgba(33, 19, 48, 0.5);
  min-width: 150px;
  border: 1px solid #4c2653;
  color: #ceb3ea;
  padding: 12px 40px 12px 20px;
  position: relative;
  -webkit-appearance: none;
  background-image: url(../images/drop-down-icon.png);
  background-position: right 20px center;
  background-repeat: no-repeat;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  -ms-appearance: none;
  appearance: none !important;
  font-size: 14px;
  cursor: pointer;
}
select option {
  background: #553c6b;
}

input, textarea {
  background: #fffeff;
  border: 1px solid #bb99ab;
  color: #20162b;
  padding: 25px 25px;
  position: relative;
  text-align: center;
  font-size: 18px;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  border-radius: 5px;
  transition: 0.3s;
}
input:hover, textarea:hover {
  border: 1px solid #e55454;
  box-shadow: 0px 0px 15px 0px rgba(229, 84, 84, 0.3);
}
input:focus, textarea:focus {
  border: 1px solid #e55454;
  box-shadow: 0px 0px 15px 0px rgba(229, 84, 84, 0.3);
}

button, .button {
  transition: all 0.3s ease;
  cursor: pointer;
  background: url(../images/button.png) no-repeat;
  height: 161px;
  width: 430px;
  border: none;
  color: #fdfbfa;
  font-size: 30px;
  text-shadow: 0px 0px 10px rgba(253, 251, 250, 0.5);
  position: relative;
  z-index: 1;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif;
}
button:hover, .button:hover {
  filter: drop-shadow(0px 0px 10px rgba(194, 51, 51, 0.4)) brightness(120%);
  color: #fdfbfa;
}

.button {
  display: inline-block;
  text-decoration: none;
  line-height: 161px;
}

.button-small {
  background: url(../images/button-small.png) no-repeat;
  width: 136px;
  height: 70px;
  line-height: 70px;
  color: #fff;
  font-size: 18px;
}

.content-button {
  background: url(../images/button-dark.png) no-repeat;
}
.content-button:hover {
  filter: brightness(120%);
}

:focus {
  outline: none;
}

::-webkit-input-placeholder {
  color: #20162b;
}

::-moz-placeholder {
  color: #20162b;
}

:-moz-placeholder {
  color: #20162b;
}

:-ms-input-placeholder {
  color: #20162b;
}

.wrapper {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.container {
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  height: 100%;
}

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

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

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

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

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

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

#section0 {
  background: url(../images/background-1.gif) no-repeat;
  background-size: cover;
}

#section1 {
  background: url(../images/news-bg.jpg) center no-repeat;
  background-size: cover;
}

#section2 {
  background: url(../images/rank-bg.jpg) center no-repeat;
  background-size: cover;
}

#section3 {
  background: url(../images/features-bg.jpg) center no-repeat;
  background-size: cover;
}

.section {
  transform: scale(1);
}
.section .scroll {
  opacity: 1;
}

.section.active {
  transform: scale(1);
  animation: scale 0.8s linear;
}
.section.active .scroll {
  opacity: 1;
  animation: op 2s linear;
}

@keyframes scale1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes op {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.scroll {
  position: fixed;
  right: 80px;
  top: 600px;
  transition: 5s;
  z-index: 9;
}
.scroll a {
  display: block;
  color: #fff;
}
.scroll a .scroll-animation {
  width: 22px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 14px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.scroll a .scroll-animation:after {
  content: "";
  position: absolute;
  background-color: #fff;
  left: 50%;
  margin-left: -1px;
  height: 7px;
  width: 2px;
  animation: scroll 2s linear infinite;
}
.scroll a p {
  font-size: 10px;
  position: relative;
  margin-top: 15px;
  transition: 0.3s;
}
.scroll a p:after {
  content: "";
  background: url(../images/down-icon.png) no-repeat;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  margin-top: 10px;
  height: 6px;
  width: 9px;
  transition: 0.3s;
}
.scroll a:hover p {
  margin-top: 8px;
}
.scroll a:hover p:after {
  margin-top: 5px;
}

@keyframes scroll {
  0% {
    top: -50px;
  }
  100% {
    top: 50px;
  }
}
.scroll-bottom a p:after {
  top: -80px;
  transform: rotate(180deg);
}

.rightInfo {
  position: fixed;
  z-index: 2;
  right: 32px;
  top: 160px;
}
.rightInfo-block {
  width: 115px;
  padding: 25px 0px;
  background: linear-gradient(45deg, #ff921d 0%, #f2c21b 100%);
  border-radius: 10px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 15px;
}
.rightInfo-block p {
  margin-bottom: 10px;
}
.rightInfo-online {
  font-size: 12px;
  color: #0b1121;
  border: solid #0b1121;
}
.rightInfo-online p {
  font-size: 24px;
  color: #c1fb96;
}
.rightInfo-time {
  font-size: 30px;
  color: #fa413f;
  border: solid #0b1121;
}
.rightInfo-time p {
  font-size: 14px;
  color: #0b1121;
}
.rightInfo-time_your {
  margin-bottom: 50px;
}

.menuBlock {
  position: fixed;
  width: 100%;
  height: 85px;
  top: 0;
  left: 0;
  z-index: 3;
  box-shadow: 10px 0px 10px 0px rgb(26 24 33 / 30%);
  background: linear-gradient(90deg, #0b1121 0%, #1e2b3d 100%);
}

.menuContainer {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menuContent ul {
  display: flex;
  align-items: center;
}
.menuContent ul li {
  margin: 0px 10px;
  transition: 0.3s;
}
.menuContent ul li a {
  display: block;
  height: 85px;
  line-height: 85px;
  color: #e4e1e4;
  font-size: 18px;
  padding: 0px 45px;
  position: relative;
}
.menuContent ul li a:before {
  content: "";
  width: 4px;
  height: 4px;
  background: #ff921d;
  position: absolute;
  left: 30px;
  top: 50%;
  margin-top: -2px;
  transform: rotate(45deg);
}
.menuContent ul li a:hover:before {
  background: #fa413f;
  box-shadow: 0px 0px 10px 0px rgb(26 24 33 / 30%);
}
.menuContent ul li a.show:before {
  background: #fff;
  box-shadow: 0px 0px 10px 0px rgb(26 24 33 / 30%);
}
.menuContent ul li a.show {
  background: #fa413f;
  color: #fff;
  text-shadow: 0px 0px 30px rgb(26 24 33 / 30%);
}
.menuContent ul li a:hover {
  color: #1e2b3d;
  background: linear-gradient(90deg, #ff921d 0%, #f2c21b 100%);
}
.menuContent ul li ul {
  position: absolute;
  width: 100%;
  left: 0;
  background: #fa413f;
  display: none;
  text-align: center;
}
.menuContent ul li ul li {
  display: inline-block;
}
.menuContent ul li ul li a {
  font-size: 16px;
}
.menuContent ul li ul li a:before {
  display: none;
}
.menuContent ul li ul li:hover {
  background: rgba(207, 139, 139, 0.6);
  color: #fff;
  text-shadow: 0px 0px 30px rgba(249, 63, 63, 0.9);
}
.menuContent ul li ul li:hover a {
  color: #fff;
}

.menuContent .active a {
  background: rgba(72, 19, 19, 0.6);
  color: #fff;
  text-shadow: 0px 0px 30px rgba(249, 63, 63, 0.9);
}
.menuContent .active a:before {
  background: #fa413f;
  box-shadow: 0px 0px 10px 0px rgba(220, 41, 41, 0.6);
}

.dropdown-menu-l a:after {
  content: "";
  background: url(../images/drop-down-icon.png) no-repeat;
  width: 11px;
  height: 5px;
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -3px;
}
.dropdown-menu-l ul li a:after {
  display: none;
}

.dark-button {
  color: #fa413f;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #fa413f;
  background: #1e2b3d;
  display: inline-block;
  padding: 10px 30px;
  cursor: pointer;
}
.dark-button:hover {
  background: linear-gradient(90deg, #ff921d 0%, #f2c21b 100%);
}

.login {
  text-transform: uppercase;
}

.homeBlock {
  text-align: center;
  position: absolute;
  width: 100%;
  z-index: 5;
  top: 440px;
}

.homeButton {
  display: flex;
  justify-content: center;
}
.homeButton a {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  width: 430px;
  height: 161px;
  text-transform: uppercase;
  font-size: 30px;
  letter-spacing: 2px;
}
.homeButton a:hover {
  filter: brightness(120%);
}
.homeButton a span {
  display: block;
  width: 100%;
  font-size: 14px;
  color: #471212;
  letter-spacing: normal;
  text-transform: none;
  margin-top: 4px;
}
.homeButton .download {
  background: url(../images/button.png) no-repeat;
  text-shadow: 0px 0px 20px #fff;
}
.homeButton .register {
  background: url(../images/button-purple.png) no-repeat;
  text-shadow: 0px 0px 20px #0b1121;
}

.fp-tableCell {
  display: block;
}

.block {
  width: 100%;
  max-width: 640px;
  padding-top: 170px;
}
.block h1 {
  font-size: 48px;
  color: #fff;
  position: relative;
  margin-left: 50px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0px;
}
.block h1:before {
  content: "";
  position: absolute;
  background: #1e2b3d;
  width: 3px;
  height: calc(100% + 8px);
  top: -4px;
  left: -22px;
}

.swiper-container {
  width: 100%;
  height: 100%;
  margin-left: 0px;
}

.swiper-slide {
  display: flex;
  background: #251521;
}
.swiper-slide img {
  display: block;
  max-height: 250px;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  width: auto;
  padding-left: 20px;
  padding-bottom: 5px;
}

.swiper-pagination-bullet {
  width: 25px;
  height: 4px;
  border-radius: 6px;
  background: #9f0707;
  opacity: .2;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #9f0707;
}

.newsTabBlock {
  background: linear-gradient(90deg, #0b1121 0%, #1e2b3d 100%);
  padding: 30px;
  width: 100%;
  border-top: 1px solid #ff921d;
  border-left: 1px solid #ff921d;
  border-right: 1px solid #ff921d;
  border-bottom: 1px solid #ff921d;
}

.newsTabs {
  display: flex;
}
.newsTabs a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  width: 30%;
  color: #edd9fe;
  font-size: 18px;
  background: linear-gradient(90deg, #ff921d 0%, #f2c21b 100%);
  cursor: pointer;
  border-right: 1px solid #3c2331;
  font-weight: 400;
}
.newsTabs a:hover {
  background: linear-gradient(90deg, #f2c21b 0%, #ff921d 100%);
  text-shadow: 0px 0px 14px #f95f5f;
}
.newsTabs a.active {
  background: linear-gradient(90deg, #ff921d 0%, #f2c21b 100%);
  text-shadow: 0px 0px 14px #f95f5f;
}
.newsTabs a:last-child {
  width: 10%;
  color: #fa413f;
  font-size: 22px;
  border-right: 0px;
}
.newsTabs a:last-child:hover {
  color: #fff;
}

.tabsBlock {
  padding: 15px;
  display: none;
}
.tabsBlock.active {
  display: block;
  animation: opas 0.5s linear;
}

@keyframes opas {
  0% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
.color-red {
  color: #fa413f;
}

.color-blue {
  color: #3da6f0;
}

.color-purple {
  color: #dd3df0;
}

.news {
  border-bottom: 1px dotted rgba(255, 255, 255, 0.08);
  padding: 0px 10px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.news a {
  color: #fadfdf;
  line-height: 1.2;
}
.news a:hover {
  text-decoration: underline;
}
.news-date {
  color: #fa413f;
  font-size: 14px;
}

.blockTitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.rankBlock {
  max-width: 509px;
}
.rankBlock h1 {
  margin-left: 22px;
}

.topBlock {
  padding-top: 30px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.topPlayer {
  height: 137px;
  width: 100%;
  position: relative;
  margin-bottom: 25px;
  box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 40px;
  transition: 0.4s;
}
.topPlayer:hover {
  transform: scale(1.05);
}
.topPlayer .topNumber {
  position: absolute;
  left: -10px;
  top: 50%;
  margin-top: -10px;
  width: 20px;
  height: 20px;
  line-height: 16px;
  color: #4d2716;
  font-size: 14px;
  text-align: center;
  transform: rotate(-45deg);
  font-weight: 600;
}
.topPlayer .topNumber span {
  transform: rotate(45deg);
  position: relative;
  display: block;
  padding-top: 1px;
}

.topInfo {
  font-size: 30px;
  color: #ffefd7;
  font-weight: 600;
}
.topInfo p {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 400;
}
.topInfo sup {
  color: #f42a2a;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  margin-left: 3px;
  margin-top: -3px;
}

.topName {
  width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-bottom: 4px;
}

.score {
  color: #b79f9f;
}

/* RANKING BANNER */
.rank-sm{
	background: url(../images/ranking/sm.jpg) right center no-repeat;
}
.rank-dk{
	background: url(../images/ranking/dk.jpg) right center no-repeat;
}
.rank-mg{
	background: url(../images/ranking/mg.jpg) right center no-repeat;
}
.rank-rf{
	background: url(../images/ranking/rf.jpg) right center no-repeat;
}
.rank-dl{
	background: url(../images/ranking/dl.jpg) right center no-repeat;
}
.rank-sl{
	background: url(../images/ranking/sl.jpg) right center no-repeat;
}
.rank-gl{
	background: url(../images/ranking/gl.jpg) right center no-repeat;
}
.rank-rw{
	background: url(../images/ranking/rw.jpg) right center no-repeat;
}
.rank-elf{
	background: url(../images/ranking/elf.jpg) right center no-repeat;
}

.rank-lem{
	background: url(../images/ranking/lem.jpg) right center no-repeat;
}

.rank-ik{
	background: url(../images/ranking/ik.jpg) right center no-repeat;
}

.rank-km{
	background: url(../images/ranking/km.jpg) right center no-repeat;
}

.rank-gc{
	background: url(../images/ranking/gc.html) right center no-repeat;
}


.player_1 {
  background-color: #8f0d0d;
}
.player_1 .topNumber {
  background: #f7bb58;
  border: 1px solid #f8d394;
  box-shadow: 0px 0px 12px 2px #f7bb58;
}
.player_1 .nickName {
  color: #ef3737;
}

.player_2 {
  background-color: #183784;
}
.player_2 .topNumber {
  background: #c6b9b9;
  border: 1px solid #d2c7c6;
  box-shadow: 0px 0px 12px 2px #c6b9b9;
}
.player_2 .nickName {
  color: #37a3ef;
}

.player_3 {
  background-color: #631266;
}
.player_3 .topNumber {
  background: #c76230;
  border: 1px solid #e48558;
  box-shadow: 0px 0px 12px 2px #cd6d39;
}
.player_3 .nickName {
  color: #bd37ef;
}

.all-rank {
  text-align: center;
  padding-top: 15px;
}

.gameBlock {
  max-width: 600px;
}

.media {
  display: flex;
  flex-wrap: wrap;
  margin-right: -8px;
}

.mediaBlock {
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.3);
  width: calc(50% - 16px);
  margin: 8px;
  position: relative;
  display: block;
  background: #11090c;
  overflow: hidden;
  height: 240px;
  transition: all 0.5s linear;
}
.mediaBlock-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-position: center top;
  background-size: cover;
  height: 240px;
}
.mediaBlock-top:before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.34);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mediaBlock-top:after {
  content: "";
  position: absolute;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 10%, rgba(0, 0, 0, 0));
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mediaBlock-top img {
  display: block;
  width: 100%;
}
.mediaBlock-top p {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: #fdfbfa;
  font-weight: 600;
}
.mediaBlock-bottom {
  position: absolute;
  left: 0;
  top: 240px;
  width: 100%;
  height: 100%;
  display: block;
  background-position: center top;
  background-size: cover;
  height: 240px;
}
.mediaBlock-bottom_info {
  text-align: center;
}
.mediaBlock-bottom_info p {
  font-weight: 400;
  margin-bottom: 0px;
  margin-top: 10px;
}

.mediaBlock:hover .mediaBlock-top {
  top: -240px;
}
.mediaBlock:hover .mediaBlock-bottom {
  top: 0px;
  display: flex;
}
.mediaBlock:hover .mediaBlock-bottom:before {
  display: none;
}
.mediaBlock:hover .mediaBlock-bottom:after {
  display: none;
}
.mediaBlock:hover .mediaBlock-bottom img {
  width: 60px;
  margin: 0 auto;
}

.copyright {
  color: #9f829b;
  font-size: 14px;
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 60px;
  line-height: 1.4;
}

.modal_div {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  opacity: 0;
  z-index: 999;
}

.modal-div {
  background: #0b1121;
  padding: 40px 55px 40px 55px;
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.2);
  max-width: 400px;
  width: 100%;
  min-height: 470px;
  position: relative;
}

.modal_div .modal_close {
  background: url(../images/close-icon.png) no-repeat;
  width: 24px;
  height: 28px;
  position: absolute;
  top: 35px;
  right: 50px;
  cursor: pointer;
}

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

.modalTitle {
  border-bottom: 1px solid rgba(126, 86, 133, 0.12);
  padding: 0px 15px 20px 15px;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 30px;
}
.modalTitle h2 {
    background: -webkit-linear-gradient(#f2c21b, #ff921d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 0px 0px 20px #ff921d;
}

.modal-form {
  padding: 0px 0px 20px 0px;
}
.modal-form input {
  width: 100%;
  background: linear-gradient(90deg, #ff921d 0%, #f2c21b 100%);
  box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid #fa413f;
  color: #1e2b3d;
  font-size: 16px;
  padding: 18px 30px;
}
.modal-form input::-webkit-input-placeholder {
  color: #b9a7bc;
}
.modal-form input::-moz-placeholder {
  color: #b9a7bc;
}
.modal-form input:-moz-placeholder {
  color: #b9a7bc;
}
.modal-form input:-ms-input-placeholder {
  color: #b9a7bc;
}

.enter-button {
  margin-bottom: 15px;
}

.enter-button button, .enter-button .button {
  width: 290px;
  background-size: 290px 110px;
  height: 110px;
  font-size: 24px;
}

.form-links {
  text-align: center;
  font-size: 14px;
  color: #b78e8e;
}
.form-links p {
  margin-top: 15px;
  margin-bottom: 0px;
}

.forget {
  color: #f45959;
}

.register {
  color: #ffe4e4;
}

.modal-event .modal-div {
  max-width: 430px;
  display: flex;
  flex-wrap: wrap;
  padding: 0px;
  min-height: 600px;
}

.modal-event .modalCastle {
  width: 45%;
  background: #571919;
  padding: 35px 50px;
  position: relative;
}

.modal-event .modalContent {
  width: 100%;
  padding: 35px 50px;
}

.modal-event .modalTitle {
  margin-left: -50px;
  margin-right: -50px;
  padding: 0px 50px 20px 50px;
}

.catsleContent {
  text-align: center;
}

.actual-owner {
  color: #bd8888;
  font-size: 14px;
  margin-bottom: 20px;
}

.castl-img {
  margin-bottom: 20px;
}
.castl-img img {
  max-width: 110px;
}

.castl-name {
  color: #e1e1e2;
  font-size: 24px;
  font-weight: 600;
}

.nextBattle {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #2d0a0a;
  height: 140px;
  width: 100%;
}

.nextBattle-div {
  color: #bd8888;
  font-size: 16px;
  text-align: center;
}
.nextBattle-div p {
  color: #ff7474;
  font-size: 30px;
  margin-top: 10px;
  margin-bottom: 0px;
}

.evetsTabs {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.eventsTab-button {
  display: block;
  width: calc(33% - 20px);
  margin: 0px 10px 10px 10px;
  padding: 14px 0px;
  color: #8f5ca7;
  font-size: 16px;
  border: 1px solid #783888;
  border-radius: 4px;
  text-align: center;
  background: #2e2334;
  cursor: pointer;
  transition: 0.3s;
}
.eventsTab-button.active {
  color: #fa2c2c;
  border: 1px solid #fa2c2c;
  background: #1a0d0d;
}
.eventsTab-button:hover {
  color: #fa2c2c;
  border: 1px solid #fa2c2c;
  background: #1a0d0d;
}

.eventsTabsBlock {
  padding-top: 20px;
  display: none;
}
.eventsTabsBlock ul li {
  padding: 10px 35px 10px 10px;
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  color: #f8f6f6;
}
.eventsTabsBlock ul li span {
  color: #e086f0;
  font-size: 18px;
}
.eventsTabsBlock.active {
  display: block;
  animation: op 0.5s linear;
}

.scrollbar-inner {
  max-height: 270px;
}

/*************** SCROLLBAR BASE CSS ***************/
.scroll-wrapper {
  overflow: hidden !important;
  padding: 0 !important;
  position: relative;
}

.scroll-wrapper > .scroll-content {
  border: none !important;
  box-sizing: content-box !important;
  height: auto;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none !important;
  overflow: scroll !important;
  padding: 0;
  position: relative !important;
  top: 0;
  width: auto !important;
}

.scroll-wrapper > .scroll-content::-webkit-scrollbar {
  height: 0;
  width: 0;
}

.scroll-element {
  display: none;
}

.scroll-element, .scroll-element div {
  box-sizing: content-box;
}

.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
  display: block;
}

.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
  cursor: default;
}

.scroll-textarea {
  border: 1px solid #cccccc;
  border-top-color: #999999;
}

.scroll-textarea > .scroll-content {
  overflow: hidden !important;
}

.scroll-textarea > .scroll-content > textarea {
  border: none !important;
  box-sizing: border-box;
  height: 100% !important;
  margin: 0;
  max-height: none !important;
  max-width: none !important;
  overflow: scroll !important;
  outline: none;
  padding: 2px;
  position: relative !important;
  top: 0;
  width: 100% !important;
}

.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
  height: 0;
  width: 0;
}

/*************** SIMPLE INNER SCROLLBAR ***************/
.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div {
  border: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
}

.scrollbar-inner > .scroll-element div {
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-x {
  bottom: 2px;
  height: 8px;
  left: 0;
  width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-y {
  height: 100%;
  right: 2px;
  top: 0;
  width: 4px;
}

.scrollbar-inner > .scroll-element .scroll-element_outer {
  overflow: hidden;
}

.scrollbar-inner > .scroll-element .scroll-element_track {
  background-color: #1c121e;
}

.scrollbar-inner > .scroll-element .scroll-bar {
  background-color: #a91d1d;
}

.scrollbar-inner > .scroll-element:hover .scroll-bar {
  background-color: #919191;
}

.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
  background-color: #919191;
}

/* update scrollbar offset if both scrolls are visible */
.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
  left: -12px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
  top: -12px;
}

.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
  left: -12px;
}

.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
  top: -12px;
}

.button-btn {
  display: none;
}
.button-btn span {
  display: block;
  width: 30px;
  height: 3px;
  background: rgba(255, 255, 255, 0.9);
  margin: 5px 0px;
}

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

.page-logo {
  position: absolute;
  bottom: 110px;
  width: 100%;
  left: 0;
  text-align: center;
}

.contentWrapper {
  position: relative;
}

.contentWrapper-title {
  background: linear-gradient(90deg, #0b1121 0%, #1e2b3d 100%);
  border-top: 1px solid #ff921d;
  padding: 40px 60px;
  text-align: left;
  box-shadow: 0px 15px 20px 0px rgba(163, 15, 17, 0.3);
  position: relative;
  z-index: 1;
}
.contentWrapper-title h1 {
  margin-bottom: 0px;
  background: -webkit-linear-gradient(#f2c21b, #ff921d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 30px;
  text-shadow: 0px 0px 20px #ff921d;
}

.content {
  background: linear-gradient(90deg, #ff921d 0%, #f2c21b 100%);
  padding: 50px 50px;
  margin-bottom: 100px;
  line-height: 1.4;
}
.content h2 {
  font-weight: 600;
  margin-bottom: 50px;
}
.content h3 {
  font-weight: 600;
  margin-bottom: 30px;
}
.content a {
  color: #fff;
  text-decoration: none;
}
.content a:hover {
  text-decoration: none;
}
.content ul {
  padding-left: 20px;
  margin-left: 20px;
  margin-bottom: 20px;
}
.content ul li {
  list-style: square;
  padding: 2px 0px;
}

.register-content {
  text-align: center;
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  position: relative;
  padding: 50px 0px;
}

.chekBlock {
  margin-bottom: 30px;
}

.checkbox {
  display: inline-block;
  padding-left: 35px;
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
  user-select: none;
  color: #4c404d;
  font-size: 16px;
}

.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: -4px;
  left: 0;
  height: 26px;
  width: 26px;
  background-color: #7e5685;
  border-radius: 50%;
}

.checkbox input:checked ~ .checkmark {
  background-color: #7e5685;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox input:checked ~ .checkmark:after {
  display: block;
}

.checkbox .checkmark:after {
  left: 6px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
}

footer {
  background: linear-gradient(90deg, #0b1121 0%, #1e2b3d 100%);
  padding: 100px 10px;
  text-align: center;
  color: #e1e1e2;
  font-size: 16px;
  line-height: 1.4;
}

.download-content {
  width: 100%;
  max-width: 890px;
  margin: 0 auto;
  position: relative;
  padding: 50px 0px;
}

.gameSizeTitle {
  color: #917274;
  font-size: 18px;
  margin-bottom: 40px;
}
.gameSizeTitle p {
  font-size: 30px;
  color: #582f31;
  margin-bottom: 10px;
}

.downloadLinksBlock {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 70px;
}
.downloadLinksBlock a {
  text-decoration: none;
  width: 205px;
  height: 175px;
  text-align: center;
  color: #7b5d5d;
  padding-top: 40px;
  background: #fff;
  border: 1px solid #c99aa9;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  display: block;
  margin: 10px 10px;
}
.downloadLinksBlock a p {
  margin-bottom: 0px;
  margin-top: 20px;
}
.downloadLinksBlock a img {
  height: 65px;
}
.downloadLinksBlock a:hover {
  border-radius: 20%;
}

.systemBlock {
  margin-bottom: 70px;
}
.systemBlock h3 {
  text-align: center;
  color: #51364e;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 40px;
}

.updateBlock {
  margin-bottom: 70px;
  text-align: center;
}
.updateBlock h3 {
  color: #51364e;
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
}
.updateBlock p {
  color: #8e798e;
  margin-bottom: 10px;
}
.updateBlock button, .updateBlock .button {
  font-size: 24px;
}

.select-server-register {
	background: rgba(33, 19, 48, 0.5);
    width: 100%;
    border: 1px solid #4c2653;
    color: #ceb3ea;
    padding: 12px 40px 12px 20px;
    position: relative;
    -webkit-appearance: none;
    background-image: url(../images/drop-down-icon.png);
    background-position: right 20px center;
    background-repeat: no-repeat;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow: '';
    -ms-appearance: none;
    appearance: none !important;
    font-size: 18px;
    cursor: pointer;
	}
	
.content .dark-button {
	color: #fa413f;
	text-decoration: none;
}

.main-tr th{
	padding: 10px;
}
	
.button-xs {
	transition: all 0.3s ease;
	cursor: pointer;
	background: url(../images/button.png) no-repeat;
	height: 161px;
	width: 430px;
	border: none;
	color: #fdfbfa;
	font-size: 32px;
	text-shadow: 0px 0px 10px rgba(253, 251, 250, 0.5);
	position: relative;
	z-index: 1;
	text-align: center;
	text-transform: uppercase;
	font-family: 'Open Sans', sans-serif;
	zoom: 0.4;
}

.package-name{
	border-collapse: collapse;
	padding: 15px 20px;
	text-align: center;
	background: #972f30;
	border-top: 1px solid #b14b52;
	padding: 20px 30px;
	text-align: left;
	box-shadow: 0px 15px 20px 0px rgba(163, 15, 17, 0.3);
	position: relative;
	z-index: 1;
	width: 180px;
	color: white;
}


/* Web */

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

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

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

.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.html') 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-family: Verdana;
    font-size: 10px;
    clear: both;
    padding-bottom: 10px;
}

.QapTcha .dropSuccess {
    color: #4e8b37
}

.QapTcha .dropError {
    color: #bb2828
}

.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.html');
    background-position: left center;
}

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

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

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

/* ------------------- 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: #8e9091;
    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 #660000;
    background: #f7f7f7;
    color: #660000;
    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 #660000;
    color: #660000;
}

#pagination ul {
    height: 21px;
}

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

/* ------------------- 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.html);
    background-size: 136px 34px;
    height: 34px;
}

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

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

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

.items {
    text-align: center;
}

.items a {
    color: #FFFFFF;
    font-family: Verdana, Helvetica, sans-serif;
    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-family: Arial, Helvetica, sans-serif;
    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-family: Arial, Helvetica, sans-serif;
    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-family: Arial, Helvetica, sans-serif;
    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.html) 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.html) no-repeat;
    width: 129px;
    height: 36px;
    line-height: 36px;
    z-index: 500;
}

.item_info .info {
    padding-left: 5px;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    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.html);
    width: 155px;
    height: 42px;
    font-family: Arial, Helvetica, sans-serif;
    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-family: Arial, Helvetica, sans-serif;
    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 {
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.6);
    padding: 5px;
    -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: 1px solid rgba(0, 0, 0, 0.15);
    display: none;
}

#events div {
    padding: 3.5px;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 12px;
	color: #fff;
}

#events div small {
    float: right;

}

.offline {
    color: red;
}

.online {
    color: green;
}

#timer_div_title {
    position: absolute;
    height: 16px;
    width: 210px;
    top: 10px;
    left: 560px;
    font-size: 16px;
    text-align: center;
}

#timer_div_time {
    position: absolute;
    height: 70px;
    width: 220px;
    top: 30px;
    left: 560px;
}

.timmer_inner_block {
    width: 50px;
    height: 65px;
    background-color: #fff;
    -moz-border-radius: .5em;
    -webkit-border-radius: .5em;
    border-radius: .5em;
    margin: 2px;
    float: left;
    opacity: 0.2;

}

#timer_div_time .timmer_inner_block .title {
    text-align: center;
}

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

.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;
    __width: 100%;
}

.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-family: Verdana, Arial, Helvetica, sans-serif;
    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;
}

.selectvip {
    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;

}

.selectvip: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;
}

#inventory div{
	cursor: pointer;
}

#inventory div:hover{
	padding-top: 1px;
}

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

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

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

.square img {
    width: 100%;
    height: 100%;
}

.f16 .flag {
    display: inline-block;
    height: 16px;
    width: 16px;
    vertical-align: text-top;
    line-height: 16px;
    background: url(../images/flags.html) no-repeat;
}

.f16 ._African_Union {
    background-position: 0 -16px;
}

.f16 ._Arab_League {
    background-position: 0 -32px;
}

.f16 ._ASEAN {
    background-position: 0 -48px;
}

.f16 ._CARICOM {
    background-position: 0 -64px;
}

.f16 ._CIS {
    background-position: 0 -80px;
}

.f16 ._Commonwealth {
    background-position: 0 -96px;
}

.f16 ._England {
    background-position: 0 -112px;
}

.f16 ._European_Union, .f16 .eu {
    background-position: 0 -128px;
}

.f16 ._Islamic_Conference {
    background-position: 0 -144px;
}

.f16 ._Kosovo {
    background-position: 0 -160px;
}

.f16 ._NATO {
    background-position: 0 -176px;
}

.f16 ._Northern_Cyprus {
    background-position: 0 -192px;
}

.f16 ._Northern_Ireland {
    background-position: 0 -208px;
}

.f16 ._Olimpic_Movement {
    background-position: 0 -224px;
}

.f16 ._OPEC {
    background-position: 0 -240px;
}

.f16 ._Red_Cross {
    background-position: 0 -256px;
}

.f16 ._Scotland {
    background-position: 0 -272px;
}

.f16 ._Somaliland {
    background-position: 0 -288px;
}

.f16 ._Tibet {
    background-position: 0 -304px;
}

.f16 ._United_Nations {
    background-position: 0 -320px;
}

.f16 ._Wales {
    background-position: 0 -336px;
}

.f16 .ad {
    background-position: 0 -352px;
}

.f16 .ae {
    background-position: 0 -368px;
}

.f16 .af {
    background-position: 0 -384px;
}

.f16 .ag {
    background-position: 0 -400px;
}

.f16 .ai {
    background-position: 0 -416px;
}

.f16 .al {
    background-position: 0 -432px;
}

.f16 .am {
    background-position: 0 -448px;
}

.f16 .ao {
    background-position: 0 -464px;
}

.f16 .aq {
    background-position: 0 -480px;
}

.f16 .ar {
    background-position: 0 -496px;
}

.f16 .as {
    background-position: 0 -512px;
}

.f16 .at {
    background-position: 0 -528px;
}

.f16 .au {
    background-position: 0 -544px;
}

.f16 .aw {
    background-position: 0 -560px;
}

.f16 .ax {
    background-position: 0 -576px;
}

.f16 .az {
    background-position: 0 -592px;
}

.f16 .ba {
    background-position: 0 -608px;
}

.f16 .bb {
    background-position: 0 -624px;
}

.f16 .bd {
    background-position: 0 -640px;
}

.f16 .be {
    background-position: 0 -656px;
}

.f16 .bf {
    background-position: 0 -672px;
}

.f16 .bg {
    background-position: 0 -688px;
}

.f16 .bh {
    background-position: 0 -704px;
}

.f16 .bi {
    background-position: 0 -720px;
}

.f16 .bj {
    background-position: 0 -736px;
}

.f16 .bm {
    background-position: 0 -752px;
}

.f16 .bn {
    background-position: 0 -768px;
}

.f16 .bo {
    background-position: 0 -784px;
}

.f16 .br {
    background-position: 0 -800px;
}

.f16 .bs {
    background-position: 0 -816px;
}

.f16 .bt {
    background-position: 0 -832px;
}

.f16 .bw {
    background-position: 0 -848px;
}

.f16 .by {
    background-position: 0 -864px;
}

.f16 .bz {
    background-position: 0 -880px;
}

.f16 .ca {
    background-position: 0 -896px;
}

.f16 .cg {
    background-position: 0 -912px;
}

.f16 .cf {
    background-position: 0 -928px;
}

.f16 .cd {
    background-position: 0 -944px;
}

.f16 .ch {
    background-position: 0 -960px;
}

.f16 .ci {
    background-position: 0 -976px;
}

.f16 .ck {
    background-position: 0 -992px;
}

.f16 .cl {
    background-position: 0 -1008px;
}

.f16 .cm {
    background-position: 0 -1024px;
}

.f16 .cn {
    background-position: 0 -1040px;
}

.f16 .co {
    background-position: 0 -1056px;
}

.f16 .cr {
    background-position: 0 -1072px;
}

.f16 .cu {
    background-position: 0 -1088px;
}

.f16 .cv {
    background-position: 0 -1104px;
}

.f16 .cy {
    background-position: 0 -1120px;
}

.f16 .cz {
    background-position: 0 -1136px;
}

.f16 .de {
    background-position: 0 -1152px;
}

.f16 .dj {
    background-position: 0 -1168px;
}

.f16 .dk {
    background-position: 0 -1184px;
}

.f16 .dm {
    background-position: 0 -1200px;
}

.f16 .do {
    background-position: 0 -1216px;
}

.f16 .dz {
    background-position: 0 -1232px;
}

.f16 .ec {
    background-position: 0 -1248px;
}

.f16 .ee {
    background-position: 0 -1264px;
}

.f16 .eg {
    background-position: 0 -1280px;
}

.f16 .eh {
    background-position: 0 -1296px;
}

.f16 .er {
    background-position: 0 -1312px;
}

.f16 .es {
    background-position: 0 -1328px;
}

.f16 .et {
    background-position: 0 -1344px;
}

.f16 .fi {
    background-position: 0 -1360px;
}

.f16 .fj {
    background-position: 0 -1376px;
}

.f16 .fm {
    background-position: 0 -1392px;
}

.f16 .fo {
    background-position: 0 -1408px;
}

.f16 .fr {
    background-position: 0 -1424px;
}

.f16 .bl, .f16 .cp, .f16 .mf, .f16 .yt {
    background-position: 0 -1424px;
}

.f16 .ga {
    background-position: 0 -1440px;
}

.f16 .gb {
    background-position: 0 -1456px;
}

.f16 .sh {
    background-position: 0 -1456px;
}

.f16 .gd {
    background-position: 0 -1472px;
}

.f16 .ge {
    background-position: 0 -1488px;
}

.f16 .gg {
    background-position: 0 -1504px;
}

.f16 .gh {
    background-position: 0 -1520px;
}

.f16 .gi {
    background-position: 0 -1536px;
}

.f16 .gl {
    background-position: 0 -1552px;
}

.f16 .gm {
    background-position: 0 -1568px;
}

.f16 .gn {
    background-position: 0 -1584px;
}

.f16 .gp {
    background-position: 0 -1600px;
}

.f16 .gq {
    background-position: 0 -1616px;
}

.f16 .gr {
    background-position: 0 -1632px;
}

.f16 .gt {
    background-position: 0 -1648px;
}

.f16 .gu {
    background-position: 0 -1664px;
}

.f16 .gw {
    background-position: 0 -1680px;
}

.f16 .gy {
    background-position: 0 -1696px;
}

.f16 .hk {
    background-position: 0 -1712px;
}

.f16 .hn {
    background-position: 0 -1728px;
}

.f16 .hr {
    background-position: 0 -1744px;
}

.f16 .ht {
    background-position: 0 -1760px;
}

.f16 .hu {
    background-position: 0 -1776px;
}

.f16 .id {
    background-position: 0 -1792px;
}

.f16 .mc {
    background-position: 0 -1792px;
}

.f16 .ie {
    background-position: 0 -1808px;
}

.f16 .il {
    background-position: 0 -1824px;
}

.f16 .im {
    background-position: 0 -1840px;
}

.f16 .in {
    background-position: 0 -1856px;
}

.f16 .iq {
    background-position: 0 -1872px;
}

.f16 .ir {
    background-position: 0 -1888px;
}

.f16 .is {
    background-position: 0 -1904px;
}

.f16 .it {
    background-position: 0 -1920px;
}

.f16 .je {
    background-position: 0 -1936px;
}

.f16 .jm {
    background-position: 0 -1952px;
}

.f16 .jo {
    background-position: 0 -1968px;
}

.f16 .jp {
    background-position: 0 -1984px;
}

.f16 .ke {
    background-position: 0 -2000px;
}

.f16 .kg {
    background-position: 0 -2016px;
}

.f16 .kh {
    background-position: 0 -2032px;
}

.f16 .ki {
    background-position: 0 -2048px;
}

.f16 .km {
    background-position: 0 -2064px;
}

.f16 .kn {
    background-position: 0 -2080px;
}

.f16 .kp {
    background-position: 0 -2096px;
}

.f16 .kr {
    background-position: 0 -2112px;
}

.f16 .kw {
    background-position: 0 -2128px;
}

.f16 .ky {
    background-position: 0 -2144px;
}

.f16 .kz {
    background-position: 0 -2160px;
}

.f16 .la {
    background-position: 0 -2176px;
}

.f16 .lb {
    background-position: 0 -2192px;
}

.f16 .lc {
    background-position: 0 -2208px;
}

.f16 .li {
    background-position: 0 -2224px;
}

.f16 .lk {
    background-position: 0 -2240px;
}

.f16 .lr {
    background-position: 0 -2256px;
}

.f16 .ls {
    background-position: 0 -2272px;
}

.f16 .lt {
    background-position: 0 -2288px;
}

.f16 .lu {
    background-position: 0 -2304px;
}

.f16 .lv {
    background-position: 0 -2320px;
}

.f16 .ly {
    background-position: 0 -2336px;
}

.f16 .ma {
    background-position: 0 -2352px;
}

.f16 .md {
    background-position: 0 -2368px;
}

.f16 .me {
    background-position: 0 -2384px;
}

.f16 .mg {
    background-position: 0 -2400px;
}

.f16 .mh {
    background-position: 0 -2416px;
}

.f16 .mk {
    background-position: 0 -2432px;
}

.f16 .ml {
    background-position: 0 -2448px;
}

.f16 .mm {
    background-position: 0 -2464px;
}

.f16 .mn {
    background-position: 0 -2480px;
}

.f16 .mo {
    background-position: 0 -2496px;
}

.f16 .mq {
    background-position: 0 -2512px;
}

.f16 .mr {
    background-position: 0 -2528px;
}

.f16 .ms {
    background-position: 0 -2544px;
}

.f16 .mt {
    background-position: 0 -2560px;
}

.f16 .mu {
    background-position: 0 -2576px;
}

.f16 .mv {
    background-position: 0 -2592px;
}

.f16 .mw {
    background-position: 0 -2608px;
}

.f16 .mx {
    background-position: 0 -2624px;
}

.f16 .my {
    background-position: 0 -2640px;
}

.f16 .mz {
    background-position: 0 -2656px;
}

.f16 .na {
    background-position: 0 -2672px;
}

.f16 .nc {
    background-position: 0 -2688px;
}

.f16 .ne {
    background-position: 0 -2704px;
}

.f16 .ng {
    background-position: 0 -2720px;
}

.f16 .ni {
    background-position: 0 -2736px;
}

.f16 .nl {
    background-position: 0 -2752px;
}

.f16 .bq {
    background-position: 0 -2752px;
}

.f16 .no {
    background-position: 0 -2768px;
}

.f16 .bv, .f16 .nq, .f16 .sj {
    background-position: 0 -2768px;
}

.f16 .np {
    background-position: 0 -2784px;
}

.f16 .nr {
    background-position: 0 -2800px;
}

.f16 .nz {
    background-position: 0 -2816px;
}

.f16 .om {
    background-position: 0 -2832px;
}

.f16 .pa {
    background-position: 0 -2848px;
}

.f16 .pe {
    background-position: 0 -2864px;
}

.f16 .pf {
    background-position: 0 -2880px;
}

.f16 .pg {
    background-position: 0 -2896px;
}

.f16 .ph {
    background-position: 0 -2912px;
}

.f16 .pk {
    background-position: 0 -2928px;
}

.f16 .pl {
    background-position: 0 -2944px;
}

.f16 .pr {
    background-position: 0 -2960px;
}

.f16 .ps {
    background-position: 0 -2976px;
}

.f16 .pt {
    background-position: 0 -2992px;
}

.f16 .pw {
    background-position: 0 -3008px;
}

.f16 .py {
    background-position: 0 -3024px;
}

.f16 .qa {
    background-position: 0 -3040px;
}

.f16 .re {
    background-position: 0 -3056px;
}

.f16 .ro {
    background-position: 0 -3072px;
}

.f16 .rs {
    background-position: 0 -3088px;
}

.f16 .ru {
    background-position: 0 -3104px;
}

.f16 .rw {
    background-position: 0 -3120px;
}

.f16 .sa {
    background-position: 0 -3136px;
}

.f16 .sb {
    background-position: 0 -3152px;
}

.f16 .sc {
    background-position: 0 -3168px;
}

.f16 .sd {
    background-position: 0 -3184px;
}

.f16 .se {
    background-position: 0 -3200px;
}

.f16 .sg {
    background-position: 0 -3216px;
}

.f16 .si {
    background-position: 0 -3232px;
}

.f16 .sk {
    background-position: 0 -3248px;
}

.f16 .sl {
    background-position: 0 -3264px;
}

.f16 .sm {
    background-position: 0 -3280px;
}

.f16 .sn {
    background-position: 0 -3296px;
}

.f16 .so {
    background-position: 0 -3312px;
}

.f16 .sr {
    background-position: 0 -3328px;
}

.f16 .st {
    background-position: 0 -3344px;
}

.f16 .sv {
    background-position: 0 -3360px;
}

.f16 .sy {
    background-position: 0 -3376px;
}

.f16 .sz {
    background-position: 0 -3392px;
}

.f16 .tc {
    background-position: 0 -3408px;
}

.f16 .td {
    background-position: 0 -3424px;
}

.f16 .tg {
    background-position: 0 -3440px;
}

.f16 .th {
    background-position: 0 -3456px;
}

.f16 .tj {
    background-position: 0 -3472px;
}

.f16 .tl {
    background-position: 0 -3488px;
}

.f16 .tm {
    background-position: 0 -3504px;
}

.f16 .tn {
    background-position: 0 -3520px;
}

.f16 .to {
    background-position: 0 -3536px;
}

.f16 .tr {
    background-position: 0 -3552px;
}

.f16 .tt {
    background-position: 0 -3568px;
}

.f16 .tv {
    background-position: 0 -3584px;
}

.f16 .tw {
    background-position: 0 -3600px;
}

.f16 .tz {
    background-position: 0 -3616px;
}

.f16 .ua {
    background-position: 0 -3632px;
}

.f16 .ug {
    background-position: 0 -3648px;
}

.f16 .us {
    background-position: 0 -3664px;
}

.f16 .uy {
    background-position: 0 -3680px;
}

.f16 .uz {
    background-position: 0 -3696px;
}

.f16 .va {
    background-position: 0 -3712px;
}

.f16 .vc {
    background-position: 0 -3728px;
}

.f16 .ve {
    background-position: 0 -3744px;
}

.f16 .vg {
    background-position: 0 -3760px;
}

.f16 .vi {
    background-position: 0 -3776px;
}

.f16 .vn {
    background-position: 0 -3792px;
}

.f16 .vu {
    background-position: 0 -3808px;
}

.f16 .ws {
    background-position: 0 -3824px;
}

.f16 .ye {
    background-position: 0 -3840px;
}

.f16 .za {
    background-position: 0 -3856px;
}

.f16 .zm {
    background-position: 0 -3872px;
}

.f16 .zw {
    background-position: 0 -3888px;
}

.f16 .sx {
    background-position: 0 -3904px;
}

.f16 .cw {
    background-position: 0 -3920px;
}

.f16 .ss {
    background-position: 0 -3936px;
}

.f16 .nu {
    background-position: 0 -3952px;
}

.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_12{
	font-size: 12px;
}

.item_font_family{
	font-family: tahoma;
}

.item_white{
	color:#FFFFFF;
}

.item_light_green{
	color:#00FF00;
}

.item_light_blue{
	color:#80B2FF;
}

.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_exe_title{
	color: #008000;
}

.item_socket_title{
	color: #B266FF;
}

.item_socket_exe_title{
	color: #7401DF;
}

.item_ancient_title{
	color: #01DF01;
}

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


#inventoryc {
    background-image:url('../images/inventoryc.png');
    width:400px;
    height:320px;
	text-align:center;
	display: inline-block;
	position:relative; 
}
#inventoryc > img {
	position: absolute;
    top: 74px; left: 130px;
    border-radius: 50%;
    border: 3px solid #24314e;
}
#inventoryc > div {
    position:absolute;
    background-repeat:no-repeat;
    background-position:center center;
}
#in_weapon { width:90px;height:136px;bottom:0;left:-6px; }
#in_shield { width:90px;height:136px;bottom:0;right:-4px; }
#in_helm { width:68px;height:68px;top:2px;left:66px; }
#in_armor { width:72px;height:110px;top:72px;left:40px; }
#in_pants { width:68px;height:68px;bottom:8px;left:82px; }
#in_gloves { width:68px;height:68px;top:116px;right:54px; }
#in_boots { width:68px;height:68px;bottom:8px;right:82px; }
#in_wings { width:138px;height:102px;top:8px;right:-2px; }
#in_zoo { width:68px;height:68px;top:2px;left:-2px; }
#in_pendant { width:38px;height:38px;top:20px;right:136px; }
#in_ring1 { width:38px;height:38px;bottom:92px;left:96px; }
#in_ring2 { width:38px;height:38px;bottom:92px;right:96px; }
#in_pentagram { width:96px;height:96px;bottom:-6px;right:152px; }
#in_ear1 {  width:32px;height:32px;top:72px;left:0px; } 
#in_ear2 {  width:32px;height:32px;top:72px;left:115px; } 

.filter-left {
    float:left;
    color: #464646;
    position:static;
    margin:1px 6px 1px 1px;
}
.select-imitation:after { top:14px; }
.select-imitation {
    background-color: #F0F0F0;
    width: 127px;
    padding: 4px 16px;
    cursor: pointer;
    border-top: 3px solid #fbfbfb;
    box-shadow: 0 -1px 0 #f0f0f0;
    border-radius: 16px;
}
.sel-value {
    white-space:nowrap;
}
.select-imitation-list {
    position:absolute;
    z-index:100;
    background-color: #F9F9F9;
    border: 1px #E9EAEB solid;
    box-shadow: inset 0 1px 0 0 #FFFFFF, 0 1px 2px 0 #b3b3b3;
    padding:2px;
    display:none;
    white-space:nowrap;
    margin-top:-1px;
    width:150px;
    max-height:182px;
    overflow-x:hidden;
    overflow-y:auto;
}
.select-imitation-list a {
    font-size:11px;
    display:block;
    padding:3px 12px;
}
.select-imitation-list a:hover {
    text-decoration:none;
    background-color:#d6d6d7;
}
.non:after {
    content: none;
}

#myVideo {
  object-fit: cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 80px;
  left: 0;
  }