.target-file input[type="file"] {
  display: none;
}
.target-file .custom-file-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  cursor: pointer;
  font-size: 14px;
}
.c-loader {
  position: fixed;
  background: rgba(255, 255, 255, 0.75);
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
}

*:focus {
  outline: none;
}

.switch {
  position: relative;
  display: inline-block;
  /* Make the switch smaller by reducing width and height */
  width: 40px;
  height: 20px;
}

/* Hide the default checkbox input */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The background slider of the switch */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  /* Smoother transition when toggled */
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/* The small circle that moves inside the slider */
.slider:before {
  position: absolute;
  content: "";
  /* Adjust size for a smaller circle */
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/* Change the background color when the switch is toggled (checked) */
input:checked + .slider {
  background-color: #2196f3;
}

/* Add a focus effect when clicking the switch */
input:focus + .slider {
  box-shadow: 0 0 1px #2196f3;
}

/* Move the circle when the switch is toggled */
input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

/* Rounded sliders styling */
.slider.round {
  border-radius: 20px;
}

.slider.round:before {
  border-radius: 50%;
}
