@charset "UTF-8";
.modal-dialog {
  min-width: 95%;
}
.add-wrap {
  height: 30px;
  margin-top: 5px;
  margin-bottom: 5px;
}
.product-wrap {
  margin-bottom: 25px;
  padding: 5px;
  font-size: 13px;
  text-align: center;
  border-bottom: solid 1px #c2c2c2;
}
.product-wrap:after {
  content: "";
  display: block;
  width: 20%;
  height: 3px;
  position: absolute;
  bottom: 24px;
  right: 40%;
  background-color: darkgreen;
}
.product-name {
  height: 40px;
  display: flex;
  align-items: center;
  vertical-align: middle;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  line-height: 15px;
  margin-top: 5px;
}
.border-wrap {
  border-top: dotted 1px #c2c2c2;
  padding-top: 5px;
  padding-bottom: 5px;
}
.add-cart-btn {
  color: darkred;
  text-decoration: none;
  font-weight: bold;
}
.modal a {
  text-decoration: none;
}
.left-side {
  border-right: dotted 1px #c2c2c2;
}
.left-side h3,
.right-side h3 {
  font-weight: 700;
  font-size: 20px;
  border-bottom: solid 1px #efefef;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.left-side a {
  display: block;
  color: #000;
  text-decoration: none;
  margin-bottom: 5px;
  border-bottom: solid 1px #efefef;
  padding-bottom: 5px;
}
.left-side a:hover {
  color: #87db23;
}
.brand-link {
  padding-left: 20px;
  font-size: 13px;
  font-weight: unset;
}
.sub-categories {
  border-bottom: solid 1px #efefef;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.sub-categories a {
  font-weight: 400;
  color: #666;
  text-decoration: none;
  font-size: 13px;
  margin-right: 10px;
}
.sub-categories a:hover {
  color: #87db23;
}
.img-area {
  position: relative;
}
.addBtn {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  box-sizing: border-box;
  cursor: pointer;
}
.addBtn a i {
  background: #87db23;
  color: white;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50px;
}
.addBtn a {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  display: flex;
  width: 100%;
  height: 100%;
  opacity: 0;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  text-decoration: none;
}
.addBtn a:hover {
  opacity: 1;
}
.cartbtn {
  text-align: right;
}
/* /////////////////////////////// */
/* /////////////////////////////// */
.price-area {
  color: darkgreen;
  font-size: 16px;
  font-weight: bold;
  height: 20px;
}
.item_price {
  display: none;
}
.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%;
}
.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;
}
.modal-body .simpleCart_grandTotal {
  margin-left: 76%;
  width: 10%;
  text-align: center;
  color: darkred;
  margin-top: 10px;
  font-weight: 700;
}
.bars-icon {
  display: none;
}
@media only screen and (max-width: 600px) {
  .product-wrap {
    padding: 0px;
  }
  .bars-icon {
    display: block;
  }
  .cartbtn {
    text-align: right;
  }
  .phone {
    font-size: 14px;
    margin-bottom: 10px;
    text-align: right;
  }
  .modal-dialog {
    min-width: 96%;
  }
  .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;
  }
  .left-side {
    border-right: none;
    position: fixed;
    top: 0;
    left: -75%;
    width: 75%;
    height: 100%;
    box-sizing: border-box;
    background: white;
    padding: 10px;
    padding: 10px;
    z-index: 100;
    overflow: auto;
  }
}
