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.jpg) center top no-repeat;
  width: 100%;
  background-color: #0a0d16;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: #fadfdf;
}

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: #c8b3ca;
  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;
}
table tr:nth-child(odd) {
  background: #10121c;
}
table tr:nth-child(even) {
  background: #12141f;
}
table thead {
  background: #774593;
  color: #f8e2e2;
  text-shadow: 0px 0px 15px rgba(248, 226, 226, 0.4);
}
table thead tr {
  background: #774593 !important;
}

img {
  max-width: 100%;
}

caption {
  margin-bottom: 15px;
}

select {
  background: rgba(20, 70, 109, 0.5);
  min-width: 150px;
  border: 1px solid #193D7D;
  color: #fffeff;
  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 !important;
  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: #efb5fe;
  font-size: 13px;
}

.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/main-bg.jpg) center 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: rgba(20, 70, 109, 0.5);
  border-radius: 10px;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 15px;
}
.rightInfo-block p {
  margin-bottom: 10px;
}
.rightInfo-online {
  font-size: 12px;
  color: #bab1b2;
}
.rightInfo-online p {
  font-size: 24px;
  color: #ead7a7;
}
.rightInfo-time {
  font-size: 20px;
  color: #ead7a7;
}
.rightInfo-time p {
  font-size: 14px;
  color: #bab1b2;
}
.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 rgba(0, 0, 0, 0.3);
  background: rgba(20, 70, 109, 0.5);
  z-index: 999;
}

.menuContainer {
  max-width: 1170px;
  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: #ead7a7;
  font-size: 18px;
  padding: 0px 45px;
  position: relative;
}
.menuContent ul li a:hover:before {
  background: #ead7a7;
  box-shadow: 0px 0px 10px 0px rgba(20, 70, 109, 0.5);
}
.menuContent ul li a.show:before {
  background: #ead7a7;
  box-shadow: 0px 0px 10px 0px rgba(20, 70, 109, 0.5);
}
.menuContent ul li a.show {
  background: rgba(20, 70, 109, 0.5);
  color: #fff;
  text-shadow: 0px 0px 30px rgba(20, 70, 109, 0.5);
}
.menuContent ul li a:hover {
  color: #fff;
  background: rgba(20, 70, 109, 0.5);
}
.menuContent ul li ul {
  position: absolute;
  width: 100%;
  left: 0;
  background: rgba(20, 70, 109, 0.5);
  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(20, 70, 109, 0.5);
  color: #fff;
  text-shadow: 0px 0px 30px rgba(20, 70, 109, 0.5);
}
.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: #dc2929;
  box-shadow: 0px 0px 10px 0px rgba(220, 41, 41, 0.6);
}

.dropdown-menu 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 ul li a:after {
  display: none;
}

.dark-button {
  color: #ead7a7;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #005DFF;
  background: rgba(0, 0, 0, 0.38);
  display: inline-block;
  padding: 10px 30px;
  cursor: pointer;
}
.dark-button:hover {
  background: black;
}

.login {
  text-transform: uppercase;
}

.homeBlock {
  text-align: center;
  position: absolute;
  width: 100%;
  z-index: 5;
  top: 120px;
}

.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 #ff6b6b;
}
.homeButton .register {
  background: url(../images/button-purple.png) no-repeat;
  text-shadow: 0px 0px 20px #ec6bff;
}

.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: #58263b;
  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(to bottom, #456578, rgba(16, 109, 167, 0.2));
  padding: 30px;
  width: 100%;
  border-left: 1px solid #a5cce2;
  border-right: 1px solid #a5cce2;
  border-bottom: 1px solid #a5cce2;
}

.newsTabs {
  display: flex;
}
.newsTabs a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  width: 30%;
  color: #edd9fe;
  font-size: 18px;
  background: #224356;
  cursor: pointer;
  border-right: 1px solid #224356;
  font-weight: 400;
}
.newsTabs a:hover {
  background: #224356;
  text-shadow: 0px 0px 14px rgba(16, 93, 141, 0.8);
}
.newsTabs a.active {
  background: #356079;
  text-shadow: 0px 0px 14px rgba(16, 93, 141, 0.8);
}
.newsTabs a.more {
  width: 10%;
  color: #a5cce2;
  font-size: 22px;
  border-right: 0px;
}
.newsTabs a.more: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: #f03d3d;
}

