@font-face {
  src: url('../Fonts/OpenSans_semibold.ttf');
  font-family: 'OpenSans_semibold';
}
@font-face {
  src: url('../Fonts/OpenSans_light.ttf');
  font-family: 'OpenSans_light';
}
/* width */
::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background:  rgba(255, 255, 255, 0.2);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background:  rgba(255, 255, 255, 0.25);
}

#wrapper {
  overflow: hidden;
}

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;
  overflow-x: hidden;
}

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 {
  width: 100%;
  background: url(../images/header-bg.jpg) center top no-repeat;
  background-color: #0a1014;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #696868;
}

a {
  transition: all 0.3s ease;
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #ffb432;
  text-decoration: none;
}

p {
  margin-bottom: 20px;
}

h1, h2, h3, h4 {
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
}

h1 {
  font-size: 22px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 18px;
}

h4 {
  font-size: 16px;
}

table {
  width: 100%;
}
table td {
  border-collapse: collapse;
  padding: 22px 30px;
  vertical-align: middle;
}
table td img {
  vertical-align: middle;
}
table thead tr {
  background-color: #1b1918;
  font-family: 'Fritz';
  color: #908585;
  font-size: 15px;
}
table tbody tr:nth-child(even) {
  background: #161412;
}
table tbody tr:nth-child(odd) {
  background: #13110f;
}
table tbody tr:hover {
  background: #211d1a;
}

img {
  max-width: 100%;
}

caption {
  margin-bottom: 15px;
}

select {
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  margin-bottom: 15px;
  padding: 6px 30px 6px 10px;
  position: relative;
  -webkit-appearance: none;
  background-image: url(../images/arrow-v.png);
  background-position: right 10px center;
  background-repeat: no-repeat;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  -ms-appearance: none;
  appearance: none !important;
  cursor: pointer;
}

input, textarea {
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #eadcd2;
  padding: 0px 12px;
  height: 32px;
  position: relative;
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
}

button, .button {
  transition: all 0.3s ease;
  cursor: pointer;
  background: url(../images/button.png) center no-repeat;
  height: 48px;
  width: 177px;
  border: none;
  color: #fff !important;
  position: relative;
  z-index: 1;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Fritz';
  font-size: 16px;
  letter-spacing: 2px;
}
button:hover, .button:hover {
  filter: brightness(120%);
}

.button-small {
  width: 110px;
}

:focus {
  outline: none;
}

::-webkit-input-placeholder {
  color: #696868;
}

::-moz-placeholder {
  color: #696868;
}

:-moz-placeholder {
  color: #696868;
}

:-ms-input-placeholder {
  color: #696868;
}

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  position: relative;
}

.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%);
}

.topPanel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  transition: 0.3s;
  z-index: 1;
}
.topPanel.topPanel-top {
  background: rgba(0, 0, 0, 0.9);
}
.topPanel-top .topPanel_Wrapper {
	border-bottom: 0px;
}
.topPanel_Wrapper {
  width: 100%;
  max-width: 1150px;
  position: relative;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.topPanel-left {
  display: flex;
  align-items: center;
  height: 96px;
  margin-right: auto;
}
.button-btn {
  display: none;
}
.button-btn span {
  display: block;
  width: 30px;
  height: 3px;
  background: rgba(255, 255, 255, 0.9);
  margin: 5px 0px;
}
.topPanel-left .mini-logo {
  display: block;
  margin-right: 60px;
}
.topPanel-left .mini-logo img {
  display: block;
}
.topPanel-left .lang-icon {
  padding: 4px;
  border: 1px solid #414546;
  border-radius: 50%;
  transition: 0.3s;
  margin-right: 30px;
}
.topPanel-right .log {
  height: 96px;
  display: flex;
  align-items: center;
  position: relative;
}
.topPanel-right .log img {
  margin-left: 10px;
  border-radius: 50%;
  height: 48px;
  width: 48px;
  transition: 0.3s;
}
.topPanel-right .log .nickname {
  position: relative;
  display: block;
  padding-right: 20px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 180px;
  padding-bottom: 2px;
  font-family: "Candara";
  font-size: 16px;
  /* margin-top: 11px; */
  color: #fff;
}
.topPanel-right .log .nickname:after {
  content: "";
  position: absolute;
  background: url(../images/slider-items-next.png) center no-repeat;
  width: 34px;
  height: 32px;
  right: -10px;
  top: 50%;
  margin-top: -15px;
  transform: rotate(90deg);
  opacity: 1;
  transition: 0.3s;
  filter: grayscale(100%) brightness(70%);
}
.topPanel-right .log .nickname:hover:after {
  filter: grayscale(100%) brightness(150%);
}
.topPanel-right .sign-up {
  color: #ffb432;
  font-size: 15px;
  cursor: pointer;
}
.topPanel-right .sign-up.show {
  color: #fff;
}
.topPanel-right .sign-up.show img {
  border: 1px solid #ffb432;
}
.topPanel-right .sign-up.show span:after {
  transform: rotate(-90deg);
  opacity: 1;
  filter: grayscale(100%) brightness(150%);
}
.topPanel-right .sign-up img {
  border: 1px solid rgba(229, 221, 214, 0.25);
}
.topPanel-right .sign-up:hover {
  color: #fff;
}
.topPanel-right .sign-up:hover img {
  border: 1px solid #ffb432;
}
.topPanel-right .sign-up:hover span:after {
  opacity: 1;
}

.cpMenu {
  position: absolute;
  background: rgba(4, 6, 7, 0.95);
  width: 250px;
  top: 100%;
  left: 0;
  margin-left: -90px;
  display: none;
  padding-bottom: 20px;
  padding-top: 20px;
}
.cpMenu:after {
  content: '';
  position: absolute;
  right: 50px;
  bottom: 100%;
  border: 10px solid transparent;
  border-bottom: 10px solid rgba(4, 6, 7, 0.95);
}
.icon-login-big {
  position: relative;
  padding: 30px 32px 20px 32px;
  margin-bottom: 10px;
}
.icon-login-big:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 32px;
  width: calc(100% - 64px);
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
}
.topPanel-right .icon-login-big img {
  margin-left: 0;
  width: 48px;
}
.icon-login-big p{
  font-family: "Open Sans";
  font-size: 16px;
  color: #fff;
  margin-left: 12px;
  margin-bottom: 0;
}
.icon-login-big span{
  color: #8f7f61;
  font-size: 11px;
}
.cpMenu ul li a {
  position: relative;
  display: block;
  padding: 9px 32px 9px 60px;
  font-family: "Candara";
  font-size: 14px;
  color: #8f7f61;
  transition: 0.3s;
}
.cpMenu ul li a .cash {
  position: absolute;
  right: 64px;
  font-size: 13px;
}
.cpMenu ul li a .cash:after {
  width: 33px;
  height: 32px;
  right: -30px;
  top: 50%;
  margin-top: -18px;
  background-size: cover;
}
.cpMenu ul li a:before {
  content: "";
  position: absolute;
  background: url(../images/slider-items-next.png) center no-repeat;
  width: 34px;
  height: 32px;
  left: 22px;
  top: 50%;
  margin-top: -15px;
  transition: 0.3s;
  filter: grayscale(100%) brightness(80%);
}
.cpMenu ul li a:hover:before {
  filter: grayscale(100%) brightness(150%);
  opacity: 1;
}
.cpMenu ul li {
  position: relative;
}
.cpMenu ul li:before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 100%;
  transition: 0.3s;
  opacity: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.1), transparent);
}
.cpMenu ul li:hover a {
  color: #fff;
}
.cpMenu ul li:hover:before {
  opacity: 1;
}
.cpMenu .settings {
  margin-top: 15px;
}
.cpMenu .settings a {
  display: block;
  position: relative;
  padding: 17px 32px 17px 60px;
  margin-top: 10px;
}
.cpMenu .logout a {
  position: relative;
  padding: 17px 32px 17px 60px;
}
.cpMenu .settings a:after,
.cpMenu .logout a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 32px;
  width: calc(100% - 64px);
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
}
.cpMenu .settings a:before,
.cpMenu .logout a:before{
  width: 16px;
  height: 16px;
  background: url("../images/logout-settings.png") center 0 no-repeat;
  left: 32px;
  top: 50%;
  margin-top: -8px;
  opacity: 0.3;
}
.cpMenu .logout a:before {
  background-position: center -61px;
}

