.content-wrap{
  display: flex;
  flex-wrap: wrap;
  place-content: space-evenly;
  row-gap: 24px;
}
.sec-page.flex-container {
  justify-content: space-evenly;
  display: flex;
  flex-wrap: wrap;
  /* align-items: center; */
}
.sec-page.flex-container {
  display: flex;
}
.sec-page .flex-item {
  flex-basis: 67%;
  overflow: hidden;
  /* padding: 10px; */
  box-sizing: border-box;
}

.sec-page .flex-item:nth-child(2) {
  flex-basis: 33%;
}
.sec-page .inner-item{
  display: inline-block;
}
button.delete-button {
  padding: 8px 8px 4px 8px;
  margin-left: 16px;
}
button.delete-button:hover {
  background: #02A8E0;
  opacity: 0.8;
}
.card-footer.my-element {
  width: -webkit-fill-available;
}
@media (max-width: 1024px) {

  .sec-page.flex-container {
    display: block;
  }
}

/* ------------------new style----------- */
.options-wrapper {
  margin: 0px 8px;
}
.options-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 100px;
}
.options-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width:calc((100% / 3) - (((3 - 1) / 3) * 16px));
  padding: 8px;
  border-radius: 8px;
  -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
  -moz-box-sizing: border-box;    /* Firefox, other Gecko */
  box-sizing: border-box;         /* Opera/IE 8+ */
}
.options-content:hover {
  background: #F5EDFF;
}
.option-image {
  width: 94px;
  height: 94px;
  border-radius: 100px;
  background-size: cover;
  background-position: center;
}
.options-content .paragraph {
  font-size: 14px;
  font-weight: 600;
}
.prod-data {
  .prod-data {
    position:initial;
  }
  background: #F5EDFF;
  width: -webkit-fill-available;
  left: 0px;
  padding: 24px;
  box-shadow: 0px -4px 8px 2px rgba(0, 0, 0, 0.25);
}

@media only screen and (min-width: 725px) {
  .prod-data {
    position:initial;
  }
  .options-content {
    width:calc((100% / 4) - (((4 - 1) / 4) * 16px));
  }
  .option-image {
    width: 120px;
    height: 120px;
  }
  .options-content .paragraph {
    margin-top:16px;
    font-size: 16px;
    font-weight: 600;
  }
}

