.plus-button {
  width: 20px;
  height: 20px;
  border: 2px solid lightgrey;
  background-color: #fff;
  border-radius: 4px;
  padding: 8px 5px 8px 5px;
  display: inline-block;
  position: relative;
  cursor: pointer;
	
}

.plus-button::after {
    content: "";
    background-color: grey;
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0.2em;
    width: 1em;
}

.plus-button::before {
    content: "";
    background-color: grey;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 1em;
    width: 0.2em;
}
	
.minus-button {
  width: 20px;
  height: 20px;
  border: 2px solid lightgrey;
  background-color: #fff;
  border-radius: 4px;
  padding: 8px 5px 8px 5px;
  display: inline-block;
  position: relative;
  cursor: pointer;
	
}

.minus-button::after {
    content: "";
    background-color: grey;
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0.2em;
    width: 1em;
}

.plus-button--small {
	font-size: 12px;
}

.plus-button--large {
	font-size: 15px;
}

.plus-button:hover {
  text-decoration: none;
  color:#555;
  background: #f5f5f5;
}

.plus-button:active {
  box-shadow: 0px 3px 4px #aaa inset, 0px 2px 3px #fff;
}

.cart-button {
  border: 2px solid #000000;
  border-radius: 4px;
  color: red;
  padding: 9px 12px;
  text-align: center;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  background-color: lightgray;
  height: 45px;
  width: 95px;
}

.cart-button:hover {
  text-decoration: none;
  color:#555;
  background: #f5f5f5;
}

.cart-button:active {
  box-shadow: 0px 6px 10px #aaa inset, 0px 2px 3px #fff;
}

.cart-button-added {
  border: 2px solid #000000;
  border-radius: 4px;
  color: black;
  padding: 9px 12px;
  text-align: center;
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
  background-color: rgb(101, 245, 101);
  height: 45px;
  width: 95px;
}

.cart-button-added:hover {
  text-decoration: none;
  color:#555;
  background-color: rgb(0, 230, 0);
}

.cart-button:active {
  box-shadow: 0px 6px 10px #aaa inset, 0px 2px 3px #fff;
}

.order-button {
  border: 2px solid #000000;
  border-radius: 4px;
  color: black;
  background-color: #47EA47;
  padding: 9px 12px;
  text-align: center;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  height: 25px;
  text-decoration: none;
}

.order-button:hover {
  text-decoration: none;
  color:#555;
  background: #f5f5f5;
}

.order-button:active {
  box-shadow: 0px 6px 10px #aaa inset, 0px 2px 3px #fff;
}

.order-button-notActivate {
  border: 2px solid #000000;
  border-radius: 4px;
  color: black;
  background-color: lightgray;
  padding: 9px 12px;
  text-align: center;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  cursor: not-allowed;
  height: 25px;
  text-decoration: none;
}

.submit-button {
  border: 2px solid #000000;
  border-radius: 4px;
  color: black;
  background-color: #47EA47;
  padding: 9px 12px;
  text-align: center;
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  height: 45px;
  text-decoration: none;
  width: 10em;
  margin-right: 5em;
}

.submit-button:hover {
  text-decoration: none;
  color:#555;
  background: #f5f5f5;
}

.submit-button:active {
  box-shadow: 0px 6px 10px #aaa inset, 0px 2px 3px #fff;
}