.menu li {
  padding: 0px 20px;
  display: inline-block;
  position: relative;
}
.menu li a {
  display: flex;
  align-items: center;
  height: 96px;
  padding: 0px 25px;
  font-family: "Candara";
  font-size: 16px;
}
.menu li .menu-a {
  position: relative;
  cursor: pointer;
}
.menu li .menu-a:after {
  content: "";
  position: absolute;
  background: url(../images/slider-items-next.png) center no-repeat;
  width: 34px;
  height: 32px;
  right: -15px;
  top: 50%;
  margin-top: -15px;
  transform: rotate(90deg);
  opacity: 1;
  transition: 0.3s;
  filter: grayscale(100%) brightness(80%);
}
.dropMenu:hover .menu-a:after {
  filter: none;
}
.menu .dropDown-menu {
  display: none;
  position: absolute;
  left: 0;
  width: 220px;
  top: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  padding: 20px 0px 70px 0px;
}
.menu .dropDown-menu li {
  display: block;
  text-align: center;
}
.menu .dropDown-menu li a {
  position: relative;
  display: block;
  height: auto;
  padding: 20px 40px;
  text-align: left;
}
.menu .dropDown-menu li a:after {
  position: absolute;
  left: 6px;
  top: 50%;
  margin-top: -17px;
  content: "";
  width: 32px;
  height: 34px;
  background: url("../images/slider-items-next.png") center no-repeat;
  filter: grayscale(100%) brightness(70%);
  transition: 0.3s;
}
.menu .dropDown-menu li a:hover:after {
  filter: none;
}

header {
  height: 905px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  z-index: 2;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: inline-block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.logo {
  position: absolute;
  top: 225px;
  left: 15px;
  z-index: 1;
}

.onlineBlock {
  background: url(../images/online_bg.png) center no-repeat;
  background-size: cover;
  width: 292px;
  height: 209px;
  position: absolute;
  bottom: 70px;
  left: 60px;
  text-align: center;
  padding-top: 36px;
  padding-left: 8px;
  font-family: 'Open Sans';
}
.onlineBlock p {
  color: #fff;
  font-family: "Open Sans";
  font-size: 14px;
  margin-bottom: 2px;
  opacity: .75;
}
.onlineBlock span {
  color: #cbff3f;
  font-size: 36px;
  font-family: 'OpenSans_semibold';
  letter-spacing: 2.5px;
  text-shadow: 0px 0px 10px rgba(150, 60, 0, 0.6);
}

.downloadBlock {
  width: 394px;
  position: absolute;
  right: -34px;
  bottom: 7px;
}
.downloadBlock .download {
  background: url(../images/download-button.png) center no-repeat;
  background-size: cover;
  width: 100%;
  height: 170px;
  display: block;
  color: #ebff9a;
  padding-left: 145px;
  padding-top: 58px;
  font-size: 24px;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.2);
  letter-spacing: 4px;
  font-family: "Candara";
  font-weight: 600;
}
.downloadBlock .download span {
  width: 100%;
  display: block;
  margin-top: 7px;
  opacity: 0.3;
  font-size: 12px;
  letter-spacing: 6px;
  color: #5fb1c4;
}
.downloadBlock .for-windows {
  display: block;
  position: absolute;
  left: -100px;
  top: calc(50% - 12px);
  font-family: 'Open Sans';
  font-size: 12px;
  opacity: .5;
  color: #fff;
  transition: 0.3s;
  letter-spacing: 1px;
}
.downloadBlock .for-windows:hover {
  opacity: 1;
}
.downloadBlock .for-windows:before {
  display: block;
  content: "";
  height: 12px;
  width: 12px;
  position: absolute;
  left: -26px;
  background: url('../images/windows-icon.png') 0 0 no-repeat;
  color: #fff;
}

