@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=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

@import "ngx-owl-carousel-o/lib/styles/scss/owl.carousel";
@import "ngx-owl-carousel-o/lib/styles/scss/owl.theme.default";
/* -------------------------------------------

Name: 		sport Fanta
Version:    1.0
Author:		
------------------------------------------- */
/* [Table of contents] 
  1. General Css 
  2. Color Codes
  3. Typography
  4. signup
  5.login
  6.Dashboard


*/

/* -------------------------------------------   
 # [Fonts family]
 font-family: 'Montserrat', sans-serif;

------------------------------------------- */

/*===========================
    1. General Css
   
===========================*/

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  outline: none;
}

html {
  font-size: 62.5%;
  /* 1rem = 10px */
}

body,
html {
  font-weight: 400;
  scroll-behavior: smooth;
  font-family: "Montserrat", sans-serif;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
}

input.form-control,
select.form-control,
textarea.form-control {
  outline: none;
  transition: background-color 5000s ease-in-out 0s;
}

input.form-control:hover,
input.form-control:focus,
select.form-control:hover,
select.form-control:focus textarea.form-control:hover,
textarea.form-control:focus,
.form-control:hover,
.form-control:focus,
.form-check-input,
.form-check-input:hover,
.form-check-input:focus,
.form-select:focus {
  outline: none;
  box-shadow: none;
}

button.btn:hover,
button.btn:focus,
.btn:focus,
.btn:hover {
  outline: 0;
  box-shadow: none;
}

.btn-check:active + .btn-secondary:focus,
.btn-check:checked + .btn-secondary:focus,
.btn-secondary.active:focus,
.btn-secondary:active:focus,
.show > .btn-secondary.dropdown-toggle:focus .btn.active:focus {
  box-shadow: none;
}

::-moz-selection {
  /* Code for Firefox */
  color: #ffffff;
  background: #48b7c4;
}

::selection {
  color: #ffffff;
  background: #48b7c4;
}

