.option-panel-toggle {
  position: relative;
  display: flex;
  cursor: pointer;
}
.option-panel-toggle svg {
  width: 20px;
  height: auto;
}
.option-panel-toggle svg path {
  fill: var(--heading-color-one);
}

.option-panel {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.option-panel.open {
  opacity: 1;
  visibility: visible;
}

.option-panel-content {
  position: absolute;
  top: 0;
  left: -100%; /* Initially off-screen to the left */
  width: 100%;
  height: 100%;
  background-color: transparent; /* Adjust as per your design */
  transition: left 0.3s ease; /* Slide animation */
}

.option-panel.open .option-panel-content {
  left: 0; /* Slide in from the left */
}

.option-panel-close {
  color: var(--color-white);
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 24px;
  background: var(--color-set-one-2);
  cursor: pointer;
  z-index: 9999;
}
.option-panel-close:hover, .option-panel-close:focus {
  background: var(--background-white);
  color: var(--color-set-one-1);
  text-decoration: none;
}

.admin-bar .option-panel-close {
  top: 32px;
}/*# sourceMappingURL=optionpanel.css.map */