/****** loader*****/
.ping-pong-loader {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000000;
}
.ball-loader {
  width: 100px;
  height: 100px;
  position: relative;
  -webkit-animation: rotate 3s linear infinite;
          animation: rotate 3s linear infinite;
}

@-webkit-keyframes rotate {
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
} 
.ball {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  -webkit-animation: racket 1s ease-in-out infinite;
          animation: racket 1s ease-in-out infinite;
  transform: scale(0.5);
  box-shadow: 0px 0px 100px rgba(0, 0, 0, 0.5);
}
.ball:nth-child(1) {
  background: #22235e;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.ball:nth-child(1):after {
  content: "";
  width: 13px;
  height: 21px;
  background: #d9b662;
  position: absolute;
  top: -15px;
  transform: rotate(144deg);
  transform-origin: center center;
}
.ball:nth-child(3) {
  background: #ed429a;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-animation-delay: 500ms;
  animation-delay: 500ms;
}
.ball:nth-child(2) {
  background: #22235e;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-animation-delay: 500ms;
  animation-delay: 500ms;
}
.ball:nth-child(2):after {
  content: "";
  width: 13px;
  height: 21px;
  background: #d9b662;
  position: absolute;
  top: -15px;
  transform: rotate(144deg);
  transform-origin: center center;
}
.ball:nth-child(4) {
  background: #ed429a;
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  box-shadow: inset 0px 10px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.5);
}

@-webkit-keyframes racket {
  0% {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    transform: scale(0.5);
  }
  50% {
    box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.2);
    transform: translateX(50px) scale(1.2);
  }
  100% {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    transform: scale(0.5);
  }
}

@keyframes racket {
  0% {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    transform: scale(0.5);
  }
  50% {
    box-shadow: 0px 20px 20px rgba(0, 0, 0, 0.2);
    transform: translateX(50px) scale(1.2);
  }
  100% {
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2);
    transform: scale(0.5);
  }
}

/***** loader ***/
.main-header .header-upper .logo .main_logo {
    height: 120px;
    height: 90px;
    margin-top: -10px;
}
.sticky_logo {
    height: 70px;
    padding: 2px 0;
}
.footer_logo {
    max-width: 135px;
}

.player-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.player-bg img {
    visibility: hidden;
}
.listing-pagination li {
    margin-right: 5px;
}
.listing-pagination .page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #ed4c9a;
    border-color: #ed4c9a;
}

.listing-pagination .page-item:first-child .page-link {
    border-radius: 0;
}

.listing-pagination  .page-link {
    padding: 15px 20px;
    font-size: 18px;
    color: #21225e;
    background-color: #fff;
    border: 1px solid #dee2e6;
    font-weight: bold;
}

.page-item:last-child .page-link {
    border-radius: 0;
}

.listing-pagination .page-link:hover {
    color: #fff;
    text-decoration: none;
    background-color: #ed4c9a;
    border-color: #ed4c9a;
}
.no-result-found h4 {
    text-align: center;
    font-size: 56px;
    line-height: 60px;
    color: #ed4c9a;
    padding: 100px 0 200px;
}
.video-frame {
    position: relative;
    overflow: hidden;
    height: 100vh;
    width: 100%;
    display: block;
}
.video-frame {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #000; 
}
.video-frame:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    top:0 ;
    left: 0;
}
.video-part-section {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-size: cover;
}
video#home-video {
    display: block;
    min-height: 100%;
