.cxw-burger {
  background-color: transparent;
  border: none;
}
@media (min-width: 960px) {
  .cxw-burger {
    display: none;
  }
}
.cxw-burger--icon {
  width: 28px;
  height: 21px;
  position: relative;
  margin: auto;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.cxw-burger--icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background-color: var(--Color-Text);
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.cxw-burger--icon span:nth-child(1) {
  top: 0;
}
.cxw-burger--icon span:nth-child(2), .cxw-burger--icon span:nth-child(3) {
  top: 9px;
}
.cxw-burger--icon span:nth-child(4) {
  top: 18px;
}
.cxw-burger[aria-expanded=true] .cxw-burger--icon span {
  background-color: var(--Color-Primary);
}
.cxw-burger[aria-expanded=true] .cxw-burger--icon span:nth-child(1) {
  top: 8px;
  width: 0;
  left: 50%;
}
.cxw-burger[aria-expanded=true] .cxw-burger--icon span:nth-child(2) {
  transform: rotate(45deg);
}
.cxw-burger[aria-expanded=true] .cxw-burger--icon span:nth-child(3) {
  transform: rotate(-45deg);
}
.cxw-burger[aria-expanded=true] .cxw-burger--icon span:nth-child(4) {
  top: 4px;
  width: 0;
  left: 50%;
}

/*# sourceMappingURL=burger.css.map */
