select.product-quantity-select {
  margin-bottom: 0;
  margin-left: 5px;
}

.cart-title {
  width: 1100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-title > span {
  margin: 0 10px 0 10px;
  font-size: 1.2rem;
}
.cart-title > span.active {
  color: #eb5c05;
}

.cart-row-wrapper {
  width: 1100px;
  height: auto;
  min-height: 300px;
  border-top: 1px solid rgba(213,213,213,1);
}
.cart-row {
  display: flex;
  width: 100%;
  height: 150px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(213,213,213,1);
}
.cart-checkbox {
  display: flex;
  width: 50px;
  height: 150px;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.cart-checkbox > input[type=checkbox] {
  transform: scale(1.5);
  -ms-transform: scale(1.5); /* IE */
  -moz-transform: scale(1.5); /* FF */
  -webkit-transform: scale(1.5); /* Safari and Chrome */
  -o-transform: scale(1.5); /* Opera */
}
.cart-thumb-image {
  display: flex;
  width: 200px;
  height: 150px;
  align-items: center;
  justify-content: center;
}
.cart-thumb-image > img {
  width: auto;
  height: 130;
}
.cart-product {
  width: 850px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.cart-product-brand {
  width: 100%;
  text-align: left;
  height: auto;
  font-size: 1.0rem;
}
.cart-product-name {
  width: 100%;
  height: 40px;
  font-size: 1.2rem;
  color: #eb5c05;
}
.cart-product-option {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cart-product-option > div {
  height: 40px;
  line-height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cart-product-option > div.cart-product-option12 {
  width: 500px;
  font-size: 1.2rem;
  color: rgba(0,0,0,1);
}
.cart-product-option > div.cart-product-option1 {
  width: 150px;
  font-size: 1.2rem;
  color: rgba(0,0,0,1);
}
.cart-product-option > div.cart-product-option2 {
  width: 350px;
  font-size: 1.0rem;
  color: rgba(131,131,131,1);
}
.cart-product-option > div.cart-product-quantity {
  width: 150px;
  font-size: 0.9rem;
}
.cart-product-option > div.cart-product-price {
  width: 150px;
  font-size: 1.2rem;
  justify-content: center;
}
.cart-product-option > div.cart-product-delete {
  width: 50px;
  padding: 0 10px 0 10px;
  justify-content: center;
}
.cart-product-option > div.cart-product-delete > button.btn-delete {
  width: 100%;
  height: 100%;
  border: 0;
  background: white;
}

.cart-bottom-bar {
  display: flex;
  width: 100%;
  height: 80px;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 10px;
  border-bottom: 2px solid rgba(131,131,131,1);
}
.cart-bottom-bar > button {
  background: white;
  border: 1px solid rgba(213,213,213,1);
  width: 100px;
  height: 30px;
}
.cart-bottom-bar > .sumDiv {
  display: flex;
  width: 300px;
  height: 100%;
}
.cart-bottom-bar > .sumDiv > div {
  width: 100px;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
}
.cart-bottom-bar > .sumDiv > div#totalPriceSum {
  width: 200px;
  height: 100%;
  background: #eb5c05;
  color: white;
  font-size: 1.2rem;
  justify-content: center;
  padding-right: 0;
}

.cart-button-bar {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-button-bar > button {
  width: 245px;
  height: 50px;
  margin: 0 5px 0 5px;
  color: rgba(40,40,40,1);
  background: rgba(213,213,213,1);
  border: 0;
}
.cart-button-bar > button:last-child {
  color: white;
  background: #eb5c05;
}