@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
  margin: 0;
  padding: 0;
}
body{
  font-family: "Poppins",sans-serif;
  font-size: 13px;
}

.logo{
  width: 100px;
}

header{
  background-color: #fff;
  padding: 12px;
  text-align: center;
}
.head {
  font-weight: 700;
  padding: 5px;
  background-color: #222;
  color: #fff;
  text-transform: uppercase;
  height: 40px;
  display: grid;
  place-items: center;
  line-height: 1.2;
}
.code .head{
  border-right: 1px solid rgb(100, 100, 100);
}
/* grid-template-columns: 60px 1fr 75px; */
main{
  max-width: 400px;
  margin: 0 auto;
  margin-top: 20px;
  padding: 0 20px;
}
select.form-control {
  padding: 5px 9px;
  border: 1px solid #ddd;
  font-size: 12px;
}
table tr {
  display: grid;
  grid-template-columns: 75px 1fr 75px;
}
thead th {
  background: #202020;
  color: #fff;
  padding: 4px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
tbody td {
  display: flex;
  align-items: center;
  border: 1px solid #cdcdcd;
}
tbody td:first-child,tbody td:last-child {
  padding: 7px;
  justify-content: center;
}
tbody td:nth-child(2){
  padding: 0 8px;
}
.total {
  height: 40px;
  display: grid;
  border: 1px solid rgb(192, 192, 192);
  place-items: center;
  width: 75px;
}
.send_btn{
  background-color: #000;
  color: #fff;
  padding: 6px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  border: 0;
}
.cont_btn{
  font-size: 16px;
  font-weight: 500;
  border: 0;
  padding: 6px;
  width: 100%;
  border: 1px solid #000;
  background: #fff;
  text-align: #000;
}
.bottom-logo img{
  width: 80px;
}
.bottom-logo{
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-around;
  margin-top: 30px;
  margin-bottom: 20px;
}