body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
body .cart {
  display: flex;
  justify-content: center;
  min-height: 650px;
}
body .cart .center {
  max-width: 1200px;
  width: 100%;
  padding: 10px;
  margin: 0;
  overflow: hidden;
}
body .cart .center .title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 133.799%;
}
body .cart .center .main-part {
  margin: 0;
  margin-top: 10px;
  padding: 0 2px;
  max-width: 100%;
  justify-content: space-between;
}
body .cart .center .main-part .products {
  margin: 0;
}
body .cart .center .main-part .products .product-item {
  border: 1px solid #C9C9C9;
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px;
}
@media screen and (max-width: 769px) {
  body .cart .center .main-part .products .product-item {
    flex-direction: column;
  }
}
body .cart .center .main-part .products .product-item .product-img {
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  padding: 5px;
  margin-right: 10px;
}
body .cart .center .main-part .products .product-item .product-img img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  border-radius: 5px;
}
body .cart .center .main-part .products .product-item .product-center {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-right: 85px;
}
@media screen and (max-width: 769px) {
  body .cart .center .main-part .products .product-item .product-center {
    padding: 2px;
  }
}
body .cart .center .main-part .products .product-item .product-center .product-middle {
  font-weight: bold;
  display: flex;
  align-items: center;
}
body .cart .center .main-part .products .product-item .product-center .top .text {
  color: #949494;
  font-size: 14px;
  font-weight: 400;
  margin: 5px 0;
}
body .cart .center .main-part .products .product-item .product-center .bot {
  display: flex;
  align-items: center;
}
body .cart .center .main-part .products .product-item .product-center .bot .plus-minus-form {
  width: 100%;
  max-width: 200px;
}
body .cart .center .main-part .products .product-item .product-center .bot .plus-minus-form .input-plus-minus {
  height: 32px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}
body .cart .center .main-part .products .product-item .product-center .bot .plus-minus-form .input-plus-minus .input {
  min-width: 50px;
  margin: 0 5px ;
  border-radius: 5px;
  outline: none;
  border: 2px solid var(--Light-gray, #c9c9c9);
  width: 100%;
  padding: 0 10px;
}
body .cart .center .main-part .products .product-item .product-center .bot .plus-minus-form .input-plus-minus .input::-webkit-outer-spin-button,
body .cart .center .main-part .products .product-item .product-center .bot .plus-minus-form .input-plus-minus .input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
body .cart .center .main-part .products .product-item .product-center .bot .plus-minus-form .input-plus-minus input[type=number] {
  -moz-appearance: textfield;
}
body .cart .center .main-part .products .product-item .product-center .bot .plus-minus-form .input-plus-minus .input-btn {
  border: none;
  color: white;
  font-weight: bold;
  display: flex;
  width: 32px;
  height: 32px;
  padding: 9px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 5px;
  background: var(--Blue1, #009bdb);
}
body .cart .center .main-part .products .product-item > .product-right {
  position: absolute;
  right: 0;
  margin-left: 260px;
  display: flex;
  align-items: center;
  font-weight: bold;
}
body .cart .center .main-part .checkout-box {
  margin: 0;
  align-items: flex-start;
}
@media screen and (max-width: 769px) {
  body .cart .center .main-part .checkout-box {
    margin-top: 10px;
  }
}
body .cart .center .main-part .checkout-box .box-content {
  border: 1px solid  #C9C9C9;
  display: flex;
  flex-direction: column;
  padding: 10px;
}
body .cart .center .main-part .checkout-box .box-content .box {
  color: #000;
  font-size: 24px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
}
body .cart .center .main-part .checkout-box .box-content .checkout-btn {
  margin-top: 10px;
  width: 100%;
  border-radius: 30px;
  background: #009BDB;
  color: #FFF;
  border: none;
  font-size: 28px;
  font-weight: 600;
}
