body {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255,255,255,0.7);
  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, label {
  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;
  right: 0;
  left: 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-right: 50px;
  padding-left: 50px;
}

.content__wrapper {
  margin-right: 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-right: 80px;
    margin-top: 88px;
  }
}
@media (max-width: 1199px) {
  .content__wrapper {
    margin-top: 85px;
  }
}
@media (max-width: 991px) {
  .container-fluid {
    padding-right: 30px;
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 100%;
  }
  .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }
  .content__wrapper {
    margin-right: 0;
    margin-top: 80px;
  }
  .main__title {
    margin-bottom: 20px;
  }
  .main__title h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
/* Game Box CSS */
.game__bg-banner {
  padding-top: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0.1;
  overflow: hidden;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

/* Game Box CSS */
/* 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;
  left: 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;
  right: 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-right: 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;
  left: 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: #00f5a3 ;
}

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

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  right: auto;
  left: 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 {
    left: 55px;
  }
  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    left: 15px;
  }
}
/* 06072022*/
.explore__more.text-right {
  padding-left: 180px;
  margin-top: 5px;
}

@media (max-width: 767px) {
  .explore__more.text-right {
    padding-left: 100px;
  }
}
/* News Section CSS */
.news-block .row {
  margin: 0 -10px;
}
.news-block .col-lg-6 {
  padding: 0 10px;
}
.news-block .col-lg-6:nth-child(n+3) {
  margin-top: 20px;
}

.news__slider .news__item .news__bannner {
  padding-top: 44.4%;
}
.news__slider .news__item .news__des {
  bottom: 30px;
  right: 30px;
}
.news__slider .news__item .news__des h4 {
  font-size: 36px;
}
.news__slider .swiper-pagination {
  left: 20px;
  right: auto;
  width: auto;
  bottom: 20px;
}
.news__slider .swiper-pagination .swiper-pagination-bullet {
  background-color: rgba(255, 255, 255, 0.25);
}
.news__slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: rgb(255, 255, 255);
}

.news__item {
  position: relative;
  z-index: 99;
}
.news__item .news__bannner {
  padding-top: 43%;
  overflow: hidden;
  position: relative;
}
.news__item .news__bannner img {
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.news__item .news__des {
  position: absolute;
  top: auto;
  bottom: 20px;
  right: 20px;
  left: auto;
  width: 70%;
  z-index: 9;
}
.news__item .news__des h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: #ffffff;
}
.news__item .news__des p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
}
.news__item:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(-180deg, rgba(17, 20, 29, 0) 0%, rgba(17, 20, 29, 0.84) 81.8%);
  border-radius: 10px;
  z-index: 9;
}

/* News Section CSS */
/* Partners Section CSS */
.partners-block .row {
  margin: 0 -10px;
}
.partners-block .col-lg-2 {
  padding: 0 10px;
}

.partner__item {
  background-color: #161b26;
  border-radius: 10px;
  padding: 12px;
}
.partner__item .partner__img {
  position: relative;
  overflow: hidden;
  /* padding-top: 100%; */
}
.partner__item .partner__img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.partner__item .partner__des {
  margin-top: 12px;
}
.partner__item .partner__des h4 {
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 48px;
}

