@import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&family=Saira:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primary-color: #121212;
  --gray-color: #747474;
  --header-color: #9EAB88;
  --footer-color: #07272D;
  --yellow: #F2C01F;
}

.flex-center {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

.position-auto {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

body {
  color: var(--primary-color);
  font-family: "Noto Sans", Arial, Helvetica, sans-serif;
}

a {
  color: #7449D3;
  text-decoration: underline;
}
a:hover {
  color: #3E97FF;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

@media (min-width: 1400px) {
  .addnewplayer-body .container, .addnewplayer-body .container-lg, .addnewplayer-body .container-md, .addnewplayer-body .container-sm, .addnewplayer-body .container-xl, .addnewplayer-body .container-xxl {
    max-width: 1450px;
  }
}

input:focus {
  box-shadow: inherit;
  border-color: #9D3ADF;
}

.btn {
  width: 100%;
  height: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  margin: 20px 0;
  border: 0;
  font-weight: 500;
}
.btn.btn-primary {
  background: linear-gradient(242.58deg, #9D3ADF 0.9%, #8542D8 21.58%, #4857C6 64.98%, #106AB6 101.25%);
  color: #fff;
}
.btn.btn-primary:hover {
  background: linear-gradient(242.58deg, #106AB6 0.9%, #4857C6 21.58%, #9D3ADF 64.98%, #8542D8 101.25%);
}
.btn.btn-yellow {
  background-color: #FBC638;
  color: var(--primary);
}
.btn.btn-yellow:hover {
  background-color: #d6a51c;
  color: var(--primary);
}
.btn.btn-yellow-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid #FBC638;
  color: #FBC638;
}
.btn.btn-yellow-outline:hover {
  background-color: #FBC638;
  color: var(--primary);
}
.btn.btn-outline-gray {
  background-color: #fff;
  color: var(--primary);
  border: 1px solid #e0e1e1;
  color: #614092;
  box-shadow: none;
}
.btn.btn-outline-gray:hover {
  background-color: #f1f1f1;
  color: #614092;
}

.float-label-form-group {
  display: flex;
  flex-flow: column-reverse;
  position: relative;
}
.float-label-form-group input {
  background-color: #fff;
  border: 1px solid #ccc;
  height: 55px;
  padding: 18px 15px 0;
  border-radius: 5px;
}
.float-label-form-group input::-moz-placeholder {
  opacity: 0;
  transition: inherit;
  color: var(--gray-color);
  font-size: 14px;
}
.float-label-form-group input:-moz-placeholder {
  opacity: 0;
  transition: inherit;
  color: var(--gray-color);
  font-size: 14px;
}
.float-label-form-group input::-webkit-input-placeholder {
  opacity: 0;
  transition: inherit;
  color: var(--gray-color);
  font-size: 14px;
}
.float-label-form-group input:focus::-webkit-input-placeholder {
  opacity: 0;
}
.float-label-form-group input:focus {
  background-color: transparent;
  border: 1px solid #26707B;
  box-shadow: inherit;
}
.float-label-form-group label {
  font-size: 10px;
  color: var(--gray-color);
  position: relative;
  top: 7px;
  left: 15px;
}
.float-label-form-group label,
.float-label-form-group input {
  transition: all 0.2s;
  touch-action: manipulation;
}
.float-label-form-group input:placeholder-shown + label {
  cursor: text;
  max-width: 66.66%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform-origin: left bottom;
  transform: translate(0, 32px) scale(1.5);
}
.float-label-form-group input:not(:placeholder-shown) + label,
.float-label-form-group input:focus + label {
  transform: translate(0, 16px) scale(1);
  cursor: pointer;
}

.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  margin-top: 15px;
}
.upload-btn-wrapper .btn {
  border: 1px solid #ccc;
  background-color: white;
  padding: 8px 15px;
  border-radius: 5px;
  color: var(--gray-color);
  font-size: 14px;
  width: 100%;
  height: 55px;
  text-align: left;
  cursor: pointer;
  position: relative;
}
.upload-btn-wrapper .btn .upload-icon {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 20px;
}
.upload-btn-wrapper input[type=file] {
  font-size: 100px;
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}

@media (min-width: 1300px) {
  #navbarSupportedContent {
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 0;
  }
  #navbarSupportedContent ~ .dropdown {
    z-index: 1;
  }
  #navbarSupportedContent.adminSideNavbar {
    position: inherit;
  }
  .navbar-brand {
    z-index: 1;
    position: relative;
  }
  .navbar-brand img {
    width: 220px;
  }
}
.customRadioSelect input[type=radio], .customRadioSelect input[type=checkbox] {
  display: none;
}
.customRadioSelect label {
  width: 100%;
  height: 45px;
  border: 1px solid #e0e1e1;
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: start;
  -moz-justify-content: start;
  -ms-justify-content: start;
  justify-content: start;
  -ms-flex-pack: start;
  font-size: 15px;
  background: #f1f1f1;
  color: var(--primary-color);
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 18px;
  padding: 0 15px;
  position: relative;
}
.customRadioSelect label img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}
.customRadioSelect label .wicketkeeper {
  font-weight: 500;
  color: #FF6F91;
  margin-left: 10px;
}
.customRadioSelect label:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: transparent;
}
.customRadioSelect input[type=radio]:checked + label, .customRadioSelect input[type=checkbox]:checked + label {
  background: #008B74;
  color: #fff;
  border-color: #008B74;
}
.customRadioSelect input[type=radio]:checked + label .wicketkeeper, .customRadioSelect input[type=checkbox]:checked + label .wicketkeeper {
  color: #fff;
}
.customRadioSelect input[type=radio]:checked + label:after, .customRadioSelect input[type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #fff;
  color: #008B74;
  background-image: url("../uploads/images/check-green.svg");
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center;
}

header {
  background: #614092;
  height: 60px;
  position: relative;
  border-bottom: 1px solid #FBC638;
}
header.fixed-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
header.fixed-header .navbar {
  padding: 0;
}

.right-celebration {
  position: absolute;
  left: 0;
  display: none;
}
.right-celebration:after {
  content: "";
  background-repeat: no-repeat;
  background-size: 100%;
  width: 250px;
  position: absolute;
  left: -37px;
  top: -46px;
  height: 300px;
  background-position: 0 -72px;
}
@media (max-width: 767.98px) {
  .right-celebration {
    display: none;
  }
  /* .fixed-second-header {
    height: 250px !important;
  } */
  .addnewplay-main {
    margin-top: 300px !important;
  }
  .add-teamname-wrap .addteam-logo{
    margin-bottom: 1.5rem;
  }

}

.fixed-second-header {
  z-index: 2;
  width: 100%;
  height: 120px;
  position: fixed;
  left: 0;
  right: 0;
  top: 60px;
  background: linear-gradient(242.58deg, #8542D8 0.9%, #9D3ADF 21.58%, #8542D8 64.98%, #9D3ADF 101.25%);
  box-shadow: rgba(0, 0, 0, 0.1) 0rem 0.125rem 0.5rem;
}
@media (max-width: 767.98px) {
  .fixed-second-header {
    height: 250px;
  }
}
.fixed-second-header .container {
  position: relative;
}
.fixed-second-header.teams-second-header {
  height: 75px;
}
@media (max-width: 767.98px) {
  .fixed-second-header.teams-second-header.matches-second-header {
    height: 95px;
  }
}
.fixed-second-header.teamsaquad-second-header {
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: 0px -2px;
  height: 300px;
  position: relative;
  margin-top: 90px;
  top: 0;
}
@media (max-width: 767.98px) {
  .fixed-second-header.teamsaquad-second-header {
    height: 180px;
  }
}
.fixed-second-header.matchcentre-second-header {
  height: 120px;
}
@media (max-width: 767.98px) {
  .fixed-second-header.matchcentre-second-header {
    height: 175px;
  }
}

.registeration-wrapper {
  width: 100%;
  height: 100vh;
  position: fixed;
  overflow: hidden;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media (max-width: 800px) {
  .registeration-wrapper {
    position: inherit;
    display: block;
  }
}
.registeration-wrapper .background-bg {
  width: 50%;
  flex: 0 0 50%;
  max-width: 50%;
  height: 100vh;
}
@media (max-width: 800px) {
  .registeration-wrapper .background-bg {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    height: 150px;
  }
}
.registeration-wrapper .background-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 800px) {
  .registeration-wrapper .background-bg img {
    object-position: bottom;
  }
}
.registeration-wrapper .logo {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 150px;
  height: 150px;
  background-color: #fff;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  border-radius: 5px;
}
@media (max-width: 1024px) {
  .registeration-wrapper .logo {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 900px) {
  .registeration-wrapper .logo {
    display: none;
  }
}
.registeration-wrapper .logo img {
  width: 80px;
  height: auto;
}
@media (max-width: 1024px) {
  .registeration-wrapper .logo img {
    width: 50px;
  }
}
.registeration-wrapper .forms-wrapper {
  width: 50%;
  flex: 0 0 50%;
  max-width: 50%;
  height: 100vh;
  padding: 50px;
}
@media (max-width: 800px) {
  .registeration-wrapper .forms-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
    height: auto;
    width: 100%;
    padding: 15px;
  }
}
@media (max-width: 800px) {
  .registeration-wrapper .forms-wrapper {
    padding-top: 30px;
  }
}
@media (max-width: 565px) {
  .registeration-wrapper .forms-wrapper {
    padding-top: 40px;
  }
}
.registeration-wrapper .forms-wrapper .inner {
  margin: 0 auto;
  flex: 0 0 400px;
  max-width: 400px;
}
@media (max-width: 1250px) {
  .registeration-wrapper .forms-wrapper .inner {
    flex: 0 0 300px;
    max-width: 300px;
  }
}
@media (max-width: 800px) {
  .registeration-wrapper .forms-wrapper .inner {
    flex: 0 0 85%;
    max-width: 85%;
  }
}
@media (max-width: 565px) {
  .registeration-wrapper .forms-wrapper .inner {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.registeration-wrapper .forms-wrapper .inner h3 {
  margin-bottom: 12px !important;
  font-size: 24px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
}

.registeration-wrapper .forms-wrapper .inner h4 {
  margin-bottom: 0px !important;
  font-size: 24px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
}


.registeration-wrapper .forms-wrapper .pwd-note {
  padding: 10px;
  background-color: rgba(111, 66, 193, 0.08);
  border: 1px solid rgb(111, 66, 193);
  border-radius: 5px;
  margin: 20px 0;
}
.registeration-wrapper .forms-wrapper .pwd-note h6 {
  font-size: 15px;
}
.registeration-wrapper .forms-wrapper .submitbtn {
  width: 100%;
  height: 50px;
  border-radius: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  background: linear-gradient(242.58deg, #9D3ADF 0.9%, #8542D8 21.58%, #4857C6 64.98%, #106AB6 101.25%);
  color: #fff;
  margin: 20px 0;
}
.registeration-wrapper .forms-wrapper .submitbtn:hover {
  background: linear-gradient(242.58deg, #106AB6 0.9%, #4857C6 21.58%, #9D3ADF 64.98%, #8542D8 101.25%);
}

.navbar-nav .nav-link {
  color: #fff;
  font-size: 15.5px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
}
.navbar-nav .nav-link.active, .navbar-nav .nav-link:hover {
  color: var(--yellow);
}
@media screen and (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-nav .nav-link {
    font-size: 16px;
  }
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 0 12px;
}
@media screen and (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0 5px;
  }
}
@media (min-width: 1200px) {
    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 12px;
        padding-left: 12px;
    }
}
.addnewplay-main {
  margin-top: 180px;
  height: calc(100vh - 180px);
  background-color: rgb(243, 244, 246);
  overflow: scroll;
}

.teams-main, .standings-main, .matches-main {
  margin-top: 165px;
  overflow: scroll;
}

.venues-main {
  margin-top: 90px;
}
@media (min-width: 768px) {
  .venues-main {
    padding-bottom: 60px;
  }
}

.matchcentre-main {
  margin-top: 210px;
  overflow: scroll;
}
@media (max-width: 767.98px) {
  .matchcentre-main {
    margin-top: 240px;
  }
}
@media (max-width: 565px) {
  .matchcentre-main {
    background-color: #fff;
  }
}

.teamssquad-main {
  background-color: rgb(243, 244, 246);
}

.add-teamname-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
@media (max-width: 767.98px) {
  .add-teamname-wrap {
    flex-direction: column;
    -webkit-align-items: start;
    -moz-align-items: start;
    -ms-align-items: start;
    align-items: start;
  }
}
.add-teamname-wrap .addteam-logo {
  gap: 20px;
}
@media (max-width: 767.98px) {
  .add-teamname-wrap .addteam-logo {
    gap: 10px;
  }
}
.add-teamname-wrap .addteam-logo figure {
  margin: 0;
  height: 100%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  border: 3px solid #FBC638;
  background-color: #fff;
}
.add-teamname-wrap .addteam-logo figure img {
  width: 80px;
  height: auto;
}
.add-teamname-wrap .addteam-logo figcaption h5 {
  font-size: 25px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  margin: 0;
  color: #fff;
}
@media (max-width: 991.98px) {
  .add-teamname-wrap .addteam-logo figcaption h5 {
    font-size: 18px;
  }
}
.add-teamname-wrap .addteam-button {
  position: relative;
  z-index: 6;
  flex-wrap: wrap;
}
.add-teamname-wrap .addteam-button .cta {
  display: flex;
  padding: 10px 35px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  background: #FBC638;
  transition: 1s;
  box-shadow: 6px 6px 0 #6225E6;
  transform: skewX(-15deg);
  flex: 1;
  justify-content: center;
  white-space: nowrap;
}
.add-teamname-wrap .addteam-button .cta:focus {
  outline: none;
}
.add-teamname-wrap .addteam-button .cta:hover {
  transition: 0.5s;
  box-shadow: 10px 10px 0 #6225E6;
}
.add-teamname-wrap .addteam-button .cta span {
  transform: skewX(15deg);
}
.add-teamname-wrap .addteam-button .cta span:nth-child(2) {
  position: relative;
  top: 12%;
  transition: 0.5s;
  margin-right: 0px;
}
.add-teamname-wrap .addteam-button .cta:hover span:nth-child(2) {
  transition: 0.5s;
  margin-right: 10px;
}

.addnewplayer-title-wrap {
  border-bottom: 1px solid #e0e1e1;
}

.player-lists-wrapper {
  padding: 30px 0;
}

.player-lists-info-header {
  position: sticky;
  top: 0;
  z-index: 1;
}
.player-lists-info-header .player-lists-info-head {
  border-bottom: 1px solid #e0e1e1;
}

.player-lists-info-head {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  padding: 20px 0;
  background-color: #fff;
  margin-bottom: 10px;
  position: relative;
}
.player-lists-info-head:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15px; /* Width of the gradient border */
  pointer-events: none;
}
.player-lists-info-head .playersinfo {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.player-lists-info-head .playersinfo.head {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
  justify-content: center;
}
.player-lists-info-head .playersinfo.sno {
  flex: 0 0 3%;
  max-width: 3%;
  text-align: center;
}
.player-lists-info-head .playersinfo.profilepic {
  flex: 0 0 5%;
  max-width: 5%;
}
.player-lists-info-head .playersinfo.name {
  flex: 0 0 15%;
  max-width: 15%;
}
.player-lists-info-head .playersinfo.email {
  flex: 0 0 18%;
  max-width: 18%;
}
.player-lists-info-head .playersinfo.empid {
  flex: 0 0 7%;
  max-width: 7%;
}
.player-lists-info-head .playersinfo.phoneno {
  flex: 0 0 10%;
  max-width: 10%;
}
.player-lists-info-head .playersinfo.batstyle {
  flex: 0 0 10%;
  max-width: 10%;
}
.player-lists-info-head .playersinfo.bowlingstyle {
  flex: 0 0 10%;
  max-width: 10%;
}
.player-lists-info-head .playersinfo.role {
  flex: 0 0 10%;
  max-width: 10%;
}
.player-lists-info-head .playersinfo.actions {
  flex: 0 0 10%;
  max-width: 10%;
}
.player-lists-info-head .playersinfo.name {
  color: var(--footer-color);
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.player-lists-info-head .playersinfo.profilepic figure {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  margin: 0;
}
.player-lists-info-head .playersinfo.profilepic figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.player-lists-info-head .playersinfo.actions {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 10px;
}
.player-lists-info-head .playersinfo.actions .playersinfoicon {
  position: relative;
  flex: 0 0 45px;
  max-width: 45px;
  height: 30px;
  transform: skew(-20deg);
  overflow: hidden;
  cursor: pointer;
}
.player-lists-info-head .playersinfo.actions .playersinfoicon.edit {
  background-color: #4CAF50;
}
.player-lists-info-head .playersinfo.actions .playersinfoicon.delete {
  background-color: red;
}
.player-lists-info-head .playersinfo.actions .playersinfoicon:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: skew(20deg);
  pointer-events: none;
}
.player-lists-info-head .playersinfo.actions .playersinfoicon span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) skew(20deg);
  color: white;
  font-size: 11px;
  text-align: center;
}

.modal.left .modal-dialog,
.modal.right .modal-dialog {
  position: fixed;
  margin: auto;
  width: 400px;
  height: calc(100vh - 20px);
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 15px;
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
}

.modal.left .modal-content,
.modal.right .modal-content {
  height: 100%;
  overflow-y: auto;
  border-radius: 15px;
}

.modal.left .modal-body,
.modal.right .modal-body {
  padding: 15px 15px 80px;
}

/*Right*/
.modal.right.fade .modal-dialog {
  right: -400px;
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
  -o-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
}

body.modal-open .modal.right.fade .modal-dialog {
  right: 10px;
}

.dropzone {
  border: 2px dashed var(--gray-color);
  border-radius: 5px;
  padding: 50px;
  text-align: center;
  cursor: pointer;
  color: var(--gray-color);
}

.dropzone.dragover {
  background-color: #e0f7ff;
}

.dropzone img {
  max-width: 100%;
  display: block;
  margin: 10px auto;
}

.addPlayerModal .modal-header {
  background: linear-gradient(242.58deg, #8542D8 0.9%, #8542D8 21.58%, #8542D8 64.98%, #8542D8 101.25%);
  color: var(--yellow);
  font-family: "Saira", Arial, Helvetica, sans-serif;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  box-shadow: rgba(0, 0, 0, 0.1) 0rem 0.125rem 0.5rem;
}
.addPlayerModal .modal-header h5 {
  font-size: 25px;
}
.addPlayerModal .modal-header .btn-close {
  color: #fff;
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  margin: auto;
  --bs-btn-close-color: #fff;
  background-image: url("../uploads/images/close1.svg");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 12px;
  height: 12px;
  opacity: 1;
}
.addPlayerModal .btn.btn-primary {
  background: #FBC638;
  color: #000;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 20px;
}
.addPlayerModal input, .addPlayerModal select {
  height: 45px;
}
.addPlayerModal label {
  color: var(--gray-color);
}
.addPlayerModal input:focus, .addPlayerModal select:focus {
  box-shadow: none;
  border-color: #6225E6;
}

.teams-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  flex-wrap: wrap;
  padding: 50px 0;
  gap: 30px;
}
@media (max-width: 1198.98px) {
  .teams-wrap {
    gap: 10px;
  }
}
@media (max-width: 565.98px) {
  .teams-wrap {
    padding: 20px 0;
  }
}
.teams-wrap .teams-item {
  flex: 0 0 250px;
  max-width: 250px;
  height: 325px;
  background-image: url("../uploads/images/teambg_1.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  gap: 40px;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  position: relative;
  top: 0;
}
@media (max-width: 1198.98px) {
  .teams-wrap .teams-item {
    flex: 0 0 calc(33.3333% - 10px);
    max-width: calc(33.3333% - 10px);
  }
}
@media (max-width: 767.98px) {
  .teams-wrap .teams-item {
    flex: 0 0 calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}
@media (max-width: 565.98px) {
  .teams-wrap .teams-item {
    flex: 0 0 48%;
    max-width: 48%;
    margin: 0 auto;
    padding: 15px;
    height: auto;
    gap: 10px;
  }
}
.teams-wrap .teams-item:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
}
.teams-wrap .teams-item:hover {
  transition: all 0.5s ease-in-out;
  top: -20px;
}
.teams-wrap .teams-item figure, .teams-wrap .teams-item figcaption {
  position: relative;
  z-index: 1;
}
.teams-wrap .teams-item figure {
  height: 175px;
  flex: 0 0 175px;
  max-width: 175px;
  width: 175px;
  background-color: #fff;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  padding: 15px;
  margin: 0;
}
@media (max-width: 565.98px) {
  .teams-wrap .teams-item figure {
    height: 130px;
    flex: 0 0 130px;
    max-width: 150px;
    width: 150px;
  }
}
.teams-wrap .teams-item figure img {
  width: 100%;
  height: auto;
}
.teams-wrap .teams-item figcaption {
  margin: 0;
  color: #fff;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 25px;
}
@media (max-width: 991.98px) {
  .teams-wrap .teams-item figcaption {
    font-size: 18px;
  }
}

#user-dropdownMenu {
  margin: 0;
  padding: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid #FBC638;
  background: transparent;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  background-color: #fff;
  color: #7449D3;
  font-size: 20px;
}
#user-dropdownMenu:after {
  display: none;
}

.user-dropdownMenu {
  right: 0;
  left: inherit !important;
  width: 200px;
  top: 47px !important;
  padding: 0;
}
.user-dropdownMenu .dropdown-item {
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f1f1;
  font-size: 14px;
}
.user-dropdownMenu .dropdown-item:focus {
  background-color: #008F7A;
}
.user-dropdownMenu li:last-child .dropdown-item {
  border-bottom: 0;
}

.teamssquad-main {
  padding: 50px 0;
}
@media (max-width: 767.98px) {
  .teamssquad-main {
    padding: 20px 0;
  }
}

.teamsquad-title {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  .teamsquad-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

.teamsquad-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  flex-wrap: wrap;
  gap: 15px;
}
.teamsquad-wrap .teamsquad-item {
  flex: 0 0 300px;
  max-width: 300px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  text-decoration: none;
  transition: all 0.5s ease-in-out;
  position: relative;
  top: 0;
}
@media (max-width: 767.98px) {
  .teamsquad-wrap .teamsquad-item {
    flex: 0 0 48%;
    max-width: 48%;
  }
}
@media (max-width: 565px) {
  .teamsquad-wrap .teamsquad-item {
    flex: 0 0 46%;
    max-width: 46%;
  }
}
.teamsquad-wrap .teamsquad-item:hover {
  transition: all 0.5s ease-in-out;
  top: -20px;
}
.teamsquad-wrap .teamsquad-item figure, .teamsquad-wrap .teamsquad-item figcaption {
  position: relative;
  z-index: 1;
  text-align: center;
}
.teamsquad-wrap .teamsquad-item figure {
  min-height: 400px;
  flex: 0 0 100%;
  max-width: 100%;
  width: 100%;
  background-image: url("../uploads/images/teambg_1.jpg");
  background-size: 100%;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  padding: 30px;
  margin: 0 0 25px;
  border-radius: 20px;
}
@media (max-width: 767.98px) {
  .teamsquad-wrap .teamsquad-item figure {
    min-height: 200px;
    padding: 15px;
  }
}
.teamsquad-wrap .teamsquad-item figure img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  .teamsquad-wrap .teamsquad-item figure img {
    height: 200px;
    object-position: top;
  }
}
.teamsquad-wrap .teamsquad-item figcaption h3 {
  font-size: 20px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  margin-bottom: 15px;
  white-space: nowrap;
}
@media (max-width: 565px) {
  .teamsquad-wrap .teamsquad-item figcaption h3 {
    font-size: 16px;
  }
}
.teamsquad-wrap .teamsquad-item figcaption p {
  position: relative;
  flex: 0 0 auto;
  height: 40px;
  transform: skew(-20deg);
  overflow: hidden;
  cursor: pointer;
  background-color: #FBC638;
  box-shadow: 6px 6px 0 #6225E6;
  color: #000;
  width: 130px;
  border-radius: 5px;
}
.teamsquad-wrap .teamsquad-item figcaption p:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: skew(20deg);
  pointer-events: none;
}
.teamsquad-wrap .teamsquad-item figcaption p span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) skew(20deg);
  color: #000;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
}
@media (max-width: 565px) {
  .teamsquad-wrap .teamsquad-item figcaption p span {
    font-size: 14px;
  }
}

