@import url("https://use.typekit.net/too7fje.css");

body
{
  font-family: roboto-condensed, sans-serif;
    font-size: 1em;
  background: #fff;;
}

#productlist_container {overflow-y:scroll; width: 100%; height: 100%; position: absolute;}

.productItem{
width: 100%;
max-width: 250px;
margin-bottom: 10px;
padding: 5px;
display: flex;
flex-flow: row;
align-items:center;
justify-content: space-between;
text-align: left;
margin-left: 40px;
} 

#productlistsum {
  font-family: bebas-neue-pro-expanded;
  font-size: 1.2em;
  margin-bottom: 5px;
}


.productItemValue 
{
  /* float: left; */
  /* border: 1px solid blue; */
  margin: 1px;
}


.productItemAmount {
  display: flex;
  flex-flow: row;
  align-items:center;
  justify-content: space-between;
  text-align: left;
  padding-left: 10px;
}

.productItemButton
{
  /* float: left; */
  width: 20px;
  height: 20px;
  
  background: no-repeat center center;
  background-size: cover;
  cursor: pointer;
}
.productItemButton:hover
{
  background-color: #F0F0F0;
}

.productItemSub {  background-image: url(../images/arrow_circle_down_black_24dp.svg);  }
.productItemAdd {  background-image: url(../images/arrow_circle_up_black_24dp.svg);  }
.productItemRemove {  background-image: url(../images/delete_black_24dp.svg);  }


.productItemCaption
{
  width: calc(100% - 25px);
  /* border: 1px solid red; */
  
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-top: 2px;
}

.productItemCount
{
  width: 35px;
  text-align: center;
}


.productItemPrice
{
  width: 70px;
  text-align: right;
  padding-top: 4px;
}



.productItemTotal
{
  width: 70px;
  text-align: right;
  padding-top: 2px;
}

.productSumCaption
{
  padding-top: 5px;
  width: 204px;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 800;
}

.productSum
{
  padding-top: 5px;
  width: 70px;
  text-align: right;
  font-weight: 800;
}

.inputCount
{
  width: 30px;
  border: 0px solid silver;
  text-align: center;
}

.clear { clear: both; }


@media all and (max-width: 420px) {
  .productItem{
    width: 100%;
    max-width: 300px;
    overflow-y: scroll;
    
    } 

}
