.menu-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 750px;
  //margin: 0 auto;
}

.wowp-item {
  max-width: 750px;
  //margin: 0 auto;
  //width: 100% ;
  background-color: #ffffff;

  fieldset {
    border: none;
    margin-bottom: 0;
  }

  .wowp-item_heading_toogle {
    display: flex;
    width: 40px;
    height: 40px;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    background-color: #f7f7f7;
    color: var(--wowp-orange);
    &:hover {
      background-color: #c7c7c7;
    }
    span:last-child{
      display: none;
    }
  }

  &[open] {
    .wowp-item_heading_toogle {

      span:last-child{
        display: block;
      }
      span:first-child {
        display: none;
      }
    }
  }

}

.wowp-item_heading {
  display: flex;
  gap: 15px;
  height: 48px;
  align-items: center;
  background-color: var(--wowp-bg);
  .dashicons-move {
    cursor: move;
    color: var(--wowp-blue);
  }
  .dashicons-trash {
    color: var(--wowp-danger);
    cursor: pointer;
  }
  list-style: none;
  &::-webkit-details-marker {
    display: none;
  }
}

.wowp-item_heading_type {
  margin-left: auto;
  padding: 0 10px;
}

.wowp-item_content fieldset {
  border-top: none;
}

.wowp-item_heading_icon {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  img {
    max-width: 20px;
    max-height: 20px;
  }
}
.btn-add-item {
  max-width: 750px;
  margin-top: 48px;
}