@charset "UTF-8";

.productAdded,
.productUpdated {
  display: none;
  position: fixed;
  bottom: 0px;
  width: 70%;
  left: 15%;
  z-index: 95;
  color: white;
  border-radius: 3px;
  padding: 10px;
}


/* /////////////////////////////// */
/* /////////////////////////////// */

.price-area {
  color: darkgreen;
  font-size: 16px;
  font-weight: bold;
  height: 20px;
}
 
.headerRow {
  font-size: 13px;
  font-weight: 700;
}
.itemRow {
  font-size: 13px;
  border-bottom: dotted 1px #e2e2e2;
  height: 50px;
  display: flex;
  align-items: center;
}
.item-code {
  display: inline-block;
  width: 8%;
  padding-right: 2%;
}
.item-name {
  display: inline-block;
  width: 38%;
  padding-right: 2%;
  margin-left: 1%;
}
.item-price,
.item-quantity,
.item-total,
.item-remove {
  display: inline-block;
  width: 10%;
  text-align: center;
}

.item-decrement {
  display: inline-block;
  width: 5%;
  text-align: right;
}

.item-increment {
  display: inline-block;
  width: 5%;
  text-align: left;
}

.bars-icon {
  display: none;
}

@media only screen and (max-width: 600px) {

  .bars-icon {
    display: block;
  }
  .cartbtn {
    text-align: right;
  }
  .phone {
    font-size: 14px;
    margin-bottom: 10px;
    text-align: right;
  }

  .modal-footer {
    display: block;
    padding: 0;
    text-align: center;
  }
  .itemRow {
    height: 80px;
  }
  .headerRow .item-total {
    display: inline-block;
    width: 20%;
    text-align: left;
  }
  .headerRow .item-remove {
    display: none;
  }

}


/* /////////////////////////////////// */
/* /////////////////////////////////// */
/* /////////////////////////////////// */
/* /////////////////////////////////// */
/* /////////////////////////////////// */
/* /////////////////////////////////// */
/* /////////////////////////////////// */

.itemRow .item-total {
  color: red;
  font-weight: 800;
}

@media screen and (min-width: 320px) {
  
  .headerRow {
    display: none;
  }

  .itemRow {
    width: 100%;
    padding: 5px;
    position: relative;
    margin-bottom: 10px;
    height: 190px;
  }

  .itemRow .item-name {
    position: absolute;
    width: 88%;
    left: 0px;
    top: 0px;
    border-bottom: solid 1px #000;
    border-top: solid 1px #000;
    font-weight: 700;
    height: 40px;
    line-height: 16px;
    display: flex;
    align-items: center;
  }

  .itemRow .item-thumb {
    position: absolute;
    width: 35%;
    left: 0px;
    top: 40px;
    text-align: center;
  }

  .itemRow .item-thumb img {
    max-width: 100%;
    padding: 5px;
    max-height: 125px;
    width: auto;
  }

  .itemRow .item-price {
    position: absolute;
    width: 45%;
    left: 30%;
    top: 40px;
    border-bottom: solid 1px #efefef;
  }
  .itemRow .item-price::before {
    content: "PRICE : ";
  }

  .itemRow .item-tax {
    position: absolute;
    width: 45%;
    left: 40%;
    top: 70px;
    border-bottom: solid 1px #efefef;
  }

  .itemRow .item-tax::before {
    content: "VAT : ";
  }

  .itemRow .item-netTotal {
    position: absolute;
    width: 45%;
    left: 40%;
    top: 100px;
    border-bottom: solid 1px #efefef;
  }

  .itemRow .item-netTotal::before {
    content: "NET : ";
  }

  .itemRow .item-total {
    position: absolute;
    width: 45%;
    left: 30%;
    top: 130px;
    border-bottom: solid 1px #efefef;
  }

  .itemRow .item-total::before {
    content: "TOTAL : ";
  }

  .itemRow .item-increment {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 10%;
    text-align: center;
    border-radius: 0px;
    background: black;
    border-radius: 4px 4px 0px 0px;
  }

  .itemRow .item-quantity {
    position: absolute;
    top: 30px;
    right: 0px;
    width: 10%;
    text-align: center;
    border-left: solid 1px #efefef;
    border-right: solid 1px #efefef;
    line-height: 60px;
  }

  .itemRow .item-decrement {
    position: absolute;
    right: 0px;
    top: 90px;
    width: 10%;
    text-align: center;
    border-radius: 0px;
    background: black;
    border-radius: 0px 0px 4px 4px;
  }

  .itemRow .item-increment a,
  .itemRow .item-decrement a {
    color: white;
    text-decoration: none;
    line-height: 26px;
    font-size: 20px;
  }

  .itemRow .item-remove {
    position: absolute;
    right: 0px;
    width: 10%;
    text-align: center;
    bottom: 20px;
  }

  .itemRow .item-remove a {
    padding: 5px;
    background: red;
    color: white;
    border-radius: 4px;
    border: solid 1px #fff;
    display: block;
  }

  .simpleCart_grandTotal,
  .simpleCart_tax,
  .simpleCart_total {
    width: 100%;
    color: green;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
  }

  .simpleCart_grandTotal::before {
    content: "TOTAL : ";
  }

  .simpleCart_tax::before {
    content: "VAT TOTAL : ";
  }

  .simpleCart_total::before {
    content: "SUB TOTAL : ";
  }

  .product-image img {
    padding: 0px;
  }
}

