.top-bar {
  align-items: center;
  display: flex;
  height: 100px;
  justify-content: space-around;
  margin-bottom: 10px;
  width: 100%;
}

.top-bar .input-name-group {
  align-items: flex-start;
  display: flex;
}

.top-bar .input-terms-group {
  align-items: flex-start;
  display: flex;
}

.container {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-top: 70px;
}

.items {
  display: flex;
  flex-basis: 70%;
  flex-wrap: wrap;
  justify-content: center;
}

.item {
  border: 2px solid #070D0D;
  border-radius: 5px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: auto;
  margin: 20px 15px;
  width: 200px;
}

.item .item__sku {
  display: none;
}

.item .item__title {
  color: beige;
  background-color: #000133;
  flex-grow: 1;
  padding: 10px;
  text-align: center;
}

.item .item__image {
  width: 100%;
}

.item .item__add {
  background-color: #47C072;
  border: 0;
  cursor: pointer;
  margin: 0;
  padding: 12px;
}

.cart {
  background-color: #BDF6FE;
  display: flex;
  flex-basis: 30%;
  flex-flow: column wrap;
  padding: 15px;
}

.cart .cart__title {
  flex-basis: 1;
  font-size: 2em;
  margin-bottom: 10px;
  text-align: center;
  padding: 10px;
}

body {
  background-color: lightgray;
}

header {
 background-color: #000133;
 position: absolute;
 top: 0;
 left: 0;
 width: 100%; 
 text-align: center;
 color: beige;
}

.cart .cart__item {
  border-bottom: #000133 solid 1px;
  margin-bottom: 25px;
  padding-bottom: 15px;
}

.empty-cart {
  margin-bottom: 15px;
  padding: 15px;
}

.total-price{
  font-size: 1.2em;
  font-weight: 700;
}