.wpbh-toggler {
  display: block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
	overflow: visible;
}
.wpbh-toggler:hover {
	opacity: 0.9;
}
.wpbh-toggler.wpbh-active:hover {
	opacity: 0.9;
}
.wpbh-toggler.wpbh-active .wpbh-toggler-inner,
.wpbh-toggler.wpbh-active .wpbh-toggler-inner::before,
.wpbh-toggler.wpbh-active .wpbh-toggler-inner::after {
	background-color: #000;
}

.wpbh-toggler-box {
  width: 40px;
  height: 24px;
  display: block;
	position: relative;
}
.wpbh-toggler-inner {
  display: block;
  top: 50%;
	margin-top: -2px;
}
.wpbh-toggler-inner, .wpbh-toggler-inner::before, .wpbh-toggler-inner::after {
	width: 40px;
	height: 4px;
	background-color: #000;
	border-radius: 4px;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease;
}
.wpbh-toggler-inner::before, .wpbh-toggler-inner::after {
	content: "";
	display: block;
}
.wpbh-toggler-inner::before {
	top: -10px;
}
.wpbh-toggler-inner::after {
	bottom: -10px;
}
.wpbh-toggler--squeeze .wpbh-toggler-inner {
  transition-duration: 0.075s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.wpbh-toggler--squeeze .wpbh-toggler-inner::before {
	transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.wpbh-toggler--squeeze .wpbh-toggler-inner::after {
	transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.wpbh-toggler--squeeze.wpbh-active .wpbh-toggler-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.wpbh-toggler--squeeze.wpbh-active .wpbh-toggler-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.wpbh-toggler--squeeze.wpbh-active .wpbh-toggler-inner::after {
	bottom: 0;
	transform: rotate(-90deg);
	transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}