.fastButtons {
  position: fixed;
  z-index: 2;
  right: 40px;
  top: 50%;
  margin-top: -164px;
  background: rgba(0, 0, 0, 0.85);
  padding: 0 2px 18px;
  z-index: 12;
}
.fastButtons a {
  display: block;
  text-align: center;
  position: relative;
  margin: 8px 0px;
}
.fastButtons a img {
  position: relative;
  z-index: 2;
  display: block;
  position: relative;
  z-index: 3;
  background: url('../images/fast-button-bg.png') center no-repeat;
}
.fastButtons a p {
  margin-top: -5px;
  margin-bottom: 0px;
  font-size: 13px;
}
.fastButtons a:hover {
  color: #fff;
}
.fastButtons a:hover:after {
  opacity: 1;
}
.fastButtons a:after {
  content: "";
  position: absolute;
  top: 16.2px;
  left: 16.8px;
  border: 2px solid #30b0be;
  box-shadow: 0 0 40px 0 #30b0be;
  width: 38.5px;
  height: 37.5px;
  border-radius: 50%;
  transition: 0.3s;
  opacity: 0;
}
.fastButtons a.fRanking:after {
  border: 2px solid #c73533;
  box-shadow: 0 0 40px 0 #c73533;
}
.fastButtons a.fGuides:after {
  border: 2px solid #c17814;
  box-shadow: 0 0 40px 0 #c17814;
}

.newsBlockContainer {
  margin-bottom: 100px;
  flex-wrap: nowrap;
}
.newsBlockContainer-left {
  width: 57.4%;
  max-width: 660px;
}
.newsBlockContainer-right {
  width: 39.6%;
  max-width: 460px;
  background: rgba(4, 7, 8, 0.95);
  height: 520px;
  padding: 50px 60px;
}
.newsBlockContainer-left,
.newsBlockContainer-right {
  box-shadow: 0 40px 60px -20px #000;
}

.swiper-news {
  height: 310px;
}
.swiper-news .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-news .sliderNewsBlock {
  position: absolute;
  left: 60px;
  bottom: 45px;
  font-family: "Candara";
}
.swiper-news .sliderNewsBlock h3 {
  color: #fff;
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 7px;
  letter-spacing: 2px;
}
.swiper-news .sliderNewsBlock p {
  color: #fff;
  opacity: 0.4;
  font-size: 24px;
  margin-bottom: 0px;
}

.swiperNews-nav {
  width: 110px;
  height: 40px;
  right: 40px;
  bottom: 40px;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  z-index: 1;
}
.swiperNews-nav .swiper-buttons {
  width: 6px;
  height: 10px;
  color: #fff;
  margin-top: -5px;
}
.swiperNews-nav .swiper-buttons:after {
  font-size: 10px;
}
.swiperNews-nav .swiper-button-next {
  right: 15px;
}
.swiperNews-nav .swiper-button-prev {
  left: 15px;
}
.swiperNews-nav .swiper-pagination {
  bottom: 13px;
  font-size: 12px;
  color: #fff;
}
.swiperNews-nav .swiper-pagination .swiper-pagination-current {
  color: #ffb432;
}

.news-bottom-item {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 50%;
  height: 210px;
  background: url('../images/recent-events-bg.jpg') center no-repeat;
  justify-content: flex-end;
  align-items: center;
  font-size: 24px;
  font-family: 'Candara';
  padding: 50px;
}
.news-bottom-item:last-of-type {
  background: url('../images/top-players-bg.jpg') center no-repeat;
}
.news-bottom-item:after {
  display: block;
  content: "";
  position: absolute;
  left: calc(50% - 16px);
  bottom: 12px;
  width: 32px;
  height: 34px;
  transform: rotate(90deg);
  filter: grayscale(100%) brightness(70%);
  background: url('../images/slider-items-next.png') center no-repeat;
  transition: 0.3s;
}
.news-bottom-item:hover:after {
  filter: none;
}

