body {
  background-image: url("../images/side-page-bg.png");
  background-position: center top;
  background-repeat: no-repeat;
}

header {
  height: 380px;
}

.logo {
  width: 269px;
  top: 74px;
  left: -5px;
}

.cash {
  position: relative;
  font-family: "OpenSans_light";
  font-size: 30px;
  color: #f08d2f;
  text-shadow: 0 0 10px rgba(240, 141, 47, 0.5);
}
.cash:after {
  content: "";
  position: absolute;
  top: 50%;
  margin-top: -34px;
  right: -56px;
  width: 67px;
  height: 65px;
  background: url("../images/coins-icon.png") center no-repeat;
}

.nickname {
  position: relative;
  font-family: "Open Sans";
  font-size: 24px;
  font-weight: normal;
  /* margin-bottom: 10px; */
}

.title-page {
  position: absolute;
  bottom: 30px;
  margin-bottom: 0;
  left: -5px;
  font-family: "Candara";
  font-size: 60px;
  font-weight: normal;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 5px;
  background: linear-gradient(#f6e194,#dc9938);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.rankings-page {
  padding-bottom: 50px;
}
.history {
  width: 100%;
  height: 80px;
  background: rgba(4, 7, 5, 0.95);
}
.history a {
  display: block;
  position: relative;
  font-family: "Open Sans";
  font-size: 14px;
  color: #8f7f61;
  margin: 0 40px;
}
.history a:last-of-type:after {
  content: "";
  position: absolute;
  left: -54px;
  top: 50%;
  margin-top: -17px;
  width: 32px;
  height: 34px;
  background: url("../images/slider-items-next.png") center no-repeat;
  filter: brightness(80%) grayscale(100%);
  transition: 0.3s;
}
.history a.active {
  color: #fff;
}
.history a:hover {
  color: #fff;
}

.selects {
  margin-left: auto;
  height: 100%;
}
.select {
  position: relative;
  padding-right: 34px;
  margin-right: 20px;
  cursor: pointer;
  font-family: "Candara";
}
.select a {
  color: #8f7f61;
  font-size: 16px;
}
.select:hover > a {
  color: #fff;
}
.select > a:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -17px;
  width: 32px;
  height: 34px;
  transform: rotate(90deg);
  background: url("../images/slider-items-next.png") center no-repeat;
  filter: brightness(80%) grayscale(100%);
  transition: 0.3s;
}
.select:hover > a:after {
  filter: brightness(150%) grayscale(100%);
}

.select ul li:hover > a {
  color: #fff;
}
.select ul {
  display: block;
}
.select ul li {
  padding: 1px;
  flex-grow: 1;
}
.select ul li a {
  display: block;
  flex-grow: 1;
  padding: 1px;
}

.select ul li:hover:before {
  opacity: 1;
}

.selects .dropDown-menu {
  display: none;
  position: absolute;
  left: 0;
  width: 206px;
  top: 40px;
  background: rgba(4, 6, 7, 0.95);
  padding: 32px;
  z-index: 10;
}
.selects .dropDown-menu:after {
  border: 12px solid transparent;
  border-bottom-color: rgba(4, 6, 7, 0.95);
  position: absolute;
  left: 24px;
  top: -22px;
  content: "";
}
.selects .dropDown-menu li {
  display: flex;
  align-items: center;
  font-size: 16px;
  margin-bottom: 20px;
}
.selects .dropDown-menu li:last-of-type {
  margin-bottom: 0;
  padding-top: 20px;
  border-top:1px solid rgba(255, 255, 255, 0.05);
}

.checkbox {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.checkbox+label {
  display: inline-flex;
  align-items: center;
  user-select: none;
  position: relative;
}
.checkbox+label::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50% 50%;
  background: rgba(255, 255, 255, 0.05);
}
.checkbox+label::after {
  position: absolute;
  content: "";
  width: 31px;
  height: 27px;
  left: -8px;
  opacity: 0;
  transition: 0.3s;
  background: url("../images/checked-icon.png") 0 0 no-repeat;
}
.checkbox:checked+label:after {
  opacity: 1;
}
.checkbox+label {
  transition: 0.3s;
  color: #8f7f61;
}
.checkbox:checked+label {
  color: #fff;
}


.contentTabs {
  width: 100%;
  height: 80px;
  background: rgba(14, 21, 26, 0.9);
  padding: 0 20px;
}
.contentTabsBlock {
  height: 100%;
}
.contentTab-button {
  position: relative;
  cursor: pointer;
  height: 100%;
  padding: 0 50px;
  margin-left: -30px;
  margin-right: -30px;
  font-family: "Candara";
  font-size: 18px;
  text-transform: uppercase;
  color: #717171;
  transition: color 0.3s;
}
.contentTab-button.active,
.contentTab-button:hover {
  color: #fff;
  background: url("../images/active-tab-bg.png") center bottom no-repeat;
}

.contentBlock {
  display: none;
}
.contentBlock.active {
  display: block;
  animation: opas 0.5s linear;
}

