@import url('https://fonts.googleapis.com/css2?family=Play:wght@700&display=swap');

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

.img-navbar {
  width: 80px;
  height: 80px;
  padding: 0px;
  border: none;
  margin: 10px;
  justify-content: flex-start;
}

.name-initial {
  font-size: 3em;
  font-family: 'Play', sans-serif;
  letter-spacing: 5px;
  color: whitesmoke;
  text-shadow: 2px 2px 2px #000;
}

.input-name-group {
  margin: 10px;
  border: none;
  padding: 5px;
}

.label-input {
  text-align: center;
  color: whitesmoke;
  font-family: 'Play', sans-serif;
  letter-spacing: 1px;
  font-size: 13px;
}

.img-li {
  list-style-type: none;
  justify-content: flex-start;
}

.name-initial {
  list-style-type: none;
  justify-content: flex-start;
}

.top-bar .input-name-group {
  align-items: flex-start;
  display: flex;
  border-radius: 5px;
  right: 0;
}

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

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

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

.item {
  border-radius: 5px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: auto;
  margin: 10px;
  width: 200px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.item:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.item .item__sku {
  display: none;
}

.item .item__title {
  flex-grow: 1;
  padding: 10px;
  text-align: center;
}

.item .item__image {
  width: 100%;
}

.item .item__add {
  background-color: blueviolet;
  border: 0;
  cursor: pointer;
  margin: 0;
  padding: 8px;
  color: white;
  text-shadow: 1px 1px #000;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 15px;
  border-radius: 5px;
  /* border: 1.5px solid #000; */
}

.item .item__add:hover {
  background-color: #AB82FF;
  border: 0;
  cursor: pointer;
  margin: 0;
  padding: 8px;
  color: #fff;
  text-shadow: 1px 1px #000;
  /* border: 1.5px solid #000; */
}

.cart {
  display: flex;
  flex-basis: 30%;
  flex-flow: column wrap;
}

.cart .cart__title {
  flex-basis: 1;
  font-size: 16pt;
  text-align: center;
  font-family: 'Play', sans-serif;
}

.empty-cart {
  color: #fff;
  font-size: 17px;
  background-color: blueviolet;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
}

.empty-cart:hover {
  color: #fff;
  font-size: 17px;
  background-color: #AB82FF;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  text-shadow: 1px 1px #000;
}

.cart__title {
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  letter-spacing: 3px;
}

.cart__item {
  background-color: darkgrey;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  margin-bottom: 20px;
  border-radius: 3px;
  padding: 8px;
}

.cart__item:hover {
  background-color: #B22222;
}

.total-price {
  text-align: center;
  padding: 10px;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 20px;
}