.newsTitle {
  font-family: "Open Sans";
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.newsTitle a {
  color: #8f7f61;
}
.newsTitle h2 {
  font-family: "Candara";
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #f08d2f;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(240, 141, 47, 0.5);
}
.newsBlockContainer-right .news-list a {
  margin-bottom: 0px;
  padding: 20px 0px 20px 35px;
  border-bottom: 1px dashed #2d2c2c;
  display: block;
  position: relative;
}
.newsBlockContainer-right .news-list a:after {
  position: absolute;
  top: calc(50% - 16px);
  right: -10px;
  content: "";
  display: block;
  background: url("../images/slider-items-next.png") no-repeat;
  width: 32px;
  height: 34px;
  filter: grayscale(100%) brightness(70%);
  transition: 0.3s;
}
.newsBlockContainer-right .news-list a:hover:after {
  filter: grayscale(100%) brightness(150%);
}
.newsBlockContainer-right .news-list a:before {
  position: absolute;
  top: 15px;
  left: 0;
  content: "";
  display: block;
  width: 23px;
  height: 23px;
}
.newsBlockContainer-right .news-list .event-type:before {
  background: url(../images/news-icons.png) center -11px no-repeat;
}
.newsBlockContainer-right .news-list .news-type:before{
  background: url(../images/news-icons.png) center -44px no-repeat;
}
.newsBlockContainer-right .news-list a p {
  margin-bottom: 0;
  display: flex;
}
.newsBlockContainer-right .news-list a .news-type {
  position: relative;
  font-family: 'Candara';
  font-size: 16px;
  margin-right: 20px;
  white-space: nowrap;
}
.newsBlockContainer-right .news-list a .news-date {
  color: #8f7f61;
  font-family: 'Open Sans';
  font-size: 12px;
  margin-bottom: 10px;
}
.newsBlockContainer-right .news-list a .news-title {
  display: block;
  font-family: 'Candara';
  font-size: 16px;
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.newsBlockContainer-right .news-list a .news-type:after {
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 0;
  margin-top: 6px;
  right: -12px;
  border-radius: 50%;
  background: #8f7f61;
  z-index: 10;
}
.newsBlockContainer-right .news-list a:hover .news-title {
  text-decoration: underline;
}

.color-green {
  color: #5e9d48 !important;
}

.color-orange {
  color: #b56d5a !important;
}

.color-blue {
  color: #487a93 !important;
}

.color-yellow {
  color: #bdcf29 !important;
}

.social {
  width: 100%;
  padding: 0 30px;
  margin-top: 10px;
}
.social li {
  transition: 0.3s;
}
.social li:hover {
  filter: brightness(1.5);
}
.social li a {
  display: block;
  width: 72px;
  height: 72px;
  background: url('../images/social-icons.png') 0 center no-repeat;
}
.social li.discord  a{
  background: url('../images/social-icons.png') -98px center no-repeat;
}
.social li.youtube a {
  background: url('../images/social-icons.png') -198px center no-repeat;
}

.featured-items {
  background: url('../images/featured-items-bg.png') center bottom no-repeat;
}
.top-featured-items {
  margin-bottom: 30px;
}
.featured-items .title {
  text-transform: uppercase;
  font-family: "Candara";
  font-size: 36px;
  font-weight: normal;
  letter-spacing: 3px;
  color: #f08d2f;
  margin-bottom: 0;
}
.featured-items .title span {
  color: #8f7f61;
  margin-left: 5px;
}
.select-category a {
  display: block;
  font-family: "Candara";
  font-size: 16px;
  color: #8f7f61;
  padding-left: 30px;
  transition: 0.3s;
}
.select-category .active a,
.select-category a:hover {
  color: #fff;
}
.slide-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 160px;
  height: 180px;
  background: #0e151a;
  padding: 20px;
  margin: 13px 10px 30px;
  text-align: center;
  position: relative;
  transition: 0.3s;
  z-index: 10;
}
.slide-item:hover {
  cursor: pointer;
  margin: 0 10px 17px;
  height: 206px;
  background: url('../images/slide-item-bg.jpg') center bottom no-repeat;
  background-size: cover;
  box-shadow: 0 20px 20px -20px #000;
}
.slide-item.hot-item:before,
.slide-item.new-item:before,
.slide-item.sale-item:before {
  content: "Hot";
  font-family: "Open Sans";
  font-size: 10px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  padding-top: 10px;
  padding-right: 26px;
  position: absolute;
  top: -1px;
  left: -28px;
  width: 95px;
  height: 21px;
  background: url('../images/featured-categories.png') 0 0 no-repeat;
  transform: rotate(-45deg);
}
.slide-item.new-item:before {
  content: "New";
  background-position: 0 -63px;
}
.slide-item.sale-item:before {
  content: "-20%";
  background-position: 0 -31px;
}
.slide-item .icon-item {
  margin-left: 10px;
}
.slide-item .overflow-hidden {
  width: 100%;
}
.slide-item .title-item {
  font-family: 'Candara';
  font-size: 16px;
  overflow: hidden;
  max-width: 90%;
  padding-bottom: 10px;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin: 0 auto;
}
.slide-item .price-item {
  color: #1bc85c;
  font-family: 'OpenSans_semibold';
  font-size: 16px;
  text-shadow: 0 0 20px #1bc85c;
  margin: 0;
}
.slide-item span {
  color: #8f8f8f;
  text-decoration: line-through;
  font-family: 'OpenSans_semibold';
  font-size: 12px;
  margin-bottom: 4px;
}
.sale-item .title-item {
  padding-bottom: 8px;
}

.slider-items {
  position: relative;
  padding-bottom: 140px;
  z-index: 11;
}
.slider-items .slick-arrow {
  position: absolute;
  bottom: 66px;
  left: 50%;
  width: 32px;
  height: 34px;
  background: url('../images/slider-items-next.png') 0 0 no-repeat;
  outline: none;
  border: none;
  box-shadow: none;
  font-size: 0;
  filter: grayscale(100%) brightness(70%);
}
.slider-items .slick-arrow:focus {
  filter: none;
}
.slider-items .slick-prev {
  transform: rotate(180deg);
  margin-left: -100px;
}
.slider-items .slick-next {
  margin-left: 70px;
  bottom: 67px;
}
.slider-items .slick-dots {
  position: absolute;
  left: 0;
  bottom: 70px;
  width: 100%;
  display: flex;
  justify-content: center;
}
.slider-items .slick-dots li {
  display: inline-block;
}
.slider-items .slick-dots button {
  font-size: 0;
  width: 8px;
  height: 8px;
  background: url('../images/unactive-slider-dot.png') 0 0 no-repeat;
  margin: 0 13px;
  outline: none;
  border: none;
  box-shadow: none;
}
.slider-items .slick-dots .slick-active button {
  width: 26px;
  height: 26px;
  background: url('../images/slider-dot.png') 0 0 no-repeat;
}

.sliderHero {
  background: url(../images/slider-bg.jpg) center top no-repeat;
  background-color: #11181e;
  position: relative;
}
.sliderHero .container:after {
  content: "HERO";
  font-family: "Candara";
  position: absolute;
  font-size: 240px;
  font-weight: 600;
  color: #000;
  opacity: 0.24;
  top: 0px;
  left: 50px;
  letter-spacing: 10px;
  text-shadow: 1px 1px 0 rgba(140, 169, 193, 0.2);
}

.hero-slider-for .slick-list {
  overflow: visible;
}
.hero-slider-for:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, #131a20, #222d36, #131a20);
}
.hero-slider-for:after {
  position: absolute;
  content: "";
  bottom: -1px;
  left: calc(50% - 154.5px);
  width: 309px;
  height: 20px;
  background: url('../images/top-silder.png') 0 0 no-repeat;
}

