/* import fonts */
@import url("https://fonts.googleapis.com/css2?family=Rubik&display=swap");

/* VARIABLES */
:root {
  --bg-color: #fff;
  --link-color: #000;
  --link-size: 1.1rem;
  --right-side-bg-color: 81, 187, 254;
}

/* APP CONTAINER */
.app-container {
  margin-top: 100px;
}

/* HEADER -> SHOPING BAG */
.shopping-bag {
  text-align: center;
  justify-content: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 10%;
}
.shopping-bag h3 {
  font-size: 20px;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  text-align: : center;
  text-align: center;
}
.shopping-bag a {
  display: flex;
  align-items: center;
}
.shopping-bag a img {
  width: 32px;
  height: 32px;
}
.shopping-bag .total-items-in-cart {
  text-align: center;
  justify-content: center;
  margin: auto;
  padding: 5px 5px;
  background-color: #422a14;
  border-radius: 5px;
  color: #e1cbb1;
  width: 70%;
}

/* CART */
.cart {
  height: 90%;
  width: 100%;
  position: relative;
}
/* cart header */
.cart-header {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  font-size: 20px;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  text-align: : center;
}
/* cart items */
.cart-items {
  max-height: calc(100vh - 247px);
  overflow-y: auto;
  overflow-x: hidden;
}
/* cart item */
.cart-item {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
}
.cart-item div {
  display: flex;
  align-items: center;
  justify-content: center;
}
/* item info */
.cart-item .item-info {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
}
.cart-item .item-info:hover {
  background-color: #e1cbb1;
  cursor: pointer;
}
.cart-item .item-info img {
  width: 75px;
  display:block;
  float:left;
  padding: 0 10px;
}
/* unit price */
.cart-item .unit-price {
  flex: 1;
  font-size: 15px;
  font-family: 'Raleway', sans-serif;
}
/* units */
.cart-item .units {
  flex: 1;
}
.cart-item .units .number {
  margin: 0 10px;
  font-size: 1.2rem;
}
.cart-item .units .btn {
  width: 30px;
  height: 30px;
  background-color: #e1cbb1;
  border-radius: 30%;
  font-weight: bold;
  cursor: pointer;

  -webkit-user-select: none; /* Chrome all / Safari all */
  -moz-user-select: none; /* Firefox all */
  -ms-user-select: none; /* IE 10+ */
}

/* cart footer */
.cart-footer {
  width: 100%;
  position: relative;
  bottom: 0;
  left: 0;
  height:100%;
  margin-bottom:200px;
}
.cart-footer div {
  display: flex;
  align-items: right;
  justify-content: right;
  padding: 5px 0;
  margin-top: 20px;
  font-size: 15px;
  text-align: left;
  margin-right: 30px;
}
.cart-footer .subtotal {
  background-color: transparent;
}
.cart-footer .checkout{
  background-color: transparent;
  color: black;
  border: 1px solid black;
  padding: 12px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  transition: all 0.5s;
  cursor: pointer;
  transform: translateX(-50%);
  position: relative;
  opacity: 1;
  left: 50%;
}
.cart-footer .checkout:after {
  content: '>';
  position: absolute;
  opacity: 0;
  top: 11px;
  right: -20px;
  transition: 0.5s;
}
.cart-footer .checkout:hover {
  padding-right: 24px;
  padding-left:8px;
}
.cart-footer .checkout:hover:after {
  opacity: 1;
  right: 10px;
}
