.specification .add-to-cart {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: flex-end;
  margin-top: 10px;
  margin-bottom: 10px;
}
.specification .add-to-cart .button,
.checkout-summary .button {
  background-color: #307ebc;
  border-radius: 2px;
  color: #ffffff;
  display: block;
  padding: 15px;
  width: fit-content;
  text-align: center;
}

.specification .add-to-cart .button.disabled,
.checkout-summary .button.disabled,
.specification .add-to-cart .button.disabled:hover,
.checkout-summary .button.disabled:hover,
.specification .add-to-cart .button.disabled:focus,
.checkout-summary .button.disabled:focus {
  opacity: 0.5;
  background-color: #307ebc;
  cursor: not-allowed;
}

.specification .add-to-cart .button:hover,
.specification .add-to-cart .button:focus,
.checkout-summary .button:hover,
.checkout-summary .button:focus {
  background-color: #2a6a9b;
  cursor: pointer;
}

.specification .add-to-cart .button.button--mini,
.checkout-summary .button.button--mini {
  padding: 4px 12px;
}

.specification .add-to-cart .custom-select {
  display: block;
  margin: 0;
}


.checkout-summary--actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.checkout-summary--actions .button--buy-now {
  background-color: #ea8ca8;
  text-align: center;
}
.checkout-summary--actions .button--buy-now:hover {
  text-decoration: none;
  background-color: #d67d97;
}
.checkout-summary .alert {
  text-align: center;
  background-color: #307ebc;
  color: #ffffff;
  border-color: #2a6a9b;
}

.checkout-summary .alert p {
  margin: 0;
  padding: 0;
}

.checkout-summary .cart-items-table {
  margin-top: 0;
}

.checkout-summary .cart-title {
  margin-bottom: 25px;
}
