@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Rammetto+One&display=swap");

:root {
  /*** theme colors ***/
  --theme-color: #0097d0;
  --theme-color-2: #006d95;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  font-family: "Inter";
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat";
}

a:hover {
  color: #000;
}
a {
  color: #000;
  text-decoration: none;
}

.theme-btn {
  display: inline-block;
  padding: 15px 22px;
  background: linear-gradient(180deg, var(--theme-color), transparent)
    var(--theme-color-2);
  color: #fff;
  transition: background-color 1s;
  border-radius: 5px;
  font-family: "Montserrat";
  font-size: 16px;
  box-shadow: 0 0 0 0 white;
  transition: 0.2s all;
}

.theme-btn:hover {
  background: linear-gradient(180deg, var(--theme-color-2), transparent)
    var(--theme-color);
  color: #fff;
  transform: translateY(-4px) translateX(-2px);
  box-shadow: 2px 5px 0 0 white;
}

.theme-btn-2 {
  display: inline-block;
  padding: 15px 22px;
  background: #fff;
  color: #000;
  border-radius: 5px;
  font-family: "Montserrat";
  font-size: 16px;
  box-shadow: 0 0 0 0 black;
  transition: 0.2s all;
  border: 1px solid transparent;
  text-transform: uppercase;
}

.theme-btn-2:hover {
  border: 1px solid var(--theme-color);
  background: transparent;
  color: #fff;
  transform: translateY(-4px) translateX(-2px);
  box-shadow: 2px 5px 0 0 black;
}

.main-bg-wrapper {
  background-image: url(../images/dash-bg.png);
  background-size: cover;
  padding-top: 180px;
  padding-bottom: 52px;
}

.main-bg-wrapper-2 {
  /*background-image: url(../images/dash-bg.png) !important;*/
  background-image: url(../images/banner.png) !important;
  /*height:100% !important;*/
  padding-bottom: 100px !important;
  background-size: cover;
  /*z-index: -2;*/
  /*position: sticky;*/
  background-position: inherit;
}

.main-bg-wrapper-3 {
  background-image: url(../images/main-bg.png) !important;
  padding-top: 260px;
}

.main-bg-wrapper-dash {
  padding-top: 0;
}

.arc {
  position: relative;
  z-index: 1;
}

.arc::before {
  content: "";
  background-image: url(../images/arc.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  z-index: -1;
}

.arc::after {
  content: "";
  background-color: #00aeef40;
  background-size: 10% 30%;
  width: 10%;
  height: 30%;
  position: absolute;
  right: -110px;
  top: 40%;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  z-index: -1;
}

header {
  padding: 40px 0;
  position: absolute;
  width: 100%;
  top: 0;
}

.header-btn a {
  color: #fff;
}

.main-form {
  background-color: #00618c40;
  border: 2px solid;
  border-image: linear-gradient(
      to right,
      var(--theme-color),
      var(--theme-color-2)
    )
    1;
  padding: 60px 30px 50px 50px !important;
}

.main-form form label {
  width: 100%;
  margin-bottom: 20px;
  font-size: 25px;
  color: #fff;
  font-weight: bold;
}

.main-form form input,
.main-form form select,
.main-form form textarea {
  width: 100%;
  background-color: #ccd9df;
  border: 0;
  margin-bottom: 20px;
  padding: 14px 20px;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
}

.main-form form input::placeholder,
.main-form form textarea::placeholder {
  color: #001725;
  font-size: 16px;
}

.inp-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 20px;
}

.main-form form .theme-btn {
  border: 0;
}

.main-form form button {
  padding: 14px 40px;
}

.main-left h4 {
  font-size: 45px;
  color: #fff;
  padding-left: 90px;
  font-weight: 400;
  padding-bottom: 20px;
  font-family: "Inter";
}

.main-left h1 {
  font-size: 141px;
  color: #fff;
  line-height: 32px;
  margin-bottom: 80px;
  font-weight: 600;
}

.main-left p {
  color: #fff;
  font-size: 16px;
  width: 83%;
  margin-bottom: 0;
}

.main-left-inner p {
  width: 100%;
}

.inper {
  position: relative;
  width: 100%;
}

.inper:before {
  content: "\f054";
  font-family: "Fontawesome";
  position: absolute;
  right: 7px;
  top: 12px;
  background-color: #f6dd00;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.inper-2 {
  position: relative;
  width: 100%;
}

.inper-2:before {
  content: "\21";
  font-family: "Fontawesome";
  position: absolute;
  right: 7px;
  top: 12px;
  background-color: #f6dd00;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.email-wrap .email-shower {
  display: flex;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
  max-height: 100px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #1a88b1 transparent;
}

.email-shower::-webkit-scrollbar {
  width: 2px; /* Thodi si kam width */
}

.email-shower::-webkit-scrollbar-track {
  background: transparent;
}

.email-shower::-webkit-scrollbar-thumb {
  background-color: #1a88b1;
  border-radius: 12px 12px; /* Upar aur neeche rounded */
  border: 1px solid transparent;
  background-clip: content-box;
}

.email-shower::-webkit-scrollbar-thumb:hover {
  background-color: #157191;
}

.email-shower .email-item {
  color: #fff;
}

.join-wrap form {
  position: relative;
  width: 100%;
}

.join-wrap input {
  width: 100%;
  background-color: #ccd9df;
  border: 0;
  margin-bottom: 40px;
  padding: 20px 40px;
  border-radius: 5px;
  font-size: 16px;
  outline: none;
}

.join-wrap form button {
  position: absolute;
  border: 0;
  right: 10px;
  padding: 15px 50px;
  top: 5px;
}

.join-wrap form::before {
  content: "\f002";
  font-family: "Fontawesome";
  position: absolute;
  left: 7px;
  top: 19px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.join-wrap form button:hover {
  transform: unset;
}

.join-boxes .row {
  gap: 20px 0;
}

.join-box {
  background: linear-gradient(
    0deg,
    var(--theme-color) 0%,
    var(--theme-color-2) 100%
  );
  padding: 40px 20px 20px 20px;
  border-radius: 5px;
  border: 1px solid #fff;
}

.join-boxes .row {
  gap: 20px 0;
}

.join-box h6 {
  font-size: 18px;
  color: #fff;
  font-weight: 700;
}

.join-box p {
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
}

.join-box .theme-btn-2 {
  padding: 8px 20px;
  font-size: 14px;
}

/* Dashboard Start */

.dash-wrapper {
  width: 100%;
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

#dash-sidebar {
  min-width: 270px;
  max-width: 270px;
  background: #006d9559;
  color: #fff;
  position: fixed;
  height: 100rem;
  overflow: hidden;
}
#dash-sidebar.active {
  min-width: 80px;
  max-width: 80px;
  text-align: center;
}
#dash-sidebar.active ul.components li {
  font-size: 14px;
}
#dash-sidebar.active ul.components li a {
  padding: 20px 0;
  justify-content: center;
  margin-right: 0;
}
#dash-sidebar.active ul.components li a img {
  margin-right: 0;
}
#dash-sidebar.active .logo {
  padding: 10px 0;
}
#dash-sidebar .logo {
  display: block;
  color: #fff;
  font-weight: 900;
  padding: 10px 30px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#dash-sidebar ul.components {
  padding: 30px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