a:hover,
button:hover {
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

/* scrollbar */
::-webkit-scrollbar {
  width: 0.5rem;
}

::-webkit-scrollbar-track {
  background: var(--black-color);
}

::-webkit-scrollbar-thumb {
  border-radius: 0.5rem;
  min-height: 10rem;
  background: #999999;
}

/*===========================
   2. Color Codes
===========================*/
:root {
  --primary-color: #41cd90;
  --secondry-solid-color: #5a5990;
  --medium-gray: #5e5e5e;
  --bright-red: #ff3434;
  /* buttons Colors */
  --btn-primary-bg: #41cd90;
  --secondary-btn-color: #5a5990;

  /* Nutural Colors */
  --heading-color: #505050;
  --white-color: #fff;
  --text-color: #999999;
  --text-primary: #1e1e1e;
  --text-davy-grey: #555;
  --semi-transparent-dark: rgba(55, 69, 87, 0.5);
  /* bg */
  --bg-color: #f3fff6;
  --bg-light-green: #ebfff6;
  --bg-pale-cyan: #f3fffa;
  --light-gray: #f1f1f1;
  --off-white: #f9f9f9e8;
  --custom-background: rgba(195, 255, 230, 0.3);

  /* Font Family */
  --primary-font: "Montserrat", sans-serif;
}

.primary-btn {
  max-width: 44.5rem;
  width: 100%;
  border-radius: 10rem;
  height: 4.6rem;
  background-color: var(--btn-primary-bg);
  color: var(--white-color);
  border: none;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2rem;
  display: block;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.primary-btn:hover {
  background-color: var(--secondary-btn-color);
  color: var(--white-color);
  transform: translateY(-2px);
}

.primary-btn:focus {
  outline: none;
  border: 1px solid var(--btn-primary-bg);
  box-shadow: none;
}

.invalid-feedback {
  display: block;
  width: 100%;
  margin-top: 7px;
  margin-inline: 4px;
  font-size: 1.1rem;
  color: red;
  font-weight: 500;
}

/*===========================
   3. signup
===========================*/

.signup-wrapper {
  background-color: var(--bg-color);
  border-radius: 4rem;
  padding: 1.2rem;
  height: 100vh;
  overflow: hidden;
}

.signup-wrapper .logo img {
  display: block;
  max-width: 27.7rem;
  margin: auto;
  filter: drop-shadow(0 0.4rem 0.4rem rgba(0, 0, 0, 0.12));
}

.form-container {
  padding: 0 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.signup-wrapper .heading {
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 3.9rem;
  color: var(--heading-color);
  text-align: center;
  padding-bottom: 1rem;
  position: relative;
  top: -30px;
}

.input-group {
  max-width: 44.5rem;
  margin-bottom: 1.5rem;
}

.input-group .form-control {
  border: 0.1rem solid rgba(80, 80, 80, 0.2);
  border-radius: 1.2rem !important;
  width: 100%;
  height: 5rem;
  padding: 1rem 1.4rem;
  background-color: transparent;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.5rem;
  box-shadow: none;
}

.input-group input::placeholder {
  color: rgba(80, 80, 80, 0.3);
}

.signup-wrapper .input-group {
  position: relative;
}

.signup-wrapper .password-toggle {
  position: absolute;
  right: 10px;
  top: 40%;
  transform: translateY(-50%, -50%);
  cursor: pointer;
  font-size: 1.4rem;
  color: rgba(80, 80, 80, 0.2);
  background: transparent;
  border: none;
}

.text {
  margin: 2.5rem 0;
  text-align: center;
  position: relative;
}

.text p {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.7rem;
  color: var(--text-color);
  letter-spacing: -0.03rem;
  margin: 0 1rem;
}

.text p::before,
.text p::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 0.1rem;
  background-color: rgba(151, 151, 151, 0.5);
  top: 50%;
}

.text p::before {
  right: 100%;
}

.text p::after {
  left: 100%;
}

.social-icons {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.icon {
  width: 4.8rem;
  height: 4.8rem;
  border: 0.1rem solid rgba(151, 151, 151, 0.5);
  border-radius: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  cursor: pointer;
}

.icon img {
  width: 100%;
  height: 26px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.form-disc p {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.5rem;
  text-align: center;
  letter-spacing: -0.03rem;
  letter-spacing: -0.3px;

  color: var(--text-color);
}

.form-disc p a {
  color: var(--primary-color);
  font-weight: 500;
  margin-left: 5px;
  text-decoration: underline;
  transition: all 0.2s linear;
}

.form-disc p a:hover {
  color: var(--text-color);
}

.forgot-link {
  width: 100%;
  text-align: right;
  max-width: 44.5rem;
  margin-top: -2px;
}

.forgot-text {
  font-size: 1.2rem;
  color: rgba(80, 80, 80, 0.5);
  font-weight: 500;
  transition: all 0.2 linear;
  text-decoration: none;
}

.forgot-text:hover {
  color: rgba(80, 80, 80, 0.5);
  text-decoration: underline;
}

.input-group .password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 1.4rem;
  color: rgba(80, 80, 80, 0.2);
  z-index: 123;
}

.btn-container {
  width: 100%;
  margin-top: 2rem;
}

.btn-container .primary-btn {
  margin: auto;
}

/*===========================
  4. Dashboard User
===========================*/

.main-layout {
  display: flex;
  width: 100%;
  background-color: var(--bg-light-green);
  height: 100%;
}

.dashboard-content {
  padding: 2rem 3rem;
  width: 100%;
  height: 100vh;
  transition: margin-left 0.3s ease;
  overflow: auto;
  position: relative;
  overflow-x: hidden;
}

.dashboard-content::-webkit-scrollbar {
  display: none;
}

.dashboard-content {
  -ms-overflow-style: none;
  scrollbar-width: thin;
}

.main-content-title {
  color: var(--text-primary);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 36px;
  text-align: left;
}

.welcome-banner__card {
  padding: 2.4rem 2.4rem;
  border-radius: 12px;
  background: var(--white-color);
  box-shadow: 15px 15px 30px 0px rgba(0, 0, 0, 0.1);
}

.welcome-banner__card__des {
  padding-top: 4rem;
}

.welcome-banner__card__des h2 {
  color: var(--text-primary);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 36px;
}

.welcome-banner__card__des p {
  color: var(--text-davy-grey);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 24px;
  padding-top: 1.5rem;
}

.divider-top {
  margin-top: 2rem;
}

.welcome-banner__card__des .primary-btn {
  border-radius: 6px;
  font-size: 1.4rem;
  padding-left: 18px;
  padding-right: 18px;
  width: auto;
  margin-top: 3rem;
  letter-spacing: 1px;
  height: 38px;
}

.welcome-banner__card__des .primary-btn:focus {
  outline: none;
  border: 1px solid var(--secondary-btn-color);
  box-shadow: none;
}

.welcome-banner__card__img img {
  display: block;
  margin-left: auto;
}

.all-leagues {
  border-radius: 20px;
  background: var(--white-color);
  box-shadow: 15px 15px 30px 0px rgba(0, 0, 0, 0.1);
  padding: 4rem 3rem;
  margin-top: 4rem;
}

.league-title {
  color: var(--text-primary);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 36px;
}

.common-heading-title {
  padding-bottom: 4rem;
}

.leagues-cards {
  margin: 4rem 0;
}

.card-container {
  border-radius: 12px;
  border: 1px solid rgba(51, 51, 51, 0.1);
  padding: 2rem 2.4rem;
  max-width: 190px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  margin: 20px;
  margin-right: 10px;
}

.active-card {
  background: var(--bg-pale-cyan);
  box-shadow: 6px 6px 30px 0px rgba(0, 0, 0, 0.1);
  transform: scale(1.02);
}

.card-subtitle {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
  transition: color 0.3s ease;
  padding-top: 0.5rem;
  text-align: center;
}

.card-icon img {
  max-width: 50px;
}

.card-container:hover .card-subtitle {
  color: var(--primary-color);
}

.table-responsive {
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
}

table thead {
  background-color: #f9f9f9e8 !important;
}

tbody tr:hover {
  background-color: #f9f9f9e8 !important;
}

.table-responsive .table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: #fff;
}

thead tr {
  padding: 0 20px !important;
}

table th {
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 20px;
  color: var(--primary-color);
  padding: 15px 30px !important;
}

table tbody tr {
  padding: 0px 30px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}

.table-responsive::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.table-responsive::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

.table-responsive::-webkit-scrollbar-track {
  background-color: var(--light-gray);
  border-radius: 10px;
}

.table-responsive {
  scrollbar-width: thin;
  scrollbar-color: #888 var(--light-gray);
}

.table-responsive {
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

table .team {
  display: flex;
  align-items: center;
}

table .team .icon-img {
  width: 35px;
  height: 35px;
  position: relative;
  left: -8px;
}

table .subtext {
  display: block;
  font-size: 1.2rem;
  color: #bababa;
}

table .team .team-info {
  display: flex;
  flex-direction: column;
}

table tr td {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 22px;
  color: var(--medium-gray);
  text-transform: capitalize;
  text-align: left;
  padding: 15px 30px !important;
}

table .team .team-info span {
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 20px;
  color: var(--text-primary);
  text-transform: capitalize;
}

table .team .team-info .subtext {
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 17px;
  text-transform: capitalize;
  color: var(--medium-gray);
  padding-top: 0.4rem;
}

.action-btn .btn {
  padding: 4px 10px;
  margin-inline-end: 5px;
  margin-bottom: 5px;
}

.action-btn .primary {
  background-color: var(--primary-color);
  color: var(--white-color);
  border-radius: 4px;
  padding: 4px 8px;
}

.score .form-control {
  background: rgba(195, 255, 230, 0.3);
  border: 1px solid var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 100px;
  min-width: 65px;
  max-width: 65px;
  width: 65px;
  width: 65px;
  text-align: center;
  color: var(--primary-color);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 22px;
  padding: 3px 0px;
}

.score-update .score .form-control {
  min-width: 120px;
  max-width: 120px;
  width: 120px;

  padding: 5px 0px;
}

table .form-control {
  width: 100px;
}

.top-score-card {
  border-radius: 20px;
  background: var(--white-color);
  box-shadow: 15px 15px 30px 0px rgba(0, 0, 0, 0.1);
  padding: 4rem 3rem;
  margin-top: 4rem;
}

.upcoming-news__container {
  margin: 4rem 0;
  width: 100%;
  position: relative;
}

.upcoming-news__container .banner-img {
  width: 100vw;
}

/*===========================
   5. Footer
===========================*/

.footer {
  padding: 50px 0 20px 0;
}

.footer-logo img {
  max-width: 100%;
}

.footer-description p {
  color: var(--gray-900, #18181b);
  font-family: Montserrat;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

.text-area-content.dsv h4 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 24px;
  margin-bottom: 20px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.text-area-content.dsv ul.footer-vsdf li {
  transition: all 0.3s ease-in-out;
}

.text-area-content.dsv ul.footer-vsdf li a {
  color: var(--gray-800, #27272a);
  font-family: "Plus Jakarta Sans";
  font-size: 1.4rem;

  font-weight: 400;
  line-height: 40px;
  /* 285.714% */
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.text-area-content ul li a:hover {
  padding-left: 2px;
  text-decoration: underline;
}

.text-area-content {
  display: block;
  margin: auto;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0.4rem;
}

.footer-widget__social {
  display: flex;
  align-items: center;
  padding-top: 20px;
  margin-bottom: 20px;
}

.footer-widget__social a {
  height: 32px;
  width: 32px;
  color: var(--white-color);
  border-radius: 100px;
  background: var(--primary-color);
  text-align: center;
  border-radius: 50%;
  font-size: 1.6rem;
  border: 1px solid var(--primary-color);
  display: flex;
  text-decoration: none;
  margin-inline-end: 20px;
}

.footer-widget__social a i {
  margin: auto;
  color: var(--white-color);
}

.footer-widget__social a:hover {
  color: var(--white-color);
  background: var(--text-primary);
  border: 1px solid var(--text-primary);
}

.footer-widget__social a:hover i {
  color: var(--white-color);
}

.copyright {
  border-top: 1px solid var(--Primary-Tint, #e4f1ff);
  text-align: center;
}

.copyright p {
  padding-top: 30px;
  color: var(--text-color);
}

/*===========================
   6. Blog
===========================*/

.blog-top {
  padding-top: 0;
}

.blog-top .primary-btn {
  margin-top: 0;
  display: block;
  margin-left: auto;
}

.blog-card {
  border-radius: 20px;
  border: 1px solid #e4f1ff;
  padding: 2rem;
  width: 390px;
  width: 100%;
  width: 390px;
  margin-inline-end: 60px;
  transition: all 0.6s linear;
  cursor: pointer;
  display: block;
  margin: auto;
}

.blog-card:hover {
  background-color: #f9f9f9e8;
}

.owl-theme .owl-nav {
  display: none;
}

.owl-theme .owl-nav [class*="owl-"] {
  background: var(--primary-color) !important;
}

.owl-theme .owl-dots {
  margin-top: 30px;
}

.top-score-card .owl-theme .owl-nav [class*="owl-"] {
  display: none;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;

  width: 99%;
  display: block;
  margin: auto;
}

.blog-image {
  height: 230px;
  margin-bottom: 2rem;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 20px;
}

.blog-title {
  color: var(--text-primary);
  font-size: 1.8rem;
  font-weight: 600;
}

.blog-description {
  color: var(--text-primary);
  font-size: 1.4rem;
  padding: 1rem 0 2rem 0;
  line-height: 18px;
}

.border-bottom {
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  margin-bottom: 10px;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-meta .blog-date {
  color: var(--text-primary);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 36px;
}

.blog-meta .blog-text {
  color: #333;
  font-size: 1.5rem;
  font-weight: 500;
  border-radius: 4px;
  background: var(--bg-light-green);
  padding: 6px 20px;
  border: 0.5px solid transparent;
}

.blog-card:hover .blog-text {
  background-color: transparent;
  border: 0.5px solid var(--primary-color);
  color: var(--primary-color);
}

.blog-card:hover .blog-title {
  color: var(--primary-color);
}

.owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  margin: 5px 7px;
  background: transparent !important;
  border: 1px solid var(--primary-color);
  display: block;

  transition: opacity 0.2s ease;
  border-radius: 30px;
  padding: 6px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--primary-color) !important;
}

.owl-item {
  width: 100%;
}

.toggle-btn,
.toggle-btn__mobile {
  border: none;
  border-radius: 6px;
  background: var(--white-color);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.8s ease;
}

.toggle-btn i,
.toggle-btn__mobile i {
  color: var(--primary-color);
  font-size: 2rem;
  margin: auto;
}

/* leagues.component.css */

.pagination-block {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.pagination-controls {
  display: flex;
  list-style: none;
  padding: 0;
}

.pagination-controls li {
  margin: 0 5px;
}

.pagination-controls li a {
  transition: background-color 0.3s, color 0.3s;
  font-size: 1.4rem !important;
}

.ngx-pagination .disabled {
  font-size: 1.4rem !important;
}

.ngx-pagination .current {
  padding: 0.1875rem 0.625rem;
  background: var(--primary-color) !important;
  color: #fefefe;
  cursor: default;
  font-size: 1.4rem !important;
}

.ngx-pagination {
  background-color: #f9f9f9e8;
  padding: 1rem;
  border-radius: 6px;
}

.pagination-controls .disabled a {
  background-color: var(--bg-color);
  color: var(--text-color);
  cursor: not-allowed;
}

/*===========================
   7. Team oF Creations
===========================*/
.team-creation-creator {
  padding: 3rem 3rem;
  background: var(--white-color);
  border-radius: 20px;
}

.creation_card {
  border-radius: 20px;
  border: 1px solid rgba(51, 51, 51, 0.1);
  box-shadow: 15px 15px 30px 0px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
}

.creation_card .card-title {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 36px;
  text-align: center;
  color: var(--text-primary);
}

.upload-img {
  border-radius: 50%;
  background: var(--custom-background);
  width: 160px;
  height: 160px;
  margin: 4rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  cursor: pointer;
}

.show-img {
  width: 160px;
  height: 160px;
}

.show-img img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

.upload_icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.search_group .form-control,
.filter-sort .form-control {
  border: 1px solid rgba(55, 69, 87, 0.3);
  border-radius: 4px;
  height: 38px;
  /* max-width: 260px; */
  display: block;
  /* margin-left: auto; */
  color: #212529 !important;
  font-size: 14px;
  line-height: 36px;
  margin-bottom: 20px;
}

.search_group .form-control::placeholder {
  color: rgba(55, 69, 87, 0.5) !important;
}

.controls {
  padding: 4rem 3rem 0 3rem;
}

.upload-img .edit_icon {
  position: absolute;
  right: 17px;
  bottom: 5px;
  border-radius: 50%;
  background-color: var(--btn-primary-bg);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
  font-size: 1.5rem;
}

.upload-img .edit_icon:hover {
  background-color: var(--secondary-btn-color);
}

.creation_card .form-control {
  display: block;
  margin: auto;
  height: 50px;
  width: 100%;
  max-width: 320px;
  background: transparent;
  border-radius: 12px;
  border: 1px solid rgba(51, 51, 51, 0.1);
  padding-left: 20px;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 36px;
  color: var(--semi-transparent-dark);
  width: 100%;
  max-width: 320px;
}

.credits .primary-btn {
  display: block;
  margin: auto;
  font-weight: 600;
}

.credits .primary-btn:hover {
  transform: unset;
  background-color: var(--primary-color);
}

.creadit-total .upload-img {
  margin-bottom: 4.8rem;
}

.table-container {
  border-radius: 20px;
  border: 1px solid rgba(51, 51, 51, 0.1);
  box-shadow: 15px 15px 30px 0px rgba(0, 0, 0, 0.1);
  margin-top: 4rem;
}

.table-container .top-score-card {
  margin-top: 0rem;
  box-shadow: none;
  border-radius: unset;
  background-color: transparent;
}

.player-container {
  display: flex;
  align-items: center;
}

.player-image {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  margin-right: 10px;
}

.player-name {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 500;
}

.view-summary {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
}

.view-summary .chip-button {
  background-color: var(--primary-color);
  color: var(--white-color);
  font-size: 10px;
  border: none;
  padding: 1px 4px;
  border-radius: 4px;
}

.view-summary .chip-button:hover {
  background-color: var(--secondary-btn-color);
}

.add-button {
  background-color: var(--primary-color);
  color: var(--white-color);
  width: 28px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: var(--primary-color);
  border-radius: 6px;
  border: none;
}

.add-button i {
  font-size: 1.8rem;
}

.add-button:hover {
  background-color: var(--secondary-btn-color);
}

.team_card {
  margin: 0 auto;
  background-color: var(--white-color);
  border: 1px solid rgba(51, 51, 51, 0.1);
  border-radius: 2rem;
  padding: 2rem 0;
}

.team-card-header {
  padding: 3rem 4rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}

.team-card-logo {
  width: 150px;
  height: 150px;
  display: block;
  margin: auto;
}

.team-card-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 100px;
}

.team-card-header h2 {
  color: var(--text-primary);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 30px;
  text-transform: capitalize;
  text-align: center;
  padding-top: 1rem;
}

.player-list {
  min-height: 150vh;
  max-height: 150vh;
  overflow-y: scroll;
}

.player-list-title {
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 36px;
  text-transform: capitalize;
  color: var(--text-primary);
  padding: 3rem 3rem 2rem 3rem;
}

.player-item {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 12px 20px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  padding: 2rem 3rem;
}

.player-item .player-image {
  width: 55px;
  height: 65px;
}

.player-item .player-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
}

.playes-information {
  display: flex;
  align-items: center;
}

.player-details h4 {
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 22px;
  margin-bottom: 5px;
}

.player-details .price-text {
  width: 90px;
  min-width: 90px;
  height: 27px;
  font-size: 1.3rem;
  padding: 2px 15px;
  text-align: center;
  background: rgba(195, 255, 230, 0.3);
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  line-height: 22px;
  color: var(--btn-primary-bg);
}

.action-buttons {
  margin-top: 35px;
  display: flex;
  gap: 12px;
  justify-content: end;
  flex-wrap: wrap;
}

.action-buttons .close-btn,
.action-buttons .save-btn {
  padding: 5px 25px;
  border-radius: 5px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 32px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.action-buttons .close-btn {
  border-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: var(--text-primary);
  background-color: transparent;
  border-radius: 8px;
}

.close-btn:hover {
  transform: translateY(-2px);
}

.save-btn {
  background-color: var(--primary-color);
  color: var(--white-color);
  transition: background-color 0.3s ease;
}

.save-btn:hover {
  transform: translateY(-2px);
  background-color: var(--secondary-btn-color);
  color: var(--white-color);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}

.fade-in {
  animation: fadeIn 0.5s ease-in-out forwards;
}

.fade-out {
  animation: fadeOut 0.5s ease-in-out forwards;
}

/* filter-tile */

.search-filter_tile {
  /* border: 1px solid var(--primary-color); */
  background: var(--white-color);
  padding: 20px 10px;
}

.button-container .action-buttons .close-btn,
.button-container .action-buttons .save-btn {
  padding: 1px 25px;
  font-size: 15px;
}

.dropdown-label {
  font-weight: 700;
  font-size: 1.3rem;
  /* line-height: 20px; */
  color: var(--primary-color);
  margin-bottom: 8px;
  text-align: center;
}

.search-filter .dropdown .form-control {
  min-height: 38px;
  font-size: 13px;
  position: relative;
  background-color: transparent;
}

.icon-container {
  position: absolute;
  color: var(--primary-color);
  top: 11px;
  right: 12px;
  height: 100%;
}

.search-filter {
  position: relative;
}

.icon-container i {
  display: flex;
  align-items: center;
  font-size: 15px;
}

.search-filter .form-control:focus {
  border-color: var(--primary-color);
}

/* player stats */
/* ======
     player-card-start
====== */

/* ======
     player-card-start
====== */
.player-card-container {
  position: relative;
}

.player-card {
  /* display: flex; */
  background-image: url(../images/player-card-bg.png);
  background-size: cover;
  /* background-position: center center; */
  background-repeat: no-repeat;
  width: 100%;
  border-radius: 15px 15px 0 0;
  padding: 20px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  position: relative;
  height: 316px;
  min-height: 316px;
}

.player-card .player-info {
  flex: 1;
  padding: 20px;
  color: white;
  margin-top: 0px;
}

.player-card .player-info h1 {
  font-size: 80px;
  margin: 0;
  font-weight: 700;
  font-size: 120px;
  line-height: 146px;
}

.player-card .player-info p {
  font-size: 24px;
  margin: 0;
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 40px;
}

.player-card .player-info span {
  font-weight: bold;
  color: #ffffff;
}

.player-card .hero-player-image {
  position: absolute;
  right: 6%;
  top: 13px;
  height: 96%;
  /* width: 20%; */
  padding: 0px;
  margin: 0;
}

.player-card .hero-player-image img {
  height: 100%;
  width: 80%;
  object-fit: cover;
  object-position: center;
}

/* ======== */
.player-stats-container {
  display: flex;
  /* display: none; */
  background: #5a45af;
  color: white;
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  padding: 20px 0;
  /* position: absolute; */
  right: 0;
  left: 0;
  width: 100%;
  min-height: 120px;
  bottom: 0;
}

.player_stat-item {
  flex: 1;
  text-align: center;
}

.player_stat-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  border-right: 1px solid #f3fffa1f;
}

.player_stat-item .stat-value {
  font-weight: 700;
  font-size: 40px;
  line-height: 41px;
  margin-bottom: 5px;
  color: #59f1af;
}

.player_stat-item .stat-label {
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  text-transform: uppercase;
}

/* ====== 
         general_stats 
                       ====== */
.general_stats {
  margin-top: 80px;
}

.general_stats-top {
  /* display: flex;
    justify-content: space-between;
    align-items: center; */
  border-bottom: 1px solid #3333331a;
  padding-bottom: 20px;
}

.general_stats h2 {
  font-weight: 700;
  font-size: 34px;
  line-height: 34px;
  color: var(--primary-color);
  margin-bottom: 0;
  margin-left: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.general_stats .filters select {
  height: 36px;
  border: 1px solid rgba(55, 69, 87, 0.3);
  border-radius: 4px;
  padding: 0px 13px;
  margin-top: 10px;
  width: 100%;
  max-width: 300px;
  font-family: "Montserrat";
  font-weight: 400;
  font-size: 14px;
  line-height: 36px;
  color: rgba(55, 69, 87, 0.5);
}

.general_stats .stats-container {
  display: flex;
  background: #c3ffe64d;
  padding: 50px 20px;
  border-radius: 10px;
  justify-content: space-around;
  align-items: center;
  margin-top: 50px;
}

.general_stats .stat-item {
  text-align: center;
  flex: 1;
}

.general_stats .stat-item:not(:last-child) {
  border-right: 1px solid #3745571f;
}

.general_stats .stat-icon {
  margin-bottom: 7px;
}

.general_stats .stat-icon img {
  width: 28px;
  height: 28px;
  min-width: 28px;
}

.general_stats .stat-value {
  font-weight: 700;
  font-size: 28px;
  color: var(--primary-color);
  padding: 10px 0;
}

.general_stats .stat-label {
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #333333;
}

/* ====== */
.Statistics-container {
  background-color: #c3ffe64d;
  padding: 40px 20px;
  border-radius: 10px;
  margin-top: 50px;
}

.Statistics-container h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  color: var(--primary-color);

  text-transform: uppercase;
  margin-bottom: 40px;
}

.Statistics-container .stat-box,
.penalty-saves .stat-box {
  background-color: transparent;
  border: 2px solid #3745571f;
  border-radius: 12px;
  text-align: center;
  padding: 15px;
  font-size: 18px;
  margin-bottom: 20px;
}

.penalty-saves .stat-box {
  width: 100%;
  border: 2px solid var(--white-color);
}

.Statistics-container .stat-value,
.penalty-saves .stat-value {
  font-weight: 700;
  font-size: 28px;
  line-height: 37px;
  color: #374557;
}

.penalty-saves .stat-value {
  color: var(--white-color);
}

.Statistics-container .stat-label,
.penalty-saves .stat-label {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  color: #333333;
  padding-top: 10px;
}

.penalty-saves .stat-label {
  color: var(--white-color) !important;
}

.goal-section img {
  display: block;
  margin: auto;
  position: relative;
  top: -20px;
}

.Statistics-container .player-image {
  max-width: 90%;
  height: auto;
  margin: auto;
  display: block;
  width: 100%;
}

.Offensive-stats-container {
  border-radius: 20px;
  background: #41cd90;
  padding: 5rem 3rem;
  margin-top: 4rem;
}

.defensive-card {
  text-align: center;
  width: 100%;
  padding: 50px 30px;
}

.Offensive-stats-container h2 {
  font-weight: 700;
  font-size: 32px;
  line-height: 32px;
  color: var(--white-color);
  text-transform: uppercase;
  margin-bottom: 40px;
}

.top-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #fff;
  color: #6dc7a1;
  border-radius: 20px;

  padding: 3rem;
  margin-bottom: 7rem;
}

.top-stats .stat-box:not(:last-child) {
  border-right: 1px solid #3745571f;
}

.stat-box .stat-number {
  color: #41cd90;
  text-align: center;

  font-size: 30px;

  font-weight: 700;
  line-height: 36px;
}

.stat-box .stat-label {
  color: #333;
  text-align: center;

  font-size: 18px;

  font-weight: 400;
  line-height: 24px;
  padding-top: 10px;
}

.top-stats .stat-box {
  width: 33.33%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.side-stats {
  padding: 1rem;
  border-radius: 10px;
  padding-left: 6rem;
}

.side-stat {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  border-bottom: 1px solid rgba(243, 255, 250, 0.5);
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 36px;
  text-transform: uppercase;
}

.side-stat:last-child {
  border-bottom: none;
}

.stats-subtitle {
  color: var(--white-color);
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  line-height: 36px;
  text-transform: uppercase;
}

.defensive-card {
  text-align: center;
  width: 100%;
  padding: 0px 30px;
}

.defensive-card:not(:last-child) {
  border-right: 2px solid #ffff;
}

.add-border .col-md-4 {
  border-right: 2px solid #ffff;
}

.add-border .col-md-4:last-child {
  border-right: none;
}

/* General Styling */
.progress-stats {
  position: relative;
  height: 100%;
}

.progress.blue {
  width: 150px;
  height: 150px;
  line-height: 150px;
  background: none;
  margin: 0 auto;
  box-shadow: none;
  position: absolute;
  left: 50%;
  top: 70%;
  transform: translate(-50%, -70%);
}

.progress:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 12px solid #c3ffe6;
  position: absolute;
  top: 0;
  left: 0;
}

.progress > span {
  width: 50%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  z-index: 1;
}

.progress .progress-left {
  left: 0;
}

.progress .progress-bar {
  width: 100%;
  height: 100%;
  background: none;
  border-width: 12px;
  border-style: solid;
  position: absolute;
  top: 0;
}

.progress .progress-left .progress-bar {
  left: 100%;
  border-top-right-radius: 80px;
  border-bottom-right-radius: 80px;
  border-left: 0;
  -webkit-transform-origin: center left;
  transform-origin: center left;
}

.progress .progress-right {
  right: 0;
}

.progress .progress-right .progress-bar {
  left: -100%;
  border-top-left-radius: 80px;
  border-bottom-left-radius: 80px;
  border-right: 0;
  -webkit-transform-origin: center right;
  transform-origin: center right;
  animation: loading-1 1.8s linear forwards;
}

.progress .progress-value {
  width: 90%;
  height: 90%;
  border-radius: 50%;
  background: var(--primary-color);
  font-size: 22px;
  color: #fff;
  line-height: 135px;
  text-align: center;
  position: absolute;
  top: 5%;
  left: 5%;
}

.progress.blue .progress-bar {
  border-color: #59f1af;
}

.progress.blue .progress-left .progress-bar {
  animation: loading-2 1.5s linear forwards 1.8s;
}

@keyframes loading-1 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@keyframes loading-2 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(144deg);
    transform: rotate(144deg);
  }
}

@keyframes loading-3 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@keyframes loading-4 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(36deg);
    transform: rotate(36deg);
  }
}

@keyframes loading-5 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(126deg);
    transform: rotate(126deg);
  }
}

