/* 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: var(--primary-color) !important;
    color: black !important;
}

.assessment-timing-list .timing-div:hover {
    background-color: var(--primary-color) !important;
    color: #000 !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 .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: fff;
    border: 1px solid var(--primary-color);
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.dropdown-item:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.dropdown-item:hover {
    background-color: var(--primary-color) !important;
    color: #fff !important;
}

.bg-primary,
.btn-primary,
.btn-primary:hover,
.bg-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.modal-backdrop.fade.show {
    z-index: -1 !important;
}