#dash-sidebar.active ul.components {
  padding: 0 !important;
  padding-top: 30px !important;
}

#dash-sidebar ul li {
  font-size: 16px;
}
#dash-sidebar ul li > ul {
  margin-left: 10px;
}
#dash-sidebar ul li > ul li {
  font-size: 14px;
}
#dash-sidebar ul li a {
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: start;
}
#dash-sidebar ul li a p {
  color: white;
  font-family: "Montserrat";
  font-size: 13px;
  margin-bottom: 0;
}

#dash-sidebar ul li a:hover p {
  color: #fff;
}

#dash-sidebar ul li a img {
  margin-right: 15px;
}

#dash-sidebar.active ul li a p {
  display: none;
}

#dash-sidebar ul li.active > a {
  background: transparent;
  color: #fff;
}

#dash-content {
  width: 100%;
  padding: 0;
  min-height: 100vh;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

#dash-content {
  transition: margin-left 0.3s ease;
  margin-left: 269px;
}

#dash-sidebar.active + #dash-content {
  margin-left: 79px !important;
}

.dash-toggle button {
  background: linear-gradient(
    180deg,
    var(--theme-color) 0%,
    var(--theme-color-2) 100%
  );
  outline: none;
  box-shadow: none;
  border: 0;
  padding: 10px 13px;
  font-size: 21px;
}

.dash-logo {
  height: 10%;
  background: linear-gradient(
    180deg,
    var(--theme-color-2) 51%,
    var(--theme-color) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
}

nav#dash-sidebar .dash-logo img {
  width: 100%;
}

#dash-sidebar.active .dash-logo img {
  width: 206px !important;
  margin-left: 34%;
}

.dash-content {
  position: relative;
}

.dash-content-head {
  display: flex;
  justify-content: space-between;
  padding: 35px 20px 25px;
}

.dash-content-head h2 {
  font-family: "Montserrat";
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  position: relative;
  margin-bottom: 0;
}

.dash-content-head h2::before {
  content: "";
  width: 3px;
  height: 60px;
  background-color: #fff;
  position: absolute;
  left: -24px;
  top: -12px;
}

.dash-head-first {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0 50px;
}

.join-box-2 {
  width: 60%;
  margin: 0 auto;
  background: #00618c !important;
  padding-bottom: 40px !important;
}

.main-form form textarea {
  height: 180px;
}

.blog-upload {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 0 20px;
  background-color: #ccd9df;
  border: 0;
  padding: 14px 20px;
  border-radius: 5px;
  font-size: 16px !important;
  outline: none;
  color: #001725 !important;
  font-weight: 500 !important;
  font-family: "Montserrat";
  cursor: pointer;
}

.blog-upload img {
  cursor: pointer;
}

input#blog_image {
  display: none;
}

.small-select {
  position: relative;
}

.small-select select {
  width: 40% !important;
  display: block;
}

.small-select .plus-btn {
  padding: 7px !important;
  border-radius: 50%;
  background: none;
  border: 2px solid #fff;
  cursor: pointer;
  position: absolute;
  top: 10px;
  left: 42%;
}

.small-select .plus-btn img {
  width: 100%;
  height: 10px;
  object-fit: cover;
}

.three-inp {
  display: flex;
  align-items: center;
  gap: 0 10px;
  margin-top: 20px;
}

.inp-inner {
  width: 100%;
}

.inp-inner label {
  margin-bottom: 5px !important;
  font-size: 17px !important;
}

.main-page-wrapper {
  margin-top: 18px;
}

.main-page-wrapper h1 {
  font-family: "Inter";
  font-size: 45px;
  font-weight: 800;
  color: white;
  margin: 0;
}

.main-page-wrapper h6 {
  color: white;
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  font-family: "Rammetto One", serif;
  text-transform: capitalize;
  position: relative;
  z-index: 0;
  margin-top: 30px;
}

.main-page-wrapper h6::before {
  content: "";
  background: #0395cc;
  position: absolute;
  top: -13px;
  left: -70px;
  width: 700px;
  height: 47px;
  z-index: -1;
  filter: blur(8px);
}

.main-page-wrapper p {
  color: white;
  padding: 20px 0 0;
  text-transform: capitalize;
  font-weight: 100;
  font-size: 20px;
  font-family: "Inter";
  width: 76%;
  margin-bottom: 20px;
}

.main-page-wrapper h5 {
  color: white;
  font-weight: 700;
  font-size: 18px;
  font-family: "Inter";
  margin: 0 0 20px;
}

.price-btns {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 0 20px;
}

.price-btns p {
  margin: 0;
  color: white;
  font-size: 17px;
  font-weight: 200;
}

.price-btns p span {
  color: #00aeef;
  font-size: 25px;
  font-weight: 600;
}