/*    min-width: 100%;*/
     max-width: 800px; 
    height: auto;
    width: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.videopage-title {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    z-index: 3;
}
.video-content-center {
    display: table;
    /* max-width: 1200px; */
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
.video-inner-content {
    display: table-cell;
    vertical-align: middle;
}
.video-inner-content img {
    margin: 0 auto;
    padding-bottom: 10px;
}
.video-inner-content a em:before{
    font-size: 4em;
    color: #fff;
}
.banner-carousel .video-inner-content .content-box h2 {
    font-size: 90px;
    margin-bottom: 15px;
    line-height: 90px;
}

.banner-carousel .video-inner-content .content-box h3 {
    font-size: 52px;
    color: #d9b662;
    line-height: 52px;
    margin-bottom: 30px;
}
.match-item figure.image {
    border: solid 4px #fff;
}
.xtreme-img img {
    max-width: 300px;
    margin: 0 auto;
}

.nft-title {
    color: #d9b662;
    font-size: 52px;
    line-height: 52px;
    margin-bottom: 30px;
}
.row-bg {
    background-color: #000;
    background-size: contain;
    background-position: right;
    background-repeat: no-repeat;
}
.row-bg .col-6{
    padding: 0;
}

/*
.slides {
    width: 100% !important;
}
.sponsors-section {
    position: relative;
    padding: 60px 445px 237px;
}
	
.slide-item {
    width: 100%;
}
*/
	
.inner-radio-selection {
    text-align: center;
}

.inner-radio-selection input[type="radio"], .inner-radio-selection input[type="checkbox"] {
    opacity: 0;
    position: fixed;
    width: 0;
}
.inner-radio-selection label {
    width: 100%;
    padding: 6px 20px;
    white-space: inherit;
    height: 47px;
    font-size: 20px;
    line-height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    font-family: 'Built Titling Rg';
    font-family: 'Open Sans';
    font-weight: 500;
    color: #fff;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 30px;
    font-family: 'Built Titling Rg';
}
.inner-radio-selection label:hover {
    background-color: #ed4c9a;
    border: 2px solid #ed4c9a;
    color: #FFF !important;
}
 
.inner-radio-selection input[type="radio"]:focus + label,
.inner-radio-selection input[type="checkbox"]:focus + label {
     background-color: transparent;
     color: #FFF;
 }
 
.inner-radio-selection input[type="radio"]:checked + label,
.inner-radio-selection input[type="checkbox"]:checked + label {
    color: #FFF;
    /*background-color: #297b23;
    border-color: #297b23;*/
    background-color: #ed4c9a;
    border-color: #ed4c9a;
 }
.form-group.inner-radio-selection select {
    height: 45px;
    margin-top: 5px;
}
.popup-img img {
    max-width: 180px;
    margin: 0 auto;
    text-align: center;
}

.popup-img {
    text-align: center;
    margin-bottom: 20px;
}

.popup-img p {
    color: #fff;
    font-size: 16px;
    line-height: 24px;
}

.popup-img p a {
    color: #fff;
    font-weight: 600;
}

.subscribePopup .form-control {
    height: 45px !important;
    border-radius: 0;
    color: #000;
}

.form-check-label {
    color: #fff;
}
.subscribePopup .close {
    font-size: 32px;
    line-height: 36px;
    position: absolute;
    right: 0;
    opacity: 1;
    text-shadow: none;
}
.subscribePopup .status-msg {
    background-color: #ff000099;
    padding: 10px 20px;
    margin-bottom: 15px;
}

.subscribePopup .status-msg p {
    text-align: center;
    color: #fff;
}
.tournament-info-img img {
    max-width: 300px;
    margin: 0 auto;
}

.tournament-info-img {
    text-align: center;
}

.tournament-info-img p {
    color: #fff;
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 25px;
}

.tournament-info-section .form-control, .tournament-info-section select {
    height: 45px !important;
    border-radius: 0;
    color: #000;
}
.tournament-info-section {
    padding-bottom: 50px;
}
.tournament-info-img p a {
    color: #fff;
    font-weight: bold;
}
.xtreme-img {
    margin-bottom: 20px;
}
.btn-title.slider-text-btn {
    text-transform: capitalize;
    font-family: 'Open Sans';
}
.sponsor-section {
    position: relative;
    padding: 100px 0 50px;
}

.sponsor-title {
    font-family: 'Open Sans';
    text-align: center;
    font-weight: normal;
    color: #fff;
    font-size: 20px;
}

.sponsors-img img {
    text-align: center;
    margin: 0 auto;
}
.sponsors-img.small-spononsor img {
    padding: 30px;
}
.sponsors-main-content {
    margin-bottom: 30px;
}
#footer-display-errors .error p {
    color: red;
}


.coming-section {
    padding: 120px 0;
}

.coming-soon-content h2 {
    color: #00b2d0;
    font-size: 100px;
    text-shadow: 10px 10px #000;
    line-height: 100px;
    margin-bottom: 30px;
}

.coming-soon-content p {
    color: #dadada;
    font-size: 33px;
    line-height: 40px;
    font-family: 'DIN2014';
    letter-spacing: 3px;
    text-transform: capitalize;
    text-shadow: 1px 1px #050505;
}

.count-color {
    color: #ed4c9a;
    font-size: 40px;
}
#counter {
    letter-spacing: 0;
    margin-top: 50px;
    font-size: 26px;
}
.sub-title-header.list-headers em {
    display: block;
    font-size: 20px;
    font-style: normal;
    color: #00b2d0;
    margin-bottom: 20px;
}
#submitPanel .form-control {
    height: 45px;
    border-radius: 0;
}
.title-description.third-par {
    font-size: 18px;
    display: block;
    line-height: 30px;
    margin: 20px 0 30px;
    color: #fff;
    font-weight: 500;
}
.sub-title-header.list-headers {
    color: #fff;
}
#submitPanel .form-group {
    text-align: left;
}
.tournament-info-section ul li {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 20px;
}
.tournament-info-section ul li {
    list-style: disc;
}
.tournament-info-section ul {
    padding-inline-start: 40px;
    padding-top: 10px;
}

.winner-text {
    text-align: center;
    color: #fff;
    line-height: 28px;
    font-size: 16px;
}
.sec-title .title a {
    color: #ed429a;
    text-decoration: underline;
}
.optional-sec p {
    color: #fff;
    font-size:18px;
    line-height:28px;
}

.optional-sec p a {
    color: #d9b662;
}
.social-mad-logo {
    max-width: 40px;
}
@media (max-width:767px){
    .tournament-info-section ul li {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 15px;
    }
}
 