@media only screen and (max-width: 990px) {
  .progress {
    margin-bottom: 20px;
  }
}

/* ====== soccerboard ====== */
.scoreboard-container {
  background-image: url("../images/scoreboard-bg.png");
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-size: cover;
  background-position: center;
}
.ranking-banner {
  background-image: url("../images/ranking-bg.jpeg");
  border-radius: 1.5rem;
  position: relative;
  overflow: hidden;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-size: cover;
  background-position: center;
  position: relative;
}

.scoreboard {
  background: linear-gradient(
    0deg,
    #ffffff -0.11%,
    #fbfcfd 2.89%,
    #f1f6f9 5.89%,
    #e0ebf2 7.89%,
    #c8dce9 9.9%,
    #a9c8dc 11.9%,
    #9dc1d8 12.9%,
    #a9c8dc 13.9%,
    #c3d9e7 16.9%,
    #d9e7f0 19.91%,
    #eaf2f6 22.91%,
    #f6f9fb 26.92%,
    #fdfdfe 32.92%,
    #ffffff 49.94%,
    #fdfdfe 66.96%,
    #f6f9fb 73.97%,
    #eaf2f6 77.97%,
    #d9e7f0 81.98%,
    #c3d9e7 84.98%,
    #a9c8dc 86.99%,
    #9dc1d8 87.99%,
    #c0d7e5 90.99%,
    #dbe8f0 92.99%,
    #eff5f8 94.99%,
    #fbfcfd 98%,
    #ffffff 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
  border-radius: 0.8rem;
  min-width: 70rem;
  height: 5.5rem;
}

.score {
  background: linear-gradient(
    0deg,
    #be1b33 0%,
    #c01c32 38%,
    #c71f32 56%,
    #d42631 69%,
    #e62f2f 81%,
    #f2352f 86%,
    #ee3430 91%,
    #e33433 95%,
    #d13338 99%,
    #cb333b 100%
  );
  border-radius: 0 0 30px 30px;
  padding: 0.5rem 2rem;
  color: var(--white-color);
  font-size: 3rem;
  font-weight: 700;
  height: 5.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vs-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  width: 100%;
}
.vs-container h1 {
  margin: 0;
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  width: 100%;
  display: inline;
  text-align: center;
  color: #fff;
}
.vs-text {
  margin: 0 2rem;
}
.team-logo {
  width: 150px;
}
.team-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team {
  flex: 1;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--team-title);
}

