.post-card-wrapper {
  display: grid;
  min-width: fit-content;

  border-radius: 6px;
  border: 1px solid #EEEAF0;
  background: #FFF;
  box-shadow: 0px 5px 8px 0px rgba(65, 29, 87, 0.08);
  max-width: 450px;
}

.post-card-top {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 15px;
  padding: 15px;
}

.post-card-wrapper img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 0 3px #000;
  height: 100%;
  object-fit: contain;
}


.post-card-right {
  display: grid;
  gap: 10px;
  align-items: center;
  align-content: flex-start;

}

h2.pro-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
}

h2.upsell-pro-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
}

.post-card-wrapper h2,.post-card-wrapper p {
  margin: 0
}

.post-card-wrapper p.shipping {
  display: grid;
  grid-template-columns: auto auto;
  gap: 5px;
  align-items: center;
  color: #543468;
}

.post-shipping-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post-shipping-details p.shipping,
.post-shipping-details p.Discount {
  display: grid;
  grid-template-columns: auto auto;
  gap: 5px;
  align-items: center;
  color: #543468;
}

button.post-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  min-width: 100px;
  justify-content: center;
  border: 1px solid #C6BBCD;
  background: #FFF;
  border-radius: 4px;
  color: #411D57;
  font-weight: 500;
}

.post-actions-button {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  row-gap: 10px;

}

button.post-btn:hover {
  background: #EEEAF0;
  border: 1px solid #EEEAF0;
  cursor: pointer;
  color: #411D57;
}

.post-card-bottom {
  border-top: 1px solid #EEEAF0;
  padding: 15px;
  box-shadow: 0px 4px 4px 0px rgba(65, 29, 87, 0.04);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.post-analystic-items {
  display: flex;
  gap: 3px;
  align-items: center;
  border-right: 2px solid #C6BBCD;
  flex-grow: 1;
  padding-right: 5px;
  cursor: pointer;
}

.post-analystic-items p {
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: #543468;
}

.post-analystic-items:last-child {
  border: none;
  padding: 0;
}

.info-text{
  width: 175px;
}
.infotool:hover svg path{stroke: #db1f76;}
.ws-modal-header .ws-close_button:hover{background: #EEEAF0;}



@media only screen and (max-width: 350px) {
  .post-card-top {
    grid-template-columns: 1fr;
  }

  .post-card-right {
    justify-content: center;
    text-align: center;
  }

  .post-card-left {
    max-width: 100px;
    margin: 0 auto;
  }

}