.teamsaquad-second-header .add-teamname-wrap .addteam-logo {
  width: 100%;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.teamsaquad-second-header .add-teamname-wrap .addteam-logo figure {
  width: 150px;
  height: 150px;
}
@media (max-width: 767.98px) {
  .teamsaquad-second-header .add-teamname-wrap .addteam-logo figure {
    width: 110px;
    height: 110px;
  }
}
.teamsaquad-second-header .add-teamname-wrap .addteam-logo figure img {
  width: 120px;
}
@media (max-width: 767.98px) {
  .teamsaquad-second-header .add-teamname-wrap .addteam-logo figure img {
    width: 90px;
    height: auto;
  }
}
.teamsaquad-second-header .add-teamname-wrap .addteam-logo figcaption h5 {
  font-size: 45px;
}
@media (max-width: 767.98px) {
  .teamsaquad-second-header .add-teamname-wrap .addteam-logo figcaption h5 {
    font-size: 30px;
  }
}

.venues-wrap {
  padding: 50px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 30px;
}
@media (max-width: 767.98px) {
  .venues-wrap {
    display: block;
  }
}
.venues-wrap .venues-item {
  flex: 0 0 calc(33.3333% - 30px);
  max-width: calc(33.3333% - 30px);
}
@media (max-width: 767.98px) {
  .venues-wrap .venues-item {
    max-width: 100%;
  }
}
.venues-wrap .venues-item figure {
  width: 100%;
}
.venues-wrap .venues-item figure img {
  width: 100%;
  height: 250px;
  border-radius: 10px;
}
@media (max-width: 767.98px) {
  .venues-wrap .venues-item figure img {
    height: 175px;
  }
}
.venues-wrap .venues-item figcaption h6.title {
  font-size: 20px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  line-height: 26px;
}
@media (max-width: 767.98px) {
  .venues-wrap .venues-item figcaption h6.title {
    font-size: 18px;
  }
}

.standings-wrap {
  padding: 40px 0;
}
.standings-wrap .standings-box {
  margin-bottom: 40px;
}
.standings-wrap .standings-box .stangings-stage-title {
  font-size: 25px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .standings-wrap .standings-box .stangings-stage-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media (max-width: 767.98px) {
  .standings-wrap .standings-box .stangings-teams-lists-wrap {
    overflow-y: scroll;
    width: 750px;
  }
}

.stangings-teams-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
.stangings-teams-item.bodz:nth-last-child(2n-1) .bodyy {
  background-color: #fafafa;
}
.stangings-teams-item.bodz .bodyy:first-child {
  border-left: 1px solid #e0e1e1;
}
.stangings-teams-item.bodz .bodyy:last-child {
  border-right: 1px solid #e0e1e1;
}
.stangings-teams-item.bodz:last-child .bodyy {
  border-bottom: 1px solid #e0e1e1;
}
.stangings-teams-item.bodz.qualified.has-border .bodyy {
  border-bottom-color: #614092 !important;
  border-bottom-width: 1.5px;
}
.stangings-teams-item .info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.stangings-teams-item .info.pos {
  flex: 0 0 6.5%;
  max-width: 6.5%;
  position: relative;
}
.stangings-teams-item .info.pos .qualify {
  position: absolute;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  background-color: #e0e1e1;
  border: 1px solid #ccc;
  font-size: 12px;
  left: 8px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.stangings-teams-item .info.team {
  flex: 0 0 28%;
  max-width: 28%;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
}
.stangings-teams-item .info.played {
  flex: 0 0 9.5%;
  max-width: 9.5%;
}
.stangings-teams-item .info.won {
  flex: 0 0 9.5%;
  max-width: 9.5%;
}
.stangings-teams-item .info.lost {
  flex: 0 0 9.5%;
  max-width: 9.5%;
}
.stangings-teams-item .info.nr {
  flex: 0 0 9.5%;
  max-width: 9.5%;
}
.stangings-teams-item .info.tied {
  flex: 0 0 9.5%;
  max-width: 9.5%;
}
.stangings-teams-item .info.netrr {
  flex: 0 0 9.5%;
  max-width: 9.5%;
}
.stangings-teams-item .info.points {
  flex: 0 0 9.5%;
  max-width: 9.5%;
}
.stangings-teams-item .info.head {
  text-transform: uppercase;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 600;
  height: 55px;
  background-color: #f1f1f1;
  color: #614092;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  border-top: 1px solid #e0e1e1;
  border-bottom: 1px solid #e0e1e1;
}
.stangings-teams-item .info.head.team {
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
}
.stangings-teams-item .info.head.team:first-child {
  border-left: 1px solid #e0e1e1;
}
.stangings-teams-item .info.head.team:last-child {
  border-right: 1px solid #e0e1e1;
}
.stangings-teams-item .info.bodyy {
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  background-color: #fff;
  border-bottom: 1px solid #e0e1e1;
}
.stangings-teams-item .info.bodyy.team {
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.stangings-teams-item .info.team .favicon-logo {
  width: 25px;
  height: auto;
  margin-right: 20px;
}

.standings-select-wrap {
  width: 100%;
  justify-content: space-between;
}

.select-category {
  gap: 10px;
  flex: 0 0 auto;
}

.select-category-item {
  gap: 15px;
}
.select-category-item label {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 500;
  white-space: nowrap;
}
.select-category-item select {
  border: 0;
  border-radius: 0;
  background-color: #FBC638;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  height: 45px;
  font-weight: 400;
}
.select-category-item select:focus {
  outline: 0;
  box-shadow: inherit;
  border-color: #8542D8;
}

.matches-main {
  padding: 40px 0;
}

.fixtures-results-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  border: 1px solid #e0e1e1;
  background-color: #fff;
  padding: 15px 0;
  border-radius: 10px;
  margin-bottom: 15px;
}
@media (max-width: 991.98px) {
  .fixtures-results-box {
    flex-direction: column;
    padding: 0;
  }
}
.fixtures-results-box .date-info {
  flex: 0 0 15%;
  max-width: 15%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media (min-width: 992px) {
  .fixtures-results-box .date-info {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.fixtures-results-box .date-info .day, .fixtures-results-box .date-info .date, .fixtures-results-box .date-info .month {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin: 0;
  line-height: 30px;
  text-transform: uppercase;
}
.fixtures-results-box .date-info .day, .fixtures-results-box .date-info .month {
  font-size: 16px;
}
.fixtures-results-box .date-info .date {
  font-size: 30px;
  margin: 0 10px;
}
@media (max-width: 991.98px) {
  .fixtures-results-box .date-info {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding: 15px;
  }
}
.fixtures-results-box .match-info {
  flex: 0 0 65%;
  max-width: 65%;
  border-left: 1px solid #e0e1e1;
  border-right: 1px solid #e0e1e1;
  padding: 0 40px;
}
@media (max-width: 991.98px) {
  .fixtures-results-box .match-info {
    padding: 20px;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    border-width: 1px 0 1px 0;
    border-style: solid;
    border-color: #e0e1e1;
  }
}
@media (max-width: 767.98px) {
  .fixtures-results-box .match-info {
    padding: 10px;
    padding-bottom: 20px;
  }
}
.fixtures-results-box .action-info {
  flex: 0 0 20%;
  max-width: 20%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
@media (max-width: 991.98px) {
  .fixtures-results-box .action-info {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
    padding: 15px 0;
  }
}
.fixtures-results-box .action-info .match-center img {
  filter: brightness(0) invert(1);
  margin-right: 10px;
}
@media (max-width: 1199.98px) {
  .fixtures-results-box .action-info .match-center img {
    width: 18px;
  }
}
.fixtures-results-box .action-info a {
  text-decoration: none;
  background-color: #4CAF50;
  color: #fff;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 17px;
  height: 45px;
  width: 200px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  cursor: pointer;
}
.fixtures-results-box .action-info a:hover {
  background-color: #338b37;
}
@media (max-width: 1199.98px) {
  .fixtures-results-box .action-info a {
    width: 135px;
    height: 35px;
    font-size: 14px;
  }
}
.fixtures-results-box .match-vs-team {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin: 20px 0;
  width: 100%;
}
@media (max-width: 767.98px) {
  .fixtures-results-box .match-vs-team {
    display: block;
    margin: 0;
  }
}
.fixtures-results-box .match-vs-team .teamA, .fixtures-results-box .match-vs-team .teamB {
  position: relative;
  flex: 0 0 calc((100% - 90px) / 2);
  max-width: calc((100% - 90px) / 2);
}
@media (max-width: 767.98px) {
  .fixtures-results-box .match-vs-team .teamA, .fixtures-results-box .match-vs-team .teamB {
    max-width: 100%;
    width: 100%;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
  }
  .fixtures-results-box .match-vs-team .teamA div, .fixtures-results-box .match-vs-team .teamB div {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    align-items: center;
    gap: 10px;
  }
}
.fixtures-results-box .match-vs-team .teamA i, .fixtures-results-box .match-vs-team .teamB i {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
  max-width: 60px;
  background-color: #fff;
  border: 1.5px solid #e0e1e1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  border-radius: 50%;
  margin-right: 15px;
}
.fixtures-results-box .match-vs-team .teamA i img, .fixtures-results-box .match-vs-team .teamB i img {
  width: 30px;
}
@media (max-width: 1199.98px) {
  .fixtures-results-box .match-vs-team .teamA i, .fixtures-results-box .match-vs-team .teamB i {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    max-width: 50px;
  }
  .fixtures-results-box .match-vs-team .teamA i img, .fixtures-results-box .match-vs-team .teamB i img {
    width: 20px;
  }
}
.fixtures-results-box .match-vs-team .teamA h5, .fixtures-results-box .match-vs-team .teamB h5 {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 24px;
  margin: 0;
}
@media (max-width: 1199.98px) {
  .fixtures-results-box .match-vs-team .teamA h5, .fixtures-results-box .match-vs-team .teamB h5 {
    font-size: 18px;
  }
}
.fixtures-results-box .match-vs-team .teamA .score, .fixtures-results-box .match-vs-team .teamB .score {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 10px;
}
.fixtures-results-box .match-vs-team .teamA .score p, .fixtures-results-box .match-vs-team .teamB .score p {
  margin: 0;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 600;
}
@media (max-width: 1199.98px) {
  .fixtures-results-box .match-vs-team .teamA .score p, .fixtures-results-box .match-vs-team .teamB .score p {
    font-size: 18px;
  }
}
.fixtures-results-box .match-vs-team .teamA .score span, .fixtures-results-box .match-vs-team .teamB .score span {
  margin: 0;
  color: var(--gray-color);
  font-size: 15px;
  text-align: center;
}
@media (max-width: 1199.98px) {
  .fixtures-results-box .match-vs-team .teamA .score span, .fixtures-results-box .match-vs-team .teamB .score span {
    font-size: 13px;
  }
}
.fixtures-results-box .match-vs-team .teamA .score.loss p, .fixtures-results-box .match-vs-team .teamB .score.loss p {
  color: rgb(120, 120, 120);
}
.fixtures-results-box .match-vs-team .teamB {
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
  flex-direction: row-reverse;
  gap: 15px;
}
@media (max-width: 767.98px) {
  .fixtures-results-box .match-vs-team .teamB {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    flex-direction: inherit;
  }
}
.fixtures-results-box .match-vs-team .teamB .score {
  -webkit-justify-content: end;
  -moz-justify-content: end;
  -ms-justify-content: end;
  justify-content: end;
  -ms-flex-pack: end;
}
.fixtures-results-box .match-vs-team .teamB h5 {
  text-align: right;
}
@media (max-width: 767.98px) {
  .fixtures-results-box .match-vs-team .teamB h5 {
    text-align: left;
  }
}
.fixtures-results-box .match-vs-team .teamB i {
  margin-right: 0;
}
.fixtures-results-box .match-vs-team .vs {
  margin: 0 20px;
  position: relative;
  flex: 0 0 50px;
  max-width: 50px;
}
@media (max-width: 767.98px) {
  .fixtures-results-box .match-vs-team .vs {
    margin: 0 auto;
  }
}
.fixtures-results-box .match-vs-team .vs:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  height: 100px;
  width: 1px;
  background-color: #e0e1e1;
  z-index: 0;
}
@media (max-width: 767.98px) {
  .fixtures-results-box .match-vs-team .vs:after {
    height: 1px;
    width: 80px;
    left: -20px;
  }
}
.fixtures-results-box .match-vs-team .vs span {
  width: 50px;
  height: 50px;
  background-color: #e0e1e1;
  border: 1px solid #ccc;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
@media (max-width: 767.98px) {
  .fixtures-results-box .match-vs-team .vs span {
    width: 40px;
    height: 40px;
  }
}
.fixtures-results-box .won-loss-details {
  text-align: center;
  color: #FF6F91;
  font-size: 16px;
  font-weight: 500;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  position: relative;
  top: 5px;
}
.fixtures-results-box .time-ground-details {
  font-family: "Saira", Arial, Helvetica, sans-serif;
}
@media (max-width: 991.98px) {
  .fixtures-results-box .time-ground-details {
    margin-bottom: 10px;
  }
}
.fixtures-results-box .time-ground-details .time {
  font-size: 18px;
  font-weight: 500;
  margin-right: 15px;
  position: relative;
}
.fixtures-results-box .time-ground-details .time:after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #000;
  border-radius: 50%;
  top: 0;
  bottom: 0;
  right: -10px;
  margin: auto;
}
.fixtures-results-box:hover {
  background-color: #fafafa;
}
.fixtures-results-box:hover .action-info a {
  background-color: #458c48;
}

.has-filter-dropdown .dropdown .btn {
  border-radius: 0;
  background-color: #FBC638;
  border-bottom: 2px solid #614092;
  color: #000;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  line-height: 18px;
  margin: 0;
  padding: 0 50px 0 20px;
}
@media (max-width: 991.98px) {
  .has-filter-dropdown .dropdown .btn {
    padding: 0 40px 0 10px;
    line-height: 16px;
  }
}
@media (max-width: 767.98px) {
  .has-filter-dropdown .dropdown .btn {
    padding: 0 20px 0 10px;
  }
}
.has-filter-dropdown .dropdown .btn:after {
  right: 15px;
  position: absolute;
  top: 20px;
  bottom: 0;
  margin: auto;
  border-top-width: 8px;
  border-left-width: 7px;
  border-right-width: 7px;
}
@media (max-width: 767.98px) {
  .has-filter-dropdown .dropdown .btn:after {
    border-top-width: 5px;
    border-left-width: 5px;
    border-right-width: 5px;
    right: 5px;
  }
}
.has-filter-dropdown .dropdown .btn p, .has-filter-dropdown .dropdown .btn label {
  margin: 0;
}
.has-filter-dropdown .dropdown .btn label {
  font-size: 13px;
}
@media (max-width: 991.98px) {
  .has-filter-dropdown .dropdown .btn label {
    font-size: 12px;
  }
}
.has-filter-dropdown .dropdown .btn label span {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: 600;
}
.has-filter-dropdown .dropdown .btn p {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 18px;
}
@media (max-width: 991.98px) {
  .has-filter-dropdown .dropdown .btn p {
    font-size: 14px;
  }
}
@media (max-width: 767.98px) {
  .has-filter-dropdown .dropdown .btn p {
    width: 64px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
}
.has-filter-dropdown .dropdown .dropdown-menu {
  border-radius: 0;
}
.has-filter-dropdown .teamdropdown .dropdown-menu {
  padding: 0;
}
.has-filter-dropdown .teamdropdown .dropdown-menu .searchbar-innermenu {
  padding: 5px;
}
.has-filter-dropdown .teamdropdown .dropdown-menu .searchbar-innermenu input {
  width: 100%;
  height: 35px;
  border: 1px solid #ccc;
  padding: 10px;
}
.has-filter-dropdown .teamdropdown .dropdown-menu .searchbar-innermenu input::-moz-placeholder {
  font-size: 15px;
}
.has-filter-dropdown .teamdropdown .dropdown-menu .searchbar-innermenu input:-moz-placeholder {
  font-size: 15px;
}
.has-filter-dropdown .teamdropdown .dropdown-menu .searchbar-innermenu input::-webkit-input-placeholder {
  font-size: 15px;
}
.has-filter-dropdown .teamdropdown .dropdown-menu .bottom-desc {
  border-top: 1px solid #e0e1e1;
}
.has-filter-dropdown .teamdropdown .dropdown-menu .bottom-desc ul {
  padding: 0;
  margin: 0;
}
.has-filter-dropdown .teamdropdown .dropdown-menu .bottom-desc ul li {
  list-style: none;
  font-size: 16px;
  padding: 5px;
}

.main-wrapper-start {
  position: relative;

min-height: calc(100vh - 225px);
}

.bg-sticky.left-position {
  position: fixed;
  width: 350px;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  z-index: 0;
  display: none;
}

.add-teamname-wrap .addteam-logo.matchcentre-top-header {
  gap: 5px;
}

.backIcon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  color: #fff;
  text-decoration: none;
  position: relative;
  left: 0;
  transition: all 0.5s ease-in-out;
}
.backIcon img {
  filter: invert(100%);
  margin-right: 10px;
}
.backIcon:hover {
  left: -10px;
  transition: all 0.5s ease-in-out;
  color: #fff;
}

.matchcentre-top-header {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
.matchcentre-top-header .bottom {
  font-size: 20px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  color: #FBC638;
}
@media (max-width: 565px) {
  .matchcentre-top-header .bottom {
    font-size: 18px;
  }
}
.matchcentre-top-header .top {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.matchcentre-top-header .top .vs {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  max-width: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #6225E6;
  background-color: rgba(255, 255, 255, 0.5);
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 20px;
  margin: 0 30px;
}
@media (min-width: 1450px) {
  .matchcentre-top-header .top .vs {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    max-width: 60px;
    font-size: 25px;
  }
}
@media (max-width: 565px) {
  .matchcentre-top-header .top .vs {
    margin: 0 10px;
    width: 35px;
    height: 35px;
    flex: 0 0 35px;
    max-width: 35px;
    font-size: 14px;
  }
}
.matchcentre-top-header .top .teamA, .matchcentre-top-header .top .teamB {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media (max-width: 767.98px) {
  .matchcentre-top-header .top .teamA, .matchcentre-top-header .top .teamB {
    flex-direction: column;
  }
}
.matchcentre-top-header .top .teamA i, .matchcentre-top-header .top .teamB i {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  max-width: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  background-color: rgba(255, 255, 255, 0.1);
}
.matchcentre-top-header .top .teamA i img, .matchcentre-top-header .top .teamB i img {
  width: 25px;
  height: auto;
}
@media (min-width: 1450px) {
  .matchcentre-top-header .top .teamA i, .matchcentre-top-header .top .teamB i {
    width: 60px;
    height: 60px;
    flex: 0 0 60px;
    max-width: 60px;
  }
  .matchcentre-top-header .top .teamA i img, .matchcentre-top-header .top .teamB i img {
    width: 30px;
  }
}
@media (max-width: 991.98px) {
  .matchcentre-top-header .top .teamA i, .matchcentre-top-header .top .teamB i {
    display: none;
  }
}
.matchcentre-top-header .top .teamA h3, .matchcentre-top-header .top .teamA p, .matchcentre-top-header .top .teamB h3, .matchcentre-top-header .top .teamB p {
  margin: 0;
}
.matchcentre-top-header .top .teamA .teamname, .matchcentre-top-header .top .teamB .teamname {
  margin: 0 20px;
  font-size: 20px;
}
@media (min-width: 1450px) {
  .matchcentre-top-header .top .teamA .teamname, .matchcentre-top-header .top .teamB .teamname {
    font-size: 32px;
  }
}
@media (max-width: 565px) {
  .matchcentre-top-header .top .teamA .teamname, .matchcentre-top-header .top .teamB .teamname {
    font-size: 13px;
  }
}
.matchcentre-top-header .top .teamA .score, .matchcentre-top-header .top .teamB .score {
  font-weight: 600;
  font-size: 22px;
}
@media (min-width: 1450px) {
  .matchcentre-top-header .top .teamA .score, .matchcentre-top-header .top .teamB .score {
    font-size: 30px;
  }
}
@media (max-width: 991.98px) {
  .matchcentre-top-header .top .teamA .score, .matchcentre-top-header .top .teamB .score {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 565px) {
  .matchcentre-top-header .top .teamA .score, .matchcentre-top-header .top .teamB .score {
    font-size: 22px;
  }
}
.matchcentre-top-header .top .teamA .score span, .matchcentre-top-header .top .teamB .score span {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}
@media (min-width: 1450px) {
  .matchcentre-top-header .top .teamA .score span, .matchcentre-top-header .top .teamB .score span {
    font-size: 18px;
  }
}
.matchcentre-top-header .top .teamA .score, .matchcentre-top-header .top .teamA .teamname, .matchcentre-top-header .top .teamB .score, .matchcentre-top-header .top .teamB .teamname {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 767.98px) {
  .matchcentre-top-header .top .teamB {
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.matchcenter-wrap {
  padding: 20px 0;
}

.matchcentre-tab-content, #matchCentreTab {
  max-width: 765px;
  margin: 0 auto;
}

#matchCentreTab {
  border-width: 1px 0 1px 0;
  border-style: solid;
  border-color: #e0e1e1;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
#matchCentreTab .nav-item {
  margin: 0;
  padding: 0;
  border: 0;
}
#matchCentreTab .nav-item:hover {
  border: 0;
  padding: 0;
}
#matchCentreTab .nav-link {
  width: 150px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  height: 45px;
  margin: 0;
  border: 0;
  transform: skew(-20deg);
  overflow: hidden;
  background-color: transparent;
}
@media (max-width: 767.98px) {
  #matchCentreTab .nav-link {
    width: 125px;
  }
}
@media (max-width: 565px) {
  #matchCentreTab .nav-link {
    width: 70px;
    height: 35px;
  }
}
#matchCentreTab .nav-link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: skew(20deg);
  pointer-events: none;
}
#matchCentreTab .nav-link span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) skew(20deg);
  color: var(--primary-color);
  font-size: 18px;
  text-align: center;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 400;
}
@media (max-width: 565px) {
  #matchCentreTab .nav-link span {
    font-size: 12px;
  }
}
#matchCentreTab .nav-link:hover, #matchCentreTab .nav-link:focus, #matchCentreTab .nav-link:active {
  border: 0;
  border-radius: 0;
}
#matchCentreTab .nav-link.active {
  border: 0;
  border-radius: 0;
  background-color: #FBC638;
}
#matchCentreTab .nav-link.active span {
  font-weight: 500;
  color: var(--primary-color);
}

