
*{
    font-family: "Poppins";
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

header{
    display: flex;
    gap: 1rem;
    padding: 4rem 1rem 0 1rem;
}

.incomplete{
    background-color: var(--yellow);
    color: var(--bg-yellow);
    padding:  .2rem .5rem;
    border-radius: 50px;
    width: fit-content;
}

.complete{
    background-color: var(--green);
    color: white;
    padding:  .2rem .5rem;
    border-radius: 50px;
    width: fit-content;
}

.container{
    display: flex;
    flex-direction: column;
    border: #7E83922e 1px solid;
    border-radius: 15px;
    margin: 1rem;
    padding: 1rem;
    justify-content: space-between;
    gap: 1rem;
}
h3{
    display: flex;
    align-items: center;
    gap: 5px;
}

h3 img{height: 1.3rem;}

.quantity span{
    color: white;
    background-color: var(--primary-light);
    padding: 0 .6rem;
    border-radius: 50%;
}

.bottom{
    display: flex;
    justify-content: space-between;
    padding: 0 .2rem;
}

.bottom button{
    color: var(--bg-red);
    background-color: white;
    border: none;
    font-weight: 600;
}

.bottom button:hover{
    filter: opacity(.8);
    cursor: pointer;
    transition: .1s all ease-in;
}