.custom-accordian-arrow::after {
  background-image: url("../images/homepage/chevron-down-solid.svg") !important;
  transform: unset;
}

.custom-accordian-arrow:not(.collapsed)::after {
  background-image: url("../images/homepage/chevron-down-solid.svg") !important;
  transform: rotate(-180deg);
}

.Slider-Menus {
  background-color: #fff;
  width: 100%;
  height: 100%;
  overflow-x: scroll;
}

.Slider-Menus::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.Slider-Menus {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.toggle {
  position: relative;
  display: inline-block;
  width: 45px;
  height: 25px;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.circle {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.circle:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .circle {
  background-color: #2196f3;
}

input:focus + .circle {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .circle:before {
  -webkit-transform: translateX(19px);
  -ms-transform: translateX(19px);
  transform: translateX(19px);
}

/* Rounded circles */
.circle.round {
  border-radius: 34px;
}

.circle.round:before {
  border-radius: 50%;
}
