.page-product .bottom-product-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5vh;
    margin-bottom: 10vh;
}

.page-product .add-button{
    width: 20vw;
}

.page-product .bottom-product-page label {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-size);
    color: #333333;
    background-color: #F5F5F5;
    border: solid 0.5px #5B5B5B;
    padding: 5px;
    font-weight: 500; /*Medium*/
    border-radius: 5px;
    width: 30%;
    cursor: pointer;
    margin: 0 10%;
    transition: all ease 0.4s;
    gap: 10px;
}

.page-product .bottom-product-page .label-container {
  width: 100%;
  height: 10vh;
  display: flex;
  align-items: end;
  justify-content: center;
}

.page-product .bottom-product-page .label-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-product .bottom-product-page input {
  display: none;
}

.page-product .bottom-product-page textarea {
  resize: none;
  width: 30vw;
  height: 6vw;
}