.bottom-bar {
  background: linear-gradient(0deg, #00aeefe0, #0064899e);
  padding: 10px 0 10px;
}

.bottom-bar p {
  margin: 0;
  font-size: 15px;
  text-align: center;
  color: white;
}

.main-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-header .theme-btn-2 {
  color: #fff;
  background-color: transparent;
  padding: 11px 30px;
  text-transform: capitalize;
  border: 1px solid #fff;
}

.main-header .theme-btn-2:hover {
  box-shadow: 2px 5px 0 0 var(--theme-color-2);
}

.main-header .theme-btn {
  padding: 13px 30px;
}

.player-stats-leftbar {
  padding: 40px 23px;
  background: #00142090;
  display: flex;
  justify-content: space-between;
  border: 1px solid #fff;
  border-radius: 6px;
  height: auto;
}

.nbl {
  display: flex;
  width: 85%;
  align-items: end;
  gap: 0 13px;
  margin-bottom: 77px;
  transition: 0.2s all;
}

.nbl:hover {
  filter: drop-shadow(2px 4px 10px var(--theme-color-2));
}

.nbl a {
  display: contents;
}

.nbl-wrap {
  width: 45%;
  margin: 40px 0 0;
  height: auto;
}

.baseball {
  width: 45%;
  height: auto;
}

.ball {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  width: 90%;
  transition: 0.2s all;
}

.ball:hover {
  filter: drop-shadow(2px 4px 10px var(--theme-color-2));
}

.ball h4 {
  padding-top: 20px;
  color: #fff;
  font-family: "Inter";
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 0;
  font-style: italic;
}

.base-txt {
  position: absolute;
  right: 0;
  top: -17px;
}

.base-txt span {
  color: #fff;
  font-size: 11px;
  font-family: "Montserrat";
  padding: 6px 13px;
  border-radius: 5px;
  background: linear-gradient(
    180deg,
    rgba(0, 166, 228, 1) 0%,
    rgba(0, 109, 149, 1) 100%
  );
}

.nbl h6 {
  color: #fff;
}

.nbl img {
}

.ball img {
  width: 45%;
}

.stats-line img {
  width: 100%;
  height: 100%;
}

.ball:last-child {
  margin-bottom: 0;
}

.nbl:last-child {
  margin-bottom: 0;
}

.player-stats-banner {
  background-image: url(../images/player-stats-banner.png);
  height: 230px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  padding-left: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
}

section.player-stats-main {
  padding: 0 50px;
}

.player-stats-banner h2 {
  font-family: Inter;
  color: #fff;
  text-transform: uppercase;
  font-style: italic;
  font-weight: bold;
  margin-bottom: 20px;
}

.player-stats-banner p {
  font-weight: 200;
  color: #fff;
  font-style: italic;
}

.player-stats {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  gap: 40px;
}

.stats-img {
  background-color: #fff;
  border-radius: 40px;
  overflow: hidden;
  width: 200px;
  height: 230px;
  position: relative;
}

.stats-img img {
  width: 140%;
  height: 100%;
  object-fit: contain;
  object-position: -33px 100%;
  position: relative;
}

.player-stats-wrap {
  margin-top: 50px;
}

.stats-points {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.stats-points img {
  width: 25%;
  margin-bottom: 15px;
}

.stats-points h6 {
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 0px;
}

.stats-points h3 {
  font-family: "Bebas Neue", sans-serif;
  margin-bottom: 0;
  font-size: 60px;
  color: #fff;
  font-stretch: condensed;
  font-weight: 600;
  white-space: nowrap;
}

.stats-points h3 span {
  font-size: 19px;
  font-family: Montserrat;
  font-weight: 500;
}

.stats-table {
  position: relative;
  padding: 20px 60px;
  background: #0a0e13; /* Andar ka background */
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 59%;
}

.stats-table::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, #00c6ff90, #006d95); /* Gradient Border */
  z-index: 0;
  border-radius: 12px;
}

.stats-table::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0a0e13; /* Andar ka background */
  z-index: 0;
  border-radius: 10px;
}

.stats-nummber {
  display: flex;
  position: relative;
  z-index: 1;
  flex-direction: column;
  gap: 80px;
  align-items: center;
  width: 50px;
}

.stats-nummber h6 {
  color: #fff;
  margin-bottom: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 28px;
  font-stretch: condensed;
  font-weight: 600;
}

.stats-nummber h5 {
  color: #fff;
  margin-bottom: 0;
  font-size: 40px;
  font-family: "Bebas Neue", sans-serif;
  font-stretch: condensed;
  font-weight: 600;
  position: relative;
  transition: 0.2s all;
}

.stats-table:hover .stats-nummber h5 {
  filter: drop-shadow(2px 4px 6px var(--theme-color-2));
}

.stats-nummber h5::before {
  content: "";
  position: absolute;
  right: -38.5px;
  border-left: 1px solid #fff;
  width: 1px;
  height: 100%;
}

.stats-nummber:last-child h5::before {
  content: unset;
}

.stats-nummber:first-child h6 {
  position: relative;
}

.stats-nummber:first-child h6::before {
  content: "";
  background-color: var(--theme-color);
  width: 90px;
  height: 81px;
  position: absolute;
  bottom: -10px;
  padding: 20px 30px;
  z-index: -1;
  left: -31px;
  clip-path: polygon(45% 0%, 100% 0%, 55% 100%, 0% 100%);
}

footer p {
  margin-bottom: 0;
  font-family: "Inter";
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  text-align: center;
}

footer {
  background-color: #0092c8;
  padding: 20px 0;
}

.stats-img::before {
  content: "";
  background-image: url(../images/blue-blur.png);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  z-index: 0;
  left: 0;
  background-size: cover;
}

.team-head {
  margin-bottom: 43px;
  padding-bottom: 23px;
  position: relative;
  display: inline-block;
}

.team-head h2 {
  font-family: "Inter";
  text-transform: uppercase;
  color: #fff;
  font-size: 57px;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 0;
}

.team-head::before {
  content: "";
  width: 50%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: -55px;
}

.team-head::after {
  content: "";
  width: 20%;
  height: 80%;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  position: absolute;
  top: -30px;
  left: -53px;
}

.team-slide-flex {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 90%;
  margin: 0 auto;
}

.team-slide-wrap {
  padding: 25px 70px;
  background: linear-gradient(
    90deg,
    rgba(0, 166, 228, 1) 0%,
    rgba(0, 109, 149, 1) 100%
  );
  clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
}

.team-slide-wrap .slick-list {
  padding: 10px 0px;
}

.team-slide-img {
  position: relative;
  width: 300px !important;
  height: 136px;
  background-color: transparent;
  border-radius: 50%;
  z-index: 1;
}

.team-slide-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: linear-gradient(
    360deg,
    rgba(0, 146, 200, 1) 0%,
    rgba(255, 255, 255, 1) 12%,
    rgba(0, 146, 200, 1) 26%,
    rgba(255, 255, 255, 1) 36%,
    rgba(0, 146, 200, 1) 53%,
    rgba(255, 255, 255, 1) 66%,
    rgba(0, 146, 200, 1) 80%,
    rgba(0, 0, 0, 1) 94%,
    rgba(255, 255, 255, 1) 100%
  );
  z-index: -1;
}

.team-slide-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
}

.team-slide-img img {
  width: 100%;
  border-radius: 50%;
  height: 100%;
  object-fit: none;
  object-position: 50% 5%;
  padding: 4px;
}

.team-slide-txt h5 {
  color: #fff;
  font-family: "Inter";
  font-weight: bolder;
  font-size: 20px;
  margin-bottom: 12px;
}

.team-slide-txt p {
  padding-left: 11px;
  width: 90%;
  font-size: 15px;
  color: #fff;
  font-weight: 300;
}

.create-a-team-main {
  margin-top: 150px;
  position: relative;
}

.create-a-team-head {
  text-align: center;
  width: 60%;
  margin: 0 auto 0;
  background: linear-gradient(
    90deg,
    rgba(0, 166, 228, 1) 0%,
    rgba(0, 109, 149, 1) 100%
  );
  padding: 40px 0;
  border-radius: 0 0 80px 80px;
  border: 1px solid #ffffff80;
  position: absolute;
  left: 0;
  right: 0;
  top: -69px;
  z-index: 3;
}

