.material-title {
  font-size: 28px;
  font-weight: 400;
  align-self: center;
  justify-content: center;
}

.card-title {
  font-size: 20px;
  margin-bottom: 20px;
}

.document-link {
  color: "primary";
  text-decoration: "none";
  width: "100%";
}

.note-input-wrapper {
  margin-top: 20px;
  width: 100%;
}

.note-input-button {
  position: absolute;
  right: 0;
  margin-right: 10px;
  align-self: center;
  padding-right: 15px !important;
  padding-left: 15px !important;
  margin: 0;
}

.product-note {
  gap: 10px;
  max-height: 200px;

  .comment-wrapper {
    flex: 1;

    .comment {
      text-overflow: ellipsis;
      line-height: 1.25;
      height: 100%;
      overflow: auto;
      margin-right: 15px;
      text-align: justify;
    }

    .comment-info {
      color: grey;
      margin-top: 10px;

      > p {
        font-size: 12px;
      }

      .author {
        font-weight: bold;
      }
    }
  }

  .delete-button-wrapper {
    position: absolute;
    right: -15px;
    top: -15px;
    background-color: white;

    .delete-button {
      padding: 5px;
    }

    .delete-icon {
      margin: 0 3px;
    }
  }
}

.quantity-icon-wrapper {
  border-radius: 50%;
  border: 1px solid black;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quantity-icon {
  font-size: 50px;
  display: block;
  align-self: center;
}

#quantity-input {
  display: inline-block;
  position: relative;
}

#quantity {
  width: 100%;
}

#unit {
  position: absolute;
  opacity: 0.5;
  margin-left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
}
