#cart-container {
  width: 100%;
  left: 100%;
  height: 100%;
  background: orange;
  color: white;
  top: 0px;
  transition: 1s ease-in-out;
  position: fixed;
  justify-content: center;
  align-items: center;
  z-index: 185;
}

#cart-container h1 {
  padding-left: 50px;
}

/* Content display */

.cart-content {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 100%;
  background: rgb(240, 240, 240);
  overflow: auto;
}

#cart-display {
  background: rgb(240, 240, 240);
  color: rgba(114, 114, 114, 0.8);
  width: 60%;
}

/* User Submit */

.display-user {
  padding: 10px;
  z-index: 190;
  height: 300px;
  margin-top: 50px;
  width: 30%;
  display: flex;
  flex-direction: column;
  position: fixed;
  margin-left: 65%;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  background: white;
  box-shadow: 4px 4px 4px rgb(0, 0, 0, 0.1);
}

.display-user button {
  color: white;
  background: black;
  width: 90%;
  border-radius: 10px;
  height: 50px;
  font-size: 26px;
  margin-top: 20px;
}

.display-user input {
  color: orange;
  background: white;
  width: 90%;
  padding: 2px;
  border-radius: 5px;
  margin: 5px;
  font-size: 26px;
  border-top: none;
  border-left: none;
  border-right: none;
}

#cart-container .fa-x {
  font-size: 26px;
  margin-left: 90%;
  margin-top: -70px;
  display: none;
  position: absolute;
  border-radius: 50%;
  padding: 5px;
  cursor: pointer;
}
/* Quantity */
.quantity {
  width: auto;
  margin-left: 40%;
  margin-bottom: 0px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bolder;
}
.quantity input {
  width: 50px;
}

/* Cart item */

.cart-item {
  width: 70%;
  height: 300px;
  background: white;
  background-position: left;
  background-repeat: no-repeat;
  background-size: 40%;
  padding: 0.5%;
  margin-top: 50px;
  margin-left: 100px;
  margin-bottom: 10px;
  box-shadow: 2px 4px 4px rgb(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* Remove */

.cart-item button {
  color: white;
  background: black;
  padding: 10px;
  font-size: 18px;
  margin-top: 10px;
  margin-right: 10px;
  border: none;
  cursor: pointer;
  border-radius: 10px;
  float: right;
}

.cart-item button:hover {
  background: #ccc;
  transition: 0.5s ease-in-out;
}

/* cart count */

.icons .fa #cart-count {
  font-family: "Arial Narrow", Arial, sans-serif;
  background: orange;
  border: 2px solid white;
  padding: 2px;
  border-radius: 50%;
  color: white;
  position: absolute;
  font-size: 14px;
  width: 20px;
  height: 20px;
  margin-left: 50px;
  margin-top: -30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* --------- */

/*Item name*/

.item-name {
  margin-left: 200px;
  margin-top: 50px;
  color: black;
}

.item-name h4 {
  padding: 10px;
  width: 100px;
  color: black;
}

/* ---- */

/* Cart Sizes */

.sizes {
  margin-top: 10px;
  float: right;
  margin-right: 20px;
}

.size-title {
  background: black;
  color: white;
}

.sizes table tr td {
  color: black;
  font-size: 16px;
  margin-top: 300px;
  margin-left: 200px;
  border: 1px solid black;
  border-radius: 5px;
}
.sizes table tr td:hover {
  color: white;
  background: black;
}

/* When cart is empty */

.no-item {
  width: 50%;
  margin-left: 25%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: orange;
  flex-direction: column;
  position: fixed;
  margin-top: 10%;
  height: 300px;
}

.no-item .fa-shop-slash {
  font-size: 60px;
}

.no-item h1 {
  font-size: 30px;
}

/*  */

@media screen and (max-width: 600px) {
  #cart-display {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .cart-item {
    width: 90%;
    height: 400px;
    margin: 5%;
    border-radius: 5px;
    background: white;
    background-position-x: -10%;
    background-position-y: 20%;
    background-repeat: no-repeat;
    background-size: 50%;
  }
  .cart-item button {
    color: white;
    background: black;
    padding: 10px;
    font-size: 18px;
    margin-top: 50px;
    position: relative;
  }
  .display-user {
    padding: 10px;
    z-index: 190;
    height: 300px;
    width: 90%;
    margin: 5%;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    background: white;
    box-shadow: 4px 4px 4px rgb(0, 0, 0, 0.1);
    position: relative;
    margin-top: 100px;
    margin-bottom: 200px;
  }
  .display-user button {
    color: white;
    background: black;
    width: 90%;
    border-radius: 10px;
    height: 50px;
    font-size: 26px;
    margin-top: 20px;
  }
  .display-user input {
    color: orange;
    background: white;
    width: 90%;
    padding: 2px;
    border-radius: 5px;
    margin: 5px;
    font-size: 26px;
    border-top: none;
    border-left: none;
    border-right: none;
  }
  .cart-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: rgb(240, 240, 240);
    overflow: auto;
  }
  /* Empty cart */
  .no-item {
    width: 50%;
    margin-left: 25%;
    text-align: center;
    border-radius: 10px;
    background: none;
    color:rgb(255, 185, 56);
  }

  /* Cart Sizes */

  .sizes {
    margin-top: 0px;
    float: left;
    margin-left: 20px;
  }
  /* Quantity */
  .quantity {
    width: auto;
    margin-left: 5%;
    margin-top: 100px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
  }
  .quantity input {
    width: 50px;
  }
}