.create-a-team-head h2 {
  font-family: "Inter";
  text-transform: uppercase;
  color: #fff;
  font-size: 40px;
  letter-spacing: 6px;
}

.create-a-team-wrap {
  width: 100%;
}

.create-a-team-wrap {
  background-color: #000a1b;
  padding: 120px 90px 90px;
  border: 1px solid #ffffff80;
  border-radius: 30px;
  position: relative;
  z-index: 1;
}

.scoreboard {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.create-a-team-box {
  position: relative;
}

.no-player {
  width: 25%;
  text-align: center;
}

.add-player {
  width: 20%;
  text-align: center;
}

.description {
  width: 70%;
  text-align: center;
}

.no-player h4 {
  margin-bottom: 0;
  font-size: 26px;
  font-family: "Inter";
  text-transform: uppercase;
  color: #fff;
  font-style: italic;
  position: relative;
  display: inline-block;
}

.description h4 {
  margin-bottom: 0;
  font-size: 26px;
  font-family: "Inter";
  text-transform: uppercase;
  color: #fff;
  font-style: italic;
}

.add-player h4 {
  margin-bottom: 0;
  font-size: 26px;
  font-family: "Inter";
  text-transform: uppercase;
  color: #fff;
  font-style: italic;
  position: relative;
  display: inline-block;
}

.no-player h4::after {
  content: "";
  position: absolute;
  right: -50px;
  height: 50px;
  width: 1px;
  background: #fff;
  top: -11px;
}

.add-player h4::after {
  content: "";
  position: absolute;
  left: -50px;
  height: 50px;
  width: 1px;
  background: #fff;
  top: -11px;
}

.score-card {
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(0, 166, 228, 1) 0%, #00243b 100%);
  border-radius: 30px 30px 0 0;
  padding: 20px 5px 20px 40px;
}

.score-cards {
  height: 480px;
  overflow-y: scroll;
  padding-right: 30px;
}

.score-cards::-webkit-scrollbar {
  width: 10px;
}

.score-cards::-webkit-scrollbar-track {
  background-color: #333b49;
  border-radius: 10px;
}

.score-cards::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 10px;
  border: 2.5px solid #eaecf0;
}

.score-cards::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.create-a-team-selected .score-cards {
  height: 359px;
}

.score-num {
  width: 25%;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
}

.score-description {
  width: 70%;
}

.add-btn {
  width: 20%;
  text-align: center;
  position: relative;
}

.add-btn-wrap {
  background-color: #fff;
  padding: 23px 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.score-num-img {
  width: 80px;
  height: 80px;
  border: 1px solid #fff;
  border-radius: 50%;
  overflow: hidden;
}

.score-num-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70%;
}

.score-description p {
  width: 65%;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.score-num h5 {
  margin-bottom: 0;
  font-family: "Inter";
  font-weight: bold;
  font-size: 25px;
  color: #fff;
  font-style: italic;
}

.score-num::after {
  content: "";
  position: absolute;
  right: 9px;
  height: 50px;
  width: 1px;
  background: #fff;
}

.add-btn::after {
  content: "";
  position: absolute;
  left: 15px;
  height: 50px;
  width: 1px;
  background: #fff;
}

.score-card2 {
  border-radius: 0 0 30px 30px;
  background: linear-gradient(
    180deg,
    rgba(0, 24, 45, 1) 0%,
    rgba(0, 20, 40, 1) 100%
  );
}

.score-design {
  position: absolute;
  top: -35px;
  z-index: 0;
  text-align: center;
  width: 100%;
}

.score-design2 {
  position: absolute;
  bottom: 0;
  z-index: 1;
  left: 0;
  right: 0;
  text-align: center;
}

.team-slide-wrap .slick-next {
  top: 0;
}

.team-slide-wrap .slick-next::before {
  opacity: 1;
}

.team-slide-wrap .slick-prev {
  top: 100%;
}

.team-slide-wrap .slick-prev::before {
  opacity: 1;
}

.create-a-team-selected {
  position: relative;
}

.create-a-team-selected {
  margin-top: 64px;
}

.side-anim {
  position: absolute;
  left: -57px;
  top: 0;
  z-index: 99;
}

.side-anim .side-anim-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  height: 62%;
  padding-left: 58px;
}