#inningsTab {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  margin-bottom: 20px;
  border-bottom-color: rgba(0, 0, 0, 0.05);
}
#inningsTab .nav-item {
  margin: 0;
  padding: 0;
  border: 0;
}
#inningsTab .nav-item:hover {
  border: 0;
  padding: 0;
}
#inningsTab .nav-link {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  height: 50px;
  margin: 0;
  border: 0;
  background-color: transparent;
  position: relative;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  color: var(--gray-color);
  font-size: 18px;
}
@media (max-width: 565px) {
  #inningsTab .nav-link {
    font-size: 16px;
  }
}
#inningsTab .nav-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 3px;
  background-color: transparent;
}
#inningsTab .nav-link:hover, #inningsTab .nav-link:focus, #inningsTab .nav-link:active {
  border: 0;
  border-radius: 0;
}
#inningsTab .nav-link.active {
  border: 0;
  border-radius: 0;
  color: #FBC638;
  color: var(--primary-color);
  font-weight: 500;
}
#inningsTab .nav-link.active:before {
  background-color: #FBC638;
}

.matchcentre-tab-content {
  padding: 25px 0;
}

.matchdetails-info h3 {
  font-size: 20px;
  margin: 20px 0 20px;
}
.matchdetails-info .matchdetails-item {
  padding: 20px 0;
  border-bottom: 1px solid #e0e1e1;
}
.matchdetails-info .matchdetails-item:last-child {
  border: 0;
}
.matchdetails-info .matchdetails-item p {
  margin: 0;
}
.matchdetails-info .matchdetails-item .label {
  color: var(--gray-color);
  margin-bottom: 15px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
}

.scorecard-wrap .top, .scorecard-wrap .center, .scorecard-wrap .bottom {
  margin-bottom: 30px;
}

.scorecard-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.scorecard-box .scoreitem.batsman {
  flex: 0 0 calc(100% - 300px);
  max-width: calc(100% - 300px);
  padding: 0 12px;
}
@media (max-width: 565px) {
  .scorecard-box .scoreitem.batsman {
    flex: 0 0 calc(100% - 170px);
    max-width: calc(100% - 170px);
  }
}
.scorecard-box .scoreitem.runs, .scorecard-box .scoreitem.balls, .scorecard-box .scoreitem.fours, .scorecard-box .scoreitem.sixs {
  flex: 0 0 auto;
  min-width: 60px;
}
@media (max-width: 565px) {
  .scorecard-box .scoreitem.runs, .scorecard-box .scoreitem.balls, .scorecard-box .scoreitem.fours, .scorecard-box .scoreitem.sixs {
    flex: 0 0 30px;
    max-width: 30px;
    min-width: 30px;
    text-align: center;
  }
}
.scorecard-box .scoreitem.strikerate {
  flex: 0 0 auto;
  min-width: 60px;
}
@media (max-width: 565px) {
  .scorecard-box .scoreitem.strikerate {
    flex: 0 0 45px;
    max-width: 45px;
    min-width: 45px;
  }
}
.scorecard-box .scoreitem.scorez, .scorecard-box .scoreitem.overz {
  flex: 0 0 auto;
  min-width: 150px;
}
@media (max-width: 565px) {
  .scorecard-box .scoreitem.scorez, .scorecard-box .scoreitem.overz {
    flex: 0 0 45px;
    max-width: 45px;
    min-width: 45px;
  }
}
.scorecard-box.headz {
  background-color: #f1f1f1;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.scorecard-box.headz .scoreitem {
  color: #6225E6;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 500;
}
@media (max-width: 565px) {
  .scorecard-box.headz .scoreitem {
    font-size: 13px;
  }
}
.scorecard-box.bodyz {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.scorecard-box.bodyz:last-child {
  border-bottom: 0;
}
.scorecard-box.bodyz p {
  margin: 0;
  font-size: 15px;
}
@media (max-width: 565px) {
  .scorecard-box.bodyz p {
    font-size: 13px;
  }
}
@media (max-width: 565px) {
  .scorecard-box.bodyz .scoreitem {
    font-size: 14px;
  }
}
.scorecard-box.bodyz .scoreitem.runs {
  font-weight: 600;
  font-family: "Saira", Arial, Helvetica, sans-serif;
}
.scorecard-box.bodyz .scoreitem.batsman .name {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-size: 16px;
  color: #296073;
  font-weight: 500;
}
@media (max-width: 565px) {
  .scorecard-box.bodyz .scoreitem.batsman .name {
    font-size: 14px;
  }
}
.scorecard-box.bodyz .scoreitem.batsman .label {
  color: var(--gray-color);
  font-size: 14px;
}
@media (max-width: 565px) {
  .scorecard-box.bodyz .scoreitem.batsman .label {
    font-size: 13px;
  }
}
.scorecard-box.two-col {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  border-bottom: 1px solid #e0e1e1;
  padding: 0 10px;
  height: 55px;
}
.scorecard-box.two-col p {
  margin: 0;
}
.scorecard-box.two-col > div {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.scorecard-box.two-col > div h5 {
  margin: 0;
}
.scorecard-box.two-col h6 {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 565px) {
  .scorecard-box.two-col h6 {
    font-size: 13px;
  }
}
.scorecard-box.two-col.extras .extrarun {
  margin-right: 10px;
}
.scorecard-box.two-col.didnotbat .info {
  color: var(--gray-color);
  font-size: 14px;
}
.scorecard-box.two-col.total h5 {
  font-size: 26px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
}
.scorecard-box.two-col.total .score {
  margin-right: 10px;
  font-size: 26px;
  font-weight: 500;
  font-family: "Saira", Arial, Helvetica, sans-serif;
}
.scorecard-box.two-col.total .over {
  color: var(--gray-color);
  font-size: 16px;
}

.commentry-wrap {
  height: 100%;
}
.commentry-wrap .commentry-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  border-bottom: 1px solid #f1f1f1;
  height: 80px;
}
.commentry-wrap .commentry-item .left {
  flex: 0 0 100px;
  max-width: 100px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 565px) {
  .commentry-wrap .commentry-item .left {
    flex: 0 0 70px;
    max-width: 70px;
  }
}
.commentry-wrap .commentry-item .left p {
  margin: 0;
}
.commentry-wrap .commentry-item .left .runsperball {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  background-color: #fff;
  border: 1px solid #e0e1e1;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 14px;
}
.commentry-wrap .commentry-item .left .runsperball.four {
  background-color: #338b37;
  color: #fff;
  border-color: #338b37;
}
.commentry-wrap .commentry-item .left .runsperball.six {
  background-color: #6225E6;
  color: #fff;
  border-color: #6225E6;
}
.commentry-wrap .commentry-item .left .runsperball.zero {
  background-color: #e0e1e1;
  color: var(--gray-color);
  border-color: #ccc;
}
.commentry-wrap .commentry-item .left .runsperball.wicket {
  background-color: red;
  color: #fff;
  border-color: red;
}
.commentry-wrap .commentry-item .right {
  flex: 0 0 calc(100% - 100px);
  max-width: calc(100% - 100px);
  font-size: 15px;
}
@media (max-width: 565px) {
  .commentry-wrap .commentry-item .right {
    flex: 0 0 calc(100% - 70px);
    max-width: calc(100% - 70px);
    font-size: 13px;
  }
}
.commentry-wrap .oversummary {
  background-color: rgba(255, 111, 145, 0.1);
  border-radius: 10px;
  margin: 20px 0;
}
.commentry-wrap .oversummary .top, .commentry-wrap .oversummary .bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
.commentry-wrap .oversummary .top *, .commentry-wrap .oversummary .bottom * {
  margin: 0;
  font-size: 15px;
}
.commentry-wrap .oversummary .top {
  padding: 15px 0;
  border-bottom: 1px solid #ff6f91;
}
.commentry-wrap .oversummary .top .left {
  flex: 0 0 20%;
  max-width: 20%;
  padding: 0 0 0 20px;
}
@media (max-width: 565px) {
  .commentry-wrap .oversummary .top .left {
    padding: 0 5px 0 5px;
  }
}
.commentry-wrap .oversummary .top .left p {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 565px) {
  .commentry-wrap .oversummary .top .left p {
    font-size: 15px;
  }
}
.commentry-wrap .oversummary .top .center {
  flex: 0 0 50%;
  max-width: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  border-width: 0 1px 0;
  border-style: solid;
  border-color: #ff6f91;
}
.commentry-wrap .oversummary .top .center p {
  font-size: 16px;
}
.commentry-wrap .oversummary .top .center p strong {
  margin-right: 10px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 600;
}
@media (max-width: 565px) {
  .commentry-wrap .oversummary .top .center p {
    font-size: 15px;
  }
}
.commentry-wrap .oversummary .top .right {
  flex: 0 0 30%;
  max-width: 30%;
  padding: 0 20px 0 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 16px;
}
@media (max-width: 565px) {
  .commentry-wrap .oversummary .top .right {
    padding: 0 5px 0 5px;
    font-size: 15px;
  }
}
.commentry-wrap .oversummary .bottom .left, .commentry-wrap .oversummary .bottom .right {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 20px;
}
.commentry-wrap .oversummary .bottom .left {
  border-right: 1px solid #ff6f91;
}
.commentry-wrap .oversummary .bottom .left ul {
  margin: 0;
  padding: 0;
}
.commentry-wrap .oversummary .bottom .left ul li {
  list-style: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  margin-bottom: 10px;
}
.commentry-wrap .oversummary .bottom .left ul li .score .balls {
  margin-left: 5px;
  color: var(--gray-color);
}
.commentry-wrap .oversummary .bottom .left ul li:last-child {
  margin-bottom: 0;
}
.commentry-wrap .oversummary .bottom .right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
@media (max-width: 565px) {
  .commentry-wrap .oversummary .bottom .right {
    flex-direction: column;
  }
}

.squad-wrap {
  padding: 20px 0 40px;
}
.squad-wrap .title-wrap {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 40px;
}
.squad-wrap .squad-info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  position: relative;
}
.squad-wrap .squad-info:after {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #e0e1e1;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
}
.squad-wrap .squad-info .center {
  height: 100%;
  position: relative;
}
.squad-wrap .squad-info .center .vs {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  background-color: #e0e1e1;
  border: 1px solid #ccc;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  color: #6225E6;
  font-size: 18px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.squad-wrap .squad-info .left, .squad-wrap .squad-info .right {
  flex: 0 0 calc(50% - 40px);
  max-width: calc(50% - 40px);
  height: 100%;
}
.squad-wrap .squad-info .left .squaditem, .squad-wrap .squad-info .right .squaditem {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 10px;
}
.squad-wrap .squad-info .left .squaditem.title, .squad-wrap .squad-info .right .squaditem.title {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
.squad-wrap .squad-info .left .squaditem.title i, .squad-wrap .squad-info .right .squaditem.title i {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  max-width: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  border: 1px solid #e0e1e1;
}
.squad-wrap .squad-info .left .squaditem.title i img, .squad-wrap .squad-info .right .squaditem.title i img {
  width: 25px;
  height: auto;
}
.squad-wrap .squad-info .left .squaditem.title p, .squad-wrap .squad-info .right .squaditem.title p {
  margin: 0;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 20px;
}
@media (max-width: 565px) {
  .squad-wrap .squad-info .left .squaditem.title p, .squad-wrap .squad-info .right .squaditem.title p {
    font-size: 15px;
    font-weight: 500;
  }
}
.squad-wrap .squad-info .left .squaditem figure, .squad-wrap .squad-info .right .squaditem figure {
  width: 60px;
  height: 70px;
  margin: 0;
}
.squad-wrap .squad-info .left .squaditem figure img, .squad-wrap .squad-info .right .squaditem figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 565px) {
  .squad-wrap .squad-info .left .squaditem figure, .squad-wrap .squad-info .right .squaditem figure {
    display: none;
  }
}
.squad-wrap .squad-info .left .squaditem figcaption p, .squad-wrap .squad-info .left .squaditem figcaption label, .squad-wrap .squad-info .right .squaditem figcaption p, .squad-wrap .squad-info .right .squaditem figcaption label {
  margin: 0;
}
.squad-wrap .squad-info .left .squaditem figcaption p, .squad-wrap .squad-info .right .squaditem figcaption p {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 16px;
}
.squad-wrap .squad-info .left .squaditem figcaption label, .squad-wrap .squad-info .right .squaditem figcaption label {
  color: var(--gray-color);
  font-size: 14px;
}
.squad-wrap .squad-info .right .squaditem {
  -webkit-justify-content: end;
  -moz-justify-content: end;
  -ms-justify-content: end;
  justify-content: end;
  -ms-flex-pack: end;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.squad-wrap .squad-info .right .squaditem.title {
  -webkit-justify-content: end;
  -moz-justify-content: end;
  -ms-justify-content: end;
  justify-content: end;
  -ms-flex-pack: end;
}
.squad-wrap .squad-info .right .squaditem figcaption {
  text-align: right;
}

.scorenotedApp {
  height: 100vh;
  overflow: hidden;
}
.scorenotedApp .top {
  height: 40%;
}
.scorenotedApp .bottom {
  height: 60%;
}
.scorenotedApp .top {
  background-color: #23004b;
  background-image: url("../uploads/images/appscoretopbg.jpg");
  background-position: 0 -20px;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}
@media (min-width: 565px) {
  .scorenotedApp .top {
    background-size: 50%;
    background-position: center;
  }
}
.scorenotedApp .top:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(35, 0, 75, 0.8);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: 0 auto;
}
.scorenotedApp .top .top-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  height: 100%;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
.scorenotedApp .top .backwith-company-name {
  padding: 10px 0;
}
.scorenotedApp .top .backwith-company-name .backer {
  color: #fff;
  text-decoration: none;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 20px;
}
.scorenotedApp .top .backwith-company-name .backer img {
  width: 15px;
  height: 15px;
}
@media (min-width: 575px) {
  .scorenotedApp .top .backwith-company-name .backer .backer {
    font-size: 30px;
  }
  .scorenotedApp .top .backwith-company-name .backer .backer img {
    width: 20px;
    height: 20px;
  }
}
.scorenotedApp .top .score-with-runrate {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
}
.scorenotedApp .top .score-with-runrate .scorz {
  font-size: 45px;
  color: #fff;
  font-family: "Saira", Arial, Helvetica, sans-serif;
}
.scorenotedApp .top .score-with-runrate .scorz span {
  font-size: 20px;
}
.scorenotedApp .top .score-with-runrate .runratez {
  font-size: 14px;
  color: #fff;
}
@media (min-width: 575px) {
  .scorenotedApp .top .score-with-runrate .runratez {
    font-size: 20px;
  }
}
.scorenotedApp .top .batter-strikers {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.scorenotedApp .top .batter-strikers .batterz {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  flex: 0 0 50%;
  max-width: 50%;
  padding: 15px 0px;
  position: relative;
}
@media (min-width: 565px) {
  .scorenotedApp .top .batter-strikers .batterz {
    padding: 15px 20px;
  }
  .scorenotedApp .top .batter-strikers .batterz.left {
    padding-left: 0;
  }
}
.scorenotedApp .top .batter-strikers .batterz:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.scorenotedApp .top .batter-strikers .batterz figure {
  flex: 0 0 40px;
  max-width: 40px;
  margin: 0;
  margin-right: 10px;
}
.scorenotedApp .top .batter-strikers .batterz figure img {
  width: 40px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.3;
}
.scorenotedApp .top .batter-strikers .batterz figcaption {
  flex: 0 0 calc(100% - 40px);
  max-width: calc(100% - 40px);
  position: relative;
}
.scorenotedApp .top .batter-strikers .batterz figcaption .name, .scorenotedApp .top .batter-strikers .batterz figcaption .scorz {
  color: #fff;
  margin: 0;
}
.scorenotedApp .top .batter-strikers .batterz figcaption .name {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 15px;
  width: 95%;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  opacity: 0.5;
}
.scorenotedApp .top .batter-strikers .batterz figcaption .replace-player {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  bottom: 3px;
  margin: 0;
  right: 20px;
  text-decoration: underline;
}
.scorenotedApp .top .batter-strikers .batterz.active figure img {
  filter: none;
  opacity: 1;
}
.scorenotedApp .top .batter-strikers .batterz.active figcaption .name {
  color: #FBC638;
  opacity: 1;
}
.scorenotedApp .bottom {
  background-color: #fff;
}
.scorenotedApp .bottom .bowler-over-score {
  background-color: #296073;
  position: relative;
  padding: 10px 0;
  height: 150px;
}
.scorenotedApp .bottom .bowler-over-score .topbowl {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  margin-bottom: 10px;
}
.scorenotedApp .bottom .bowler-over-score .topbowl .bowler {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 5px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  color: #fff;
}
.scorenotedApp .bottom .bowler-over-score .topbowl .bowler img {
  width: 25px;
  height: auto;
  filter: brightness(0) invert(1);
}
.scorenotedApp .bottom .bowler-over-score .topbowl .overs {
  color: #fff;
}
.scorenotedApp .bottom .bowler-over-score .bottombowl {
  width: 100%;
  overflow: hidden;
}
.scorenotedApp .bottom .bowler-over-score .bottombowl .scoreper-ball {
  width: 100%;
  overflow-x: scroll;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  gap: 12px;
}
.scorenotedApp .bottom .bowler-over-score .bottombowl .scoreper-ball .scoreround {
  text-align: center;
}
.scorenotedApp .bottom .bowler-over-score .bottombowl .scoreper-ball .scoreround i {
  flex: 0 0 50px;
  max-width: 50px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  background-color: #fff;
  border: 1px solid #ccc;
  font-style: normal;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 20px;
}
.scorenotedApp .bottom .bowler-over-score .bottombowl .scoreper-ball .scoreround label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}
.scorenotedApp .bottom .bowler-over-score .bottombowl .scoreper-ball .scoreround.four i {
  background-color: #FFC75F;
}
.scorenotedApp .bottom .bowler-over-score .bottombowl .scoreper-ball .scoreround.six i {
  background-color: #845EC2;
  color: #fff;
}
.scorenotedApp .bottom .bowler-over-score .bottombowl .scoreper-ball .scoreround.wide i {
  background-color: #FEFEDF;
}
.scorenotedApp .bottom .bowler-over-score .bottombowl .scoreper-ball .scoreround.noball i {
  background-color: #e0e1e1;
}
.scorenotedApp .bottom .bowler-over-score .bottombowl .scoreper-ball .scoreround.wicket i {
  background-color: red;
  border-color: red;
  color: #fff;
}
.scorenotedApp .bottom .scores-actions-wrap {
  height: calc(100% - 150px);
}
.scorenotedApp .bottom .scores-actions-wrap .inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: 100%;
}
@media (min-width: 575px) {
  .scorenotedApp .bottom .scores-actions-wrap .inner {
    max-width: 400px;
    margin: 0 auto;
  }
}
.scorenotedApp .bottom .scores-actions-wrap .inner .actions-left .box, .scorenotedApp .bottom .scores-actions-wrap .inner .actions-right .box {
  font-size: 18px;
  color: #504949;
}
.scorenotedApp .bottom .scores-actions-wrap .inner .actions-left {
  flex: 0 0 25%;
  max-width: 25%;
  height: 100%;
  display: grid;
  grid-template-rows: repeat(4, 1fr);
  border-right: 1px solid #e0e1e1;
}
@media (min-width: 575px) {
  .scorenotedApp .bottom .scores-actions-wrap .inner .actions-left {
    border-left: 1px solid #e0e1e1;
  }
}
.scorenotedApp .bottom .scores-actions-wrap .inner .actions-left .box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  border-bottom: 1px solid #e0e1e1;
  cursor: pointer;
  font-weight: 500;
  background-color: #f1f1f1;
}
.scorenotedApp .bottom .scores-actions-wrap .inner .actions-left .box:last-child {
  border: 0;
}
.scorenotedApp .bottom .scores-actions-wrap .inner .actions-left .box.out {
  color: red;
}
.scorenotedApp .bottom .scores-actions-wrap .inner .actions-left .box.undo {
  color: #00C9A7;
}
.scorenotedApp .bottom .scores-actions-wrap .inner .actions-right {
  flex: 0 0 75%;
  max-width: 75%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(33.3333%, 1fr));
}
.scorenotedApp .bottom .scores-actions-wrap .inner .actions-right .box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  border-bottom: 1px solid #e0e1e1;
  border-right: 1px solid #e0e1e1;
  cursor: pointer;
  font-weight: 500;
}
.scorenotedApp .bottom .scores-actions-wrap .inner .actions-right .box.four, .scorenotedApp .bottom .scores-actions-wrap .inner .actions-right .box.six {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
}
.scorenotedApp .bottom .scores-actions-wrap .inner .actions-right .box.four span, .scorenotedApp .bottom .scores-actions-wrap .inner .actions-right .box.six span {
  font-weight: 400;
}
.scorenotedApp .bottom .scores-actions-wrap .inner .actions-right .box.wide, .scorenotedApp .bottom .scores-actions-wrap .inner .actions-right .box.noball, .scorenotedApp .bottom .scores-actions-wrap .inner .actions-right .box.byes {
  background-color: #f1f1f1;
}

.modalOpeninBottomtoTop-mobile .modal-dialog .modal-body h3.title {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 22px;
}
.modalOpeninBottomtoTop-mobile .modal-dialog .modal-body p {
  margin: 0;
}
.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer .btn {
  flex: 0 0 49%;
  max-width: 49%;
  width: 49%;
  margin: 0;
}

@media (max-width: 565px) {
  .modalOpeninBottomtoTop-mobile.modal.fade .modal-dialog {
    transform: translateY(50%);
    transition: transform 0.3s ease-out;
  }
  .modalOpeninBottomtoTop-mobile.modal.fade.show .modal-dialog {
    transform: translateY(0);
  }
}
@media (max-width: 565px) and (max-width: 565px) {
  .modalOpeninBottomtoTop-mobile .modal-dialog {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: inherit;
  }
}
@media (max-width: 565px) and (max-width: 565px) {
  .modalOpeninBottomtoTop-mobile .modal-dialog .modal-content {
    border-radius: 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
  }
}
.unDoModal .modal-body h3, .changeStrikeModal .modal-body h3 {
  color: rgb(152, 18, 18);
}
.unDoModal .modal-body p, .changeStrikeModal .modal-body p {
  margin-bottom: 0;
}

.changeStrikeModal .modal-body p {
  color: var(--gray-color);
}
.changeStrikeModal .checkbox-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.changeStrikeModal .checkbox-wrap .form-check {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 10px;
}
.changeStrikeModal .checkbox-wrap .form-check .form-check-input {
  width: 22px;
  height: 22px;
  border-radius: 0px;
  position: relative;
  top: -1px;
}
.changeStrikeModal .checkbox-wrap .form-check .form-check-input:Checked {
  background-color: #26707B;
  border-color: #26707B;
}
.changeStrikeModal .checkbox-wrap .form-check .form-check-input:focus {
  box-shadow: none;
  border-color: #ccc;
}