.hero-slider-nav-bg {
  background-image: url('../images/slider-bottom-bg.jpg');
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slider-nav {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(to right, rgba(24, 33, 40, 0), rgba(24, 33, 40, 0.45), rgba(24, 33, 40, 0));
}
.hero-slider-nav:after {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  width: 50px;
  opacity: 70%;
  height: 100%;
  background: linear-gradient(to right, rgba(17, 24, 30, 0), rgba(17, 24, 30, 1));
  z-index: 10;
}
.hero-slider-nav:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 50px;
  opacity: 70%;
  height: 100%;
  background: linear-gradient(to left, rgba(17, 24, 30, 0), rgba(17, 24, 30, 1));
  z-index: 10;
}
.hero-slider-nav .slick-arrow {
  position: absolute;
  z-index: 20;
  width: 65px;
  height: 65px;
  font-size: 0px;
  box-shadow: none;
  top: 50%;
  margin-top: -58px;
  transition: 0.3s;
  background: url(../images/next-prev-icon.png) center no-repeat;
}
.hero-slider-nav .slick-arrow.slick-prev {
  left: -100px;
}
.hero-slider-nav .slick-arrow.slick-next {
  right: -100px;
  transform: rotate(180deg);
}
.hero-slider-nav .slick-arrow:focus {
  width: 70px;
  height: 70px;
  margin-top: -60px;
  background: url(../images/next-prev-active-icon.png) center no-repeat;
}
.hero-slider-nav .slick-prev:focus {
  left: -102.5px;
}
.hero-slider-nav .slick-next:focus {
  right: -102.5px;
}
.hero-slider-nav .slick-dots {
  display: none !important;
}
.hero-slider-nav .slick-slide {
  position: relative;
  opacity: 0.5;
  transition: 0.5s;
  text-align: center;
  background-image: url(../images/nav-bg.png);
  background-position: center 40px;
  background-repeat: no-repeat;
  background-size: 93px 93px;
  width: 160px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 60px;
  padding-right: 4px;
  cursor: pointer;
}
.hero-slider-nav .slick-slide h4 {
  position: absolute;
  bottom: 40px;
  font-family: "Candara";
  font-weight: normal;
  font-size: 18px;
  color: #8f7f61;
  transition: 0.5s;
}
.hero-slider-nav .slick-slide img {
  width: 56px;
  transition: 0.5s;
}
.hero-slider-nav .slick-slide.slick-center {
  background-image: url(../images/active-icon-bg.png);
  background-position: center 28px;
  background-size: 124px 125px;
  opacity: 1;
}
.hero-slider-nav .slick-slide.slick-center img {
  width: 60px;
  padding-bottom: 12px;
}
.hero-slider-nav .slick-slide.slick-center h4 {
  font-size: 24px;
  letter-spacing: 2px;
  color: #fff;
  bottom: 36px;
}

.sl-slide {
  min-height: 590px;
}
.sl-slide .sl-hero {
  position: absolute;
  right: -180px;
  top: -100px;
  z-index: 10;
  opacity: 0;
  transition: 1s;
  transform: scale(0.5);
}
.sl-slide .classInfo {
  position: absolute;
  left: 0px;
  padding-left: 140px;
  top: 30px;
  z-index: 13;
}
.sl-slide .classInfo .classIcon {
  position: absolute;
  left: 20px;
  top: 10px;
  filter: drop-shadow(0px 0px 14px rgba(202, 91, 38, 0.5));
}
.sl-slide .classInfo h2 {
  font-family: "Candara";
  font-size: 86px;
  letter-spacing: 12px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: -10px;
}
.sl-slide .classInfo h3 {
  color: #8f7f61;
  font-family: "Candara";
  font-size: 19px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 80px;
}
.sl-slide.slick-active .sl-hero {
  opacity: 1;
  transform: scale(1);
}
.sl-slide.slick-active .classInfo .abil .bar {
  width: 100%;
}

