.psbm-wrapper {
  --psbm-closed-bg: transparent;
  --psbm-dropdown-bg: #f1dee0;
  --psbm-dropdown-bg-hover: #ead7da;
  --psbm-text: #959595;
  --psbm-text-hover: #7e7e7e;
  --psbm-text-active: #6f6f6f;
  --psbm-icon: #bdb7bd;
  --psbm-font: "Poppins", sans-serif;
  --psbm-font-size: 21px;
  --psbm-item-line-height: 32px;
  --psbm-dropdown-padding: 0px;
  --psbm-item-gap: 0px;
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  position: relative;
  width: 100%;
}

.psbm-wrapper:not(.is-open) {
  background: var(--psbm-closed-bg) !important;
}

.psbm-toggle {
  align-items: center;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  color: var(--psbm-icon) !important;
  cursor: pointer;
  display: inline-flex;
  height: 56px;
  justify-content: center;
  margin-left: auto;
  outline: none;
  padding: 0;
  text-decoration: none !important;
  width: 56px;
}

.psbm-icon {
  display: inline-block;
  position: relative;
}

.psbm-icon-burger {
  height: 22px;
  width: 28px;
}

.psbm-icon-burger span {
  background: var(--psbm-icon) !important;
  border-radius: 2px;
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.psbm-icon-burger span:nth-child(1) {
  top: 2px;
}

.psbm-icon-burger span:nth-child(2) {
  top: 10px;
}

.psbm-icon-burger span:nth-child(3) {
  top: 18px;
}

.psbm-icon-close {
  display: none;
  height: 28px;
  width: 28px;
}

.psbm-icon-close span {
  background: var(--psbm-icon) !important;
  border-radius: 2px;
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 13px;
}

.psbm-icon-close span:nth-child(1) {
  transform: rotate(45deg);
}

.psbm-icon-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.psbm-icon-custom {
  display: none;
}

.psbm-icon-custom .dashicons {
  color: var(--psbm-icon) !important;
  font-size: 34px;
  height: 34px;
  line-height: 34px;
  width: 34px;
}

.psbm-icon-custom img,
.psbm-icon-custom svg,
.psbm-icon-custom > span,
.psbm-icon-custom > i {
  color: var(--psbm-icon) !important;
  display: inline-block;
  height: 34px;
  width: 34px;
}

.psbm-panel {
  background: var(--psbm-dropdown-bg) !important;
  box-sizing: border-box;
  left: 0;
  margin-top: 0;
  max-width: 100vw;
  overflow: hidden;
  padding: var(--psbm-dropdown-padding) 0;
  position: fixed;
  right: 0;
  top: var(--psbm-panel-top, 0px);
  transform: none;
  width: 100vw;
  z-index: 9998;
}

.psbm-menu-list {
  display: flex;
  flex-direction: column;
  gap: var(--psbm-item-gap);
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.psbm-menu-list > li {
  width: 100%;
}

.psbm-menu-list a {
  color: var(--psbm-text) !important;
  display: block;
  font-family: var(--psbm-font);
  font-size: var(--psbm-font-size);
  font-style: normal;
  font-weight: 400;
  line-height: var(--psbm-item-line-height);
  padding: 0;
  text-decoration: none !important;
  width: 100%;
}

.psbm-menu-list a:hover,
.psbm-menu-list a:focus {
  background: var(--psbm-dropdown-bg-hover) !important;
  color: var(--psbm-text-hover) !important;
  text-decoration: none !important;
}

.psbm-menu-list .current-menu-item > a,
.psbm-menu-list .current_page_item > a,
.psbm-menu-list a[aria-current="page"] {
  color: var(--psbm-text-active) !important;
}

.psbm-wrapper.is-open .psbm-icon-burger {
  display: none;
}

.psbm-wrapper.is-open .psbm-icon-close {
  display: inline-block;
}

.psbm-wrapper.has-custom-icons .psbm-icon-burger,
.psbm-wrapper.has-custom-icons .psbm-icon-close {
  display: none !important;
}

.psbm-wrapper.has-custom-icons .psbm-icon-open-custom {
  display: inline-block;
}

.psbm-wrapper.has-custom-icons.is-open .psbm-icon-open-custom {
  display: none;
}

.psbm-wrapper.has-custom-icons.is-open .psbm-icon-close-custom {
  display: inline-block;
}

@media (max-width: 767px) {
  .psbm-wrapper {
    max-width: 100%;
  }

  .psbm-menu-list a {
    font-size: 19px;
  }
}