@keyframes opas {
  0% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

.topPlaces {
  margin-top: 26px;
}
.place {
  width: calc(33.33% - 17px);
  height: 120px;
  background: rgba(17, 24, 30, 0.6);
}
.place .rankBlock {
  width: 120px;
  height: 100%;
  background: rgba(44, 49, 54, 0.1) url("../images/rank.png") center center no-repeat;
}
.place .rankBlock.second-place-rank {
  background: rgba(44, 49, 54, 0.1) url("../images/rank_2.png") center center no-repeat;
}
.place .rankBlock.third-place-rank {
  background: rgba(44, 49, 54, 0.1) url("../images/rank_3.png") center center no-repeat;
}
.place .ava {
  width: 67px;
  height: 71px;
  background-size: cover;
  padding: 10px 18px 18px 10px;
  margin-top: 14px;
  margin-left: -20px;
  background: url("../images/profile-icon-bg.png") center center no-repeat;
  background-size: cover;
}
.place .status-online {
  font-family: "Candara";
  font-size: 12px;
  color: #cbff3f;
  margin-bottom: 10px;
}
.place .nickname {
  font-family: "Open Sans";
  font-size: 16px;
  margin-bottom: 4px;
}
.place .class {
  font-family: "Open Sans";
  font-size: 13px;
  color: #8f7f61;
  margin-bottom: 0;
}
.place .class span {
  color: #f08d2f;
}

.table-players {
  margin-top: 26px;
  min-width: 500px;
  min-height: 100%;
  overflow-y: hidden;
  padding-bottom: 18px;
}
.table-players li {
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 52px;
  background: #0e151a;
  padding: 0 30px;
  transition: 0.3s;
}
.table-players .title-row {
  background: #11181d;
  height: 56px;
}
.table-players li:nth-of-type(2n) {
  background: #0c1317;
}
.table-players li:not(.title-row):hover {
  background: #182229;
}

.table-players li>span {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 28%;
  white-space: nowrap;
  color: #696868;
  font-family: "Candara";
  font-size: 14px;
  height: 100%;
}
.table-players li>span:first-of-type {
  width: 13%;
}
.table-players li.online .first-cell:after {
  content: "[ Online ]";
  position: absolute;
  right: 15px;
  font-family: "Candara";
  font-size: 12px;
  color: #cbff3f;
  text-shadow: 0 0 20px #a7d336;
}
.table-players li>span:nth-of-type(3){
  width: 26%;
}
.table-players li>span:last-of-type {
  width: 5%;
}
.table-players .title-row span {
  font-family: "Candara";
  font-size: 15px;
  text-transform: uppercase;
  color: #908585;
}
.table-players .first-cell {
  font-family: "Open Sans";
  font-size: 13px;
  color: #696868;
}
.table-players .second-cell {
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
.table-players img {
  width: 25px;
  margin-right: 16px;
}
.table-players .forth-cell {
  font-size: 12px;
}
.table-players li>span:last-of-type {
  justify-content: flex-end;
}
.table-players .fifth-cell {
  font-family: "Open Sans";
  font-size: 13px;
}
.table-players .fifth-cell span {
  color: #f08d2f;
  margin-left: 4px;
}
.table-players .your-position span {
  color: #fff;
}
.table-players .your-position:after {
  z-index: 0;
  position: absolute;
  content: "";
  left: -2%;
  top: -98px;
  width: 104%;
  height: 218px;
  background: url("../images/your-position.png") 0 0 no-repeat;
  background-size: cover;
}
.table-players .your-position div {
  cursor: pointer;
  z-index: 3;
  position: absolute;
  left: -155px;
  content: "Your Position";
  font-family: "Open Sans";
  font-size: 14px;
  color: #f08d2f;
  text-shadow: 0 0 10px rgba(240, 141, 47, 0.5);
  background: url("../images/your-position-icon.png") right 10px center no-repeat;
  padding: 15px;
  padding-right: 46px;
  transition: 1s ease-in-out;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 45px;
  margin-bottom: 20px;
}
.pagination .prev,
.pagination .next {
  width: 32px;
  height: 34px;
  transform: rotate(0);
}
.pagination .prev a,
.pagination .next a {
  content: "";
  width: 32px;
  height: 34px;
  background: url("../images/slider-items-next.png") center no-repeat;
  filter: brightness(70%)  grayscale(100%);
  transition: 0.3s;
  transform: rotate(0);
}
.pagination .prev:hover,
.pagination .next:hover {
  background: none;
  filter: brightness(120%)  grayscale(100%);
}
.pagination .prev:hover a,
.pagination .next:hover a {
  filter: brightness(100%);
}
.pagination .prev a {
  transform: rotate(180deg);
}
.pagination li {
  width: 30px;
  height: 30px;
  transform: rotate(45deg);
  margin: 0 8px;
  transition: 0.3s;
  display: inline-block;
}
.pagination li a {
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transform: rotate(-45deg);
  font-family: "Open Sans";
  font-size: 14px;
  color: #959da7;
  transition: 0.3s;
}
.pagination li.active,
.pagination li:hover {
  background: #11181e;
}
.pagination li.active a,
.pagination li:hover a {
  font-weight: bold;
  color: #f08d2f;
  text-shadow: rgba(240, 141, 47, 0.5);
}


.scrollbar-inner > .scroll-element.scroll-y {
  display: none;
}

.scrollbar-inner > .scroll-element.scroll-x {
  left: 0;
  width: 100%;
}