:root {
  --light: #d5d6d7;
  --medium: #6b6d70;
  --dark: #374151;
  --darker:#1F2937;
  --darkest:#111827;
  --light:#EEE;
  --pink: #EC4899;
}

body {
  background-color: var(--light);
  min-height: 100vh;
  color:var(--darkest);
}

.col {

  box-sizing: border-box;
  width:90%;
  display:inline-block;

}

.center{
  text-align: center;
}

#productList {
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
font-size: .7rem;
font-weight: 400;
line-height: 1.5;
text-align: left;
list-style: none;
padding:10px;

}
#productList li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5px;
  margin-bottom: 5px;
  border-radius: 10px;
  max-width: 100%;
  background-color: var(--darker);
  color:white;
  font: 400 12px/22px 'Lato', sans-serif;
}

input, button {
  appearance: none;
  border:none;
  outline:none;
  background:none;

}
input{
  color:#fff;
}
input.qty, input.price {
  max-width: 50px;
  margin-left: 5px;
}
input#totalSum {
  color: var(--dark);
}
button{
  border-radius: 10px;
  color: var(--light);
  border: 1px solid red;
  background-color: red;
  padding:3px;
  margin:10px;
  width:70px;
  height:30px;
}

button:hover{
  color: var(--dark);
  background-color: rgb(254, 179, 179);
}

button#add {
  width:100px;
  height:30px;
  cursor:pointer;
  border: 1px solid green;
  border-radius: 10px;
  position:relative;
  margin: 0px auto;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.3);
  background-color: green;
}

button#add:hover{
  cursor: pointer;
  color: var(--dark);
  background-color: rgb(182, 217, 181);

}


label{
  margin-left: 10px;
}

input[type="checkbox"] {
  appearance: checkbox !important;
    width: 15px;
    height: 15px;
}

#productList li.notdone{
  /* border:2px solid #ac0000; */
  background-color:var(--medium);
  
}
#productList li.done{
  /* border:2px solid #11cf31; */
  background-color:var(--medium);
  
} 
.barcode {
  height:60px;
  width:auto;
  margin-left:5px;
  margin-right:5px;
}
input[type="radio"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: #fff;
  /* Not removed via appearance */
  margin: 0;
}
@media print {
  .dont-print {
    display: none;
  }
}