.side-anim-wrap h2 {
  color: #fff;
  text-transform: uppercase;
  font-family: "Inter";
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.player-row {
  display: flex;
  align-content: center;
  justify-content: space-between;
  width: 91%;
}

.create-a-team-selected .create-a-team-wrap {
  padding-top: 105px;
  padding-bottom: 15px;
}

.create-a-team-selected .score-card {
  border-radius: 0;
  background-image: url(../images/scorecard2-bg.png);
  background-size: cover;
}

.create-a-team-selected .add-btn-wrap {
  background-color: transparent;
  border: 1px solid #fff;
  width: 50px;
}

.create-a-team-wrap {
  text-align: right;
}

.create-a-team-wrap .theme-btn {
  margin-top: 15px;
}

.side-anim-wrap h2 span {
  font-size: 48px;
}

.check-head h5 {
  padding: 13px 18px;
  background: linear-gradient(180deg, var(--theme-color), transparent)
    var(--theme-color-2);
  border-radius: 5px;
  color: #fff;
  margin-bottom: 0;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 31px;
}

.check-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.check-btn .theme-btn {
  padding: 15px 30px;
  font-size: 13px;
  text-transform: capitalize;
  width: 48%;
  text-align: center;
  border: 1px solid var(--theme-color-2);
}

.check-btn .theme-btn:hover {
  box-shadow: none;
  transform: unset;
  background: transparent;
  border: 1px solid var(--theme-color);
}

.player-stats-banner2 {
  height: 250px;
  background-size: 100% 100%;
}

.player-stats-banner2 h2 {
  font-size: 26px;
  line-height: 35px;
}

.player-stats-banner2 p {
  font-size: 14px;
}

.check-height {
  background: linear-gradient(180deg, var(--theme-color), transparent)
    var(--theme-color-2);
  padding: 0 45px;
  display: flex;
  flex-direction: column;
  height: 73%;
  justify-content: center;
  align-items: center;
  gap: 50px;
  border-radius: 5px;
  border: 1px solid #ffffff80;
  margin-top: 33px;
}

.check-height h5 {
  color: #fff;
  font-size: 16px;
  text-align: center;
  margin-bottom: 0;
}

.check-size {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin: 40px 0 30px;
}

.check-size p {
  margin-bottom: 0;
  color: #fff;
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 500;
}

.check-size-txt p:first-child {
  margin-bottom: 20px;
}

.check-sizer {
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 7px 11px;
  margin-bottom: 15px;
}

.check-size-txt {
  width: 50%;
}

.check-size-box {
  width: 45%;
}

.check-sizer p:first-child {
  border-bottom: 1px solid #fff;
  padding-bottom: 3px;
  margin-bottom: 3px;
}

.check-size-bin {
  display: flex;
  align-items: center;
  gap: 32px;
}

.check-size-bin p {
  margin-bottom: 0;
  background: linear-gradient(180deg, var(--theme-color), transparent)
    var(--theme-color-2);
  width: 100%;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
  padding: 15px 30px;
  border-radius: 5px;
  color: #fff;
}

.check-sizer p:last-child {
  text-transform: uppercase;
}

.check-size-bin a {
  padding: 12px;
  background: linear-gradient(180deg, var(--theme-color), transparent)
    var(--theme-color-2) padding-box;
  border-radius: 50%;
}

.check-size-bin a:last-child {
  width: 100%;
  border-radius: 7px;
}

.check-size-bin a img {
  width: 30px;
  height: 30px;
  object-fit: none;
}

.player-box-head {
  margin: 40px 0;
  display: flex;
  align-items: center;
  gap: 25px;
}

.player-box-head h4 {
  color: #fff;
  font-style: italic;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0;
}

.player-box {
  background: linear-gradient(
    -90deg,
    rgba(0, 166, 228, 1) 0%,
    rgba(0, 109, 149, 1) 100%
  );
  border: 1px solid #ffffff80;
  border-radius: 5px;
  padding: 15px 20px;
}

.vs-img-main {
  display: flex;
  align-items: end;
  gap: 30px;
  justify-content: center;
}

.results {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 28px 0 16px;
}

.vs-img-main p {
  margin-bottom: 0;
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}

.results p {
  margin-bottom: 0;
  color: #fff;
  font-size: 12px;
}

.results select {
  background: none;
  border: 0;
  color: #fff;
  font-size: 12px;
}

.vs-img p {
  font-size: 12px;
  text-align: center;
  padding-top: 5px;
}

.match-score-boxes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.match-score-boxes h6 {
  color: #fff;
  padding: 12px 30px;
  border: 1px solid #fff;
  border-radius: 5px;
  font-family: "Inter";
  font-size: 14px;
}

.match-score-box p {
  margin-bottom: 0;
  color: #fff;
  text-align: center;
  font-size: 11px;
  font-weight: bold;
}

.player-boxes {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-evenly;
}

.results select option {
  color: #000;
}

/*CREATE__TEAM__CSS*/

.team-head-team h2 {
  color: white;
  background: linear-gradient(180deg, var(--theme-color), transparent)
    var(--theme-color-2);
  display: inline-block;
  padding: 10px 40px 10px;
  border-radius: 2px;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.team-head-team {
  text-align: center;
  position: relative;
  margin: 0px auto;
  width: 25%;
}

.team-head-team::after {
  content: "";
  width: 100%;
  height: 70px;
  background: #003e577a;
  position: absolute;
  left: 0%;
  border-radius: 2px;
  /*z-index: -2;*/
  transform: rotate(3deg);
  top: -8%;
}

.team-head-team::before {
  content: "";
  width: 100%;
  height: 70px;
  background: #0096ce5c;
  position: absolute;
  border-radius: 3px;
  /*z-index: -1;*/
  left: 0%;
  top: -12%;
  transform: rotate(-3deg);
}

.key-reminder {
  text-align: center;
}
.key-reminder ul {
  width: max-content;
  margin: 0 auto;
  text-align: left;
  list-style: none;
  list-style: disc;
}
.key-reminder ul li {
  margin-bottom: 10px;
  color: #fff;
  list-style: none;
  position: relative;
}
.key-reminder ul li::before {
  content: "\f560";
  font-family: "FontAwesome";
  color: #00aacf;
  position: absolute;
  left: -9%;
}

.key-reminder h3 {
  color: white;
  font-style: italic;
  font-size: 35px;
  font-weight: 600;
  padding: 90px 0 0;
}

.key-reminder i {
  background: #008ec3;
  padding: 5px 20px 5px;
  border-radius: 25px;
}

.team-numbers {
  padding: 50px 0 50px;
}

.team-numbers {
  padding: 50px 30px 50px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 98%;
  margin-left: auto;
}

.start-number h4 {
  color: white;
  margin: 0;
  font-weight: 500;
  font-style: italic;
}

.start-number h5 {
  color: white;
  margin: 0;
  font-weight: 500;
  font-style: italic;
}

.start-number {
  background: #00ccf6c7;
  display: inline-block;
  padding: 15px 20px 15px;
  border-radius: 5px;
  transform: rotate(45deg);
  position: relative;
}

.count-show {
  transform: rotate(-45deg);
}

.seed h4 {
  color: white;
  margin: 0;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
}

.player-id p {
  color: white;
  margin: 0;
  text-transform: uppercase;
  font-size: 10px;
}

.players-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 20px 50px;
}

.player-id img {
  width: 100%;
  max-width: 70px;
  background: #e8f0ff;
  padding: 10px 10px 10px;
  border-radius: 35px;
}

.player-id {
  text-align: center;
  position: relative;
}

.player-id.red-disable p {
  color: indianred;
}

.player-id.red-disable img {
  background: red;
  filter: contrast(0.5);
}

.player-id::before {
  content: "";
  width: 7%;
  height: 5px;
  position: absolute;
  background: #00caf6;
  border-radius: 14px;
}

.player-id::after {
  content: "";
  width: 6%;
  height: 5px;
  position: absolute;
  background: #005f72;
  border-radius: 14px;
  top: 50%;
  left: 90%;
}

.modal-header {
  border: none;
}

.modal-content {
  background: linear-gradient(180deg, #00ccf6, #0077a3);
  border-radius: 0;
}

.modal-team-cont h4 {
  margin: 0;
  font-size: 26px;
  text-transform: uppercase;
  font-weight: 700;
  font-style: italic;
  color: white;
  padding: 10px 0 20px;
}

.modal-team-cont h5 {
  color: white;
  font-size: 20px;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
  margin: 0;
  padding: 0px 0 20px;
}

.modal-team-cont p {
  color: white;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 700;
  font-size: 14px;
}

.team-select-modal .modal-dialog {
  position: absolute;
  left: 35%;
  top: 23%;
}

div#exampleModal {
  backdrop-filter: blur(5px);
}

.start-number {
  position: relative;
  background-color: #00ccf6c7;
}

/* Original ::after */
.start-number::after {
  content: "";
  width: 100%;
  height: 80px;
  background: #00ccf640;
  position: absolute;
  top: 2%;
  left: -1%;
  transform: rotate(111deg);
  border-radius: 3px;
  z-index: 1;
}

/* Hide ::after if no-after class is added */
.start-number.no-after::after {
  display: none;
}

.main-bg-wrapper.main-bg-wrapper-2.player-selec {
  background-image: url(../images/palyer-bg-select.png) !important;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.player-stats-modal {
  justify-content: center !important;
  gap: 30px;
}
.player-btn {
  text-align: center;
}
#confirmTeamModal .modal-icon i {
  padding: 8px;
  background: #0dcaf0;
  border-radius: 0.375rem;
  display: block;
  margin-bottom: 8px;
}

#confirmTeamModal .modal-header .btn-close {
  position: absolute;
  right: 25px;
}
#confirmTeamModal .modal-header {
  justify-content: center;
}
#confirmTeamModal .modal-header .modal-title {
  background: white;
  color: #0dcaf0;
  border: 1px solid #0dcaf0;
  padding: 10px 30px;
  border-radius: 10px;
}

