/* #region Responsive Mixins */
/* #region Responsive */
/* #endregion */
/* #endregion */
/* Toggle Switch Begins */
main.product > section.wrapper .panels .togglesection {
  background-color: #eaf5ff;
  padding-top: 1em;
  /* Container for the toggle and labels */
  /* The toggle switch itself */
  /*input:checked + .slider {
					background-color: white;
					border: 3px solid #3797fd;
				}

				input:checked + .slider:before {
					transform: translateX(30px);
				}*/
  /* Toggle labels styling */
  /*.toggle-label-business {
					color: #3797fd; 
				}*/
  /* Adjust the active state background color */
}

main.product > section.wrapper .panels .togglesection .toggle-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*background-color: #e6f0fc;*/
  background-color: #ffffff;
  border-radius: 50px;
  padding: 0;
  margin: 1em auto 0;
  /*width: 220px;*/
  width: 300px;
  position: relative;
  height: 30px;
  line-height: 30px;
}

main.product > section.wrapper .panels .togglesection .toggle-switch {
  position: relative;
  width: 60px;
  height: 30px;
  margin: 0 auto;
  flex-shrink: 0;
}

main.product > section.wrapper .panels .togglesection .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

main.product > section.wrapper .panels .togglesection .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #3797fd;
  /* Default background when unchecked */
  border-radius: 50px;
  transition: 0.4s;
  background-color: white;
  border: 3px solid #3797fd;
}

main.product > section.wrapper .panels .togglesection .slider:before {
  position: absolute;
  content: "";
  /*height: 26px;
					width: 26px;
					left: 2px;
					bottom: 2px;*/
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: #3797fd;
  border-radius: 50%;
  transition: 0.4s;
}

main.product > section.wrapper .panels .togglesection #tabToggle2 + .slider:before {
  transform: translateX(30px);
  /* Slide effect */
}

main.product > section.wrapper .panels .togglesection .toggle-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /*padding: 0 10px;*/
  /*pointer-events: none;*/
  /* Disable pointer events for labels */
}

main.product > section.wrapper .panels .togglesection .toggle-labels span {
  cursor: pointer;
  user-select: none;
}

main.product > section.wrapper .panels .togglesection .toggle-label-home,
main.product > section.wrapper .panels .togglesection .toggle-label-business {
  font-weight: bold;
  /*color: white;*/
  color: #3797fd;
  cursor: pointer;
  width: 45%;
  text-align: center;
  transition: color 0.3s;
}

main.product > section.wrapper .panels .togglesection .toggle-container input:checked ~ .toggle-labels .toggle-label-home {
  color: #3797fd;
  /* Inactive state for home label when business is active */
}

main.product > section.wrapper .panels .togglesection .toggle-container input:checked ~ .toggle-labels .toggle-label-business {
  color: white;
  /* Active state for business label */
}

main.product > section.wrapper .panels .togglesection .toggle-label-home.active {
  color: white;
  /* Active state for home label */
  background-color: #3797fd;
  border-radius: 50px 0 0 50px;
}

main.product > section.wrapper .panels .togglesection .toggle-label-business.active {
  color: white;
  /* Active state for home label */
  background-color: #3797fd;
  border-radius: 0 50px 50px 0;
}

/* Toggle Switch Ends */