.fiveMoreModal .title {
  margin-bottom: 10px;
}
.fiveMoreModal .inputRunner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  margin: 15px 0;
  gap: 10px;
}
.fiveMoreModal .inputRunner input {
  flex: 0 0 50px;
  max-width: 50px;
  height: 40px;
  border: 1px solid #ccc;
}
.fiveMoreModal label {
  display: block;
  margin: 0;
  color: var(--gray-color);
}

.wideRunModal .title, .noBallRunModal .title, .outModal .title {
  border-bottom: 1px solid #e0e1e1;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
.wideball-modal-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  flex-wrap: wrap;
  gap: 10px;
}

.wideball-modal-item {
  flex: 0 0 25%;
  max-width: 25%;
}
.wideball-modal-item input[type=radio] {
  display: none;
}
.wideball-modal-item label {
  width: 100%;
  height: 30px;
  border: 1px solid #e0e1e1;
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  font-size: 15px;
  background: rgba(132, 94, 194, 0.1);
  color: #845EC2;
}
.wideball-modal-item input[type=radio]:checked + label {
  background: #845EC2;
  color: #fff;
  border-color: #845EC2;
}

@media (max-width: 565px) {
  .outModal .modal-body {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.outModal .outtype-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}
.outModal .outtype-wrap .outtype-item {
  flex: 0 0 31.3333%;
  max-width: 31.3333%;
  background-color: #f1f1f1;
  padding: 10px 5px 10px;
}
.outModal .outtype-wrap .outtype-item figure {
  height: 50px;
  width: 100%;
  border-radius: 50%;
  margin: 0 auto 5px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.outModal .outtype-wrap .outtype-item figure img {
  width: 60px;
  height: auto;
}
.outModal .outtype-wrap .outtype-item figcaption {
  font-size: 13px;
  line-height: 15px;
  color: #6225E6;
  min-height: 36px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: end;
  -moz-align-items: end;
  -ms-align-items: end;
  align-items: end;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

.selectNextPlayerModal.modalOpeninBottomtoTop-mobile .modal-dialog, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .modal-dialog, .selectBowlerModal.modalOpeninBottomtoTop-mobile .modal-dialog, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .modal-dialog, .selectTeamModal.modalOpeninBottomtoTop-mobile .modal-dialog, .selectPlayerModal.modalOpeninBottomtoTop-mobile .modal-dialog, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .modal-dialog, .selectUmpireModal.modalOpeninBottomtoTop-mobile .modal-dialog, .selectScorerModal.modalOpeninBottomtoTop-mobile .modal-dialog, .roundsModal.modalOpeninBottomtoTop-mobile .modal-dialog, .addGroupModal.modalOpeninBottomtoTop-mobile .modal-dialog, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .modal-dialog {
  height: 100vh;
}
.selectNextPlayerModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content, .selectBowlerModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content, .selectTeamModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content, .selectPlayerModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content, .selectUmpireModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content, .selectScorerModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content, .roundsModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content, .addGroupModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content {
  height: 100vh;
  border-radius: 0;
  border: 0;
}
.selectNextPlayerModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer, .selectBowlerModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer, .selectTeamModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer, .selectPlayerModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer, .selectUmpireModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer, .selectScorerModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer, .roundsModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer, .addGroupModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.selectNextPlayerModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer p, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer p, .selectBowlerModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer p, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer p, .selectTeamModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer p, .selectPlayerModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer p, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer p, .selectUmpireModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer p, .selectScorerModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer p, .roundsModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer p, .addGroupModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer p, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer p {
  text-align: center;
  margin-bottom: 20px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 20px;
}
.selectNextPlayerModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer .btn, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer .btn, .selectBowlerModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer .btn, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer .btn, .selectTeamModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer .btn, .selectPlayerModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer .btn, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer .btn, .selectUmpireModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer .btn, .selectScorerModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer .btn, .roundsModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer .btn, .addGroupModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer .btn, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer .btn {
  max-width: 100%;
  width: 100%;
  flex: 0 0 100%;
}
.selectNextPlayerModal.modalOpeninBottomtoTop-mobile .modal-header, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .modal-header, .selectBowlerModal.modalOpeninBottomtoTop-mobile .modal-header, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .modal-header, .selectTeamModal.modalOpeninBottomtoTop-mobile .modal-header, .selectPlayerModal.modalOpeninBottomtoTop-mobile .modal-header, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .modal-header, .selectUmpireModal.modalOpeninBottomtoTop-mobile .modal-header, .selectScorerModal.modalOpeninBottomtoTop-mobile .modal-header, .roundsModal.modalOpeninBottomtoTop-mobile .modal-header, .addGroupModal.modalOpeninBottomtoTop-mobile .modal-header, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .modal-header {
  border-radius: 0;
  display: block;
  padding: 0;
}
.selectNextPlayerModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .selectNextPlayerModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom, .selectBowlerModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .selectBowlerModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom, .selectTeamModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .selectTeamModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom, .selectPlayerModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .selectPlayerModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom, .selectUmpireModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .selectUmpireModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom, .selectScorerModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .selectScorerModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom, .roundsModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .roundsModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom, .addGroupModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .addGroupModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  position: relative;
  padding: 10px 15px;
  height: 60px;
}
.selectNextPlayerModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .selectBowlerModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .selectTeamModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .selectPlayerModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .selectUmpireModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .selectScorerModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .roundsModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .addGroupModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .modal-header .top-head {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  background-color: #614092;
}
.selectNextPlayerModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom, .selectBowlerModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom, .selectTeamModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom, .selectPlayerModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom, .selectUmpireModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom, .selectScorerModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom, .roundsModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom, .addGroupModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  background: linear-gradient(242.58deg, #8542D8 0.9%, #9D3ADF 21.58%, #8542D8 64.98%, #9D3ADF 101.25%);
}
.selectNextPlayerModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom p, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom p, .selectBowlerModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom p, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom p, .selectTeamModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom p, .selectPlayerModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom p, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom p, .selectUmpireModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom p, .selectScorerModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom p, .roundsModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom p, .addGroupModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom p, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom p {
  margin: 0;
  color: #fff;
  font-size: 18px;
}
.selectNextPlayerModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom .add-player, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom .add-player, .selectBowlerModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom .add-player, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom .add-player, .selectTeamModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom .add-player, .selectPlayerModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom .add-player, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom .add-player, .selectUmpireModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom .add-player, .selectScorerModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom .add-player, .roundsModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom .add-player, .addGroupModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom .add-player, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .modal-header .top-bottom .add-player {
  height: 35px;
  background-color: #FBC638;
  color: var(--primary-color);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  text-decoration: none;
  padding: 0 15px;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 500;
}
.selectNextPlayerModal.modalOpeninBottomtoTop-mobile .modal-header h1, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .modal-header h1, .selectBowlerModal.modalOpeninBottomtoTop-mobile .modal-header h1, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .modal-header h1, .selectTeamModal.modalOpeninBottomtoTop-mobile .modal-header h1, .selectPlayerModal.modalOpeninBottomtoTop-mobile .modal-header h1, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .modal-header h1, .selectUmpireModal.modalOpeninBottomtoTop-mobile .modal-header h1, .selectScorerModal.modalOpeninBottomtoTop-mobile .modal-header h1, .roundsModal.modalOpeninBottomtoTop-mobile .modal-header h1, .addGroupModal.modalOpeninBottomtoTop-mobile .modal-header h1, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .modal-header h1 {
  font-size: 22px;
  color: #fff;
  margin: 0;
}
.selectNextPlayerModal.modalOpeninBottomtoTop-mobile .modal-header i, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .modal-header i, .selectBowlerModal.modalOpeninBottomtoTop-mobile .modal-header i, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .modal-header i, .selectTeamModal.modalOpeninBottomtoTop-mobile .modal-header i, .selectPlayerModal.modalOpeninBottomtoTop-mobile .modal-header i, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .modal-header i, .selectUmpireModal.modalOpeninBottomtoTop-mobile .modal-header i, .selectScorerModal.modalOpeninBottomtoTop-mobile .modal-header i, .roundsModal.modalOpeninBottomtoTop-mobile .modal-header i, .addGroupModal.modalOpeninBottomtoTop-mobile .modal-header i, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .modal-header i {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.selectNextPlayerModal.modalOpeninBottomtoTop-mobile .modal-header i img, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .modal-header i img, .selectBowlerModal.modalOpeninBottomtoTop-mobile .modal-header i img, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .modal-header i img, .selectTeamModal.modalOpeninBottomtoTop-mobile .modal-header i img, .selectPlayerModal.modalOpeninBottomtoTop-mobile .modal-header i img, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .modal-header i img, .selectUmpireModal.modalOpeninBottomtoTop-mobile .modal-header i img, .selectScorerModal.modalOpeninBottomtoTop-mobile .modal-header i img, .roundsModal.modalOpeninBottomtoTop-mobile .modal-header i img, .addGroupModal.modalOpeninBottomtoTop-mobile .modal-header i img, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .modal-header i img {
  width: 20px;
  height: auto;
}
.selectNextPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item, .selectBowlerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item, .selectTeamModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item, .selectPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item, .selectUmpireModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item, .selectScorerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item, .roundsModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item, .addGroupModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item {
  margin-bottom: 10px;
}
.selectNextPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio], .selectNextPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox], .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio], .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox], .selectBowlerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio], .selectBowlerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox], .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio], .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox], .selectTeamModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio], .selectTeamModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox], .selectPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio], .selectPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox], .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio], .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox], .selectUmpireModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio], .selectUmpireModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox], .selectScorerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio], .selectScorerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox], .roundsModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio], .roundsModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox], .addGroupModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio], .addGroupModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox], .scheduleMatchModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio], .scheduleMatchModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox] {
  display: none;
}
.selectNextPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label, .selectBowlerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label, .selectTeamModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label, .selectPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label, .selectUmpireModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label, .selectScorerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label, .roundsModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label, .addGroupModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label {
  width: 100%;
  height: 45px;
  border: 1px solid #e0e1e1;
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: start;
  -moz-justify-content: start;
  -ms-justify-content: start;
  justify-content: start;
  -ms-flex-pack: start;
  font-size: 15px;
  background: #f1f1f1;
  color: var(--primary-color);
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 18px;
  padding: 0 15px;
  position: relative;
}
.selectNextPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label img, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label img, .selectBowlerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label img, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label img, .selectTeamModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label img, .selectPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label img, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label img, .selectUmpireModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label img, .selectScorerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label img, .roundsModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label img, .addGroupModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label img, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}
.selectNextPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .wicketkeeper, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .wicketkeeper, .selectBowlerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .wicketkeeper, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .wicketkeeper, .selectTeamModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .wicketkeeper, .selectPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .wicketkeeper, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .wicketkeeper, .selectUmpireModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .wicketkeeper, .selectScorerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .wicketkeeper, .roundsModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .wicketkeeper, .addGroupModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .wicketkeeper, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .wicketkeeper {
  font-weight: 500;
  color: #FF6F91;
  margin-left: 10px;
}
.selectNextPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label:after, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label:after, .selectBowlerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label:after, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label:after, .selectTeamModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label:after, .selectPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label:after, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label:after, .selectUmpireModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label:after, .selectScorerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label:after, .roundsModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label:after, .addGroupModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label:after, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: transparent;
}
.selectNextPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label, .selectNextPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label, .selectBowlerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label, .selectBowlerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label, .selectTeamModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label, .selectTeamModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label, .selectPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label, .selectPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label, .selectUmpireModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label, .selectUmpireModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label, .selectScorerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label, .selectScorerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label, .roundsModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label, .roundsModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label, .addGroupModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label, .addGroupModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label {
  background: #008B74;
  color: #fff;
  border-color: #008B74;
}
.selectNextPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label .wicketkeeper, .selectNextPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label .wicketkeeper, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label .wicketkeeper, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label .wicketkeeper, .selectBowlerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label .wicketkeeper, .selectBowlerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label .wicketkeeper, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label .wicketkeeper, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label .wicketkeeper, .selectTeamModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label .wicketkeeper, .selectTeamModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label .wicketkeeper, .selectPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label .wicketkeeper, .selectPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label .wicketkeeper, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label .wicketkeeper, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label .wicketkeeper, .selectUmpireModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label .wicketkeeper, .selectUmpireModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label .wicketkeeper, .selectScorerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label .wicketkeeper, .selectScorerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label .wicketkeeper, .roundsModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label .wicketkeeper, .roundsModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label .wicketkeeper, .addGroupModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label .wicketkeeper, .addGroupModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label .wicketkeeper, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label .wicketkeeper, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label .wicketkeeper {
  color: #fff;
}
.selectNextPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label:after, .selectNextPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label:after, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label:after, .selectNextPlayersModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label:after, .selectBowlerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label:after, .selectBowlerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label:after, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label:after, .selectFielderPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label:after, .selectTeamModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label:after, .selectTeamModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label:after, .selectPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label:after, .selectPlayerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label:after, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label:after, .selectCaptainKeeperTwelevemanModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label:after, .selectUmpireModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label:after, .selectUmpireModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label:after, .selectScorerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label:after, .selectScorerModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label:after, .roundsModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label:after, .roundsModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label:after, .addGroupModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label:after, .addGroupModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label:after, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label:after, .scheduleMatchModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #fff;
  color: #008B74;
  background-image: url("../uploads/images/check-green.svg");
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center;
}