.select-form {
  /* padding: 2.5rem 0; */
  margin: 5rem 0;
  background-color: var(--white-color);
  border: 1px solid rgba(51, 51, 51, 0.1);
  border-radius: 1.2rem;
}

.select-form h2 {
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 3.4rem;
  color: var(--primary-color);
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.select-form .top {
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  padding: 2rem;
  background: rgba(249, 249, 249, 0.5);
}

.select-container {
  padding: 0 2rem;
}

.select-form select {
  width: 100%;
  border: 1px solid rgba(55, 69, 87, 0.3);
  border-radius: 0.4rem;
  min-height: 4.8rem;
  color: rgba(55, 69, 87, 0.3);
  padding-left: 1rem;
  font-size: 1.6rem;
  line-height: 3.6rem;
  margin: 2rem;
  margin-left: 0;
}
.select-captain {
  width: 100%;
  border: 1px solid rgba(55, 69, 87, 0.3);
  border-radius: 0.4rem;
  min-height: 4.8rem;

  padding-left: 1rem;
  font-size: 1.6rem;
  line-height: 3.6rem;
  margin: 2rem;
  margin-left: 0;
}
/* player ground */
.campo {
  background-image: url("../images/football-ground-bg.png");
  background-size: cover;
  width: 100%;
  height: 600px;
  display: flex;
  flex-direction: column;
  background-position-x: center;
  background-repeat: no-repeat;
}
.player_campo {
  width: 75px;
  border-radius: 100%;
  position: relative;
  background: transparent;
}

/* player-card */
.team_card {
  margin: 0 auto;
  background-color: var(--white-color);
  border: 1px solid rgba(51, 51, 51, 0.1);
  border-radius: 20px;
  padding: 20px 0;
  padding-top: 0;
  overflow: hidden;
}

.team_card .card-header {
  text-align: center;
  padding: 2rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}

.team_card .card h2 {
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 36px;
  text-transform: capitalize;
  color: var(--text-primary);
}

.team_card h3 {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 36px;
  text-transform: capitalize;
  color: var(--text-primary);
}

.player-list {
  display: flex;
  flex-direction: column;
}

.player-info {
  flex-grow: 1;
  padding: 0 10px;
}

.player-info h4 {
  font-family: "Montserrat";
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 30px;
  margin-bottom: 0;
}

.player-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
}

