/* Light mode */
/* .light-mode {
  background-color: #f8f9fa;
  transition: all 0.5s;
}
.light-mode header,
.light-mode nav {
  background: var(--black);
  transition: all 0.5s;
}
.light-mode nav .links a {
  color: var(--nav-text-color);
}
.light-mode header ul li a,
.light-mode header ul li {
  color: var(--main-nav-text-color);
}

.light-mode header,
.light-mode nav {
  background: #ffffff;
  transition: all 0.5s;
}
.light-mode nav .profile a {
  color: var(--nav-text-color);
}

.light-mode nav .links .active-link {
  color: var(--activeTab-light-color);
  background: var(--primary-color);
}

.light-mode .bell-icon .light-bell {
  display: block;
}
.light-mode .bell-icon .dark-bell {
  display: none;
}

.light-mode .card-background {
  background: var(--card-background-color-light);
}

.light-mode .primary-btn {
  background: var(--primary-color);
}

.light-mode .secondary-btn {
  background: var(--secondary-btn-bg-color);
}
.light-mode .view-profile-btn {
  border: 1px solid #e5e5e5;
} */



.swimmer-selection:hover {
  cursor: pointer;
  border: 1px solid #dee2e6 !important;
  border-color: var(--primary-color) !important;
}


.day-container-style2.disabled {
  background-color: #e3e3e3;
  color: black;
}

.active-timing {
  background-color: var(--primary-color) !important;
  color: black !important;
}

.overlay {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background: #000000d1;
}

.overlay__inner {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
}

.overlay__content {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.spinner {
  width: 75px;
  height: 75px;
  display: inline-block;
  border-width: 2px;
  border-color: rgba(255, 255, 255, 0.05);
  border-top-color: #fff;
  animation: spin 1s infinite linear;
  border-radius: 100%;
  border-style: solid;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}


.my-progress-dashboard {
  width: 20% !important;
}


.icon-swim svg {
  cursor: pointer;
}




@keyframes growProgressBar {

  0%,
  33% {
    --pgPercentage: 0;
  }

  100% {
    --pgPercentage: var(--value);
  }
}

@property --pgPercentage {
  syntax: '<number>';
  inherits: false;
  initial-value: 0;
}

.progressbar {
  --size: 12rem;
  --fg: #C1A455;
  --bg: #525252;
  animation: growProgressBar 3s 1 forwards;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(closest-side, #212529 80%, transparent 0 99.9%, black 0),
    conic-gradient(var(--fg) calc(var(--pgPercentage) * 1%), var(--bg) 0);
  font-size: calc(12px / 5);
}

.progressbar::before {
  counter-reset: percentage var(--value);
  content: counter(percentage) '%';
  font-size: 12px;
}


.swimmer-dashboard .list-style a {
  color: #212529;
}

.swimmer-dashboard .list-style.active-tab a {
  color: var(--primary-color);
}

.progressbar::before {
  color: white;
}
 

.dropdown-menu-link .profile-dropdown {
  margin-top: 20px;
}


a.btn-link {
  color: #212529;
}
 

.assessment-timing-list .disabled {
  background-color: #e3e3e3;
  color: black;
}

.overflow-hidden {
  overflow: hidden;
}



input[type="checkbox"]:checked {
  accent-color: var(--primary-color);
  /* This changes the checkbox color */
}


.light-mode .dropdown-menu-link .dropdown-item {
  color: #505052 !important;
}
 