.modalOpeninBottomtoTop-mobile.selectTeamModal .modal-header .bottom-head {
  height: 55px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  background-color: #A178DF;
  padding: 0 15px;
}
.modalOpeninBottomtoTop-mobile.selectTeamModal .modal-header .bottom-head .quicksearch {
  width: 100%;
  height: 45px;
  position: relative;
}
.modalOpeninBottomtoTop-mobile.selectTeamModal .modal-header .bottom-head .quicksearch:after {
  content: "";
  width: 50px;
  height: 45px;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  right: 0;
  background-color: #fff;
  background-image: url("../uploads/images/magnifying-glass.svg");
  background-size: 35px;
  background-repeat: no-repeat;
  background-position: center;
}
.modalOpeninBottomtoTop-mobile.selectTeamModal .modal-header .bottom-head input {
  height: 45px;
  border: 1px solid #fff;
  background-color: transparent;
  padding: 0 10px;
  padding-right: 50px;
  width: 100%;
  color: #fff;
}
.modalOpeninBottomtoTop-mobile.selectTeamModal .modal-header .bottom-head input:focus {
  outline: 0;
  border: 1px solid #fff;
  box-shadow: inherit;
}
.modalOpeninBottomtoTop-mobile.selectTeamModal .playingsquad-remainning-item label {
  height: 75px;
  padding: 0 10px;
  gap: 10px;
}
.modalOpeninBottomtoTop-mobile.selectTeamModal .playingsquad-remainning-item label i {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.modalOpeninBottomtoTop-mobile.selectTeamModal .playingsquad-remainning-item label i img {
  width: 50px;
  height: 50px;
  display: inline-block;
  margin-right: 0;
}
.modalOpeninBottomtoTop-mobile.selectTeamModal .playingsquad-remainning-item label .team-name-captain {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  gap: 5px;
}
.modalOpeninBottomtoTop-mobile.selectTeamModal .playingsquad-remainning-item label .team-name-captain h6 {
  margin: 0;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 20px;
}
.modalOpeninBottomtoTop-mobile.selectTeamModal .playingsquad-remainning-item label .team-name-captain .team-captain {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-size: 17px;
  color: #008E9B;
}
.modalOpeninBottomtoTop-mobile.selectTeamModal .playingsquad-remainning-item label .team-name-captain .team-captain span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #e0e1e1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  color: #008E9B;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.modalOpeninBottomtoTop-mobile.selectTeamModal .playingsquad-remainning-item input[type=radio]:checked + label .team-name-captain .team-captain {
  color: #fff;
}
.modalOpeninBottomtoTop-mobile.selectPlayerModal .modal-dialog .modal-header .top-bottom {
  background: #A178DF;
  height: auto;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
}
.modalOpeninBottomtoTop-mobile.selectPlayerModal .modal-dialog .modal-header .top-bottom .title {
  margin-bottom: 10px;
}
.modalOpeninBottomtoTop-mobile.selectPlayerModal .modal-dialog .modal-header .top-bottom .search-addnew-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 5px;
}
.modalOpeninBottomtoTop-mobile.selectPlayerModal .modal-dialog .modal-header .top-bottom .search-addnew-wrap .add-player {
  white-space: nowrap;
}
.modalOpeninBottomtoTop-mobile.selectPlayerModal .modal-dialog .modal-header .top-bottom .quicksearch {
  width: 100%;
  height: 35px;
  position: relative;
}
.modalOpeninBottomtoTop-mobile.selectPlayerModal .modal-dialog .modal-header .top-bottom .quicksearch:after {
  content: "";
  width: 40px;
  height: 35px;
  top: 0;
  bottom: 0;
  margin: auto;
  position: absolute;
  right: 0;
  background-color: #fff;
  background-image: url("../uploads/images/magnifying-glass.svg");
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center;
}
.modalOpeninBottomtoTop-mobile.selectPlayerModal .modal-dialog .modal-header .top-bottom .quicksearch input {
  height: 35px;
  border: 1px solid #fff;
  background-color: transparent;
  padding: 0 10px;
  padding-right: 50px;
  width: 100%;
  color: #fff;
}
.modalOpeninBottomtoTop-mobile.selectPlayerModal .modal-dialog .modal-header .top-bottom .quicksearch input:focus {
  outline: 0;
  border: 1px solid #fff;
  box-shadow: inherit;
}
.modalOpeninBottomtoTop-mobile.selectPlayerModal .modal-dialog .modal-footer p {
  font-size: 14px;
  margin-bottom: 8px;
  font-weight: 400;
}
.modalOpeninBottomtoTop-mobile.selectCaptainKeeperTwelevemanModal .modal-header h1, .modalOpeninBottomtoTop-mobile.selectUmpireModal .modal-header h1, .modalOpeninBottomtoTop-mobile.selectScorerModal .modal-header h1 {
  font-size: 16px;
}
.modalOpeninBottomtoTop-mobile.selectCaptainKeeperTwelevemanModal .modal-header .top-bottom, .modalOpeninBottomtoTop-mobile.selectUmpireModal .modal-header .top-bottom, .modalOpeninBottomtoTop-mobile.selectScorerModal .modal-header .top-bottom {
  padding-bottom: 0;
  -webkit-align-items: end;
  -moz-align-items: end;
  -ms-align-items: end;
  align-items: end;
}
.modalOpeninBottomtoTop-mobile.selectCaptainKeeperTwelevemanModal .modal-header .top-bottom .nav-tabs, .modalOpeninBottomtoTop-mobile.selectUmpireModal .modal-header .top-bottom .nav-tabs, .modalOpeninBottomtoTop-mobile.selectScorerModal .modal-header .top-bottom .nav-tabs {
  border: 0;
}
.modalOpeninBottomtoTop-mobile.selectCaptainKeeperTwelevemanModal .modal-header .top-bottom .nav-tabs .nav-link, .modalOpeninBottomtoTop-mobile.selectUmpireModal .modal-header .top-bottom .nav-tabs .nav-link, .modalOpeninBottomtoTop-mobile.selectScorerModal .modal-header .top-bottom .nav-tabs .nav-link {
  color: #fff;
  padding: 10px 20px;
  font-size: 13px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.modalOpeninBottomtoTop-mobile.selectCaptainKeeperTwelevemanModal .modal-header .top-bottom .nav-tabs .nav-link.active, .modalOpeninBottomtoTop-mobile.selectUmpireModal .modal-header .top-bottom .nav-tabs .nav-link.active, .modalOpeninBottomtoTop-mobile.selectScorerModal .modal-header .top-bottom .nav-tabs .nav-link.active {
  color: #614092;
}
@media (min-width: 768px) {
  .modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog {
    max-width: 1000px;
    height: auto;
  }
}
@media (min-width: 768px) {
  .modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-content {
    height: auto;
  }
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-header {
  padding: 0;
  border: 0;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-header h2 {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 25px;
  margin: 0;
  font-weight: 500;
  border-bottom: 1px solid #e0e1e1;
  background-color: #f1f1f1;
  height: 70px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .nav {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  gap: 40px;
  margin-bottom: 25px;
  background: #ffffff;
  padding: 13px 0;
  width: 100%;
  margin: 0;
  border-bottom: 1px solid #eaeaea;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .nav .nav-item .nav-link {
  background-color: #f1f1f1;
  border: 1px solid #e0e1e1;
  color: #614092;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 13px;
  margin: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  box-shadow: inherit;
  padding: 0;
  position: relative;
  color: #4d4c4c;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .nav .nav-item .nav-link:after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background-color: #e0e1e1;
  top: 0;
  bottom: 0;
  right: -41px;
  margin: auto;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .nav .nav-item .nav-link.active {
  border-color: #614092;
  color: #614092;
  background-color: #fff;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .nav .nav-item .nav-link.completed {
  background-color: #614092;
  color: #fff;
  border-color: #614092;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .nav .nav-item:last-child .nav-link:after {
  display: none;
}
@media (min-width: 992px) {
  .modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps {
  padding-top: 15px;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .playingsquad-remainning-item {
  margin: 0;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .playingsquad-remainning-item label {
  width: 75px;
  height: 75px;
  font-size: 13.5px;
  padding: 5px;
  line-height: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  font-weight: 500;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  text-align: center;
}
@media (min-width: 768px) {
  .modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .playingsquad-remainning-item label {
    width: 95px;
    height: 95px;
  }
}
@media (max-width: 565px) {
  .modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .playingsquad-remainning-item label {
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    font-size: 14px;
  }
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .playingsquad-remainning-item input[type=radio]:checked + label:after, .modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .playingsquad-remainning-item input[type=checkbox]:checked + label:after {
  right: 5px;
  top: 3px;
  bottom: inherit;
  width: 15px;
  height: 15px;
  background-size: 15px;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .add-round {
  cursor: pointer;
  width: 75px;
  height: 75px;
  background-color: #4B4453;
  color: #FFF;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  text-align: center;
  font-size: 13.5px;
  padding: 5px;
  line-height: 16px;
}
@media (min-width: 768px) {
  .modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .add-round {
    width: 95px;
    height: 95px;
  }
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div h2 {
  font-size: 19px;
  margin-bottom: 25px;
  font-weight: 500;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .stepone-selectrounds {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .select-team-wrap {
  width: 70%;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border: 1px solid #e0e1e1;
}
@media (max-width: 565px) {
  .modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .select-team-wrap {
    width: 100%;
  }
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .select-team-wrap .selectTeam {
  flex: 0 0 50%;
  max-width: 50%;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .select-team-wrap .selectTeam.teamA {
  border-right: 1px solid #e0e1e1;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .select-team-wrap .selectTeam .top {
  height: 50px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  background-color: #f1f1f1;
  color: #3F51B5;
  border-bottom: 1px solid #e0e1e1;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 18px;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .select-team-wrap .selectTeam .bottom {
  padding-top: 10px;
  padding-bottom: 10px;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .select-team-wrap .selectTeam .bottom .playingsquad-remainning-item {
  width: 100%;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .select-team-wrap .selectTeam .bottom .playingsquad-remainning-item:not(:last-child) {
  margin-bottom: 5px;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .select-team-wrap .selectTeam .bottom .playingsquad-remainning-item label {
  border: 1px solid #e0e1e1;
  background-color: white;
  width: calc(100% - 20px);
  margin: 0 auto;
  height: 50px;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .select-team-wrap .selectTeam .bottom .playingsquad-remainning-item label h6 {
  margin: 0;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .select-team-wrap .selectTeam .bottom .playingsquad-remainning-item label img {
  width: 45px;
  height: auto;
  border-radius: 0;
  display: none;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .select-team-wrap .selectTeam .bottom .playingsquad-remainning-item label:after {
  top: 0;
  bottom: 0;
  margin: auto;
  border: 1px solid #e0e1e1;
  width: 15px;
  height: 15px;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .select-team-wrap .selectTeam .bottom .playingsquad-remainning-item input[type=radio]:disabled + label {
  background-color: #fafafa;
  color: #a8a8a8;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .select-team-wrap .selectTeam .bottom .playingsquad-remainning-item input[type=radio]:checked + label {
  background-color: #008B74;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .choose-team-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  padding: 50px 0;
  gap: 35px;
}
@media (max-width: 565px) {
  .modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .choose-team-wrap {
    gap: 20px;
    padding: 20px 0;
  }
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .choose-team-wrap .vs {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  background-color: #f1f1f1;
  color: #23004b;
  border: 1px solid #e0e1e1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 500;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .choose-team-wrap .vs span {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  border-radius: 50%;
  background-color: #f1f1f1;
  color: #23004b;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .choose-team-wrap .vs::after {
  content: "";
  width: 1px;
  height: 100px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #e0e1e1;
  position: absolute;
  z-index: 0;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .choose-team-wrap .chooseteam {
  flex: 0 0 125px;
  max-width: 125px;
  height: 125px;
  border-radius: 50%;
  background-color: #fafafa;
  border: 1px solid #26707B;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  flex-direction: column;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 25px;
}
@media (max-width: 565px) {
  .modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .choose-team-wrap .chooseteam {
    flex: 0 0 110px;
    max-width: 110px;
    height: 110px;
    font-size: 18px;
    line-height: 21px;
  }
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .choose-team-wrap .chooseteam:hover {
  background-color: #26707B;
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .choose-team-wrap .chooseteam label {
  display: block;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-div .choose-team-wrap .chooseteam.team-a {
  box-shadow: 0 0 0 rgba(204, 169, 44, 0.4);
  animation: pulse 2s infinite;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 565px) {
  .modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info {
    gap: 0;
  }
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info .newtournament-item {
  flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px);
}
@media (max-width: 565px) {
  .modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info .newtournament-item {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info .datetimepicker-toggle-button {
  width: 35px;
  height: 35px;
  background-image: url("../uploads/images/event.svg");
  background-size: 30px;
  background-position: center;
  background-repeat: no-repeat;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info .tournament_category {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info .tournament_category .customRadioSelect label {
  width: auto;
  height: 25px;
  font-size: 13.5px;
  padding: 5px 10px;
  line-height: 16px;
  text-align: center;
  border-radius: 15px;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info .tournament_category .customRadioSelect input[type=radio]:checked + label, .modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info .tournament_category .customRadioSelect input[type=checkbox]:checked + label {
  color: #fff;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info .tournament_category .customRadioSelect input[type=radio]:checked + label:after, .modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info .tournament_category .customRadioSelect input[type=checkbox]:checked + label:after {
  display: none;
  right: 5px;
  top: 3px;
  bottom: inherit;
  width: 15px;
  height: 15px;
  background-size: 15px;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info .tournament_category .customRadioSelect.ballTypeSelect label {
  width: 75px;
  height: 75px;
  border-radius: 50%;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info .tournament_category .customRadioSelect.ballTypeSelect input[type=radio]:checked + label, .modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info .tournament_category .customRadioSelect.ballTypeSelect input[type=checkbox]:checked + label {
  background-color: #008B74;
  color: #fff;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info .tournament_category .customRadioSelect.ballTypeSelect input[type=radio]:checked + label:after, .modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info .tournament_category .customRadioSelect.ballTypeSelect input[type=checkbox]:checked + label:after {
  display: none;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info .newtournament-item {
  width: 100%;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info .newtournament-item label {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  color: var(--primary-color);
  font-size: 17px;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info .newtournament-item select, .modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info .newtournament-item input {
  height: 45px;
  border: 1px solid #e0e1e1;
  padding: 0 15px;
  font-size: 15px;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info .newtournament-item input:focus {
  outline: 0;
  box-shadow: inherit;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info .newtournament-item input[type=checkbox] {
  height: 20px;
  width: 20px;
  padding: 0;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info .newtournament-item.start-end-date-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .match-details-info .newtournament-item.start-end-date-wrap .start-end-date-item {
  flex: 0 0 48%;
  max-width: 48%;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-footer {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  padding: 20px 0 0;
  border-top: 1px solid #e0e1e1;
  margin-top: 25px;
}
.modalOpeninBottomtoTop-mobile.scheduleMatchModal .modal-dialog .modal-body .schedule-match-steps .step-footer .btn {
  flex: 0 0 150px;
  max-width: 150px;
  height: 45px;
  margin: 0;
  text-transform: capitalize;
}
.modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog {
  max-width: 1000px;
}
.modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-footer {
  gap: 10px;
}
.modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-footer .btn {
  flex: 0 0 200px;
}
@media (max-width: 565px) {
  .modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-footer .btn {
    flex: 0 0 165px;
  }
}
.modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-header {
  padding: 0;
  border: 0;
}
.modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-header h2 {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 25px;
  margin: 0;
  font-weight: 500;
  border-bottom: 1px solid #e0e1e1;
  background-color: #f1f1f1;
  height: 60px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  color: #614092;
}
.modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-header .top {
  padding: 20px;
  border-bottom: 1px solid #e0e1e1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  gap: 10px;
}
.modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-header .top .field-item {
  flex: 0 0 calc(33.3333% - 10px);
  max-width: calc(33.3333% - 10px);
  text-align: left;
}
.modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-header .top .field-item label {
  font-size: 15px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
}
.modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-header .top .field-item input::-moz-placeholder, .modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-header .top .field-item select::-moz-placeholder {
  font-size: 15px;
  color: #b4b4b4;
}
.modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-header .top .field-item input:-moz-placeholder, .modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-header .top .field-item select:-moz-placeholder {
  font-size: 15px;
  color: #b4b4b4;
}
.modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-header .top .field-item input::-webkit-input-placeholder, .modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-header .top .field-item select::-webkit-input-placeholder {
  font-size: 15px;
  color: #b4b4b4;
}
.modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-header .top .field-item input:focus, .modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-header .top .field-item select:focus {
  border-color: #614092;
  box-shadow: inherit;
}
.modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-body h2 {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 500;
}
.modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-body .addGroupModal-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  gap: 15px;
}
.modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-body .addGroupModal-wrap .playingsquad-remainning-item {
  margin: 0;
}
.modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-body .addGroupModal-wrap .playingsquad-remainning-item label {
  width: 120px;
  height: 130px;
  padding: 0;
  display: block;
}
@media (max-width: 565px) {
  .modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-body .addGroupModal-wrap .playingsquad-remainning-item label {
    width: 105px;
  }
}
.modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-body .addGroupModal-wrap .playingsquad-remainning-item label figure {
  margin: 0;
  height: 80px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  overflow: hidden;
}
.modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-body .addGroupModal-wrap .playingsquad-remainning-item label figure img {
  width: 70%;
  height: auto;
  border-radius: 0;
  margin: 0;
  object-fit: contain;
}
.modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-body .addGroupModal-wrap .playingsquad-remainning-item label figcaption {
  border-top: 1px solid #e0e1e1;
  margin: 0;
  font-size: 13.5px;
  padding: 0 5px;
  font-weight: 500;
  height: 48px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  font-family: "Noto Sans", Arial, Helvetica, sans-serif;
  background-color: #fff;
  line-height: 16px;
  text-align: center;
}
.modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-body .addGroupModal-wrap .playingsquad-remainning-item input[type=radio]:checked + label, .modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-body .addGroupModal-wrap .playingsquad-remainning-item input[type=checkbox]:checked + label {
  border-color: #008B74;
}
.modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-body .addGroupModal-wrap .playingsquad-remainning-item input[type=radio]:checked + label figcaption, .modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-body .addGroupModal-wrap .playingsquad-remainning-item input[type=checkbox]:checked + label figcaption {
  color: #fff;
  background-color: #008B74;
}
.modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-body .addGroupModal-wrap .playingsquad-remainning-item input[type=radio]:checked + label:after, .modalOpeninBottomtoTop-mobile.addGroupModal .modal-dialog .modal-body .addGroupModal-wrap .playingsquad-remainning-item input[type=checkbox]:checked + label:after {
  right: 5px;
  top: 3px;
  bottom: inherit;
  width: 15px;
  height: 15px;
  background-size: 15px;
}
.modalOpeninBottomtoTop-mobile.roundsModal .modal-dialog {
  max-width: 550px;
  height: auto;
}
.modalOpeninBottomtoTop-mobile.roundsModal .modal-dialog .modal-content {
  height: auto;
}
.modalOpeninBottomtoTop-mobile.roundsModal .modal-dialog .modal-content select:focus, .modalOpeninBottomtoTop-mobile.roundsModal .modal-dialog .modal-content input:focus {
  box-shadow: inherit;
  border-color: #e0e1e1;
}
.modalOpeninBottomtoTop-mobile.roundsModal .modal-dialog .modal-footer {
  gap: 10px;
}
.modalOpeninBottomtoTop-mobile.roundsModal .modal-dialog .modal-footer .btn {
  flex: 0 0 200px;
}
@media (max-width: 565px) {
  .modalOpeninBottomtoTop-mobile.roundsModal .modal-dialog .modal-footer .btn {
    flex: 0 0 165px;
  }
}
.modalOpeninBottomtoTop-mobile.roundsModal .modal-header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  height: 60px;
}
.modalOpeninBottomtoTop-mobile.roundsModal .modal-header h2 {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 25px;
  margin: 0;
  font-weight: 500;
}
.modalOpeninBottomtoTop-mobile.roundsModal .match-type-info .matchtype-item {
  margin-bottom: 50px;
}
.modalOpeninBottomtoTop-mobile.roundsModal .match-type-info .matchtype-item h3 {
  font-size: 18px;
  text-align: left;
  margin-bottom: 20px;
}
.modalOpeninBottomtoTop-mobile.roundsModal .match-type-info .matchtype-item .matchtype-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.modalOpeninBottomtoTop-mobile.roundsModal .match-type-info .matchtype-item .playingsquad-remainning-item {
  margin: 0;
}
.modalOpeninBottomtoTop-mobile.roundsModal .match-type-info .matchtype-item .playingsquad-remainning-item label {
  width: 75px;
  height: 75px;
  font-size: 13.5px;
  padding: 5px;
  line-height: 16px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  font-weight: 500;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
@media (min-width: 768px) {
  .modalOpeninBottomtoTop-mobile.roundsModal .match-type-info .matchtype-item .playingsquad-remainning-item label {
    width: 95px;
    height: 95px;
  }
}
.modalOpeninBottomtoTop-mobile.roundsModal .match-type-info .matchtype-item .playingsquad-remainning-item input[type=radio]:checked + label:after, .modalOpeninBottomtoTop-mobile.roundsModal .match-type-info .matchtype-item .playingsquad-remainning-item input[type=checkbox]:checked + label:after {
  right: 5px;
  top: 3px;
  bottom: inherit;
  width: 15px;
  height: 15px;
  background-size: 15px;
}

.caughtModal.modalOpeninBottomtoTop-mobile .modal-dialog, .caughtBowledModal.modalOpeninBottomtoTop-mobile .modal-dialog, .caughtBehindModal.modalOpeninBottomtoTop-mobile .modal-dialog, .stumpedModal.modalOpeninBottomtoTop-mobile .modal-dialog, .runOutModal.modalOpeninBottomtoTop-mobile .modal-dialog, .lbwModal.modalOpeninBottomtoTop-mobile .modal-dialog, .retireHurtModal.modalOpeninBottomtoTop-mobile .modal-dialog, .mankadedModal.modalOpeninBottomtoTop-mobile .modal-dialog, .hitWicketModal.modalOpeninBottomtoTop-mobile .modal-dialog, .retireOutModal.modalOpeninBottomtoTop-mobile .modal-dialog {
  height: 100vh;
}
.caughtModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content, .caughtBowledModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content, .caughtBehindModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content, .stumpedModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content, .runOutModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content, .lbwModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content, .retireHurtModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content, .mankadedModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content, .hitWicketModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content, .retireOutModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content {
  height: 100vh;
  border-radius: 0;
  border: 0;
}
.caughtModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer, .caughtBowledModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer, .caughtBehindModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer, .stumpedModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer, .runOutModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer, .lbwModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer, .retireHurtModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer, .mankadedModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer, .hitWicketModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer, .retireOutModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.caughtModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer .btn, .caughtBowledModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer .btn, .caughtBehindModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer .btn, .stumpedModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer .btn, .runOutModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer .btn, .lbwModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer .btn, .retireHurtModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer .btn, .mankadedModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer .btn, .hitWicketModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer .btn, .retireOutModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-footer .btn {
  max-width: 100%;
  width: 100%;
  flex: 0 0 100%;
}
.caughtModal.modalOpeninBottomtoTop-mobile .modal-header, .caughtBowledModal.modalOpeninBottomtoTop-mobile .modal-header, .caughtBehindModal.modalOpeninBottomtoTop-mobile .modal-header, .stumpedModal.modalOpeninBottomtoTop-mobile .modal-header, .runOutModal.modalOpeninBottomtoTop-mobile .modal-header, .lbwModal.modalOpeninBottomtoTop-mobile .modal-header, .retireHurtModal.modalOpeninBottomtoTop-mobile .modal-header, .mankadedModal.modalOpeninBottomtoTop-mobile .modal-header, .hitWicketModal.modalOpeninBottomtoTop-mobile .modal-header, .retireOutModal.modalOpeninBottomtoTop-mobile .modal-header {
  border-radius: 0;
  display: block;
  padding: 0;
}
.caughtModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .caughtBowledModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .caughtBehindModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .stumpedModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .runOutModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .lbwModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .retireHurtModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .mankadedModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .hitWicketModal.modalOpeninBottomtoTop-mobile .modal-header .top-head, .retireOutModal.modalOpeninBottomtoTop-mobile .modal-header .top-head {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  position: relative;
  padding: 10px 15px;
  height: 60px;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  background-color: #614092;
}
.caughtModal.modalOpeninBottomtoTop-mobile .modal-header h1, .caughtBowledModal.modalOpeninBottomtoTop-mobile .modal-header h1, .caughtBehindModal.modalOpeninBottomtoTop-mobile .modal-header h1, .stumpedModal.modalOpeninBottomtoTop-mobile .modal-header h1, .runOutModal.modalOpeninBottomtoTop-mobile .modal-header h1, .lbwModal.modalOpeninBottomtoTop-mobile .modal-header h1, .retireHurtModal.modalOpeninBottomtoTop-mobile .modal-header h1, .mankadedModal.modalOpeninBottomtoTop-mobile .modal-header h1, .hitWicketModal.modalOpeninBottomtoTop-mobile .modal-header h1, .retireOutModal.modalOpeninBottomtoTop-mobile .modal-header h1 {
  font-size: 22px;
  color: #fff;
  margin: 0;
}
.caughtModal.modalOpeninBottomtoTop-mobile .modal-header i, .caughtBowledModal.modalOpeninBottomtoTop-mobile .modal-header i, .caughtBehindModal.modalOpeninBottomtoTop-mobile .modal-header i, .stumpedModal.modalOpeninBottomtoTop-mobile .modal-header i, .runOutModal.modalOpeninBottomtoTop-mobile .modal-header i, .lbwModal.modalOpeninBottomtoTop-mobile .modal-header i, .retireHurtModal.modalOpeninBottomtoTop-mobile .modal-header i, .mankadedModal.modalOpeninBottomtoTop-mobile .modal-header i, .hitWicketModal.modalOpeninBottomtoTop-mobile .modal-header i, .retireOutModal.modalOpeninBottomtoTop-mobile .modal-header i {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.caughtModal.modalOpeninBottomtoTop-mobile .modal-header i img, .caughtBowledModal.modalOpeninBottomtoTop-mobile .modal-header i img, .caughtBehindModal.modalOpeninBottomtoTop-mobile .modal-header i img, .stumpedModal.modalOpeninBottomtoTop-mobile .modal-header i img, .runOutModal.modalOpeninBottomtoTop-mobile .modal-header i img, .lbwModal.modalOpeninBottomtoTop-mobile .modal-header i img, .retireHurtModal.modalOpeninBottomtoTop-mobile .modal-header i img, .mankadedModal.modalOpeninBottomtoTop-mobile .modal-header i img, .hitWicketModal.modalOpeninBottomtoTop-mobile .modal-header i img, .retireOutModal.modalOpeninBottomtoTop-mobile .modal-header i img {
  width: 20px;
  height: auto;
}
.caughtModal.modalOpeninBottomtoTop-mobile .subTitle, .caughtBowledModal.modalOpeninBottomtoTop-mobile .subTitle, .caughtBehindModal.modalOpeninBottomtoTop-mobile .subTitle, .stumpedModal.modalOpeninBottomtoTop-mobile .subTitle, .runOutModal.modalOpeninBottomtoTop-mobile .subTitle, .lbwModal.modalOpeninBottomtoTop-mobile .subTitle, .retireHurtModal.modalOpeninBottomtoTop-mobile .subTitle, .mankadedModal.modalOpeninBottomtoTop-mobile .subTitle, .hitWicketModal.modalOpeninBottomtoTop-mobile .subTitle, .retireOutModal.modalOpeninBottomtoTop-mobile .subTitle {
  text-align: left;
  font-size: 18px;
  margin-bottom: 15px;
}
.caughtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item, .caughtBowledModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item, .caughtBehindModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item, .stumpedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item, .runOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item, .lbwModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item, .retireHurtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item, .mankadedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item, .hitWicketModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item, .retireOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item {
  margin-bottom: 10px;
}
.caughtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item.striker-wrap, .caughtBowledModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item.striker-wrap, .caughtBehindModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item.striker-wrap, .stumpedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item.striker-wrap, .runOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item.striker-wrap, .lbwModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item.striker-wrap, .retireHurtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item.striker-wrap, .mankadedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item.striker-wrap, .hitWicketModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item.striker-wrap, .retireOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item.striker-wrap {
  margin-bottom: 40px;
}
.caughtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio], .caughtBowledModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio], .caughtBehindModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio], .stumpedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio], .runOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio], .lbwModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio], .retireHurtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio], .mankadedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio], .hitWicketModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio], .retireOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio] {
  display: none;
}
.caughtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label, .caughtBowledModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label, .caughtBehindModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label, .stumpedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label, .runOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label, .lbwModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label, .retireHurtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label, .mankadedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label, .hitWicketModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label, .retireOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label {
  width: 100%;
  height: 70px;
  border: 1px solid #e0e1e1;
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  font-size: 15px;
  background: #f1f1f1;
  color: var(--primary-color);
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 16px;
  padding: 0 10px;
}
.caughtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label img, .caughtBowledModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label img, .caughtBehindModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label img, .stumpedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label img, .runOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label img, .lbwModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label img, .retireHurtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label img, .mankadedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label img, .hitWicketModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label img, .retireOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 10px;
}
.caughtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label span:first-child, .caughtBowledModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label span:first-child, .caughtBehindModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label span:first-child, .stumpedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label span:first-child, .runOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label span:first-child, .lbwModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label span:first-child, .retireHurtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label span:first-child, .mankadedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label span:first-child, .hitWicketModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label span:first-child, .retireOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label span:first-child {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: left;
}
.caughtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .striker, .caughtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .fielder, .caughtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .keeper, .caughtBowledModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .striker, .caughtBowledModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .fielder, .caughtBowledModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .keeper, .caughtBehindModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .striker, .caughtBehindModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .fielder, .caughtBehindModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .keeper, .stumpedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .striker, .stumpedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .fielder, .stumpedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .keeper, .runOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .striker, .runOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .fielder, .runOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .keeper, .lbwModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .striker, .lbwModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .fielder, .lbwModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .keeper, .retireHurtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .striker, .retireHurtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .fielder, .retireHurtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .keeper, .mankadedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .striker, .mankadedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .fielder, .mankadedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .keeper, .hitWicketModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .striker, .hitWicketModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .fielder, .hitWicketModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .keeper, .retireOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .striker, .retireOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .fielder, .retireOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .keeper {
  height: 30px;
  white-space: nowrap;
  color: #000;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  border-radius: 5px;
  font-size: 13px;
  padding: 0 12px;
  font-weight: 500;
}
.caughtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .striker, .caughtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .fielder, .caughtBowledModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .striker, .caughtBowledModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .fielder, .caughtBehindModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .striker, .caughtBehindModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .fielder, .stumpedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .striker, .stumpedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .fielder, .runOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .striker, .runOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .fielder, .lbwModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .striker, .lbwModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .fielder, .retireHurtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .striker, .retireHurtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .fielder, .mankadedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .striker, .mankadedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .fielder, .hitWicketModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .striker, .hitWicketModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .fielder, .retireOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .striker, .retireOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .fielder {
  background-color: #FBC638;
}
.caughtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .keeper, .caughtBowledModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .keeper, .caughtBehindModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .keeper, .stumpedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .keeper, .runOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .keeper, .lbwModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .keeper, .retireHurtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .keeper, .mankadedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .keeper, .hitWicketModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .keeper, .retireOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item label .keeper {
  background-color: #FF9671;
}
.caughtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label, .caughtBowledModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label, .caughtBehindModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label, .stumpedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label, .runOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label, .lbwModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label, .retireHurtModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label, .mankadedModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label, .hitWicketModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label, .retireOutModal.modalOpeninBottomtoTop-mobile .playingsquad-remainning-item input[type=radio]:checked + label {
  background: #008B74;
  color: #fff;
  border-color: #008B74;
}

.deleiverytype-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.deleiverytype-wrap .deleiverytype-modal-item {
  flex: 0 0 17%;
  max-width: 17%;
}
.deleiverytype-wrap .deleiverytype-modal-item input[type=radio] {
  display: none;
}
.deleiverytype-wrap .deleiverytype-modal-item label {
  width: 100%;
  height: 30px;
  border: 1px solid #ccc;
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  font-size: 15px;
  background: #e0e1e1;
  color: #845EC2;
}
.deleiverytype-wrap .deleiverytype-modal-item input[type=radio]:checked + label {
  background: #845EC2;
  color: #fff;
  border-color: #845EC2;
}

.runsscored-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.runsscored-wrap .runsscored-modal-item {
  flex: 0 0 30px;
  max-width: 30px;
}
.runsscored-wrap .runsscored-modal-item input[type=radio] {
  display: none;
}
.runsscored-wrap .runsscored-modal-item label {
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  font-size: 15px;
  background: #e0e1e1;
  color: #845EC2;
}
.runsscored-wrap .runsscored-modal-item input[type=radio]:checked + label {
  background: #845EC2;
  color: #fff;
  border-color: #845EC2;
}

.note-wicketkeeper-change {
  text-align: left;
  font-size: 15px;
  color: #607D8B;
  margin: 15px 0 !important;
}

.custom-formcheckbox.form-check {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 10px;
}
.custom-formcheckbox.form-check .form-check-label {
  color: var(--gray-color);
}
.custom-formcheckbox.form-check .form-check-input {
  width: 22px;
  height: 22px;
  border-radius: 0px;
  position: relative;
  top: -1px;
}
.custom-formcheckbox.form-check .form-check-input:Checked {
  background-color: #26707B;
  border-color: #26707B;
}
.custom-formcheckbox.form-check .form-check-input:focus {
  box-shadow: none;
}

.startmatch-wrap {
  margin-top: 60px;
  position: relative;
  height: calc(100vh - 60px);
}
.startmatch-wrap .inner {
  width: calc(100% - 30px);
  height: calc(100vh - 90px);
  position: fixed;
  top: 60px;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  border-radius: 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.startmatch-wrap .inner:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(24, 28, 73, 0.8);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.startmatch-wrap .inner .bg-image {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  background-color: #181c49;
}
.startmatch-wrap .inner .bg-image img {
  width: 40%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 565px) {
  .startmatch-wrap .inner .bg-image img {
    width: 100%;
  }
}
.startmatch-wrap .info {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  flex-direction: column;
}
@media (max-width: 565px) {
  .startmatch-wrap .info {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.startmatch-wrap .info h6, .startmatch-wrap .info a {
  position: relative;
}
.startmatch-wrap .info h6 {
  font-size: 35px;
  color: #fff;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  text-align: center;
}
.startmatch-wrap .info p {
  color: #fff;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  line-height: 30px;
}
.startmatch-wrap .info .btn {
  width: 200px;
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
}
@media (max-width: 565px) {
  .startmatch-wrap .info .btn {
    font-size: 15px;
    line-height: 16px;
  }
}
.startmatch-wrap .info .btn-groups {
  gap: 20px;
}
.startmatch-wrap .info .btn-groups .btn {
  width: auto;
  padding: 0 20px;
}
@media (max-width: 565px) {
  .startmatch-wrap .info .btn-groups {
    gap: 8px;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(97, 64, 146, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(97, 64, 146, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(97, 64, 146, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(97, 64, 146, 0.4);
    box-shadow: 0 0 0 0 rgba(97, 64, 146, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 10px rgba(97, 64, 146, 0);
    box-shadow: 0 0 0 10px rgba(97, 64, 146, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(97, 64, 146, 0);
    box-shadow: 0 0 0 0 rgba(97, 64, 146, 0);
  }
}
.startMatchModal .modal-title {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 25px;
}
.startMatchModal .choose-team-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  padding: 50px 0;
  gap: 35px;
}
@media (max-width: 565px) {
  .startMatchModal .choose-team-wrap {
    gap: 20px;
    padding: 20px 0;
  }
}
.startMatchModal .choose-team-wrap .vs {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  background-color: #f1f1f1;
  color: #23004b;
  border: 1px solid #e0e1e1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 500;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.startMatchModal .choose-team-wrap .vs span {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  border-radius: 50%;
  background-color: #f1f1f1;
  color: #23004b;
}
.startMatchModal .choose-team-wrap .vs::after {
  content: "";
  width: 1px;
  height: 100px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: #e0e1e1;
  position: absolute;
  z-index: 0;
}
.startMatchModal .choose-team-wrap .chooseteam {
  flex: 0 0 150px;
  max-width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #fafafa;
  border: 1px solid #614092;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  flex-direction: column;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 20px;
  line-height: 27px;
  line-height: 24px;
}
@media (max-width: 565px) {
  .startMatchModal .choose-team-wrap .chooseteam {
    flex: 0 0 130px;
    max-width: 130px;
    height: 130px;
    font-size: 18px;
    line-height: 21px;
  }
}
.startMatchModal .choose-team-wrap .chooseteam:hover {
  background-color: #23004b;
  color: #fff;
  transition: all 0.5s ease-in-out;
}
.startMatchModal .choose-team-wrap .chooseteam label {
  display: block;
}
.startMatchModal.continueOfSecModal .modal-header {
  padding: 0;
}
.startMatchModal.continueOfSecModal .modal-body {
  padding: 0;
}
.startMatchModal.continueOfSecModal .modal-title {
  color: #fff;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 10px 0;
}
.startMatchModal.continueOfSecModal .choose-team-wrap {
  -webkit-align-items: start;
  -moz-align-items: start;
  -ms-align-items: start;
  align-items: start;
}
.startMatchModal.continueOfSecModal .choose-team-wrap .vs {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  top: 18px;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.6);
}
.startMatchModal.continueOfSecModal .choose-team-wrap .vs:after {
  display: none;
}
.startMatchModal.continueOfSecModal .choose-team-wrap .vs span {
  background-color: transparent;
}
.startMatchModal.continueOfSecModal .startmatch-title-wrap {
  background: linear-gradient(242.58deg, #8542D8 0.9%, #9D3ADF 21.58%, #8542D8 64.98%, #9D3ADF 101.25%);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  width: 100%;
}
@media (min-width: 992px) {
  .startMatchModal.continueOfSecModal .startmatch-title-wrap {
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
  }
}
.startMatchModal.continueOfSecModal .chooseteam_fig_caption {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
.startMatchModal.continueOfSecModal .chooseteam_fig_caption .chooseteam {
  width: 75px;
  height: 75px;
  flex: 0 0 75px;
  max-width: 75px;
  width: 75px;
  margin: 0;
}
.startMatchModal.continueOfSecModal .chooseteam_fig_caption .chooseteam img {
  width: 35px;
  height: auto;
}
.startMatchModal.continueOfSecModal .chooseteam_fig_caption figcaption {
  color: #fff;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  color: #fff;
}
.startMatchModal.continueOfSecModal .playingsquad-remainning-item {
  margin-bottom: 10px;
}
.startMatchModal.continueOfSecModal .playingsquad-remainning-item input[type=radio], .startMatchModal.continueOfSecModal .playingsquad-remainning-item input[type=checkbox] {
  display: none;
}
.startMatchModal.continueOfSecModal .playingsquad-remainning-item label {
  width: 100%;
  height: 45px;
  border: 1px solid #e0e1e1;
  cursor: pointer;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: start;
  -moz-justify-content: start;
  -ms-justify-content: start;
  justify-content: start;
  -ms-flex-pack: start;
  font-size: 15px;
  background: #f1f1f1;
  color: var(--primary-color);
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 18px;
  padding: 0 15px;
  position: relative;
}
.startMatchModal.continueOfSecModal .playingsquad-remainning-item label img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}
.startMatchModal.continueOfSecModal .playingsquad-remainning-item label .wicketkeeper {
  font-weight: 500;
  color: #FF6F91;
  margin-left: 10px;
}
.startMatchModal.continueOfSecModal .playingsquad-remainning-item label:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: transparent;
}
.startMatchModal.continueOfSecModal .playingsquad-remainning-item input[type=radio]:checked + label, .startMatchModal.continueOfSecModal .playingsquad-remainning-item input[type=checkbox]:checked + label {
  background: #008B74;
  color: #fff;
  border-color: #008B74;
}
.startMatchModal.continueOfSecModal .playingsquad-remainning-item input[type=radio]:checked + label .wicketkeeper, .startMatchModal.continueOfSecModal .playingsquad-remainning-item input[type=checkbox]:checked + label .wicketkeeper {
  color: #fff;
}
.startMatchModal.continueOfSecModal .playingsquad-remainning-item input[type=radio]:checked + label:after, .startMatchModal.continueOfSecModal .playingsquad-remainning-item input[type=checkbox]:checked + label:after {
  content: "";
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #fff;
  color: #008B74;
  background-image: url("../uploads/images/check-green.svg");
  background-size: 25px;
  background-repeat: no-repeat;
  background-position: center;
}
.startMatchModal.continueOfSecModal .match-type-info {
  padding: 15px;
}
.startMatchModal.continueOfSecModal .match-type-info .matchtype-item {
  margin-bottom: 20px;
}
.startMatchModal.continueOfSecModal .match-type-info .matchtype-item h3 {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 18px;
  margin: 0 0 12px 0;
  text-align: left;
}
.startMatchModal.continueOfSecModal .match-type-info .matchtype-item .matchtype-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}
.startMatchModal.continueOfSecModal .match-type-info .matchtype-item .matchtype-inner .playingsquad-remainning-item label {
  width: 75px;
  height: 75px;
  font-size: 13.5px;
  padding: 5px;
  line-height: 16px;
}
.startMatchModal.continueOfSecModal .match-type-info .matchtype-item .matchtype-inner .playingsquad-remainning-item input[type=radio]:checked + label:after, .startMatchModal.continueOfSecModal .match-type-info .matchtype-item .matchtype-inner .playingsquad-remainning-item input[type=checkbox]:checked + label:after {
  right: 5px;
  top: 3px;
  bottom: inherit;
  width: 15px;
  height: 15px;
  background-size: 15px;
}
.startMatchModal.continueOfSecModal .match-type-info .matchtype-item .overs-inner {
  width: 100%;
}
.startMatchModal.continueOfSecModal .match-type-info .matchtype-item .overs-inner input {
  height: 45px;
  border: 1px solid #e0e1e1;
  width: 100%;
  padding: 10px;
}
.startMatchModal.continueOfSecModal .match-type-info .matchtype-item .overs-inner input:focus {
  outline: 0;
  box-shadow: inherit;
}
.startMatchModal.continueOfSecModal .match-type-info .matchtype-item .ground-inner {
  width: 100%;
}
.startMatchModal.continueOfSecModal .match-type-info .matchtype-item .ground-inner select {
  border: 1px solid #e0e1e1;
  border-radius: 0;
  background-color: #fff;
  height: 45px;
  font-weight: 400;
  width: 100%;
  padding: 10px;
}
.startMatchModal.continueOfSecModal .match-type-info .matchtype-item .ground-inner select:focus {
  outline: 0;
  box-shadow: inherit;
  border-color: #e0e1e1;
}
.startMatchModal.continueOfSecModal .match-type-info .matchtype-item .datetime-inner * {
  border-color: #e0e1e1;
}
.startMatchModal.continueOfSecModal .match-type-info .matchtype-item .datetime-inner input {
  height: 45px;
  border: 0;
  width: 100%;
  padding: 10px;
  border-radius: 0;
}
.startMatchModal.continueOfSecModal .match-type-info .matchtype-item .datetime-inner input:focus {
  outline: 0;
  box-shadow: inherit;
}
.startMatchModal.continueOfSecModal .match-type-info .matchtype-item .datetime-inner .datetimepicker-toggle-button {
  width: 35px;
  height: 35px;
  background-image: url("../uploads/images/event.svg");
  background-size: 30px;
  background-position: center;
  background-repeat: no-repeat;
}
.startMatchModal.continueOfSecModal .match-type-info .matchtype-item .matchofficials-inner {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  gap: 15px;
}
.startMatchModal.continueOfSecModal .match-type-info .matchtype-item .matchofficials-inner .matchofficials-item figure {
  width: 75px;
  height: 75px;
  border: 1px solid #e0e1e1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  margin-bottom: 10px;
}
.startMatchModal.continueOfSecModal .match-type-info .matchtype-item .matchofficials-inner .matchofficials-item figure img {
  width: 40px;
  height: auto;
}
.startMatchModal.continueOfSecModal .match-type-info .matchtype-item .matchofficials-inner .matchofficials-item figcaption {
  color: #000;
  font-size: 15px;
}

.live-scores-wrap {
  margin-top: 60px;
  padding: 40px 0;
  background-color: #f1f1f1;
}

.livescore-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.livescore-box-item {
  border: 1px solid #e0e1e1;
  background-color: #fff;
  border-radius: 8px;
  position: relative;
  flex: 0 0 calc(50% - 10px);
  max-width: calc(50% - 10px);
}
@media (max-width: 1198.98px) {
  .livescore-box-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.livescore-box-item .top, .livescore-box-item .centre, .livescore-box-item .bottom {
  padding: 12px;
}
.livescore-box-item .bottom p {
  margin: 0;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 15px;
}
.livescore-box-item .centre {
  border-bottom: 1px solid #e0e1e1;
  padding-right: 25px;
}
.livescore-box-item .centre .team {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  position: relative;
}
.livescore-box-item .centre .team:first-child {
  margin-bottom: 5px;
}
.livescore-box-item .centre .team.indicater:after {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  position: absolute;
  right: -25px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.livescore-box-item .centre .team .right {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 5px;
}
.livescore-box-item .centre .team .right .overs {
  color: #9E9E9E;
}
.livescore-box-item .centre .team .left {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 10px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #000;
  font-size: 17px;
}
.livescore-box-item .centre .team .left i {
  width: 35px;
  height: 35px;
  border: 1px solid #f1f1f1;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.livescore-box-item .centre .team .left i img {
  width: 20px;
  height: auto;
}
.livescore-box-item .top {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 575.98px) {
  .livescore-box-item .top {
    flex-wrap: wrap;
  }
}
.livescore-box-item .top .live, .livescore-box-item .top .group, .livescore-box-item .top .ground {
  margin: 0;
  padding: 0;
}
@media (max-width: 575.98px) {
  .livescore-box-item .top .ground {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.livescore-box-item .top .live, .livescore-box-item .top .completed {
  border-radius: 4px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  height: 25px;
  padding: 0 10px;
  font-size: 13px;
}
.livescore-box-item .top .live {
  background-color: #4CAF50;
  color: #fff;
}
.livescore-box-item .top .completed {
  background-color: #9E9E9E;
  color: #fff;
}
.livescore-box-item .top .group {
  position: relative;
}
.livescore-box-item .top .group:after, .livescore-box-item .top .group:before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #000;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
.livescore-box-item .top .group:after {
  right: -10px;
}
@media (max-width: 575.98px) {
  .livescore-box-item .top .group:after {
    display: none;
  }
}
.livescore-box-item .top .group:before {
  left: -10px;
}

.bg-image.has-opacity {
  opacity: 0.1;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
  background-color: #FBEAFF;
}

.select2-container--default .select2-selection--multiple {
  border-color: #e0e1e1;
  font-size: 15px;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border-color: #e0e1e1;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #614092;
}

.select2-container .select2-search--inline .select2-search__field {
  margin: 0;
  padding: 0 5px;
}

.select2-selection__choice {
  background-color: var(--bs-gray-200);
  border: none !important;
  font-size: 12px;
  font-size: 0.85rem !important;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove {
  width: 0.75rem;
  height: 0.75rem;
  padding: 0.25em;
  margin-right: 0.25rem;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.select2-results__option[aria-selected] {
  background: white;
  cursor: pointer;
}

.select2-results__option[aria-selected]:hover {
  background: #008B74 !important;
  cursor: pointer;
  color: #fff !important;
}

.add-new-torunments-wrap {
  margin-top: 60px;
  padding: 40px 0 80px;
}
.add-new-torunments-wrap .congratulations-start-match {
  max-width: 450px;
  margin: 0 auto;
  padding-top: 30px;
}
.add-new-torunments-wrap .congratulations-start-match img {
  width: 85px;
  display: block;
  margin: 0 auto 20px;
}
.add-new-torunments-wrap .congratulations-start-match h5 {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 35px;
  font-weight: 600;
  text-align: center;
}
.add-new-torunments-wrap .congratulations-start-match p {
  text-align: center;
  font-size: 18px;
  text-align: center;
}
.add-new-torunments-wrap .congratulations-start-match .btn {
  width: 50%;
  margin: 0 auto;
}
.add-new-torunments-wrap .inner {
  max-width: 550px;
  margin: 0 auto;
}
.add-new-torunments-wrap .title {
  font-size: 30px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  margin-bottom: 30px;
  font-weight: 500;
}
.add-new-torunments-wrap .newtournament-item {
  width: 100%;
}
.add-new-torunments-wrap .newtournament-item label {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  color: var(--primary-color);
  font-size: 17px;
}
.add-new-torunments-wrap .newtournament-item select, .add-new-torunments-wrap .newtournament-item input {
  height: 45px;
  border: 1px solid #e0e1e1;
  padding: 0 15px;
  font-size: 15px;
}
.add-new-torunments-wrap .newtournament-item input:focus {
  outline: 0;
  box-shadow: inherit;
}
.add-new-torunments-wrap .newtournament-item input[type=checkbox] {
  height: 20px;
  width: 20px;
  padding: 0;
}
.add-new-torunments-wrap .newtournament-item.start-end-date-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 20px;
}
.add-new-torunments-wrap .newtournament-item.start-end-date-wrap .start-end-date-item {
  flex: 0 0 48%;
  max-width: 48%;
}
.add-new-torunments-wrap .datepicker-toggle-button {
  width: 35px;
  height: 35px;
  background-image: url("../uploads/images/event.svg");
  background-size: 30px;
  background-position: center;
  background-repeat: no-repeat;
}
.add-new-torunments-wrap .tournament_category {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px;
}
.add-new-torunments-wrap .tournament_category .customRadioSelect label {
  width: auto;
  height: 25px;
  font-size: 13.5px;
  padding: 5px 10px;
  line-height: 16px;
  text-align: center;
  border-radius: 15px;
}
.add-new-torunments-wrap .tournament_category .customRadioSelect input[type=radio]:checked + label:after, .add-new-torunments-wrap .tournament_category .customRadioSelect input[type=checkbox]:checked + label:after {
  display: none;
  right: 5px;
  top: 3px;
  bottom: inherit;
  width: 15px;
  height: 15px;
  background-size: 15px;
}
.add-new-torunments-wrap .tournament_category .customRadioSelect.ballTypeSelect label {
  width: 75px;
  height: 75px;
  border-radius: 50%;
}
.add-new-torunments-wrap .tournament_category .customRadioSelect.ballTypeSelect input[type=radio]:checked + label, .add-new-torunments-wrap .tournament_category .customRadioSelect.ballTypeSelect input[type=checkbox]:checked + label {
  background-color: #008B74;
}
.add-new-torunments-wrap .tournament_category .customRadioSelect.ballTypeSelect input[type=radio]:checked + label:after, .add-new-torunments-wrap .tournament_category .customRadioSelect.ballTypeSelect input[type=checkbox]:checked + label:after {
  display: none;
}

.addtouranment-btn-lists {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  gap: 10px;
}
.addtouranment-btn-lists .btn {
  flex: 0 0 170px;
  max-width: 170px;
  box-shadow: none;
  text-transform: capitalize;
}

.my-torunments-second-header {
  margin-top: 0;
  padding: 40px 0 80px;
}
.my-torunments-second-header.fixed-second-header {
  background: #fff;
  border-bottom: 1px solid #e0e1e1;
  height: 70px;
  padding: 0;
}
@media (min-width: 1200px) {
  .my-torunments-second-header.fixed-second-header {
    padding-left: 325px;
  }
}
@media (max-width: 565px) {
  .my-torunments-second-header.fixed-second-header {
    height: 55px;
  }
}
.my-torunments-second-header .title-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
}
.my-torunments-second-header .title-wrap h2 {
  font-size: 27px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  margin: 0;
  font-weight: 500;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
}
@media (max-width: 565px) {
  .my-torunments-second-header .title-wrap h2 {
    font-size: 17px;
  }
}
.my-torunments-second-header .title-wrap .btn {
  width: auto;
  padding: 0 20px;
  height: 40px;
  font-size: 15px;
  text-transform: none;
  margin: 0;
}

.my-torunments-wrap {
  margin-top: 130px;
  padding: 50px 0 120px;
  position: relative;
}
@media (max-width: 565px) {
  .my-torunments-wrap {
    padding: 20px 0 100px;
  }
}

.myTorunments-table {
  background-color: #fff;
}
.myTorunments-table .myTorunments-body:nth-child(odd) {
  background-color: #fafafa;
}
.myTorunments-table .myTorunments-head, .myTorunments-table .myTorunments-body {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.myTorunments-table .myTorunments-head .myTorunments-head-col, .myTorunments-table .myTorunments-head .myTorunments-body-col, .myTorunments-table .myTorunments-body .myTorunments-head-col, .myTorunments-table .myTorunments-body .myTorunments-body-col {
  flex: 0 0 15%;
  max-width: 15%;
  text-align: center;
}
.myTorunments-table .myTorunments-head .myTorunments-head-col.has-myTorunments-myTeam, .myTorunments-table .myTorunments-head .myTorunments-body-col.has-myTorunments-myTeam, .myTorunments-table .myTorunments-body .myTorunments-head-col.has-myTorunments-myTeam, .myTorunments-table .myTorunments-body .myTorunments-body-col.has-myTorunments-myTeam {
  flex: 0 0 30%;
  max-width: 30%;
}
.myTorunments-table .myTorunments-head .myTorunments-head-col.sno, .myTorunments-table .myTorunments-head .myTorunments-body-col.sno, .myTorunments-table .myTorunments-body .myTorunments-head-col.sno, .myTorunments-table .myTorunments-body .myTorunments-body-col.sno {
  flex: 0 0 70px;
  max-width: 70px;
}
.myTorunments-table .myTorunments-head .myTorunments-head-col.or_name, .myTorunments-table .myTorunments-head .myTorunments-head-col.or_email, .myTorunments-table .myTorunments-head .myTorunments-body-col.or_name, .myTorunments-table .myTorunments-head .myTorunments-body-col.or_email, .myTorunments-table .myTorunments-body .myTorunments-head-col.or_name, .myTorunments-table .myTorunments-body .myTorunments-head-col.or_email, .myTorunments-table .myTorunments-body .myTorunments-body-col.or_name, .myTorunments-table .myTorunments-body .myTorunments-body-col.or_email {
  flex: 0 0 30%;
  max-width: 30%;
}
.myTorunments-table .myTorunments-head .myTorunments-head-col.vn_name, .myTorunments-table .myTorunments-head .myTorunments-head-col.vn_location, .myTorunments-table .myTorunments-head .myTorunments-body-col.vn_name, .myTorunments-table .myTorunments-head .myTorunments-body-col.vn_location, .myTorunments-table .myTorunments-body .myTorunments-head-col.vn_name, .myTorunments-table .myTorunments-body .myTorunments-head-col.vn_location, .myTorunments-table .myTorunments-body .myTorunments-body-col.vn_name, .myTorunments-table .myTorunments-body .myTorunments-body-col.vn_location {
  flex: 2 0 25%;
  max-width: 40%;
}
.myTorunments-table .myTorunments-head .myTorunments-head-col.or_phone, .myTorunments-table .myTorunments-head .myTorunments-body-col.or_phone, .myTorunments-table .myTorunments-body .myTorunments-head-col.or_phone, .myTorunments-table .myTorunments-body .myTorunments-body-col.or_phone {
  flex: 0 0 calc(25% - 70px);
  max-width: calc(25% - 70px);
}
.myTorunments-table .myTorunments-head .myTorunments-head-col.has-myTorunments-rounds.actions, .myTorunments-table .myTorunments-head .myTorunments-body-col.has-myTorunments-rounds.actions, .myTorunments-table .myTorunments-body .myTorunments-head-col.has-myTorunments-rounds.actions, .myTorunments-table .myTorunments-body .myTorunments-body-col.has-myTorunments-rounds.actions {
  flex: 0 0 45%;
  max-width: 45%;
}
.myTorunments-table .myTorunments-head .myTorunments-head-col.has-myTorunments-rounds.sno, .myTorunments-table .myTorunments-head .myTorunments-body-col.has-myTorunments-rounds.sno, .myTorunments-table .myTorunments-body .myTorunments-head-col.has-myTorunments-rounds.sno, .myTorunments-table .myTorunments-body .myTorunments-body-col.has-myTorunments-rounds.sno {
  flex: 0 0 5%;
  max-width: 5%;
}
.myTorunments-table .myTorunments-head .myTorunments-head-col.name, .myTorunments-table .myTorunments-head .myTorunments-body-col.name, .myTorunments-table .myTorunments-body .myTorunments-head-col.name, .myTorunments-table .myTorunments-body .myTorunments-body-col.name {
  flex: 0 0 calc(30% - 70px);
  max-width: calc(30% - 70px);
  text-align: left;
}
.myTorunments-table .myTorunments-head .myTorunments-head-col.name.has-myTorunments-rounds, .myTorunments-table .myTorunments-head .myTorunments-body-col.name.has-myTorunments-rounds, .myTorunments-table .myTorunments-body .myTorunments-head-col.name.has-myTorunments-rounds, .myTorunments-table .myTorunments-body .myTorunments-body-col.name.has-myTorunments-rounds {
  flex: 0 0 50%;
  max-width: 50%;
}
.myTorunments-table .myTorunments-head .myTorunments-head-col.roundName, .myTorunments-table .myTorunments-head .myTorunments-head-col.teams, .myTorunments-table .myTorunments-head .myTorunments-body-col.roundName, .myTorunments-table .myTorunments-head .myTorunments-body-col.teams, .myTorunments-table .myTorunments-body .myTorunments-head-col.roundName, .myTorunments-table .myTorunments-body .myTorunments-head-col.teams, .myTorunments-table .myTorunments-body .myTorunments-body-col.roundName, .myTorunments-table .myTorunments-body .myTorunments-body-col.teams {
  flex: 0 0 28.3333%;
  max-width: 28.3333%;
}
.myTorunments-table .myTorunments-head .myTorunments-head-col.matchBetween, .myTorunments-table .myTorunments-head .myTorunments-body-col.matchBetween, .myTorunments-table .myTorunments-body .myTorunments-head-col.matchBetween, .myTorunments-table .myTorunments-body .myTorunments-body-col.matchBetween {
  flex: 0 0 28.3333%;
  max-width: 28.3333%;
}
.myTorunments-table .myTorunments-head .myTorunments-head-col.ground, .myTorunments-table .myTorunments-head .myTorunments-body-col.ground, .myTorunments-table .myTorunments-body .myTorunments-head-col.ground, .myTorunments-table .myTorunments-body .myTorunments-body-col.ground {
  flex: 0 0 38.3333%;
  max-width: 38.3333%;
}
.myTorunments-table .myTorunments-head .myTorunments-head-col.matchTime, .myTorunments-table .myTorunments-head .myTorunments-body-col.matchTime, .myTorunments-table .myTorunments-body .myTorunments-head-col.matchTime, .myTorunments-table .myTorunments-body .myTorunments-body-col.matchTime {
  flex: 0 0 calc(18.3333% - 70px);
  max-width: calc(18.3333% - 70px);
  white-space: nowrap;
}
.myTorunments-table .myTorunments-head .myTorunments-head-col.matchBetween, .myTorunments-table .myTorunments-head .myTorunments-body-col.matchBetween, .myTorunments-table .myTorunments-body .myTorunments-head-col.matchBetween, .myTorunments-table .myTorunments-body .myTorunments-body-col.matchBetween {
  text-align: left;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
}
.myTorunments-table .myTorunments-head .myTorunments-head-col.groupName, .myTorunments-table .myTorunments-head .myTorunments-body-col.groupName, .myTorunments-table .myTorunments-body .myTorunments-head-col.groupName, .myTorunments-table .myTorunments-body .myTorunments-body-col.groupName {
  flex: 0 0 calc(28.3333% - 70px);
  max-width: calc(28.3333% - 70px);
}
.myTorunments-table .myTorunments-head .myTorunments-head-col, .myTorunments-table .myTorunments-head .myTorunments-body-col, .myTorunments-table .myTorunments-body .myTorunments-head-col, .myTorunments-table .myTorunments-body .myTorunments-body-col {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  font-size: 16px;
  padding: 0 20px;
}
.myTorunments-table .myTorunments-head .myTorunments-head-col.name, .myTorunments-table .myTorunments-head .myTorunments-body-col.name, .myTorunments-table .myTorunments-body .myTorunments-head-col.name, .myTorunments-table .myTorunments-body .myTorunments-body-col.name {
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  justify-content: flex-start;
  -ms-flex-pack: flex-start;
}
.myTorunments-table .myTorunments-head .myTorunments-head-col, .myTorunments-table .myTorunments-body .myTorunments-head-col {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 500;
  background-color: #f1f1f1;
  color: #614092;
  height: 50px;
}
.myTorunments-table .myTorunments-head .myTorunments-body-col, .myTorunments-table .myTorunments-body .myTorunments-body-col {
  height: 60px;
  border-bottom: 1px solid #f1f1f1;
}
.myTorunments-table .myTorunments-head .myTorunments-body-col.has-myTorunments-myGroups, .myTorunments-table .myTorunments-body .myTorunments-body-col.has-myTorunments-myGroups {
  height: auto;
}
.myTorunments-table .myTorunments-head .myTorunments-body-col.name a, .myTorunments-table .myTorunments-body .myTorunments-body-col.name a {
  color: #008E9B;
  text-decoration: none;
}
.myTorunments-table .myTorunments-head .myTorunments-body-col.name a:hover, .myTorunments-table .myTorunments-body .myTorunments-body-col.name a:hover {
  text-decoration: underline;
  color: #7449D3;
}
.myTorunments-table .myTorunments-head .myTorunments-body-col.teams, .myTorunments-table .myTorunments-body .myTorunments-body-col.teams {
  flex-direction: column;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 5px;
  -webkit-align-items: start;
  -moz-align-items: start;
  -ms-align-items: start;
  align-items: start;
}
.myTorunments-table .myTorunments-head .myTorunments-body-col.teams a, .myTorunments-table .myTorunments-body .myTorunments-body-col.teams a {
  display: block;
  text-decoration: none;
  color: #0089BA;
}
.myTorunments-table .myTorunments-head .myTorunments-body-col.teams a:hover, .myTorunments-table .myTorunments-body .myTorunments-body-col.teams a:hover {
  text-decoration: underline;
  color: #7449D3;
}
.myTorunments-table .myTorunments-head .myTorunments-body-col.actions, .myTorunments-table .myTorunments-body .myTorunments-body-col.actions {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 5px;
}
.myTorunments-table .myTorunments-head .myTorunments-body-col.actions i, .myTorunments-table .myTorunments-body .myTorunments-body-col.actions i {
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  border: 1px solid #e0e1e1;
  cursor: pointer;
}
.myTorunments-table .myTorunments-head .myTorunments-body-col.actions i img, .myTorunments-table .myTorunments-body .myTorunments-body-col.actions i img {
  width: 20px;
  height: auto;
}
.myTorunments-table .myTorunments-head .myTorunments-body-col.actions i:hover, .myTorunments-table .myTorunments-body .myTorunments-body-col.actions i:hover {
  background-color: #614092;
  border-color: #614092;
}
.myTorunments-table .myTorunments-head .myTorunments-body-col.actions i:hover img, .myTorunments-table .myTorunments-body .myTorunments-body-col.actions i:hover img {
  filter: brightness(0) invert(1);
}
.myTorunments-table .myTorunments-head .myTorunments-body-col.actions .settings .dropdown .dropdown-toggle:after, .myTorunments-table .myTorunments-body .myTorunments-body-col.actions .settings .dropdown .dropdown-toggle:after {
  display: none;
}
.myTorunments-table .myTorunments-head .myTorunments-body-col.actions .settings .dropdown .dropdown-menu, .myTorunments-table .myTorunments-body .myTorunments-body-col.actions .settings .dropdown .dropdown-menu {
  transform: inherit !important;
  right: 0 !important;
  left: inherit !important;
  top: 37px !important;
  border: 1px solid #f1f1f1;
  padding: 0;
}
.myTorunments-table .myTorunments-head .myTorunments-body-col.actions .settings .dropdown .dropdown-menu li:not(:last-child), .myTorunments-table .myTorunments-body .myTorunments-body-col.actions .settings .dropdown .dropdown-menu li:not(:last-child) {
  border-bottom: 1px solid #f1f1f1;
}
.myTorunments-table .myTorunments-head .myTorunments-body-col.actions .settings .dropdown .dropdown-menu li a, .myTorunments-table .myTorunments-body .myTorunments-body-col.actions .settings .dropdown .dropdown-menu li a {
  font-size: 14px;
  padding: 10px;
}

.my-torunments-back {
  margin-right: 20px;
  text-decoration: none;
  background-image: url("../uploads/images/left-arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 30px;
  width: 30px;
  height: 30px;
  display: inline-block;
}
@media (max-width: 565px) {
  .my-torunments-back {
    margin-right: 5px;
    width: 25px;
    height: 25px;
    background-size: 25px;
  }
}

.pagination-wrap {
  position: fixed;
  width: 100%;
  height: 60px;
  background-color: #fff;
  border-top: 1px solid #e0e1e1;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  padding-left: 325px;
}
@media (max-width: 992px) {
    .pagination-wrap {
      padding-left: 0px;
    }
  }
.pagination {
  gap: 5px;
}
.pagination .page-item.previous .page-link {
  color: #757575;
}
.pagination .page-item .page-link {
  color: #008F7A;
}
.pagination .page-item .page-link:focus {
  box-shadow: none;
}
.pagination .page-item.active .page-link {
  box-shadow: inherit;
  background-color: #008F7A;
  border-color: #008F7A;
  color: #fff;
}

.groupSelectTeamModal.selectTeamModal.modalOpeninBottomtoTop-mobile .modal-dialog {
  height: auto;
}
.groupSelectTeamModal.selectTeamModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content {
  height: auto;
}
.groupSelectTeamModal.selectTeamModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content .modal-body h3 {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 19px;
  text-align: left;
  margin-bottom: 20px;
  color: #3F51B5;
  font-weight: 500;
}
.groupSelectTeamModal.selectTeamModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content .modal-body .playingsquad-remainning-item label i img {
  width: 50px;
  height: auto;
  display: inline-block;
  margin-right: 0;
  border-radius: 0;
}
.groupSelectTeamModal.selectTeamModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content .modal-footer {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 15px;
}
.groupSelectTeamModal.selectTeamModal.modalOpeninBottomtoTop-mobile .modal-dialog .modal-content .modal-footer .btn {
  height: 45px;
  font-size: 16px;
  width: 200px;
  flex: 0 0 200px;
  max-width: 150px;
  text-transform: capitalize;
  font-weight: 400;
}

.pitch-burners-banner {
  height: 550px;
  margin-top: 90px;
  position: relative;
  background-color: #181c49;
  overflow: hidden;
}
.pitch-burners-banner .container {
  position: relative;
  z-index: 2;
}
.pitch-burners-banner .pitch-burners-banner-figure {
  position: absolute;
  right: 0%;
  height: 550px;
  width: auto;
  transform: scale(1.5);
  object-position: 0 31px;
  opacity: 0.5;
}

.pitch-burners-badaminton-banner-figure{
  position: absolute;
  right: 0%;
  height: 550px;
  width: auto;
  opacity: 0.5;

  @media (max-width: 767.98px) {
    object-position: 80px;
    opacity: 0.1;
  }

}

.pitch-burners-banner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 325px;
  background-image: url("../uploads/images/tour-overlay.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
  width: 100%;
  z-index: 1;
  background-size: cover;
}
@media (max-width: 767.98px) {
  .pitch-burners-banner:before {
    display: none;
  }
}
.pitch-burners-banner:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 550px;
  background-image: url("../uploads/images/tour-background.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
  width: 100%;
  z-index: 1;
  background-size: cover;
}
@media (max-width: 767.98px) {
  .pitch-burners-banner:after {
    display: none;
  }
}

.pitch-burners-info .icon {
  margin-bottom: 15px;
  display: block;
}
@media (max-width: 768.98px) {
  .pitch-burners-info .icon {
    margin-bottom: 5px;
  }
}
.pitch-burners-info .icon img {
  width: 80px;
  height: auto;
}
@media (max-width: 768.98px) {
  .pitch-burners-info .icon img {
    width: 60px;
  }
}
.pitch-burners-info h4 {
  color: #fff;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 45px;
  font-weight: 500;
  font-style: italic;
  margin: 0 0 20px;
  background: linear-gradient(rgb(255, 255, 255) 19.27%, #607D8B 100%) text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768.98px) {
  .pitch-burners-info h4 {
    font-size: 35px;
  }
}
@media (max-width: 565.98px) {
  .pitch-burners-info h4 {
    font-size: 30px;
    margin-bottom: 5px;
  }
}
.pitch-burners-info ul {
  margin: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 25px;
  padding: 0;
}
@media (max-width: 768.98px) {
  .pitch-burners-info ul {
    display: block;
    margin-bottom: 15px;
  }
}
.pitch-burners-info ul li {
  color: #fff;
  list-style: none;
  position: relative;
}
@media (max-width: 768.98px) {
  .pitch-burners-info ul li {
    margin-bottom: 5px;
  }
}
.pitch-burners-info ul li:after {
  content: "";
  width: 5px;
  height: 5px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -15px;
}
@media (max-width: 768.98px) {
  .pitch-burners-info ul li:after {
    display: none;
  }
}
@media (max-width: 768.98px) {
  .pitch-burners-info ul li:last-child {
    margin-bottom: 0;
  }
}
.pitch-burners-info ul li:last-child:after {
  display: none;
}
.pitch-burners-info ul li .ttencricket {
  background-color: #d6a51c;
  color: #000;
  height: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  padding: 0 10px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 500;
}
@media (max-width: 768.98px) {
  .pitch-burners-info ul li .ttencricket {
    width: auto;
  }
}

.pitch-burners-home.main-wrapper-start {
  padding: 40px 0;
}
.pitch-burners-home.live-scores-wrap {
  margin: 0;
  padding: 0 0 40px;
}

.pitch-burners-home-filter {
  background-color: #fff;
  height: 60px;
  margin-bottom: 35px;
}
.pitch-burners-home-filter ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin: 0;
}
.pitch-burners-home-filter ul li a {
  text-decoration: none;
  color: var(--primary-color);
  font-size: 17px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  padding: 0 15px;
  position: relative;
}
.pitch-burners-home-filter ul li a.active {
  color: #F44336;
  font-weight: 500;
}
.pitch-burners-home-filter ul li a.active:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #F44336;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: -17px;
}

.addGroupModal.addTeamModal .modal-body .top {
  padding-bottom: 15px;
}
.addGroupModal.addTeamModal .modal-body .top h2 {
  margin: 0;
}
.addGroupModal.addTeamModal .modal-body .top .form-check {
  width: 100%;
}
.addGroupModal.addTeamModal .modal-body .top .field-item {
  gap: 10px;
  width: 100%;
}
.addGroupModal.addTeamModal .modal-body .top .field-item label {
  white-space: nowrap;
  margin: 0;
  display: none;
}

.pagination-wrap .submit-btn {
  width: 200px;
}
.pagination-wrap .goToRounds {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-right: 15px;
}
@media (max-width: 565px) {
    .pagination-wrap .goToRounds {
        background: #7449D3;
        height: 40px;
        padding: 0px 20px;
        text-decoration: none;
        color: #fff;
        /* border-top-left-radius: 50px; */
        /* border-top-right-radius: 50px; */
        top: 0;
      }
}
.pagination-wrap .goToGroups {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  margin-right: 15px;
}
@media (max-width: 565px) {
  .pagination-wrap .goToGroups {
    background: #7449D3;
    height: auto;
    padding: 15px;
    text-decoration: none;
    color: #fff;
    height: 40px;
    top: 0;
    position: relative;
    width: 150px;
    border-radius: 4px;
  }
}
.pagination-wrap .goToRounds {
  right: 0;
}
.pagination-wrap .goToGroups {
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}

.editTeamModal h3 {
  font-size: 18px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  margin-bottom: 25px;
}
.editTeamModal .modal-footer {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  gap: 10px;
}
.editTeamModal .modal-footer .btn {
  margin: 0;
  flex: 0 0 200px;
  max-width: 200px;
}
@media (max-width: 565px) {
  .editTeamModal .modal-footer .btn {
    flex: 0 0 165px;
    max-width: 165px;
  }
}

.dashboard-page.startmatch-wrap {
  padding-top: 25px;
}

.dashboard-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: start;
  -moz-align-items: start;
  -ms-align-items: start;
  align-items: start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  gap: 15px;
}
@media (max-width: 1198.98px) {
  .dashboard-wrap {
    flex-wrap: wrap;
  }
}
@media (max-width: 991.98px) {
  .dashboard-wrap {
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
  }
}
@media (max-width: 565px) {
  .dashboard-wrap {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
  }
}
.dashboard-wrap .dashboard-box {
  flex:1;
  height: 220px;
  background-color: #f9f9f9;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  border-radius: 8px;
  flex-direction: column;
  text-decoration: none;
  border: 1px solid #e0e1e1;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
@media (max-width: 1198.98px) {
  .dashboard-wrap .dashboard-box {
    flex: 0 0 calc(25% - 15px);
    max-width: calc(25% - 15px);
  }
}
@media (max-width: 991.98px) {
  .dashboard-wrap .dashboard-box {
    flex: 0 0 calc(33.3333% - 15px);
    max-width: calc(33.3333% - 15px);
  }
}
@media (max-width: 768.98px) {
  .dashboard-wrap .dashboard-box {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 565px) {
  .dashboard-wrap .dashboard-box {
    height: 170px;
  }
}
.dashboard-wrap .dashboard-box:hover {
  background-color: #fff;
  color: #008B74;
}
.dashboard-wrap .dashboard-box h3 {
  font-size: 35px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  color: #7449D3;
  color: #008B74;
  font-weight: 500;
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  bottom: 0;
  margin: auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.dashboard-wrap .dashboard-box h4 {
  font-size: 22px;
  color: var(--primary-color);
  font-family: "Saira", Arial, Helvetica, sans-serif;
  position: relative;
  top: 15px;
  margin: 0;
  text-align: center;
}
@media (max-width: 1450px) {
  .dashboard-wrap .dashboard-box h4 {
    font-size: 18px;
  }
}
@media (max-width: 565px) {
  .dashboard-wrap .dashboard-box h4 {
    font-size: 16px;
    text-align: center;
  }
}

.organizer-info input:focus {
  outline: 0;
  box-shadow: inherit;
  border-color: #181c49;
}
.organizer-info .form-group {
  margin-bottom: 10px;
  padding-left: 15px;
  padding-right: 15px;
}
.organizer-info .form-group label {
  margin-bottom: 5px;
  color: #000;
  font-family: "Saira", Arial, Helvetica, sans-serif;
}
.organizer-info .enter-members {
  max-width: 50%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.organizer-info .enter-members label {
  font-weight: 500;
  font-size: 19px;
}
.organizer-info .membersSection {
  padding: 15px 0;
  max-width: 50%;
  border: 1px solid #e0e1e1;
  background-color: #fff;
  border-radius: 10px;
  margin: 0 auto;
}
.organizer-info .membersSection h5 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  padding-left: 15px;
  padding-right: 15px;
}
.organizer-info .membersSection .remove-section {
  border-top: 1px solid #e0e1e1;
  display: flex;
  justify-content: end;
  padding: 15px 15px 0;
}
.organizer-info .membersSection .remove-section .btn {
  margin: 0;
  height: 35px;
  width: 140px;
  font-size: 13px;
}

.modalOpeninBottomtoTop-mobile.editOraganizerMemberModal h2 {
  font-size: 20px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
}
.modalOpeninBottomtoTop-mobile.editOraganizerMemberModal .modal-footer {
  gap: 10px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.modalOpeninBottomtoTop-mobile.editOraganizerMemberModal .modal-footer .btn {
  text-transform: capitalize;
  flex: 0 0 47%;
  max-width: 47%;
}

.ongoing-tournment {
  height: 170px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  border-radius: 20px;
  margin: 40px 0;
  padding: 0 30px;
  background: linear-gradient(242.58deg, #8542D8 0.9%, #9D3ADF 21.58%, #8542D8 64.98%, #8542D8 101.25%);
  box-shadow: rgba(0, 0, 0, 0.1) 0rem 0.125rem 0.5rem;
  text-decoration: none;
}
.ongoing-tournment .innerInfo h6, .ongoing-tournment .innerInfo p {
  color: #fff;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  margin: 0;
}
.ongoing-tournment .innerInfo h6 {
  font-size: 25px;
  font-weight: 200;
}
.ongoing-tournment .innerInfo p {
  font-size: 35px;
}

@media (max-width: 767.98px) {
  .navbar-brand img {
    width: 205px;
  }
}
@media (max-width: 1199.98px) {
  .navbar .container {
    padding-left: 0;
    padding-right: 0;
  }
  .navbar .container .navbar-brand {
    padding-left: 10px;
  }
  .navbar-toggler {
    padding: 0;
    border: 0;
    padding-right: 10px;
    position: absolute;
    right: 60px;
  }
  .navbar-toggler .navbar-toggler-icon {
    background-image: url("../uploads/images/menu.svg");
    background-repeat: no-repeat;
    background-position: center;
    width: 50px;
    height: 50px;
    background-size: 50px;
  }
  .navbar-toggler:focus {
    box-shadow: none;
    border: 0;
  }
  .navbar-nav {
    background: #dca929;
  }
  .navbar-nav .nav-item:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .navbar-nav .nav-item .nav-link {
    color: #000;
    font-size: 20px;
    padding: 10px 15px;
  }
  .navbar-nav .nav-item .nav-link:hover {
    background-color: #614092;
    color: #fff;
  }
}
@media (max-width: 1199.98px) {
  #navbarSupportedContent {
    position: absolute;
    width: 100%;
    right: 0px;
    left: 0px;
    margin: 0px auto;
    top: 60px;
  }
  #navbarSupportedContent ul {
    margin-right: 0 !important;
  }
  #user-dropdownMenu {
    position: absolute;
    right: 10px;
    top: -20px;
  }
}
@media (max-width: 992px) {
  .myTorunments-table {
    overflow-x: auto;
  }
  .myTorunments-table .myTorunments-head,
  .myTorunments-table .myTorunments-body {
    min-width: 1200px;
  }
  .myTorunments-table.myTorunmentsTeams-table .myTorunments-head,
  .myTorunments-table.myTorunmentsTeams-table .myTorunments-body {
    min-width: 600px;
  }
  .myTorunments-table.myTorunmentsRounds-table .myTorunments-head,
  .myTorunments-table.myTorunmentsRounds-table .myTorunments-body {
    min-width: 300px;
  }
  .myTorunments-table.myTorunmentsGroups-table .myTorunments-head,
  .myTorunments-table.myTorunmentsGroups-table .myTorunments-body {
    min-width: 900px;
  }
}
.aboutus-body header {
  background-color: #23004b;
}

.about-banner {
  background-image: url("../uploads/images/cricket_4.jpg");
  height: 600px;
  background-size: 67%;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #23004b;
  background-position: -300px -62px;
}
@media (max-width: 1400px) {
  .about-banner,.about-banner-badminton {
    background-position: -300px 30px;
  }
}


.about-banner-badminton{
  background-image: url("../uploads/images/badminton-solo-play.png");
  height: 600px;
  background-size: 67%;
  background-repeat: no-repeat;
  background-color: #23004b;
  background-position: 0 -32px;
  background-size: 600px;
}

.about-banner .about-info, .about-banner-badminton .about-info {
  font-size: 22px;
  height: calc(100% - 200px);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  border-radius: 15px;
  border-top-right-radius: 90px;
  border-bottom-left-radius: 90px;
  color: #008F7A;
  padding: 30px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  background-color: #fff;
  margin: 120px 0;
}
@media (max-width: 1199.98px) {
  .about-banner .about-info, .about-banner-badminton .about-info {
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .about-banner .about-info, .about-banner-badminton .about-info {
    font-size: 22px;
  }
}
@media (max-width: 600px) {
  .about-banner .about-info, .about-banner-badminton .about-info {
    font-size: 18px;
  }
}

.vision {
  background-color: #D4E5ED;
  padding: 50px 0;
}
.vision h3 {
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #008F7A;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
}
.vision p {
  font-size: 20px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  line-height: 35px;
}

.objective {
  background-color: #f6f6f6;
  padding: 50px 0;
}
.objective h3 {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #008F7A;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 25px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
}
.objective p {
  font-size: 20px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  line-height: 35px;
}

.teamsquad {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}
.teamsquad figure {
  flex: 0 0 25%;
  max-width: 25%;
  height: 400px;
  position: relative;
  margin: 0;
}
@media (max-width: 1199.98px) {
  .teamsquad figure {
    height: 325px;
  }
}
@media (max-width: 1199.98px) {
  .teamsquad figure {
    height: 200px;
    flex: 0 0 50%;
    max-width: 50%;
  }
}
.teamsquad figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.teamsquad figure figcaption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  opacity: 0;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  width: 100%;
  height: 100%;
}
.teamsquad figure figcaption h3 {
  font-size: 20px;
  margin: 0;
}
@media (min-width: 1400px) {
  .teamsquad figure figcaption h3 {
    font-size: 28px;
  }
}
.teamsquad figure:hover figcaption {
  opacity: 1;
}
.teamsquad figure:nth-child(3n-2) figcaption {
  background-color: #c3c3ff;
}
.teamsquad figure:nth-child(3n+2) figcaption {
  background-color: #ffc817;
}
.teamsquad figure:nth-child(3n) figcaption {
  background-color: #ff6620;
}

.our-sponsers {
  background-color: #d0c5b9;
  padding: 50px 0;
}
.our-sponsers h3 {
  color: #8542D8;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 30px;
}

.marquee-slider {
  width: 100%;
  margin: 20px auto;
}
.marquee-slider .slide {
  padding: 10px;
  box-sizing: border-box;
  margin: 0 20px;
  height: 150px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.marquee-slider .slide img {
  width: auto;
  height: 100px;
}

.small-header-top {
  height: 30px;
  background-color: #614092;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 99;
}
.small-header-top ~ .fixed-header {
  top: 30px;
}
.small-header-top ~ .fixed-header ~ .fixed-second-header {
  top: 90px;
}
.small-header-top ~ .fixed-header ~ .fixed-second-header.teamsaquad-second-header {
  top: 0;
}
.small-header-top p {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  margin-right: 40px;
  font-weight: 500;
}
@media (max-width: 1050px) {
  .small-header-top p {
    margin-right: 20px;
  }
}
@media (max-width: 565px) {
  .small-header-top p {
    margin: 0;
    text-align: center;
  }
}
.small-header-top ul {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 15px;
}
@media (max-width: 650px) {
  .small-header-top ul {
    display: none;
  }
}
.small-header-top ul li {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 10px;
}
.small-header-top ul li i {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.small-header-top ul li i img {
  width: 13px;
  height: auto;
}
.small-header-top ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  position: relative;
}
.small-header-top ul li a:hover {
  text-decoration: underline;
  color: #008B74;
}
.small-header-top ul li a:after {
  content: "";
  height: 15px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: -8px;
}
@media (max-width: 1050px) {
  /* .small-header-top ul li.insta {
    display: none;
  } */
}
@media (max-width: 768px) {
  /* .small-header-top ul li.mail {
    display: none;
  } */
}
@media (max-width: 1050px) {
  /* .small-header-top ul li.phone a:after {
    display: none;
  } */
}
.small-header-top ul li:last-child a:after {
  display: none;
}

.aboutus-body .small-header-top {
  background-color: #23004b;
}

footer {
  background-color: #D5CABD;
  height: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.6);
}
footer p {
  margin: 0;
  color: #614092;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 15px;
}
@media (max-width: 769px) {
    footer p {
      font-size:10px;
    }
  }
footer p a {
  text-decoration: none;
  color: #614092;
  font-weight: 500;
  text-decoration: underline;
}
footer p a:hover {
  color: #008F7A;
}

.contact-info {
  padding: 40px 0;
  margin-top: 90px;
}
.contact-info h3 {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 25px;
}
.contact-info form .btn {
  width: 200px;
  margin: 0 auto;
}
.contact-info .socilamedia-mail {
  margin: 0;
}
@media (min-width: 1200px) {
  .contact-info .socilamedia-mail {
    padding-left: 100px;
  }
}
.contact-info .socilamedia-mail li {
  list-style: none;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 10px;
}
.contact-info .socilamedia-mail li:not(:last-child) {
  margin-bottom: 20px;
}
.contact-info .socilamedia-mail li i {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  max-width: 50px;
  border-radius: 50%;
  background-color: #008B74;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.contact-info .socilamedia-mail li i img {
  width: 30px;
}
.contact-info .socilamedia-mail li a {
  font-size: 23px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  color: #000;
  text-decoration: none;
}
.contact-info .socilamedia-mail li a:hover {
  color: #008B74;
  text-decoration: underline;
}

.grid-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr; /* First image wider */
  grid-template-rows: repeat(2, 1fr); /* Two rows */
  gap: 10px;
  width: 100%;
  height: 360px;
}
.grid-container .grid-item {
  /* First image spans two rows */
  /* Show only first 5 images */
}
.grid-container .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.grid-container .grid-item:nth-child(1) {
  grid-column: 1/2; /* Takes up the first column */
  grid-row: 1/3; /* Spans both rows */
}
.grid-container .grid-item:nth-child(1) img {
  height: 360px;
}
.grid-container .grid-item:nth-child(2) img, .grid-container .grid-item:nth-child(3) img, .grid-container .grid-item:nth-child(4) img, .grid-container .grid-item:nth-child(5) img {
  height: 175px;
}
.grid-container .grid-item:nth-child(n+6) {
  display: none; /* Hide images starting from the 6th */
}
.grid-container .grid-item:nth-child(5) {
  position: relative;
}
.grid-container .grid-item:nth-child(5):after {
  content: "+5 more"; /* Customize the number */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: bold;
  border-radius: 10px;
}

.gallery-info {
  margin-top: 90px;
  padding: 60px 0 100px;
}
.gallery-info .gallery-big-title {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  margin-bottom: 30px;
  font-size: 25px;
}

.partners-info {
  margin-top: 90px;
}
.partners-info .partners-wrap {
  padding: 30px 0;
}
.partners-info .partners-wrap:nth-child(even) {
  background-color: #f9f9f9;
}
.partners-info .partners-wrap:last-child {
  padding-bottom: 60px;
}
.partners-info .partners-title {
  text-align: center;
  color: #008E9B;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  margin-bottom: 35px;
  font-size: 30px;
  font-weight: 500;
}
.partners-info .partners-item-wrap {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  gap: 30px;
}
@media (max-width: 767.98px) {
  .partners-info .partners-item-wrap {
    display: block;
  }
}
.partners-info .partners-item-wrap a {
  display: block;
}
@media (max-width: 767.98px) {
  .partners-info .partners-item-wrap a:not(:last-child) {
    margin-bottom: 20px;
  }
}
.partners-info .partners-item-wrap a img {
  height: auto;
  width: 280px;
}
@media (max-width: 767.98px) {
  .partners-info .partners-item-wrap a img {
    display: block;
    margin: 0 auto;
  }
}

.summary-tab-content {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 15px;
}
.summary-tab-content .player-of-the-match {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}
.summary-tab-content .player-of-the-match.playermatch figure, .summary-tab-content .player-of-the-match.bestbatter figure, .summary-tab-content .player-of-the-match.bestbowler figure {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.summary-tab-content .player-of-the-match.bestbatter figure, .summary-tab-content .player-of-the-match.bestbowler figure {
  background-image: url("../uploads/images/curling-ribbon-crossing-red-background.jpg");
}
.summary-tab-content .player-of-the-match.playermatch figure {
  background-image: url("../uploads/images/swirling-ribbon-green-background.jpg");
}
.summary-tab-content .player-of-the-match figure {
  width: 100%;
  height: 200px;
  background-color: #f1f1f1;
  border-radius: 10px;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.summary-tab-content .player-of-the-match figure img {
  height: 87%;
  width: 87%;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
}
.summary-tab-content .player-of-the-match figure h4 {
  position: absolute;
  bottom: 13px;
  left: 0;
  right: 0;
  margin: 0 auto;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  height: 30px;
  width: 87%;
  background-color: #008E9B;
  color: #fff;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.summary-tab-content .player-of-the-match figure .right {
  position: absolute;
  right: 5px;
  top: 7px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  line-height: 12px;
  text-align: center;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  flex-direction: column;
}
.summary-tab-content .player-of-the-match figure .right strong {
  color: #E91E63;
  font-size: 15px;
  display: block;
  margin-bottom: 4px;
}
.summary-tab-content .player-of-the-match figure .right label {
  font-size: 9px;
  font-weight: 500;
  line-height: 10px;
}
.summary-tab-content .player-of-the-match figure .right label span {
  display: block;
}
.summary-tab-content .player-of-the-match figcaption h6 {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: #008B74;
  margin-bottom: 0;
}
.summary-tab-content .player-of-the-match figcaption label {
  font-size: 13px;
  font-style: italic;
  margin-bottom: 10px;
}
.summary-tab-content .player-of-the-match figcaption p {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 15px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 10px;
}
.summary-tab-content .player-of-the-match figcaption p span strong {
  margin-right: 3px;
}

.select2-search--dropdown .select2-search__field:focus {
  outline: 0;
  border: 1px solid #ccc;
  box-shadow: inherit;
}

.stats-body .select2-dropdown {
  border: 1px solid #ccc;
}

.stats-wrapper {
  margin-top: 90px;
  padding: 0 0 50px;
}
.stats-wrapper .stats-banner {
  width: 100%;
  height: 365px;
  background-color: #200049;
  background-image: url("../uploads/images/swirling-ribbon-green-background.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}
@media (max-width: 767.98px) {
  .stats-wrapper .stats-banner {
    height: 485px;
  }
}
.stats-wrapper .stats-banner:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.stats-wrapper .stats-banner .container {
  position: relative;
  z-index: 1;
}
.stats-wrapper .stats-banner .banner-info {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 45px;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  width: 100%;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
@media (max-width: 992px) {
  .stats-wrapper .stats-banner .banner-info {
    gap: 10px;
  }
}
@media (max-width: 767.98px) {
  .stats-wrapper .stats-banner .banner-info {
    flex-direction: column;
  }
}
.stats-wrapper .stats-banner .banner-info figure {
  flex: 0 0 200px;
  max-width: 200px;
  height: 300px;
  border-radius: 10px;
  margin-bottom: 0;
  position: relative;
}
.stats-wrapper .stats-banner .banner-info figure .no-one {
  position: absolute;
  height: 350px;
  right: 88px;
  top: -23px;
  z-index: -1;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
@media (max-width: 767.98px) {
  .stats-wrapper .stats-banner .banner-info figure .no-one {
    height: 285px;
  }
}
.stats-wrapper .stats-banner .banner-info figure img.figs {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  object-position: top;
}
.stats-wrapper .stats-banner .banner-info figcaption div {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
@media (max-width: 767.98px) {
  .stats-wrapper .stats-banner .banner-info figcaption div {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
  }
}
.stats-wrapper .stats-banner .banner-info figcaption div h3 {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: 30px;
  margin: 0;
}
.stats-wrapper .stats-banner .banner-info figcaption div i {
  width: 55px;
  height: 55px;
  flex: 0 0 55px;
  max-width: 55px;
  border-radius: 50%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  background-color: #fff;
}
.stats-wrapper .stats-banner .banner-info figcaption div i img {
  width: 50px;
  height: auto;
}
.stats-wrapper .stats-banner .banner-info figcaption ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  border: 1px solid #fff;
}
.stats-wrapper .stats-banner .banner-info figcaption ul li {
  height: 75px;
  border-right: 1px solid #ccc;
  flex: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
}
.stats-wrapper .stats-banner .banner-info figcaption ul li:last-child {
  border-right: 0;
}
@media (max-width: 565px) {
  .stats-wrapper .stats-banner .banner-info figcaption ul li:nth-child(3) {
    display: none;
  }
}
.stats-wrapper .stats-banner .banner-info figcaption ul li * {
  color: #fff;
  font-family: "Saira", Arial, Helvetica, sans-serif;
}
.stats-wrapper .stats-banner .banner-info figcaption ul li p {
  font-size: 19px;
  margin: 0;
}
.stats-wrapper .stats-banner .banner-info figcaption ul li label {
  font-size: 10px;
}
.stats-wrapper .filter-row {
  padding: 60px 0 20px;
}
.stats-wrapper .table thead {
  border-color: #ccc;
}
.stats-wrapper .table th {
  background-color: #f9f9f9;
  color: #614092;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 16px;
  border-color: #ccc;
  font-weight: 600;
}
.stats-wrapper .table td {
  background-color: #fff;
  border-color: #f1f1f1;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 16px;
}
.stats-wrapper .table td .playerInfo {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  gap: 10px;
}
.stats-wrapper .table td .playerInfo img {
  flex: 0 0 50px;
  max-width: 50px;
  height: 50px;
}
.stats-wrapper .table td .playerInfo p {
  margin: 0;
}
.stats-wrapper .table td .playerInfo p strong {
  color: #008B74;
  font-weight: 500;
  display: block;
  text-align: left;
}
.stats-wrapper .table td .playerInfo p span {
  display: block;
  color: #757575;
  text-align: left;
}
.stats-wrapper .select2-selection__arrow {
  display: block;
  position: absolute;
  right: 6px;
  top: 14px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #999;
}
.stats-wrapper .select2-container .select2-selection--single .select2-selection__clear {
  position: absolute;
  right: 0;
  top: 5px;
}
.stats-wrapper .select2-container {
  border: 1px solid #f1f1f1;
  border-radius: 1px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  background-color: #f9f9f9;
}
.stats-wrapper #searchPlayer {
  border: 1px solid #f1f1f1;
  border-radius: 1px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  background-color: #f9f9f9;
}
.stats-wrapper .select2-container .select2-selection--single {
  height: 38px;
}
.stats-wrapper .select2-container--bootstrap5 .select2-selection--single .select2-selection__rendered {
  line-height: 38px;
}

.stats-box {
  border: 1px solid #e0e1e1;
  border-radius: 8px;
}
.stats-box .head-title {
  padding: 10px 15px;
  background-color: #f9f9f9;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.stats-box .head-title h6, .stats-box .head-title a {
  font-family: "Saira", Arial, Helvetica, sans-serif;
}
.stats-box .head-title h6 {
  font-size: 18px;
}
.stats-box .head-title a {
  color: var(--gray-color);
  font-size: 14px;
}
.stats-box .head-title a:hover {
  color: #008B74;
}
.stats-box .head, .stats-box .body {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
}
.stats-box .head .stats-box-item, .stats-box .body .stats-box-item {
  padding: 10px 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.stats-box .head .stats-box-item.col.no, .stats-box .body .stats-box-item.col.no {
  flex: 0 0 55px;
  max-width: 55px;
}
.stats-box .head {
  border-top: 1px solid #e0e1e1;
  border-bottom: 1px solid #e0e1e1;
}
.stats-box .head .stats-box-item {
  height: 35px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  font-size: 16px;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #614092;
}
.stats-box .head .stats-box-item:first-child {
  border-top-left-radius: 8px;
}
.stats-box .head .stats-box-item:last-child {
  border-top-right-radius: 8px;
}
.stats-box .head .stats-box-item.name {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
}
.stats-box .body:not(:last-child) {
  border-bottom: 1px solid rgba(224, 225, 225, 0.4);
}
.stats-box .body .stats-box-item.name {
  flex-direction: column;
  -webkit-align-items: start;
  -moz-align-items: start;
  -ms-align-items: start;
  align-items: start;
}
.stats-box .body .stats-box-item.name p, .stats-box .body .stats-box-item.name label {
  font-family: "Saira", Arial, Helvetica, sans-serif;
}
.stats-box .body .stats-box-item.name p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.stats-box .body .stats-box-item.name label {
  font-size: 13px;
  color: var(--gray-color);
}

.sidebar {
  width: 300px;
  height: calc(100vh - 95px);
  position: fixed;
  left: 10px;
  bottom: 15px;
  border-radius: 15px;
  background-color: #614092;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 20px 10px;
  z-index: 6;
}
@media (max-width: 1199.98px) {
  .sidebar {
    display: none;
  }
}
.sidebar ul {
  margin: 0;
}
.sidebar ul li {
  padding: 0;
}
.sidebar ul li a {
  padding: 12px 10px;
  color: #fff;
  display: block;
  font-family: "Saira", Arial, Helvetica, sans-serif;
  font-size: 16px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sidebar a.active {
  color: var(--yellow);
}
.sidebar ~ .next-to-sidebar {
  padding-left: 335px;
}
@media (max-width: 1199.98px) {
  .sidebar ~ .next-to-sidebar {
    padding-left: 12px;
  }
}

.summary-tab-content.dashboard-content {
  margin-bottom: 20px;
}
@media (max-width: 1400px) {
  .summary-tab-content.dashboard-content {
    flex-wrap: wrap;
    margin-bottom: 50px;
  }
}
.summary-tab-content.dashboard-content .player-of-the-match {
  flex: 0 0 calc(20% - 15px);
  max-width: calc(20% - 15px);
  box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
@media (max-width: 1400px) {
  .summary-tab-content.dashboard-content .player-of-the-match {
    flex: 0 0 calc(33.3333% - 15px);
    max-width: calc(33.3333% - 15px);
  }
}
@media (max-width: 1100px) {
  .summary-tab-content.dashboard-content .player-of-the-match {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }
}
@media (max-width: 768px) {
  .summary-tab-content.dashboard-content .player-of-the-match {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.summary-tab-content.dashboard-content .player-of-the-match figure {
  height: 250px;
  margin: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.summary-tab-content.dashboard-content .player-of-the-match figure img {
  width: 90%;
  height: 95%;
}
.summary-tab-content.dashboard-content .player-of-the-match figure h4 {
  width: 90%;
  bottom: 7px;
}
.summary-tab-content.dashboard-content .player-of-the-match figure .right {
  top: 3px;
  right: 3px;
}
.summary-tab-content.dashboard-content .player-of-the-match figcaption a {
  height: 45px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  border-top: 1px solid #e0e1e1;
  margin: 0;
  text-decoration: none;
}
.summary-tab-content.dashboard-content .player-of-the-match figcaption .left {
  padding: 15px 10px;
}
.summary-tab-content.dashboard-content .player-of-the-match figcaption h6 {
  font-size: 18px;
  margin-bottom: 0;
}
.summary-tab-content.dashboard-content .player-of-the-match figcaption h5 {
  font-size: 25px;
  margin: 5px 0;
}
.summary-tab-content.dashboard-content .player-of-the-match figcaption label {
  font-size: 18px;
  margin: 0;
  color: var(--gray-color);
  font-weight: 200;
  font-style: normal;
}

.winners-info {
  margin-top: 90px;
  padding: 50px 0;
}
.winners-info .winners-wrap {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid #e0e1e1;
}
.winners-info .winners-wrap .winners-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  border-bottom: 1px solid #e0e1e1;
}
@media (max-width: 768px) {
  .winners-info .winners-wrap .winners-item {
    display: block;
  }
}
.winners-info .winners-wrap .winners-item:last-child {
  border-bottom: 0;
}
.winners-info .winners-wrap .winners-item:nth-child(odd) {
  background-color: #f9f9f9;
}
.winners-info .winners-wrap .winners-item:nth-child(even) {
  background-color: #fff;
}
.winners-info .winners-wrap .winners-item .left, .winners-info .winners-wrap .winners-item .right {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 15px;
}
@media (max-width: 992px) {
  .winners-info .winners-wrap .winners-item .left {
    flex: 0 0 30%;
    max-width: 30%;
  }
}
@media (max-width: 768px) {
  .winners-info .winners-wrap .winners-item .left {
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 0;
  }
}
.winners-info .winners-wrap .winners-item .left label {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  margin-bottom: 0;
  font-weight: 500;
  color: #614092;
  font-size: 17px;
}
@media (max-width: 992px) {
  .winners-info .winners-wrap .winners-item .right {
    flex: 0 0 70%;
    max-width: 70%;
  }
}
@media (max-width: 768px) {
  .winners-info .winners-wrap .winners-item .right {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
.winners-info .winners-wrap .winners-item .right p {
  font-size: 14px;
  margin-bottom: 0;
}
.winners-info .winners-wrap .winners-item .right .firstTitle, .winners-info .winners-wrap .winners-item .right .secondTitle {
  font-family: "Saira", Arial, Helvetica, sans-serif;
  margin-bottom: 0;
}
.winners-info .winners-wrap .winners-item .right .firstTitle {
  font-size: 16px;
  color: #009688;
}
.winners-info .winners-wrap .winners-item .right .secondTitle {
  font-size: 16px;
  margin: 7px 0;
}

@media (min-width: 1200px) {
  #navbarSupportedContent.adminSideNavbar {
    display: none !important;
  }
}

.alert-message {
  position: fixed;
  top: 10px;
  right: 10px;
  background-color: #4caf50;
  color: white;
  padding: 15px;
  border-radius: 4px;
  z-index: 9999;
  display: none; /* Initially hidden */
}

.btn-reset{
    margin-bottom: 0px;
}
.reset{
      height: 50px;
      border-radius: 15%;
      padding: 5px;
      display: flex;
      align-items: center;
  }
  .reset a {
    color:white;
  text-decoration:none;
      font-family: "Saira", Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-size: 20px;
  }
  .no-team{
    font-size: 28px;
    color: #614092;
    text-align: center;
    padding: 20px 20px;
    border-radius: 10px;
    margin-top: 15px;
    margin: auto;
    top: 20%;
    font-family: 'Saira';
    font-weight: 500;
  }
.get-direction{
      width: 150px;
    display: block;height: 40px;
    display: flex;
    align-items: center; justify-content: center;
    border-radius: 25px;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(242.58deg, #9D3ADF 0.9%, #8542D8 21.58%, #4857C6 64.98%, #106AB6 101.25%);
    margin-top: 20px;
}
.get-direction:hover{
 color: var(--yellow);
}
/*# sourceMappingURL=style.css.map */