.player-item .disc {
  font-size: 14px;
  line-height: 18px;
  color: var(--medium-gray);
}

.player-item .line {
  width: 4px;
  height: 65px;
  background-color: #fcb735;
  border-radius: 0px 20px 20px 0px;
  margin-right: 1rem;
}

.cen .line {
  border-left: 4px solid #fcb735;
}
.por .line {
  border-left: 4px solid #36df95;
}
.def .line {
  border-left: 4px solid #ff3434;
}
.att .line {
  border-left: 4px solid #353ef3;
}

.cen-line {
  /* border-left: 4px solid #fcb735; */
  border-left: 4px solid #ff3434;
}
.por-line {
  border-left: 4px solid #fcb735;
}
.def-line {
  border-left: 4px solid #36df95;
}
.att-line {
  border-left: 4px solid #353ef3;
}
.tutti .line {
  border-left: 4px solid #5a45af;
}
.player-list.player-position .player-image {
  width: 65px;
}

.categories {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  padding: 15px 16px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  flex-wrap: wrap;
}

.category {
  font-size: 14px;
  font-weight: 600;
  line-height: 25px;
  text-transform: capitalize;
  padding: 0px 10px;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid rgba(51, 51, 51, 0.1);
  border-radius: 100px;
  color: var(--medium-gray);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
  margin-bottom: 10px;
}
.category .dot {
  width: 7px;
  height: 7px;
  border-radius: 100px;
  transition: background-color 0.3s ease;
}
.category .dot.por {
  background-color: #fcb735;
}
.category .dot.dif {
  background-color: #36df95;
}
.category .dot.cen {
  background-color: #ff3434;
}
.category .dot.att {
  background-color: #353ef3;
}
.category .dot.tutti {
  background-color: #5a45af;
}
.category:hover {
  background-color: #ff3434;
  color: white;
}
.category:hover .dot {
  /* background-color: white; */
}
.btn.add-player {
  background-color: var(--primary-color);
  color: var(--white-color);
  transition: background-color 0.3s ease;
  padding: 6px 15px;
  gap: 8px;
  border-radius: 6px;
  border: none;
  font-weight: 600;
  font-size: 17px;
  line-height: 22px;
  -webkit-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

.btn.add-player:hover {
  transform: translateY(-2px);
  background-color: var(--secondary-btn-color);
}
.bench-player-card .team_card {
  border-radius: 0 0 20px 20px;
  padding: 0;
}
.bench-player-card .player-item {
  border: none;
  background: rgba(195, 255, 230, 0.3);
  border-radius: 12px;
  padding: 12px 18px;
}
.bench-player-cards {
  padding: 20px;
}
.bench-player-cards .player-image {
  width: 65px;
}
.remove-btn {
  background: transparent;
  border: none;
  color: var(--white-color);
}

.result-banner {
  background: url("../images/banner.png") no-repeat;
  background-size: cover;
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding: 20px;
}

.result-banner .result-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  min-width: 270px;
}

