*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

#cartlist{

  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 15px;
  margin-top: 50px;

}
#cartlist>div{
  box-shadow: rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
  padding: 10px;
  border-radius: 10px;
}
#cartlist>div>:nth-child(9){
  background-color: red;
  border: none;
  color: white;
  border-radius: 5px;
}
#cartlist>div>button{
  width: 22%;
  margin: 5px;
}
#cartlist>div>img{
  width: 50%;
}
#cart-count{
  /* background-color: white; */
  color: white;
  font-weight: 600;
}
#checkout{
  
  text-align: right;
  margin: 15px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
#checkout>button{
  background-color: black;
  color: white;
  width: 15%;
  height: 30px;
  border: none;
}
#checkout>button:hover{
  background-color: rgb(41, 40, 40);
}

.alreadyloginuser{
  display: block;   
}
.signinSignuptextnone{
  display:none;
}