:where([class^="ri-"])::before {
  content: "\f3c2";
}
.hero-section {
  background-image: url("images/heroImages/hero.jpg");
  background-size: cover;
  background-position: center;
}
.custom-scrollbar::-webkit-scrollbar {
  height: 6px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #ff6b35;
  border-radius: 10px;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #e05a2b;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #ff6b35;
  border-radius: 50%;
  cursor: pointer;
}
.custom-checkbox {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 4px;
}
.custom-checkbox:hover input ~ .checkmark {
  border-color: #ff6b35;
}
.custom-checkbox input:checked ~ .checkmark {
  background-color: #ff6b35;
  border-color: #ff6b35;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}
.custom-checkbox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.custom-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}
.custom-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e2e8f0;
  transition: 0.4s;
  border-radius: 24px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
input:checked + .slider {
  background-color: #ff6b35;
}
input:checked + .slider:before {
  transform: translateX(26px);
}
.custom-radio {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
}
.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.radio-mark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 50%;
}
.custom-radio:hover input ~ .radio-mark {
  border-color: #ff6b35;
}
.custom-radio input:checked ~ .radio-mark {
  border-color: #ff6b35;
}
.radio-mark:after {
  content: "";
  position: absolute;
  display: none;
}
.custom-radio input:checked ~ .radio-mark:after {
  display: block;
}
.custom-radio .radio-mark:after {
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff6b35;
}
.profile-nav-item.active {
  @apply bg-primary text-white hover:bg-primary hover:text-white;
}