.sl-slide h4 {
  color: #f08d2f;
  font-family: "Candara";
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 30px;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(240, 141, 47, 0.8);
}
.skill-list ul {
  justify-content: flex-start;
  margin-bottom: 48px;
}
.skill-list li a {
  display: block;
  width: 34px;
  height: 34px;
  background: url('../images/skill-icons.png') -1px 0 no-repeat;
  margin-right: 17px;
  box-shadow: 2px 4px 10px 0 rgba(0, 0, 0, 0.8);
  transition: 0.3s;
}
.skill-list li a:hover {
  margin-top: -5px;
}
.skill-list li:nth-of-type(2) a {
  background: url('../images/skill-icons.png') -51px 0 no-repeat;
}
.skill-list li:nth-of-type(3) a {
  background: url('../images/skill-icons.png') -101px 0 no-repeat;
}
.skill-list li:nth-of-type(4) a {
  background: url('../images/skill-icons.png') -151px 0 no-repeat;
}
.skill-list li:nth-of-type(5) a {
  background: url('../images/skill-icons.png') -201px 0 no-repeat;
}
.skill-list li:nth-of-type(6) a {
  background: url('../images/skill-icons.png') -251px 0 no-repeat;
}
.basicAbility .stats>div {
  width: 270px;
  margin-right: 40px;
}
.info-abil {
  position: relative;
}
.info-abil .title-abil {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Candara";
  font-size: 14px;
  font-weight: lighter;
  letter-spacing: 1px;
}
.abil-stat {
  position: absolute;
  top: 2px;
  right: 0;
  font-family: 'OpenSans_semibold';
  font-size: 10px;
}
.basicAbility .abil {
  display: flex;
  align-items: center;
  margin: 7px 0px 15px 0;
  height: 8px;
  width: 270px;
  background: url('../images/bar.png') -4px -4px no-repeat;
  background-size: cover;
}
.basicAbility .abil span {
  display: block;
}
.basicAbility .abil .bar {
  height: 2px;
  margin-right: 15px;
  color: #7c7b7a;
  width: 100%;
  transition: 3s;
  margin-left: 2px;
}
.basicAbility .abil .abil-stat {
  margin-right: 15px;
}
.basicAbility .abil.green .bar {
  border-right: 2px solid #7bfd6e;
  background: linear-gradient(to right, #113a0b, #3bc21f);
}
.basicAbility .abil.green .abil-stat {
  color: #62b232;
}
.basicAbility .abil.red .bar {
  border-right: 2px solid #ff7b58;
  background: linear-gradient(to right, #551b07, #f05127);
}
.basicAbility .abil.red .abil-stat {
  color: #bb3111;
}
.basicAbility .abil.orange .bar {
  border-right: 2px solid #ffdd77;
  background: linear-gradient(to right, #442f09, #f09a27);
}
.basicAbility .abil.orange .abil-stat {
  color: #bb6511;
}

.basicAbility-h .abil .bar {
  width: 10%;
}

.top-line {
  position: absolute;
  content: "";
  top: 0;
  left: 50px;
  width: calc(100% - 100px);
  height: 1px;
  background: #4c3b31;
  z-index: 1;
}
.top-line .center-elem-line {
  position: absolute;
  content: "";
  top: -40px;
  left: calc(50% - 155.5px);
  width: 311px;
  height: 86px;
  background: url('../images/line-element.png') 0 0 no-repeat;
  z-index: 2;
}
.top-line:after {
  position: absolute;
  content: "";
  top: -7px;
  left: -48px;
  width: 54px;
  height: 15px;
  background: url('../images/left-elem-line.png') 0 0 no-repeat;
}
.top-line:before {
  position: absolute;
  content: "";
  top: -7px;
  right: -48px;
  width: 54px;
  height: 15px;
  transform: rotateX(180deg) rotateZ(180deg);
  background: url('../images/left-elem-line.png') 0 0 no-repeat;
}

.gameBlockCenter {
  background: url(../images/gameblock-bg.jpg) center bottom no-repeat;
  background-size: cover;
  background-color: #0f0e0c;
}
.gameBlockCenter h2 {
  text-transform: uppercase;
  font-family: 'Candara';
  font-size: 36px;
  letter-spacing: 5px;
  color: #f08d2f;
  font-weight: normal;
  margin-bottom: 50px;
}
.gameBlockCenter h2 span {
  margin-left: 5px;
  color: #8f7f61;
}
.gameBlockCenter .container {
  position: relative;
  padding: 80px 0px 50px 0px;
}

.gameBlockContainer {
  border: 1px solid #474546;
  width: 100%;
  transition: 0.3s;
  margin-bottom: 70px;
  flex-wrap: nowrap;
}
.gameBlockContainer .gameBlock {
  border-right: 1px solid #403f3d;
  width: 20%;
  padding: 40px 10px 40px 40px;
  transition: 0.3s;
  position: relative;
}
.gameBlockContainer .gameBlock h3 {
  font-family: 'Candara';
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.gameBlockContainer .gameBlock p {
  font-size: 13px;
  margin-bottom: 10px;
  font-family: "Open Sans";
  color: #8f7f61;
  position: relative;
  z-index: 1;
}
.gameBlockContainer .gameBlock .go {
  position: relative;
  display: inline-block;
  color: #ffb432;
  font-family: "Open Sans";
  font-size: 14px;
  text-shadow: 0px 0px 10px #ff5e0f;
  position: relative;
  z-index: 1;
  padding: 5px 0px 5px 0px;
}
.gameBlockContainer .gameBlock .go:after {
  content: '';
  background: url(../images/link-icon.png) center no-repeat;
  width: 8px;
  height: 12px;
  position: absolute;
  right: -14px;
  top: 50%;
  margin-top: -6px;
  transition: 0.3s;
}
.gameBlockContainer .gameBlock .game-icon {
  display: block;
  position: absolute;
  z-index: 1;
  left: 30px;
  top: 50%;
  margin-top: -50px;
  opacity: 0;
  transition: 0.3s;
}
.gameBlockContainer .gameBlock .game-icon img {
  height: 100px;
}
.gameBlockContainer .gameBlock:last-child {
  border-right: none;
}
.gameBlockContainer .gameBlock:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  background: url(../images/game-bg.jpg) center no-repeat;
  background-size: cover;
  opacity: 0;
  transition: 0.3s;
}
.gameBlockContainer:hover .gameBlock {
  width: 18%;
}
.gameBlockContainer:hover .gameBlock:hover {
  width: 28%;
  padding-left: 120px;
}
.gameBlockContainer:hover .gameBlock:hover p {
  color: #fff;
}
.gameBlockContainer:hover .gameBlock:hover .go {
  padding: 5px 30px 5px 10px;
  color: #000;
  background-color: #ffb432;
}
.gameBlockContainer:hover .gameBlock:hover .go:after {
  filter: grayscale(100%) brightness(10%);
  right: 10px;
}
.gameBlockContainer:hover .gameBlock:hover:after {
  opacity: 1;
}
.gameBlockContainer:hover .gameBlock:hover .game-icon {
  opacity: 1;
}

.timeBlock {
  justify-content: flex-end;
  font-family: "Open Sans";
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
}
.time-info {
  margin-left: 55px;
}
.timeBlock span {
  color: #f08d2f;
  margin-left: 6px;
}

footer {
  background: #040708 url('../images/footer-bg.jpg') center bottom no-repeat;
}

.footerInfo {
  background: #05090a;
  height: 106px;
}

.logo-footer {
  transition: 0.3s;
  display: block;
}

.language {
  font-family: "Open Sans";
  color: #8f7f61;
  margin-left: auto;
}

.lang-block {
  position: relative;
  margin-left: 24px;
  width: 250px;
  height: 36px;
  padding: 9px 10px;
  background: rgba(56, 70, 71, 0.13);
}

.lang-block>a:after {
  position: absolute;
  right: 0px;
  top: 2px;
  content: '';
  height: 32px;
  width: 34px;
  background: url("../images/slider-items-next.png") 0 0 no-repeat;
  transform: rotate(90deg);
  filter: grayscale(100%) brightness(70%);
  transition: 0.3s;
}
.lang-block:hover>a:after,
.lang-block:focus>a:after {
  filter: grayscale(100%) brightness(150%);
}

.lang-block a {
  font-family: "Open Sans";
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

.lang-block a:hover  {
  color: #fff;
}

.img-lang {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin-right: 8px;
  margin-bottom: -2px;
  transition: all 0.3s ease;
}

.main-item {
  color: #000;
}

.hidden-block {
  visibility: visible;
  opacity: 1;
  position: absolute;
  background: rgba(0, 0, 0, 0.85);
  min-width: 250px;
  z-index: 2;
  left: 0px;
  top: 40px;
  transition: all 0.5s ease;
  visibility: hidden;
  opacity: 0;
  padding: 10px 0px;
  box-shadow: 0 0 20px 0px rgba(0,0,0,0.8);;
}

.hidden-block a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 25px;
  color: #ffffff;
}

.hidden-block a:hover {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.1), transparent);
  color: #f08d2f;
}

.hidden-block:after {
  border: 5px solid transparent;
  border-bottom-color: #010101;
  position: absolute;
  left: 24px;
  top: -10px;
  content: "";
}

.main-item:focus ~ .hidden-block,
.main-item:active ~ .hidden-block {
  visibility: visible;
  opacity: 1;
}

.infoBlock {
  margin-left: 30px;
}
.infoBlock a {
  margin: 0px 30.5px 2px 30.5px;
}
.infoBlock span {
  margin-left: 25px;
  font-size: 14px;
}

.footerMenu {
  position: relative;
  margin: 55px 0 68px 0;
}

.footerMenuBlock {
  width: 25%;
  position: relative;
}
.footerMenuBlock h4 {
  position: relative;
  color: #f08d2f;
  font-size: 18px;
  text-transform: uppercase;
  font-family: "Open Sans";
  font-weight: normal;
  margin-bottom: 20px;
  padding-left: 30px;
}
.footerMenuBlock h4:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -14px;
  left: -6px;
  width: 26px;
  height: 26px;
  background: url('../images/slider-dot.png') 0 0 no-repeat;
}
.footerMenuBlock ul li a {
  position: relative;
  display: inline-block;
  color: #8f7f61;
  font-family: "Open Sans";
  font-size: 14px;
  padding: 10px 0px 10px 30px;
  background: url(../images/list-hover.png) left -20px center no-repeat;
}
.footerMenuBlock ul li a:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -16px;
  left: -10px;
  width: 32px;
  height: 34px;
  filter: grayscale(100%) brightness(70%);
  background: url('../images/slider-items-next.png') 0 0 no-repeat;
  transition: 0.3s;
}
.footerMenuBlock ul li a:hover:after {
  filter: grayscale(100%) brightness(150%);
}
.footerMenuBlock ul li a:hover {
  padding: 10px 0px 10px 20px;
  color: #fff;
}
.footerMenuBlock ul li a:hover:after {
  left: -18px;
}
.footerMenuBlock p {
  color: #8f7f61;
}
.footerMenuBlock span {
  display: block;
  margin-top: 10px;
  color: #fff;
}

