@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif
}

body {
  background: #f8f9fa
}


.brand-javascript-daily {
  height: 55px;
  width: 55px;
}

.total-price {
  padding-bottom: 15px;
}

.cart-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 20px;
  margin-bottom: 20px;
}

.center-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.cart-item img {
  width: 115px;
}

.cart-item h5 {
  padding: 0 45px;
}

.cart-item .remove-item {
  width: 25px !important;
}

.btn-default {
  background-color: #fff;
}

.cart-item .form-control {
  background-color: #F6F5FA;
  border: none;
  width: 65px;
  border-radius: 10px !important;
  font-weight: 700;
  font-size: 20px;
}

.input-group {
  width: unset;
  flex-wrap: nowrap;
}

.status {
  text-align: right;
}

.check-out {
  float: right;
  padding: 10px 30px;
  font-size: 19px;
  background-color: #2FBE70;
  border: none;
}