#confirmTeamModal .modal-footer {
  justify-content: center;
}
#confirmTeamModal .modal-footer .btn {
  background: #0dcaf0;
  color: #fff;
}
#confirmTeamModal {
}

/*CREATE__TEAM__CSS*/

.header-btn .log-user a {
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
}

.nav-bar {
  padding: 30px 0 0;
  border: none;
  display: flex;
  justify-content: center;
}

.nav-tabs {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  justify-content: center;
  background: linear-gradient(180deg, #00a6e4, #006d95b2);
  border: none;
  border-radius: 5px 5px 0px 0px;
}

.nav-tabs li {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-tabs li:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-tabs li a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.nav-tabs li a:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.leagues {
  border-top: 6px solid #0093ca;
}

.teams-names {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0093ca4d;
  padding: 15px 30px 15px;
  margin: 20px 20px 20px;
  border-radius: 5px;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background: transparent;
  border-top: transparent;
  border-left: transparent;
  border-right: transparent;
  border-bottom: 1px solid white;
}

.grid-three i {
  color: white;
  font-size: 25px;
}

.teams-names {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brandon-hogan {
  display: flex;
  align-content: center;
  gap: 0px 12px;
}
.brandon-hogan h4 {
  color: white;
  margin: 0;
  font-size: 22px;
  font-weight: 500;
  padding: 5px 0 0;
}

.team-name a {
  color: white;
  font-size: 16px;
  border-bottom: 1px solid;
}

.flex-gird {
  display: flex;
  align-content: center;
  justify-content: end;
  padding: 30px 20px 30px;
  gap: 0px 20px;
}

.teams-names.transparent {
  background: transparent;
}

.grid-one a {
  width: 34px;
  height: 34px;
  transition: 0.2s all !important;
  background: transparent;
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
}

.grid-one a i,
.grid-one a img {
  width: 25px;
  height: 25px;
  display: block;
  font-size: 25px;
  color: #fff;
  margin: 0 auto;
}

.flex-gird .nav-tabs {
  background: transparent;
  gap: 15px;
}

.flex-gird .nav-tabs li {
  border: 0;
}

.flex-gird .nav-tabs li .nav-link.active {
  border: 0;
  background: transparent;
  outline: none;
}

.flex-gird .nav-tabs li .nav-link.active .grid-one a {
  background: var(--theme-color);
}

.flex-gird .nav-tabs li .nav-link {
  padding: 0;
  box-shadow: none !important;
  outline: none;
  border: 0;
}

/**/

.pagination-container {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  color: white;
  font-size: 18px;
  font-weight: bold;
  justify-content: end;
  padding: 25px 22px 0;
}

.pagination-container .blue-text {
  color: #00baff;
}

.next-btn {
  background: linear-gradient(to bottom, #00baff, #0097d6);
  border: none;
  padding: 12px 30px;
  border-radius: 4px;
  cursor: pointer;
  color: white;
  font-size: 16px;
  transition: background 0.3s ease;
}

.next-btn:hover {
  background: #007db3;
}

/**/
.chart-head {
  display: flex;
  align-content: center;
  gap: 0px 60px;
  padding: 5px 10px 10px;
  border-bottom: 1px solid white;
}

.chart-head h4 {
  color: white;
  margin: 0;
  font-size: 18px;
}

.team-weight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px 10px;
  border-bottom: 1px solid white;
}

.team-weight h4 {
  color: white;
  font-size: 15px;
  margin: 0;
}

.name-score-player {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px 10px;
  border-bottom: 1px solid white;
}

.name-score-player p {
  color: white;
  font-size: 15px;
  margin: 0;
  font-weight: 600;
}

.name-score-player h5 {
  margin: 0;
  color: white;
  font-size: 15px;
  font-weight: 600;
}

.total-score h4 {
  margin: 0;
  color: white;
  font-size: 20px;
  font-weight: 600;
}

.total-score {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px 10px;
}

.scoring-chart {
  border: 1px solid white;
  padding: 15px 0 15px;
  margin: 20px 0 20px;
  background: #f0f2ff1c;
}

.team-board {
  padding: 0px 0px 0;
}

.player-accodians {
  padding: 0px 0 0;
  position: relative;
  top: -5%;
}

.player-accodians .accordion-button.collapsed {
  background: #0093cab5;
  color: white;
  font-size: 18px;
  font-weight: 600;
  padding: 22px 12px 22px;
  border-radius: 3px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.player-accodians .accordion-item {
  padding: 0 0 15px;
  background: transparent;
  border: none;
}

.brandon-hogan img {
  width: 100%;
  max-width: 50px;
  object-fit: contain;
}

.search-container input {
  color: white;
  outline: none;
  /*border: none;*/
  background: transparent;
}

.search-container input::placeholder {
  color: white;
}

#headingOne {
  background: #0093cab5;
  padding: 13px 20px 13px;
  border-radius: 5px;
}
#headingOne a {
  color: white;
  font-size: 18px;
  font-weight: 600;
}

#headingTwo {
  background: #0093cab5;
  padding: 13px 20px 13px;
  border-radius: 5px;
}
#headingTwo a {
  color: white;
  font-size: 18px;
  font-weight: 600;
}

#headingFour {
  background: #0093cab5;
  padding: 13px 20px 13px;
  border-radius: 5px;
}
#headingFour a {
  color: white;
  font-size: 18px;
  font-weight: 600;
}

#headingFive {
  background: #0093cab5;
  padding: 13px 20px 13px;
  border-radius: 5px;
}
#headingFive a {
  color: white;
  font-size: 18px;
  font-weight: 600;
}

#headingSix {
  background: #0093cab5;
  padding: 13px 20px 13px;
  border-radius: 5px;
}
#headingSix a {
  color: white;
  font-size: 18px;
  font-weight: 600;
}

#headingSeven {
  background: #0093cab5;
  padding: 13px 20px 13px;
  border-radius: 5px;
}
#headingSeven a {
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.player-accodians .accordion-button::after {
  filter: invert(1);
}

.scoring {
  padding: 0 20px 0;
}

.team-accordian-select {
  padding: 0 20px 0;
}

.team-board {
  padding: 0px 30px 0;
}