.footerButtons {
  position: absolute;
  left: 25%;
  bottom: 0px;
  width: 50%;
}

.footerCopy {
  position: relative;
  padding: 30px 0 50px 0;
}
footer .top-line {
  background: #131617;
  width: 100%;
  left: 0;
}
footer .top-line:after,
footer .top-line:before {
  display: none;
}
.copy-info {
  flex-wrap: nowrap;
  font-family: "Open Sans";
  font-size: 14px;
  color: #8f7f61;
  line-height: 1.3;
}
.copy-info p {
  margin-left: 25px;
  margin-bottom: 0;
}
.copy-info a {
  font-family: "Open Sans";
}

.socBlock a {
  display: block;
  height: 18px;
  width: 22px;
  margin-left: 24px;
  background-image: url('../images/footer-social-icons.png');
  background-repeat: no-repeat;
  opacity: 0.3;
}
.socBlock a:hover {
  opacity: 1;
}
.socBlock a.facebook {
  background-position: left 0 center;
  margin-left: 0;
}
.socBlock a.twitter {
  background-position: left -42px center;
}
.socBlock a.vk {
  background-position: left -85px center;
}
.socBlock a.youtube {
  background-position: left -131px center;
}
.socBlock a.discord {
  background-position: left -176px center;
}


.toTop {
  width: 160px;
  height: 90px;
  cursor: pointer;
  position: fixed;
  bottom: 60px;
  right: -2px;
  font-family: "Candara";
  font-size: 12px;
  opacity: .5;
  color: #fff;
  padding-left: 90px;
  padding-bottom: 10px;
  transform: rotate(-90deg);
  background: url("../images/button-to-top.png") 0 0 no-repeat;
  z-index: 1;
  transition: 0.3s;
}
.toTop:hover {
  opacity: 1;
}


