/* 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;
} */

/* Dark mode  */
/* .dark-mode {
  background-color: var(--background-color);
  color: var(--secondary-text-color) !important;
  transition: all 0.5s;
}
.dark-mode header,
.dark-mode nav {
  background: var(--black);
  transition: all 0.5s;
}
.dark-mode nav .links a {
  color: var(--secondary-text-color);
}
.dark-mode nav .links .active-link {
  color: var(--primary-color);
  background: var(--activeTab-background-color);
}
.dark-mode nav .profile a {
  color: var(--secondary-text-color);
}
.dark-mode .bell-icon .light-bell {
  display: none;
}
.dark-mode .bell-icon .dark-bell {
  display: block;
}

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

.dark-mode .main-heading-color {
  color: var(--primary-text-color);
}

.dark-mode .secondary-btn , .dark-mode  .view-profile-btn {
  border: 1px solid var(--secondary-btn-border-color);
  background: transparent;
  color: var(--golden);
}
.dark-mode .text-color  {
  color: var(--primary-text-color);
}
.dark-mode .profile-view {
  background: #2A2E32;
} */

/* .dark-mode .image-section {
  background: #2A2E32;
} */

.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: #bdb187 !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;
}

.dark-mode .form-control {
  background: #1f2224;
  color: white;
}

.dark-mode .select2-container--default .select2-selection--single {
  background: #1f2224;
  color: white !important;
}

.dark-mode .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: white !important;
}

.dark-mode .select2-container--open .select2-dropdown--below {
  background: #1f2224;
  color: white;
}

.dark-mode .select2-container--default .select2-search--dropdown .select2-search__field {
  background: #1f2224;
  color: white;
}

.dark-mode .select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: white;
}

.dark-mode .profile-dropdown {
  background: #1f2224;
  color: var(--secondary-text-color);
}

.dark-mode .profile-dropdown button {
  background: #1f2224;
  color: var(--secondary-text-color);
}

.dark-mode .profile-dropdown a:hover {
  color: var(--primary-color);
  background: var(--activeTab-background-color);
}

.dark-mode .profile-dropdown button:hover {
  color: var(--primary-color);
  background: var(--activeTab-background-color);
}

.dark-mode .dark-assesment-icon {
  background-color: var(--primary-color) !important;
}


@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;
}

.dark-mode .swimmer-dashboard .list-style a {
  color: #b9b9ba;
}

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

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

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

.dark-mode a.btn-link {
  color: var(--primary-color);
}

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

.overflow-hidden {
  overflow: hidden;
}

input[type="checkbox"]:checked {
  accent-color: #bdb187;
  /* This changes the checkbox color */
}

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

.dark-mode .dropdown-menu-link .dropdown-item {
  color: #b9b9ba !important;
}

.dark-mode .swal2-popup.swal2-modal.swal2-show {
  color: #b9b9ba !important;
  background: black;
  border: 1px solid #bdb187;
}

.ap-link {
  color: #bdb187 !important;
}


.h-50p {
  height: 40px !important;
}

.w-50p {
  width: 40px !important;
}

.crm-timing-page .venue-container1 {
  width: 60% !important;
}


.crm-timing-page .venue-container2 {
  width: 40% !important;
}

.w-80 {
  width: 80%;
}

.w-20 {
  width: 20%;
}

.light-mode .ap-dark-bg {
  background-color: #bdb187 !important;
}

.dark-mode .ap-dark-bg {
  background-color: #212529 !important;
}



.assessment-grids .border-end {
  border-color: #525252 !important;
}

.timetable-modal {
  z-index: 99999;
}


.form-control,
.timer-container {
  cursor: pointer !important;
}