.accordion-body p {
  color: white;
  margin: 0;
}

.team-name a:hover {
  color: #008fc4;
  transition: 0.2s all;
}

#submit-team {
  background: #0092c8;
  padding: 15px 25px 15px;
  font-size: 17px;
  font-weight: 500;
}

.privacy-head h1 {
  color: white;
  text-align: center;
  margin: 0;
  font-size: 60px;
  font-style: italic;
  font-weight: 600;
}

.privacy-head {
  padding: 50px 0 50px;
}

.privacy-cont-one p {
  color: white;
  font-style: italic;
  margin: 0;
}

.privacy-cont-one {
  padding: 40px 0 50px;
}

.privacy-cont-two h4 {
  color: white;
  font-style: italic;
  margin: 0;
  padding: 0 0 30px;
}

.privacy-cont-two p {
  color: white;
}

.privacy-cont-three {
  padding: 30px 0 30px !important;
}

.privacy-cont-three h4 {
  color: white;
  margin: 0;
  font-style: italic;
  padding: 0 0 30px;
}

.privacy-cont-three p {
  color: white;
}

.privacy-cont-four {
  padding: 0px 0 30px;
}

.privacy-cont-four h4 {
  color: white;
  font-style: italic;
  padding: 0 0 25px;
  margin: 0;
}

.privacy-cont-four p {
  color: white;
}

.privacy-cont-five {
  padding: 0 0 30px;
}

.privacy-cont-five h4 {
  color: white;
  font-style: italic;
  padding: 10px 0 10px;
}

.privacy-cont-five p {
  color: white;
}

.privacy-cont-six {
  padding: 0 0 30px;
}

.privacy-cont-six h4 {
  color: white;
  font-style: italic;
  padding: 0 0 20px;
}

.privacy-cont-six p {
  color: white;
}

.privacy-cont-seven {
  padding: 0 0 30px;
}

.privacy-cont-seven h4 {
  color: white;
  margin: 0;
  font-style: italic;
  padding: 0 0 25px;
}

.privacy-cont-seven p {
  color: white;
}

.privacy-cont-eight {
  padding: 0 0 30px;
}

.privacy-cont-eight h4 {
  color: white;
  margin: 0;
  font-style: italic;
  padding: 0 0 20px;
}

.privacy-cont-eight p {
  color: white;
}

.privacy-cont-nine {
  padding: 0 0 30px;
}

.privacy-cont-nine h4 {
  color: white;
  margin: 0;
  font-style: italic;
  padding: 0 0 20px;
}

.privacy-cont-nine p {
  color: white;
}

.privacy-cont-ten {
  padding: 0 0 30px;
}

.privacy-cont-ten h4 {
  color: white;
  font-style: italic;
  margin: 0;
  padding: 0 0 20px;
}

.privacy-cont-ten p {
  color: white;
}

.privacy-cont-eleven h4 {
  color: white;
  font-style: italic;
  margin: 0;
  padding: 0 0 20px;
}

.privacy-cont-eleven p {
  color: white;
}

.terms-cont-one {
  padding: 0 0 30px;
}
.terms-cont-one h4 {
  color: white;
  font-style: italic;
  margin: 0;
  padding: 0 0 30px;
}

.terms-cont-one p {
  color: white;
  font-style: italic;
}

.terms-cont-two {
  padding: 0 0 30px;
}

.terms-cont-two h4 {
  color: white;
  font-style: italic;
  margin: 0;
  padding: 20px 0 10px;
}

.terms-cont-two p {
  color: white;
}

.terms-cont-three {
  padding: 0 0 30px;
}

.terms-cont-three h4 {
  color: white;
  font-style: italic;
  margin: 0;
  padding: 0 0 20px;
}

.terms-cont-three p {
  color: white;
}

.terms-cont-four {
  padding: 0 0 30px;
}

.terms-cont-four h4 {
  color: white;
  margin: 0;
  padding: 0 0 20px;
  font-style: italic;
}

.terms-cont-four p {
  color: white;
}

.terms-cont-five h4 {
  color: white;
  font-style: italic;
  margin: 0;
  padding: 0 0 30px;
}

.terms-cont-five p {
  color: white;
}

.terms-cont-six {
  color: #fff;
  padding: 15px 0 15px;
}

.terms-cont-seven {
  padding: 10px 0 15px;
}

.terms-cont-seven h4 {
  color: white;
  font-style: italic;
  margin: 0;
  padding: 0 0 20px;
}

.terms-cont-seven p {
  color: white;
}

.footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.foot-flex-one a {
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.foot-flex-three a {
  color: white;
  font-size: 18px;
  font-weight: 600;
}

.continue-btn a {
  background: #3baed9;
  color: white;
  padding: 13px 35px 13px;
  border-radius: 4px;
}

.continue-btn {
  padding: 20px 0 20px;
}

.sign-up-form {
  margin: 0 auto;
}

.sign-up-form h2 {
  color: white;
  font-size: 50px;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  padding: 20px 0 20px;
}

#exampleFormControlInputone {
  border-radius: 0;
  padding: 15px 12px 15px;
  margin: 0 0 15px;
}

.sign-up-form {
  border: 1px solid aliceblue;
  width: 50%;
  padding: 15px 20px 15px;
  border-radius: 10px;
}

.sign-up-btn {
  text-align: center;
}

.sign-up-sec {
  padding: 50px 0 30px;
}

/*MESSAGE__DESHBOARD__START__*/

.create__btn a {
  background: linear-gradient(180deg, var(--theme-color), transparent)
    var(--theme-color-2);
  color: #fff;
  padding: 10px 40px;
  border-radius: 5px;
  display: inline-block;
}

.create__btn {
  text-align: end;
  padding: 40px 0 60px 0;
}

.create__btn a i {
  margin-right: 12px;
}

.message-board_card {
  border: 1px solid #fff;
  padding: 30px 30px;
  background: #f0f2ff1c;
}

.message-board_card_top {
  display: flex;
  align-items: center;
  gap: 25px;
}

.message-board_card_top_img {
  width: 75px;
  height: 75px;
  padding: 10px 0px 0px 0px;
  border-radius: 75px;
  overflow: hidden;
  background: #fff;
}

.message-board_card_top_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.message-board_card_top_info {
  color: #fff;
}

.message-board_card_top_info h5 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.message-board_card_top_info ul {
  display: flex;
  padding: 0px;
  list-style: none;
  gap: 12px;
  align-items: baseline;
  margin: 0;
}

.message-board_card_top_info ul li:nth-child(2) {
  font-size: 28px;
  line-height: 1;
  padding: 0;
}

.message-board_card_body {
  color: #fff;
  padding: 30px 0 0 0;
  font-weight: 200;
}

.message-board_card_bottom ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0px;
  margin: 0;
}

