
body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255,255,255,0.7);
  background-color: #0B0D13;
  counter-reset: section;
  box-sizing: border-box;
}
body *, body *:before, body *:after {
  box-sizing: inherit;
}



a, path {
  text-decoration: none !important;
  transition: all 0.6s ease-in-out;
}

button:focus, :focus {
  outline: none !important;
  box-shadow: none !important;
}

img {
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6{
  font-weight: 700;
}

p:empty {
  display: none;
}

.blue-gradiant {
  background: linear-gradient(180deg, #4FA6FF 0%, #007EFF 100%);
}

.blue-gradiant-1 {
  background: linear-gradient(270deg, #007EFF 0%, #4FA6FF 100%);
}

.yellow-gradiant {
  background: linear-gradient(90deg, #ECCC68 0%, #FFA502 100%);
}

.gray-gradiant {
  background: linear-gradient(270deg, #39415C 0%, #555F83 100%);
}

.green-gradiant {
  background: linear-gradient(270deg, #2FCE6E 0%, #7DDBA2 100%);
}

.red-gradiant {
  background: linear-gradient(270deg, #FF4757 0%, #FF6B81 100%);
}

.orange-gradiant {
  background: linear-gradient(270deg, #FF6348 0%, #FF7F50 100%);
}

.blue-gradiant-text {
  background: linear-gradient(180deg, #4FA6FF 0%, #007EFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  height: auto;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  padding: 12px 15px;
  margin: 0;
  color: #ffffff;
  border: none;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  transform: perspective(1px) translateZ(0);
  position: relative;
  transition-property: color;
  transition-duration: 0.5s;
}
.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.2);
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
}
.btn:hover:before {
  transform: scaleY(1);
  transition-property: transform;
  transition-duration: 0.5s;
  transition-timing-function: ease-out;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.btn:hover {
  color: #ffffff;
}

.modal-backdrop {
  background: rgba(11, 13, 19, 0.8);
  opacity: 1 !important;
}

.container-fluid {
  padding-left: 50px;
  padding-right: 50px;
}

.content__wrapper {
  margin-left: 100px;
  margin-top: 100px;
}

@media (min-width: 1800px) {
  .container-fluid {
    max-width: 1630px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1315px;
  }
}
.main__title {
  border-bottom: 1px solid #1A1F2D;
  margin-bottom: 30px;
}
.main__title h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

@media (min-width: 5000px) {
  body {
    zoom: 1.2;
  }
}
@media (max-width: 1600px) {
  .content__wrapper {
    margin-left: 80px;
    margin-top: 88px;
  }
}
@media (max-width: 1199px) {
  .content__wrapper {
    margin-top: 85px;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 100%;
  }
  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
  .content__wrapper {
    margin-left: 0;
    margin-top: 80px;
  }
  .main__title {
    margin-bottom: 20px;
  }
  .main__title h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
/* Message Modal */
.message--modal .modal-dialog {
  margin: 120px auto;
}
.message--modal .modal-content {
  background-color: rgba(17, 20, 29, 0.96);
  box-shadow: 0 38px 45px rgba(0, 0, 0, 0.6);
}
.message--modal .close {
  top: 5px;
  right: 0;
  opacity: 1;
  padding: 0;
  margin: 0;
  width: 25px;
  height: 25px;
}
.message--modal .close svg {
  width: 12px;
  height: 12px;
}
.message--modal .close svg path {
  fill: #ffffff;
}
.message--modal .message__body p {
  color: #ffffff;
  font-size: 16px;
}

/* Message Modal */
/* Loader CSS */
.loader__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 13, 19, 0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loader__wrapper .loader li {
  background: linear-gradient(270deg, #007EFF 0%, #4FA6FF 100%);
  margin-left: 1px;
  width: 20px;
  height: 30px;
  display: inline-block;
  opacity: 0;
  border-radius: 2px;
  transform: skew(-25deg, 0deg) scale(0.1);
  -webkit-animation: loader 0.5s ease-in-out infinite alternate;
          animation: loader 0.5s ease-in-out infinite alternate;
}
.loader__wrapper .loader li:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.loader__wrapper .loader li:nth-child(3) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.loader__wrapper .loader li:nth-child(4) {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
.loader__wrapper .loader li:nth-child(5) {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.loader__wrapper .loader li:nth-child(6) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
.loader__wrapper .loader li:nth-child(7) {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

@-webkit-keyframes loader {
  to {
    transform: skew(-25deg, 0deg) scale(1);
    opacity: 1;
  }
}

@keyframes loader {
  to {
    transform: skew(-25deg, 0deg) scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Trophies counter CSS */
.trophies__icon a {
  display: inline-block;
  position: relative;
}
.trophies__icon a .trophies__count {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 22px;
  min-width: 22px;
  text-align: center;
  background: linear-gradient(180deg, #4FA6FF 0%, #007EFF 100%);
  line-height: 22px;
  border-radius: 30px;
  color: #fff;
  font-weight: 700;
  padding: 0 5px;
  font-size: 10px;
}

/*09-06-2022*/
.swiper-button-next, .swiper-button-prev {
  top: 15px;
  border: 2px solid;
  border-radius: 40px;
  height: 40px;
  width: 40px;
  color: #1b8cff;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 60px;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: auto;
  right: 120px;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 20px;
}

.swiper-button-next:after {
  width: 10px;
}

@media (max-width: 767px) {
  .swiper-button-next, .swiper-button-prev {
    width: 30px;
    height: 30px;
    top: 20px;
  }
  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 16px;
  }
  .swiper-button-next:after {
    width: 5px;
  }
  .swiper-button-prev, .swiper-rtl .swiper-button-next {
    right: 55px;
  }
  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: 15px;
  }
}
/* 06072022*/
.explore__more.text-right {
  padding-right: 180px;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .explore__more.text-right {
    padding-right: 100px;
  }
}
/* Search Result CSS */
.search_result-block {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding-bottom: 30px;
  z-index: 100;
  overflow: auto;
  background-color: rgba(11, 13, 19, 0.9);
  display: none;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.search_result-block .content__wrapper {
  margin-top: 150px;
  margin-left: 100px;
}
.search_result-block .row:last-child {
  margin: 0 -10px;
}
.search_result-block .row .col-lg-3 {
  padding: 0 10px;
}
.search_result-block .news__res-item {
  margin-bottom: 20px;
}
.search_result-block .game__box .game__header .game__des h4 {
  padding-bottom: 10px;
  margin: 0 0 10px;
  border-bottom: 1px solid #1A1F2D;
}
.search_result-block .news__res-stats p {
  font-weight: 500;
}
.search_result-block::-webkit-scrollbar {
  width: 4px;
}
.search_result-block::-webkit-scrollbar-track {
  border-radius: 16px;
  background-color: #1E2333;
}
.search_result-block::-webkit-scrollbar-thumb {
  background: #333C56;
  border-radius: 16px;
}
.search_result-block::-webkit-scrollbar-thumb:hover {
  background: #00f5a3;
}

.search--result {
  overflow: hidden;
}
.search--result .search_result-block {
  display: block;
}
.search--result .header__wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 13, 19, 0.9);
  z-index: 1;
}
.search--result .header__search {
  z-index: 2;
}
.search--result .header__search .form-control {
  background: rgba(255, 255, 255, 0.2);
}
.search--result .header__search .search__btn i:before {
  content: "\f00d";
}

@media (max-width: 1600px) {
  .search_result-block .content__wrapper {
    margin-left: 50px;
    margin-top: 30px;
  }
}
@media (max-width: 1199px) {
  .search_result-block .content__wrapper {
    margin-left: 80px;
    margin-top: 135px;
  }
  .search--result .header__wrapper:before {
    display: none;
  }
}
@media (max-width: 991px) {
  .search_result-block {
    padding-bottom: 90px;
  }
  .search_result-block .content__wrapper {
    margin-left: 0;
    margin-top: 130px;
  }
}
/* Search Result CSS */