.partner__details {
  margin-top: 14px;
}
.partner__details .partner__box {
  background-color: #191D2A;
  border-radius: 6px;
  max-width: calc(50% - 24px);
  flex: 0 0 calc(50% - 24px);
  margin: 0 4px;
  padding: 8px;
  text-align: center;
}
.partner__details .partner__box h5 {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}
.partner__details .partner__box h5 .lazy {
  width: 20px;
  height: auto;
}
.partner__details .partner__box h6 {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Partners Section CSS */
/* Leagues Section CSS */
.leagues-block .row, .tournaments-block .row {
  margin: 0 -10px;
}
.leagues-block .col-lg-3, .tournaments-block .col-lg-3 {
  padding: 0 10px;
}

.leagues-block .game__box {
  box-sizing: border-box;
}
.leagues-block .game__box .game__body .info__item {
  max-width: 33.33%;
  flex: 0 0 33.33%;
}
.leagues-block .game__box .game__body .info__item:not(:last-child) {
  padding-left: 20px;
}
.leagues-block .game__box .game__header .game__logo {
  min-width: 28%;
  flex: 0 0 28%;
}
.leagues-block .game__box .game__header .game__des {
  padding-right: 22px;
  margin-right: 0;
  min-width: 72%;
  flex: 0 0 72%;
}
.leagues-block .game__tags {
  height: 66px;
  overflow: hidden;
}

/* Leagues Section CSS */
/* Tournaments Section CSS */
.tournaments-block .game__box .game__header .game__logo {
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
}
.tournaments-block .game__box .game__header .game__logo img {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
/* .tournaments-block .game__box .game__header .game__des h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 0;
  color: #ffffff;
  white-space: unset;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
} */

.tournaments-block .game__box {
  margin-bottom: 20px;
}

.load__more {
  border-top: 1px solid #1A1F2D;
  padding-top: 20px;
  margin-top: 10px;
}
.load__more a {
  color: #ffffff;
  font-family: "Roboto Condensed";
  font-weight: 700;
  font-size: 20px;
}
.load__more a:hover {
  color: #1086ff;
  transition: all 0.6s ease-in-out;
}

/* Tournaments Section CSS */
/* Team Box CSS */
.team__player {
  background-color: #161b26;
  border-radius: 10px;
  overflow: hidden;
}
.team__player .player__banner {
  border-radius: 10px 10px 0 0;
  padding-top: 15%;
  position: relative;
  overflow: hidden;
}
.team__player .player__banner img {
  border-radius: 10px 10px 0 0;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.team__player .team__logo {
  background-color: #0B0D13;
  border: 6px solid #161b26;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  margin: 0 auto;
  margin-top: -25px;
  padding: 10px;
  position: relative;
  z-index: 9;
}
.team__player .team__logo img {
  border-radius: 50%;
}
.team__player .player__msg {
  margin: 20px auto;
  width: 70%;
}
.team__player .player__msg p {
  font-weight: 500;
}
.team__player .player__msg p a {
  font-weight: 700;
  text-decoration: underline;
}
.team__player .player__details h4 {
  font-size: 20px;
  font-weight: 700;
}
.team__player .player__details h5 {
  font-size: 16px;
  font-weight: 700;
}
.team__player .player__details h5 img {
  margin-left: 6px;
}
.team__player .player__details .team__rank {
  border-right: 1px solid #242B3E;
  margin-right: 14px;
  padding-right: 14px;
  border-radius: 10px;
}
.team__player .player__details .game__tags {
  margin-top: 10px;
  padding: 10px;
  border-top: 1px solid #1A1F2D;
}
.team__player .player__details .game__tags .badge {
  padding: 8px 10px;
  line-height: 1.7;
}
.team__player .player__details .game__tags .badge img {
  margin-left: 5px;
}

/* Team Box CSS */
@media (max-width: 1600px) {
  .container-fluid {
    padding-right: 30px;
    padding-left: 30px;
  }
  .content__wrapper {
    margin-right: 80px;
    margin-top: 145px;
  }
  /* News Section CSS */
  .news__item .news__des {
    bottom: 10px;
    right: 10px;
    width: 90%;
  }
  .news__item .news__des h4 {
    font-size: 16px;
  }
  .news__item .news__des p {
    font-size: 13px;
    margin-top: 10px;
  }
  .news__slider .news__item .news__des {
    bottom: 20px;
    right: 20px;
    width: 85%;
  }
  .news__slider .news__item .news__des h4 {
    font-size: 24px;
  }
  /* News Section CSS */
  /* Leagues Section CSS */
  .leagues-block .game__box .game__body .info__item:not(:last-child) {
    padding-left: 5px;
  }
  .leagues-block .game__box .game__header .game__des {
    padding-right: 10px;
  }
  .leagues-block .game__box .game__header .game__des h4 {
    height: auto;
  }
  .leagues-block .game__tags {
    height: 50px;
  }
  /* Leagues Section CSS */
  /* Partners Section CSS */
  .partners-block .row {
    margin: 0 -5px;
  }
  .partners-block .col-lg-2 {
    padding: 0 5px;
  }
  .partner__item .partner__des h4 {
    font-size: 14px;
    height: 34px;
  }
  .partner__details .partner__box h5 {
    font-size: 14px;
  }
  .partner__details .partner__box h6 {
    font-size: 10px;
  }
  /* Partners Section CSS */
}
@media (max-width: 1280px) {
  /* Partners Section CSS */
  .partners-block .col-lg-2 {
    padding: 0 5px 10px;
    flex: 0 0 20%;
    max-width: 20%;
  }
  /* Partners Section CSS */
  .leagues-block .col-lg-3, .tournaments-block .col-lg-3 {
    flex: 0 0 33.33%;
    max-width: 33.33%;
  }
  .leagues-block .game__box {
    margin-bottom: 20px;
  }
}
@media (max-width: 1260px) {
  .partners-block .col-md-4,
.leagues-block .col-md-4,
.tournaments-block .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  /* Leagues Section CSS */
  .leagues-block .game__box {
    margin-bottom: 20px;
  }
  /* Leagues Section CSS */
}
@media (max-width: 1199px) {
  /* News Section CSS */
  .news-block .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .news-block .col-md-12 .col-lg-6 {
    margin-top: 20px;
  }
  /* News Section CSS */
}
@media (max-width: 991px) {
  /* Leagues Section CSS */
  .leagues-block .col-md-4,
.tournaments-block .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  /* Leagues Section CSS */
}
@media (max-width: 767px) {
  section.mt-5 {
    margin-top: 30px !important;
  }
  .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }
  .content__wrapper {
    margin-right: 0;
    margin-top: 133px;
  }
  .main__title {
    margin-bottom: 20px;
  }
  .main__title h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  /* News Section CSS */
  .news__slider .swiper-pagination {
    left: 10px;
    bottom: 5px;
  }
  .news__slider .news__item .news__des {
    bottom: 10px;
    right: 10px;
    width: 70%;
  }
  .news__slider .news__item .news__des h4 {
    font-size: 18px;
  }
  .news__slider .news__item .news__des p {
    font-size: 10px;
    margin-top: 5px;
  }
  /* News Section CSS */
  /* Partners Section CSS */
  /* Partners Section CSS */
  /* Leagues Section CSS */
  .partners-block .col-md-4,
.leagues-block .col-md-4,
.tournaments-block .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .leagues-block .game__tags {
    height: auto;
  }
  /* Leagues Section CSS */
}
/* 09062022*/
.leagues-block .explore__more, .partners-block .explore__more {
  position: absolute;
  top: 0;
  left: 200px;
}
.leagues-block .explore__more a, .partners-block .explore__more a {
  color: #ffffff;
  font-family: "Roboto Condensed";
  font-weight: 700;
  font-size: 20px;
}

@media (max-width: 767px) {
  .leagues-block .explore__more {
    left: 100px;
  }
}

.asingle-tournaments-foreach-html {
  border-radius: 10px;
}

@media(min-width:1601px){
  [dir=rtl] .news__item .news__des{
    width: 85%;
  }
}

/* Ticket section design start */
.nf_buy-ticket p {
    font-weight: 400;
    font-family: 'Futura, sans-serif';
    color: #687593;
    margin-top: 30px;
}

.nf_buy-ticket p span {
    color: #fff;
}

.nf_buy-ticket h1 {
    font-style: italic;
}

span.nf_head-span {
    font-style: italic;
    background: linear-gradient(-180deg, #464E66 0%, #32384B 100%);
    padding: 5px 25px 6px;
    margin-bottom: 20px;
    display: inline-block;
    clip-path: polygon(12% 0%, 100% 0%, 90% 100%, 0% 100%);
    font-family: 'Futura, sans-serif';
}

.counter-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    background: var(--primary-green-color);
    color: #111;
    padding: 10px 15px;
    margin-top: 20px;
}

a.counter-value,a.counter-value:hover {
    color: #111;
}

a.counter-value b {
    display: block;
    line-height: 1;
}

.plus-btn, .minus-btn {
    border: 0;
}

.counter-value {
  font-size: 15px;
  padding-inline: 35px;
}

a.counter-wrapper button {
    border: 0;
}

span.counter-value b {
    font-weight: 400;
    display: block;
    line-height: 1.4;
    font-size: 15px;
}

.counter-wrapper:hover {
    color: #111;
}

.plus-btn,.minus-btn {
    line-height: 1;
    width: 28px;
    height: 28px;
    font-size: 24px;
    position: relative;
    border-radius: 4px;
    background: #01221952;
}

.minus-btn {
    padding-bottom: 5px;
}

.plus-btn:before, .minus-btn:before {
    content: '';
    border: 1px solid #01261d33;
    width: 36px;
    height: 35px;
    display: block;
    position: absolute;
    right: -4px;
    top: -3px;
    border-radius: 6px;
}

.nf_buy-left-con {
    padding-left: 6vw !important;
}

.buy_card-img {
    position: relative;
    overflow: hidden;
    padding-top: 108%;
}

.buy_card-img img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    object-fit: cover;
    width: 100%;
    height: auto;
}

.nf-buy_card-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    grid-auto-flow: row dense;
    grid-gap: 30px;
    padding-bottom: 50px;
}

.buy_card-con {
    background: rgb(48 53 72);
    text-align: center;
    border-radius: 25px;
}

.buy_card-con p {
    padding: 10px 0 15px;
    margin: 0;
}

.buy_card {
    background: #282b36;
    padding: 10px;
    border-radius: 25px;
    border: 2px solid #3B3F51;
}

@media(max-width:991px){
    .nf_buy-left-con {
        padding-inline: 10px !important;
        text-align: center;
    }
    .nf_buy-ticket > div > div {
        gap: 30px;
    }
}
/* Ticket section design end */
