/* dark mode selector*/
#dark_mode_selector {
  .dark-mode-icon {
    width: 20px;
    height: 20px;
    background-position: center center;
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .icon-custom-day {
    background-image: url("../images/sidebar/day.png");
  }

  .icon-custom-night {
    background-image: url("../images/sidebar/night.png");
  }

  .form-switch #dark_mode_cb.form-check-input[type=checkbox] {
    &:checked {
      background-color: rgba(0, 0, 0, .25);
      --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23000'/%3e%3c/svg%3e");
    }
  }
}