#wp_cart .wp_inner {
  display: grid;
  grid-template-columns: 25% 75%;
  margin-top: 15px;
  margin-bottom: 50px;
  font-size: 15px;
}

#list_cart h1.cat_cart {
  margin-top: 15px;
  font-size: 24px;
  color: #ff9600;
  text-transform: uppercase;
  margin-bottom: 40px;
}
#list_cart {
  margin-bottom: 50px;
}
#list_cart table {
  border: 1px solid #e9ecef;
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
  text-align: center;
}
#list_cart table td {
  border-bottom: 1px solid #e9ecef;
  padding: 10px;
}
#list_cart table td .delete {
  color: #fff;
  padding: 5px 10px;
  background: #f02e20;
}
#list_cart .price {
  color: red;
}
#list_cart .discount {
  color: green;
  font-weight: bold;
}

#total-price span {
  color: red;
}
.total-price {
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: bold;
}
#total-price .btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: .25rem;
  transition: background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
#total-price .my-btn {
  border-radius: 0px;
  border-color: #ff9600;
  background: #ff9600;
  color: #fff;

}
#total-price .my-btn:nth-child(2) {
  background: red;
}

#wp_checkout h3 {
  margin-top: 15px;
  font-size: 24px;
  color: #ff9600;
  text-transform: uppercase;
}
#wp_checkout label {
  display: block;
  margin-bottom: .5rem;
}

#wp_checkout .form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-image: none;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
#wp_checkout .form-control:hover {
  border: 1px solid #ff9600;
}

#wp_checkout .form-group .btn {
  background: #ff9600;
  border-radius: 0px;
  color: #fff;
  border: none;
  margin-top: 30px;
  width: 50%;
  padding: 10px 0;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}

@media screen and (max-width: 1024px) {
  .wp_inner {width: 100%;}
  #wp_cart .wp_inner {grid-template-columns: 100%;}
  #wp_cart #sidebar_home .banner {display: none;}
  #wp_cart #sidebar_home {padding: 0;}
}
@media screen and (max-width: 660px) {
  #list_cart table tr {
    display: grid;
    grid-template-columns: 100%;
    text-align: center;
  }
  #list_cart table td {
  	width: 100%!important;
  }

}