.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: #a5cce2;
  font-size: 14px;
}

.blockTitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.rankBlock {
  max-width: 1170px;
}
.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;
}
.seasonColumn{
    width: 500px;
    float:left;
    margin-left:30px;
}   

.player_1 {
  background: url(../images/rank-img_1.jpg) right center no-repeat;
  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: url(../images/rank-img_2.jpg) right center no-repeat;
  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: url(../images/rank-img_3.jpg) right center no-repeat;
  background-color: #631266;
}
.player_3 .topNumber {
  background: #c76230;
  border: 1px solid #e48558;
  box-shadow: 0px 0px 12px 2px #cd6d39;
}
.player_3 .nickName {
  color: #bd37ef;
}

.player_4 {
  background: url(../images/rank-img_1.jpg) right center no-repeat;
  background-color: #8f0d0d;
}
.player_4 .topNumber {
  background: #f7bb58;
  border: 1px solid #f8d394;
  box-shadow: 0px 0px 12px 2px #f7bb58;
}
.player_4 .nickName {
  color: #ef3737;
}

.player_5 {
  background: url(../images/rank-img_2.jpg) right center no-repeat;
  background-color: #183784;
}
.player_5 .topNumber {
  background: #c6b9b9;
  border: 1px solid #d2c7c6;
  box-shadow: 0px 0px 12px 2px #c6b9b9;
}
.player_5 .nickName {
  color: #37a3ef;
}

.player_6 {
  background: url(../images/rank-img_3.jpg) right center no-repeat;
  background-color: #631266;
}
.player_6 .topNumber {
  background: #c76230;
  border: 1px solid #e48558;
  box-shadow: 0px 0px 12px 2px #cd6d39;
}
.player_6 .nickName {
  color: #bd37ef;
}

.all-rank {
  clear:both;
  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: #ead7a7;
  font-size: 14px;
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 60px;
  line-height: 1.4;
}
.copyright a{
    color: #ead7a7;
    font-size: 18px;
    font-weight: 600;
}
.copyright a:hover{
    color: #ead7a7;
}

.modal_div {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: none;
  opacity: 0;
  z-index: 999;
}

.modal-div {
  background: #050F21;
  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 {
  color: #e1e1e2;
  font-size: 24px;
  text-transform: uppercase;
  font-weight: 600;
  text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.5);
}

.modal-form {
  padding: 0px 0px 20px 0px;
}
.modal-form input {
  width: 100%;
  background: #29142d;
  box-shadow: 0px 0px 7px 1px rgba(0, 0, 0, 0.3);
  text-align: left;
  border: 1px solid #5c3862;
  color: #b9a7bc;
  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: 830px;
  display: flex;
  flex-wrap: wrap;
  padding: 0px;
  min-height: 510px;
}

.modal-event .modalCastle {
  width: 45%;
  background: #571919;
  padding: 35px 50px;
  position: relative;
}

.modal-event .modalContent {
  width: 55%;
  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: 770px;
  position: relative;
}

.page-logo {
  position: absolute;
  bottom: 110px;
  width: 100%;
  left: 0;
  text-align: center;
}

.contentWrapper {
  position: relative;
}

.contentWrapper-title {
  background: url(../images/title-bg.jpg);
  border-top: 1px solid #0C204C;
  padding: 40px 60px;
  text-align: left;
  box-shadow: 0px 15px 20px 0px rgba(16, 73, 109, 0.8);
  position: relative;
  z-index: 1;
}
.contentWrapper-title h1 {
  margin-bottom: 0px;
  color: #f9f3ff;
  font-size: 30px;
  text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.5);
}

.content {
  background: #050F21;
  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: #f53d3d;
}
.content a:hover {
  color: #ef7d7d;
}
.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: #3d2852;
  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;
}