.message-board_card_bottom ul li a {
  color: #fff;
  font-weight: 200;
}

.sign-up-btn a {
  color: white;
  /*padding: 15px 0 0px;*/
}

.create-accnt {
  text-align: center;
  padding: 15px 0 15px;
}
.create-accnt a {
  color: white;
}

.invite-friends {
  display: flex;
  align-content: center;
  width: 100% !important;
  gap: 0px 20px;
  padding: 35px 0 20px;
}
.int-one {
  width: 28%;
}

.int-one .theme-btn {
  padding: 10px 25px 10px;
}

#exampleFormControlInputtwo {
  padding: 10px 10px 10px;
  border-radius: 0;
}

/*MESSAGE__DESHBOARD__END*/

.message-type {
  display: flex;
  width: 100%;
  align-content: center;
  gap: 0px 30px;
  padding: 25px 0 0;
}

.message-user-type {
  width: 100%;
  position: relative;
}

.message-user {
  padding: 0px 0 0;
}

.message-user-type label {
  margin: 0;
  color: white;
  font-size: 23px;
  font-weight: 700;
  padding: 0 0 5px;
}

#exampleFormControlTextareatwo {
  border-radius: 0px;
  background: #808e97;
  height: 115px;
  border: none;
}

.paper-plan {
  position: absolute;
  top: 75%;
  left: 96%;
  rotate: 40deg;
}

.message-user-head h4 {
  color: white;
  font-size: 22px;
  font-weight: 600;
  padding: 25px 0 0;
}

.message-user-head i {
  color: #0092c8;
}

.active-status-flex {
  display: flex;
}

.message-user {
  display: flex;
  align-content: center;
  gap: 0px 20px;
  padding: 10px 0 10px;
}

.active-show h4 {
  margin: 0;
  color: white;
  font-weight: 500;
  font-size: 18px;
  padding: 2px 0 10px;
}

.active-show p {
  color: white;
  font-size: 14px;
  margin: 0;
  font-weight: 300;
  padding: 0 0 10px;
}

.active-numbering ul {
  padding: 0;
}

.active-numbering li {
  list-style: none;
  display: inline;
  color: white;
  font-size: 13px;
  padding: 10px 10px 10px;
}

.active-numbering a {
  color: white;
  font-size: 13px;
}

.message-user-head {
  padding: 25px 0 10px;
}

.active-bg {
  background: #315c7680;
  padding: 5px 10px 5px;
}

.martin-flex {
  display: flex;
  align-content: center;
  gap: 0px 20px;
  width: 100%;
  padding: 20px 90px 50px;
}

.martin-flex-two h4 {
  margin: 0;
  color: white;
  padding: 20px 0 0;
  text-transform: capitalize;
  font-size: 20px;
}

.martin-flex-two {
  width: 100%;
}

.martin-flex-one .message-board_card_top_img {
  width: 55px;
  height: 55px;
}

.message-board_card a {
  display: block;
}

.message-user-type p {
  color: white;
  font-weight: 200;
}

.message-user-type.bordered {
  border: 1px solid white;
  background: #f0f2ff26;
  padding: 10px 20px 10px;
}

.like-one ul {
  padding: 0;
}

.like-one li {
  list-style: none;
  display: inline-block;
  color: white;
  font-size: 12px;
  padding: 0px 10px 0;
}

.like-flex {
  display: flex;
  justify-content: space-between;
}

.like-two p {
  color: white;
  margin: 0;
}

.like-two {
  display: flex;
  align-items: center;
  gap: 0px 25px;
}

.like-two i {
  background: #0092c8;
  padding: 5px 5px 5px;
  border-radius: 15px;
}

.view-profile {
  padding: 10px 0 30px;
  position: relative;
}

.view-profile p {
  margin: 0;
  font-size: 14px;
  color: white;
}

.view-profile::before {
  content: "";
  width: 5%;
  height: 1px;
  background: white;
  position: absolute;
  left: -6%;
  top: 36%;
}

.message-user.align-bordered {
  position: relative;
}

.message-user.align-bordered::before {
  content: "";
  width: 147%;
  height: 1px;
  background: white;
  position: absolute;
  top: 60%;
  left: -26%;
  rotate: 90deg;
}

.message-main-desh {
  border: 1px solid aliceblue;
  padding: 0 20px 0;
  margin: 60px 0 0;
  overflow-y: scroll;
  height: 1100px;
  background: #f0f2ff1c;
}

/**/

/*.message-main-desh::-webkit-scrollbar-track {*/
/*  background: transparent; */
/*}*/

/*.message-main-desh::-webkit-scrollbar-thumb {*/
/*  border-radius: 10px;        */
/*  border: 2px solid transparent; */
/*  background-clip: content-box;  */
/*}*/

/*.message-main-desh::-webkit-scrollbar-thumb:hover {*/
/*  background-color: #157191;*/
/*}*/

/*.message-main-desh {*/
/*  scrollbar-width: thin;*/
/*  scrollbar-color: #1a88b1 transparent;*/
/*}*/

.message-main-desh::-webkit-scrollbar {
  width: 2px; /* Thodi si kam width */
}

.message-main-desh::-webkit-scrollbar-track {
  background: transparent;
}

.message-main-desh::-webkit-scrollbar-thumb {
  background-color: #1a88b1;
  border-radius: 12px 12px; /* Upar aur neeche rounded */
  border: 1px solid transparent;
  background-clip: content-box;
}

.message-main-desh::-webkit-scrollbar-thumb:hover {
  background-color: #157191;
}

/* Firefox support */
.message-main-desh {
  scrollbar-width: thin;
  scrollbar-color: #1a88b1 transparent;
}

.message-board_card_bottom i {
  padding: 5px 5px 5px;
  background: #0092c8;
  border-radius: 15px;
}

.active-numbering a:hover {
  color: #478fcc;
  transition: 0.2s all;
}

.like-one li:hover {
  color: #478fcc;
  transition: 0.2s all;
}

.trans i {
  background: transparent;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  cursor: pointer;
  padding: 10px 15px;
  /*background-color: #1a1a1a;*/
  /*color: white;*/
  border-radius: 5px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: #333;
  min-width: 160px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  border-radius: 5px;
}

.dropdown-menu a {
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
}

.dropdown-menu a:hover {
  background-color: #555;
}

.dropdown.show .dropdown-menu {
  display: block;
}

.message-board_card_bottom i {
  font-size: 20px;
}

.message-board_card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.message-board_card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}



.player-id            { cursor:pointer; transition:opacity .2s; }
.player-id.disabled   { opacity:0.3; pointer-events:none; position: relative;}
.player-id.disabled::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #ff0000d4;
  border-radius: 0;
  left: 0;
  top: 0;
  z-index: 9;
}
.player-id.selected   { outline:3px solid #28a745; }