.top-bar {
  align-items: center;
  background-color: rgb( 255 , 241 , 89 );
  display: flex;
  height: 100px;
  justify-content: space-around;
  justify-content: left;
  margin-bottom: 10px;
  width: 100%;
  margin-left: -10px;
  margin-top: -20px;
  width: 102%;
  position: fixed;
}

.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%;
  position: absolute;
  margin-top: 100px;
  z-index: -1;
}
.items {
  display: flex;
  flex-basis: 70%;
  flex-wrap: wrap;
  justify-content: center;
}
.item {
  border: 2px solid black;
  border-radius: 5px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: auto;
  margin: 5px;
  width: 200px;
  transition: transform 1s;
}
.item:hover {
  transform: scale3d(1.1,1.1,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: green;
  border: 0;
  cursor: pointer;
  margin: 0;
  padding: 5px;
}
.cart {
  display: flex;
  flex-basis: 30%;
  flex-flow: column wrap;
  width: 30%;
}

.cart .cart__title {
  display: block;
  flex-basis: 1;
  font-size: 16pt;
  text-align: center;
  align-self: center;
  padding: 20px 0;
  margin: 20px, 0;
  font-size: 30px;
}

.logo {
  text-align: left;
  margin-left: 20px;
  cursor: pointer;
}

body {
  background-color: rgb( 238 , 238 , 238 );
}

.empty-cart {
  width: 50%;
  color: black;
  height: 40px;
  border-radius: 50px;
  background-color: rgb( 238 , 238 , 238 );
  cursor: pointer;
}

.fixed {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: 50px;
  background-color: rgb( 255 , 241 , 89 );
  width: 300px;
  border-radius: 20px;
}

.cart__items {
  display: flex;
  flex-flow: column;
}

.cart__item {
  width: 100%;
  transform: scale3d(1,1,1);
  transition-duration: 2s;
  transition-property: transform;
}

.cart__item:hover {
  color: red;
  transform: scale3d(1.1,1.1,1.1)

}

.total-price {
  padding-top: 20px;
}

li {
  list-style: square;
  cursor: pointer;
  margin-top: 20px;
}

.loading {
  font-size: 50px;
  text-align: center;
}

.search {
  width: 600px;
  height: 50px;
  border-radius: 10px;
  margin-left: 100px;
  font-size: 20px;
}

.go {
  height: 50px;
  font-size: 20px;
  width: 60px;
  margin-left: 10px;
  border-radius: 5px;
  background-color: green;
  cursor: pointer;
}

.loading-area {
  position: absolute;
  margin-top: 100px;
}

@keyframes cartMovements {
  from {
    position: absolute;
    margin-left: 1500px;
    z-index: 1;
  }
  to {
    position: absolute;
    margin-left: 950px;
    z-index: 1;
  }
}

.cart-img {
  position: absolute;
  z-index: 1;
  margin-left: 1500px;
  animation: cartMovements 3s linear 1s 1 normal forwards;
}

.cart__price {
  display: none;
}