body {
  background-color: white;
  color: white;
  font-family: Arial, Helvetica, sans-serif;
}

.cabecalho {
  box-shadow: 0 4px 15px black;
  color: black;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  padding: 30px;
}

.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%;
}

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

.item {
  background-color: rgb(110, 108, 108);
  border: 2px solid rgb(101, 101, 231);
  border-radius: 5px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  height: auto;
  margin: 5px;
  width: 200px;
}

.item:hover {
  transform: scale( 1.1 );
  transition: transform 0.4s;
}

.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: rgb(7, 202, 7);
  border: 0;
  cursor: pointer;
  margin: 0;
  padding: 5px;
}

.cart {
  background: linear-gradient( rgb( 11 , 37 , 37 ) , gray , darkslategrey );
  display: flex;
  flex-basis: 30%;
  flex-flow: column wrap;
  height: 100%;
  padding: 20px 10px;
}

.cart .cart__title {
  flex-basis: 1;
  font-size: 19pt;
  margin-top: 15px;
  text-align: center;
}

.cart__items {
  list-style-position: inside;
}

.cart__item {
  background: linear-gradient( rgb( 0 , 90 , 130 ) , rgb( 0 , 40 , 0 ) );
  border: none;
  border-radius: 10px;
  padding: 8px;
}

.cart__item:hover {
  background: rgb( 0 , 125 , 100 );
}

.total {
  align-self: center;
  background-color: rgba( 0 , 0 , 0 , 0.8 );
  border-radius: 5px;
  color: white;
  font-size: 16pt;
  font-weight: 700;
  padding: 8px;
}

.total:hover {
  transform: scale( 1.2 );
  transition: transform 0.5s linear;
}

.total-price {
  animation: preco 2s infinite alternate linear;
  color: black;
  justify-content: center;
  padding: 15px;
}

.empty-cart {
  background-color: blue;
  border: none;
  border-radius: 4px;
  box-shadow: 3px 3px 7px white;
  color: white;
  font-size: 15pt;
  outline: none;
  padding: 5px;
}

.empty-cart:hover {
  background-color: rgb( 0 , 150 , 200 );
}

.empty-cart:active {
  box-shadow: 1px 1px 2px white;
  transition: box-shadow 0.05s linear;
}

.loading {
  animation: load 2s alternate infinite linear;
  color: black;
  font-size: 18pt;
  font-weight: 700;
  margin-top: 25px;
}

@keyframes preco {

  25% {
    text-shadow: 2px 2px 5px lime, -2px -2px 10px limegreen;
  }

  50% {
    text-shadow: 2px -2px 6px lime, -2px 2px 6px limegreen;
  }

  75% {
    text-shadow: -2px -2px 7px lime, 2px 2px 12px limegreen;
  }

  100% {
    text-shadow: -2px 2px 6px lime, 2px -2px 5px limegreen;
  }
}

@keyframes load {

  0% {
    color: yellow;
    font-size: 18pt;
    text-shadow: 12px 0 8px black;
  }

  25% {
    color: blue;
    text-shadow: 0 -12px 3px black;
  }

  50% {
    color: lime;
    font-size: 10pt;
    text-shadow: -12px 0 8px black;
  }

  100% {
    font-size: 18pt;
    text-shadow: 0 12px 3px black;
  }
}
