.add-licenses-modal {
    max-width: 1080px;
    padding: 1rem;
    background: #f7f7f7;
    border-radius: 15px;
}

#edit-section {
    display: flex;
    max-width: 108rem;
    width: 100%;
    overflow: auto;
}

.license-submit {
    display: block;
    margin: 0px auto;
}

.product-card-wrapper {
    min-width: 30rem;
}

.product-card {
    position: relative;
    max-width: 260px;
    width: 100%;
    min-width: 150px;
    padding: 15px;
    box-shadow: 0px 0px 10px #00000055;
    margin: 15px;
    min-height: 25rem;
    background: #fff;
}
  
.product-name {
    margin-bottom: 0px;
    font-size: 18px;
    color: #777;
}
  
.product-price {
    margin-bottom: 0px;
    font-size: 20px;
}

.product-unit,
.product-timing {
  color: #777;
  font-size: 12px;
  margin: 0;
}

.product-description {
    text-align: center;
    padding: 15px 0px;
    /* margin: 30px auto; */
}

.product-quantity-wrapper {
    position: absolute;
    display: flex;
    justify-content: center;
    bottom: 20px;
    width: calc(100% - 30px);
}

.product-subtract,
.product-add {
  width: 2em;
  height: 2em;
  background: #0a9;
  color: #fff;
  border: 1px solid #000;
  flex-shrink: 0;
  margin-right: 0;
  cursor: pointer;
}

.product-quantity {
    height: 2em;
    padding: 0.25em;
    text-align: center;
    border: none;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    width: 100%;
}

.product-quantity::-webkit-outer-spin-button,
.product-quantity::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}