
.shopping-cart {
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  margin-top:30px; position:relative;
}


.shopping-cart .item {
    padding: 20px 30px;
    height: auto;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    align-items: center;
}

.shopping-cart .item:nth-child(3) {
  border-top:  1px solid #E1E8EE;
  border-bottom:  1px solid #E1E8EE;
}

/* Buttons -  Delete and Like */
.buttons {
  position: relative;
  margin-right: 60px;
}

.delete-btn {
  display: inline-block;
  cursor: pointer;
  width: 18px;
  height: 17px;
  background: url("delete-icn.svg") no-repeat center;
  margin-right: 20px;
}

.like-btn {
  position: absolute;
  top: 9px;
  left: 15px;
  display: inline-block;
  background: url('twitter-heart.png');
  width: 60px;
  height: 60px;
  background-size: 2900%;
  background-repeat: no-repeat;
  cursor: pointer;
}

.is-active {
  animation-name: animate;
  animation-duration: .8s;
  animation-iteration-count: 1;
  animation-timing-function: steps(28);
  animation-fill-mode: forwards;
}

@keyframes animate {
  0%   { background-position: left;  }
  50%  { background-position: right; }
  100% { background-position: right; }
}

/* Product Image */
.image {
    margin-right: 50px;
    width: 100px;
}

/* Product Description */
.description {
    margin-right: 60px;
    width: 20%;
}

.description span {
  display: block;
  font-size: 14px;
  color: #43484D;
  font-weight: 400;
}

.description span:first-child {
  margin-bottom: 5px;
}
.description span:last-child {
  font-weight: 300;
  margin-top: 8px;
  color: #86939E;
}

/* Product Quantity */
.quantity {
  margin-right: 60px; width:100px
}

.quantity input {
  padding:10px; border:1px solid #ccc;width:100px
}
/* Total Price */
.total-price {
  width: 83px;
  text-align: center;
  font-size: 16px;
  color: #43484D;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 800px) {
  .shopping-cart {
    width: 100%;
    height: auto;
    overflow: hidden;
  }
  .item {
    height: auto;
    /* flex-wrap: wrap; */
    justify-content: center;
  }
  .image img {
    width: 50%;
  } 
  .image,
  .quantity,
  .description { 
    width: 100%;
    text-align: center;
    margin: 6px 0;
  }
  .total-price {
    width: 100%;
    text-align: center;
    font-size: 16px;
    color: #43484D;
    font-weight: 300;
}
  .buttons {
    margin-right: 0;
    width: 100%;
    text-align: center;
}
}



.class_bg_grey
{
	width:100%;
	background:#efefef;
	padding:100px 0;
	margin-top:40px;
	color:#010101;
}


.checkout_info
{
  display:block;
}

.cupon 
{
	width:100%;
	margin-right:0%;
}

@media (min-width: 768px) {
.checkout_info
  {
    display:flex;
      justify-content: space-between;
  }
  .cupon
  {
    width:60%;
    margin-right:10%;
  }
  
}

.cupon_box
{
	background:#e5e5e5;
	padding:30px;
	width:100%;
	
	
}

.cupon_box input{
	width:60%;
	background:#FFF;
	border:0;
	color:#333;
	padding:15px; margin-right:2%;
}

.btn_form {
  width: 35%;
  background: #010101!important;
  border: 0;
  color: #fff!important;
}
.btn_form:hover{
	background:#d71b2d;
}

.cupon_box_check
{
	width:100%;
}

.cupon_box_check {
	width:40%;
  background:#FFF;
  border:1px solid #ccc;
	border:0;
	color:#333;
	padding:15px; margin-right:2%;
}

.cupon_box_check .btn_form{
	width:35%;
	background:#010101;
	border:0;
	color:#fff;
	padding:15px;
	transition: 0.3s;
}
.cupon_box_check .btn_form:hover{
	background:#d71b2d;
}







  
.total_checkbox
{
	width:100%;
}


@media (min-width: 992px) {

  .total_checkbox
  {
    width:30%;
  }
  
}

.total_checkbox_box
{
	background:#fff;
	padding:20px;
	width:100%;
	border:1px solid #010101;
	color:#010101;
}

.total_checkbox_box_inline
{
	display:flex;
	padding:15px 10px;
}
.total_checkbox_box_left
{
	width:50%;
	text-align:left;
}
.total_checkbox_box_right
{
	width:50%;
	text-align:right;
}
.total_checkbox_box_line
{
	width:100%;
	border-bottom:1px solid #ccc
}


.total_checkbox .btn_form{
	width:100%;
	background:#010101;
	border:0;
	color:#fff;
	padding:15px;
	transition: 0.3s;
}
.total_checkbox .btn_form:hover{
	background:#d71b2d;
}