.result-banner .result-card img {
  object-fit: cover;
  height: 150px;
  margin-bottom: 15px;
}

.result-banner .result-card h2 {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  color: var(--white-color);
}
.result_card-header {
  background-color: var(--btn-primary-bg);
  padding: 15px;
  border-radius: 16px 16px 0 0;
}
.result-banner .card-content {
  padding: 20px;
}
.result-banner .result-card h3 {
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--text-color);
  font-weight: 500;
}

.result-banner .result-card p {
  font-size: 24px;
  font-weight: bold;
  padding: 0;
  margin: 0;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.badge {
  border-radius: 10px;
  background-color: #4caf50;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
}
.player-point-badge {
  border-radius: 5px;
  background-color: #ff3434;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
}
.player-point-badge.primary {
  background-color: var(--btn-primary-bg);
}
.player-list.day-result .player-image {
  width: 50px;
  height: 55px;
}

.player-list.day-result .player-info h4 {
  font-weight: 600;
  font-size: 15px;
  line-height: 25px;
}
.result-tiles {
  margin: 40px 0 25px 0;
}
.total-card {
  padding: 20px;

  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;

  background-color: var(--white-color);
  border: 1px solid rgba(51, 51, 51, 0.1);
}
.total-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  margin-bottom: 20px;
  color: var(--primary-color);
}
.total-card .value {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
}
.player-list.day-result .player-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(51, 51, 51, 0.1);
  padding: 10px 0;
}
.player-list.day-result .stat-header {
  background-color: #f9f9f9e8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
}
.stat-header h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
}
.stat-header .stat-header-left {
  width: 60%;
  padding-left: 5px;
}
.stat-header-right {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.player-stat .player-item {
  width: 60%;
  border: none;
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
}
.player-stat .stat-value {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
}
.player-stat .player-points-info {
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
}
.line {
  width: 100%;
  height: 1px;
  background: rgba(51, 51, 51, 0.1);
  margin-bottom: 2px;
  display: block;
  margin-left: auto;
}
.tooltip-c {
  position: relative;
  display: inline-block;
  opacity: 1;
}

.tooltip-c .tooltiptext {
    visibility: hidden;
    width: 120px;
    background-color: #41cd90;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    position: absolute;
    z-index: 1;
    left: -16px;
    bottom: -34px;
    font-size: 14px;
}

.tooltip-c:hover .tooltiptext {
  visibility: visible;
}