@media screen and (min-width: 540px) {

  .headerRow {
    font-size: 13px;
    font-weight: 700;
    display: block;
  }

  .headerRow .item-thumb {
    display: none;
  }

  .headerRow .item-unit {
    display: inline-block;
    width: 5%;
    text-align: left;
  }

  .headerRow .item-decrement {
    display: none;
    width: 5%;
    text-align: right;
    background: #000;
  }

  .headerRow .item-quantity {
    display: inline-block;
    width: 14.5%;
    text-align: center;
  }

  .headerRow .item-increment {
    display: none;
    width: 5%;
    text-align: left;
  }

  .headerRow .item-name {
    display: inline-block;
    width: 40%;
    line-height: 12px;
    padding-left: 6.5%;
  }

  .headerRow .item-price,
  .headerRow .item-tax,
  .headerRow .item-netTotal,
  .headerRow .item-total {
    display: inline-block;
    width: 9.5%;
    text-align: center;
  }

  .headerRow .item-remove {
    display: inline-block;
    width: 5%;
    text-align: center;
  }

  /* ////////////////// */
  /* ////////////////// */

  .itemRow {
    font-size: 15px;
    height: 70px;
    display: flex;
    align-items: center;
    padding-bottom: 5px;
    padding-top: 5px;
    position: unset;
    border-bottom: solid 1px #000;
  }

  .itemRow .item-thumb {
    position: unset;
    width: 5%;
    margin-right: 1%;
    display: inline-block;
    text-align: center;
  }
  .itemRow .item-thumb img {
    height: 80px;
    max-width: 80px;
    width: auto;
    padding: 10px;
    box-sizing: border-box;
 
  }

  .itemRow .item-unit {
    position: unset;
    display: inline-block;
    width: 5%;
    text-align: left;
  }

  .itemRow .item-decrement {
    position: unset;
    display: inline-block;
    width: 5%;
    text-align: center;
    border-radius: 5px;
  }

  .itemRow .item-quantity {
    position: unset;
    display: inline-block;
    width: 5%;
    text-align: center;
    border: none;
    height: auto;
  }

  .itemRow .item-increment {
    position: unset;
    display: inline-block;
    width: 5%;
    text-align: center;
    border-radius: 5px;
  }

  .itemRow .item-name {
    position: unset;
    display: inline-block;
    width: 35%;
    line-height: 12px;
    height: auto;
    border: none;
  }

  .itemRow .item-price,
  .itemRow .item-tax,
  .itemRow .item-netTotal,
  .itemRow .item-total {
    position: unset;
    display: inline-block;
    width: 10%;
    text-align: center;
    border: none;
  }

  .itemRow .item-remove {
    position: unset;
    display: inline-block;
    width: 5%;
    text-align: center;
  }

  .itemRow .item-remove a {
    text-decoration: none;
  }

  .itemRow .item-price::before,
  .itemRow .item-tax::before,
  .itemRow .item-netTotal::before,
  .itemRow .item-total::before {
    content: "";
  }

  .simpleCart_grandTotal,
  .simpleCart_total,
  .simpleCart_tax {
    text-align: center;
    font-weight: 700;
    display: inline-block;
    width: 92%;
    text-align: right;
  }
}