.modal {
  max-width: 500px;
  width: 100%;
  min-height: 600px;
  background: #040607;
  position: fixed;
  top: 15%;
  left: 50%;
  margin-left: -250px;
  /* margin-top: -50px; */
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.2);
  border-radius: unset;
}

.modal .signTabs {
  font-family: "Candara";
  font-size: 18px;
  color: #fff;
  margin-bottom: 50px;
}

.signTab-button {
  background: #010202;
  width: 50%;
  height: 78px;
  opacity: .5;
  transition: all 0.3s ease;
  cursor: pointer;
}

.signTab-button.active,
.signTab-button:hover {
  background: #040607;
  opacity: 1;
}

.modal-v {
  display: none;
  padding: 0 70px 45px 70px;
}
.modal-v.active {
  display: block;
  animation: opas 0.5s linear;
}

@keyframes opas {
  0% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

.modal .modal_close {
  width: 30px;
  height: 30px;
  background: url(../images/close-icon.png) center no-repeat;
  position: absolute;
  top: 15px;
  right: -45px;
  cursor: pointer;
  display: block;
  transition: 0.3s;
}

#overlay {
  position: fixed;
  background-color: rgba(10, 16, 20, 0.85);
  opacity: 0.9;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  display: none;
}

.facebookButton,
.googleButton {
  width: 100%;
  height: 52px;
  text-align: center;
  background: #297fff url('../images/sign-icons.png') 16px 16px no-repeat;
  color: #fff;
  font-size: 18px;
  font-family: 'Candara';
  margin-bottom: 5px;
  transition: 0.3s;
}
.googleButton {
  color: #000;
  background: #fff url('../images/sign-icons.png') 16px -38px no-repeat;
  margin-bottom: 30px;
}
.facebookButton:hover {
  color: #fff;
  filter: brightness(1.3);
}
.googleButton:hover {
  color: #000;
  filter: brightness(1.3);
}
.facebookButton span,
.googleButton span {
  font-weight: bold;
  margin-left: 5px;
}

.or {
  position: relative;
  width: 100%;
  font-family: "Candara";
  font-size: 14px;
  text-transform: uppercase;
  color: #797979;
  text-align: center;
}
.or:before {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  width: 50%;
  height: 1px;
  max-width: 160px;
  background: #1e1f20;
}
.or:after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  width: 50%;
  height: 1px;
  max-width: 160px;
  background: #1e1f20;
}

.modalForm {
  margin-top: 30px;
}

.formLinks p {
  max-width: 80%;
  text-align: center;
  font-family: "Candara";
  font-size: 14px;
  color: #8f7f61;
  margin: 35px auto 0;
  line-height: 1.4;
}

.formGroup {
  position: relative;
  margin-bottom: 5px;
  width: 100%;
}
.formGroup-name {
  display: block;
  font-family: "Candara";
  font-size: 14px;
  color: #8f7f61;
  margin-bottom: 4px;
}
.formGroup input {
  width: 100%;
  background: #0b0e0f;
  height: 50px;
  padding: 15px 20px;
  font-family: "Open Sans";
  font-size: 14px;
  transition: 0.3s;
  color:rgba(255, 255, 255, 0.3);
}
#sign-up input {
  background: #0b0e0f;
  height: 45px;
}
.formGroup input::-webkit-input-placeholder {
  color:rgba(255, 255, 255, 0.3);
}
.formGroup input::-moz-placeholder {
  color:rgba(255, 255, 255, 0.3);
}
.formGroup input:-moz-placeholder {
  color:rgba(255, 255, 255, 0.3);
}
.formGroup input:-ms-input-placeholder {
  color:rgba(255, 255, 255, 0.3);
}
.wrong-validation input {
  border: 2px solid #f08d2f;
  color: #f08d2f;
  box-shadow: 0 0 20px 0 rgba(240, 142, 47, 0.3);
}
.wrong-validation:after {
  position: absolute;
  right: 10px;
  top: 34px;
  content: "";
  width: 15px;
  height: 15px;
  background: url('../images/validation-icons.png') 0 -15px no-repeat;
}
.success-validation:after {
  position: absolute;
  right: 10px;
  top: 34px;
  content: "";
  width: 15px;
  height: 15px;
  background: url('../images/validation-icons.png') 0 0 no-repeat;
}
.formGroup .error {
  position: absolute;
  top: -18px;
  right: -452px;
  width: 444px;
  height: 130px;
  padding: 40px 0 40px 170px;
  font-family: "Candara";
  font-size: 14px;
  color: #f08d2f;
  background: url('../images/wrong-validation-bg.png') center no-repeat;
  z-index: 1;
}

.formGroup-button button {
  width: 100%;
  height: 52px;
  background: url('../images/login-btn-bg.jpg') center no-repeat;
  font-family: "Candara";
  font-size: 16px;
  margin-top: 25px;
}


.scrollbar-inner {
  max-width: 100%;
}

/*************** 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: 4px;
  left: 10px;
  width: calc(100% - 20px);
}

.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: rgba(255, 255, 255, 0.05);
}

.scrollbar-inner > .scroll-element .scroll-bar {
  background-color: rgba(255, 255, 255, 0.2);
}

.scrollbar-inner > .scroll-element:hover .scroll-bar {
  background-color: rgba(255, 255, 255, 0.25);
}

.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar {
  background-color: rgba(255, 255, 255, 0.25);
}

/* 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;
}